@inseefr/lunatic 0.2.2-experimental → 0.2.2-prisme

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 (905) hide show
  1. package/README.md +2 -0
  2. package/lib/components/button/button.scss +24 -0
  3. package/lib/components/button/index.js +15 -0
  4. package/lib/components/button/lunatic-button.js +62 -0
  5. package/lib/components/checkbox/checkbox-boolean/checkbox-boolean.js +34 -0
  6. package/lib/components/checkbox/checkbox-boolean/index.js +15 -0
  7. package/lib/components/checkbox/checkbox-boolean/lunatic-checkbox-boolean.js +42 -0
  8. package/lib/components/checkbox/checkbox-group/checkbox-group.js +94 -0
  9. package/lib/components/checkbox/checkbox-group/checkbox-option.js +57 -0
  10. package/lib/components/checkbox/checkbox-group/index.js +15 -0
  11. package/lib/components/checkbox/checkbox-group/lunatic-checkbox-group.js +36 -0
  12. package/lib/components/checkbox/checkbox-one/index.js +15 -0
  13. package/lib/components/checkbox/checkbox-one/lunatic-checkbox-one.js +23 -0
  14. package/lib/components/checkbox/checkbox.scss +1 -0
  15. package/lib/components/checkbox/commons/checkbox-option.js +59 -0
  16. package/lib/components/checkbox/commons/index.js +15 -0
  17. package/lib/components/checkbox/index.js +31 -0
  18. package/lib/components/commons/build-style-object.js +36 -0
  19. package/lib/components/commons/components/combo-box/combo-box-container.js +37 -0
  20. package/lib/components/commons/components/combo-box/combo-box-content.js +73 -0
  21. package/lib/components/commons/components/combo-box/combo-box.js +222 -0
  22. package/lib/components/commons/components/combo-box/combo-box.scss +218 -0
  23. package/lib/components/commons/components/combo-box/index.js +15 -0
  24. package/lib/components/commons/components/combo-box/panel/index.js +15 -0
  25. package/lib/components/commons/components/combo-box/panel/option-container.js +77 -0
  26. package/lib/components/commons/components/combo-box/panel/panel-container.js +31 -0
  27. package/lib/components/commons/components/combo-box/panel/panel.js +70 -0
  28. package/lib/components/commons/components/combo-box/selection/delete.js +69 -0
  29. package/lib/components/commons/components/combo-box/selection/displayLabelOrInput.js +30 -0
  30. package/lib/components/commons/components/combo-box/selection/index.js +15 -0
  31. package/lib/components/commons/components/combo-box/selection/input.js +68 -0
  32. package/lib/components/commons/components/combo-box/selection/label-selection.js +39 -0
  33. package/lib/components/commons/components/combo-box/selection/selection-container.js +40 -0
  34. package/lib/components/commons/components/combo-box/selection/selection.js +71 -0
  35. package/lib/components/commons/components/combo-box/state-management/actions.js +98 -0
  36. package/lib/components/commons/components/combo-box/state-management/combo-box-context.js +20 -0
  37. package/lib/components/commons/components/combo-box/state-management/index.js +42 -0
  38. package/lib/components/commons/components/combo-box/state-management/initial-state.js +14 -0
  39. package/lib/components/commons/components/combo-box/state-management/reducer/index.js +15 -0
  40. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-blur.js +22 -0
  41. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-change.js +24 -0
  42. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-delete.js +23 -0
  43. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-focus.js +22 -0
  44. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-init.js +46 -0
  45. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/index.js +15 -0
  46. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/keyboard-key-codes.js +18 -0
  47. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-arrow-down.js +37 -0
  48. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-arrow-up.js +37 -0
  49. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-end.js +28 -0
  50. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-enter.js +23 -0
  51. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-escape.js +22 -0
  52. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-home.js +28 -0
  53. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/on-tab.js +22 -0
  54. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-keydown/reduce-on-keydown.js +59 -0
  55. package/lib/components/commons/components/combo-box/state-management/reducer/reduce-on-select.js +24 -0
  56. package/lib/components/commons/components/combo-box/state-management/reducer/reducer.js +63 -0
  57. package/lib/components/commons/components/create-lunatic-component/create-lunatic-component.js +75 -0
  58. package/lib/components/commons/components/create-lunatic-component/index.js +14 -0
  59. package/lib/components/commons/components/default-label-renderer.js +54 -0
  60. package/lib/components/commons/components/default-option-renderer.js +43 -0
  61. package/lib/components/commons/components/dragger/dragger.js +118 -0
  62. package/lib/components/commons/components/dragger/dragger.scss +8 -0
  63. package/lib/components/commons/components/dragger/index.js +15 -0
  64. package/lib/components/commons/components/fab/fab.js +56 -0
  65. package/lib/components/commons/components/fab/fab.scss +32 -0
  66. package/lib/components/commons/components/fab/index.js +15 -0
  67. package/lib/components/commons/components/field-container/field-container.js +48 -0
  68. package/lib/components/commons/components/field-container/field-container.scss +0 -0
  69. package/lib/components/commons/components/field-container/index.js +15 -0
  70. package/lib/components/commons/components/fieldset.js +24 -0
  71. package/lib/components/commons/components/html-table/index.js +55 -0
  72. package/lib/components/commons/components/html-table/table.js +38 -0
  73. package/lib/components/commons/components/html-table/tbody.js +38 -0
  74. package/lib/components/commons/components/html-table/td.js +50 -0
  75. package/lib/components/commons/components/html-table/th.js +48 -0
  76. package/lib/components/commons/components/html-table/thead.js +38 -0
  77. package/lib/components/commons/components/html-table/tr.js +40 -0
  78. package/lib/components/commons/components/is-network/index.js +15 -0
  79. package/lib/components/commons/components/is-network/is-network.js +70 -0
  80. package/lib/components/commons/components/is-network/use-online-status.js +55 -0
  81. package/lib/components/commons/components/label.js +35 -0
  82. package/lib/components/commons/components/lunatic-component.js +67 -0
  83. package/lib/components/commons/components/lunatic-fieldset-component.js +60 -0
  84. package/lib/components/commons/components/md-label/index.js +15 -0
  85. package/lib/components/commons/components/md-label/link.js +57 -0
  86. package/lib/components/commons/components/md-label/md-label.js +52 -0
  87. package/lib/components/commons/components/missing/index.js +15 -0
  88. package/lib/components/commons/components/missing/missing.js +90 -0
  89. package/lib/components/commons/components/missing/missing.scss +30 -0
  90. package/lib/components/commons/components/nothing-to-display.js +17 -0
  91. package/lib/components/commons/components/orchestrated-component.js +69 -0
  92. package/lib/components/commons/components/variable-status/img/edited.png +0 -0
  93. package/lib/components/commons/components/variable-status/img/forced.png +0 -0
  94. package/lib/components/commons/components/variable-status/img/index.js +23 -0
  95. package/lib/components/commons/components/variable-status/index.js +15 -0
  96. package/lib/components/commons/components/variable-status/variable-status.js +95 -0
  97. package/lib/components/commons/components/variable-status/variable-status.scss +39 -0
  98. package/lib/components/commons/create-customizable-field.js +38 -0
  99. package/lib/components/commons/create-row-orchestrator.js +58 -0
  100. package/lib/components/commons/icons/checkbox-checked.icon.js +41 -0
  101. package/lib/components/commons/icons/checkbox-unchecked.icon.js +41 -0
  102. package/lib/components/commons/icons/closed.icon.js +38 -0
  103. package/lib/components/commons/icons/cross.icon.js +38 -0
  104. package/lib/components/commons/icons/index.js +87 -0
  105. package/lib/components/commons/icons/load.icon.js +38 -0
  106. package/lib/components/commons/icons/lunatic-icon.js +25 -0
  107. package/lib/components/commons/icons/lunatic-icon.scss +4 -0
  108. package/lib/components/commons/icons/network.icon.js +38 -0
  109. package/lib/components/commons/icons/on-drag.icon.js +38 -0
  110. package/lib/components/commons/icons/opened.icon.js +38 -0
  111. package/lib/components/commons/icons/radio-checked.icon.js +41 -0
  112. package/lib/components/commons/icons/radio-unchecked.icon.js +41 -0
  113. package/lib/components/commons/index.js +154 -0
  114. package/lib/components/commons/prop-types/declarations.js +27 -0
  115. package/lib/components/commons/prop-types/index.js +47 -0
  116. package/lib/components/commons/prop-types/lines.js +17 -0
  117. package/lib/components/commons/prop-types/options.js +17 -0
  118. package/lib/components/commons/prop-types/response.js +17 -0
  119. package/lib/components/commons/prop-types/value-type.js +22 -0
  120. package/lib/components/commons/safety-label.js +34 -0
  121. package/lib/components/commons/use-document-add-event-listener.js +108 -0
  122. package/lib/components/commons/use-on-handle-change.js +23 -0
  123. package/lib/components/commons/use-options-keydown.js +29 -0
  124. package/lib/components/commons/use-previous.js +19 -0
  125. package/lib/components/components.js +188 -0
  126. package/lib/components/datepicker/datepicker.js +49 -0
  127. package/lib/components/datepicker/datepicker.scss +1 -0
  128. package/lib/components/datepicker/index.js +15 -0
  129. package/lib/components/datepicker/lunatic-datepicker.js +20 -0
  130. package/lib/components/declarations/declaration.js +26 -0
  131. package/lib/components/declarations/declarations-after-text.js +29 -0
  132. package/lib/components/declarations/declarations-before-text.js +29 -0
  133. package/lib/components/declarations/declarations-detachable.js +29 -0
  134. package/lib/components/declarations/declarations.js +57 -0
  135. package/lib/components/declarations/declarations.scss +36 -0
  136. package/lib/components/declarations/index.js +51 -0
  137. package/lib/components/dropdown/dropdown-simple/dropdown-simple.js +43 -0
  138. package/lib/components/dropdown/dropdown-simple/index.js +15 -0
  139. package/lib/components/dropdown/dropdown-simple/simple-label-renderer.js +53 -0
  140. package/lib/components/dropdown/dropdown-simple/simple-option-renderer.js +42 -0
  141. package/lib/components/dropdown/dropdown-writable/dropdown-writable.js +79 -0
  142. package/lib/components/dropdown/dropdown-writable/filter-tools/filter-options.js +47 -0
  143. package/lib/components/dropdown/dropdown-writable/filter-tools/letters-matching.js +40 -0
  144. package/lib/components/dropdown/dropdown-writable/filter-tools/match.js +27 -0
  145. package/lib/components/dropdown/dropdown-writable/filter-tools/prepare-prefix.js +17 -0
  146. package/lib/components/dropdown/dropdown-writable/index.js +15 -0
  147. package/lib/components/dropdown/dropdown-writable/writable-label-renderer.js +53 -0
  148. package/lib/components/dropdown/dropdown-writable/writable-option-renderer.js +170 -0
  149. package/lib/components/dropdown/dropdown.js +58 -0
  150. package/lib/components/dropdown/dropdown.scss +41 -0
  151. package/lib/components/dropdown/index.js +15 -0
  152. package/lib/components/dropdown/lunatic-dropdown.js +58 -0
  153. package/lib/components/filter-description/component.js +23 -0
  154. package/lib/components/filter-description/index.js +15 -0
  155. package/lib/components/index.js +32 -0
  156. package/lib/components/index.scss +139 -0
  157. package/lib/components/input/index.js +15 -0
  158. package/lib/components/input/input.js +61 -0
  159. package/lib/components/input/input.scss +31 -0
  160. package/lib/components/input/lunatic-input.js +23 -0
  161. package/lib/components/input-number/index.js +15 -0
  162. package/lib/components/input-number/input-number.js +57 -0
  163. package/lib/components/input-number/input-number.scss +0 -0
  164. package/lib/components/input-number/lunatic-input-number.js +18 -0
  165. package/lib/components/loop/block-for-loop/block-for-loop-ochestrator.js +16 -0
  166. package/lib/components/loop/block-for-loop/block-for-loop.js +144 -0
  167. package/lib/components/loop/block-for-loop/index.js +15 -0
  168. package/lib/components/loop/block-for-loop/row.js +82 -0
  169. package/lib/components/loop/commons/index.js +15 -0
  170. package/lib/components/loop/commons/row-component.js +86 -0
  171. package/lib/components/loop/index.js +15 -0
  172. package/lib/components/loop/loop.js +91 -0
  173. package/lib/components/loop/roster-for-loop/body.js +69 -0
  174. package/lib/components/loop/roster-for-loop/handle-row-button.js +25 -0
  175. package/lib/components/loop/roster-for-loop/header.js +42 -0
  176. package/lib/components/loop/roster-for-loop/index.js +15 -0
  177. package/lib/components/loop/roster-for-loop/roster-for-loop-orchestrator.js +16 -0
  178. package/lib/components/loop/roster-for-loop/roster-for-loop.js +155 -0
  179. package/lib/components/loop/roster-for-loop/roster-table.js +61 -0
  180. package/lib/components/loop/roster-for-loop/roster.scss +42 -0
  181. package/lib/components/loop/roster-for-loop/row.js +86 -0
  182. package/lib/components/modal-controls/close-or-skip.js +37 -0
  183. package/lib/components/modal-controls/index.js +15 -0
  184. package/lib/components/modal-controls/modal-container.js +24 -0
  185. package/lib/components/modal-controls/modal-controls.js +97 -0
  186. package/lib/components/modal-controls/modal-controls.scss +63 -0
  187. package/lib/components/pairwise/block/index.js +15 -0
  188. package/lib/components/pairwise/block/pairwise-block.js +17 -0
  189. package/lib/components/pairwise/index.js +23 -0
  190. package/lib/components/pairwise/links/index.js +15 -0
  191. package/lib/components/pairwise/links/links-orchestrator.js +16 -0
  192. package/lib/components/pairwise/links/pairwise-links.js +72 -0
  193. package/lib/components/pairwise/links/row.js +95 -0
  194. package/lib/components/radio/index.js +15 -0
  195. package/lib/components/radio/lunatic-radio-group.js +40 -0
  196. package/lib/components/radio/radio-group.js +50 -0
  197. package/lib/components/radio/radio-option.js +90 -0
  198. package/lib/components/radio/radio.scss +59 -0
  199. package/lib/components/sequence/index.js +15 -0
  200. package/lib/components/sequence/sequence.js +38 -0
  201. package/lib/components/sequence/sequence.scss +10 -0
  202. package/lib/components/subsequence/index.js +15 -0
  203. package/lib/components/subsequence/subsequence.js +35 -0
  204. package/lib/components/suggester/check-store.js +154 -0
  205. package/lib/components/suggester/default-style.scss +125 -0
  206. package/lib/components/suggester/find-best-label/find-best-label.js +67 -0
  207. package/lib/components/suggester/find-best-label/index.js +15 -0
  208. package/lib/components/suggester/idb-suggester.js +95 -0
  209. package/lib/components/suggester/index.js +15 -0
  210. package/lib/components/suggester/lunatic-suggester.js +90 -0
  211. package/lib/components/suggester/searching/create-searching.js +88 -0
  212. package/lib/components/suggester/searching/index.js +15 -0
  213. package/lib/components/suggester/suggester.js +172 -0
  214. package/lib/components/suggester-loader-widget/index.js +15 -0
  215. package/lib/components/suggester-loader-widget/loader-row.js +150 -0
  216. package/lib/components/suggester-loader-widget/loader.js +180 -0
  217. package/lib/components/suggester-loader-widget/progress.js +45 -0
  218. package/lib/components/suggester-loader-widget/tools/action-tool.js +35 -0
  219. package/lib/components/suggester-loader-widget/tools/index.js +23 -0
  220. package/lib/components/suggester-loader-widget/tools/tools.js +20 -0
  221. package/lib/components/suggester-loader-widget/widget-container.js +48 -0
  222. package/lib/components/suggester-loader-widget/widget.js +170 -0
  223. package/lib/components/suggester-loader-widget/widget.scss +176 -0
  224. package/lib/components/switch/index.js +15 -0
  225. package/lib/components/switch/lunatic-switch.js +59 -0
  226. package/lib/components/switch/switch.js +92 -0
  227. package/lib/components/switch/switch.scss +47 -0
  228. package/lib/components/table/cell.js +113 -0
  229. package/lib/components/table/components/cell.js +113 -0
  230. package/lib/components/table/components/header.js +48 -0
  231. package/lib/components/table/components/row.js +47 -0
  232. package/lib/components/table/components/table.js +38 -0
  233. package/lib/components/table/components/table.scss +26 -0
  234. package/lib/components/table/index.js +15 -0
  235. package/lib/components/table/lunatic-table.js +91 -0
  236. package/lib/components/table/table-orchestrator.js +55 -0
  237. package/lib/components/textarea/index.js +15 -0
  238. package/lib/components/textarea/lunatic-textarea.js +32 -0
  239. package/lib/components/textarea/textarea.js +54 -0
  240. package/lib/components/textarea/textarea.scss +8 -0
  241. package/lib/constants/component-types.js +8 -0
  242. package/lib/constants/declarations.js +26 -0
  243. package/lib/constants/event-types.js +28 -0
  244. package/lib/constants/index.js +70 -0
  245. package/lib/constants/supported-preferences.js +18 -0
  246. package/lib/constants/value-types.js +16 -0
  247. package/lib/constants/variable-types.js +12 -0
  248. package/lib/i18n/build-dictionary.js +56 -0
  249. package/lib/i18n/dictionary.js +26 -0
  250. package/lib/i18n/index.js +19 -0
  251. package/lib/index.js +1184 -468
  252. package/lib/index.js.map +1 -1
  253. package/lib/stories/Introduction.stories.mdx +114 -0
  254. package/lib/stories/checkboxOne/checkboxOne.stories.js +35 -0
  255. package/lib/stories/checkboxOne/source.json +36 -0
  256. package/lib/stories/custom-mui/checkbox-boolean-mui.js +39 -0
  257. package/lib/stories/custom-mui/checkbox-group-mui.js +80 -0
  258. package/lib/stories/custom-mui/checkbox-one-mui.js +17 -0
  259. package/lib/stories/custom-mui/index.js +127 -0
  260. package/lib/stories/custom-mui/input-mui.js +61 -0
  261. package/lib/stories/custom-mui/input-number-mui.js +47 -0
  262. package/lib/stories/custom-mui/radio-mui.js +75 -0
  263. package/lib/stories/custom-mui/suggester-mui/index.js +15 -0
  264. package/lib/stories/custom-mui/suggester-mui/suggester-mui.js +328 -0
  265. package/lib/stories/custom-mui/switch-mui.js +51 -0
  266. package/lib/stories/custom-mui/table-mui.js +33 -0
  267. package/lib/stories/custom-mui/tbody-mui.js +27 -0
  268. package/lib/stories/custom-mui/td-mui.js +29 -0
  269. package/lib/stories/custom-mui/textarea-mui.js +56 -0
  270. package/lib/stories/custom-mui/th-mui.js +28 -0
  271. package/lib/stories/custom-mui/thead-mui.js +27 -0
  272. package/lib/stories/custom-mui/tr-mui.js +38 -0
  273. package/lib/stories/dropdown/data.json +16 -0
  274. package/lib/stories/dropdown/dropdown.stories.js +38 -0
  275. package/lib/stories/dropdown/source.json +122 -0
  276. package/lib/stories/filter-description/filter-description.stories.js +58 -0
  277. package/lib/stories/filter-description/source-options.json +81 -0
  278. package/lib/stories/filter-description/source.json +11 -0
  279. package/lib/stories/input/data.json +5 -0
  280. package/lib/stories/input/input.stories.js +38 -0
  281. package/lib/stories/input/source.json +28 -0
  282. package/lib/stories/pairwise/block/block.json +3 -0
  283. package/lib/stories/pairwise/block/pairwise-block.stories.js +36 -0
  284. package/lib/stories/pairwise/links/data.json +12 -0
  285. package/lib/stories/pairwise/links/links.json +141 -0
  286. package/lib/stories/pairwise/links/pairwise-links.stories.js +39 -0
  287. package/lib/stories/paste-questionnaire/source.json +6290 -0
  288. package/lib/stories/paste-questionnaire/test.stories.js +87 -0
  289. package/lib/stories/questionnaires/controls/V2_ControlesNonNum_horsBoucle_PasPageFin.json +452 -0
  290. package/lib/stories/questionnaires/controls/V2_ControlesNum_horsBoucle_PasPageFin.json +1689 -0
  291. package/lib/stories/questionnaires/controls/V2_Controles_BouclesLiees2_PasPageFin.json +775 -0
  292. package/lib/stories/questionnaires/controls/V2_Controles_BouclesLiees_PasPageFin.json +412 -0
  293. package/lib/stories/questionnaires/controls/controls.stories.js +95 -0
  294. package/lib/stories/questionnaires/logement/data.json +2691 -0
  295. package/lib/stories/questionnaires/logement/logement.stories.js +77 -0
  296. package/lib/stories/questionnaires/logement/source-sequence.json +34181 -0
  297. package/lib/stories/questionnaires/logement/source.json +34191 -0
  298. package/lib/stories/questionnaires/samples/sample.json +430 -0
  299. package/lib/stories/questionnaires/samples/samples.stories.js +64 -0
  300. package/lib/stories/questionnaires/simpsons/simpsons.stories.js +71 -0
  301. package/lib/stories/questionnaires/simpsons/source.json +6290 -0
  302. package/lib/stories/questionnaires/test/source.json +6290 -0
  303. package/lib/stories/questionnaires/test/test.stories.js +87 -0
  304. package/lib/stories/questionnaires-test/V2_DeclarationsSimples.json +848 -0
  305. package/lib/stories/questionnaires-test/V2_MinMaxSum_Boucles.json +509 -0
  306. package/lib/stories/questionnaires-test/V2_QuestSimple_Boucles.json +4091 -0
  307. package/lib/stories/questionnaires-test/V2_TCMRallyeGames.json +2892 -0
  308. package/lib/stories/questionnaires-test/controls/V2_ControlesNonNum_horsBoucle_PasPageFin.json +452 -0
  309. package/lib/stories/questionnaires-test/controls/V2_ControlesNum_horsBoucle_PasPageFin.json +1689 -0
  310. package/lib/stories/questionnaires-test/controls/V2_Controles_BouclesLiees2_PasPageFin.json +709 -0
  311. package/lib/stories/questionnaires-test/controls/V2_Controles_BouclesLiees_PasPageFin.json +368 -0
  312. package/lib/stories/questionnaires-test/controls/controls.stories.js +95 -0
  313. package/lib/stories/questionnaires-test/sources.json +203 -0
  314. package/lib/stories/questionnaires-test/test-dylan.json +430 -0
  315. package/lib/stories/questionnaires-test/test.stories.js +100 -0
  316. package/lib/stories/radio/radio.stories.js +35 -0
  317. package/lib/stories/radio/source.json +36 -0
  318. package/lib/stories/roster-for-loop/roster-for-loop.stories.js +35 -0
  319. package/lib/stories/roster-for-loop/source.json +114 -0
  320. package/lib/stories/suggester/source.json +234 -0
  321. package/lib/stories/suggester/suggester.stories.js +59 -0
  322. package/lib/stories/switch/README.md +31 -0
  323. package/lib/stories/switch/SwitchMaterialUI.js +51 -0
  324. package/lib/stories/switch/data-forced.json +48 -0
  325. package/lib/stories/switch/data.json +80 -0
  326. package/lib/stories/switch/switch.js +108 -0
  327. package/lib/stories/table/data-roster.json +1 -0
  328. package/lib/stories/table/data.json +1 -0
  329. package/lib/stories/table/source-roster.json +504 -0
  330. package/lib/stories/table/source.json +19 -0
  331. package/lib/stories/table/table.stories.js +65 -0
  332. package/lib/stories/utils/custom-lunatic.scss +28 -0
  333. package/lib/stories/utils/default-arg-types.js +23 -0
  334. package/lib/stories/utils/options.js +32 -0
  335. package/lib/stories/utils/orchestrator.js +168 -0
  336. package/lib/stories/utils/waiting/index.js +15 -0
  337. package/lib/stories/utils/waiting/preloader.svg +1 -0
  338. package/lib/stories/utils/waiting/waiting.js +40 -0
  339. package/lib/stories/utils/waiting/waiting.scss +21 -0
  340. package/lib/tests/sample.spec.js +7 -0
  341. package/lib/use-lunatic/actions.js +88 -0
  342. package/lib/use-lunatic/commons/calculated-variables.js +124 -0
  343. package/lib/use-lunatic/commons/check-loops.js +111 -0
  344. package/lib/use-lunatic/commons/compose.js +28 -0
  345. package/lib/use-lunatic/commons/create-map-pages.js +108 -0
  346. package/lib/use-lunatic/commons/execute-condition-filter.js +34 -0
  347. package/lib/use-lunatic/commons/execute-expression/create-execute-expression.js +264 -0
  348. package/lib/use-lunatic/commons/execute-expression/create-memoizer.js +78 -0
  349. package/lib/use-lunatic/commons/execute-expression/create-refresh-calculated.js +159 -0
  350. package/lib/use-lunatic/commons/execute-expression/execute-expression.js +91 -0
  351. package/lib/use-lunatic/commons/execute-expression/get-expressions-variables.js +51 -0
  352. package/lib/use-lunatic/commons/execute-expression/get-safety-expression.js +37 -0
  353. package/lib/use-lunatic/commons/execute-expression/index.js +15 -0
  354. package/lib/use-lunatic/commons/fill-components/fill-component-expressions.js +149 -0
  355. package/lib/use-lunatic/commons/fill-components/fill-component-value.js +26 -0
  356. package/lib/use-lunatic/commons/fill-components/fill-components.js +47 -0
  357. package/lib/use-lunatic/commons/fill-components/fill-errors.js +31 -0
  358. package/lib/use-lunatic/commons/fill-components/fill-from-state.js +26 -0
  359. package/lib/use-lunatic/commons/fill-components/fill-management.js +27 -0
  360. package/lib/use-lunatic/commons/fill-components/fill-missing-response.js +37 -0
  361. package/lib/use-lunatic/commons/fill-components/fill-pagination.js +23 -0
  362. package/lib/use-lunatic/commons/fill-components/index.js +15 -0
  363. package/lib/use-lunatic/commons/get-compatible-vtl-expression.js +32 -0
  364. package/lib/use-lunatic/commons/get-component-value/get-component-value.js +217 -0
  365. package/lib/use-lunatic/commons/get-component-value/index.js +15 -0
  366. package/lib/use-lunatic/commons/get-components-from-state.js +37 -0
  367. package/lib/use-lunatic/commons/get-page-tag.js +21 -0
  368. package/lib/use-lunatic/commons/index.js +103 -0
  369. package/lib/use-lunatic/commons/is-First-last-page.js +20 -0
  370. package/lib/use-lunatic/commons/is-paginated-loop.js +15 -0
  371. package/lib/use-lunatic/commons/load-suggesters.js +199 -0
  372. package/lib/use-lunatic/commons/use-components-from-state.js +49 -0
  373. package/lib/use-lunatic/index.js +15 -0
  374. package/lib/use-lunatic/initial-state.js +41 -0
  375. package/lib/use-lunatic/reducer/commons/Insee.code-workspace +47 -0
  376. package/lib/use-lunatic/reducer/commons/index.js +41 -0
  377. package/lib/use-lunatic/reducer/commons/is-empty-on-empty-page.js +49 -0
  378. package/lib/use-lunatic/reducer/commons/resize-array-variable.js +48 -0
  379. package/lib/use-lunatic/reducer/commons/validate-condition-filter.js +41 -0
  380. package/lib/use-lunatic/reducer/index.js +15 -0
  381. package/lib/use-lunatic/reducer/reduce-go-next-page.js +176 -0
  382. package/lib/use-lunatic/reducer/reduce-go-previous-page.js +160 -0
  383. package/lib/use-lunatic/reducer/reduce-handle-change/index.js +15 -0
  384. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-cleaning.js +76 -0
  385. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-handle-change.js +132 -0
  386. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-links-variable.js +53 -0
  387. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-missing.js +90 -0
  388. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-resizing.js +118 -0
  389. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-array.js +50 -0
  390. package/lib/use-lunatic/reducer/reduce-handle-change/reduce-variables-simple.js +29 -0
  391. package/lib/use-lunatic/reducer/reduce-on-init.js +255 -0
  392. package/lib/use-lunatic/reducer/reduce-on-set-waiting.js +23 -0
  393. package/lib/use-lunatic/reducer/reducer.js +53 -0
  394. package/lib/use-lunatic/reducer/validate-controls/create-validate-reducer.js +146 -0
  395. package/lib/use-lunatic/reducer/validate-controls/index.js +15 -0
  396. package/lib/use-lunatic/use-lunatic.js +215 -0
  397. package/lib/utils/constants/features.js +12 -0
  398. package/lib/utils/constants/index.js +70 -0
  399. package/lib/utils/constants/links.js +10 -0
  400. package/lib/utils/constants/missing.js +10 -0
  401. package/lib/utils/constants/variable-status.js +16 -0
  402. package/lib/utils/constants/variable-types.js +8 -0
  403. package/lib/utils/idb-tools/clear-store.js +52 -0
  404. package/lib/utils/idb-tools/create-db-opener.js +60 -0
  405. package/lib/utils/idb-tools/create-open-db.js +35 -0
  406. package/lib/utils/idb-tools/get-entity.js +25 -0
  407. package/lib/utils/idb-tools/get-idb.js +15 -0
  408. package/lib/utils/idb-tools/idb-bulk-insert.js +157 -0
  409. package/lib/utils/idb-tools/index.js +75 -0
  410. package/lib/utils/idb-tools/insert-entity.js +25 -0
  411. package/lib/utils/idb-tools/open-db.js +29 -0
  412. package/lib/utils/idb-tools/open-or-create-db.js +49 -0
  413. package/lib/utils/is-element.js +12 -0
  414. package/lib/utils/store-tools/auto-load.js +209 -0
  415. package/lib/utils/store-tools/clear-store-data.js +46 -0
  416. package/lib/utils/store-tools/clear-store-info.js +46 -0
  417. package/lib/utils/store-tools/constantes.js +31 -0
  418. package/lib/utils/store-tools/create/create.js +70 -0
  419. package/lib/utils/store-tools/create/index.js +23 -0
  420. package/lib/utils/store-tools/create/update-store-info.js +33 -0
  421. package/lib/utils/store-tools/get-store-count.js +29 -0
  422. package/lib/utils/store-tools/index.js +66 -0
  423. package/lib/utils/store-tools/open-or-create-store.js +60 -0
  424. package/lib/utils/store-tools/use-store-index.js +82 -0
  425. package/lib/utils/suggester-workers/append-to-index/append.js +96 -0
  426. package/lib/utils/suggester-workers/append-to-index/append.worker.js +31 -0
  427. package/lib/utils/suggester-workers/append-to-index/create-append-task.js +66 -0
  428. package/lib/utils/suggester-workers/append-to-index/index.js +23 -0
  429. package/lib/utils/suggester-workers/append-to-index/prepare-entities.js +114 -0
  430. package/lib/utils/suggester-workers/append-to-index/store-messages.js +48 -0
  431. package/lib/utils/suggester-workers/commons-tokenizer/create-entity-tokenizer.js +64 -0
  432. package/lib/utils/suggester-workers/commons-tokenizer/create-fields-tokenizer.js +103 -0
  433. package/lib/utils/suggester-workers/commons-tokenizer/create-filter-stop-words.js +47 -0
  434. package/lib/utils/suggester-workers/commons-tokenizer/filters/compose-filters.js +24 -0
  435. package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.js +47 -0
  436. package/lib/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.spec.js +16 -0
  437. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-accents.js +24 -0
  438. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-accents.spec.js +18 -0
  439. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-double.js +34 -0
  440. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-double.spec.js +25 -0
  441. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-length.js +17 -0
  442. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-length.spec.js +25 -0
  443. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.js +29 -0
  444. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.spec.js +18 -0
  445. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.js +71 -0
  446. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.spec.js +15 -0
  447. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.js +19 -0
  448. package/lib/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.spec.js +16 -0
  449. package/lib/utils/suggester-workers/commons-tokenizer/filters/index.js +23 -0
  450. package/lib/utils/suggester-workers/commons-tokenizer/filters/stop-words.js +9 -0
  451. package/lib/utils/suggester-workers/commons-tokenizer/get-regexp-from-pattern.js +17 -0
  452. package/lib/utils/suggester-workers/commons-tokenizer/get-stemmer.js +31 -0
  453. package/lib/utils/suggester-workers/commons-tokenizer/index.js +79 -0
  454. package/lib/utils/suggester-workers/commons-tokenizer/prepare-string-indexation.js +24 -0
  455. package/lib/utils/suggester-workers/commons-tokenizer/soft-tokenizer.js +15 -0
  456. package/lib/utils/suggester-workers/create-worker.js +64 -0
  457. package/lib/utils/suggester-workers/find-best-label/find-best-label.js +81 -0
  458. package/lib/utils/suggester-workers/find-best-label/find-best-label.worker.js +67 -0
  459. package/lib/utils/suggester-workers/find-best-label/index.js +1 -0
  460. package/lib/utils/suggester-workers/find-best-label/tokenize.js +62 -0
  461. package/lib/utils/suggester-workers/find-best-label/tokenize.spec.js +26 -0
  462. package/lib/utils/suggester-workers/searching/compute-score.js +63 -0
  463. package/lib/utils/suggester-workers/searching/get-db.js +64 -0
  464. package/lib/utils/suggester-workers/searching/index.js +15 -0
  465. package/lib/utils/suggester-workers/searching/order/create-alphanumeric-orderer.js +33 -0
  466. package/lib/utils/suggester-workers/searching/order/index.js +33 -0
  467. package/lib/utils/suggester-workers/searching/query-parser/index.js +23 -0
  468. package/lib/utils/suggester-workers/searching/query-parser/query-parser-soft.js +15 -0
  469. package/lib/utils/suggester-workers/searching/query-parser/query-parser-soft.spec.js +28 -0
  470. package/lib/utils/suggester-workers/searching/query-parser/query-parser-tokenized.js +51 -0
  471. package/lib/utils/suggester-workers/searching/resolve-query-parser.js +73 -0
  472. package/lib/utils/suggester-workers/searching/search-in-index.js +25 -0
  473. package/lib/utils/suggester-workers/searching/searching.js +170 -0
  474. package/lib/utils/suggester-workers/searching/searching.worker.js +23 -0
  475. package/lib/utils/vtl/dataset-builder.js +28 -0
  476. package/lib/utils/vtl/index.js +15 -0
  477. package/package.json +6 -4
  478. package/src/components/breadcrumb/component.js +29 -29
  479. package/src/components/breadcrumb/index.js +1 -1
  480. package/src/components/button/button.scss +24 -24
  481. package/src/components/button/component.js +53 -53
  482. package/src/components/button/index.js +1 -1
  483. package/src/components/checkbox/boolean.js +2 -2
  484. package/src/components/checkbox/group.js +2 -2
  485. package/src/components/checkbox/index.js +3 -3
  486. package/src/components/checkbox/one.js +2 -2
  487. package/src/components/component-wrapper/controls/component.js +70 -0
  488. package/src/components/component-wrapper/controls/controls.scss +6 -0
  489. package/src/components/component-wrapper/controls/index.js +1 -0
  490. package/src/components/component-wrapper/controls/validators/datepicker.js +44 -0
  491. package/src/components/component-wrapper/controls/validators/index.js +16 -0
  492. package/src/components/component-wrapper/controls/validators/input-number.js +23 -0
  493. package/src/components/{missing-wrapper → component-wrapper}/index.js +1 -1
  494. package/src/components/component-wrapper/missing/component.js +200 -0
  495. package/src/components/component-wrapper/missing/index.js +1 -0
  496. package/src/components/{missing-wrapper → component-wrapper/missing}/missing.scss +0 -0
  497. package/src/components/component-wrapper/wrapper.js +23 -0
  498. package/src/components/components.js +19 -18
  499. package/src/components/datepicker/component.js +18 -3
  500. package/src/components/datepicker/datepicker.scss +1 -1
  501. package/src/components/datepicker/index.js +1 -1
  502. package/src/components/declarations/index.js +1 -1
  503. package/src/components/declarations/wrappers/index.js +3 -3
  504. package/src/components/declarations/wrappers/input-declarations-wrapper.js +74 -18
  505. package/src/components/declarations/wrappers/list-declarations-wrapper.js +232 -232
  506. package/src/components/dropdown/commons/actions.js +40 -31
  507. package/src/components/dropdown/commons/components/dropdown-field.js +46 -46
  508. package/src/components/dropdown/commons/components/dropdown.js +21 -0
  509. package/src/components/dropdown/commons/components/label.js +28 -28
  510. package/src/components/dropdown/commons/components/panel.js +78 -78
  511. package/src/components/dropdown/commons/event-callbacks/index.js +5 -5
  512. package/src/components/dropdown/commons/event-callbacks/on-keydown-callback.js +29 -29
  513. package/src/components/dropdown/commons/reducer.js +152 -149
  514. package/src/components/dropdown/component.js +2 -2
  515. package/src/components/dropdown/dropdown-edit/dropdown-edit.js +10 -1
  516. package/src/components/dropdown/dropdown-edit/icone.js +33 -33
  517. package/src/components/dropdown/dropdown-edit/option.js +62 -62
  518. package/src/components/dropdown/dropdown-edit/prefix-tools.js +51 -51
  519. package/src/components/dropdown/dropdown-simple/dropdown.js +11 -2
  520. package/src/components/dropdown/dropdown-simple/option.js +15 -15
  521. package/src/components/dropdown/index.js +1 -1
  522. package/src/components/filter-description/component.js +42 -42
  523. package/src/components/filter-description/index.js +1 -1
  524. package/src/components/icon/assets/checkbox-checked.js +16 -16
  525. package/src/components/icon/assets/checkbox-unchecked.js +16 -16
  526. package/src/components/icon/assets/index.js +4 -4
  527. package/src/components/icon/assets/radio-checked.js +16 -16
  528. package/src/components/icon/assets/radio-unchecked.js +16 -16
  529. package/src/components/icon/component.js +33 -33
  530. package/src/components/icon/index.js +1 -1
  531. package/src/components/index.js +5 -3
  532. package/src/components/index.scss +5 -3
  533. package/src/components/input/index.js +2 -2
  534. package/src/components/input/input-number.js +15 -39
  535. package/src/components/input/input.js +2 -2
  536. package/src/components/input/input.scss +0 -6
  537. package/src/components/loop/component.js +1 -0
  538. package/src/components/loop/index.js +1 -1
  539. package/src/components/loop/wrapper.js +15 -15
  540. package/src/components/loop-constructor/block/component.js +2 -2
  541. package/src/components/loop-constructor/block/index.js +1 -1
  542. package/src/components/loop-constructor/index.js +1 -1
  543. package/src/components/loop-constructor/roster/component.js +2 -2
  544. package/src/components/loop-constructor/roster/index.js +1 -1
  545. package/src/components/loop-constructor/wrapper/body-component.js +21 -0
  546. package/src/components/loop-constructor/wrapper/build-components.js +33 -33
  547. package/src/components/loop-constructor/wrapper/component.js +190 -190
  548. package/src/components/loop-constructor/wrapper/index.js +1 -1
  549. package/src/components/modal/component.js +36 -0
  550. package/src/components/modal/index.js +1 -0
  551. package/src/components/modal/modal.scss +33 -0
  552. package/src/components/progress-bar/component.js +28 -28
  553. package/src/components/progress-bar/index.js +1 -1
  554. package/src/components/radio/component.js +2 -2
  555. package/src/components/radio/index.js +1 -1
  556. package/src/components/sequence/index.js +1 -1
  557. package/src/components/subsequence/index.js +1 -1
  558. package/src/components/suggester/check-store.js +68 -70
  559. package/src/components/suggester/commons-tools/binded-keys.js +11 -11
  560. package/src/components/suggester/commons-tools/index.js +1 -1
  561. package/src/components/suggester/components/create-on-keydown-callback.js +28 -28
  562. package/src/components/suggester/components/index.js +2 -2
  563. package/src/components/suggester/components/panel/index.js +2 -2
  564. package/src/components/suggester/components/panel/option-container.js +1 -1
  565. package/src/components/suggester/components/panel/panel-container.js +21 -21
  566. package/src/components/suggester/components/selection/delete.js +38 -38
  567. package/src/components/suggester/components/selection/index.js +1 -1
  568. package/src/components/suggester/components/selection/selection.js +1 -1
  569. package/src/components/suggester/components/suggester-content.js +42 -42
  570. package/src/components/suggester/components/suggester.js +43 -3
  571. package/src/components/suggester/find-best-label/find-best-label.js +3 -1
  572. package/src/components/suggester/idb-suggester.js +7 -1
  573. package/src/components/suggester/index.js +1 -1
  574. package/src/components/suggester/lunatic-suggester.js +6 -3
  575. package/src/components/suggester/searching/create-searching.js +3 -1
  576. package/src/components/suggester/state-management/index.js +6 -6
  577. package/src/components/suggester/state-management/intial-state.js +13 -13
  578. package/src/components/suggester/state-management/reducer/index.js +1 -1
  579. package/src/components/suggester/state-management/reducer/reduce-on-blur.js +5 -5
  580. package/src/components/suggester/state-management/reducer/reduce-on-change-search.js +8 -8
  581. package/src/components/suggester/state-management/reducer/reduce-on-click-option.js +8 -8
  582. package/src/components/suggester/state-management/reducer/reduce-on-error.js +8 -8
  583. package/src/components/suggester/state-management/reducer/reduce-on-focus.js +5 -5
  584. package/src/components/suggester/state-management/reducer/reduce-on-key-down.js +73 -73
  585. package/src/components/suggester/state-management/reducer/reduce-on-unexpected-error.js +7 -7
  586. package/src/components/suggester/state-management/reducer/reduce-on-update-options.js +11 -11
  587. package/src/components/suggester/state-management/suggester-context.js +4 -4
  588. package/src/components/suggester/state-management/use-dispatch.js +11 -11
  589. package/src/components/suggester/suggester-wrapper.js +9 -3
  590. package/src/components/suggester-loader-widget/index.js +1 -1
  591. package/src/components/suggester-loader-widget/loader-row.js +102 -102
  592. package/src/components/suggester-loader-widget/progress.js +25 -25
  593. package/src/components/suggester-loader-widget/tools/action-tool.js +20 -20
  594. package/src/components/suggester-loader-widget/tools/index.js +2 -2
  595. package/src/components/suggester-loader-widget/tools/tools.js +7 -7
  596. package/src/components/suggester-loader-widget/widget-container.js +35 -35
  597. package/src/components/suggester-loader-widget/widget.scss +176 -176
  598. package/src/components/table/index.js +1 -1
  599. package/src/components/table/table.js +5 -3
  600. package/src/components/textarea/component.js +2 -2
  601. package/src/components/textarea/index.js +1 -1
  602. package/src/components/tooltip/img/index.js +4 -4
  603. package/src/components/tooltip/index.js +1 -1
  604. package/src/components/tooltip/response.js +52 -52
  605. package/src/constants/component-types.js +1 -1
  606. package/src/constants/declarations.js +14 -14
  607. package/src/constants/event-types.js +13 -13
  608. package/src/constants/index.js +5 -5
  609. package/src/constants/supported-preferences.js +10 -10
  610. package/src/constants/value-types.js +5 -5
  611. package/src/constants/variable-types.js +4 -4
  612. package/src/stories/breadcrumb/README.md +14 -14
  613. package/src/stories/breadcrumb/breadcrumb.stories.js +21 -21
  614. package/src/stories/button/README.md +14 -14
  615. package/src/stories/button/button.stories.js +27 -27
  616. package/src/stories/checkbox-boolean/README.md +27 -27
  617. package/src/stories/checkbox-boolean/checkbox-boolean.stories.js +54 -54
  618. package/src/stories/checkbox-boolean/data-forced.json +48 -48
  619. package/src/stories/checkbox-group/README.md +29 -29
  620. package/src/stories/checkbox-group/checkbox-group.stories.js +60 -60
  621. package/src/stories/checkbox-group/data-forced.json +89 -89
  622. package/src/stories/checkbox-group/data-vtl.json +102 -102
  623. package/src/stories/checkbox-group/data.json +89 -89
  624. package/src/stories/checkbox-one/README.md +31 -31
  625. package/src/stories/checkbox-one/checkbox-one.stories.js +57 -57
  626. package/src/stories/checkbox-one/data-forced.json +33 -33
  627. package/src/stories/checkbox-one/data-vtl.json +48 -48
  628. package/src/stories/checkbox-one/data.json +33 -33
  629. package/src/stories/datepicker/README.md +31 -31
  630. package/src/stories/datepicker/data-forced.json +28 -28
  631. package/src/stories/datepicker/data.json +45 -43
  632. package/src/stories/datepicker/datepicker.stories.js +60 -60
  633. package/src/stories/declarations/README.md +19 -19
  634. package/src/stories/declarations/declarations.stories.js +116 -116
  635. package/src/stories/dropdown/data-forced.json +81 -81
  636. package/src/stories/dropdown/data-naf.json +6963 -6963
  637. package/src/stories/dropdown/data-props.json +111 -111
  638. package/src/stories/filter-description/README.md +15 -15
  639. package/src/stories/filter-description/filter-description.stories.js +53 -53
  640. package/src/stories/icons/icons.stories.js +16 -16
  641. package/src/stories/icons/lunatic-icon.scss +10 -10
  642. package/src/stories/input/README.md +33 -33
  643. package/src/stories/input/data-forced.json +41 -41
  644. package/src/stories/input/data.json +41 -41
  645. package/src/stories/input/input.stories.js +72 -72
  646. package/src/stories/input-number/README.md +37 -37
  647. package/src/stories/input-number/data-forced.json +27 -27
  648. package/src/stories/input-number/data.json +42 -42
  649. package/src/stories/input-number/input-number.stories.js +81 -81
  650. package/src/stories/loop/README.md +25 -25
  651. package/src/stories/loop/loop.stories.js +88 -88
  652. package/src/stories/loop/with-loop/data-loop-deeper.json +298 -298
  653. package/src/stories/loop/with-loop/data-loop.json +336 -336
  654. package/src/stories/loop/with-loop/index.js +2 -2
  655. package/src/stories/loop/with-roster/data-forced.json +213 -213
  656. package/src/stories/loop/with-roster/data-loop-deeper.json +298 -298
  657. package/src/stories/loop/with-roster/data-loop.json +288 -288
  658. package/src/stories/loop/with-roster/index.js +3 -3
  659. package/src/stories/loop-constructor/README.md +27 -27
  660. package/src/stories/loop-constructor/data-input-forced.json +64 -64
  661. package/src/stories/loop-constructor/data-input.json +100 -100
  662. package/src/stories/loop-constructor/data-loop-forced.json +66 -66
  663. package/src/stories/loop-constructor/data-loop-static-forced.json +66 -66
  664. package/src/stories/loop-constructor/data-loop-static.json +81 -81
  665. package/src/stories/loop-constructor/data-loop.json +81 -81
  666. package/src/stories/loop-constructor/data-roster-forced.json +68 -68
  667. package/src/stories/loop-constructor/data-roster.json +83 -83
  668. package/src/stories/loop-constructor/loop-constructor.stories.js +180 -180
  669. package/src/stories/pagination/deeper-loop.json +327 -327
  670. package/src/stories/pagination/pagination.stories.js +60 -60
  671. package/src/stories/pagination/simple-loop.json +277 -277
  672. package/src/stories/pagination/simpsons-question.json +4952 -4952
  673. package/src/stories/pagination/simpsons-sequence.json +4362 -4362
  674. package/src/stories/progress-bar/README.md +13 -13
  675. package/src/stories/questionnaire/arithmetic-management.json +47 -0
  676. package/src/stories/questionnaire/calc-var.json +187 -187
  677. package/src/stories/questionnaire/data-logement.json +2691 -2691
  678. package/src/stories/questionnaire/kish.json +275 -0
  679. package/src/stories/questionnaire/logement-queen.json +23390 -0
  680. package/src/stories/questionnaire/logement-s2.json +46028 -0
  681. package/src/stories/questionnaire/logement-sequence.json +26741 -26741
  682. package/src/stories/questionnaire/logement.json +21073 -26813
  683. package/src/stories/questionnaire/loop-and-controls.json +481 -0
  684. package/src/stories/questionnaire/questionnaire.stories.js +109 -11
  685. package/src/stories/questionnaire/simpsons.json +4816 -4816
  686. package/src/stories/questionnaire/update-external/data.json +1 -0
  687. package/src/stories/questionnaire/update-external/questionnaire.json +75 -0
  688. package/src/stories/radio/README.md +31 -31
  689. package/src/stories/radio/data-forced.json +32 -32
  690. package/src/stories/radio/data-vtl.json +47 -47
  691. package/src/stories/radio/data.json +32 -32
  692. package/src/stories/radio/radio.stories.js +64 -64
  693. package/src/stories/sequence/README.md +18 -18
  694. package/src/stories/sequence/sequence.stories.js +32 -32
  695. package/src/stories/subsequence/README.md +18 -18
  696. package/src/stories/subsequence/subsequence.stories.js +32 -32
  697. package/src/stories/suggester/bailleurs-sociaux-2021/fetch-bailleurs.js +12 -0
  698. package/src/stories/suggester/bailleurs-sociaux-2021/index.js +1 -0
  699. package/src/stories/suggester/cog-communes/index.js +2 -2
  700. package/src/stories/suggester/cog-communes/option-cog-renderer.js +15 -15
  701. package/src/stories/suggester/cog-communes/theme.scss +12 -12
  702. package/src/stories/suggester/data-auto.json +1 -0
  703. package/src/stories/suggester/data.json +35 -2
  704. package/src/stories/suggester/naf-rev2/fetch-naf.js +57 -57
  705. package/src/stories/suggester/naf-rev2/theme.scss +36 -36
  706. package/src/stories/suggester/suggester-workers.stories.js +48 -1
  707. package/src/stories/suggester/suggester.stories.js +5 -0
  708. package/src/stories/table/README.md +29 -29
  709. package/src/stories/table/data-default.json +19 -19
  710. package/src/stories/table/data-one-axis-one-measure.json +139 -139
  711. package/src/stories/table/data-one-axis-two-measures.json +208 -208
  712. package/src/stories/table/data-one-hierarchical-axis.json +219 -219
  713. package/src/stories/table/data-roster.json +486 -486
  714. package/src/stories/table/data-two-axis-one-measure.json +507 -507
  715. package/src/stories/table/table.stories.js +82 -82
  716. package/src/stories/textarea/README.md +33 -33
  717. package/src/stories/textarea/data-forced.json +28 -28
  718. package/src/stories/textarea/data.json +43 -43
  719. package/src/stories/textarea/textarea.stories.js +68 -68
  720. package/src/stories/tooltip-response/README.md +14 -14
  721. package/src/stories/tooltip-response/md-link.json +31 -31
  722. package/src/stories/tooltip-response/md-tooltip.json +31 -31
  723. package/src/stories/tooltip-response/tooltip.stories.js +83 -83
  724. package/src/stories/utils/custom-lunatic.scss +23 -23
  725. package/src/stories/utils/options.js +25 -25
  726. package/src/stories/utils/orchestrator-split.js +119 -0
  727. package/src/stories/utils/orchestrator.js +14 -3
  728. package/src/tests/components/breadcrumb.spec.js +13 -13
  729. package/src/tests/components/button.spec.js +11 -11
  730. package/src/tests/components/checkbox-boolean.spec.js +45 -45
  731. package/src/tests/components/checkbox-group.spec.js +53 -53
  732. package/src/tests/components/checkbox-one.spec.js +32 -32
  733. package/src/tests/components/datepicker.spec.js +22 -22
  734. package/src/tests/components/declarations-wrappers/input-declarations-wrapper.spec.js +67 -67
  735. package/src/tests/components/declarations-wrappers/list-declarations-wrapper.spec.js +52 -52
  736. package/src/tests/components/declarations-wrappers/simple-declarations-wrapper.spec.js +21 -21
  737. package/src/tests/components/declarations.spec.js +46 -46
  738. package/src/tests/components/input-number.spec.js +188 -194
  739. package/src/tests/components/input.spec.js +18 -18
  740. package/src/tests/components/loops/loop-static.json +66 -66
  741. package/src/tests/components/loops/loop.json +258 -258
  742. package/src/tests/components/loops/loop.spec.js +30 -30
  743. package/src/tests/components/loops/roster-for-loop.spec.js +18 -18
  744. package/src/tests/components/loops/roster-loop.json +71 -71
  745. package/src/tests/components/missing-wrapper.spec.js +32 -33
  746. package/src/tests/components/progress-bar.spec.js +15 -15
  747. package/src/tests/components/radio.spec.js +27 -27
  748. package/src/tests/components/sequence.spec.js +9 -9
  749. package/src/tests/components/subsequence.spec.js +9 -9
  750. package/src/tests/components/table.spec.js +11 -11
  751. package/src/tests/components/textarea.spec.js +18 -18
  752. package/src/tests/components/tooltip.spec.js +25 -25
  753. package/src/tests/setup/setupTests.js +4 -4
  754. package/src/tests/utils/lib/alphabet.spec.js +36 -36
  755. package/src/tests/utils/lib/array.spec.js +22 -22
  756. package/src/tests/utils/lib/checkbox/group.spec.js +72 -72
  757. package/src/tests/utils/lib/decorator/title-decorator.spec.js +12 -12
  758. package/src/tests/utils/lib/input-number.spec.js +18 -18
  759. package/src/tests/utils/lib/items-positioning.spec.js +17 -17
  760. package/src/tests/utils/lib/label-position.spec.js +22 -22
  761. package/src/tests/utils/lib/loops/bindings.spec.js +75 -75
  762. package/src/tests/utils/lib/loops/shared.spec.js +82 -82
  763. package/src/tests/utils/lib/missing/missing.spec.js +74 -74
  764. package/src/tests/utils/lib/missing/mock.js +137 -137
  765. package/src/tests/utils/lib/pagination/shared.spec.js +42 -42
  766. package/src/tests/utils/lib/responses.spec.js +64 -64
  767. package/src/tests/utils/lib/style.spec.js +26 -26
  768. package/src/tests/utils/lib/tooltip/build-response.spec.js +95 -95
  769. package/src/tests/utils/lib/tooltip/content.spec.js +109 -109
  770. package/src/tests/utils/to-expose/handler/handler.spec.js +94 -94
  771. package/src/tests/utils/to-expose/handler/questionnaire.json +158 -158
  772. package/src/tests/utils/to-expose/handler/results/index.js +6 -6
  773. package/src/tests/utils/to-expose/handler/results/res-double.json +158 -158
  774. package/src/tests/utils/to-expose/handler/results/res-input-collected.json +158 -158
  775. package/src/tests/utils/to-expose/handler/results/res-input-edited.json +158 -158
  776. package/src/tests/utils/to-expose/handler/results/res-loop.json +158 -158
  777. package/src/tests/utils/to-expose/handler/results/res-matrix.json +158 -158
  778. package/src/tests/utils/to-expose/handler/results/res-responses.json +158 -158
  779. package/src/tests/utils/to-expose/init-questionnaire/data.json +12 -12
  780. package/src/tests/utils/to-expose/init-questionnaire/init-questionnaire.spec.js +19 -19
  781. package/src/tests/utils/to-expose/init-questionnaire/questionnaire.json +148 -148
  782. package/src/tests/utils/to-expose/init-questionnaire/result.json +181 -181
  783. package/src/tests/utils/to-expose/interpret/interpret.spec.js +48 -48
  784. package/src/tests/utils/to-expose/state/questionnaire.json +61 -61
  785. package/src/tests/utils/to-expose/state/results.js +78 -78
  786. package/src/tests/utils/to-expose/state/state.spec.js +59 -59
  787. package/src/utils/components/dragger/dragger.js +64 -64
  788. package/src/utils/components/dragger/index.js +1 -1
  789. package/src/utils/components/fab/fab.js +50 -50
  790. package/src/utils/components/fab/fab.scss +32 -32
  791. package/src/utils/components/fab/index.js +1 -1
  792. package/src/utils/components/field-wrapper.js +23 -23
  793. package/src/utils/components/is-network/index.js +1 -1
  794. package/src/utils/components/is-network/is-network.js +39 -39
  795. package/src/utils/components/is-network/use-online-status.js +51 -51
  796. package/src/utils/components/label-wrapper.js +45 -45
  797. package/src/utils/icons/closed.icon.js +24 -24
  798. package/src/utils/icons/cross.icon.js +24 -24
  799. package/src/utils/icons/load.icon.js +24 -24
  800. package/src/utils/icons/lunatic-icon.js +9 -9
  801. package/src/utils/icons/lunatic-icon.scss +4 -4
  802. package/src/utils/icons/network.icon.js +24 -24
  803. package/src/utils/icons/on-drag.icon.js +24 -24
  804. package/src/utils/icons/opened.icon.js +24 -24
  805. package/src/utils/idb-tools/clear-store.js +16 -16
  806. package/src/utils/idb-tools/get-entity.js +15 -15
  807. package/src/utils/idb-tools/get-idb.js +12 -12
  808. package/src/utils/lib/alphabet.js +1 -1
  809. package/src/utils/lib/array.js +7 -7
  810. package/src/utils/lib/checkbox/group.js +21 -21
  811. package/src/utils/lib/checkbox/index.js +1 -1
  812. package/src/utils/lib/controls/index.js +1 -0
  813. package/src/utils/lib/controls/utils.js +152 -0
  814. package/src/utils/lib/decorator/index.js +1 -1
  815. package/src/utils/lib/env.js +2 -2
  816. package/src/utils/lib/event.js +15 -15
  817. package/src/utils/lib/function.js +1 -1
  818. package/src/utils/lib/index.js +21 -19
  819. package/src/utils/lib/input-number.js +6 -6
  820. package/src/utils/lib/label-position.js +12 -12
  821. package/src/utils/lib/loops/bindings.js +66 -66
  822. package/src/utils/lib/loops/build-components.js +33 -33
  823. package/src/utils/lib/loops/index.js +3 -3
  824. package/src/utils/lib/loops/shared.js +55 -55
  825. package/src/utils/lib/memo-check.js +24 -24
  826. package/src/utils/lib/missing.js +52 -52
  827. package/src/utils/lib/pagination/flow.js +2 -2
  828. package/src/utils/lib/pagination/index.js +2 -2
  829. package/src/utils/lib/pagination/navigation/index.js +1 -1
  830. package/src/utils/lib/pagination/navigation/shared.js +256 -253
  831. package/src/utils/lib/prop-types/declarations.js +22 -22
  832. package/src/utils/lib/prop-types/index.js +5 -5
  833. package/src/utils/lib/prop-types/options.js +8 -8
  834. package/src/utils/lib/prop-types/response.js +6 -6
  835. package/src/utils/lib/prop-types/value-type.js +9 -9
  836. package/src/utils/lib/responses.js +9 -7
  837. package/src/utils/lib/splitting.js +142 -0
  838. package/src/utils/lib/table/index.js +1 -1
  839. package/src/utils/lib/table/roster.js +23 -23
  840. package/src/utils/lib/tooltip/build-response.js +41 -41
  841. package/src/utils/lib/tooltip/content.js +55 -55
  842. package/src/utils/lib/tooltip/index.js +6 -6
  843. package/src/utils/store-tools/auto-load.js +2 -1
  844. package/src/utils/store-tools/clear-store-data.js +8 -8
  845. package/src/utils/store-tools/clear-store-info.js +8 -8
  846. package/src/utils/store-tools/constantes.js +20 -20
  847. package/src/utils/store-tools/create/create.js +19 -19
  848. package/src/utils/store-tools/create/index.js +1 -1
  849. package/src/utils/store-tools/create/update-store-info.js +26 -26
  850. package/src/utils/store-tools/get-store-count.js +22 -22
  851. package/src/utils/store-tools/index.js +5 -5
  852. package/src/utils/store-tools/open-or-create-store.js +47 -47
  853. package/src/utils/store-tools/use-store-index.js +24 -24
  854. package/src/utils/suggester-workers/append-to-index/create-append-task.js +3 -1
  855. package/src/utils/suggester-workers/commons-tokenizer/create-entity-tokenizer.js +56 -0
  856. package/src/utils/suggester-workers/commons-tokenizer/create-fields-tokenizer.js +56 -0
  857. package/src/utils/suggester-workers/commons-tokenizer/create-filter-stop-words.js +11 -11
  858. package/src/utils/suggester-workers/commons-tokenizer/filters/compose-filters.js +10 -0
  859. package/src/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.js +17 -0
  860. package/src/utils/suggester-workers/commons-tokenizer/filters/create-filter-stop-words.spec.js +14 -0
  861. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-accents.js +12 -0
  862. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-accents.spec.js +12 -0
  863. package/src/utils/suggester-workers/commons-tokenizer/{filter-double.js → filters/filter-double.js} +0 -0
  864. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-double.spec.js +20 -0
  865. package/src/utils/suggester-workers/commons-tokenizer/{filter-length.js → filters/filter-length.js} +0 -0
  866. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-length.spec.js +18 -0
  867. package/src/utils/suggester-workers/commons-tokenizer/{filter-stemmer.js → filters/filter-stemmer.js} +2 -2
  868. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-stemmer.spec.js +12 -0
  869. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.js +36 -0
  870. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-synonyms.spec.js +12 -0
  871. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.js +10 -0
  872. package/src/utils/suggester-workers/commons-tokenizer/filters/filter-to-lower.spec.js +12 -0
  873. package/src/utils/suggester-workers/commons-tokenizer/filters/index.js +2 -0
  874. package/src/utils/suggester-workers/commons-tokenizer/{stop-words.js → filters/stop-words.js} +0 -0
  875. package/src/utils/suggester-workers/commons-tokenizer/index.js +6 -5
  876. package/src/utils/suggester-workers/commons-tokenizer/prepare-string-indexation.js +7 -3
  877. package/src/utils/suggester-workers/commons-tokenizer/soft-tokenizer.js +1 -1
  878. package/src/utils/suggester-workers/create-worker.js +56 -0
  879. package/src/utils/suggester-workers/find-best-label/tokenize.js +2 -5
  880. package/src/utils/suggester-workers/{query-parser → searching/query-parser}/index.js +0 -0
  881. package/src/utils/suggester-workers/searching/query-parser/query-parser-soft.js +7 -0
  882. package/src/utils/suggester-workers/{query-parser → searching/query-parser}/query-parser-soft.spec.js +0 -0
  883. package/src/utils/suggester-workers/searching/query-parser/query-parser-tokenized.js +34 -0
  884. package/src/utils/suggester-workers/searching/resolve-query-parser.js +2 -2
  885. package/src/utils/suggester-workers/searching/searching.js +2 -2
  886. package/src/utils/to-expose/handler.js +68 -31
  887. package/src/utils/to-expose/hooks/filter-components.js +121 -106
  888. package/src/utils/to-expose/hooks/index.js +2 -1
  889. package/src/utils/to-expose/hooks/lunatic-split.js +428 -0
  890. package/src/utils/to-expose/hooks/lunatic.js +108 -11
  891. package/src/utils/to-expose/hooks/use-document-add-event-listener.js +63 -63
  892. package/src/utils/to-expose/index.js +11 -11
  893. package/src/utils/to-expose/interpret/index.js +1 -1
  894. package/src/utils/to-expose/interpret/main.js +16 -16
  895. package/src/utils/to-expose/interpret/md.js +65 -65
  896. package/src/utils/to-expose/state.js +23 -15
  897. package/src/components/missing-wrapper/component.js +0 -120
  898. package/src/components/missing-wrapper/wrapper.js +0 -10
  899. package/src/tests/utils/to-expose/hooks/use-lunatic.spec.js +0 -46
  900. package/src/utils/suggester-workers/commons-tokenizer/create-tokenizer.js +0 -103
  901. package/src/utils/suggester-workers/commons-tokenizer/filter-accents-to-lower.js +0 -9
  902. package/src/utils/suggester-workers/commons-tokenizer/filter-synonyms.js +0 -10
  903. package/src/utils/suggester-workers/query-parser/query-parser-soft.js +0 -7
  904. package/src/utils/suggester-workers/query-parser/query-parser-tokenized.js +0 -31
  905. package/src/utils/suggester-workers/query-parser/query-parser-tokenized.spec.js +0 -32
@@ -1,2691 +1,2691 @@
1
- {
2
- "EXTERNAL": {
3
- "ADR": "AVENUE CHARLES DE GAULLE",
4
- "NUMTH": "29",
5
- "CADRTH": null,
6
- "CIV_D1": "MONSIEUR",
7
- "CIV_D2": null,
8
- "LIBCOM": "PARIS",
9
- "PREN_D1": "JEAN-MARC",
10
- "PREN_D2": null,
11
- "CODEPOST1": "75017",
12
- "NOMVOUS_D1": "MIERLOT",
13
- "NOMVOUS_D2": null
14
- },
15
- "COLLECTED": {
16
- "DAG": {
17
- "EDITED": null,
18
- "FORCED": null,
19
- "INPUTED": null,
20
- "PREVIOUS": null,
21
- "COLLECTED": null
22
- },
23
- "DST": {
24
- "EDITED": null,
25
- "FORCED": null,
26
- "INPUTED": null,
27
- "PREVIOUS": null,
28
- "COLLECTED": null
29
- },
30
- "DTA": {
31
- "EDITED": null,
32
- "FORCED": null,
33
- "INPUTED": null,
34
- "PREVIOUS": null,
35
- "COLLECTED": null
36
- },
37
- "DTL": {
38
- "EDITED": null,
39
- "FORCED": null,
40
- "INPUTED": null,
41
- "PREVIOUS": null,
42
- "COLLECTED": null
43
- },
44
- "HPA": {
45
- "EDITED": null,
46
- "FORCED": null,
47
- "INPUTED": null,
48
- "PREVIOUS": null,
49
- "COLLECTED": null
50
- },
51
- "HPH": {
52
- "EDITED": null,
53
- "FORCED": null,
54
- "INPUTED": null,
55
- "PREVIOUS": null,
56
- "COLLECTED": null
57
- },
58
- "HPP": {
59
- "EDITED": null,
60
- "FORCED": null,
61
- "INPUTED": null,
62
- "PREVIOUS": null,
63
- "COLLECTED": null
64
- },
65
- "HSP": {
66
- "EDITED": null,
67
- "FORCED": null,
68
- "INPUTED": null,
69
- "PREVIOUS": null,
70
- "COLLECTED": null
71
- },
72
- "HST": {
73
- "EDITED": null,
74
- "FORCED": null,
75
- "INPUTED": null,
76
- "PREVIOUS": null,
77
- "COLLECTED": null
78
- },
79
- "HUA": {
80
- "EDITED": null,
81
- "FORCED": null,
82
- "INPUTED": null,
83
- "PREVIOUS": null,
84
- "COLLECTED": null
85
- },
86
- "HUP": {
87
- "EDITED": null,
88
- "FORCED": null,
89
- "INPUTED": null,
90
- "PREVIOUS": null,
91
- "COLLECTED": null
92
- },
93
- "HUT": {
94
- "EDITED": null,
95
- "FORCED": null,
96
- "INPUTED": null,
97
- "PREVIOUS": null,
98
- "COLLECTED": null
99
- },
100
- "IAS": {
101
- "EDITED": null,
102
- "FORCED": null,
103
- "INPUTED": null,
104
- "PREVIOUS": null,
105
- "COLLECTED": null
106
- },
107
- "IEL": {
108
- "EDITED": null,
109
- "FORCED": null,
110
- "INPUTED": null,
111
- "PREVIOUS": null,
112
- "COLLECTED": null
113
- },
114
- "IMI": {
115
- "EDITED": null,
116
- "FORCED": null,
117
- "INPUTED": null,
118
- "PREVIOUS": null,
119
- "COLLECTED": "1"
120
- },
121
- "KBA": {
122
- "EDITED": null,
123
- "FORCED": null,
124
- "INPUTED": null,
125
- "PREVIOUS": null,
126
- "COLLECTED": null
127
- },
128
- "KBD": {
129
- "EDITED": null,
130
- "FORCED": null,
131
- "INPUTED": null,
132
- "PREVIOUS": null,
133
- "COLLECTED": null
134
- },
135
- "KCA": {
136
- "EDITED": null,
137
- "FORCED": null,
138
- "INPUTED": null,
139
- "PREVIOUS": null,
140
- "COLLECTED": null
141
- },
142
- "KJA": {
143
- "EDITED": null,
144
- "FORCED": null,
145
- "INPUTED": null,
146
- "PREVIOUS": null,
147
- "COLLECTED": null
148
- },
149
- "KJC": {
150
- "EDITED": null,
151
- "FORCED": null,
152
- "INPUTED": null,
153
- "PREVIOUS": null,
154
- "COLLECTED": null
155
- },
156
- "KSB": {
157
- "EDITED": null,
158
- "FORCED": null,
159
- "INPUTED": null,
160
- "PREVIOUS": null,
161
- "COLLECTED": null
162
- },
163
- "KSV": {
164
- "EDITED": null,
165
- "FORCED": null,
166
- "INPUTED": null,
167
- "PREVIOUS": null,
168
- "COLLECTED": null
169
- },
170
- "KVE": {
171
- "EDITED": null,
172
- "FORCED": null,
173
- "INPUTED": null,
174
- "PREVIOUS": null,
175
- "COLLECTED": null
176
- },
177
- "ODF": {
178
- "EDITED": null,
179
- "FORCED": null,
180
- "INPUTED": null,
181
- "PREVIOUS": null,
182
- "COLLECTED": null
183
- },
184
- "ODL": {
185
- "EDITED": null,
186
- "FORCED": null,
187
- "INPUTED": null,
188
- "PREVIOUS": null,
189
- "COLLECTED": null
190
- },
191
- "OIH": {
192
- "EDITED": null,
193
- "FORCED": null,
194
- "INPUTED": null,
195
- "PREVIOUS": null,
196
- "COLLECTED": null
197
- },
198
- "OLA": {
199
- "EDITED": null,
200
- "FORCED": null,
201
- "INPUTED": null,
202
- "PREVIOUS": null,
203
- "COLLECTED": null
204
- },
205
- "OQA": {
206
- "EDITED": null,
207
- "FORCED": null,
208
- "INPUTED": null,
209
- "PREVIOUS": null,
210
- "COLLECTED": null
211
- },
212
- "VIN": {
213
- "EDITED": null,
214
- "FORCED": null,
215
- "INPUTED": null,
216
- "PREVIOUS": null,
217
- "COLLECTED": null
218
- },
219
- "VLR": {
220
- "EDITED": null,
221
- "FORCED": null,
222
- "INPUTED": null,
223
- "PREVIOUS": null,
224
- "COLLECTED": null
225
- },
226
- "VND": {
227
- "EDITED": null,
228
- "FORCED": null,
229
- "INPUTED": null,
230
- "PREVIOUS": null,
231
- "COLLECTED": null
232
- },
233
- "VOP": {
234
- "EDITED": null,
235
- "FORCED": null,
236
- "INPUTED": null,
237
- "PREVIOUS": null,
238
- "COLLECTED": null
239
- },
240
- "VPI": {
241
- "EDITED": null,
242
- "FORCED": null,
243
- "INPUTED": null,
244
- "PREVIOUS": null,
245
- "COLLECTED": null
246
- },
247
- "VSY": {
248
- "EDITED": null,
249
- "FORCED": null,
250
- "INPUTED": null,
251
- "PREVIOUS": null,
252
- "COLLECTED": null
253
- },
254
- "CADR": {
255
- "EDITED": null,
256
- "FORCED": null,
257
- "INPUTED": null,
258
- "PREVIOUS": null,
259
- "COLLECTED": "2"
260
- },
261
- "DALO": {
262
- "EDITED": null,
263
- "FORCED": null,
264
- "INPUTED": null,
265
- "PREVIOUS": null,
266
- "COLLECTED": null
267
- },
268
- "DDAT": {
269
- "EDITED": null,
270
- "FORCED": null,
271
- "INPUTED": null,
272
- "PREVIOUS": null,
273
- "COLLECTED": null
274
- },
275
- "DDEM": {
276
- "EDITED": null,
277
- "FORCED": null,
278
- "INPUTED": null,
279
- "PREVIOUS": null,
280
- "COLLECTED": null
281
- },
282
- "DORM": {
283
- "EDITED": [null],
284
- "FORCED": [null],
285
- "INPUTED": [null],
286
- "PREVIOUS": [null],
287
- "COLLECTED": [null, null, null, null]
288
- },
289
- "DSTL": {
290
- "EDITED": null,
291
- "FORCED": null,
292
- "INPUTED": null,
293
- "PREVIOUS": null,
294
- "COLLECTED": null
295
- },
296
- "DSTP": {
297
- "EDITED": null,
298
- "FORCED": null,
299
- "INPUTED": null,
300
- "PREVIOUS": null,
301
- "COLLECTED": null
302
- },
303
- "HAUT": {
304
- "EDITED": null,
305
- "FORCED": null,
306
- "INPUTED": null,
307
- "PREVIOUS": null,
308
- "COLLECTED": null
309
- },
310
- "HCHA": {
311
- "EDITED": null,
312
- "FORCED": null,
313
- "INPUTED": null,
314
- "PREVIOUS": null,
315
- "COLLECTED": null
316
- },
317
- "HPI1": {
318
- "EDITED": null,
319
- "FORCED": null,
320
- "INPUTED": null,
321
- "PREVIOUS": null,
322
- "COLLECTED": null
323
- },
324
- "HPI2": {
325
- "EDITED": null,
326
- "FORCED": null,
327
- "INPUTED": null,
328
- "PREVIOUS": null,
329
- "COLLECTED": null
330
- },
331
- "HSI1": {
332
- "EDITED": null,
333
- "FORCED": null,
334
- "INPUTED": null,
335
- "PREVIOUS": null,
336
- "COLLECTED": null
337
- },
338
- "HSI2": {
339
- "EDITED": null,
340
- "FORCED": null,
341
- "INPUTED": null,
342
- "PREVIOUS": null,
343
- "COLLECTED": null
344
- },
345
- "ICOI": {
346
- "EDITED": null,
347
- "FORCED": null,
348
- "INPUTED": null,
349
- "PREVIOUS": null,
350
- "COLLECTED": "2"
351
- },
352
- "KAO1": {
353
- "EDITED": null,
354
- "FORCED": null,
355
- "INPUTED": null,
356
- "PREVIOUS": null,
357
- "COLLECTED": null
358
- },
359
- "KCU1": {
360
- "EDITED": null,
361
- "FORCED": null,
362
- "INPUTED": null,
363
- "PREVIOUS": null,
364
- "COLLECTED": null
365
- },
366
- "KCU2": {
367
- "EDITED": null,
368
- "FORCED": null,
369
- "INPUTED": null,
370
- "PREVIOUS": null,
371
- "COLLECTED": null
372
- },
373
- "KGA1": {
374
- "EDITED": null,
375
- "FORCED": null,
376
- "INPUTED": null,
377
- "PREVIOUS": null,
378
- "COLLECTED": null
379
- },
380
- "KGA2": {
381
- "EDITED": null,
382
- "FORCED": null,
383
- "INPUTED": null,
384
- "PREVIOUS": null,
385
- "COLLECTED": null
386
- },
387
- "KGA3": {
388
- "EDITED": null,
389
- "FORCED": null,
390
- "INPUTED": null,
391
- "PREVIOUS": null,
392
- "COLLECTED": null
393
- },
394
- "KGA4": {
395
- "EDITED": null,
396
- "FORCED": null,
397
- "INPUTED": null,
398
- "PREVIOUS": null,
399
- "COLLECTED": null
400
- },
401
- "KGRA": {
402
- "EDITED": null,
403
- "FORCED": null,
404
- "INPUTED": null,
405
- "PREVIOUS": null,
406
- "COLLECTED": null
407
- },
408
- "KSE1": {
409
- "EDITED": null,
410
- "FORCED": null,
411
- "INPUTED": null,
412
- "PREVIOUS": null,
413
- "COLLECTED": null
414
- },
415
- "KSE3": {
416
- "EDITED": null,
417
- "FORCED": null,
418
- "INPUTED": null,
419
- "PREVIOUS": null,
420
- "COLLECTED": null
421
- },
422
- "KSJC": {
423
- "EDITED": null,
424
- "FORCED": null,
425
- "INPUTED": null,
426
- "PREVIOUS": null,
427
- "COLLECTED": null
428
- },
429
- "KSMI": {
430
- "EDITED": null,
431
- "FORCED": null,
432
- "INPUTED": null,
433
- "PREVIOUS": null,
434
- "COLLECTED": null
435
- },
436
- "KSOA": {
437
- "EDITED": null,
438
- "FORCED": null,
439
- "INPUTED": null,
440
- "PREVIOUS": null,
441
- "COLLECTED": null
442
- },
443
- "KSV1": {
444
- "EDITED": null,
445
- "FORCED": null,
446
- "INPUTED": null,
447
- "PREVIOUS": null,
448
- "COLLECTED": null
449
- },
450
- "KWC1": {
451
- "EDITED": null,
452
- "FORCED": null,
453
- "INPUTED": null,
454
- "PREVIOUS": null,
455
- "COLLECTED": null
456
- },
457
- "KWCD": {
458
- "EDITED": null,
459
- "FORCED": null,
460
- "INPUTED": null,
461
- "PREVIOUS": null,
462
- "COLLECTED": null
463
- },
464
- "KWCI": {
465
- "EDITED": null,
466
- "FORCED": null,
467
- "INPUTED": null,
468
- "PREVIOUS": null,
469
- "COLLECTED": null
470
- },
471
- "LIEN": {
472
- "EDITED": [null],
473
- "FORCED": [null],
474
- "INPUTED": [null],
475
- "PREVIOUS": [null],
476
- "COLLECTED": [null, "1", "3", "3"]
477
- },
478
- "MAA3": {
479
- "EDITED": null,
480
- "FORCED": null,
481
- "INPUTED": null,
482
- "PREVIOUS": null,
483
- "COLLECTED": null
484
- },
485
- "OIHD": {
486
- "EDITED": null,
487
- "FORCED": null,
488
- "INPUTED": null,
489
- "PREVIOUS": null,
490
- "COLLECTED": null
491
- },
492
- "OIHE": {
493
- "EDITED": null,
494
- "FORCED": null,
495
- "INPUTED": null,
496
- "PREVIOUS": null,
497
- "COLLECTED": null
498
- },
499
- "OLAD": {
500
- "EDITED": null,
501
- "FORCED": null,
502
- "INPUTED": null,
503
- "PREVIOUS": null,
504
- "COLLECTED": null
505
- },
506
- "OQAD": {
507
- "EDITED": null,
508
- "FORCED": null,
509
- "INPUTED": null,
510
- "PREVIOUS": null,
511
- "COLLECTED": null
512
- },
513
- "SDL2": {
514
- "EDITED": [null],
515
- "FORCED": [null],
516
- "INPUTED": [null],
517
- "PREVIOUS": [null],
518
- "COLLECTED": [null]
519
- },
520
- "SDL4": {
521
- "EDITED": [null],
522
- "FORCED": [null],
523
- "INPUTED": [null],
524
- "PREVIOUS": [null],
525
- "COLLECTED": [null]
526
- },
527
- "SDN1": {
528
- "EDITED": [null],
529
- "FORCED": [null],
530
- "INPUTED": [null],
531
- "PREVIOUS": [null],
532
- "COLLECTED": [null]
533
- },
534
- "SDT1": {
535
- "EDITED": [null],
536
- "FORCED": [null],
537
- "INPUTED": [null],
538
- "PREVIOUS": [null],
539
- "COLLECTED": [null]
540
- },
541
- "SDT2": {
542
- "EDITED": [null],
543
- "FORCED": [null],
544
- "INPUTED": [null],
545
- "PREVIOUS": [null],
546
- "COLLECTED": [null]
547
- },
548
- "SEXE": {
549
- "EDITED": [null],
550
- "FORCED": [null],
551
- "INPUTED": [null],
552
- "PREVIOUS": [null],
553
- "COLLECTED": ["1", "2", "2", "1"]
554
- },
555
- "UWEB": {
556
- "EDITED": null,
557
- "FORCED": null,
558
- "INPUTED": null,
559
- "PREVIOUS": null,
560
- "COLLECTED": null
561
- },
562
- "VAID": {
563
- "EDITED": null,
564
- "FORCED": null,
565
- "INPUTED": null,
566
- "PREVIOUS": null,
567
- "COLLECTED": null
568
- },
569
- "VDD1": {
570
- "EDITED": null,
571
- "FORCED": null,
572
- "INPUTED": null,
573
- "PREVIOUS": null,
574
- "COLLECTED": null
575
- },
576
- "VDSY": {
577
- "EDITED": null,
578
- "FORCED": null,
579
- "INPUTED": null,
580
- "PREVIOUS": null,
581
- "COLLECTED": null
582
- },
583
- "VFFH": {
584
- "EDITED": null,
585
- "FORCED": null,
586
- "INPUTED": null,
587
- "PREVIOUS": null,
588
- "COLLECTED": null
589
- },
590
- "VFLA": {
591
- "EDITED": null,
592
- "FORCED": null,
593
- "INPUTED": null,
594
- "PREVIOUS": null,
595
- "COLLECTED": null
596
- },
597
- "VLA1": {
598
- "EDITED": null,
599
- "FORCED": null,
600
- "INPUTED": null,
601
- "PREVIOUS": null,
602
- "COLLECTED": null
603
- },
604
- "VLRD": {
605
- "EDITED": null,
606
- "FORCED": null,
607
- "INPUTED": null,
608
- "PREVIOUS": null,
609
- "COLLECTED": null
610
- },
611
- "VPID": {
612
- "EDITED": null,
613
- "FORCED": null,
614
- "INPUTED": null,
615
- "PREVIOUS": null,
616
- "COLLECTED": null
617
- },
618
- "VPRA": {
619
- "EDITED": null,
620
- "FORCED": null,
621
- "INPUTED": null,
622
- "PREVIOUS": null,
623
- "COLLECTED": null
624
- },
625
- "VSO1": {
626
- "EDITED": null,
627
- "FORCED": null,
628
- "INPUTED": null,
629
- "PREVIOUS": null,
630
- "COLLECTED": null
631
- },
632
- "VTL1": {
633
- "EDITED": null,
634
- "FORCED": null,
635
- "INPUTED": null,
636
- "PREVIOUS": null,
637
- "COLLECTED": null
638
- },
639
- "VTLD": {
640
- "EDITED": null,
641
- "FORCED": null,
642
- "INPUTED": null,
643
- "PREVIOUS": null,
644
- "COLLECTED": null
645
- },
646
- "CHGNC": {
647
- "EDITED": null,
648
- "FORCED": null,
649
- "INPUTED": null,
650
- "PREVIOUS": null,
651
- "COLLECTED": null
652
- },
653
- "DAGEO": {
654
- "EDITED": null,
655
- "FORCED": null,
656
- "INPUTED": null,
657
- "PREVIOUS": null,
658
- "COLLECTED": null
659
- },
660
- "DAGRL": {
661
- "EDITED": null,
662
- "FORCED": null,
663
- "INPUTED": null,
664
- "PREVIOUS": null,
665
- "COLLECTED": null
666
- },
667
- "EAMIA": {
668
- "EDITED": [null],
669
- "FORCED": [null],
670
- "INPUTED": [null],
671
- "PREVIOUS": [null],
672
- "COLLECTED": [null]
673
- },
674
- "EAMIH": {
675
- "EDITED": [null],
676
- "FORCED": [null],
677
- "INPUTED": [null],
678
- "PREVIOUS": [null],
679
- "COLLECTED": [null]
680
- },
681
- "EAMIK": {
682
- "EDITED": [null],
683
- "FORCED": [null],
684
- "INPUTED": [null],
685
- "PREVIOUS": [null],
686
- "COLLECTED": [null]
687
- },
688
- "EAMIL": {
689
- "EDITED": [null],
690
- "FORCED": [null],
691
- "INPUTED": [null],
692
- "PREVIOUS": [null],
693
- "COLLECTED": [null]
694
- },
695
- "EPAS1": {
696
- "EDITED": [null],
697
- "FORCED": [null],
698
- "INPUTED": [null],
699
- "PREVIOUS": [null],
700
- "COLLECTED": [null]
701
- },
702
- "EPASB": {
703
- "EDITED": [null],
704
- "FORCED": [null],
705
- "INPUTED": [null],
706
- "PREVIOUS": [null],
707
- "COLLECTED": [null]
708
- },
709
- "EPASC": {
710
- "EDITED": [null],
711
- "FORCED": [null],
712
- "INPUTED": [null],
713
- "PREVIOUS": [null],
714
- "COLLECTED": [null]
715
- },
716
- "EPROJ": {
717
- "EDITED": [null],
718
- "FORCED": [null],
719
- "INPUTED": [null],
720
- "PREVIOUS": [null],
721
- "COLLECTED": [null]
722
- },
723
- "GARDE": {
724
- "EDITED": [null],
725
- "FORCED": [null],
726
- "INPUTED": [null],
727
- "PREVIOUS": [null],
728
- "COLLECTED": [null, null, null, null]
729
- },
730
- "HPEUP": {
731
- "EDITED": null,
732
- "FORCED": null,
733
- "INPUTED": null,
734
- "PREVIOUS": null,
735
- "COLLECTED": null
736
- },
737
- "HTLC1": {
738
- "EDITED": null,
739
- "FORCED": null,
740
- "INPUTED": null,
741
- "PREVIOUS": null,
742
- "COLLECTED": "1"
743
- },
744
- "IAATC": {
745
- "EDITED": null,
746
- "FORCED": null,
747
- "INPUTED": null,
748
- "PREVIOUS": null,
749
- "COLLECTED": "5"
750
- },
751
- "KDLK1": {
752
- "EDITED": null,
753
- "FORCED": null,
754
- "INPUTED": null,
755
- "PREVIOUS": null,
756
- "COLLECTED": null
757
- },
758
- "KDLK2": {
759
- "EDITED": null,
760
- "FORCED": null,
761
- "INPUTED": null,
762
- "PREVIOUS": null,
763
- "COLLECTED": null
764
- },
765
- "KGA11": {
766
- "EDITED": null,
767
- "FORCED": null,
768
- "INPUTED": null,
769
- "PREVIOUS": null,
770
- "COLLECTED": null
771
- },
772
- "KGA12": {
773
- "EDITED": null,
774
- "FORCED": null,
775
- "INPUTED": null,
776
- "PREVIOUS": null,
777
- "COLLECTED": null
778
- },
779
- "KGA13": {
780
- "EDITED": null,
781
- "FORCED": null,
782
- "INPUTED": null,
783
- "PREVIOUS": null,
784
- "COLLECTED": null
785
- },
786
- "KGA14": {
787
- "EDITED": null,
788
- "FORCED": null,
789
- "INPUTED": null,
790
- "PREVIOUS": null,
791
- "COLLECTED": null
792
- },
793
- "KGRAA": {
794
- "EDITED": null,
795
- "FORCED": null,
796
- "INPUTED": null,
797
- "PREVIOUS": null,
798
- "COLLECTED": null
799
- },
800
- "KPISC": {
801
- "EDITED": null,
802
- "FORCED": null,
803
- "INPUTED": null,
804
- "PREVIOUS": null,
805
- "COLLECTED": null
806
- },
807
- "KSJPC": {
808
- "EDITED": null,
809
- "FORCED": null,
810
- "INPUTED": null,
811
- "PREVIOUS": null,
812
- "COLLECTED": null
813
- },
814
- "KSJPI": {
815
- "EDITED": null,
816
- "FORCED": null,
817
- "INPUTED": null,
818
- "PREVIOUS": null,
819
- "COLLECTED": null
820
- },
821
- "KVELO": {
822
- "EDITED": null,
823
- "FORCED": null,
824
- "INPUTED": null,
825
- "PREVIOUS": null,
826
- "COLLECTED": null
827
- },
828
- "LIMT1": {
829
- "EDITED": null,
830
- "FORCED": null,
831
- "INPUTED": null,
832
- "PREVIOUS": null,
833
- "COLLECTED": null
834
- },
835
- "LIMT2": {
836
- "EDITED": [null],
837
- "FORCED": [null],
838
- "INPUTED": [null],
839
- "PREVIOUS": [null],
840
- "COLLECTED": [null]
841
- },
842
- "LNAIS": {
843
- "EDITED": [null],
844
- "FORCED": [null],
845
- "INPUTED": [null],
846
- "PREVIOUS": [null],
847
- "COLLECTED": ["1", "1", "1", "1"]
848
- },
849
- "LOGCO": {
850
- "EDITED": [null],
851
- "FORCED": [null],
852
- "INPUTED": [null],
853
- "PREVIOUS": [null],
854
- "COLLECTED": [null, null, null, null]
855
- },
856
- "MAA2A": {
857
- "EDITED": null,
858
- "FORCED": null,
859
- "INPUTED": null,
860
- "PREVIOUS": null,
861
- "COLLECTED": null
862
- },
863
- "MAA2M": {
864
- "EDITED": null,
865
- "FORCED": null,
866
- "INPUTED": null,
867
- "PREVIOUS": null,
868
- "COLLECTED": null
869
- },
870
- "MAA3A": {
871
- "EDITED": null,
872
- "FORCED": null,
873
- "INPUTED": null,
874
- "PREVIOUS": null,
875
- "COLLECTED": null
876
- },
877
- "MAA3M": {
878
- "EDITED": null,
879
- "FORCED": null,
880
- "INPUTED": null,
881
- "PREVIOUS": null,
882
- "COLLECTED": null
883
- },
884
- "MCHR1": {
885
- "EDITED": null,
886
- "FORCED": null,
887
- "INPUTED": null,
888
- "PREVIOUS": null,
889
- "COLLECTED": null
890
- },
891
- "MCHR2": {
892
- "EDITED": [null],
893
- "FORCED": [null],
894
- "INPUTED": [null],
895
- "PREVIOUS": [null],
896
- "COLLECTED": [null]
897
- },
898
- "NBHAB": {
899
- "EDITED": null,
900
- "FORCED": null,
901
- "INPUTED": null,
902
- "PREVIOUS": null,
903
- "COLLECTED": "4"
904
- },
905
- "OIHB1": {
906
- "EDITED": null,
907
- "FORCED": null,
908
- "INPUTED": null,
909
- "PREVIOUS": null,
910
- "COLLECTED": null
911
- },
912
- "OIHB2": {
913
- "EDITED": null,
914
- "FORCED": null,
915
- "INPUTED": null,
916
- "PREVIOUS": null,
917
- "COLLECTED": null
918
- },
919
- "OIHB3": {
920
- "EDITED": null,
921
- "FORCED": null,
922
- "INPUTED": null,
923
- "PREVIOUS": null,
924
- "COLLECTED": null
925
- },
926
- "OIHC1": {
927
- "EDITED": null,
928
- "FORCED": null,
929
- "INPUTED": null,
930
- "PREVIOUS": null,
931
- "COLLECTED": null
932
- },
933
- "OIHC2": {
934
- "EDITED": null,
935
- "FORCED": null,
936
- "INPUTED": null,
937
- "PREVIOUS": null,
938
- "COLLECTED": null
939
- },
940
- "OIHC3": {
941
- "EDITED": null,
942
- "FORCED": null,
943
- "INPUTED": null,
944
- "PREVIOUS": null,
945
- "COLLECTED": null
946
- },
947
- "OIHC4": {
948
- "EDITED": null,
949
- "FORCED": null,
950
- "INPUTED": null,
951
- "PREVIOUS": null,
952
- "COLLECTED": null
953
- },
954
- "OIHC5": {
955
- "EDITED": null,
956
- "FORCED": null,
957
- "INPUTED": null,
958
- "PREVIOUS": null,
959
- "COLLECTED": null
960
- },
961
- "OIHC6": {
962
- "EDITED": null,
963
- "FORCED": null,
964
- "INPUTED": null,
965
- "PREVIOUS": null,
966
- "COLLECTED": null
967
- },
968
- "OIHF1": {
969
- "EDITED": null,
970
- "FORCED": null,
971
- "INPUTED": null,
972
- "PREVIOUS": null,
973
- "COLLECTED": null
974
- },
975
- "OIHF2": {
976
- "EDITED": null,
977
- "FORCED": null,
978
- "INPUTED": null,
979
- "PREVIOUS": null,
980
- "COLLECTED": null
981
- },
982
- "OIHF3": {
983
- "EDITED": null,
984
- "FORCED": null,
985
- "INPUTED": null,
986
- "PREVIOUS": null,
987
- "COLLECTED": null
988
- },
989
- "OIHF4": {
990
- "EDITED": null,
991
- "FORCED": null,
992
- "INPUTED": null,
993
- "PREVIOUS": null,
994
- "COLLECTED": null
995
- },
996
- "OIHF5": {
997
- "EDITED": null,
998
- "FORCED": null,
999
- "INPUTED": null,
1000
- "PREVIOUS": null,
1001
- "COLLECTED": null
1002
- },
1003
- "OIHF6": {
1004
- "EDITED": null,
1005
- "FORCED": null,
1006
- "INPUTED": null,
1007
- "PREVIOUS": null,
1008
- "COLLECTED": null
1009
- },
1010
- "SANT1": {
1011
- "EDITED": null,
1012
- "FORCED": null,
1013
- "INPUTED": null,
1014
- "PREVIOUS": null,
1015
- "COLLECTED": null
1016
- },
1017
- "SDL11": {
1018
- "EDITED": [null],
1019
- "FORCED": [null],
1020
- "INPUTED": [null],
1021
- "PREVIOUS": [null],
1022
- "COLLECTED": [null]
1023
- },
1024
- "SDL12": {
1025
- "EDITED": [null],
1026
- "FORCED": [null],
1027
- "INPUTED": [null],
1028
- "PREVIOUS": [null],
1029
- "COLLECTED": [null]
1030
- },
1031
- "SDL13": {
1032
- "EDITED": [null],
1033
- "FORCED": [null],
1034
- "INPUTED": [null],
1035
- "PREVIOUS": [null],
1036
- "COLLECTED": [null]
1037
- },
1038
- "SDL14": {
1039
- "EDITED": [null],
1040
- "FORCED": [null],
1041
- "INPUTED": [null],
1042
- "PREVIOUS": [null],
1043
- "COLLECTED": [null]
1044
- },
1045
- "SDL15": {
1046
- "EDITED": [null],
1047
- "FORCED": [null],
1048
- "INPUTED": [null],
1049
- "PREVIOUS": [null],
1050
- "COLLECTED": [null]
1051
- },
1052
- "SDL16": {
1053
- "EDITED": [null],
1054
- "FORCED": [null],
1055
- "INPUTED": [null],
1056
- "PREVIOUS": [null],
1057
- "COLLECTED": [null]
1058
- },
1059
- "SDL17": {
1060
- "EDITED": [null],
1061
- "FORCED": [null],
1062
- "INPUTED": [null],
1063
- "PREVIOUS": [null],
1064
- "COLLECTED": [null]
1065
- },
1066
- "SDTAD": {
1067
- "EDITED": [null],
1068
- "FORCED": [null],
1069
- "INPUTED": [null],
1070
- "PREVIOUS": [null],
1071
- "COLLECTED": [null]
1072
- },
1073
- "SITUA": {
1074
- "EDITED": [null],
1075
- "FORCED": [null],
1076
- "INPUTED": [null],
1077
- "PREVIOUS": [null],
1078
- "COLLECTED": ["1", "1", "2", "5"]
1079
- },
1080
- "STOC1": {
1081
- "EDITED": null,
1082
- "FORCED": null,
1083
- "INPUTED": null,
1084
- "PREVIOUS": null,
1085
- "COLLECTED": "1"
1086
- },
1087
- "STOC2": {
1088
- "EDITED": null,
1089
- "FORCED": null,
1090
- "INPUTED": null,
1091
- "PREVIOUS": null,
1092
- "COLLECTED": null
1093
- },
1094
- "STOCP": {
1095
- "EDITED": null,
1096
- "FORCED": null,
1097
- "INPUTED": null,
1098
- "PREVIOUS": null,
1099
- "COLLECTED": "1"
1100
- },
1101
- "TELET": {
1102
- "EDITED": [null],
1103
- "FORCED": [null],
1104
- "INPUTED": [null],
1105
- "PREVIOUS": [null],
1106
- "COLLECTED": ["3", "5", null, null]
1107
- },
1108
- "TRAGE": {
1109
- "EDITED": [null],
1110
- "FORCED": [null],
1111
- "INPUTED": [null],
1112
- "PREVIOUS": [null],
1113
- "COLLECTED": [null, null, null, null]
1114
- },
1115
- "UNLOG": {
1116
- "EDITED": [null],
1117
- "FORCED": [null],
1118
- "INPUTED": [null],
1119
- "PREVIOUS": [null],
1120
- "COLLECTED": ["1", "1", "1", "1"]
1121
- },
1122
- "VLAB1": {
1123
- "EDITED": null,
1124
- "FORCED": null,
1125
- "INPUTED": null,
1126
- "PREVIOUS": null,
1127
- "COLLECTED": null
1128
- },
1129
- "VSURF": {
1130
- "EDITED": null,
1131
- "FORCED": null,
1132
- "INPUTED": null,
1133
- "PREVIOUS": null,
1134
- "COLLECTED": null
1135
- },
1136
- "COUPLE": {
1137
- "EDITED": [null],
1138
- "FORCED": [null],
1139
- "INPUTED": [null],
1140
- "PREVIOUS": [null],
1141
- "COLLECTED": ["1", "1", "3", "3"]
1142
- },
1143
- "DAGEO1": {
1144
- "EDITED": null,
1145
- "FORCED": null,
1146
- "INPUTED": null,
1147
- "PREVIOUS": null,
1148
- "COLLECTED": null
1149
- },
1150
- "DAGEO2": {
1151
- "EDITED": null,
1152
- "FORCED": null,
1153
- "INPUTED": null,
1154
- "PREVIOUS": null,
1155
- "COLLECTED": null
1156
- },
1157
- "DAGEO3": {
1158
- "EDITED": null,
1159
- "FORCED": null,
1160
- "INPUTED": null,
1161
- "PREVIOUS": null,
1162
- "COLLECTED": null
1163
- },
1164
- "DEPART": {
1165
- "EDITED": null,
1166
- "FORCED": null,
1167
- "INPUTED": null,
1168
- "PREVIOUS": null,
1169
- "COLLECTED": null
1170
- },
1171
- "DURLOG": {
1172
- "EDITED": [null],
1173
- "FORCED": [null],
1174
- "INPUTED": [null],
1175
- "PREVIOUS": [null],
1176
- "COLLECTED": [null, null, null, null]
1177
- },
1178
- "ECOVID": {
1179
- "EDITED": [null],
1180
- "FORCED": [null],
1181
- "INPUTED": [null],
1182
- "PREVIOUS": [null],
1183
- "COLLECTED": [null]
1184
- },
1185
- "EPROJB": {
1186
- "EDITED": [null],
1187
- "FORCED": [null],
1188
- "INPUTED": [null],
1189
- "PREVIOUS": [null],
1190
- "COLLECTED": [null]
1191
- },
1192
- "EPROJC": {
1193
- "EDITED": [null],
1194
- "FORCED": [null],
1195
- "INPUTED": [null],
1196
- "PREVIOUS": [null],
1197
- "COLLECTED": [null]
1198
- },
1199
- "EPROJD": {
1200
- "EDITED": [null],
1201
- "FORCED": [null],
1202
- "INPUTED": [null],
1203
- "PREVIOUS": [null],
1204
- "COLLECTED": [null]
1205
- },
1206
- "ERET11": {
1207
- "EDITED": [null],
1208
- "FORCED": [null],
1209
- "INPUTED": [null],
1210
- "PREVIOUS": [null],
1211
- "COLLECTED": [null]
1212
- },
1213
- "ERET12": {
1214
- "EDITED": [null],
1215
- "FORCED": [null],
1216
- "INPUTED": [null],
1217
- "PREVIOUS": [null],
1218
- "COLLECTED": [null]
1219
- },
1220
- "ERET13": {
1221
- "EDITED": [null],
1222
- "FORCED": [null],
1223
- "INPUTED": [null],
1224
- "PREVIOUS": [null],
1225
- "COLLECTED": [null]
1226
- },
1227
- "ERET14": {
1228
- "EDITED": [null],
1229
- "FORCED": [null],
1230
- "INPUTED": [null],
1231
- "PREVIOUS": [null],
1232
- "COLLECTED": [null]
1233
- },
1234
- "ERET15": {
1235
- "EDITED": [null],
1236
- "FORCED": [null],
1237
- "INPUTED": [null],
1238
- "PREVIOUS": [null],
1239
- "COLLECTED": [null]
1240
- },
1241
- "GRDIPA": {
1242
- "EDITED": [null],
1243
- "FORCED": [null],
1244
- "INPUTED": [null],
1245
- "PREVIOUS": [null],
1246
- "COLLECTED": ["8", "4", "5", "5"]
1247
- },
1248
- "GRDIPB": {
1249
- "EDITED": [null],
1250
- "FORCED": [null],
1251
- "INPUTED": [null],
1252
- "PREVIOUS": [null],
1253
- "COLLECTED": [null, null, null, null]
1254
- },
1255
- "GRDIPC": {
1256
- "EDITED": [null],
1257
- "FORCED": [null],
1258
- "INPUTED": [null],
1259
- "PREVIOUS": [null],
1260
- "COLLECTED": ["1", null, null, null]
1261
- },
1262
- "IAATCD": {
1263
- "EDITED": null,
1264
- "FORCED": null,
1265
- "INPUTED": null,
1266
- "PREVIOUS": null,
1267
- "COLLECTED": null
1268
- },
1269
- "KSJPIT": {
1270
- "EDITED": null,
1271
- "FORCED": null,
1272
- "INPUTED": null,
1273
- "PREVIOUS": null,
1274
- "COLLECTED": null
1275
- },
1276
- "LOGAUT": {
1277
- "EDITED": [null],
1278
- "FORCED": [null],
1279
- "INPUTED": [null],
1280
- "PREVIOUS": [null],
1281
- "COLLECTED": [null, null, null, null]
1282
- },
1283
- "LOGENQ": {
1284
- "EDITED": [null],
1285
- "FORCED": [null],
1286
- "INPUTED": [null],
1287
- "PREVIOUS": [null],
1288
- "COLLECTED": [null, null, null, null]
1289
- },
1290
- "MAA2AC": {
1291
- "EDITED": null,
1292
- "FORCED": null,
1293
- "INPUTED": null,
1294
- "PREVIOUS": null,
1295
- "COLLECTED": null
1296
- },
1297
- "MAA2MC": {
1298
- "EDITED": null,
1299
- "FORCED": null,
1300
- "INPUTED": null,
1301
- "PREVIOUS": null,
1302
- "COLLECTED": null
1303
- },
1304
- "ODFRA2": {
1305
- "EDITED": null,
1306
- "FORCED": null,
1307
- "INPUTED": null,
1308
- "PREVIOUS": null,
1309
- "COLLECTED": null
1310
- },
1311
- "OLAR11": {
1312
- "EDITED": null,
1313
- "FORCED": null,
1314
- "INPUTED": null,
1315
- "PREVIOUS": null,
1316
- "COLLECTED": null
1317
- },
1318
- "OLAR12": {
1319
- "EDITED": null,
1320
- "FORCED": null,
1321
- "INPUTED": null,
1322
- "PREVIOUS": null,
1323
- "COLLECTED": null
1324
- },
1325
- "OLAR13": {
1326
- "EDITED": null,
1327
- "FORCED": null,
1328
- "INPUTED": null,
1329
- "PREVIOUS": null,
1330
- "COLLECTED": null
1331
- },
1332
- "OLAR14": {
1333
- "EDITED": null,
1334
- "FORCED": null,
1335
- "INPUTED": null,
1336
- "PREVIOUS": null,
1337
- "COLLECTED": null
1338
- },
1339
- "OLAR15": {
1340
- "EDITED": null,
1341
- "FORCED": null,
1342
- "INPUTED": null,
1343
- "PREVIOUS": null,
1344
- "COLLECTED": null
1345
- },
1346
- "OLAR21": {
1347
- "EDITED": null,
1348
- "FORCED": null,
1349
- "INPUTED": null,
1350
- "PREVIOUS": null,
1351
- "COLLECTED": null
1352
- },
1353
- "OLAR22": {
1354
- "EDITED": null,
1355
- "FORCED": null,
1356
- "INPUTED": null,
1357
- "PREVIOUS": null,
1358
- "COLLECTED": null
1359
- },
1360
- "OLAR23": {
1361
- "EDITED": null,
1362
- "FORCED": null,
1363
- "INPUTED": null,
1364
- "PREVIOUS": null,
1365
- "COLLECTED": null
1366
- },
1367
- "OLAR24": {
1368
- "EDITED": null,
1369
- "FORCED": null,
1370
- "INPUTED": null,
1371
- "PREVIOUS": null,
1372
- "COLLECTED": null
1373
- },
1374
- "OLAR25": {
1375
- "EDITED": null,
1376
- "FORCED": null,
1377
- "INPUTED": null,
1378
- "PREVIOUS": null,
1379
- "COLLECTED": null
1380
- },
1381
- "OLAR31": {
1382
- "EDITED": null,
1383
- "FORCED": null,
1384
- "INPUTED": null,
1385
- "PREVIOUS": null,
1386
- "COLLECTED": null
1387
- },
1388
- "OLAR32": {
1389
- "EDITED": null,
1390
- "FORCED": null,
1391
- "INPUTED": null,
1392
- "PREVIOUS": null,
1393
- "COLLECTED": null
1394
- },
1395
- "OLAR33": {
1396
- "EDITED": null,
1397
- "FORCED": null,
1398
- "INPUTED": null,
1399
- "PREVIOUS": null,
1400
- "COLLECTED": null
1401
- },
1402
- "SANTE2": {
1403
- "EDITED": [null],
1404
- "FORCED": [null],
1405
- "INPUTED": [null],
1406
- "PREVIOUS": [null],
1407
- "COLLECTED": [null]
1408
- },
1409
- "STOCA3": {
1410
- "EDITED": [null],
1411
- "FORCED": [null],
1412
- "INPUTED": [null],
1413
- "PREVIOUS": [null],
1414
- "COLLECTED": [null, null, null, null]
1415
- },
1416
- "STOCA4": {
1417
- "EDITED": [null],
1418
- "FORCED": [null],
1419
- "INPUTED": [null],
1420
- "PREVIOUS": [null],
1421
- "COLLECTED": ["1", "1", "2", "2"]
1422
- },
1423
- "STOCB1": {
1424
- "EDITED": [null],
1425
- "FORCED": [null],
1426
- "INPUTED": [null],
1427
- "PREVIOUS": [null],
1428
- "COLLECTED": [null, null, null, null]
1429
- },
1430
- "TELMOB": {
1431
- "EDITED": null,
1432
- "FORCED": null,
1433
- "INPUTED": null,
1434
- "PREVIOUS": null,
1435
- "COLLECTED": null
1436
- },
1437
- "VACHAL": {
1438
- "EDITED": null,
1439
- "FORCED": null,
1440
- "INPUTED": null,
1441
- "PREVIOUS": null,
1442
- "COLLECTED": null
1443
- },
1444
- "VCRCOM": {
1445
- "EDITED": null,
1446
- "FORCED": null,
1447
- "INPUTED": null,
1448
- "PREVIOUS": null,
1449
- "COLLECTED": null
1450
- },
1451
- "VLOYER": {
1452
- "EDITED": null,
1453
- "FORCED": null,
1454
- "INPUTED": null,
1455
- "PREVIOUS": null,
1456
- "COLLECTED": null
1457
- },
1458
- "VMODM1": {
1459
- "EDITED": null,
1460
- "FORCED": null,
1461
- "INPUTED": null,
1462
- "PREVIOUS": null,
1463
- "COLLECTED": null
1464
- },
1465
- "VMODM2": {
1466
- "EDITED": null,
1467
- "FORCED": null,
1468
- "INPUTED": null,
1469
- "PREVIOUS": null,
1470
- "COLLECTED": null
1471
- },
1472
- "VMODM3": {
1473
- "EDITED": null,
1474
- "FORCED": null,
1475
- "INPUTED": null,
1476
- "PREVIOUS": null,
1477
- "COLLECTED": null
1478
- },
1479
- "VMODM4": {
1480
- "EDITED": null,
1481
- "FORCED": null,
1482
- "INPUTED": null,
1483
- "PREVIOUS": null,
1484
- "COLLECTED": null
1485
- },
1486
- "VMODM5": {
1487
- "EDITED": null,
1488
- "FORCED": null,
1489
- "INPUTED": null,
1490
- "PREVIOUS": null,
1491
- "COLLECTED": null
1492
- },
1493
- "VMODM6": {
1494
- "EDITED": null,
1495
- "FORCED": null,
1496
- "INPUTED": null,
1497
- "PREVIOUS": null,
1498
- "COLLECTED": null
1499
- },
1500
- "VMODM7": {
1501
- "EDITED": null,
1502
- "FORCED": null,
1503
- "INPUTED": null,
1504
- "PREVIOUS": null,
1505
- "COLLECTED": null
1506
- },
1507
- "VSURFD": {
1508
- "EDITED": null,
1509
- "FORCED": null,
1510
- "INPUTED": null,
1511
- "PREVIOUS": null,
1512
- "COLLECTED": null
1513
- },
1514
- "VVENDL": {
1515
- "EDITED": null,
1516
- "FORCED": null,
1517
- "INPUTED": null,
1518
- "PREVIOUS": null,
1519
- "COLLECTED": null
1520
- },
1521
- "CIVCOLL": {
1522
- "EDITED": null,
1523
- "FORCED": null,
1524
- "INPUTED": null,
1525
- "PREVIOUS": null,
1526
- "COLLECTED": null
1527
- },
1528
- "DALOBIS": {
1529
- "EDITED": null,
1530
- "FORCED": null,
1531
- "INPUTED": null,
1532
- "PREVIOUS": null,
1533
- "COLLECTED": null
1534
- },
1535
- "DEPNAIS": {
1536
- "EDITED": [null],
1537
- "FORCED": [null],
1538
- "INPUTED": [null],
1539
- "PREVIOUS": [null],
1540
- "COLLECTED": [null, null, null, null]
1541
- },
1542
- "DSTLOC2": {
1543
- "EDITED": null,
1544
- "FORCED": null,
1545
- "INPUTED": null,
1546
- "PREVIOUS": null,
1547
- "COLLECTED": null
1548
- },
1549
- "EAMID11": {
1550
- "EDITED": [null],
1551
- "FORCED": [null],
1552
- "INPUTED": [null],
1553
- "PREVIOUS": [null],
1554
- "COLLECTED": [null]
1555
- },
1556
- "EAMID12": {
1557
- "EDITED": [null],
1558
- "FORCED": [null],
1559
- "INPUTED": [null],
1560
- "PREVIOUS": [null],
1561
- "COLLECTED": [null]
1562
- },
1563
- "EAMID13": {
1564
- "EDITED": [null],
1565
- "FORCED": [null],
1566
- "INPUTED": [null],
1567
- "PREVIOUS": [null],
1568
- "COLLECTED": [null]
1569
- },
1570
- "EAMID14": {
1571
- "EDITED": [null],
1572
- "FORCED": [null],
1573
- "INPUTED": [null],
1574
- "PREVIOUS": [null],
1575
- "COLLECTED": [null]
1576
- },
1577
- "EAMID15": {
1578
- "EDITED": [null],
1579
- "FORCED": [null],
1580
- "INPUTED": [null],
1581
- "PREVIOUS": [null],
1582
- "COLLECTED": [null]
1583
- },
1584
- "EAMID16": {
1585
- "EDITED": [null],
1586
- "FORCED": [null],
1587
- "INPUTED": [null],
1588
- "PREVIOUS": [null],
1589
- "COLLECTED": [null]
1590
- },
1591
- "ECOVID2": {
1592
- "EDITED": [null],
1593
- "FORCED": [null],
1594
- "INPUTED": [null],
1595
- "PREVIOUS": [null],
1596
- "COLLECTED": [null]
1597
- },
1598
- "ERETOUR": {
1599
- "EDITED": [null],
1600
- "FORCED": [null],
1601
- "INPUTED": [null],
1602
- "PREVIOUS": [null],
1603
- "COLLECTED": [null]
1604
- },
1605
- "HULHUI1": {
1606
- "EDITED": null,
1607
- "FORCED": null,
1608
- "INPUTED": null,
1609
- "PREVIOUS": null,
1610
- "COLLECTED": null
1611
- },
1612
- "INDCOLL": {
1613
- "EDITED": null,
1614
- "FORCED": null,
1615
- "INPUTED": null,
1616
- "PREVIOUS": null,
1617
- "COLLECTED": null
1618
- },
1619
- "MARRIVC": {
1620
- "EDITED": null,
1621
- "FORCED": null,
1622
- "INPUTED": null,
1623
- "PREVIOUS": null,
1624
- "COLLECTED": null
1625
- },
1626
- "NATIO2N": {
1627
- "EDITED": [null],
1628
- "FORCED": [null],
1629
- "INPUTED": [null],
1630
- "PREVIOUS": [null],
1631
- "COLLECTED": [null, null, null, null]
1632
- },
1633
- "NOMCOLL": {
1634
- "EDITED": null,
1635
- "FORCED": null,
1636
- "INPUTED": null,
1637
- "PREVIOUS": null,
1638
- "COLLECTED": null
1639
- },
1640
- "RESAUTO": {
1641
- "EDITED": null,
1642
- "FORCED": null,
1643
- "INPUTED": null,
1644
- "PREVIOUS": null,
1645
- "COLLECTED": null
1646
- },
1647
- "STOCA12": {
1648
- "EDITED": [null],
1649
- "FORCED": [null],
1650
- "INPUTED": [null],
1651
- "PREVIOUS": [null],
1652
- "COLLECTED": ["1", "1", "2", "2"]
1653
- },
1654
- "TELFIXE": {
1655
- "EDITED": null,
1656
- "FORCED": null,
1657
- "INPUTED": null,
1658
- "PREVIOUS": null,
1659
- "COLLECTED": null
1660
- },
1661
- "TRAVAIL": {
1662
- "EDITED": [null],
1663
- "FORCED": [null],
1664
- "INPUTED": [null],
1665
- "PREVIOUS": [null],
1666
- "COLLECTED": [null, null, "2", "2"]
1667
- },
1668
- "VANCIEN": {
1669
- "EDITED": null,
1670
- "FORCED": null,
1671
- "INPUTED": null,
1672
- "PREVIOUS": null,
1673
- "COLLECTED": null
1674
- },
1675
- "VBILLOG": {
1676
- "EDITED": null,
1677
- "FORCED": null,
1678
- "INPUTED": null,
1679
- "PREVIOUS": null,
1680
- "COLLECTED": null
1681
- },
1682
- "VMODP11": {
1683
- "EDITED": null,
1684
- "FORCED": null,
1685
- "INPUTED": null,
1686
- "PREVIOUS": null,
1687
- "COLLECTED": null
1688
- },
1689
- "VMODP12": {
1690
- "EDITED": null,
1691
- "FORCED": null,
1692
- "INPUTED": null,
1693
- "PREVIOUS": null,
1694
- "COLLECTED": null
1695
- },
1696
- "VMODP13": {
1697
- "EDITED": null,
1698
- "FORCED": null,
1699
- "INPUTED": null,
1700
- "PREVIOUS": null,
1701
- "COLLECTED": null
1702
- },
1703
- "VMODP14": {
1704
- "EDITED": null,
1705
- "FORCED": null,
1706
- "INPUTED": null,
1707
- "PREVIOUS": null,
1708
- "COLLECTED": null
1709
- },
1710
- "VMODP21": {
1711
- "EDITED": null,
1712
- "FORCED": null,
1713
- "INPUTED": null,
1714
- "PREVIOUS": null,
1715
- "COLLECTED": null
1716
- },
1717
- "VMODP22": {
1718
- "EDITED": null,
1719
- "FORCED": null,
1720
- "INPUTED": null,
1721
- "PREVIOUS": null,
1722
- "COLLECTED": null
1723
- },
1724
- "VMODP23": {
1725
- "EDITED": null,
1726
- "FORCED": null,
1727
- "INPUTED": null,
1728
- "PREVIOUS": null,
1729
- "COLLECTED": null
1730
- },
1731
- "VRAIS11": {
1732
- "EDITED": null,
1733
- "FORCED": null,
1734
- "INPUTED": null,
1735
- "PREVIOUS": null,
1736
- "COLLECTED": null
1737
- },
1738
- "VRAIS12": {
1739
- "EDITED": null,
1740
- "FORCED": null,
1741
- "INPUTED": null,
1742
- "PREVIOUS": null,
1743
- "COLLECTED": null
1744
- },
1745
- "VRAIS13": {
1746
- "EDITED": null,
1747
- "FORCED": null,
1748
- "INPUTED": null,
1749
- "PREVIOUS": null,
1750
- "COLLECTED": null
1751
- },
1752
- "VRAIS14": {
1753
- "EDITED": null,
1754
- "FORCED": null,
1755
- "INPUTED": null,
1756
- "PREVIOUS": null,
1757
- "COLLECTED": null
1758
- },
1759
- "VRAIS21": {
1760
- "EDITED": null,
1761
- "FORCED": null,
1762
- "INPUTED": null,
1763
- "PREVIOUS": null,
1764
- "COLLECTED": null
1765
- },
1766
- "VRAIS22": {
1767
- "EDITED": null,
1768
- "FORCED": null,
1769
- "INPUTED": null,
1770
- "PREVIOUS": null,
1771
- "COLLECTED": null
1772
- },
1773
- "VRAIS23": {
1774
- "EDITED": null,
1775
- "FORCED": null,
1776
- "INPUTED": null,
1777
- "PREVIOUS": null,
1778
- "COLLECTED": null
1779
- },
1780
- "VRAIS24": {
1781
- "EDITED": null,
1782
- "FORCED": null,
1783
- "INPUTED": null,
1784
- "PREVIOUS": null,
1785
- "COLLECTED": null
1786
- },
1787
- "VRAIS25": {
1788
- "EDITED": null,
1789
- "FORCED": null,
1790
- "INPUTED": null,
1791
- "PREVIOUS": null,
1792
- "COLLECTED": null
1793
- },
1794
- "VRAIS26": {
1795
- "EDITED": null,
1796
- "FORCED": null,
1797
- "INPUTED": null,
1798
- "PREVIOUS": null,
1799
- "COLLECTED": null
1800
- },
1801
- "VRAIS31": {
1802
- "EDITED": null,
1803
- "FORCED": null,
1804
- "INPUTED": null,
1805
- "PREVIOUS": null,
1806
- "COLLECTED": null
1807
- },
1808
- "VRAIS32": {
1809
- "EDITED": null,
1810
- "FORCED": null,
1811
- "INPUTED": null,
1812
- "PREVIOUS": null,
1813
- "COLLECTED": null
1814
- },
1815
- "VRAIS33": {
1816
- "EDITED": null,
1817
- "FORCED": null,
1818
- "INPUTED": null,
1819
- "PREVIOUS": null,
1820
- "COLLECTED": null
1821
- },
1822
- "VRAIS34": {
1823
- "EDITED": null,
1824
- "FORCED": null,
1825
- "INPUTED": null,
1826
- "PREVIOUS": null,
1827
- "COLLECTED": null
1828
- },
1829
- "VRAIS35": {
1830
- "EDITED": null,
1831
- "FORCED": null,
1832
- "INPUTED": null,
1833
- "PREVIOUS": null,
1834
- "COLLECTED": null
1835
- },
1836
- "VRAIS36": {
1837
- "EDITED": null,
1838
- "FORCED": null,
1839
- "INPUTED": null,
1840
- "PREVIOUS": null,
1841
- "COLLECTED": null
1842
- },
1843
- "VRAIS41": {
1844
- "EDITED": null,
1845
- "FORCED": null,
1846
- "INPUTED": null,
1847
- "PREVIOUS": null,
1848
- "COLLECTED": null
1849
- },
1850
- "VRAIS42": {
1851
- "EDITED": null,
1852
- "FORCED": null,
1853
- "INPUTED": null,
1854
- "PREVIOUS": null,
1855
- "COLLECTED": null
1856
- },
1857
- "VRAIS43": {
1858
- "EDITED": null,
1859
- "FORCED": null,
1860
- "INPUTED": null,
1861
- "PREVIOUS": null,
1862
- "COLLECTED": null
1863
- },
1864
- "VRAIS44": {
1865
- "EDITED": null,
1866
- "FORCED": null,
1867
- "INPUTED": null,
1868
- "PREVIOUS": null,
1869
- "COLLECTED": null
1870
- },
1871
- "VRAIS45": {
1872
- "EDITED": null,
1873
- "FORCED": null,
1874
- "INPUTED": null,
1875
- "PREVIOUS": null,
1876
- "COLLECTED": null
1877
- },
1878
- "ADR_COLL": {
1879
- "EDITED": null,
1880
- "FORCED": null,
1881
- "INPUTED": null,
1882
- "PREVIOUS": null,
1883
- "COLLECTED": "rue Vincent Auriol"
1884
- },
1885
- "CIVCOLL2": {
1886
- "EDITED": null,
1887
- "FORCED": null,
1888
- "INPUTED": null,
1889
- "PREVIOUS": null,
1890
- "COLLECTED": null
1891
- },
1892
- "DATENAIS": {
1893
- "EDITED": [null],
1894
- "FORCED": [null],
1895
- "INPUTED": [null],
1896
- "PREVIOUS": [null],
1897
- "COLLECTED": ["1970-09-15", "1970-01-01", "2003-01-01", "2003-02-01"]
1898
- },
1899
- "G_PRENOM": {
1900
- "EDITED": [null],
1901
- "FORCED": [null],
1902
- "INPUTED": [null],
1903
- "PREVIOUS": [null],
1904
- "COLLECTED": ["Jean-Marc", "Magali", "Lauriane", "Mathis"]
1905
- },
1906
- "HULHUI21": {
1907
- "EDITED": null,
1908
- "FORCED": null,
1909
- "INPUTED": null,
1910
- "PREVIOUS": null,
1911
- "COLLECTED": null
1912
- },
1913
- "HULHUI22": {
1914
- "EDITED": null,
1915
- "FORCED": null,
1916
- "INPUTED": null,
1917
- "PREVIOUS": null,
1918
- "COLLECTED": null
1919
- },
1920
- "HULHUI23": {
1921
- "EDITED": null,
1922
- "FORCED": null,
1923
- "INPUTED": null,
1924
- "PREVIOUS": null,
1925
- "COLLECTED": null
1926
- },
1927
- "INDNVOCC": {
1928
- "EDITED": null,
1929
- "FORCED": null,
1930
- "INPUTED": null,
1931
- "PREVIOUS": null,
1932
- "COLLECTED": null
1933
- },
1934
- "MAA2AT_Q": {
1935
- "EDITED": null,
1936
- "FORCED": null,
1937
- "INPUTED": null,
1938
- "PREVIOUS": null,
1939
- "COLLECTED": null
1940
- },
1941
- "NATIO1N1": {
1942
- "EDITED": [null],
1943
- "FORCED": [null],
1944
- "INPUTED": [null],
1945
- "PREVIOUS": [null],
1946
- "COLLECTED": [true, true, true, true]
1947
- },
1948
- "NATIO1N2": {
1949
- "EDITED": [null],
1950
- "FORCED": [null],
1951
- "INPUTED": [null],
1952
- "PREVIOUS": [null],
1953
- "COLLECTED": [null, null, null, null]
1954
- },
1955
- "NATIO1N3": {
1956
- "EDITED": [null],
1957
- "FORCED": [null],
1958
- "INPUTED": [null],
1959
- "PREVIOUS": [null],
1960
- "COLLECTED": [null, null, null, null]
1961
- },
1962
- "NATIO1N4": {
1963
- "EDITED": [null],
1964
- "FORCED": [null],
1965
- "INPUTED": [null],
1966
- "PREVIOUS": [null],
1967
- "COLLECTED": [null, null, null, null]
1968
- },
1969
- "NOMCOLL2": {
1970
- "EDITED": null,
1971
- "FORCED": null,
1972
- "INPUTED": null,
1973
- "PREVIOUS": null,
1974
- "COLLECTED": null
1975
- },
1976
- "PAYSNAIS": {
1977
- "EDITED": [null],
1978
- "FORCED": [null],
1979
- "INPUTED": [null],
1980
- "PREVIOUS": [null],
1981
- "COLLECTED": [null, null, null, null]
1982
- },
1983
- "SDL_SIT1": {
1984
- "EDITED": [null],
1985
- "FORCED": [null],
1986
- "INPUTED": [null],
1987
- "PREVIOUS": [null],
1988
- "COLLECTED": [null]
1989
- },
1990
- "SDL_SIT2": {
1991
- "EDITED": [null],
1992
- "FORCED": [null],
1993
- "INPUTED": [null],
1994
- "PREVIOUS": [null],
1995
- "COLLECTED": [null]
1996
- },
1997
- "TELNVOCC": {
1998
- "EDITED": null,
1999
- "FORCED": null,
2000
- "INPUTED": null,
2001
- "PREVIOUS": null,
2002
- "COLLECTED": null
2003
- },
2004
- "TEMPS1_1": {
2005
- "EDITED": null,
2006
- "FORCED": null,
2007
- "INPUTED": null,
2008
- "PREVIOUS": null,
2009
- "COLLECTED": null
2010
- },
2011
- "TYPLOGCO": {
2012
- "EDITED": [null],
2013
- "FORCED": [null],
2014
- "INPUTED": [null],
2015
- "PREVIOUS": [null],
2016
- "COLLECTED": [null, null, null, null]
2017
- },
2018
- "testSTOC": {
2019
- "EDITED": null,
2020
- "FORCED": null,
2021
- "INPUTED": null,
2022
- "PREVIOUS": null,
2023
- "COLLECTED": null
2024
- },
2025
- "FOYPAGEES": {
2026
- "EDITED": null,
2027
- "FORCED": null,
2028
- "INPUTED": null,
2029
- "PREVIOUS": null,
2030
- "COLLECTED": null
2031
- },
2032
- "LNAISMERE": {
2033
- "EDITED": null,
2034
- "FORCED": null,
2035
- "INPUTED": null,
2036
- "PREVIOUS": null,
2037
- "COLLECTED": null
2038
- },
2039
- "LNAISPERE": {
2040
- "EDITED": null,
2041
- "FORCED": null,
2042
- "INPUTED": null,
2043
- "PREVIOUS": null,
2044
- "COLLECTED": null
2045
- },
2046
- "MAA2ATC_Q": {
2047
- "EDITED": null,
2048
- "FORCED": null,
2049
- "INPUTED": null,
2050
- "PREVIOUS": null,
2051
- "COLLECTED": null
2052
- },
2053
- "MAILNVOCC": {
2054
- "EDITED": null,
2055
- "FORCED": null,
2056
- "INPUTED": null,
2057
- "PREVIOUS": null,
2058
- "COLLECTED": null
2059
- },
2060
- "NOMNVOCC1": {
2061
- "EDITED": null,
2062
- "FORCED": null,
2063
- "INPUTED": null,
2064
- "PREVIOUS": null,
2065
- "COLLECTED": null
2066
- },
2067
- "NOMNVOCC2": {
2068
- "EDITED": null,
2069
- "FORCED": null,
2070
- "INPUTED": null,
2071
- "PREVIOUS": null,
2072
- "COLLECTED": null
2073
- },
2074
- "NOTELCOLL": {
2075
- "EDITED": null,
2076
- "FORCED": null,
2077
- "INPUTED": null,
2078
- "PREVIOUS": null,
2079
- "COLLECTED": null
2080
- },
2081
- "SDT2_SIT2": {
2082
- "EDITED": [null],
2083
- "FORCED": [null],
2084
- "INPUTED": [null],
2085
- "PREVIOUS": [null],
2086
- "COLLECTED": [null]
2087
- },
2088
- "NUMTH_COLL": {
2089
- "EDITED": null,
2090
- "FORCED": null,
2091
- "INPUTED": null,
2092
- "PREVIOUS": null,
2093
- "COLLECTED": "1"
2094
- },
2095
- "PRENOMCOLL": {
2096
- "EDITED": null,
2097
- "FORCED": null,
2098
- "INPUTED": null,
2099
- "PREVIOUS": null,
2100
- "COLLECTED": null
2101
- },
2102
- "SDTAD_SIT2": {
2103
- "EDITED": [null],
2104
- "FORCED": [null],
2105
- "INPUTED": [null],
2106
- "PREVIOUS": [null],
2107
- "COLLECTED": [null]
2108
- },
2109
- "SITUMATRI1": {
2110
- "EDITED": [null],
2111
- "FORCED": [null],
2112
- "INPUTED": [null],
2113
- "PREVIOUS": [null],
2114
- "COLLECTED": [true, true, null, null]
2115
- },
2116
- "SITUMATRI2": {
2117
- "EDITED": [null],
2118
- "FORCED": [null],
2119
- "INPUTED": [null],
2120
- "PREVIOUS": [null],
2121
- "COLLECTED": [null, null, null, null]
2122
- },
2123
- "SITUMATRI3": {
2124
- "EDITED": [null],
2125
- "FORCED": [null],
2126
- "INPUTED": [null],
2127
- "PREVIOUS": [null],
2128
- "COLLECTED": [null, null, null, null]
2129
- },
2130
- "SITUMATRI4": {
2131
- "EDITED": [null],
2132
- "FORCED": [null],
2133
- "INPUTED": [null],
2134
- "PREVIOUS": [null],
2135
- "COLLECTED": [null, null, null, null]
2136
- },
2137
- "SITUMATRI5": {
2138
- "EDITED": [null],
2139
- "FORCED": [null],
2140
- "INPUTED": [null],
2141
- "PREVIOUS": [null],
2142
- "COLLECTED": [null, null, null, null]
2143
- },
2144
- "SITUMATRI6": {
2145
- "EDITED": [null],
2146
- "FORCED": [null],
2147
- "INPUTED": [null],
2148
- "PREVIOUS": [null],
2149
- "COLLECTED": [null, null, true, true]
2150
- },
2151
- "CADRTH_COLL": {
2152
- "EDITED": null,
2153
- "FORCED": null,
2154
- "INPUTED": null,
2155
- "PREVIOUS": null,
2156
- "COLLECTED": "1er étage UIA"
2157
- },
2158
- "LIBCOM_COLL": {
2159
- "EDITED": null,
2160
- "FORCED": null,
2161
- "INPUTED": null,
2162
- "PREVIOUS": null,
2163
- "COLLECTED": "AMIENS"
2164
- },
2165
- "NATIONMERE1": {
2166
- "EDITED": null,
2167
- "FORCED": null,
2168
- "INPUTED": null,
2169
- "PREVIOUS": null,
2170
- "COLLECTED": null
2171
- },
2172
- "NATIONMERE2": {
2173
- "EDITED": null,
2174
- "FORCED": null,
2175
- "INPUTED": null,
2176
- "PREVIOUS": null,
2177
- "COLLECTED": null
2178
- },
2179
- "NATIONMERE3": {
2180
- "EDITED": null,
2181
- "FORCED": null,
2182
- "INPUTED": null,
2183
- "PREVIOUS": null,
2184
- "COLLECTED": null
2185
- },
2186
- "NATIONPERE1": {
2187
- "EDITED": null,
2188
- "FORCED": null,
2189
- "INPUTED": null,
2190
- "PREVIOUS": null,
2191
- "COLLECTED": null
2192
- },
2193
- "NATIONPERE2": {
2194
- "EDITED": null,
2195
- "FORCED": null,
2196
- "INPUTED": null,
2197
- "PREVIOUS": null,
2198
- "COLLECTED": null
2199
- },
2200
- "NATIONPERE3": {
2201
- "EDITED": null,
2202
- "FORCED": null,
2203
- "INPUTED": null,
2204
- "PREVIOUS": null,
2205
- "COLLECTED": null
2206
- },
2207
- "PRENOMCOLL2": {
2208
- "EDITED": null,
2209
- "FORCED": null,
2210
- "INPUTED": null,
2211
- "PREVIOUS": null,
2212
- "COLLECTED": null
2213
- },
2214
- "PAYSNAISMERE": {
2215
- "EDITED": null,
2216
- "FORCED": null,
2217
- "INPUTED": null,
2218
- "PREVIOUS": null,
2219
- "COLLECTED": null
2220
- },
2221
- "PAYSNAISPERE": {
2222
- "EDITED": null,
2223
- "FORCED": null,
2224
- "INPUTED": null,
2225
- "PREVIOUS": null,
2226
- "COLLECTED": null
2227
- },
2228
- "PRENOMNVOCC1": {
2229
- "EDITED": null,
2230
- "FORCED": null,
2231
- "INPUTED": null,
2232
- "PREVIOUS": null,
2233
- "COLLECTED": null
2234
- },
2235
- "PRENOMNVOCC2": {
2236
- "EDITED": null,
2237
- "FORCED": null,
2238
- "INPUTED": null,
2239
- "PREVIOUS": null,
2240
- "COLLECTED": null
2241
- },
2242
- "COMMUNEPASSEE": {
2243
- "EDITED": null,
2244
- "FORCED": null,
2245
- "INPUTED": null,
2246
- "PREVIOUS": null,
2247
- "COLLECTED": null
2248
- },
2249
- "CODEPOST1_COLL": {
2250
- "EDITED": null,
2251
- "FORCED": null,
2252
- "INPUTED": null,
2253
- "PREVIOUS": null,
2254
- "COLLECTED": "80000"
2255
- },
2256
- "testfiltreHEB1": {
2257
- "EDITED": [null],
2258
- "FORCED": [null],
2259
- "INPUTED": [null],
2260
- "PREVIOUS": [null],
2261
- "COLLECTED": [null]
2262
- },
2263
- "testfiltreHEB2": {
2264
- "EDITED": [null],
2265
- "FORCED": [null],
2266
- "INPUTED": [null],
2267
- "PREVIOUS": [null],
2268
- "COLLECTED": [null, null, null, null]
2269
- }
2270
- },
2271
- "CALCULATED": {
2272
- "HC": 0,
2273
- "AGE": [51, 51, 18, 18],
2274
- "NHAB": 4,
2275
- "STOC": "1",
2276
- "STOCA": ["1", "1", "2", "2"],
2277
- "STOCC": ["1", "1", "1", "1"],
2278
- "nLIEN": ["9", "1", "3", "3"],
2279
- "EMPLOI": ["1", "1", "0", "0"],
2280
- "LIB_SI": ["s il", "si elle", "si elle", "s il"],
2281
- "MAA1AT": "",
2282
- "MAA2AT": "",
2283
- "MAA3AT": "",
2284
- "PRENOM": ["Jean-Marc", "Magali", "Lauriane", "Mathis"],
2285
- "STOC_i": ["1", "1", "1", "1"],
2286
- "TEXT_E": " ",
2287
- "libHSP": "vos pièces",
2288
- "libHST": " ",
2289
- "libHUT": "Ne pas tenir compte des pièces dédiées au télétravail.",
2290
- "libKAO": "",
2291
- "libKBA": "",
2292
- "libKJA": "Avez-vous",
2293
- "libOIH": "cette personne a-t-elle",
2294
- "libSDT": [
2295
- "ces situations",
2296
- "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\"",
2297
- "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\"",
2298
- "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\""
2299
- ],
2300
- "nblien": "01133",
2301
- "ADRESSE": "29 AVENUE CHARLES DE GAULLE 75017 PARIS",
2302
- "ANNEENQ": "2021",
2303
- "CTR_LOG": [
2304
- "Vous ne pouvez pas avoir deux résidences principales.",
2305
- "Magali ne peut pas avoir deux résidences principales.",
2306
- "Lauriane ne peut pas avoir deux résidences principales.",
2307
- "Mathis ne peut pas avoir deux résidences principales."
2308
- ],
2309
- "INDconj": "1",
2310
- "LIB_FEM": ["", "e", "e", ""],
2311
- "MAA2ATC": "",
2312
- "MOISENQ": "10",
2313
- "NOMOCC1": "MONSIEUR JEAN-MARC MIERLOT",
2314
- "NOMOCC2": "null null null",
2315
- "SEXEREF": "1",
2316
- "liHPHc2": "",
2317
- "libHPHa": "",
2318
- "libHPHc": "",
2319
- "libHPHp": "",
2320
- "libHSI1": "ces pièces annexes réservées",
2321
- "libHSI2": "ces pièces annexes réservées",
2322
- "libHSTa": "",
2323
- "libHSTc": "",
2324
- "libHSTp": "",
2325
- "libHTLC": "individuel",
2326
- "libKBA1": "",
2327
- "libKSMI": " et de la véranda",
2328
- "libMAA3": "votre arrivée",
2329
- "libOIHB": "ou votre conjoint",
2330
- "libVFFH": "",
2331
- "libVFLA": "L'un de ces logements maintenant vendus",
2332
- "libVOUS": ["Vous", "Magali", "Lauriane", "Mathis"],
2333
- "persXRP": [0, 0, 0, 0],
2334
- "persmaj": [1, 1, 1, 1],
2335
- "ADRCOLLC": "1 rue Vincent Auriol 1er étage UIA 80000 AMIENS",
2336
- "LIB_FEM2": ["er", "ère", "ère", "er"],
2337
- "LIB_VEUF": [
2338
- "Veuf, conjoint(e) décédé(e)",
2339
- "Veuve, conjoint(e) décédé(e)",
2340
- "Veuve, conjoint(e) décédé(e)",
2341
- "Veuf, conjoint(e) décédé(e)"
2342
- ],
2343
- "NOMCOLLC": "MONSIEUR JEAN-MARC MIERLOT, null null null",
2344
- "libCHGNC": "MONSIEUR JEAN-MARC MIERLOT",
2345
- "libENVS1": "pour transmettre votre questionnaire à l'Insee.",
2346
- "libFINS1": "Vous êtes arrivé(e) à la fin de ce questionnaire. Nous vous remercions de votre participation.",
2347
- "libGARDE": [
2348
- "Êtes-vous",
2349
- "Magali est-elle",
2350
- "Lauriane est-elle",
2351
- "Mathis est-il"
2352
- ],
2353
- "libHTLC2": "la propriété",
2354
- "libIAATC": "de la maison",
2355
- "libKSJPI": "",
2356
- "libKVELO": "l'immeuble",
2357
- "libSANTE": ", le lieu et la nationalité de naissance de vos parents",
2358
- "libSTOC1": "",
2359
- "persconj": [0, 1, 0, 0],
2360
- "LIB_SUJET": ["il", "elle", "elle", "il"],
2361
- "PRENOMREF": "Jean-Marc",
2362
- "libFINS12": "Vous serez contacté(e) à nouveau dans quelques semaines pour participer à la deuxième partie de l’enquête, consacrée aux coûts du logement.",
2363
- "libHSTmoy": null,
2364
- "libPCSACT": [
2365
- "votre catégorie de profession",
2366
- "la catégorie de profession de Magali",
2367
- "la catégorie de profession de Lauriane",
2368
- "la catégorie de profession de Mathis"
2369
- ],
2370
- "libSTOCA3": [
2371
- "êtes-vous",
2372
- "Magali est-elle",
2373
- "Lauriane est-elle",
2374
- "Mathis est-il"
2375
- ],
2376
- "libSTOCB1": "locataire ou colocataire",
2377
- "nbpersXRP": 0,
2378
- "nbpersmaj": 4,
2379
- "perstelet": [1, 0, 0, 0],
2380
- "testSTOCA": ["1", "1", "1", "1"],
2381
- "LIB_ENFANT": [
2382
- "Votre fils, votre beau-fils",
2383
- "Votre fille, votre belle-fille",
2384
- "Votre fille, votre belle-fille",
2385
- "Votre fils, votre beau-fils"
2386
- ],
2387
- "LIB_PARENT": [
2388
- "Votre père, votre beau-père",
2389
- "Votre mère, votre belle-mère",
2390
- "Votre mère, votre belle-mère",
2391
- "Votre père, votre beau-père"
2392
- ],
2393
- "LIB_PRONOM": ["lui", "elle", "elle", "lui"],
2394
- "PRENOMVIDE": "PRÉNOM",
2395
- "filtre_HEB": [
2396
- "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2397
- "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2398
- "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2399
- "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0"
2400
- ],
2401
- "filtre_SIT": "1",
2402
- "filtre_XRP": "0",
2403
- "libHSTmoy2": null,
2404
- "libMOISENQ": "Octobre",
2405
- "nbpersconj": 1,
2406
- "persparent": [0, 0, 0, 0],
2407
- "persplus25": [1, 1, 0, 0],
2408
- "iDEPENDANCE": null,
2409
- "libVBILLOG1": "logement vendu",
2410
- "libVBILLOG2": "logement acheté",
2411
- "nbperstelet": 1,
2412
- "AGEMILLESIME": [51, 51, 18, 18],
2413
- "LIB_GDPARENT": [
2414
- "Votre grand-père, votre beau-grand-père",
2415
- "Votre grand-mère, votre belle-grand-mère",
2416
- "Votre grand-mère, votre belle-grand-mère",
2417
- "Votre grand-père, votre beau-grand-père"
2418
- ],
2419
- "LIB_PTENFANT": [
2420
- "Votre petit-fils, votre beau-petit-fils",
2421
- "Votre petite-fille, votre belle-petite-fille",
2422
- "Votre petite-fille, votre belle-petite-fille",
2423
- "Votre petit-fils, votre beau-petit-fils"
2424
- ],
2425
- "filtre_dest2": "0",
2426
- "libACTDIPAUT": [
2427
- "Votre situation",
2428
- "Situation de Magali",
2429
- "Situation de Lauriane",
2430
- "Situation de Mathis"
2431
- ],
2432
- "nbpersparent": 0,
2433
- "persplus18TR": ["0", "0", "0", "0"],
2434
- "persplus25TR": ["0", "0", "0", "0"],
2435
- "ANNEENQmoins1": 2020,
2436
- "ANNEENQmoins4": 2017,
2437
- "ANNEENQmoins8": 2013,
2438
- "nb_filtre_HEB": "0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2439
- "persplus15AGE": ["1", "1", "1", "1"],
2440
- "persplus18AGE": ["1", "1", "1", "1"],
2441
- "persplus25AGE": ["1", "1", "0", "0"],
2442
- "ANNEENQmoins12": 2009,
2443
- "libINTROPRENOM": "En commençant par vous, indiquez les prénoms des habitants du logement.",
2444
- "libINTROPRENOM2": "(Si des personnes portent le même prénom, ajoutez un chiffre pour les distinguer).",
2445
- "test_libMOISENQ": "pas août",
2446
- "filtre_HebEnfant": [
2447
- "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2448
- "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2449
- "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2450
- "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0"
2451
- ],
2452
- "filtre_autrepers": "1",
2453
- "FILTER_RESULT_DAG": null,
2454
- "FILTER_RESULT_DST": null,
2455
- "FILTER_RESULT_DTA": null,
2456
- "FILTER_RESULT_DTL": null,
2457
- "FILTER_RESULT_HPA": false,
2458
- "FILTER_RESULT_HPH": true,
2459
- "FILTER_RESULT_HPP": false,
2460
- "FILTER_RESULT_HSP": false,
2461
- "FILTER_RESULT_HST": true,
2462
- "FILTER_RESULT_HUA": true,
2463
- "FILTER_RESULT_HUP": true,
2464
- "FILTER_RESULT_HUT": true,
2465
- "FILTER_RESULT_IAS": null,
2466
- "FILTER_RESULT_IEL": null,
2467
- "FILTER_RESULT_IMI": true,
2468
- "FILTER_RESULT_KBA": true,
2469
- "FILTER_RESULT_KBD": true,
2470
- "FILTER_RESULT_KCA": true,
2471
- "FILTER_RESULT_KGA": true,
2472
- "FILTER_RESULT_KJA": true,
2473
- "FILTER_RESULT_KJC": false,
2474
- "FILTER_RESULT_KSB": false,
2475
- "FILTER_RESULT_KSE": null,
2476
- "FILTER_RESULT_KSV": false,
2477
- "FILTER_RESULT_KVE": true,
2478
- "FILTER_RESULT_ODF": true,
2479
- "FILTER_RESULT_ODL": true,
2480
- "FILTER_RESULT_OIH": true,
2481
- "FILTER_RESULT_OLA": true,
2482
- "FILTER_RESULT_OQA": true,
2483
- "FILTER_RESULT_VIN": true,
2484
- "FILTER_RESULT_VLR": false,
2485
- "FILTER_RESULT_VND": false,
2486
- "FILTER_RESULT_VOP": true,
2487
- "FILTER_RESULT_VPI": null,
2488
- "FILTER_RESULT_VSY": null,
2489
- "FUTURANNIVERSAIRE": [false, false, false, false],
2490
- "FILTER_RESULT_CADR": true,
2491
- "FILTER_RESULT_DALO": null,
2492
- "FILTER_RESULT_DDAT": null,
2493
- "FILTER_RESULT_DDEM": null,
2494
- "FILTER_RESULT_DORM": [false, false, false, false],
2495
- "FILTER_RESULT_DSTL": false,
2496
- "FILTER_RESULT_DSTP": false,
2497
- "FILTER_RESULT_HAUT": true,
2498
- "FILTER_RESULT_HCHA": null,
2499
- "FILTER_RESULT_HPI1": false,
2500
- "FILTER_RESULT_HPI2": false,
2501
- "FILTER_RESULT_HSI1": false,
2502
- "FILTER_RESULT_HSI2": false,
2503
- "FILTER_RESULT_ICOI": true,
2504
- "FILTER_RESULT_KAO1": true,
2505
- "FILTER_RESULT_KCU1": true,
2506
- "FILTER_RESULT_KCU2": false,
2507
- "FILTER_RESULT_KGA1": true,
2508
- "FILTER_RESULT_KGRA": true,
2509
- "FILTER_RESULT_KSJC": false,
2510
- "FILTER_RESULT_KSMI": null,
2511
- "FILTER_RESULT_KSOA": null,
2512
- "FILTER_RESULT_KSV1": false,
2513
- "FILTER_RESULT_KWC1": true,
2514
- "FILTER_RESULT_LIEN": [false, true, true, true],
2515
- "FILTER_RESULT_MAA3": true,
2516
- "FILTER_RESULT_OIHB": false,
2517
- "FILTER_RESULT_OIHC": false,
2518
- "FILTER_RESULT_OIHD": false,
2519
- "FILTER_RESULT_OIHE": false,
2520
- "FILTER_RESULT_OIHF": false,
2521
- "FILTER_RESULT_OLAD": true,
2522
- "FILTER_RESULT_OQAD": true,
2523
- "FILTER_RESULT_SDL1": [true],
2524
- "FILTER_RESULT_SDL2": [false],
2525
- "FILTER_RESULT_SDL4": [false],
2526
- "FILTER_RESULT_SDN1": [null],
2527
- "FILTER_RESULT_SDT1": [false],
2528
- "FILTER_RESULT_SDT2": [null],
2529
- "FILTER_RESULT_SEXE": [true, true, true, true],
2530
- "FILTER_RESULT_UWEB": true,
2531
- "FILTER_RESULT_VAID": null,
2532
- "FILTER_RESULT_VDD1": false,
2533
- "FILTER_RESULT_VDSY": false,
2534
- "FILTER_RESULT_VFFH": null,
2535
- "FILTER_RESULT_VFLA": false,
2536
- "FILTER_RESULT_VLA1": true,
2537
- "FILTER_RESULT_VLRD": false,
2538
- "FILTER_RESULT_VPID": true,
2539
- "FILTER_RESULT_VPRA": false,
2540
- "FILTER_RESULT_VSO1": null,
2541
- "FILTER_RESULT_VTL1": null,
2542
- "FILTER_RESULT_CHGNC": true,
2543
- "FILTER_RESULT_DAGEO": false,
2544
- "FILTER_RESULT_DAGRL": false,
2545
- "FILTER_RESULT_EAMIA": [false],
2546
- "FILTER_RESULT_EAMIH": [false],
2547
- "FILTER_RESULT_EAMIK": [false],
2548
- "FILTER_RESULT_EAMIL": [false],
2549
- "FILTER_RESULT_EPAS1": [false],
2550
- "FILTER_RESULT_EPASB": [false],
2551
- "FILTER_RESULT_EPASC": [false],
2552
- "FILTER_RESULT_EPROJ": [false],
2553
- "FILTER_RESULT_ERET1": [false],
2554
- "FILTER_RESULT_GARDE": [false, false, false, false],
2555
- "FILTER_RESULT_HPEUP": true,
2556
- "FILTER_RESULT_HTLC1": true,
2557
- "FILTER_RESULT_IAATC": true,
2558
- "FILTER_RESULT_KDLK1": null,
2559
- "FILTER_RESULT_KDLK2": null,
2560
- "FILTER_RESULT_KGRAA": true,
2561
- "FILTER_RESULT_KPISC": true,
2562
- "FILTER_RESULT_KSJPC": false,
2563
- "FILTER_RESULT_KSJPI": null,
2564
- "FILTER_RESULT_KVELO": false,
2565
- "FILTER_RESULT_KWCID": false,
2566
- "FILTER_RESULT_LIMT1": true,
2567
- "FILTER_RESULT_LIMT2": [false],
2568
- "FILTER_RESULT_LNAIS": [true, true, true, true],
2569
- "FILTER_RESULT_LOGCO": [false, false, false, false],
2570
- "FILTER_RESULT_MAA2A": true,
2571
- "FILTER_RESULT_MAA2M": false,
2572
- "FILTER_RESULT_MAA3A": false,
2573
- "FILTER_RESULT_MAA3M": false,
2574
- "FILTER_RESULT_MCHR1": true,
2575
- "FILTER_RESULT_MCHR2": [false],
2576
- "FILTER_RESULT_NBHAB": true,
2577
- "FILTER_RESULT_OLAR1": true,
2578
- "FILTER_RESULT_OLAR2": true,
2579
- "FILTER_RESULT_OLAR3": true,
2580
- "FILTER_RESULT_SDTAD": [false],
2581
- "FILTER_RESULT_SITUA": [true, true, true, true],
2582
- "FILTER_RESULT_STOC1": true,
2583
- "FILTER_RESULT_STOC2": false,
2584
- "FILTER_RESULT_STOCP": false,
2585
- "FILTER_RESULT_TELET": [true, true, false, false],
2586
- "FILTER_RESULT_TRAGE": [false, false, false, false],
2587
- "FILTER_RESULT_UNLOG": [true, true, true, true],
2588
- "FILTER_RESULT_VLAB1": false,
2589
- "FILTER_RESULT_VMODM": true,
2590
- "FILTER_RESULT_VSURF": null,
2591
- "FILTER_RESULT_VTLD1": true,
2592
- "nb_filtre_HebEnfant": "0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2593
- "FILTER_RESULT_COUPLE": [true, true, true, true],
2594
- "FILTER_RESULT_DAGEO1": false,
2595
- "FILTER_RESULT_DAGEO2": false,
2596
- "FILTER_RESULT_DAGEO3": false,
2597
- "FILTER_RESULT_DEPART": false,
2598
- "FILTER_RESULT_DURLOG": [false, false, false, false],
2599
- "FILTER_RESULT_EAMID1": [false],
2600
- "FILTER_RESULT_ECOVID": [false],
2601
- "FILTER_RESULT_EPROJB": [false],
2602
- "FILTER_RESULT_EPROJC": [false],
2603
- "FILTER_RESULT_EPROJD": [false],
2604
- "FILTER_RESULT_GRDIPA": [true, true, true, true],
2605
- "FILTER_RESULT_GRDIPB": [false, false, false, false],
2606
- "FILTER_RESULT_GRDIPC": [true, false, false, false],
2607
- "FILTER_RESULT_IAATCD": false,
2608
- "FILTER_RESULT_KSJPIT": null,
2609
- "FILTER_RESULT_LOGAUT": [false, false, false, false],
2610
- "FILTER_RESULT_LOGENQ": [false, false, false, false],
2611
- "FILTER_RESULT_MAA2AC": false,
2612
- "FILTER_RESULT_MAA2MC": false,
2613
- "FILTER_RESULT_ODFRA3": false,
2614
- "FILTER_RESULT_SANTE1": true,
2615
- "FILTER_RESULT_SANTE2": [false],
2616
- "FILTER_RESULT_STOCA3": [false, false, false, false],
2617
- "FILTER_RESULT_STOCA4": [false, false, false, false],
2618
- "FILTER_RESULT_STOCB1": [false, false, false, false],
2619
- "FILTER_RESULT_TELMOB": true,
2620
- "FILTER_RESULT_VACHAL": true,
2621
- "FILTER_RESULT_VCRCOM": false,
2622
- "FILTER_RESULT_VLOYER": null,
2623
- "FILTER_RESULT_VMODP1": true,
2624
- "FILTER_RESULT_VMODP2": true,
2625
- "FILTER_RESULT_VRAIS1": null,
2626
- "FILTER_RESULT_VRAIS2": null,
2627
- "FILTER_RESULT_VRAIS3": null,
2628
- "FILTER_RESULT_VRAIS4": null,
2629
- "FILTER_RESULT_VSURFD": true,
2630
- "FILTER_RESULT_VVENDL": true,
2631
- "FILTER_RESULT_CIVCOLL": false,
2632
- "FILTER_RESULT_DALOBIS": false,
2633
- "FILTER_RESULT_DEPNAIS": [true, true, true, true],
2634
- "FILTER_RESULT_DSTLOC2": false,
2635
- "FILTER_RESULT_ECOVID2": [false],
2636
- "FILTER_RESULT_ERETOUR": [false],
2637
- "FILTER_RESULT_HULHUI1": false,
2638
- "FILTER_RESULT_HULHUI2": false,
2639
- "FILTER_RESULT_INDCOLL": false,
2640
- "FILTER_RESULT_MARRIVC": true,
2641
- "FILTER_RESULT_NATIO1N": [true, true, true, true],
2642
- "FILTER_RESULT_NATIO2N": [null, null, null, null],
2643
- "FILTER_RESULT_NOMCOLL": false,
2644
- "FILTER_RESULT_RESAUTO": false,
2645
- "FILTER_RESULT_STOCA12": [true, true, true, true],
2646
- "FILTER_RESULT_TELFIXE": true,
2647
- "FILTER_RESULT_TRAVAIL": [false, false, true, true],
2648
- "FILTER_RESULT_VANCIEN": null,
2649
- "FILTER_RESULT_VBILLOG": null,
2650
- "FILTER_RESULT_ADR_COLL": true,
2651
- "FILTER_RESULT_CIVCOLL2": false,
2652
- "FILTER_RESULT_DATENAIS": [true, true, true, true],
2653
- "FILTER_RESULT_G_PRENOM": [true, true, true, true],
2654
- "FILTER_RESULT_INDNVOCC": false,
2655
- "FILTER_RESULT_MAA2AT_Q": true,
2656
- "FILTER_RESULT_NOMCOLL2": false,
2657
- "FILTER_RESULT_PAYSNAIS": [false, false, false, false],
2658
- "FILTER_RESULT_SDL_SIT1": [null],
2659
- "FILTER_RESULT_SDL_SIT2": [null],
2660
- "FILTER_RESULT_TELNVOCC": false,
2661
- "FILTER_RESULT_TEMPS1_1": true,
2662
- "FILTER_RESULT_TYPLOGCO": [false, false, false, false],
2663
- "FILTER_RESULT_testSTOC": true,
2664
- "FILTER_RESULT_FOYPAGEES": false,
2665
- "FILTER_RESULT_LNAISMERE": true,
2666
- "FILTER_RESULT_LNAISPERE": true,
2667
- "FILTER_RESULT_MAA2ATC_Q": false,
2668
- "FILTER_RESULT_MAILNVOCC": false,
2669
- "FILTER_RESULT_NOMNVOCC1": false,
2670
- "FILTER_RESULT_NOMNVOCC2": false,
2671
- "FILTER_RESULT_NOTELCOLL": true,
2672
- "FILTER_RESULT_SDT2_SIT2": [null],
2673
- "FILTER_RESULT_SITUMATRI": [true, true, true, true],
2674
- "FILTER_RESULT_NATIONMERE": true,
2675
- "FILTER_RESULT_NATIONPERE": true,
2676
- "FILTER_RESULT_NUMTH_COLL": true,
2677
- "FILTER_RESULT_PRENOMCOLL": false,
2678
- "FILTER_RESULT_SDTAD_SIT2": [null],
2679
- "FILTER_RESULT_CADRTH_COLL": true,
2680
- "FILTER_RESULT_LIBCOM_COLL": true,
2681
- "FILTER_RESULT_PRENOMCOLL2": false,
2682
- "FILTER_RESULT_PAYSNAISMERE": false,
2683
- "FILTER_RESULT_PAYSNAISPERE": false,
2684
- "FILTER_RESULT_PRENOMNVOCC1": false,
2685
- "FILTER_RESULT_PRENOMNVOCC2": false,
2686
- "FILTER_RESULT_COMMUNEPASSEE": false,
2687
- "FILTER_RESULT_CODEPOST1_COLL": true,
2688
- "FILTER_RESULT_testfiltreHEB1": [false],
2689
- "FILTER_RESULT_testfiltreHEB2": [true, true, true, true]
2690
- }
2691
- }
1
+ {
2
+ "EXTERNAL": {
3
+ "ADR": "AVENUE CHARLES DE GAULLE",
4
+ "NUMTH": "29",
5
+ "CADRTH": null,
6
+ "CIV_D1": "MONSIEUR",
7
+ "CIV_D2": null,
8
+ "LIBCOM": "PARIS",
9
+ "PREN_D1": "JEAN-MARC",
10
+ "PREN_D2": null,
11
+ "CODEPOST1": "75017",
12
+ "NOMVOUS_D1": "MIERLOT",
13
+ "NOMVOUS_D2": null
14
+ },
15
+ "COLLECTED": {
16
+ "DAG": {
17
+ "EDITED": null,
18
+ "FORCED": null,
19
+ "INPUTED": null,
20
+ "PREVIOUS": null,
21
+ "COLLECTED": null
22
+ },
23
+ "DST": {
24
+ "EDITED": null,
25
+ "FORCED": null,
26
+ "INPUTED": null,
27
+ "PREVIOUS": null,
28
+ "COLLECTED": null
29
+ },
30
+ "DTA": {
31
+ "EDITED": null,
32
+ "FORCED": null,
33
+ "INPUTED": null,
34
+ "PREVIOUS": null,
35
+ "COLLECTED": null
36
+ },
37
+ "DTL": {
38
+ "EDITED": null,
39
+ "FORCED": null,
40
+ "INPUTED": null,
41
+ "PREVIOUS": null,
42
+ "COLLECTED": null
43
+ },
44
+ "HPA": {
45
+ "EDITED": null,
46
+ "FORCED": null,
47
+ "INPUTED": null,
48
+ "PREVIOUS": null,
49
+ "COLLECTED": null
50
+ },
51
+ "HPH": {
52
+ "EDITED": null,
53
+ "FORCED": null,
54
+ "INPUTED": null,
55
+ "PREVIOUS": null,
56
+ "COLLECTED": null
57
+ },
58
+ "HPP": {
59
+ "EDITED": null,
60
+ "FORCED": null,
61
+ "INPUTED": null,
62
+ "PREVIOUS": null,
63
+ "COLLECTED": null
64
+ },
65
+ "HSP": {
66
+ "EDITED": null,
67
+ "FORCED": null,
68
+ "INPUTED": null,
69
+ "PREVIOUS": null,
70
+ "COLLECTED": null
71
+ },
72
+ "HST": {
73
+ "EDITED": null,
74
+ "FORCED": null,
75
+ "INPUTED": null,
76
+ "PREVIOUS": null,
77
+ "COLLECTED": null
78
+ },
79
+ "HUA": {
80
+ "EDITED": null,
81
+ "FORCED": null,
82
+ "INPUTED": null,
83
+ "PREVIOUS": null,
84
+ "COLLECTED": null
85
+ },
86
+ "HUP": {
87
+ "EDITED": null,
88
+ "FORCED": null,
89
+ "INPUTED": null,
90
+ "PREVIOUS": null,
91
+ "COLLECTED": null
92
+ },
93
+ "HUT": {
94
+ "EDITED": null,
95
+ "FORCED": null,
96
+ "INPUTED": null,
97
+ "PREVIOUS": null,
98
+ "COLLECTED": null
99
+ },
100
+ "IAS": {
101
+ "EDITED": null,
102
+ "FORCED": null,
103
+ "INPUTED": null,
104
+ "PREVIOUS": null,
105
+ "COLLECTED": null
106
+ },
107
+ "IEL": {
108
+ "EDITED": null,
109
+ "FORCED": null,
110
+ "INPUTED": null,
111
+ "PREVIOUS": null,
112
+ "COLLECTED": null
113
+ },
114
+ "IMI": {
115
+ "EDITED": null,
116
+ "FORCED": null,
117
+ "INPUTED": null,
118
+ "PREVIOUS": null,
119
+ "COLLECTED": "1"
120
+ },
121
+ "KBA": {
122
+ "EDITED": null,
123
+ "FORCED": null,
124
+ "INPUTED": null,
125
+ "PREVIOUS": null,
126
+ "COLLECTED": null
127
+ },
128
+ "KBD": {
129
+ "EDITED": null,
130
+ "FORCED": null,
131
+ "INPUTED": null,
132
+ "PREVIOUS": null,
133
+ "COLLECTED": null
134
+ },
135
+ "KCA": {
136
+ "EDITED": null,
137
+ "FORCED": null,
138
+ "INPUTED": null,
139
+ "PREVIOUS": null,
140
+ "COLLECTED": null
141
+ },
142
+ "KJA": {
143
+ "EDITED": null,
144
+ "FORCED": null,
145
+ "INPUTED": null,
146
+ "PREVIOUS": null,
147
+ "COLLECTED": null
148
+ },
149
+ "KJC": {
150
+ "EDITED": null,
151
+ "FORCED": null,
152
+ "INPUTED": null,
153
+ "PREVIOUS": null,
154
+ "COLLECTED": null
155
+ },
156
+ "KSB": {
157
+ "EDITED": null,
158
+ "FORCED": null,
159
+ "INPUTED": null,
160
+ "PREVIOUS": null,
161
+ "COLLECTED": null
162
+ },
163
+ "KSV": {
164
+ "EDITED": null,
165
+ "FORCED": null,
166
+ "INPUTED": null,
167
+ "PREVIOUS": null,
168
+ "COLLECTED": null
169
+ },
170
+ "KVE": {
171
+ "EDITED": null,
172
+ "FORCED": null,
173
+ "INPUTED": null,
174
+ "PREVIOUS": null,
175
+ "COLLECTED": null
176
+ },
177
+ "ODF": {
178
+ "EDITED": null,
179
+ "FORCED": null,
180
+ "INPUTED": null,
181
+ "PREVIOUS": null,
182
+ "COLLECTED": null
183
+ },
184
+ "ODL": {
185
+ "EDITED": null,
186
+ "FORCED": null,
187
+ "INPUTED": null,
188
+ "PREVIOUS": null,
189
+ "COLLECTED": null
190
+ },
191
+ "OIH": {
192
+ "EDITED": null,
193
+ "FORCED": null,
194
+ "INPUTED": null,
195
+ "PREVIOUS": null,
196
+ "COLLECTED": null
197
+ },
198
+ "OLA": {
199
+ "EDITED": null,
200
+ "FORCED": null,
201
+ "INPUTED": null,
202
+ "PREVIOUS": null,
203
+ "COLLECTED": null
204
+ },
205
+ "OQA": {
206
+ "EDITED": null,
207
+ "FORCED": null,
208
+ "INPUTED": null,
209
+ "PREVIOUS": null,
210
+ "COLLECTED": null
211
+ },
212
+ "VIN": {
213
+ "EDITED": null,
214
+ "FORCED": null,
215
+ "INPUTED": null,
216
+ "PREVIOUS": null,
217
+ "COLLECTED": null
218
+ },
219
+ "VLR": {
220
+ "EDITED": null,
221
+ "FORCED": null,
222
+ "INPUTED": null,
223
+ "PREVIOUS": null,
224
+ "COLLECTED": null
225
+ },
226
+ "VND": {
227
+ "EDITED": null,
228
+ "FORCED": null,
229
+ "INPUTED": null,
230
+ "PREVIOUS": null,
231
+ "COLLECTED": null
232
+ },
233
+ "VOP": {
234
+ "EDITED": null,
235
+ "FORCED": null,
236
+ "INPUTED": null,
237
+ "PREVIOUS": null,
238
+ "COLLECTED": null
239
+ },
240
+ "VPI": {
241
+ "EDITED": null,
242
+ "FORCED": null,
243
+ "INPUTED": null,
244
+ "PREVIOUS": null,
245
+ "COLLECTED": null
246
+ },
247
+ "VSY": {
248
+ "EDITED": null,
249
+ "FORCED": null,
250
+ "INPUTED": null,
251
+ "PREVIOUS": null,
252
+ "COLLECTED": null
253
+ },
254
+ "CADR": {
255
+ "EDITED": null,
256
+ "FORCED": null,
257
+ "INPUTED": null,
258
+ "PREVIOUS": null,
259
+ "COLLECTED": "2"
260
+ },
261
+ "DALO": {
262
+ "EDITED": null,
263
+ "FORCED": null,
264
+ "INPUTED": null,
265
+ "PREVIOUS": null,
266
+ "COLLECTED": null
267
+ },
268
+ "DDAT": {
269
+ "EDITED": null,
270
+ "FORCED": null,
271
+ "INPUTED": null,
272
+ "PREVIOUS": null,
273
+ "COLLECTED": null
274
+ },
275
+ "DDEM": {
276
+ "EDITED": null,
277
+ "FORCED": null,
278
+ "INPUTED": null,
279
+ "PREVIOUS": null,
280
+ "COLLECTED": null
281
+ },
282
+ "DORM": {
283
+ "EDITED": [null],
284
+ "FORCED": [null],
285
+ "INPUTED": [null],
286
+ "PREVIOUS": [null],
287
+ "COLLECTED": [null, null, null, null]
288
+ },
289
+ "DSTL": {
290
+ "EDITED": null,
291
+ "FORCED": null,
292
+ "INPUTED": null,
293
+ "PREVIOUS": null,
294
+ "COLLECTED": null
295
+ },
296
+ "DSTP": {
297
+ "EDITED": null,
298
+ "FORCED": null,
299
+ "INPUTED": null,
300
+ "PREVIOUS": null,
301
+ "COLLECTED": null
302
+ },
303
+ "HAUT": {
304
+ "EDITED": null,
305
+ "FORCED": null,
306
+ "INPUTED": null,
307
+ "PREVIOUS": null,
308
+ "COLLECTED": null
309
+ },
310
+ "HCHA": {
311
+ "EDITED": null,
312
+ "FORCED": null,
313
+ "INPUTED": null,
314
+ "PREVIOUS": null,
315
+ "COLLECTED": null
316
+ },
317
+ "HPI1": {
318
+ "EDITED": null,
319
+ "FORCED": null,
320
+ "INPUTED": null,
321
+ "PREVIOUS": null,
322
+ "COLLECTED": null
323
+ },
324
+ "HPI2": {
325
+ "EDITED": null,
326
+ "FORCED": null,
327
+ "INPUTED": null,
328
+ "PREVIOUS": null,
329
+ "COLLECTED": null
330
+ },
331
+ "HSI1": {
332
+ "EDITED": null,
333
+ "FORCED": null,
334
+ "INPUTED": null,
335
+ "PREVIOUS": null,
336
+ "COLLECTED": null
337
+ },
338
+ "HSI2": {
339
+ "EDITED": null,
340
+ "FORCED": null,
341
+ "INPUTED": null,
342
+ "PREVIOUS": null,
343
+ "COLLECTED": null
344
+ },
345
+ "ICOI": {
346
+ "EDITED": null,
347
+ "FORCED": null,
348
+ "INPUTED": null,
349
+ "PREVIOUS": null,
350
+ "COLLECTED": "2"
351
+ },
352
+ "KAO1": {
353
+ "EDITED": null,
354
+ "FORCED": null,
355
+ "INPUTED": null,
356
+ "PREVIOUS": null,
357
+ "COLLECTED": null
358
+ },
359
+ "KCU1": {
360
+ "EDITED": null,
361
+ "FORCED": null,
362
+ "INPUTED": null,
363
+ "PREVIOUS": null,
364
+ "COLLECTED": null
365
+ },
366
+ "KCU2": {
367
+ "EDITED": null,
368
+ "FORCED": null,
369
+ "INPUTED": null,
370
+ "PREVIOUS": null,
371
+ "COLLECTED": null
372
+ },
373
+ "KGA1": {
374
+ "EDITED": null,
375
+ "FORCED": null,
376
+ "INPUTED": null,
377
+ "PREVIOUS": null,
378
+ "COLLECTED": null
379
+ },
380
+ "KGA2": {
381
+ "EDITED": null,
382
+ "FORCED": null,
383
+ "INPUTED": null,
384
+ "PREVIOUS": null,
385
+ "COLLECTED": null
386
+ },
387
+ "KGA3": {
388
+ "EDITED": null,
389
+ "FORCED": null,
390
+ "INPUTED": null,
391
+ "PREVIOUS": null,
392
+ "COLLECTED": null
393
+ },
394
+ "KGA4": {
395
+ "EDITED": null,
396
+ "FORCED": null,
397
+ "INPUTED": null,
398
+ "PREVIOUS": null,
399
+ "COLLECTED": null
400
+ },
401
+ "KGRA": {
402
+ "EDITED": null,
403
+ "FORCED": null,
404
+ "INPUTED": null,
405
+ "PREVIOUS": null,
406
+ "COLLECTED": null
407
+ },
408
+ "KSE1": {
409
+ "EDITED": null,
410
+ "FORCED": null,
411
+ "INPUTED": null,
412
+ "PREVIOUS": null,
413
+ "COLLECTED": null
414
+ },
415
+ "KSE3": {
416
+ "EDITED": null,
417
+ "FORCED": null,
418
+ "INPUTED": null,
419
+ "PREVIOUS": null,
420
+ "COLLECTED": null
421
+ },
422
+ "KSJC": {
423
+ "EDITED": null,
424
+ "FORCED": null,
425
+ "INPUTED": null,
426
+ "PREVIOUS": null,
427
+ "COLLECTED": null
428
+ },
429
+ "KSMI": {
430
+ "EDITED": null,
431
+ "FORCED": null,
432
+ "INPUTED": null,
433
+ "PREVIOUS": null,
434
+ "COLLECTED": null
435
+ },
436
+ "KSOA": {
437
+ "EDITED": null,
438
+ "FORCED": null,
439
+ "INPUTED": null,
440
+ "PREVIOUS": null,
441
+ "COLLECTED": null
442
+ },
443
+ "KSV1": {
444
+ "EDITED": null,
445
+ "FORCED": null,
446
+ "INPUTED": null,
447
+ "PREVIOUS": null,
448
+ "COLLECTED": null
449
+ },
450
+ "KWC1": {
451
+ "EDITED": null,
452
+ "FORCED": null,
453
+ "INPUTED": null,
454
+ "PREVIOUS": null,
455
+ "COLLECTED": null
456
+ },
457
+ "KWCD": {
458
+ "EDITED": null,
459
+ "FORCED": null,
460
+ "INPUTED": null,
461
+ "PREVIOUS": null,
462
+ "COLLECTED": null
463
+ },
464
+ "KWCI": {
465
+ "EDITED": null,
466
+ "FORCED": null,
467
+ "INPUTED": null,
468
+ "PREVIOUS": null,
469
+ "COLLECTED": null
470
+ },
471
+ "LIEN": {
472
+ "EDITED": [null],
473
+ "FORCED": [null],
474
+ "INPUTED": [null],
475
+ "PREVIOUS": [null],
476
+ "COLLECTED": [null, "1", "3", "3"]
477
+ },
478
+ "MAA3": {
479
+ "EDITED": null,
480
+ "FORCED": null,
481
+ "INPUTED": null,
482
+ "PREVIOUS": null,
483
+ "COLLECTED": null
484
+ },
485
+ "OIHD": {
486
+ "EDITED": null,
487
+ "FORCED": null,
488
+ "INPUTED": null,
489
+ "PREVIOUS": null,
490
+ "COLLECTED": null
491
+ },
492
+ "OIHE": {
493
+ "EDITED": null,
494
+ "FORCED": null,
495
+ "INPUTED": null,
496
+ "PREVIOUS": null,
497
+ "COLLECTED": null
498
+ },
499
+ "OLAD": {
500
+ "EDITED": null,
501
+ "FORCED": null,
502
+ "INPUTED": null,
503
+ "PREVIOUS": null,
504
+ "COLLECTED": null
505
+ },
506
+ "OQAD": {
507
+ "EDITED": null,
508
+ "FORCED": null,
509
+ "INPUTED": null,
510
+ "PREVIOUS": null,
511
+ "COLLECTED": null
512
+ },
513
+ "SDL2": {
514
+ "EDITED": [null],
515
+ "FORCED": [null],
516
+ "INPUTED": [null],
517
+ "PREVIOUS": [null],
518
+ "COLLECTED": [null]
519
+ },
520
+ "SDL4": {
521
+ "EDITED": [null],
522
+ "FORCED": [null],
523
+ "INPUTED": [null],
524
+ "PREVIOUS": [null],
525
+ "COLLECTED": [null]
526
+ },
527
+ "SDN1": {
528
+ "EDITED": [null],
529
+ "FORCED": [null],
530
+ "INPUTED": [null],
531
+ "PREVIOUS": [null],
532
+ "COLLECTED": [null]
533
+ },
534
+ "SDT1": {
535
+ "EDITED": [null],
536
+ "FORCED": [null],
537
+ "INPUTED": [null],
538
+ "PREVIOUS": [null],
539
+ "COLLECTED": [null]
540
+ },
541
+ "SDT2": {
542
+ "EDITED": [null],
543
+ "FORCED": [null],
544
+ "INPUTED": [null],
545
+ "PREVIOUS": [null],
546
+ "COLLECTED": [null]
547
+ },
548
+ "SEXE": {
549
+ "EDITED": [null],
550
+ "FORCED": [null],
551
+ "INPUTED": [null],
552
+ "PREVIOUS": [null],
553
+ "COLLECTED": ["1", "2", "2", "1"]
554
+ },
555
+ "UWEB": {
556
+ "EDITED": null,
557
+ "FORCED": null,
558
+ "INPUTED": null,
559
+ "PREVIOUS": null,
560
+ "COLLECTED": null
561
+ },
562
+ "VAID": {
563
+ "EDITED": null,
564
+ "FORCED": null,
565
+ "INPUTED": null,
566
+ "PREVIOUS": null,
567
+ "COLLECTED": null
568
+ },
569
+ "VDD1": {
570
+ "EDITED": null,
571
+ "FORCED": null,
572
+ "INPUTED": null,
573
+ "PREVIOUS": null,
574
+ "COLLECTED": null
575
+ },
576
+ "VDSY": {
577
+ "EDITED": null,
578
+ "FORCED": null,
579
+ "INPUTED": null,
580
+ "PREVIOUS": null,
581
+ "COLLECTED": null
582
+ },
583
+ "VFFH": {
584
+ "EDITED": null,
585
+ "FORCED": null,
586
+ "INPUTED": null,
587
+ "PREVIOUS": null,
588
+ "COLLECTED": null
589
+ },
590
+ "VFLA": {
591
+ "EDITED": null,
592
+ "FORCED": null,
593
+ "INPUTED": null,
594
+ "PREVIOUS": null,
595
+ "COLLECTED": null
596
+ },
597
+ "VLA1": {
598
+ "EDITED": null,
599
+ "FORCED": null,
600
+ "INPUTED": null,
601
+ "PREVIOUS": null,
602
+ "COLLECTED": null
603
+ },
604
+ "VLRD": {
605
+ "EDITED": null,
606
+ "FORCED": null,
607
+ "INPUTED": null,
608
+ "PREVIOUS": null,
609
+ "COLLECTED": null
610
+ },
611
+ "VPID": {
612
+ "EDITED": null,
613
+ "FORCED": null,
614
+ "INPUTED": null,
615
+ "PREVIOUS": null,
616
+ "COLLECTED": null
617
+ },
618
+ "VPRA": {
619
+ "EDITED": null,
620
+ "FORCED": null,
621
+ "INPUTED": null,
622
+ "PREVIOUS": null,
623
+ "COLLECTED": null
624
+ },
625
+ "VSO1": {
626
+ "EDITED": null,
627
+ "FORCED": null,
628
+ "INPUTED": null,
629
+ "PREVIOUS": null,
630
+ "COLLECTED": null
631
+ },
632
+ "VTL1": {
633
+ "EDITED": null,
634
+ "FORCED": null,
635
+ "INPUTED": null,
636
+ "PREVIOUS": null,
637
+ "COLLECTED": null
638
+ },
639
+ "VTLD": {
640
+ "EDITED": null,
641
+ "FORCED": null,
642
+ "INPUTED": null,
643
+ "PREVIOUS": null,
644
+ "COLLECTED": null
645
+ },
646
+ "CHGNC": {
647
+ "EDITED": null,
648
+ "FORCED": null,
649
+ "INPUTED": null,
650
+ "PREVIOUS": null,
651
+ "COLLECTED": null
652
+ },
653
+ "DAGEO": {
654
+ "EDITED": null,
655
+ "FORCED": null,
656
+ "INPUTED": null,
657
+ "PREVIOUS": null,
658
+ "COLLECTED": null
659
+ },
660
+ "DAGRL": {
661
+ "EDITED": null,
662
+ "FORCED": null,
663
+ "INPUTED": null,
664
+ "PREVIOUS": null,
665
+ "COLLECTED": null
666
+ },
667
+ "EAMIA": {
668
+ "EDITED": [null],
669
+ "FORCED": [null],
670
+ "INPUTED": [null],
671
+ "PREVIOUS": [null],
672
+ "COLLECTED": [null]
673
+ },
674
+ "EAMIH": {
675
+ "EDITED": [null],
676
+ "FORCED": [null],
677
+ "INPUTED": [null],
678
+ "PREVIOUS": [null],
679
+ "COLLECTED": [null]
680
+ },
681
+ "EAMIK": {
682
+ "EDITED": [null],
683
+ "FORCED": [null],
684
+ "INPUTED": [null],
685
+ "PREVIOUS": [null],
686
+ "COLLECTED": [null]
687
+ },
688
+ "EAMIL": {
689
+ "EDITED": [null],
690
+ "FORCED": [null],
691
+ "INPUTED": [null],
692
+ "PREVIOUS": [null],
693
+ "COLLECTED": [null]
694
+ },
695
+ "EPAS1": {
696
+ "EDITED": [null],
697
+ "FORCED": [null],
698
+ "INPUTED": [null],
699
+ "PREVIOUS": [null],
700
+ "COLLECTED": [null]
701
+ },
702
+ "EPASB": {
703
+ "EDITED": [null],
704
+ "FORCED": [null],
705
+ "INPUTED": [null],
706
+ "PREVIOUS": [null],
707
+ "COLLECTED": [null]
708
+ },
709
+ "EPASC": {
710
+ "EDITED": [null],
711
+ "FORCED": [null],
712
+ "INPUTED": [null],
713
+ "PREVIOUS": [null],
714
+ "COLLECTED": [null]
715
+ },
716
+ "EPROJ": {
717
+ "EDITED": [null],
718
+ "FORCED": [null],
719
+ "INPUTED": [null],
720
+ "PREVIOUS": [null],
721
+ "COLLECTED": [null]
722
+ },
723
+ "GARDE": {
724
+ "EDITED": [null],
725
+ "FORCED": [null],
726
+ "INPUTED": [null],
727
+ "PREVIOUS": [null],
728
+ "COLLECTED": [null, null, null, null]
729
+ },
730
+ "HPEUP": {
731
+ "EDITED": null,
732
+ "FORCED": null,
733
+ "INPUTED": null,
734
+ "PREVIOUS": null,
735
+ "COLLECTED": null
736
+ },
737
+ "HTLC1": {
738
+ "EDITED": null,
739
+ "FORCED": null,
740
+ "INPUTED": null,
741
+ "PREVIOUS": null,
742
+ "COLLECTED": "1"
743
+ },
744
+ "IAATC": {
745
+ "EDITED": null,
746
+ "FORCED": null,
747
+ "INPUTED": null,
748
+ "PREVIOUS": null,
749
+ "COLLECTED": "5"
750
+ },
751
+ "KDLK1": {
752
+ "EDITED": null,
753
+ "FORCED": null,
754
+ "INPUTED": null,
755
+ "PREVIOUS": null,
756
+ "COLLECTED": null
757
+ },
758
+ "KDLK2": {
759
+ "EDITED": null,
760
+ "FORCED": null,
761
+ "INPUTED": null,
762
+ "PREVIOUS": null,
763
+ "COLLECTED": null
764
+ },
765
+ "KGA11": {
766
+ "EDITED": null,
767
+ "FORCED": null,
768
+ "INPUTED": null,
769
+ "PREVIOUS": null,
770
+ "COLLECTED": null
771
+ },
772
+ "KGA12": {
773
+ "EDITED": null,
774
+ "FORCED": null,
775
+ "INPUTED": null,
776
+ "PREVIOUS": null,
777
+ "COLLECTED": null
778
+ },
779
+ "KGA13": {
780
+ "EDITED": null,
781
+ "FORCED": null,
782
+ "INPUTED": null,
783
+ "PREVIOUS": null,
784
+ "COLLECTED": null
785
+ },
786
+ "KGA14": {
787
+ "EDITED": null,
788
+ "FORCED": null,
789
+ "INPUTED": null,
790
+ "PREVIOUS": null,
791
+ "COLLECTED": null
792
+ },
793
+ "KGRAA": {
794
+ "EDITED": null,
795
+ "FORCED": null,
796
+ "INPUTED": null,
797
+ "PREVIOUS": null,
798
+ "COLLECTED": null
799
+ },
800
+ "KPISC": {
801
+ "EDITED": null,
802
+ "FORCED": null,
803
+ "INPUTED": null,
804
+ "PREVIOUS": null,
805
+ "COLLECTED": null
806
+ },
807
+ "KSJPC": {
808
+ "EDITED": null,
809
+ "FORCED": null,
810
+ "INPUTED": null,
811
+ "PREVIOUS": null,
812
+ "COLLECTED": null
813
+ },
814
+ "KSJPI": {
815
+ "EDITED": null,
816
+ "FORCED": null,
817
+ "INPUTED": null,
818
+ "PREVIOUS": null,
819
+ "COLLECTED": null
820
+ },
821
+ "KVELO": {
822
+ "EDITED": null,
823
+ "FORCED": null,
824
+ "INPUTED": null,
825
+ "PREVIOUS": null,
826
+ "COLLECTED": null
827
+ },
828
+ "LIMT1": {
829
+ "EDITED": null,
830
+ "FORCED": null,
831
+ "INPUTED": null,
832
+ "PREVIOUS": null,
833
+ "COLLECTED": null
834
+ },
835
+ "LIMT2": {
836
+ "EDITED": [null],
837
+ "FORCED": [null],
838
+ "INPUTED": [null],
839
+ "PREVIOUS": [null],
840
+ "COLLECTED": [null]
841
+ },
842
+ "LNAIS": {
843
+ "EDITED": [null],
844
+ "FORCED": [null],
845
+ "INPUTED": [null],
846
+ "PREVIOUS": [null],
847
+ "COLLECTED": ["1", "1", "1", "1"]
848
+ },
849
+ "LOGCO": {
850
+ "EDITED": [null],
851
+ "FORCED": [null],
852
+ "INPUTED": [null],
853
+ "PREVIOUS": [null],
854
+ "COLLECTED": [null, null, null, null]
855
+ },
856
+ "MAA2A": {
857
+ "EDITED": null,
858
+ "FORCED": null,
859
+ "INPUTED": null,
860
+ "PREVIOUS": null,
861
+ "COLLECTED": null
862
+ },
863
+ "MAA2M": {
864
+ "EDITED": null,
865
+ "FORCED": null,
866
+ "INPUTED": null,
867
+ "PREVIOUS": null,
868
+ "COLLECTED": null
869
+ },
870
+ "MAA3A": {
871
+ "EDITED": null,
872
+ "FORCED": null,
873
+ "INPUTED": null,
874
+ "PREVIOUS": null,
875
+ "COLLECTED": null
876
+ },
877
+ "MAA3M": {
878
+ "EDITED": null,
879
+ "FORCED": null,
880
+ "INPUTED": null,
881
+ "PREVIOUS": null,
882
+ "COLLECTED": null
883
+ },
884
+ "MCHR1": {
885
+ "EDITED": null,
886
+ "FORCED": null,
887
+ "INPUTED": null,
888
+ "PREVIOUS": null,
889
+ "COLLECTED": null
890
+ },
891
+ "MCHR2": {
892
+ "EDITED": [null],
893
+ "FORCED": [null],
894
+ "INPUTED": [null],
895
+ "PREVIOUS": [null],
896
+ "COLLECTED": [null]
897
+ },
898
+ "NBHAB": {
899
+ "EDITED": null,
900
+ "FORCED": null,
901
+ "INPUTED": null,
902
+ "PREVIOUS": null,
903
+ "COLLECTED": "4"
904
+ },
905
+ "OIHB1": {
906
+ "EDITED": null,
907
+ "FORCED": null,
908
+ "INPUTED": null,
909
+ "PREVIOUS": null,
910
+ "COLLECTED": null
911
+ },
912
+ "OIHB2": {
913
+ "EDITED": null,
914
+ "FORCED": null,
915
+ "INPUTED": null,
916
+ "PREVIOUS": null,
917
+ "COLLECTED": null
918
+ },
919
+ "OIHB3": {
920
+ "EDITED": null,
921
+ "FORCED": null,
922
+ "INPUTED": null,
923
+ "PREVIOUS": null,
924
+ "COLLECTED": null
925
+ },
926
+ "OIHC1": {
927
+ "EDITED": null,
928
+ "FORCED": null,
929
+ "INPUTED": null,
930
+ "PREVIOUS": null,
931
+ "COLLECTED": null
932
+ },
933
+ "OIHC2": {
934
+ "EDITED": null,
935
+ "FORCED": null,
936
+ "INPUTED": null,
937
+ "PREVIOUS": null,
938
+ "COLLECTED": null
939
+ },
940
+ "OIHC3": {
941
+ "EDITED": null,
942
+ "FORCED": null,
943
+ "INPUTED": null,
944
+ "PREVIOUS": null,
945
+ "COLLECTED": null
946
+ },
947
+ "OIHC4": {
948
+ "EDITED": null,
949
+ "FORCED": null,
950
+ "INPUTED": null,
951
+ "PREVIOUS": null,
952
+ "COLLECTED": null
953
+ },
954
+ "OIHC5": {
955
+ "EDITED": null,
956
+ "FORCED": null,
957
+ "INPUTED": null,
958
+ "PREVIOUS": null,
959
+ "COLLECTED": null
960
+ },
961
+ "OIHC6": {
962
+ "EDITED": null,
963
+ "FORCED": null,
964
+ "INPUTED": null,
965
+ "PREVIOUS": null,
966
+ "COLLECTED": null
967
+ },
968
+ "OIHF1": {
969
+ "EDITED": null,
970
+ "FORCED": null,
971
+ "INPUTED": null,
972
+ "PREVIOUS": null,
973
+ "COLLECTED": null
974
+ },
975
+ "OIHF2": {
976
+ "EDITED": null,
977
+ "FORCED": null,
978
+ "INPUTED": null,
979
+ "PREVIOUS": null,
980
+ "COLLECTED": null
981
+ },
982
+ "OIHF3": {
983
+ "EDITED": null,
984
+ "FORCED": null,
985
+ "INPUTED": null,
986
+ "PREVIOUS": null,
987
+ "COLLECTED": null
988
+ },
989
+ "OIHF4": {
990
+ "EDITED": null,
991
+ "FORCED": null,
992
+ "INPUTED": null,
993
+ "PREVIOUS": null,
994
+ "COLLECTED": null
995
+ },
996
+ "OIHF5": {
997
+ "EDITED": null,
998
+ "FORCED": null,
999
+ "INPUTED": null,
1000
+ "PREVIOUS": null,
1001
+ "COLLECTED": null
1002
+ },
1003
+ "OIHF6": {
1004
+ "EDITED": null,
1005
+ "FORCED": null,
1006
+ "INPUTED": null,
1007
+ "PREVIOUS": null,
1008
+ "COLLECTED": null
1009
+ },
1010
+ "SANT1": {
1011
+ "EDITED": null,
1012
+ "FORCED": null,
1013
+ "INPUTED": null,
1014
+ "PREVIOUS": null,
1015
+ "COLLECTED": null
1016
+ },
1017
+ "SDL11": {
1018
+ "EDITED": [null],
1019
+ "FORCED": [null],
1020
+ "INPUTED": [null],
1021
+ "PREVIOUS": [null],
1022
+ "COLLECTED": [null]
1023
+ },
1024
+ "SDL12": {
1025
+ "EDITED": [null],
1026
+ "FORCED": [null],
1027
+ "INPUTED": [null],
1028
+ "PREVIOUS": [null],
1029
+ "COLLECTED": [null]
1030
+ },
1031
+ "SDL13": {
1032
+ "EDITED": [null],
1033
+ "FORCED": [null],
1034
+ "INPUTED": [null],
1035
+ "PREVIOUS": [null],
1036
+ "COLLECTED": [null]
1037
+ },
1038
+ "SDL14": {
1039
+ "EDITED": [null],
1040
+ "FORCED": [null],
1041
+ "INPUTED": [null],
1042
+ "PREVIOUS": [null],
1043
+ "COLLECTED": [null]
1044
+ },
1045
+ "SDL15": {
1046
+ "EDITED": [null],
1047
+ "FORCED": [null],
1048
+ "INPUTED": [null],
1049
+ "PREVIOUS": [null],
1050
+ "COLLECTED": [null]
1051
+ },
1052
+ "SDL16": {
1053
+ "EDITED": [null],
1054
+ "FORCED": [null],
1055
+ "INPUTED": [null],
1056
+ "PREVIOUS": [null],
1057
+ "COLLECTED": [null]
1058
+ },
1059
+ "SDL17": {
1060
+ "EDITED": [null],
1061
+ "FORCED": [null],
1062
+ "INPUTED": [null],
1063
+ "PREVIOUS": [null],
1064
+ "COLLECTED": [null]
1065
+ },
1066
+ "SDTAD": {
1067
+ "EDITED": [null],
1068
+ "FORCED": [null],
1069
+ "INPUTED": [null],
1070
+ "PREVIOUS": [null],
1071
+ "COLLECTED": [null]
1072
+ },
1073
+ "SITUA": {
1074
+ "EDITED": [null],
1075
+ "FORCED": [null],
1076
+ "INPUTED": [null],
1077
+ "PREVIOUS": [null],
1078
+ "COLLECTED": ["1", "1", "2", "5"]
1079
+ },
1080
+ "STOC1": {
1081
+ "EDITED": null,
1082
+ "FORCED": null,
1083
+ "INPUTED": null,
1084
+ "PREVIOUS": null,
1085
+ "COLLECTED": "1"
1086
+ },
1087
+ "STOC2": {
1088
+ "EDITED": null,
1089
+ "FORCED": null,
1090
+ "INPUTED": null,
1091
+ "PREVIOUS": null,
1092
+ "COLLECTED": null
1093
+ },
1094
+ "STOCP": {
1095
+ "EDITED": null,
1096
+ "FORCED": null,
1097
+ "INPUTED": null,
1098
+ "PREVIOUS": null,
1099
+ "COLLECTED": "1"
1100
+ },
1101
+ "TELET": {
1102
+ "EDITED": [null],
1103
+ "FORCED": [null],
1104
+ "INPUTED": [null],
1105
+ "PREVIOUS": [null],
1106
+ "COLLECTED": ["3", "5", null, null]
1107
+ },
1108
+ "TRAGE": {
1109
+ "EDITED": [null],
1110
+ "FORCED": [null],
1111
+ "INPUTED": [null],
1112
+ "PREVIOUS": [null],
1113
+ "COLLECTED": [null, null, null, null]
1114
+ },
1115
+ "UNLOG": {
1116
+ "EDITED": [null],
1117
+ "FORCED": [null],
1118
+ "INPUTED": [null],
1119
+ "PREVIOUS": [null],
1120
+ "COLLECTED": ["1", "1", "1", "1"]
1121
+ },
1122
+ "VLAB1": {
1123
+ "EDITED": null,
1124
+ "FORCED": null,
1125
+ "INPUTED": null,
1126
+ "PREVIOUS": null,
1127
+ "COLLECTED": null
1128
+ },
1129
+ "VSURF": {
1130
+ "EDITED": null,
1131
+ "FORCED": null,
1132
+ "INPUTED": null,
1133
+ "PREVIOUS": null,
1134
+ "COLLECTED": null
1135
+ },
1136
+ "COUPLE": {
1137
+ "EDITED": [null],
1138
+ "FORCED": [null],
1139
+ "INPUTED": [null],
1140
+ "PREVIOUS": [null],
1141
+ "COLLECTED": ["1", "1", "3", "3"]
1142
+ },
1143
+ "DAGEO1": {
1144
+ "EDITED": null,
1145
+ "FORCED": null,
1146
+ "INPUTED": null,
1147
+ "PREVIOUS": null,
1148
+ "COLLECTED": null
1149
+ },
1150
+ "DAGEO2": {
1151
+ "EDITED": null,
1152
+ "FORCED": null,
1153
+ "INPUTED": null,
1154
+ "PREVIOUS": null,
1155
+ "COLLECTED": null
1156
+ },
1157
+ "DAGEO3": {
1158
+ "EDITED": null,
1159
+ "FORCED": null,
1160
+ "INPUTED": null,
1161
+ "PREVIOUS": null,
1162
+ "COLLECTED": null
1163
+ },
1164
+ "DEPART": {
1165
+ "EDITED": null,
1166
+ "FORCED": null,
1167
+ "INPUTED": null,
1168
+ "PREVIOUS": null,
1169
+ "COLLECTED": null
1170
+ },
1171
+ "DURLOG": {
1172
+ "EDITED": [null],
1173
+ "FORCED": [null],
1174
+ "INPUTED": [null],
1175
+ "PREVIOUS": [null],
1176
+ "COLLECTED": [null, null, null, null]
1177
+ },
1178
+ "ECOVID": {
1179
+ "EDITED": [null],
1180
+ "FORCED": [null],
1181
+ "INPUTED": [null],
1182
+ "PREVIOUS": [null],
1183
+ "COLLECTED": [null]
1184
+ },
1185
+ "EPROJB": {
1186
+ "EDITED": [null],
1187
+ "FORCED": [null],
1188
+ "INPUTED": [null],
1189
+ "PREVIOUS": [null],
1190
+ "COLLECTED": [null]
1191
+ },
1192
+ "EPROJC": {
1193
+ "EDITED": [null],
1194
+ "FORCED": [null],
1195
+ "INPUTED": [null],
1196
+ "PREVIOUS": [null],
1197
+ "COLLECTED": [null]
1198
+ },
1199
+ "EPROJD": {
1200
+ "EDITED": [null],
1201
+ "FORCED": [null],
1202
+ "INPUTED": [null],
1203
+ "PREVIOUS": [null],
1204
+ "COLLECTED": [null]
1205
+ },
1206
+ "ERET11": {
1207
+ "EDITED": [null],
1208
+ "FORCED": [null],
1209
+ "INPUTED": [null],
1210
+ "PREVIOUS": [null],
1211
+ "COLLECTED": [null]
1212
+ },
1213
+ "ERET12": {
1214
+ "EDITED": [null],
1215
+ "FORCED": [null],
1216
+ "INPUTED": [null],
1217
+ "PREVIOUS": [null],
1218
+ "COLLECTED": [null]
1219
+ },
1220
+ "ERET13": {
1221
+ "EDITED": [null],
1222
+ "FORCED": [null],
1223
+ "INPUTED": [null],
1224
+ "PREVIOUS": [null],
1225
+ "COLLECTED": [null]
1226
+ },
1227
+ "ERET14": {
1228
+ "EDITED": [null],
1229
+ "FORCED": [null],
1230
+ "INPUTED": [null],
1231
+ "PREVIOUS": [null],
1232
+ "COLLECTED": [null]
1233
+ },
1234
+ "ERET15": {
1235
+ "EDITED": [null],
1236
+ "FORCED": [null],
1237
+ "INPUTED": [null],
1238
+ "PREVIOUS": [null],
1239
+ "COLLECTED": [null]
1240
+ },
1241
+ "GRDIPA": {
1242
+ "EDITED": [null],
1243
+ "FORCED": [null],
1244
+ "INPUTED": [null],
1245
+ "PREVIOUS": [null],
1246
+ "COLLECTED": ["8", "4", "5", "5"]
1247
+ },
1248
+ "GRDIPB": {
1249
+ "EDITED": [null],
1250
+ "FORCED": [null],
1251
+ "INPUTED": [null],
1252
+ "PREVIOUS": [null],
1253
+ "COLLECTED": [null, null, null, null]
1254
+ },
1255
+ "GRDIPC": {
1256
+ "EDITED": [null],
1257
+ "FORCED": [null],
1258
+ "INPUTED": [null],
1259
+ "PREVIOUS": [null],
1260
+ "COLLECTED": ["1", null, null, null]
1261
+ },
1262
+ "IAATCD": {
1263
+ "EDITED": null,
1264
+ "FORCED": null,
1265
+ "INPUTED": null,
1266
+ "PREVIOUS": null,
1267
+ "COLLECTED": null
1268
+ },
1269
+ "KSJPIT": {
1270
+ "EDITED": null,
1271
+ "FORCED": null,
1272
+ "INPUTED": null,
1273
+ "PREVIOUS": null,
1274
+ "COLLECTED": null
1275
+ },
1276
+ "LOGAUT": {
1277
+ "EDITED": [null],
1278
+ "FORCED": [null],
1279
+ "INPUTED": [null],
1280
+ "PREVIOUS": [null],
1281
+ "COLLECTED": [null, null, null, null]
1282
+ },
1283
+ "LOGENQ": {
1284
+ "EDITED": [null],
1285
+ "FORCED": [null],
1286
+ "INPUTED": [null],
1287
+ "PREVIOUS": [null],
1288
+ "COLLECTED": [null, null, null, null]
1289
+ },
1290
+ "MAA2AC": {
1291
+ "EDITED": null,
1292
+ "FORCED": null,
1293
+ "INPUTED": null,
1294
+ "PREVIOUS": null,
1295
+ "COLLECTED": null
1296
+ },
1297
+ "MAA2MC": {
1298
+ "EDITED": null,
1299
+ "FORCED": null,
1300
+ "INPUTED": null,
1301
+ "PREVIOUS": null,
1302
+ "COLLECTED": null
1303
+ },
1304
+ "ODFRA2": {
1305
+ "EDITED": null,
1306
+ "FORCED": null,
1307
+ "INPUTED": null,
1308
+ "PREVIOUS": null,
1309
+ "COLLECTED": null
1310
+ },
1311
+ "OLAR11": {
1312
+ "EDITED": null,
1313
+ "FORCED": null,
1314
+ "INPUTED": null,
1315
+ "PREVIOUS": null,
1316
+ "COLLECTED": null
1317
+ },
1318
+ "OLAR12": {
1319
+ "EDITED": null,
1320
+ "FORCED": null,
1321
+ "INPUTED": null,
1322
+ "PREVIOUS": null,
1323
+ "COLLECTED": null
1324
+ },
1325
+ "OLAR13": {
1326
+ "EDITED": null,
1327
+ "FORCED": null,
1328
+ "INPUTED": null,
1329
+ "PREVIOUS": null,
1330
+ "COLLECTED": null
1331
+ },
1332
+ "OLAR14": {
1333
+ "EDITED": null,
1334
+ "FORCED": null,
1335
+ "INPUTED": null,
1336
+ "PREVIOUS": null,
1337
+ "COLLECTED": null
1338
+ },
1339
+ "OLAR15": {
1340
+ "EDITED": null,
1341
+ "FORCED": null,
1342
+ "INPUTED": null,
1343
+ "PREVIOUS": null,
1344
+ "COLLECTED": null
1345
+ },
1346
+ "OLAR21": {
1347
+ "EDITED": null,
1348
+ "FORCED": null,
1349
+ "INPUTED": null,
1350
+ "PREVIOUS": null,
1351
+ "COLLECTED": null
1352
+ },
1353
+ "OLAR22": {
1354
+ "EDITED": null,
1355
+ "FORCED": null,
1356
+ "INPUTED": null,
1357
+ "PREVIOUS": null,
1358
+ "COLLECTED": null
1359
+ },
1360
+ "OLAR23": {
1361
+ "EDITED": null,
1362
+ "FORCED": null,
1363
+ "INPUTED": null,
1364
+ "PREVIOUS": null,
1365
+ "COLLECTED": null
1366
+ },
1367
+ "OLAR24": {
1368
+ "EDITED": null,
1369
+ "FORCED": null,
1370
+ "INPUTED": null,
1371
+ "PREVIOUS": null,
1372
+ "COLLECTED": null
1373
+ },
1374
+ "OLAR25": {
1375
+ "EDITED": null,
1376
+ "FORCED": null,
1377
+ "INPUTED": null,
1378
+ "PREVIOUS": null,
1379
+ "COLLECTED": null
1380
+ },
1381
+ "OLAR31": {
1382
+ "EDITED": null,
1383
+ "FORCED": null,
1384
+ "INPUTED": null,
1385
+ "PREVIOUS": null,
1386
+ "COLLECTED": null
1387
+ },
1388
+ "OLAR32": {
1389
+ "EDITED": null,
1390
+ "FORCED": null,
1391
+ "INPUTED": null,
1392
+ "PREVIOUS": null,
1393
+ "COLLECTED": null
1394
+ },
1395
+ "OLAR33": {
1396
+ "EDITED": null,
1397
+ "FORCED": null,
1398
+ "INPUTED": null,
1399
+ "PREVIOUS": null,
1400
+ "COLLECTED": null
1401
+ },
1402
+ "SANTE2": {
1403
+ "EDITED": [null],
1404
+ "FORCED": [null],
1405
+ "INPUTED": [null],
1406
+ "PREVIOUS": [null],
1407
+ "COLLECTED": [null]
1408
+ },
1409
+ "STOCA3": {
1410
+ "EDITED": [null],
1411
+ "FORCED": [null],
1412
+ "INPUTED": [null],
1413
+ "PREVIOUS": [null],
1414
+ "COLLECTED": [null, null, null, null]
1415
+ },
1416
+ "STOCA4": {
1417
+ "EDITED": [null],
1418
+ "FORCED": [null],
1419
+ "INPUTED": [null],
1420
+ "PREVIOUS": [null],
1421
+ "COLLECTED": ["1", "1", "2", "2"]
1422
+ },
1423
+ "STOCB1": {
1424
+ "EDITED": [null],
1425
+ "FORCED": [null],
1426
+ "INPUTED": [null],
1427
+ "PREVIOUS": [null],
1428
+ "COLLECTED": [null, null, null, null]
1429
+ },
1430
+ "TELMOB": {
1431
+ "EDITED": null,
1432
+ "FORCED": null,
1433
+ "INPUTED": null,
1434
+ "PREVIOUS": null,
1435
+ "COLLECTED": null
1436
+ },
1437
+ "VACHAL": {
1438
+ "EDITED": null,
1439
+ "FORCED": null,
1440
+ "INPUTED": null,
1441
+ "PREVIOUS": null,
1442
+ "COLLECTED": null
1443
+ },
1444
+ "VCRCOM": {
1445
+ "EDITED": null,
1446
+ "FORCED": null,
1447
+ "INPUTED": null,
1448
+ "PREVIOUS": null,
1449
+ "COLLECTED": null
1450
+ },
1451
+ "VLOYER": {
1452
+ "EDITED": null,
1453
+ "FORCED": null,
1454
+ "INPUTED": null,
1455
+ "PREVIOUS": null,
1456
+ "COLLECTED": null
1457
+ },
1458
+ "VMODM1": {
1459
+ "EDITED": null,
1460
+ "FORCED": null,
1461
+ "INPUTED": null,
1462
+ "PREVIOUS": null,
1463
+ "COLLECTED": null
1464
+ },
1465
+ "VMODM2": {
1466
+ "EDITED": null,
1467
+ "FORCED": null,
1468
+ "INPUTED": null,
1469
+ "PREVIOUS": null,
1470
+ "COLLECTED": null
1471
+ },
1472
+ "VMODM3": {
1473
+ "EDITED": null,
1474
+ "FORCED": null,
1475
+ "INPUTED": null,
1476
+ "PREVIOUS": null,
1477
+ "COLLECTED": null
1478
+ },
1479
+ "VMODM4": {
1480
+ "EDITED": null,
1481
+ "FORCED": null,
1482
+ "INPUTED": null,
1483
+ "PREVIOUS": null,
1484
+ "COLLECTED": null
1485
+ },
1486
+ "VMODM5": {
1487
+ "EDITED": null,
1488
+ "FORCED": null,
1489
+ "INPUTED": null,
1490
+ "PREVIOUS": null,
1491
+ "COLLECTED": null
1492
+ },
1493
+ "VMODM6": {
1494
+ "EDITED": null,
1495
+ "FORCED": null,
1496
+ "INPUTED": null,
1497
+ "PREVIOUS": null,
1498
+ "COLLECTED": null
1499
+ },
1500
+ "VMODM7": {
1501
+ "EDITED": null,
1502
+ "FORCED": null,
1503
+ "INPUTED": null,
1504
+ "PREVIOUS": null,
1505
+ "COLLECTED": null
1506
+ },
1507
+ "VSURFD": {
1508
+ "EDITED": null,
1509
+ "FORCED": null,
1510
+ "INPUTED": null,
1511
+ "PREVIOUS": null,
1512
+ "COLLECTED": null
1513
+ },
1514
+ "VVENDL": {
1515
+ "EDITED": null,
1516
+ "FORCED": null,
1517
+ "INPUTED": null,
1518
+ "PREVIOUS": null,
1519
+ "COLLECTED": null
1520
+ },
1521
+ "CIVCOLL": {
1522
+ "EDITED": null,
1523
+ "FORCED": null,
1524
+ "INPUTED": null,
1525
+ "PREVIOUS": null,
1526
+ "COLLECTED": null
1527
+ },
1528
+ "DALOBIS": {
1529
+ "EDITED": null,
1530
+ "FORCED": null,
1531
+ "INPUTED": null,
1532
+ "PREVIOUS": null,
1533
+ "COLLECTED": null
1534
+ },
1535
+ "DEPNAIS": {
1536
+ "EDITED": [null],
1537
+ "FORCED": [null],
1538
+ "INPUTED": [null],
1539
+ "PREVIOUS": [null],
1540
+ "COLLECTED": [null, null, null, null]
1541
+ },
1542
+ "DSTLOC2": {
1543
+ "EDITED": null,
1544
+ "FORCED": null,
1545
+ "INPUTED": null,
1546
+ "PREVIOUS": null,
1547
+ "COLLECTED": null
1548
+ },
1549
+ "EAMID11": {
1550
+ "EDITED": [null],
1551
+ "FORCED": [null],
1552
+ "INPUTED": [null],
1553
+ "PREVIOUS": [null],
1554
+ "COLLECTED": [null]
1555
+ },
1556
+ "EAMID12": {
1557
+ "EDITED": [null],
1558
+ "FORCED": [null],
1559
+ "INPUTED": [null],
1560
+ "PREVIOUS": [null],
1561
+ "COLLECTED": [null]
1562
+ },
1563
+ "EAMID13": {
1564
+ "EDITED": [null],
1565
+ "FORCED": [null],
1566
+ "INPUTED": [null],
1567
+ "PREVIOUS": [null],
1568
+ "COLLECTED": [null]
1569
+ },
1570
+ "EAMID14": {
1571
+ "EDITED": [null],
1572
+ "FORCED": [null],
1573
+ "INPUTED": [null],
1574
+ "PREVIOUS": [null],
1575
+ "COLLECTED": [null]
1576
+ },
1577
+ "EAMID15": {
1578
+ "EDITED": [null],
1579
+ "FORCED": [null],
1580
+ "INPUTED": [null],
1581
+ "PREVIOUS": [null],
1582
+ "COLLECTED": [null]
1583
+ },
1584
+ "EAMID16": {
1585
+ "EDITED": [null],
1586
+ "FORCED": [null],
1587
+ "INPUTED": [null],
1588
+ "PREVIOUS": [null],
1589
+ "COLLECTED": [null]
1590
+ },
1591
+ "ECOVID2": {
1592
+ "EDITED": [null],
1593
+ "FORCED": [null],
1594
+ "INPUTED": [null],
1595
+ "PREVIOUS": [null],
1596
+ "COLLECTED": [null]
1597
+ },
1598
+ "ERETOUR": {
1599
+ "EDITED": [null],
1600
+ "FORCED": [null],
1601
+ "INPUTED": [null],
1602
+ "PREVIOUS": [null],
1603
+ "COLLECTED": [null]
1604
+ },
1605
+ "HULHUI1": {
1606
+ "EDITED": null,
1607
+ "FORCED": null,
1608
+ "INPUTED": null,
1609
+ "PREVIOUS": null,
1610
+ "COLLECTED": null
1611
+ },
1612
+ "INDCOLL": {
1613
+ "EDITED": null,
1614
+ "FORCED": null,
1615
+ "INPUTED": null,
1616
+ "PREVIOUS": null,
1617
+ "COLLECTED": null
1618
+ },
1619
+ "MARRIVC": {
1620
+ "EDITED": null,
1621
+ "FORCED": null,
1622
+ "INPUTED": null,
1623
+ "PREVIOUS": null,
1624
+ "COLLECTED": null
1625
+ },
1626
+ "NATIO2N": {
1627
+ "EDITED": [null],
1628
+ "FORCED": [null],
1629
+ "INPUTED": [null],
1630
+ "PREVIOUS": [null],
1631
+ "COLLECTED": [null, null, null, null]
1632
+ },
1633
+ "NOMCOLL": {
1634
+ "EDITED": null,
1635
+ "FORCED": null,
1636
+ "INPUTED": null,
1637
+ "PREVIOUS": null,
1638
+ "COLLECTED": null
1639
+ },
1640
+ "RESAUTO": {
1641
+ "EDITED": null,
1642
+ "FORCED": null,
1643
+ "INPUTED": null,
1644
+ "PREVIOUS": null,
1645
+ "COLLECTED": null
1646
+ },
1647
+ "STOCA12": {
1648
+ "EDITED": [null],
1649
+ "FORCED": [null],
1650
+ "INPUTED": [null],
1651
+ "PREVIOUS": [null],
1652
+ "COLLECTED": ["1", "1", "2", "2"]
1653
+ },
1654
+ "TELFIXE": {
1655
+ "EDITED": null,
1656
+ "FORCED": null,
1657
+ "INPUTED": null,
1658
+ "PREVIOUS": null,
1659
+ "COLLECTED": null
1660
+ },
1661
+ "TRAVAIL": {
1662
+ "EDITED": [null],
1663
+ "FORCED": [null],
1664
+ "INPUTED": [null],
1665
+ "PREVIOUS": [null],
1666
+ "COLLECTED": [null, null, "2", "2"]
1667
+ },
1668
+ "VANCIEN": {
1669
+ "EDITED": null,
1670
+ "FORCED": null,
1671
+ "INPUTED": null,
1672
+ "PREVIOUS": null,
1673
+ "COLLECTED": null
1674
+ },
1675
+ "VBILLOG": {
1676
+ "EDITED": null,
1677
+ "FORCED": null,
1678
+ "INPUTED": null,
1679
+ "PREVIOUS": null,
1680
+ "COLLECTED": null
1681
+ },
1682
+ "VMODP11": {
1683
+ "EDITED": null,
1684
+ "FORCED": null,
1685
+ "INPUTED": null,
1686
+ "PREVIOUS": null,
1687
+ "COLLECTED": null
1688
+ },
1689
+ "VMODP12": {
1690
+ "EDITED": null,
1691
+ "FORCED": null,
1692
+ "INPUTED": null,
1693
+ "PREVIOUS": null,
1694
+ "COLLECTED": null
1695
+ },
1696
+ "VMODP13": {
1697
+ "EDITED": null,
1698
+ "FORCED": null,
1699
+ "INPUTED": null,
1700
+ "PREVIOUS": null,
1701
+ "COLLECTED": null
1702
+ },
1703
+ "VMODP14": {
1704
+ "EDITED": null,
1705
+ "FORCED": null,
1706
+ "INPUTED": null,
1707
+ "PREVIOUS": null,
1708
+ "COLLECTED": null
1709
+ },
1710
+ "VMODP21": {
1711
+ "EDITED": null,
1712
+ "FORCED": null,
1713
+ "INPUTED": null,
1714
+ "PREVIOUS": null,
1715
+ "COLLECTED": null
1716
+ },
1717
+ "VMODP22": {
1718
+ "EDITED": null,
1719
+ "FORCED": null,
1720
+ "INPUTED": null,
1721
+ "PREVIOUS": null,
1722
+ "COLLECTED": null
1723
+ },
1724
+ "VMODP23": {
1725
+ "EDITED": null,
1726
+ "FORCED": null,
1727
+ "INPUTED": null,
1728
+ "PREVIOUS": null,
1729
+ "COLLECTED": null
1730
+ },
1731
+ "VRAIS11": {
1732
+ "EDITED": null,
1733
+ "FORCED": null,
1734
+ "INPUTED": null,
1735
+ "PREVIOUS": null,
1736
+ "COLLECTED": null
1737
+ },
1738
+ "VRAIS12": {
1739
+ "EDITED": null,
1740
+ "FORCED": null,
1741
+ "INPUTED": null,
1742
+ "PREVIOUS": null,
1743
+ "COLLECTED": null
1744
+ },
1745
+ "VRAIS13": {
1746
+ "EDITED": null,
1747
+ "FORCED": null,
1748
+ "INPUTED": null,
1749
+ "PREVIOUS": null,
1750
+ "COLLECTED": null
1751
+ },
1752
+ "VRAIS14": {
1753
+ "EDITED": null,
1754
+ "FORCED": null,
1755
+ "INPUTED": null,
1756
+ "PREVIOUS": null,
1757
+ "COLLECTED": null
1758
+ },
1759
+ "VRAIS21": {
1760
+ "EDITED": null,
1761
+ "FORCED": null,
1762
+ "INPUTED": null,
1763
+ "PREVIOUS": null,
1764
+ "COLLECTED": null
1765
+ },
1766
+ "VRAIS22": {
1767
+ "EDITED": null,
1768
+ "FORCED": null,
1769
+ "INPUTED": null,
1770
+ "PREVIOUS": null,
1771
+ "COLLECTED": null
1772
+ },
1773
+ "VRAIS23": {
1774
+ "EDITED": null,
1775
+ "FORCED": null,
1776
+ "INPUTED": null,
1777
+ "PREVIOUS": null,
1778
+ "COLLECTED": null
1779
+ },
1780
+ "VRAIS24": {
1781
+ "EDITED": null,
1782
+ "FORCED": null,
1783
+ "INPUTED": null,
1784
+ "PREVIOUS": null,
1785
+ "COLLECTED": null
1786
+ },
1787
+ "VRAIS25": {
1788
+ "EDITED": null,
1789
+ "FORCED": null,
1790
+ "INPUTED": null,
1791
+ "PREVIOUS": null,
1792
+ "COLLECTED": null
1793
+ },
1794
+ "VRAIS26": {
1795
+ "EDITED": null,
1796
+ "FORCED": null,
1797
+ "INPUTED": null,
1798
+ "PREVIOUS": null,
1799
+ "COLLECTED": null
1800
+ },
1801
+ "VRAIS31": {
1802
+ "EDITED": null,
1803
+ "FORCED": null,
1804
+ "INPUTED": null,
1805
+ "PREVIOUS": null,
1806
+ "COLLECTED": null
1807
+ },
1808
+ "VRAIS32": {
1809
+ "EDITED": null,
1810
+ "FORCED": null,
1811
+ "INPUTED": null,
1812
+ "PREVIOUS": null,
1813
+ "COLLECTED": null
1814
+ },
1815
+ "VRAIS33": {
1816
+ "EDITED": null,
1817
+ "FORCED": null,
1818
+ "INPUTED": null,
1819
+ "PREVIOUS": null,
1820
+ "COLLECTED": null
1821
+ },
1822
+ "VRAIS34": {
1823
+ "EDITED": null,
1824
+ "FORCED": null,
1825
+ "INPUTED": null,
1826
+ "PREVIOUS": null,
1827
+ "COLLECTED": null
1828
+ },
1829
+ "VRAIS35": {
1830
+ "EDITED": null,
1831
+ "FORCED": null,
1832
+ "INPUTED": null,
1833
+ "PREVIOUS": null,
1834
+ "COLLECTED": null
1835
+ },
1836
+ "VRAIS36": {
1837
+ "EDITED": null,
1838
+ "FORCED": null,
1839
+ "INPUTED": null,
1840
+ "PREVIOUS": null,
1841
+ "COLLECTED": null
1842
+ },
1843
+ "VRAIS41": {
1844
+ "EDITED": null,
1845
+ "FORCED": null,
1846
+ "INPUTED": null,
1847
+ "PREVIOUS": null,
1848
+ "COLLECTED": null
1849
+ },
1850
+ "VRAIS42": {
1851
+ "EDITED": null,
1852
+ "FORCED": null,
1853
+ "INPUTED": null,
1854
+ "PREVIOUS": null,
1855
+ "COLLECTED": null
1856
+ },
1857
+ "VRAIS43": {
1858
+ "EDITED": null,
1859
+ "FORCED": null,
1860
+ "INPUTED": null,
1861
+ "PREVIOUS": null,
1862
+ "COLLECTED": null
1863
+ },
1864
+ "VRAIS44": {
1865
+ "EDITED": null,
1866
+ "FORCED": null,
1867
+ "INPUTED": null,
1868
+ "PREVIOUS": null,
1869
+ "COLLECTED": null
1870
+ },
1871
+ "VRAIS45": {
1872
+ "EDITED": null,
1873
+ "FORCED": null,
1874
+ "INPUTED": null,
1875
+ "PREVIOUS": null,
1876
+ "COLLECTED": null
1877
+ },
1878
+ "ADR_COLL": {
1879
+ "EDITED": null,
1880
+ "FORCED": null,
1881
+ "INPUTED": null,
1882
+ "PREVIOUS": null,
1883
+ "COLLECTED": "rue Vincent Auriol"
1884
+ },
1885
+ "CIVCOLL2": {
1886
+ "EDITED": null,
1887
+ "FORCED": null,
1888
+ "INPUTED": null,
1889
+ "PREVIOUS": null,
1890
+ "COLLECTED": null
1891
+ },
1892
+ "DATENAIS": {
1893
+ "EDITED": [null],
1894
+ "FORCED": [null],
1895
+ "INPUTED": [null],
1896
+ "PREVIOUS": [null],
1897
+ "COLLECTED": ["1970-09-15", "1970-01-01", "2003-01-01", "2003-02-01"]
1898
+ },
1899
+ "G_PRENOM": {
1900
+ "EDITED": [null],
1901
+ "FORCED": [null],
1902
+ "INPUTED": [null],
1903
+ "PREVIOUS": [null],
1904
+ "COLLECTED": ["Jean-Marc", "Magali", "Lauriane", "Mathis"]
1905
+ },
1906
+ "HULHUI21": {
1907
+ "EDITED": null,
1908
+ "FORCED": null,
1909
+ "INPUTED": null,
1910
+ "PREVIOUS": null,
1911
+ "COLLECTED": null
1912
+ },
1913
+ "HULHUI22": {
1914
+ "EDITED": null,
1915
+ "FORCED": null,
1916
+ "INPUTED": null,
1917
+ "PREVIOUS": null,
1918
+ "COLLECTED": null
1919
+ },
1920
+ "HULHUI23": {
1921
+ "EDITED": null,
1922
+ "FORCED": null,
1923
+ "INPUTED": null,
1924
+ "PREVIOUS": null,
1925
+ "COLLECTED": null
1926
+ },
1927
+ "INDNVOCC": {
1928
+ "EDITED": null,
1929
+ "FORCED": null,
1930
+ "INPUTED": null,
1931
+ "PREVIOUS": null,
1932
+ "COLLECTED": null
1933
+ },
1934
+ "MAA2AT_Q": {
1935
+ "EDITED": null,
1936
+ "FORCED": null,
1937
+ "INPUTED": null,
1938
+ "PREVIOUS": null,
1939
+ "COLLECTED": null
1940
+ },
1941
+ "NATIO1N1": {
1942
+ "EDITED": [null],
1943
+ "FORCED": [null],
1944
+ "INPUTED": [null],
1945
+ "PREVIOUS": [null],
1946
+ "COLLECTED": [true, true, true, true]
1947
+ },
1948
+ "NATIO1N2": {
1949
+ "EDITED": [null],
1950
+ "FORCED": [null],
1951
+ "INPUTED": [null],
1952
+ "PREVIOUS": [null],
1953
+ "COLLECTED": [null, null, null, null]
1954
+ },
1955
+ "NATIO1N3": {
1956
+ "EDITED": [null],
1957
+ "FORCED": [null],
1958
+ "INPUTED": [null],
1959
+ "PREVIOUS": [null],
1960
+ "COLLECTED": [null, null, null, null]
1961
+ },
1962
+ "NATIO1N4": {
1963
+ "EDITED": [null],
1964
+ "FORCED": [null],
1965
+ "INPUTED": [null],
1966
+ "PREVIOUS": [null],
1967
+ "COLLECTED": [null, null, null, null]
1968
+ },
1969
+ "NOMCOLL2": {
1970
+ "EDITED": null,
1971
+ "FORCED": null,
1972
+ "INPUTED": null,
1973
+ "PREVIOUS": null,
1974
+ "COLLECTED": null
1975
+ },
1976
+ "PAYSNAIS": {
1977
+ "EDITED": [null],
1978
+ "FORCED": [null],
1979
+ "INPUTED": [null],
1980
+ "PREVIOUS": [null],
1981
+ "COLLECTED": [null, null, null, null]
1982
+ },
1983
+ "SDL_SIT1": {
1984
+ "EDITED": [null],
1985
+ "FORCED": [null],
1986
+ "INPUTED": [null],
1987
+ "PREVIOUS": [null],
1988
+ "COLLECTED": [null]
1989
+ },
1990
+ "SDL_SIT2": {
1991
+ "EDITED": [null],
1992
+ "FORCED": [null],
1993
+ "INPUTED": [null],
1994
+ "PREVIOUS": [null],
1995
+ "COLLECTED": [null]
1996
+ },
1997
+ "TELNVOCC": {
1998
+ "EDITED": null,
1999
+ "FORCED": null,
2000
+ "INPUTED": null,
2001
+ "PREVIOUS": null,
2002
+ "COLLECTED": null
2003
+ },
2004
+ "TEMPS1_1": {
2005
+ "EDITED": null,
2006
+ "FORCED": null,
2007
+ "INPUTED": null,
2008
+ "PREVIOUS": null,
2009
+ "COLLECTED": null
2010
+ },
2011
+ "TYPLOGCO": {
2012
+ "EDITED": [null],
2013
+ "FORCED": [null],
2014
+ "INPUTED": [null],
2015
+ "PREVIOUS": [null],
2016
+ "COLLECTED": [null, null, null, null]
2017
+ },
2018
+ "testSTOC": {
2019
+ "EDITED": null,
2020
+ "FORCED": null,
2021
+ "INPUTED": null,
2022
+ "PREVIOUS": null,
2023
+ "COLLECTED": null
2024
+ },
2025
+ "FOYPAGEES": {
2026
+ "EDITED": null,
2027
+ "FORCED": null,
2028
+ "INPUTED": null,
2029
+ "PREVIOUS": null,
2030
+ "COLLECTED": null
2031
+ },
2032
+ "LNAISMERE": {
2033
+ "EDITED": null,
2034
+ "FORCED": null,
2035
+ "INPUTED": null,
2036
+ "PREVIOUS": null,
2037
+ "COLLECTED": null
2038
+ },
2039
+ "LNAISPERE": {
2040
+ "EDITED": null,
2041
+ "FORCED": null,
2042
+ "INPUTED": null,
2043
+ "PREVIOUS": null,
2044
+ "COLLECTED": null
2045
+ },
2046
+ "MAA2ATC_Q": {
2047
+ "EDITED": null,
2048
+ "FORCED": null,
2049
+ "INPUTED": null,
2050
+ "PREVIOUS": null,
2051
+ "COLLECTED": null
2052
+ },
2053
+ "MAILNVOCC": {
2054
+ "EDITED": null,
2055
+ "FORCED": null,
2056
+ "INPUTED": null,
2057
+ "PREVIOUS": null,
2058
+ "COLLECTED": null
2059
+ },
2060
+ "NOMNVOCC1": {
2061
+ "EDITED": null,
2062
+ "FORCED": null,
2063
+ "INPUTED": null,
2064
+ "PREVIOUS": null,
2065
+ "COLLECTED": null
2066
+ },
2067
+ "NOMNVOCC2": {
2068
+ "EDITED": null,
2069
+ "FORCED": null,
2070
+ "INPUTED": null,
2071
+ "PREVIOUS": null,
2072
+ "COLLECTED": null
2073
+ },
2074
+ "NOTELCOLL": {
2075
+ "EDITED": null,
2076
+ "FORCED": null,
2077
+ "INPUTED": null,
2078
+ "PREVIOUS": null,
2079
+ "COLLECTED": null
2080
+ },
2081
+ "SDT2_SIT2": {
2082
+ "EDITED": [null],
2083
+ "FORCED": [null],
2084
+ "INPUTED": [null],
2085
+ "PREVIOUS": [null],
2086
+ "COLLECTED": [null]
2087
+ },
2088
+ "NUMTH_COLL": {
2089
+ "EDITED": null,
2090
+ "FORCED": null,
2091
+ "INPUTED": null,
2092
+ "PREVIOUS": null,
2093
+ "COLLECTED": "1"
2094
+ },
2095
+ "PRENOMCOLL": {
2096
+ "EDITED": null,
2097
+ "FORCED": null,
2098
+ "INPUTED": null,
2099
+ "PREVIOUS": null,
2100
+ "COLLECTED": null
2101
+ },
2102
+ "SDTAD_SIT2": {
2103
+ "EDITED": [null],
2104
+ "FORCED": [null],
2105
+ "INPUTED": [null],
2106
+ "PREVIOUS": [null],
2107
+ "COLLECTED": [null]
2108
+ },
2109
+ "SITUMATRI1": {
2110
+ "EDITED": [null],
2111
+ "FORCED": [null],
2112
+ "INPUTED": [null],
2113
+ "PREVIOUS": [null],
2114
+ "COLLECTED": [true, true, null, null]
2115
+ },
2116
+ "SITUMATRI2": {
2117
+ "EDITED": [null],
2118
+ "FORCED": [null],
2119
+ "INPUTED": [null],
2120
+ "PREVIOUS": [null],
2121
+ "COLLECTED": [null, null, null, null]
2122
+ },
2123
+ "SITUMATRI3": {
2124
+ "EDITED": [null],
2125
+ "FORCED": [null],
2126
+ "INPUTED": [null],
2127
+ "PREVIOUS": [null],
2128
+ "COLLECTED": [null, null, null, null]
2129
+ },
2130
+ "SITUMATRI4": {
2131
+ "EDITED": [null],
2132
+ "FORCED": [null],
2133
+ "INPUTED": [null],
2134
+ "PREVIOUS": [null],
2135
+ "COLLECTED": [null, null, null, null]
2136
+ },
2137
+ "SITUMATRI5": {
2138
+ "EDITED": [null],
2139
+ "FORCED": [null],
2140
+ "INPUTED": [null],
2141
+ "PREVIOUS": [null],
2142
+ "COLLECTED": [null, null, null, null]
2143
+ },
2144
+ "SITUMATRI6": {
2145
+ "EDITED": [null],
2146
+ "FORCED": [null],
2147
+ "INPUTED": [null],
2148
+ "PREVIOUS": [null],
2149
+ "COLLECTED": [null, null, true, true]
2150
+ },
2151
+ "CADRTH_COLL": {
2152
+ "EDITED": null,
2153
+ "FORCED": null,
2154
+ "INPUTED": null,
2155
+ "PREVIOUS": null,
2156
+ "COLLECTED": "1er étage UIA"
2157
+ },
2158
+ "LIBCOM_COLL": {
2159
+ "EDITED": null,
2160
+ "FORCED": null,
2161
+ "INPUTED": null,
2162
+ "PREVIOUS": null,
2163
+ "COLLECTED": "AMIENS"
2164
+ },
2165
+ "NATIONMERE1": {
2166
+ "EDITED": null,
2167
+ "FORCED": null,
2168
+ "INPUTED": null,
2169
+ "PREVIOUS": null,
2170
+ "COLLECTED": null
2171
+ },
2172
+ "NATIONMERE2": {
2173
+ "EDITED": null,
2174
+ "FORCED": null,
2175
+ "INPUTED": null,
2176
+ "PREVIOUS": null,
2177
+ "COLLECTED": null
2178
+ },
2179
+ "NATIONMERE3": {
2180
+ "EDITED": null,
2181
+ "FORCED": null,
2182
+ "INPUTED": null,
2183
+ "PREVIOUS": null,
2184
+ "COLLECTED": null
2185
+ },
2186
+ "NATIONPERE1": {
2187
+ "EDITED": null,
2188
+ "FORCED": null,
2189
+ "INPUTED": null,
2190
+ "PREVIOUS": null,
2191
+ "COLLECTED": null
2192
+ },
2193
+ "NATIONPERE2": {
2194
+ "EDITED": null,
2195
+ "FORCED": null,
2196
+ "INPUTED": null,
2197
+ "PREVIOUS": null,
2198
+ "COLLECTED": null
2199
+ },
2200
+ "NATIONPERE3": {
2201
+ "EDITED": null,
2202
+ "FORCED": null,
2203
+ "INPUTED": null,
2204
+ "PREVIOUS": null,
2205
+ "COLLECTED": null
2206
+ },
2207
+ "PRENOMCOLL2": {
2208
+ "EDITED": null,
2209
+ "FORCED": null,
2210
+ "INPUTED": null,
2211
+ "PREVIOUS": null,
2212
+ "COLLECTED": null
2213
+ },
2214
+ "PAYSNAISMERE": {
2215
+ "EDITED": null,
2216
+ "FORCED": null,
2217
+ "INPUTED": null,
2218
+ "PREVIOUS": null,
2219
+ "COLLECTED": null
2220
+ },
2221
+ "PAYSNAISPERE": {
2222
+ "EDITED": null,
2223
+ "FORCED": null,
2224
+ "INPUTED": null,
2225
+ "PREVIOUS": null,
2226
+ "COLLECTED": null
2227
+ },
2228
+ "PRENOMNVOCC1": {
2229
+ "EDITED": null,
2230
+ "FORCED": null,
2231
+ "INPUTED": null,
2232
+ "PREVIOUS": null,
2233
+ "COLLECTED": null
2234
+ },
2235
+ "PRENOMNVOCC2": {
2236
+ "EDITED": null,
2237
+ "FORCED": null,
2238
+ "INPUTED": null,
2239
+ "PREVIOUS": null,
2240
+ "COLLECTED": null
2241
+ },
2242
+ "COMMUNEPASSEE": {
2243
+ "EDITED": null,
2244
+ "FORCED": null,
2245
+ "INPUTED": null,
2246
+ "PREVIOUS": null,
2247
+ "COLLECTED": null
2248
+ },
2249
+ "CODEPOST1_COLL": {
2250
+ "EDITED": null,
2251
+ "FORCED": null,
2252
+ "INPUTED": null,
2253
+ "PREVIOUS": null,
2254
+ "COLLECTED": "80000"
2255
+ },
2256
+ "testfiltreHEB1": {
2257
+ "EDITED": [null],
2258
+ "FORCED": [null],
2259
+ "INPUTED": [null],
2260
+ "PREVIOUS": [null],
2261
+ "COLLECTED": [null]
2262
+ },
2263
+ "testfiltreHEB2": {
2264
+ "EDITED": [null],
2265
+ "FORCED": [null],
2266
+ "INPUTED": [null],
2267
+ "PREVIOUS": [null],
2268
+ "COLLECTED": [null, null, null, null]
2269
+ }
2270
+ },
2271
+ "CALCULATED": {
2272
+ "HC": 0,
2273
+ "AGE": [51, 51, 18, 18],
2274
+ "NHAB": 4,
2275
+ "STOC": "1",
2276
+ "STOCA": ["1", "1", "2", "2"],
2277
+ "STOCC": ["1", "1", "1", "1"],
2278
+ "nLIEN": ["9", "1", "3", "3"],
2279
+ "EMPLOI": ["1", "1", "0", "0"],
2280
+ "LIB_SI": ["s il", "si elle", "si elle", "s il"],
2281
+ "MAA1AT": "",
2282
+ "MAA2AT": "",
2283
+ "MAA3AT": "",
2284
+ "PRENOM": ["Jean-Marc", "Magali", "Lauriane", "Mathis"],
2285
+ "STOC_i": ["1", "1", "1", "1"],
2286
+ "TEXT_E": " ",
2287
+ "libHSP": "vos pièces",
2288
+ "libHST": " ",
2289
+ "libHUT": "Ne pas tenir compte des pièces dédiées au télétravail.",
2290
+ "libKAO": "",
2291
+ "libKBA": "",
2292
+ "libKJA": "Avez-vous",
2293
+ "libOIH": "cette personne a-t-elle",
2294
+ "libSDT": [
2295
+ "ces situations",
2296
+ "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\"",
2297
+ "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\"",
2298
+ "if (isnull(SDN1)) then \"ces situations\" else if (SDN1=\"1\") then \"cette situation\" else \"ces situations\""
2299
+ ],
2300
+ "nblien": "01133",
2301
+ "ADRESSE": "29 AVENUE CHARLES DE GAULLE 75017 PARIS",
2302
+ "ANNEENQ": "2021",
2303
+ "CTR_LOG": [
2304
+ "Vous ne pouvez pas avoir deux résidences principales.",
2305
+ "Magali ne peut pas avoir deux résidences principales.",
2306
+ "Lauriane ne peut pas avoir deux résidences principales.",
2307
+ "Mathis ne peut pas avoir deux résidences principales."
2308
+ ],
2309
+ "INDconj": "1",
2310
+ "LIB_FEM": ["", "e", "e", ""],
2311
+ "MAA2ATC": "",
2312
+ "MOISENQ": "10",
2313
+ "NOMOCC1": "MONSIEUR JEAN-MARC MIERLOT",
2314
+ "NOMOCC2": "null null null",
2315
+ "SEXEREF": "1",
2316
+ "liHPHc2": "",
2317
+ "libHPHa": "",
2318
+ "libHPHc": "",
2319
+ "libHPHp": "",
2320
+ "libHSI1": "ces pièces annexes réservées",
2321
+ "libHSI2": "ces pièces annexes réservées",
2322
+ "libHSTa": "",
2323
+ "libHSTc": "",
2324
+ "libHSTp": "",
2325
+ "libHTLC": "individuel",
2326
+ "libKBA1": "",
2327
+ "libKSMI": " et de la véranda",
2328
+ "libMAA3": "votre arrivée",
2329
+ "libOIHB": "ou votre conjoint",
2330
+ "libVFFH": "",
2331
+ "libVFLA": "L'un de ces logements maintenant vendus",
2332
+ "libVOUS": ["Vous", "Magali", "Lauriane", "Mathis"],
2333
+ "persXRP": [0, 0, 0, 0],
2334
+ "persmaj": [1, 1, 1, 1],
2335
+ "ADRCOLLC": "1 rue Vincent Auriol 1er étage UIA 80000 AMIENS",
2336
+ "LIB_FEM2": ["er", "ère", "ère", "er"],
2337
+ "LIB_VEUF": [
2338
+ "Veuf, conjoint(e) décédé(e)",
2339
+ "Veuve, conjoint(e) décédé(e)",
2340
+ "Veuve, conjoint(e) décédé(e)",
2341
+ "Veuf, conjoint(e) décédé(e)"
2342
+ ],
2343
+ "NOMCOLLC": "MONSIEUR JEAN-MARC MIERLOT, null null null",
2344
+ "libCHGNC": "MONSIEUR JEAN-MARC MIERLOT",
2345
+ "libENVS1": "pour transmettre votre questionnaire à l'Insee.",
2346
+ "libFINS1": "Vous êtes arrivé(e) à la fin de ce questionnaire. Nous vous remercions de votre participation.",
2347
+ "libGARDE": [
2348
+ "Êtes-vous",
2349
+ "Magali est-elle",
2350
+ "Lauriane est-elle",
2351
+ "Mathis est-il"
2352
+ ],
2353
+ "libHTLC2": "la propriété",
2354
+ "libIAATC": "de la maison",
2355
+ "libKSJPI": "",
2356
+ "libKVELO": "l'immeuble",
2357
+ "libSANTE": ", le lieu et la nationalité de naissance de vos parents",
2358
+ "libSTOC1": "",
2359
+ "persconj": [0, 1, 0, 0],
2360
+ "LIB_SUJET": ["il", "elle", "elle", "il"],
2361
+ "PRENOMREF": "Jean-Marc",
2362
+ "libFINS12": "Vous serez contacté(e) à nouveau dans quelques semaines pour participer à la deuxième partie de l’enquête, consacrée aux coûts du logement.",
2363
+ "libHSTmoy": null,
2364
+ "libPCSACT": [
2365
+ "votre catégorie de profession",
2366
+ "la catégorie de profession de Magali",
2367
+ "la catégorie de profession de Lauriane",
2368
+ "la catégorie de profession de Mathis"
2369
+ ],
2370
+ "libSTOCA3": [
2371
+ "êtes-vous",
2372
+ "Magali est-elle",
2373
+ "Lauriane est-elle",
2374
+ "Mathis est-il"
2375
+ ],
2376
+ "libSTOCB1": "locataire ou colocataire",
2377
+ "nbpersXRP": 0,
2378
+ "nbpersmaj": 4,
2379
+ "perstelet": [1, 0, 0, 0],
2380
+ "testSTOCA": ["1", "1", "1", "1"],
2381
+ "LIB_ENFANT": [
2382
+ "Votre fils, votre beau-fils",
2383
+ "Votre fille, votre belle-fille",
2384
+ "Votre fille, votre belle-fille",
2385
+ "Votre fils, votre beau-fils"
2386
+ ],
2387
+ "LIB_PARENT": [
2388
+ "Votre père, votre beau-père",
2389
+ "Votre mère, votre belle-mère",
2390
+ "Votre mère, votre belle-mère",
2391
+ "Votre père, votre beau-père"
2392
+ ],
2393
+ "LIB_PRONOM": ["lui", "elle", "elle", "lui"],
2394
+ "PRENOMVIDE": "PRÉNOM",
2395
+ "filtre_HEB": [
2396
+ "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2397
+ "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2398
+ "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2399
+ "if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0"
2400
+ ],
2401
+ "filtre_SIT": "1",
2402
+ "filtre_XRP": "0",
2403
+ "libHSTmoy2": null,
2404
+ "libMOISENQ": "Octobre",
2405
+ "nbpersconj": 1,
2406
+ "persparent": [0, 0, 0, 0],
2407
+ "persplus25": [1, 1, 0, 0],
2408
+ "iDEPENDANCE": null,
2409
+ "libVBILLOG1": "logement vendu",
2410
+ "libVBILLOG2": "logement acheté",
2411
+ "nbperstelet": 1,
2412
+ "AGEMILLESIME": [51, 51, 18, 18],
2413
+ "LIB_GDPARENT": [
2414
+ "Votre grand-père, votre beau-grand-père",
2415
+ "Votre grand-mère, votre belle-grand-mère",
2416
+ "Votre grand-mère, votre belle-grand-mère",
2417
+ "Votre grand-père, votre beau-grand-père"
2418
+ ],
2419
+ "LIB_PTENFANT": [
2420
+ "Votre petit-fils, votre beau-petit-fils",
2421
+ "Votre petite-fille, votre belle-petite-fille",
2422
+ "Votre petite-fille, votre belle-petite-fille",
2423
+ "Votre petit-fils, votre beau-petit-fils"
2424
+ ],
2425
+ "filtre_dest2": "0",
2426
+ "libACTDIPAUT": [
2427
+ "Votre situation",
2428
+ "Situation de Magali",
2429
+ "Situation de Lauriane",
2430
+ "Situation de Mathis"
2431
+ ],
2432
+ "nbpersparent": 0,
2433
+ "persplus18TR": ["0", "0", "0", "0"],
2434
+ "persplus25TR": ["0", "0", "0", "0"],
2435
+ "ANNEENQmoins1": 2020,
2436
+ "ANNEENQmoins4": 2017,
2437
+ "ANNEENQmoins8": 2013,
2438
+ "nb_filtre_HEB": "0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0if (PRENOM<>PRENOMREF and persmaj=1 and STOCA=\"2\" and (STOCB1<>\"1\" or isnull(STOCB1)) and (isnull(LIEN) or (LIEN<>\"1\" and LIEN<>\"2\" and LIEN<>\"3\" and LIEN<>\"4\" and LIEN<>\"5\")) and (isnull(SITUA) or SITUA<>\"5\") and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\")) then 1 else 0",
2439
+ "persplus15AGE": ["1", "1", "1", "1"],
2440
+ "persplus18AGE": ["1", "1", "1", "1"],
2441
+ "persplus25AGE": ["1", "1", "0", "0"],
2442
+ "ANNEENQmoins12": 2009,
2443
+ "libINTROPRENOM": "En commençant par vous, indiquez les prénoms des habitants du logement.",
2444
+ "libINTROPRENOM2": "(Si des personnes portent le même prénom, ajoutez un chiffre pour les distinguer).",
2445
+ "test_libMOISENQ": "pas août",
2446
+ "filtre_HebEnfant": [
2447
+ "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2448
+ "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2449
+ "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2450
+ "if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0"
2451
+ ],
2452
+ "filtre_autrepers": "1",
2453
+ "FILTER_RESULT_DAG": null,
2454
+ "FILTER_RESULT_DST": null,
2455
+ "FILTER_RESULT_DTA": null,
2456
+ "FILTER_RESULT_DTL": null,
2457
+ "FILTER_RESULT_HPA": false,
2458
+ "FILTER_RESULT_HPH": true,
2459
+ "FILTER_RESULT_HPP": false,
2460
+ "FILTER_RESULT_HSP": false,
2461
+ "FILTER_RESULT_HST": true,
2462
+ "FILTER_RESULT_HUA": true,
2463
+ "FILTER_RESULT_HUP": true,
2464
+ "FILTER_RESULT_HUT": true,
2465
+ "FILTER_RESULT_IAS": null,
2466
+ "FILTER_RESULT_IEL": null,
2467
+ "FILTER_RESULT_IMI": true,
2468
+ "FILTER_RESULT_KBA": true,
2469
+ "FILTER_RESULT_KBD": true,
2470
+ "FILTER_RESULT_KCA": true,
2471
+ "FILTER_RESULT_KGA": true,
2472
+ "FILTER_RESULT_KJA": true,
2473
+ "FILTER_RESULT_KJC": false,
2474
+ "FILTER_RESULT_KSB": false,
2475
+ "FILTER_RESULT_KSE": null,
2476
+ "FILTER_RESULT_KSV": false,
2477
+ "FILTER_RESULT_KVE": true,
2478
+ "FILTER_RESULT_ODF": true,
2479
+ "FILTER_RESULT_ODL": true,
2480
+ "FILTER_RESULT_OIH": true,
2481
+ "FILTER_RESULT_OLA": true,
2482
+ "FILTER_RESULT_OQA": true,
2483
+ "FILTER_RESULT_VIN": true,
2484
+ "FILTER_RESULT_VLR": false,
2485
+ "FILTER_RESULT_VND": false,
2486
+ "FILTER_RESULT_VOP": true,
2487
+ "FILTER_RESULT_VPI": null,
2488
+ "FILTER_RESULT_VSY": null,
2489
+ "FUTURANNIVERSAIRE": [false, false, false, false],
2490
+ "FILTER_RESULT_CADR": true,
2491
+ "FILTER_RESULT_DALO": null,
2492
+ "FILTER_RESULT_DDAT": null,
2493
+ "FILTER_RESULT_DDEM": null,
2494
+ "FILTER_RESULT_DORM": [false, false, false, false],
2495
+ "FILTER_RESULT_DSTL": false,
2496
+ "FILTER_RESULT_DSTP": false,
2497
+ "FILTER_RESULT_HAUT": true,
2498
+ "FILTER_RESULT_HCHA": null,
2499
+ "FILTER_RESULT_HPI1": false,
2500
+ "FILTER_RESULT_HPI2": false,
2501
+ "FILTER_RESULT_HSI1": false,
2502
+ "FILTER_RESULT_HSI2": false,
2503
+ "FILTER_RESULT_ICOI": true,
2504
+ "FILTER_RESULT_KAO1": true,
2505
+ "FILTER_RESULT_KCU1": true,
2506
+ "FILTER_RESULT_KCU2": false,
2507
+ "FILTER_RESULT_KGA1": true,
2508
+ "FILTER_RESULT_KGRA": true,
2509
+ "FILTER_RESULT_KSJC": false,
2510
+ "FILTER_RESULT_KSMI": null,
2511
+ "FILTER_RESULT_KSOA": null,
2512
+ "FILTER_RESULT_KSV1": false,
2513
+ "FILTER_RESULT_KWC1": true,
2514
+ "FILTER_RESULT_LIEN": [false, true, true, true],
2515
+ "FILTER_RESULT_MAA3": true,
2516
+ "FILTER_RESULT_OIHB": false,
2517
+ "FILTER_RESULT_OIHC": false,
2518
+ "FILTER_RESULT_OIHD": false,
2519
+ "FILTER_RESULT_OIHE": false,
2520
+ "FILTER_RESULT_OIHF": false,
2521
+ "FILTER_RESULT_OLAD": true,
2522
+ "FILTER_RESULT_OQAD": true,
2523
+ "FILTER_RESULT_SDL1": [true],
2524
+ "FILTER_RESULT_SDL2": [false],
2525
+ "FILTER_RESULT_SDL4": [false],
2526
+ "FILTER_RESULT_SDN1": [null],
2527
+ "FILTER_RESULT_SDT1": [false],
2528
+ "FILTER_RESULT_SDT2": [null],
2529
+ "FILTER_RESULT_SEXE": [true, true, true, true],
2530
+ "FILTER_RESULT_UWEB": true,
2531
+ "FILTER_RESULT_VAID": null,
2532
+ "FILTER_RESULT_VDD1": false,
2533
+ "FILTER_RESULT_VDSY": false,
2534
+ "FILTER_RESULT_VFFH": null,
2535
+ "FILTER_RESULT_VFLA": false,
2536
+ "FILTER_RESULT_VLA1": true,
2537
+ "FILTER_RESULT_VLRD": false,
2538
+ "FILTER_RESULT_VPID": true,
2539
+ "FILTER_RESULT_VPRA": false,
2540
+ "FILTER_RESULT_VSO1": null,
2541
+ "FILTER_RESULT_VTL1": null,
2542
+ "FILTER_RESULT_CHGNC": true,
2543
+ "FILTER_RESULT_DAGEO": false,
2544
+ "FILTER_RESULT_DAGRL": false,
2545
+ "FILTER_RESULT_EAMIA": [false],
2546
+ "FILTER_RESULT_EAMIH": [false],
2547
+ "FILTER_RESULT_EAMIK": [false],
2548
+ "FILTER_RESULT_EAMIL": [false],
2549
+ "FILTER_RESULT_EPAS1": [false],
2550
+ "FILTER_RESULT_EPASB": [false],
2551
+ "FILTER_RESULT_EPASC": [false],
2552
+ "FILTER_RESULT_EPROJ": [false],
2553
+ "FILTER_RESULT_ERET1": [false],
2554
+ "FILTER_RESULT_GARDE": [false, false, false, false],
2555
+ "FILTER_RESULT_HPEUP": true,
2556
+ "FILTER_RESULT_HTLC1": true,
2557
+ "FILTER_RESULT_IAATC": true,
2558
+ "FILTER_RESULT_KDLK1": null,
2559
+ "FILTER_RESULT_KDLK2": null,
2560
+ "FILTER_RESULT_KGRAA": true,
2561
+ "FILTER_RESULT_KPISC": true,
2562
+ "FILTER_RESULT_KSJPC": false,
2563
+ "FILTER_RESULT_KSJPI": null,
2564
+ "FILTER_RESULT_KVELO": false,
2565
+ "FILTER_RESULT_KWCID": false,
2566
+ "FILTER_RESULT_LIMT1": true,
2567
+ "FILTER_RESULT_LIMT2": [false],
2568
+ "FILTER_RESULT_LNAIS": [true, true, true, true],
2569
+ "FILTER_RESULT_LOGCO": [false, false, false, false],
2570
+ "FILTER_RESULT_MAA2A": true,
2571
+ "FILTER_RESULT_MAA2M": false,
2572
+ "FILTER_RESULT_MAA3A": false,
2573
+ "FILTER_RESULT_MAA3M": false,
2574
+ "FILTER_RESULT_MCHR1": true,
2575
+ "FILTER_RESULT_MCHR2": [false],
2576
+ "FILTER_RESULT_NBHAB": true,
2577
+ "FILTER_RESULT_OLAR1": true,
2578
+ "FILTER_RESULT_OLAR2": true,
2579
+ "FILTER_RESULT_OLAR3": true,
2580
+ "FILTER_RESULT_SDTAD": [false],
2581
+ "FILTER_RESULT_SITUA": [true, true, true, true],
2582
+ "FILTER_RESULT_STOC1": true,
2583
+ "FILTER_RESULT_STOC2": false,
2584
+ "FILTER_RESULT_STOCP": false,
2585
+ "FILTER_RESULT_TELET": [true, true, false, false],
2586
+ "FILTER_RESULT_TRAGE": [false, false, false, false],
2587
+ "FILTER_RESULT_UNLOG": [true, true, true, true],
2588
+ "FILTER_RESULT_VLAB1": false,
2589
+ "FILTER_RESULT_VMODM": true,
2590
+ "FILTER_RESULT_VSURF": null,
2591
+ "FILTER_RESULT_VTLD1": true,
2592
+ "nb_filtre_HebEnfant": "0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0if (persplus25=1 and (STOCA=\"2\" and not(isnull(STOCA))) and (isnull(STOCB1) or STOCB1<>\"1\") and ((LIEN=\"3\" or LIEN=\"5\") and not(isnull(LIEN)) ) and (isnull(LOGENQ) or LOGENQ<>\"5\") and (isnull(LOGAUT) or LOGAUT<>\"1\") and (isnull(DURLOG) or DURLOG<>\"3\") ) then 1 else 0",
2593
+ "FILTER_RESULT_COUPLE": [true, true, true, true],
2594
+ "FILTER_RESULT_DAGEO1": false,
2595
+ "FILTER_RESULT_DAGEO2": false,
2596
+ "FILTER_RESULT_DAGEO3": false,
2597
+ "FILTER_RESULT_DEPART": false,
2598
+ "FILTER_RESULT_DURLOG": [false, false, false, false],
2599
+ "FILTER_RESULT_EAMID1": [false],
2600
+ "FILTER_RESULT_ECOVID": [false],
2601
+ "FILTER_RESULT_EPROJB": [false],
2602
+ "FILTER_RESULT_EPROJC": [false],
2603
+ "FILTER_RESULT_EPROJD": [false],
2604
+ "FILTER_RESULT_GRDIPA": [true, true, true, true],
2605
+ "FILTER_RESULT_GRDIPB": [false, false, false, false],
2606
+ "FILTER_RESULT_GRDIPC": [true, false, false, false],
2607
+ "FILTER_RESULT_IAATCD": false,
2608
+ "FILTER_RESULT_KSJPIT": null,
2609
+ "FILTER_RESULT_LOGAUT": [false, false, false, false],
2610
+ "FILTER_RESULT_LOGENQ": [false, false, false, false],
2611
+ "FILTER_RESULT_MAA2AC": false,
2612
+ "FILTER_RESULT_MAA2MC": false,
2613
+ "FILTER_RESULT_ODFRA3": false,
2614
+ "FILTER_RESULT_SANTE1": true,
2615
+ "FILTER_RESULT_SANTE2": [false],
2616
+ "FILTER_RESULT_STOCA3": [false, false, false, false],
2617
+ "FILTER_RESULT_STOCA4": [false, false, false, false],
2618
+ "FILTER_RESULT_STOCB1": [false, false, false, false],
2619
+ "FILTER_RESULT_TELMOB": true,
2620
+ "FILTER_RESULT_VACHAL": true,
2621
+ "FILTER_RESULT_VCRCOM": false,
2622
+ "FILTER_RESULT_VLOYER": null,
2623
+ "FILTER_RESULT_VMODP1": true,
2624
+ "FILTER_RESULT_VMODP2": true,
2625
+ "FILTER_RESULT_VRAIS1": null,
2626
+ "FILTER_RESULT_VRAIS2": null,
2627
+ "FILTER_RESULT_VRAIS3": null,
2628
+ "FILTER_RESULT_VRAIS4": null,
2629
+ "FILTER_RESULT_VSURFD": true,
2630
+ "FILTER_RESULT_VVENDL": true,
2631
+ "FILTER_RESULT_CIVCOLL": false,
2632
+ "FILTER_RESULT_DALOBIS": false,
2633
+ "FILTER_RESULT_DEPNAIS": [true, true, true, true],
2634
+ "FILTER_RESULT_DSTLOC2": false,
2635
+ "FILTER_RESULT_ECOVID2": [false],
2636
+ "FILTER_RESULT_ERETOUR": [false],
2637
+ "FILTER_RESULT_HULHUI1": false,
2638
+ "FILTER_RESULT_HULHUI2": false,
2639
+ "FILTER_RESULT_INDCOLL": false,
2640
+ "FILTER_RESULT_MARRIVC": true,
2641
+ "FILTER_RESULT_NATIO1N": [true, true, true, true],
2642
+ "FILTER_RESULT_NATIO2N": [null, null, null, null],
2643
+ "FILTER_RESULT_NOMCOLL": false,
2644
+ "FILTER_RESULT_RESAUTO": false,
2645
+ "FILTER_RESULT_STOCA12": [true, true, true, true],
2646
+ "FILTER_RESULT_TELFIXE": true,
2647
+ "FILTER_RESULT_TRAVAIL": [false, false, true, true],
2648
+ "FILTER_RESULT_VANCIEN": null,
2649
+ "FILTER_RESULT_VBILLOG": null,
2650
+ "FILTER_RESULT_ADR_COLL": true,
2651
+ "FILTER_RESULT_CIVCOLL2": false,
2652
+ "FILTER_RESULT_DATENAIS": [true, true, true, true],
2653
+ "FILTER_RESULT_G_PRENOM": [true, true, true, true],
2654
+ "FILTER_RESULT_INDNVOCC": false,
2655
+ "FILTER_RESULT_MAA2AT_Q": true,
2656
+ "FILTER_RESULT_NOMCOLL2": false,
2657
+ "FILTER_RESULT_PAYSNAIS": [false, false, false, false],
2658
+ "FILTER_RESULT_SDL_SIT1": [null],
2659
+ "FILTER_RESULT_SDL_SIT2": [null],
2660
+ "FILTER_RESULT_TELNVOCC": false,
2661
+ "FILTER_RESULT_TEMPS1_1": true,
2662
+ "FILTER_RESULT_TYPLOGCO": [false, false, false, false],
2663
+ "FILTER_RESULT_testSTOC": true,
2664
+ "FILTER_RESULT_FOYPAGEES": false,
2665
+ "FILTER_RESULT_LNAISMERE": true,
2666
+ "FILTER_RESULT_LNAISPERE": true,
2667
+ "FILTER_RESULT_MAA2ATC_Q": false,
2668
+ "FILTER_RESULT_MAILNVOCC": false,
2669
+ "FILTER_RESULT_NOMNVOCC1": false,
2670
+ "FILTER_RESULT_NOMNVOCC2": false,
2671
+ "FILTER_RESULT_NOTELCOLL": true,
2672
+ "FILTER_RESULT_SDT2_SIT2": [null],
2673
+ "FILTER_RESULT_SITUMATRI": [true, true, true, true],
2674
+ "FILTER_RESULT_NATIONMERE": true,
2675
+ "FILTER_RESULT_NATIONPERE": true,
2676
+ "FILTER_RESULT_NUMTH_COLL": true,
2677
+ "FILTER_RESULT_PRENOMCOLL": false,
2678
+ "FILTER_RESULT_SDTAD_SIT2": [null],
2679
+ "FILTER_RESULT_CADRTH_COLL": true,
2680
+ "FILTER_RESULT_LIBCOM_COLL": true,
2681
+ "FILTER_RESULT_PRENOMCOLL2": false,
2682
+ "FILTER_RESULT_PAYSNAISMERE": false,
2683
+ "FILTER_RESULT_PAYSNAISPERE": false,
2684
+ "FILTER_RESULT_PRENOMNVOCC1": false,
2685
+ "FILTER_RESULT_PRENOMNVOCC2": false,
2686
+ "FILTER_RESULT_COMMUNEPASSEE": false,
2687
+ "FILTER_RESULT_CODEPOST1_COLL": true,
2688
+ "FILTER_RESULT_testfiltreHEB1": [false],
2689
+ "FILTER_RESULT_testfiltreHEB2": [true, true, true, true]
2690
+ }
2691
+ }