richie 3.1.3.dev11__py2.py3-none-any.whl → 3.1.3.dev12__py2.py3-none-any.whl

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.

Potentially problematic release.


This version of richie might be problematic. Click here for more details.

Files changed (1873) hide show
  1. frontend/js/api/joanie.ts +8 -8
  2. frontend/js/components/ContractFrame/OrganizationContractFrame.spec.tsx +11 -20
  3. frontend/js/components/ContractFrame/OrganizationContractFrame.tsx +4 -4
  4. frontend/js/components/CourseGlimpse/utils.ts +22 -35
  5. frontend/js/components/CourseGlimpseList/utils.ts +2 -2
  6. frontend/js/components/PurchaseButton/index.tsx +3 -3
  7. frontend/js/components/SaleTunnel/GenericSaleTunnel.tsx +3 -10
  8. frontend/js/components/SaleTunnel/SaleTunnelInformation/index.tsx +2 -2
  9. frontend/js/components/SaleTunnel/index.full-process.spec.tsx +3 -3
  10. frontend/js/components/SaleTunnel/index.spec.tsx +5 -5
  11. frontend/js/components/SaleTunnel/index.tsx +2 -2
  12. frontend/js/components/TeacherDashboardCourseList/index.spec.tsx +3 -3
  13. frontend/js/components/TeacherDashboardCourseList/index.tsx +2 -2
  14. frontend/js/hooks/useContractArchive/index.ts +3 -3
  15. frontend/js/hooks/useCourseProductUnion/index.spec.tsx +16 -18
  16. frontend/js/hooks/useCourseProductUnion/index.ts +7 -7
  17. frontend/js/hooks/useCourseProducts.ts +4 -8
  18. frontend/js/hooks/useDefaultOrganizationId/index.tsx +4 -7
  19. frontend/js/hooks/useOffer/index.ts +32 -0
  20. frontend/js/hooks/useTeacherCoursesSearch/index.tsx +4 -4
  21. frontend/js/hooks/useTeacherPendingContractsCount/index.ts +4 -4
  22. frontend/js/pages/DashboardCourses/index.spec.tsx +14 -17
  23. frontend/js/pages/TeacherDashboardContractsLayout/TeacherDashboardContracts/index.spec.tsx +8 -14
  24. frontend/js/pages/TeacherDashboardContractsLayout/TeacherDashboardContracts/index.tsx +4 -12
  25. frontend/js/pages/TeacherDashboardContractsLayout/components/BulkDownloadContractButton/index.spec.tsx +11 -11
  26. frontend/js/pages/TeacherDashboardContractsLayout/components/BulkDownloadContractButton/index.timer.spec.tsx +10 -13
  27. frontend/js/pages/TeacherDashboardContractsLayout/components/BulkDownloadContractButton/index.tsx +4 -4
  28. frontend/js/pages/TeacherDashboardContractsLayout/components/ContractActionsBar/index.spec.tsx +20 -28
  29. frontend/js/pages/TeacherDashboardContractsLayout/components/ContractActionsBar/index.tsx +8 -11
  30. frontend/js/pages/TeacherDashboardContractsLayout/components/SignOrganizationContractButton/index.spec.tsx +6 -6
  31. frontend/js/pages/TeacherDashboardContractsLayout/components/SignOrganizationContractButton/index.tsx +4 -4
  32. frontend/js/pages/TeacherDashboardContractsLayout/hooks/useCheckContractArchiveExists/index.spec.tsx +7 -7
  33. frontend/js/pages/TeacherDashboardContractsLayout/hooks/useCheckContractArchiveExists/index.tsx +5 -5
  34. frontend/js/pages/TeacherDashboardContractsLayout/hooks/useDownloadContractArchive/contractArchiveLocalStorage.spec.ts +21 -28
  35. frontend/js/pages/TeacherDashboardContractsLayout/hooks/useDownloadContractArchive/contractArchiveLocalStorage.ts +13 -23
  36. frontend/js/pages/TeacherDashboardContractsLayout/hooks/useDownloadContractArchive/index.spec.tsx +11 -13
  37. frontend/js/pages/TeacherDashboardContractsLayout/hooks/useDownloadContractArchive/index.tsx +6 -6
  38. frontend/js/pages/TeacherDashboardContractsLayout/hooks/useHasContractToDownload/index.tsx +3 -6
  39. frontend/js/pages/TeacherDashboardContractsLayout/hooks/useTeacherContractFilters/index.spec.tsx +16 -16
  40. frontend/js/pages/TeacherDashboardContractsLayout/hooks/useTeacherContractFilters/index.tsx +4 -4
  41. frontend/js/pages/TeacherDashboardContractsLayout/hooks/useTeacherContractsToSign.tsx +4 -7
  42. frontend/js/pages/TeacherDashboardCourseLearnersLayout/hooks/useCourseLearnersFilters/index.spec.tsx +21 -21
  43. frontend/js/pages/TeacherDashboardCourseLearnersLayout/hooks/useCourseLearnersFilters/index.ts +5 -10
  44. frontend/js/pages/TeacherDashboardCourseLearnersLayout/index.spec.tsx +61 -79
  45. frontend/js/pages/TeacherDashboardCourseLearnersLayout/index.tsx +1 -1
  46. frontend/js/pages/TeacherDashboardCoursesLoader/index.spec.tsx +11 -11
  47. frontend/js/pages/TeacherDashboardOrganizationCourseLoader/index.spec.tsx +11 -11
  48. frontend/js/pages/TeacherDashboardTraining/TeacherDashboardTrainingLoader.tsx +7 -7
  49. frontend/js/pages/TeacherDashboardTraining/index.spec.tsx +25 -33
  50. frontend/js/pages/TeacherDashboardTraining/index.tsx +12 -20
  51. frontend/js/types/Joanie.ts +17 -19
  52. frontend/js/utils/test/factories/joanie.ts +3 -3
  53. frontend/js/utils/test/mockCourseProductWithOrder.ts +4 -4
  54. frontend/js/widgets/Dashboard/components/DashboardItem/Enrollment/DashboardItemEnrollment.tsx +1 -1
  55. frontend/js/widgets/Dashboard/components/DashboardItem/Enrollment/ProductCertificateFooter/index.spec.tsx +1 -1
  56. frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrder.tsx +3 -3
  57. frontend/js/widgets/Dashboard/components/DashboardItem/Order/DashboardItemOrderContract.useUnionResource.cache.spec.tsx +1 -1
  58. frontend/js/widgets/Dashboard/components/DashboardItem/Order/Installment/index.tsx +4 -4
  59. frontend/js/widgets/Dashboard/components/DashboardItem/stories.mock.ts +1 -1
  60. frontend/js/widgets/Dashboard/components/DashboardSidebar/components/ContractNavLink/index.spec.tsx +23 -28
  61. frontend/js/widgets/Dashboard/components/DashboardSidebar/components/ContractNavLink/index.tsx +4 -8
  62. frontend/js/widgets/Dashboard/components/TeacherDashboardCourseSidebar/index.spec.tsx +17 -27
  63. frontend/js/widgets/Dashboard/components/TeacherDashboardCourseSidebar/index.tsx +16 -25
  64. frontend/js/widgets/Dashboard/components/TeacherDashboardCourseSidebar/utils.ts +4 -4
  65. frontend/js/widgets/Dashboard/components/TeacherDashboardOrganizationSidebar/index.tsx +3 -7
  66. frontend/js/widgets/Dashboard/utils/teacherDashboardPaths.tsx +4 -4
  67. frontend/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/CourseProductItemFooter/index.tsx +9 -13
  68. frontend/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/index.spec.tsx +63 -87
  69. frontend/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/index.stories.tsx +2 -2
  70. frontend/js/widgets/SyllabusCourseRunsList/components/CourseProductItem/index.tsx +20 -34
  71. frontend/js/widgets/SyllabusCourseRunsList/index.spec.tsx +8 -8
  72. richie/static/richie/js/build/10146.d8b8d0db6c2a36789372.index.js +2 -0
  73. richie/static/richie/js/build/10301.d8b8d0db6c2a36789372.index.js +2 -0
  74. richie/static/richie/js/build/10451.d8b8d0db6c2a36789372.index.js +2 -0
  75. richie/static/richie/js/build/10581.d8b8d0db6c2a36789372.index.js +2 -0
  76. richie/static/richie/js/build/10677.d8b8d0db6c2a36789372.index.js +2 -0
  77. richie/static/richie/js/build/10760.d8b8d0db6c2a36789372.index.js +2 -0
  78. richie/static/richie/js/build/10785.d8b8d0db6c2a36789372.index.js +2 -0
  79. richie/static/richie/js/build/1084.d8b8d0db6c2a36789372.index.js +2 -0
  80. richie/static/richie/js/build/11105.d8b8d0db6c2a36789372.index.js +2 -0
  81. richie/static/richie/js/build/11164.d8b8d0db6c2a36789372.index.js +2 -0
  82. richie/static/richie/js/build/11224.d8b8d0db6c2a36789372.index.js +2 -0
  83. richie/static/richie/js/build/11355.d8b8d0db6c2a36789372.index.js +2 -0
  84. richie/static/richie/js/build/11601.d8b8d0db6c2a36789372.index.js +2 -0
  85. richie/static/richie/js/build/11756.d8b8d0db6c2a36789372.index.js +2 -0
  86. richie/static/richie/js/build/12011.d8b8d0db6c2a36789372.index.js +2 -0
  87. richie/static/richie/js/build/12308.d8b8d0db6c2a36789372.index.js +2 -0
  88. richie/static/richie/js/build/12698.d8b8d0db6c2a36789372.index.js +2 -0
  89. richie/static/richie/js/build/1323.d8b8d0db6c2a36789372.index.js +2 -0
  90. richie/static/richie/js/build/13347.d8b8d0db6c2a36789372.index.js +2 -0
  91. richie/static/richie/js/build/13373.d8b8d0db6c2a36789372.index.js +2 -0
  92. richie/static/richie/js/build/13405.d8b8d0db6c2a36789372.index.js +2 -0
  93. richie/static/richie/js/build/13563.d8b8d0db6c2a36789372.index.js +2 -0
  94. richie/static/richie/js/build/13609.d8b8d0db6c2a36789372.index.js +2 -0
  95. richie/static/richie/js/build/13642.d8b8d0db6c2a36789372.index.js +2 -0
  96. richie/static/richie/js/build/13886.d8b8d0db6c2a36789372.index.js +2 -0
  97. richie/static/richie/js/build/13995.d8b8d0db6c2a36789372.index.js +2 -0
  98. richie/static/richie/js/build/1406.d8b8d0db6c2a36789372.index.js +2 -0
  99. richie/static/richie/js/build/14319.d8b8d0db6c2a36789372.index.js +2 -0
  100. richie/static/richie/js/build/14377.d8b8d0db6c2a36789372.index.js +2 -0
  101. richie/static/richie/js/build/14398.d8b8d0db6c2a36789372.index.js +2 -0
  102. richie/static/richie/js/build/14468.d8b8d0db6c2a36789372.index.js +2 -0
  103. richie/static/richie/js/build/1460.d8b8d0db6c2a36789372.index.js +2 -0
  104. richie/static/richie/js/build/14707.d8b8d0db6c2a36789372.index.js +2 -0
  105. richie/static/richie/js/build/15162.d8b8d0db6c2a36789372.index.js +2 -0
  106. richie/static/richie/js/build/15448.d8b8d0db6c2a36789372.index.js +2 -0
  107. richie/static/richie/js/build/1572.d8b8d0db6c2a36789372.index.js +2 -0
  108. richie/static/richie/js/build/16321.d8b8d0db6c2a36789372.index.js +2 -0
  109. richie/static/richie/js/build/16394.d8b8d0db6c2a36789372.index.js +2 -0
  110. richie/static/richie/js/build/16834.d8b8d0db6c2a36789372.index.js +2 -0
  111. richie/static/richie/js/build/16929.d8b8d0db6c2a36789372.index.js +2 -0
  112. richie/static/richie/js/build/17292.d8b8d0db6c2a36789372.index.js +2 -0
  113. richie/static/richie/js/build/17404.d8b8d0db6c2a36789372.index.js +2 -0
  114. richie/static/richie/js/build/17484.d8b8d0db6c2a36789372.index.js +2 -0
  115. richie/static/richie/js/build/17687.d8b8d0db6c2a36789372.index.js +2 -0
  116. richie/static/richie/js/build/17727.d8b8d0db6c2a36789372.index.js +2 -0
  117. richie/static/richie/js/build/17836.d8b8d0db6c2a36789372.index.js +2 -0
  118. richie/static/richie/js/build/18031.d8b8d0db6c2a36789372.index.js +2 -0
  119. richie/static/richie/js/build/1846.d8b8d0db6c2a36789372.index.js +2 -0
  120. richie/static/richie/js/build/1869.d8b8d0db6c2a36789372.index.js +2 -0
  121. richie/static/richie/js/build/18865.d8b8d0db6c2a36789372.index.js +2 -0
  122. richie/static/richie/js/build/19446.d8b8d0db6c2a36789372.index.js +2 -0
  123. richie/static/richie/js/build/19559.d8b8d0db6c2a36789372.index.js +2 -0
  124. richie/static/richie/js/build/19858.d8b8d0db6c2a36789372.index.js +2 -0
  125. richie/static/richie/js/build/19950.d8b8d0db6c2a36789372.index.js +2 -0
  126. richie/static/richie/js/build/20059.d8b8d0db6c2a36789372.index.js +2 -0
  127. richie/static/richie/js/build/20261.d8b8d0db6c2a36789372.index.js +2 -0
  128. richie/static/richie/js/build/205.d8b8d0db6c2a36789372.index.js +2 -0
  129. richie/static/richie/js/build/20574.d8b8d0db6c2a36789372.index.js +2 -0
  130. richie/static/richie/js/build/20646.d8b8d0db6c2a36789372.index.js +2 -0
  131. richie/static/richie/js/build/20713.d8b8d0db6c2a36789372.index.js +2 -0
  132. richie/static/richie/js/build/20938.d8b8d0db6c2a36789372.index.js +2 -0
  133. richie/static/richie/js/build/21127.d8b8d0db6c2a36789372.index.js +2 -0
  134. richie/static/richie/js/build/21359.d8b8d0db6c2a36789372.index.js +2 -0
  135. richie/static/richie/js/build/21470.d8b8d0db6c2a36789372.index.js +2 -0
  136. richie/static/richie/js/build/21650.d8b8d0db6c2a36789372.index.js +2 -0
  137. richie/static/richie/js/build/2181.d8b8d0db6c2a36789372.index.js +2 -0
  138. richie/static/richie/js/build/21831.d8b8d0db6c2a36789372.index.js +2 -0
  139. richie/static/richie/js/build/21940.d8b8d0db6c2a36789372.index.js +2 -0
  140. richie/static/richie/js/build/2217.d8b8d0db6c2a36789372.index.js +2 -0
  141. richie/static/richie/js/build/22241.d8b8d0db6c2a36789372.index.js +2 -0
  142. richie/static/richie/js/build/22333.d8b8d0db6c2a36789372.index.js +2 -0
  143. richie/static/richie/js/build/22427.d8b8d0db6c2a36789372.index.js +3 -0
  144. richie/static/richie/js/build/22827.d8b8d0db6c2a36789372.index.js +2 -0
  145. richie/static/richie/js/build/23118.d8b8d0db6c2a36789372.index.js +3 -0
  146. richie/static/richie/js/build/23254.d8b8d0db6c2a36789372.index.js +2 -0
  147. richie/static/richie/js/build/23610.d8b8d0db6c2a36789372.index.js +2 -0
  148. richie/static/richie/js/build/23643.d8b8d0db6c2a36789372.index.js +2 -0
  149. richie/static/richie/js/build/23697.d8b8d0db6c2a36789372.index.js +2 -0
  150. richie/static/richie/js/build/23862.d8b8d0db6c2a36789372.index.js +2 -0
  151. richie/static/richie/js/build/23874.d8b8d0db6c2a36789372.index.js +2 -0
  152. richie/static/richie/js/build/23961.d8b8d0db6c2a36789372.index.js +2 -0
  153. richie/static/richie/js/build/23965.d8b8d0db6c2a36789372.index.js +2 -0
  154. richie/static/richie/js/build/23972.d8b8d0db6c2a36789372.index.js +2 -0
  155. richie/static/richie/js/build/24441.d8b8d0db6c2a36789372.index.js +2 -0
  156. richie/static/richie/js/build/24529.d8b8d0db6c2a36789372.index.js +3 -0
  157. richie/static/richie/js/build/24909.d8b8d0db6c2a36789372.index.js +2 -0
  158. richie/static/richie/js/build/2515.d8b8d0db6c2a36789372.index.js +2 -0
  159. richie/static/richie/js/build/25243.d8b8d0db6c2a36789372.index.js +2 -0
  160. richie/static/richie/js/build/25272.d8b8d0db6c2a36789372.index.js +2 -0
  161. richie/static/richie/js/build/25627.d8b8d0db6c2a36789372.index.js +2 -0
  162. richie/static/richie/js/build/25681.d8b8d0db6c2a36789372.index.js +2 -0
  163. richie/static/richie/js/build/25781.d8b8d0db6c2a36789372.index.js +2 -0
  164. richie/static/richie/js/build/25873.d8b8d0db6c2a36789372.index.js +2 -0
  165. richie/static/richie/js/build/2597.d8b8d0db6c2a36789372.index.js +2 -0
  166. richie/static/richie/js/build/26150.d8b8d0db6c2a36789372.index.js +2 -0
  167. richie/static/richie/js/build/2621.d8b8d0db6c2a36789372.index.js +2 -0
  168. richie/static/richie/js/build/26226.d8b8d0db6c2a36789372.index.js +2 -0
  169. richie/static/richie/js/build/2623.d8b8d0db6c2a36789372.index.js +2 -0
  170. richie/static/richie/js/build/26305.d8b8d0db6c2a36789372.index.js +2 -0
  171. richie/static/richie/js/build/26331.d8b8d0db6c2a36789372.index.js +2 -0
  172. richie/static/richie/js/build/26425.d8b8d0db6c2a36789372.index.js +2 -0
  173. richie/static/richie/js/build/26626.d8b8d0db6c2a36789372.index.js +2 -0
  174. richie/static/richie/js/build/26655.d8b8d0db6c2a36789372.index.js +2 -0
  175. richie/static/richie/js/build/26656.d8b8d0db6c2a36789372.index.js +2 -0
  176. richie/static/richie/js/build/26718.d8b8d0db6c2a36789372.index.js +2 -0
  177. richie/static/richie/js/build/27121.d8b8d0db6c2a36789372.index.js +2 -0
  178. richie/static/richie/js/build/27168.d8b8d0db6c2a36789372.index.js +2 -0
  179. richie/static/richie/js/build/27556.d8b8d0db6c2a36789372.index.js +2 -0
  180. richie/static/richie/js/build/27726.d8b8d0db6c2a36789372.index.js +2 -0
  181. richie/static/richie/js/build/27974.d8b8d0db6c2a36789372.index.js +2 -0
  182. richie/static/richie/js/build/28032.d8b8d0db6c2a36789372.index.js +2 -0
  183. richie/static/richie/js/build/28104.d8b8d0db6c2a36789372.index.js +2 -0
  184. richie/static/richie/js/build/28351.d8b8d0db6c2a36789372.index.js +2 -0
  185. richie/static/richie/js/build/28422.d8b8d0db6c2a36789372.index.js +2 -0
  186. richie/static/richie/js/build/28498.d8b8d0db6c2a36789372.index.js +2 -0
  187. richie/static/richie/js/build/28536.d8b8d0db6c2a36789372.index.js +2 -0
  188. richie/static/richie/js/build/28561.d8b8d0db6c2a36789372.index.js +3 -0
  189. richie/static/richie/js/build/28569.d8b8d0db6c2a36789372.index.js +2 -0
  190. richie/static/richie/js/build/28639.d8b8d0db6c2a36789372.index.js +2 -0
  191. richie/static/richie/js/build/28802.d8b8d0db6c2a36789372.index.js +2 -0
  192. richie/static/richie/js/build/29178.d8b8d0db6c2a36789372.index.js +2 -0
  193. richie/static/richie/js/build/2924.d8b8d0db6c2a36789372.index.js +2 -0
  194. richie/static/richie/js/build/29479.d8b8d0db6c2a36789372.index.js +2 -0
  195. richie/static/richie/js/build/29577.d8b8d0db6c2a36789372.index.js +2 -0
  196. richie/static/richie/js/build/29596.d8b8d0db6c2a36789372.index.js +2 -0
  197. richie/static/richie/js/build/2992.d8b8d0db6c2a36789372.index.js +2 -0
  198. richie/static/richie/js/build/30296.d8b8d0db6c2a36789372.index.js +2 -0
  199. richie/static/richie/js/build/30308.d8b8d0db6c2a36789372.index.js +2 -0
  200. richie/static/richie/js/build/30529.d8b8d0db6c2a36789372.index.js +2 -0
  201. richie/static/richie/js/build/30604.d8b8d0db6c2a36789372.index.js +2 -0
  202. richie/static/richie/js/build/30679.d8b8d0db6c2a36789372.index.js +2 -0
  203. richie/static/richie/js/build/3068.d8b8d0db6c2a36789372.index.js +2 -0
  204. richie/static/richie/js/build/30865.d8b8d0db6c2a36789372.index.js +2 -0
  205. richie/static/richie/js/build/30886.d8b8d0db6c2a36789372.index.js +2 -0
  206. richie/static/richie/js/build/31345.d8b8d0db6c2a36789372.index.js +2 -0
  207. richie/static/richie/js/build/31389.d8b8d0db6c2a36789372.index.js +2 -0
  208. richie/static/richie/js/build/31513.d8b8d0db6c2a36789372.index.js +2 -0
  209. richie/static/richie/js/build/31523.d8b8d0db6c2a36789372.index.js +2 -0
  210. richie/static/richie/js/build/31958.d8b8d0db6c2a36789372.index.js +2 -0
  211. richie/static/richie/js/build/32364.d8b8d0db6c2a36789372.index.js +2 -0
  212. richie/static/richie/js/build/32456.d8b8d0db6c2a36789372.index.js +2 -0
  213. richie/static/richie/js/build/32477.d8b8d0db6c2a36789372.index.js +2 -0
  214. richie/static/richie/js/build/32583.d8b8d0db6c2a36789372.index.js +2 -0
  215. richie/static/richie/js/build/33079.d8b8d0db6c2a36789372.index.js +2 -0
  216. richie/static/richie/js/build/3342.d8b8d0db6c2a36789372.index.js +2 -0
  217. richie/static/richie/js/build/33442.d8b8d0db6c2a36789372.index.js +2 -0
  218. richie/static/richie/js/build/33821.d8b8d0db6c2a36789372.index.js +2 -0
  219. richie/static/richie/js/build/3390.d8b8d0db6c2a36789372.index.js +2 -0
  220. richie/static/richie/js/build/34291.d8b8d0db6c2a36789372.index.js +2 -0
  221. richie/static/richie/js/build/34303.d8b8d0db6c2a36789372.index.js +2 -0
  222. richie/static/richie/js/build/34357.d8b8d0db6c2a36789372.index.js +2 -0
  223. richie/static/richie/js/build/34452.d8b8d0db6c2a36789372.index.js +2 -0
  224. richie/static/richie/js/build/3486.d8b8d0db6c2a36789372.index.js +2 -0
  225. richie/static/richie/js/build/34958.d8b8d0db6c2a36789372.index.js +2 -0
  226. richie/static/richie/js/build/35104.d8b8d0db6c2a36789372.index.js +2 -0
  227. richie/static/richie/js/build/35420.d8b8d0db6c2a36789372.index.js +2 -0
  228. richie/static/richie/js/build/35707.d8b8d0db6c2a36789372.index.js +2 -0
  229. richie/static/richie/js/build/36137.d8b8d0db6c2a36789372.index.js +2 -0
  230. richie/static/richie/js/build/3634.d8b8d0db6c2a36789372.index.js +2 -0
  231. richie/static/richie/js/build/36384.d8b8d0db6c2a36789372.index.js +2 -0
  232. richie/static/richie/js/build/36396.d8b8d0db6c2a36789372.index.js +2 -0
  233. richie/static/richie/js/build/36437.d8b8d0db6c2a36789372.index.js +2 -0
  234. richie/static/richie/js/build/36593.d8b8d0db6c2a36789372.index.js +2 -0
  235. richie/static/richie/js/build/3673.d8b8d0db6c2a36789372.index.js +2 -0
  236. richie/static/richie/js/build/36745.d8b8d0db6c2a36789372.index.js +2 -0
  237. richie/static/richie/js/build/3716.d8b8d0db6c2a36789372.index.js +2 -0
  238. richie/static/richie/js/build/37733.d8b8d0db6c2a36789372.index.js +2 -0
  239. richie/static/richie/js/build/37826.d8b8d0db6c2a36789372.index.js +3 -0
  240. richie/static/richie/js/build/38140.d8b8d0db6c2a36789372.index.js +3 -0
  241. richie/static/richie/js/build/3819.d8b8d0db6c2a36789372.index.js +2 -0
  242. richie/static/richie/js/build/38273.d8b8d0db6c2a36789372.index.js +3 -0
  243. richie/static/richie/js/build/38449.d8b8d0db6c2a36789372.index.js +2 -0
  244. richie/static/richie/js/build/38970.d8b8d0db6c2a36789372.index.js +2 -0
  245. richie/static/richie/js/build/38997.d8b8d0db6c2a36789372.index.js +2 -0
  246. richie/static/richie/js/build/39210.d8b8d0db6c2a36789372.index.js +2 -0
  247. richie/static/richie/js/build/39285.d8b8d0db6c2a36789372.index.js +2 -0
  248. richie/static/richie/js/build/39487.d8b8d0db6c2a36789372.index.js +2 -0
  249. richie/static/richie/js/build/39493.d8b8d0db6c2a36789372.index.js +2 -0
  250. richie/static/richie/js/build/39553.d8b8d0db6c2a36789372.index.js +2 -0
  251. richie/static/richie/js/build/39587.d8b8d0db6c2a36789372.index.js +2 -0
  252. richie/static/richie/js/build/39818.d8b8d0db6c2a36789372.index.js +2 -0
  253. richie/static/richie/js/build/39872.d8b8d0db6c2a36789372.index.js +2 -0
  254. richie/static/richie/js/build/39956.d8b8d0db6c2a36789372.index.js +2 -0
  255. richie/static/richie/js/build/39969.d8b8d0db6c2a36789372.index.js +2 -0
  256. richie/static/richie/js/build/40119.d8b8d0db6c2a36789372.index.js +2 -0
  257. richie/static/richie/js/build/40478.d8b8d0db6c2a36789372.index.js +2 -0
  258. richie/static/richie/js/build/40517.d8b8d0db6c2a36789372.index.js +3 -0
  259. richie/static/richie/js/build/40617.d8b8d0db6c2a36789372.index.js +2 -0
  260. richie/static/richie/js/build/40960.d8b8d0db6c2a36789372.index.js +2 -0
  261. richie/static/richie/js/build/41163.d8b8d0db6c2a36789372.index.js +2 -0
  262. richie/static/richie/js/build/4152.d8b8d0db6c2a36789372.index.js +2 -0
  263. richie/static/richie/js/build/41676.d8b8d0db6c2a36789372.index.js +2 -0
  264. richie/static/richie/js/build/41780.d8b8d0db6c2a36789372.index.js +2 -0
  265. richie/static/richie/js/build/42009.d8b8d0db6c2a36789372.index.js +2 -0
  266. richie/static/richie/js/build/42423.d8b8d0db6c2a36789372.index.js +2 -0
  267. richie/static/richie/js/build/42542.d8b8d0db6c2a36789372.index.js +2 -0
  268. richie/static/richie/js/build/4276.d8b8d0db6c2a36789372.index.js +2 -0
  269. richie/static/richie/js/build/43470.d8b8d0db6c2a36789372.index.js +2 -0
  270. richie/static/richie/js/build/43653.d8b8d0db6c2a36789372.index.js +2 -0
  271. richie/static/richie/js/build/43755.d8b8d0db6c2a36789372.index.js +2 -0
  272. richie/static/richie/js/build/43761.d8b8d0db6c2a36789372.index.js +2 -0
  273. richie/static/richie/js/build/43872.d8b8d0db6c2a36789372.index.js +2 -0
  274. richie/static/richie/js/build/44088.d8b8d0db6c2a36789372.index.js +2 -0
  275. richie/static/richie/js/build/44154.d8b8d0db6c2a36789372.index.js +2 -0
  276. richie/static/richie/js/build/44165.d8b8d0db6c2a36789372.index.js +2 -0
  277. richie/static/richie/js/build/44190.d8b8d0db6c2a36789372.index.js +2 -0
  278. richie/static/richie/js/build/44303.d8b8d0db6c2a36789372.index.js +2 -0
  279. richie/static/richie/js/build/44455.d8b8d0db6c2a36789372.index.js +2 -0
  280. richie/static/richie/js/build/44644.d8b8d0db6c2a36789372.index.js +2 -0
  281. richie/static/richie/js/build/44705.d8b8d0db6c2a36789372.index.js +2 -0
  282. richie/static/richie/js/build/44715.d8b8d0db6c2a36789372.index.js +2 -0
  283. richie/static/richie/js/build/44718.d8b8d0db6c2a36789372.index.js +2 -0
  284. richie/static/richie/js/build/45222.d8b8d0db6c2a36789372.index.js +2 -0
  285. richie/static/richie/js/build/45586.d8b8d0db6c2a36789372.index.js +2 -0
  286. richie/static/richie/js/build/45613.d8b8d0db6c2a36789372.index.js +2 -0
  287. richie/static/richie/js/build/45995.d8b8d0db6c2a36789372.index.js +2 -0
  288. richie/static/richie/js/build/46029.d8b8d0db6c2a36789372.index.js +2 -0
  289. richie/static/richie/js/build/46374.d8b8d0db6c2a36789372.index.js +2 -0
  290. richie/static/richie/js/build/465.d8b8d0db6c2a36789372.index.js +2 -0
  291. richie/static/richie/js/build/46537.d8b8d0db6c2a36789372.index.js +2 -0
  292. richie/static/richie/js/build/46596.d8b8d0db6c2a36789372.index.js +2 -0
  293. richie/static/richie/js/build/46639.d8b8d0db6c2a36789372.index.js +2 -0
  294. richie/static/richie/js/build/4689.d8b8d0db6c2a36789372.index.js +2 -0
  295. richie/static/richie/js/build/46910.d8b8d0db6c2a36789372.index.js +2 -0
  296. richie/static/richie/js/build/46934.d8b8d0db6c2a36789372.index.js +2 -0
  297. richie/static/richie/js/build/47084.d8b8d0db6c2a36789372.index.js +2 -0
  298. richie/static/richie/js/build/47163.d8b8d0db6c2a36789372.index.js +2 -0
  299. richie/static/richie/js/build/47304.d8b8d0db6c2a36789372.index.js +2 -0
  300. richie/static/richie/js/build/47353.d8b8d0db6c2a36789372.index.js +2 -0
  301. richie/static/richie/js/build/47643.d8b8d0db6c2a36789372.index.js +2 -0
  302. richie/static/richie/js/build/47681.d8b8d0db6c2a36789372.index.js +2 -0
  303. richie/static/richie/js/build/47839.d8b8d0db6c2a36789372.index.js +2 -0
  304. richie/static/richie/js/build/47843.d8b8d0db6c2a36789372.index.js +2 -0
  305. richie/static/richie/js/build/48206.d8b8d0db6c2a36789372.index.js +2 -0
  306. richie/static/richie/js/build/48218.d8b8d0db6c2a36789372.index.js +2 -0
  307. richie/static/richie/js/build/48260.d8b8d0db6c2a36789372.index.js +2 -0
  308. richie/static/richie/js/build/48315.d8b8d0db6c2a36789372.index.js +2 -0
  309. richie/static/richie/js/build/48337.d8b8d0db6c2a36789372.index.js +3 -0
  310. richie/static/richie/js/build/48473.d8b8d0db6c2a36789372.index.js +2 -0
  311. richie/static/richie/js/build/48592.d8b8d0db6c2a36789372.index.js +2 -0
  312. richie/static/richie/js/build/48603.d8b8d0db6c2a36789372.index.js +2 -0
  313. richie/static/richie/js/build/48608.d8b8d0db6c2a36789372.index.js +2 -0
  314. richie/static/richie/js/build/48861.d8b8d0db6c2a36789372.index.js +2 -0
  315. richie/static/richie/js/build/48960.d8b8d0db6c2a36789372.index.js +2 -0
  316. richie/static/richie/js/build/49157.d8b8d0db6c2a36789372.index.js +2 -0
  317. richie/static/richie/js/build/49345.d8b8d0db6c2a36789372.index.js +2 -0
  318. richie/static/richie/js/build/49495.d8b8d0db6c2a36789372.index.js +2 -0
  319. richie/static/richie/js/build/49526.d8b8d0db6c2a36789372.index.js +2 -0
  320. richie/static/richie/js/build/49561.d8b8d0db6c2a36789372.index.js +2 -0
  321. richie/static/richie/js/build/49582.d8b8d0db6c2a36789372.index.js +2 -0
  322. richie/static/richie/js/build/49687.d8b8d0db6c2a36789372.index.js +2 -0
  323. richie/static/richie/js/build/4969.d8b8d0db6c2a36789372.index.js +2 -0
  324. richie/static/richie/js/build/49949.d8b8d0db6c2a36789372.index.js +2 -0
  325. richie/static/richie/js/build/49958.d8b8d0db6c2a36789372.index.js +2 -0
  326. richie/static/richie/js/build/50179.d8b8d0db6c2a36789372.index.js +2 -0
  327. richie/static/richie/js/build/50181.d8b8d0db6c2a36789372.index.js +2 -0
  328. richie/static/richie/js/build/50204.d8b8d0db6c2a36789372.index.js +3 -0
  329. richie/static/richie/js/build/50235.d8b8d0db6c2a36789372.index.js +2 -0
  330. richie/static/richie/js/build/50353.d8b8d0db6c2a36789372.index.js +2 -0
  331. richie/static/richie/js/build/5038.d8b8d0db6c2a36789372.index.js +2 -0
  332. richie/static/richie/js/build/50571.d8b8d0db6c2a36789372.index.js +2 -0
  333. richie/static/richie/js/build/50625.d8b8d0db6c2a36789372.index.js +2 -0
  334. richie/static/richie/js/build/50890.d8b8d0db6c2a36789372.index.js +2 -0
  335. richie/static/richie/js/build/51082.d8b8d0db6c2a36789372.index.js +2 -0
  336. richie/static/richie/js/build/51113.d8b8d0db6c2a36789372.index.js +2 -0
  337. richie/static/richie/js/build/51363.d8b8d0db6c2a36789372.index.js +2 -0
  338. richie/static/richie/js/build/51387.d8b8d0db6c2a36789372.index.js +2 -0
  339. richie/static/richie/js/build/51551.d8b8d0db6c2a36789372.index.js +2 -0
  340. richie/static/richie/js/build/51628.d8b8d0db6c2a36789372.index.js +2 -0
  341. richie/static/richie/js/build/51756.d8b8d0db6c2a36789372.index.js +2 -0
  342. richie/static/richie/js/build/51805.d8b8d0db6c2a36789372.index.js +2 -0
  343. richie/static/richie/js/build/51961.d8b8d0db6c2a36789372.index.js +2 -0
  344. richie/static/richie/js/build/52186.d8b8d0db6c2a36789372.index.js +2 -0
  345. richie/static/richie/js/build/52472.d8b8d0db6c2a36789372.index.js +2 -0
  346. richie/static/richie/js/build/52961.d8b8d0db6c2a36789372.index.js +2 -0
  347. richie/static/richie/js/build/52969.d8b8d0db6c2a36789372.index.js +2 -0
  348. richie/static/richie/js/build/53468.d8b8d0db6c2a36789372.index.js +2 -0
  349. richie/static/richie/js/build/5361.d8b8d0db6c2a36789372.index.js +2 -0
  350. richie/static/richie/js/build/53813.d8b8d0db6c2a36789372.index.js +2 -0
  351. richie/static/richie/js/build/53829.d8b8d0db6c2a36789372.index.js +2 -0
  352. richie/static/richie/js/build/53979.d8b8d0db6c2a36789372.index.js +2 -0
  353. richie/static/richie/js/build/54030.d8b8d0db6c2a36789372.index.js +2 -0
  354. richie/static/richie/js/build/54162.d8b8d0db6c2a36789372.index.js +2 -0
  355. richie/static/richie/js/build/54572.d8b8d0db6c2a36789372.index.js +2 -0
  356. richie/static/richie/js/build/54964.d8b8d0db6c2a36789372.index.js +2 -0
  357. richie/static/richie/js/build/55430.d8b8d0db6c2a36789372.index.js +2 -0
  358. richie/static/richie/js/build/55575.d8b8d0db6c2a36789372.index.js +2 -0
  359. richie/static/richie/js/build/55746.d8b8d0db6c2a36789372.index.js +2 -0
  360. richie/static/richie/js/build/55798.d8b8d0db6c2a36789372.index.js +2 -0
  361. richie/static/richie/js/build/55849.d8b8d0db6c2a36789372.index.js +2 -0
  362. richie/static/richie/js/build/55862.d8b8d0db6c2a36789372.index.js +2 -0
  363. richie/static/richie/js/build/55889.d8b8d0db6c2a36789372.index.js +2 -0
  364. richie/static/richie/js/build/55970.d8b8d0db6c2a36789372.index.js +2 -0
  365. richie/static/richie/js/build/56009.d8b8d0db6c2a36789372.index.js +2 -0
  366. richie/static/richie/js/build/56120.d8b8d0db6c2a36789372.index.js +2 -0
  367. richie/static/richie/js/build/56186.d8b8d0db6c2a36789372.index.js +2 -0
  368. richie/static/richie/js/build/56287.d8b8d0db6c2a36789372.index.js +2 -0
  369. richie/static/richie/js/build/56382.d8b8d0db6c2a36789372.index.js +2 -0
  370. richie/static/richie/js/build/56383.d8b8d0db6c2a36789372.index.js +2 -0
  371. richie/static/richie/js/build/56463.d8b8d0db6c2a36789372.index.js +3 -0
  372. richie/static/richie/js/build/5648.d8b8d0db6c2a36789372.index.js +2 -0
  373. richie/static/richie/js/build/56503.d8b8d0db6c2a36789372.index.js +2 -0
  374. richie/static/richie/js/build/56598.d8b8d0db6c2a36789372.index.js +2 -0
  375. richie/static/richie/js/build/56917.d8b8d0db6c2a36789372.index.js +2 -0
  376. richie/static/richie/js/build/5705.d8b8d0db6c2a36789372.index.js +2 -0
  377. richie/static/richie/js/build/57523.d8b8d0db6c2a36789372.index.js +2 -0
  378. richie/static/richie/js/build/57647.d8b8d0db6c2a36789372.index.js +3 -0
  379. richie/static/richie/js/build/57743.d8b8d0db6c2a36789372.index.js +2 -0
  380. richie/static/richie/js/build/57956.d8b8d0db6c2a36789372.index.js +2 -0
  381. richie/static/richie/js/build/58327.d8b8d0db6c2a36789372.index.js +2 -0
  382. richie/static/richie/js/build/58435.d8b8d0db6c2a36789372.index.js +2 -0
  383. richie/static/richie/js/build/58614.d8b8d0db6c2a36789372.index.js +2 -0
  384. richie/static/richie/js/build/5881.d8b8d0db6c2a36789372.index.js +2 -0
  385. richie/static/richie/js/build/58828.d8b8d0db6c2a36789372.index.js +2 -0
  386. richie/static/richie/js/build/58905.d8b8d0db6c2a36789372.index.js +2 -0
  387. richie/static/richie/js/build/58918.d8b8d0db6c2a36789372.index.js +2 -0
  388. richie/static/richie/js/build/58969.d8b8d0db6c2a36789372.index.js +2 -0
  389. richie/static/richie/js/build/59213.d8b8d0db6c2a36789372.index.js +2 -0
  390. richie/static/richie/js/build/59759.d8b8d0db6c2a36789372.index.js +2 -0
  391. richie/static/richie/js/build/59930.d8b8d0db6c2a36789372.index.js +2 -0
  392. richie/static/richie/js/build/60000.d8b8d0db6c2a36789372.index.js +2 -0
  393. richie/static/richie/js/build/60251.d8b8d0db6c2a36789372.index.js +2 -0
  394. richie/static/richie/js/build/60324.d8b8d0db6c2a36789372.index.js +2 -0
  395. richie/static/richie/js/build/6036.d8b8d0db6c2a36789372.index.js +2 -0
  396. richie/static/richie/js/build/60386.d8b8d0db6c2a36789372.index.js +2 -0
  397. richie/static/richie/js/build/60546.d8b8d0db6c2a36789372.index.js +2 -0
  398. richie/static/richie/js/build/60671.d8b8d0db6c2a36789372.index.js +2 -0
  399. richie/static/richie/js/build/60711.d8b8d0db6c2a36789372.index.js +2 -0
  400. richie/static/richie/js/build/60757.d8b8d0db6c2a36789372.index.js +2 -0
  401. richie/static/richie/js/build/60808.d8b8d0db6c2a36789372.index.js +2 -0
  402. richie/static/richie/js/build/60938.d8b8d0db6c2a36789372.index.js +2 -0
  403. richie/static/richie/js/build/61049.d8b8d0db6c2a36789372.index.js +2 -0
  404. richie/static/richie/js/build/61068.d8b8d0db6c2a36789372.index.js +2 -0
  405. richie/static/richie/js/build/61075.d8b8d0db6c2a36789372.index.js +2 -0
  406. richie/static/richie/js/build/61191.d8b8d0db6c2a36789372.index.js +3 -0
  407. richie/static/richie/js/build/61621.d8b8d0db6c2a36789372.index.js +2 -0
  408. richie/static/richie/js/build/61890.d8b8d0db6c2a36789372.index.js +2 -0
  409. richie/static/richie/js/build/61995.d8b8d0db6c2a36789372.index.js +2 -0
  410. richie/static/richie/js/build/62005.d8b8d0db6c2a36789372.index.js +2 -0
  411. richie/static/richie/js/build/62036.d8b8d0db6c2a36789372.index.js +3 -0
  412. richie/static/richie/js/build/62170.d8b8d0db6c2a36789372.index.js +2 -0
  413. richie/static/richie/js/build/62308.d8b8d0db6c2a36789372.index.js +2 -0
  414. richie/static/richie/js/build/62419.d8b8d0db6c2a36789372.index.js +2 -0
  415. richie/static/richie/js/build/62482.d8b8d0db6c2a36789372.index.js +2 -0
  416. richie/static/richie/js/build/62550.d8b8d0db6c2a36789372.index.js +2 -0
  417. richie/static/richie/js/build/6260.d8b8d0db6c2a36789372.index.js +2 -0
  418. richie/static/richie/js/build/62794.d8b8d0db6c2a36789372.index.js +2 -0
  419. richie/static/richie/js/build/63248.d8b8d0db6c2a36789372.index.js +2 -0
  420. richie/static/richie/js/build/63377.d8b8d0db6c2a36789372.index.js +2 -0
  421. richie/static/richie/js/build/63458.d8b8d0db6c2a36789372.index.js +2 -0
  422. richie/static/richie/js/build/63493.d8b8d0db6c2a36789372.index.js +2 -0
  423. richie/static/richie/js/build/63570.d8b8d0db6c2a36789372.index.js +2 -0
  424. richie/static/richie/js/build/63635.d8b8d0db6c2a36789372.index.js +2 -0
  425. richie/static/richie/js/build/63945.d8b8d0db6c2a36789372.index.js +2 -0
  426. richie/static/richie/js/build/64021.d8b8d0db6c2a36789372.index.js +2 -0
  427. richie/static/richie/js/build/64118.d8b8d0db6c2a36789372.index.js +2 -0
  428. richie/static/richie/js/build/64146.d8b8d0db6c2a36789372.index.js +2 -0
  429. richie/static/richie/js/build/64581.d8b8d0db6c2a36789372.index.js +2 -0
  430. richie/static/richie/js/build/64637.d8b8d0db6c2a36789372.index.js +2 -0
  431. richie/static/richie/js/build/64757.d8b8d0db6c2a36789372.index.js +2 -0
  432. richie/static/richie/js/build/64971.d8b8d0db6c2a36789372.index.js +2 -0
  433. richie/static/richie/js/build/65020.d8b8d0db6c2a36789372.index.js +2 -0
  434. richie/static/richie/js/build/65138.d8b8d0db6c2a36789372.index.js +2 -0
  435. richie/static/richie/js/build/65219.d8b8d0db6c2a36789372.index.js +2 -0
  436. richie/static/richie/js/build/65254.d8b8d0db6c2a36789372.index.js +2 -0
  437. richie/static/richie/js/build/65427.d8b8d0db6c2a36789372.index.js +2 -0
  438. richie/static/richie/js/build/6546.d8b8d0db6c2a36789372.index.js +2 -0
  439. richie/static/richie/js/build/65620.d8b8d0db6c2a36789372.index.js +2 -0
  440. richie/static/richie/js/build/65684.d8b8d0db6c2a36789372.index.js +2 -0
  441. richie/static/richie/js/build/65809.d8b8d0db6c2a36789372.index.js +2 -0
  442. richie/static/richie/js/build/65886.d8b8d0db6c2a36789372.index.js +2 -0
  443. richie/static/richie/js/build/6589.d8b8d0db6c2a36789372.index.js +2 -0
  444. richie/static/richie/js/build/66097.d8b8d0db6c2a36789372.index.js +2 -0
  445. richie/static/richie/js/build/661.d8b8d0db6c2a36789372.index.js +2 -0
  446. richie/static/richie/js/build/66227.d8b8d0db6c2a36789372.index.js +2 -0
  447. richie/static/richie/js/build/66761.d8b8d0db6c2a36789372.index.js +2 -0
  448. richie/static/richie/js/build/66865.d8b8d0db6c2a36789372.index.js +2 -0
  449. richie/static/richie/js/build/66967.d8b8d0db6c2a36789372.index.js +2 -0
  450. richie/static/richie/js/build/67059.d8b8d0db6c2a36789372.index.js +2 -0
  451. richie/static/richie/js/build/67076.d8b8d0db6c2a36789372.index.js +2 -0
  452. richie/static/richie/js/build/67112.d8b8d0db6c2a36789372.index.js +2 -0
  453. richie/static/richie/js/build/67152.d8b8d0db6c2a36789372.index.js +2 -0
  454. richie/static/richie/js/build/67359.d8b8d0db6c2a36789372.index.js +2 -0
  455. richie/static/richie/js/build/67650.d8b8d0db6c2a36789372.index.js +2 -0
  456. richie/static/richie/js/build/67718.d8b8d0db6c2a36789372.index.js +2 -0
  457. richie/static/richie/js/build/67899.d8b8d0db6c2a36789372.index.js +2 -0
  458. richie/static/richie/js/build/67959.d8b8d0db6c2a36789372.index.js +2 -0
  459. richie/static/richie/js/build/6808.d8b8d0db6c2a36789372.index.js +2 -0
  460. richie/static/richie/js/build/68410.d8b8d0db6c2a36789372.index.js +2 -0
  461. richie/static/richie/js/build/68454.d8b8d0db6c2a36789372.index.js +2 -0
  462. richie/static/richie/js/build/68565.d8b8d0db6c2a36789372.index.js +2 -0
  463. richie/static/richie/js/build/68572.d8b8d0db6c2a36789372.index.js +2 -0
  464. richie/static/richie/js/build/68584.d8b8d0db6c2a36789372.index.js +2 -0
  465. richie/static/richie/js/build/68784.d8b8d0db6c2a36789372.index.js +2 -0
  466. richie/static/richie/js/build/68830.d8b8d0db6c2a36789372.index.js +2 -0
  467. richie/static/richie/js/build/68872.d8b8d0db6c2a36789372.index.js +2 -0
  468. richie/static/richie/js/build/68894.d8b8d0db6c2a36789372.index.js +2 -0
  469. richie/static/richie/js/build/69138.d8b8d0db6c2a36789372.index.js +2 -0
  470. richie/static/richie/js/build/69706.d8b8d0db6c2a36789372.index.js +2 -0
  471. richie/static/richie/js/build/69955.d8b8d0db6c2a36789372.index.js +2 -0
  472. richie/static/richie/js/build/70223.d8b8d0db6c2a36789372.index.js +2 -0
  473. richie/static/richie/js/build/7026.d8b8d0db6c2a36789372.index.js +2 -0
  474. richie/static/richie/js/build/70449.d8b8d0db6c2a36789372.index.js +2 -0
  475. richie/static/richie/js/build/70585.d8b8d0db6c2a36789372.index.js +2 -0
  476. richie/static/richie/js/build/7076.d8b8d0db6c2a36789372.index.js +2 -0
  477. richie/static/richie/js/build/70803.d8b8d0db6c2a36789372.index.js +2 -0
  478. richie/static/richie/js/build/71159.d8b8d0db6c2a36789372.index.js +2 -0
  479. richie/static/richie/js/build/71204.d8b8d0db6c2a36789372.index.js +2 -0
  480. richie/static/richie/js/build/71245.d8b8d0db6c2a36789372.index.js +2 -0
  481. richie/static/richie/js/build/71457.d8b8d0db6c2a36789372.index.js +2 -0
  482. richie/static/richie/js/build/717.d8b8d0db6c2a36789372.index.js +2 -0
  483. richie/static/richie/js/build/71818.d8b8d0db6c2a36789372.index.js +2 -0
  484. richie/static/richie/js/build/71853.d8b8d0db6c2a36789372.index.js +2 -0
  485. richie/static/richie/js/build/71882.d8b8d0db6c2a36789372.index.js +2 -0
  486. richie/static/richie/js/build/72186.d8b8d0db6c2a36789372.index.js +2 -0
  487. richie/static/richie/js/build/72402.d8b8d0db6c2a36789372.index.js +2 -0
  488. richie/static/richie/js/build/72639.d8b8d0db6c2a36789372.index.js +2 -0
  489. richie/static/richie/js/build/72832.d8b8d0db6c2a36789372.index.js +2 -0
  490. richie/static/richie/js/build/72867.d8b8d0db6c2a36789372.index.js +2 -0
  491. richie/static/richie/js/build/72917.d8b8d0db6c2a36789372.index.js +2 -0
  492. richie/static/richie/js/build/7335.d8b8d0db6c2a36789372.index.js +2 -0
  493. richie/static/richie/js/build/74009.d8b8d0db6c2a36789372.index.js +2 -0
  494. richie/static/richie/js/build/74049.d8b8d0db6c2a36789372.index.js +2 -0
  495. richie/static/richie/js/build/74089.d8b8d0db6c2a36789372.index.js +2 -0
  496. richie/static/richie/js/build/74185.d8b8d0db6c2a36789372.index.js +3 -0
  497. richie/static/richie/js/build/74456.d8b8d0db6c2a36789372.index.js +2 -0
  498. richie/static/richie/js/build/74457.d8b8d0db6c2a36789372.index.js +2 -0
  499. richie/static/richie/js/build/74636.d8b8d0db6c2a36789372.index.js +2 -0
  500. richie/static/richie/js/build/74924.d8b8d0db6c2a36789372.index.js +2 -0
  501. richie/static/richie/js/build/74996.d8b8d0db6c2a36789372.index.js +2 -0
  502. richie/static/richie/js/build/75079.d8b8d0db6c2a36789372.index.js +2 -0
  503. richie/static/richie/js/build/75127.d8b8d0db6c2a36789372.index.js +2 -0
  504. richie/static/richie/js/build/75168.d8b8d0db6c2a36789372.index.js +2 -0
  505. richie/static/richie/js/build/75201.d8b8d0db6c2a36789372.index.js +2 -0
  506. richie/static/richie/js/build/75687.d8b8d0db6c2a36789372.index.js +2 -0
  507. richie/static/richie/js/build/75805.d8b8d0db6c2a36789372.index.js +2 -0
  508. richie/static/richie/js/build/76122.d8b8d0db6c2a36789372.index.js +2 -0
  509. richie/static/richie/js/build/76219.d8b8d0db6c2a36789372.index.js +2 -0
  510. richie/static/richie/js/build/76342.d8b8d0db6c2a36789372.index.js +2 -0
  511. richie/static/richie/js/build/7661.d8b8d0db6c2a36789372.index.js +2 -0
  512. richie/static/richie/js/build/76620.d8b8d0db6c2a36789372.index.js +2 -0
  513. richie/static/richie/js/build/76710.d8b8d0db6c2a36789372.index.js +2 -0
  514. richie/static/richie/js/build/77018.d8b8d0db6c2a36789372.index.js +2 -0
  515. richie/static/richie/js/build/77082.d8b8d0db6c2a36789372.index.js +2 -0
  516. richie/static/richie/js/build/77211.d8b8d0db6c2a36789372.index.js +2 -0
  517. richie/static/richie/js/build/77311.d8b8d0db6c2a36789372.index.js +2 -0
  518. richie/static/richie/js/build/77356.d8b8d0db6c2a36789372.index.js +2 -0
  519. richie/static/richie/js/build/77479.d8b8d0db6c2a36789372.index.js +2 -0
  520. richie/static/richie/js/build/77638.d8b8d0db6c2a36789372.index.js +2 -0
  521. richie/static/richie/js/build/77653.d8b8d0db6c2a36789372.index.js +2 -0
  522. richie/static/richie/js/build/7768.d8b8d0db6c2a36789372.index.js +2 -0
  523. richie/static/richie/js/build/77687.d8b8d0db6c2a36789372.index.js +2 -0
  524. richie/static/richie/js/build/77803.d8b8d0db6c2a36789372.index.js +2 -0
  525. richie/static/richie/js/build/77818.d8b8d0db6c2a36789372.index.js +2 -0
  526. richie/static/richie/js/build/77865.d8b8d0db6c2a36789372.index.js +2 -0
  527. richie/static/richie/js/build/77987.d8b8d0db6c2a36789372.index.js +2 -0
  528. richie/static/richie/js/build/78157.d8b8d0db6c2a36789372.index.js +2 -0
  529. richie/static/richie/js/build/78250.d8b8d0db6c2a36789372.index.js +2 -0
  530. richie/static/richie/js/build/78264.d8b8d0db6c2a36789372.index.js +2 -0
  531. richie/static/richie/js/build/78415.d8b8d0db6c2a36789372.index.js +2 -0
  532. richie/static/richie/js/build/78581.d8b8d0db6c2a36789372.index.js +2 -0
  533. richie/static/richie/js/build/78603.d8b8d0db6c2a36789372.index.js +2 -0
  534. richie/static/richie/js/build/79094.d8b8d0db6c2a36789372.index.js +2 -0
  535. richie/static/richie/js/build/79350.d8b8d0db6c2a36789372.index.js +2 -0
  536. richie/static/richie/js/build/7936.d8b8d0db6c2a36789372.index.js +2 -0
  537. richie/static/richie/js/build/79590.d8b8d0db6c2a36789372.index.js +2 -0
  538. richie/static/richie/js/build/79783.d8b8d0db6c2a36789372.index.js +2 -0
  539. richie/static/richie/js/build/80027.d8b8d0db6c2a36789372.index.js +2 -0
  540. richie/static/richie/js/build/80318.d8b8d0db6c2a36789372.index.js +2 -0
  541. richie/static/richie/js/build/80399.d8b8d0db6c2a36789372.index.js +2 -0
  542. richie/static/richie/js/build/80414.d8b8d0db6c2a36789372.index.js +3 -0
  543. richie/static/richie/js/build/80622.d8b8d0db6c2a36789372.index.js +2 -0
  544. richie/static/richie/js/build/80628.d8b8d0db6c2a36789372.index.js +2 -0
  545. richie/static/richie/js/build/80971.d8b8d0db6c2a36789372.index.js +2 -0
  546. richie/static/richie/js/build/81194.d8b8d0db6c2a36789372.index.js +2 -0
  547. richie/static/richie/js/build/81242.d8b8d0db6c2a36789372.index.js +2 -0
  548. richie/static/richie/js/build/81267.d8b8d0db6c2a36789372.index.js +2 -0
  549. richie/static/richie/js/build/81474.d8b8d0db6c2a36789372.index.js +2 -0
  550. richie/static/richie/js/build/81521.d8b8d0db6c2a36789372.index.js +2 -0
  551. richie/static/richie/js/build/8175.d8b8d0db6c2a36789372.index.js +2 -0
  552. richie/static/richie/js/build/81760.d8b8d0db6c2a36789372.index.js +2 -0
  553. richie/static/richie/js/build/81932.d8b8d0db6c2a36789372.index.js +2 -0
  554. richie/static/richie/js/build/82055.d8b8d0db6c2a36789372.index.js +2 -0
  555. richie/static/richie/js/build/82224.d8b8d0db6c2a36789372.index.js +2 -0
  556. richie/static/richie/js/build/82260.d8b8d0db6c2a36789372.index.js +2 -0
  557. richie/static/richie/js/build/82327.d8b8d0db6c2a36789372.index.js +2 -0
  558. richie/static/richie/js/build/82489.d8b8d0db6c2a36789372.index.js +2 -0
  559. richie/static/richie/js/build/82546.d8b8d0db6c2a36789372.index.js +2 -0
  560. richie/static/richie/js/build/82730.d8b8d0db6c2a36789372.index.js +2 -0
  561. richie/static/richie/js/build/82822.d8b8d0db6c2a36789372.index.js +2 -0
  562. richie/static/richie/js/build/82884.d8b8d0db6c2a36789372.index.js +2 -0
  563. richie/static/richie/js/build/83394.d8b8d0db6c2a36789372.index.js +2 -0
  564. richie/static/richie/js/build/83845.d8b8d0db6c2a36789372.index.js +2 -0
  565. richie/static/richie/js/build/83881.d8b8d0db6c2a36789372.index.js +2 -0
  566. richie/static/richie/js/build/83898.d8b8d0db6c2a36789372.index.js +2 -0
  567. richie/static/richie/js/build/84021.d8b8d0db6c2a36789372.index.js +2 -0
  568. richie/static/richie/js/build/84117.d8b8d0db6c2a36789372.index.js +2 -0
  569. richie/static/richie/js/build/84748.d8b8d0db6c2a36789372.index.js +2 -0
  570. richie/static/richie/js/build/84909.d8b8d0db6c2a36789372.index.js +2 -0
  571. richie/static/richie/js/build/84962.d8b8d0db6c2a36789372.index.js +2 -0
  572. richie/static/richie/js/build/85022.d8b8d0db6c2a36789372.index.js +2 -0
  573. richie/static/richie/js/build/85121.d8b8d0db6c2a36789372.index.js +2 -0
  574. richie/static/richie/js/build/85466.d8b8d0db6c2a36789372.index.js +2 -0
  575. richie/static/richie/js/build/85725.d8b8d0db6c2a36789372.index.js +2 -0
  576. richie/static/richie/js/build/85975.d8b8d0db6c2a36789372.index.js +2 -0
  577. richie/static/richie/js/build/86015.d8b8d0db6c2a36789372.index.js +2 -0
  578. richie/static/richie/js/build/86035.d8b8d0db6c2a36789372.index.js +2 -0
  579. richie/static/richie/js/build/86066.d8b8d0db6c2a36789372.index.js +2 -0
  580. richie/static/richie/js/build/8608.d8b8d0db6c2a36789372.index.js +2 -0
  581. richie/static/richie/js/build/86196.d8b8d0db6c2a36789372.index.js +2 -0
  582. richie/static/richie/js/build/86422.d8b8d0db6c2a36789372.index.js +2 -0
  583. richie/static/richie/js/build/86832.d8b8d0db6c2a36789372.index.js +2 -0
  584. richie/static/richie/js/build/86846.d8b8d0db6c2a36789372.index.js +2 -0
  585. richie/static/richie/js/build/86893.d8b8d0db6c2a36789372.index.js +2 -0
  586. richie/static/richie/js/build/86983.d8b8d0db6c2a36789372.index.js +2 -0
  587. richie/static/richie/js/build/87294.d8b8d0db6c2a36789372.index.js +2 -0
  588. richie/static/richie/js/build/87558.d8b8d0db6c2a36789372.index.js +2 -0
  589. richie/static/richie/js/build/879.d8b8d0db6c2a36789372.index.js +2 -0
  590. richie/static/richie/js/build/87938.d8b8d0db6c2a36789372.index.js +2 -0
  591. richie/static/richie/js/build/87959.d8b8d0db6c2a36789372.index.js +2 -0
  592. richie/static/richie/js/build/88229.d8b8d0db6c2a36789372.index.js +2 -0
  593. richie/static/richie/js/build/8860.d8b8d0db6c2a36789372.index.js +2 -0
  594. richie/static/richie/js/build/88619.d8b8d0db6c2a36789372.index.js +3 -0
  595. richie/static/richie/js/build/88655.d8b8d0db6c2a36789372.index.js +2 -0
  596. richie/static/richie/js/build/88933.d8b8d0db6c2a36789372.index.js +2 -0
  597. richie/static/richie/js/build/89110.d8b8d0db6c2a36789372.index.js +2 -0
  598. richie/static/richie/js/build/89267.d8b8d0db6c2a36789372.index.js +2 -0
  599. richie/static/richie/js/build/89309.d8b8d0db6c2a36789372.index.js +2 -0
  600. richie/static/richie/js/build/89565.d8b8d0db6c2a36789372.index.js +2 -0
  601. richie/static/richie/js/build/89634.d8b8d0db6c2a36789372.index.js +2 -0
  602. richie/static/richie/js/build/90013.d8b8d0db6c2a36789372.index.js +2 -0
  603. richie/static/richie/js/build/90040.d8b8d0db6c2a36789372.index.js +2 -0
  604. richie/static/richie/js/build/90667.d8b8d0db6c2a36789372.index.js +2 -0
  605. richie/static/richie/js/build/90751.d8b8d0db6c2a36789372.index.js +2 -0
  606. richie/static/richie/js/build/90819.d8b8d0db6c2a36789372.index.js +2 -0
  607. richie/static/richie/js/build/90827.d8b8d0db6c2a36789372.index.js +2 -0
  608. richie/static/richie/js/build/90828.d8b8d0db6c2a36789372.index.js +2 -0
  609. richie/static/richie/js/build/90883.d8b8d0db6c2a36789372.index.js +2 -0
  610. richie/static/richie/js/build/90991.d8b8d0db6c2a36789372.index.js +2 -0
  611. richie/static/richie/js/build/91020.d8b8d0db6c2a36789372.index.js +2 -0
  612. richie/static/richie/js/build/91091.d8b8d0db6c2a36789372.index.js +2 -0
  613. richie/static/richie/js/build/91435.d8b8d0db6c2a36789372.index.js +2 -0
  614. richie/static/richie/js/build/91468.d8b8d0db6c2a36789372.index.js +3 -0
  615. richie/static/richie/js/build/91470.d8b8d0db6c2a36789372.index.js +2 -0
  616. richie/static/richie/js/build/91508.d8b8d0db6c2a36789372.index.js +2 -0
  617. richie/static/richie/js/build/91590.d8b8d0db6c2a36789372.index.js +2 -0
  618. richie/static/richie/js/build/917.d8b8d0db6c2a36789372.index.js +3 -0
  619. richie/static/richie/js/build/91839.d8b8d0db6c2a36789372.index.js +2 -0
  620. richie/static/richie/js/build/92040.d8b8d0db6c2a36789372.index.js +2 -0
  621. richie/static/richie/js/build/92089.d8b8d0db6c2a36789372.index.js +2 -0
  622. richie/static/richie/js/build/9242.d8b8d0db6c2a36789372.index.js +2 -0
  623. richie/static/richie/js/build/92509.d8b8d0db6c2a36789372.index.js +2 -0
  624. richie/static/richie/js/build/92816.d8b8d0db6c2a36789372.index.js +2 -0
  625. richie/static/richie/js/build/92828.d8b8d0db6c2a36789372.index.js +2 -0
  626. richie/static/richie/js/build/92838.d8b8d0db6c2a36789372.index.js +2 -0
  627. richie/static/richie/js/build/93027.d8b8d0db6c2a36789372.index.js +2 -0
  628. richie/static/richie/js/build/93051.d8b8d0db6c2a36789372.index.js +2 -0
  629. richie/static/richie/js/build/93204.d8b8d0db6c2a36789372.index.js +2 -0
  630. richie/static/richie/js/build/93247.d8b8d0db6c2a36789372.index.js +2 -0
  631. richie/static/richie/js/build/93490.d8b8d0db6c2a36789372.index.js +2 -0
  632. richie/static/richie/js/build/93724.d8b8d0db6c2a36789372.index.js +2 -0
  633. richie/static/richie/js/build/93876.d8b8d0db6c2a36789372.index.js +2 -0
  634. richie/static/richie/js/build/93909.d8b8d0db6c2a36789372.index.js +2 -0
  635. richie/static/richie/js/build/94000.d8b8d0db6c2a36789372.index.js +2 -0
  636. richie/static/richie/js/build/94024.d8b8d0db6c2a36789372.index.js +2 -0
  637. richie/static/richie/js/build/94074.d8b8d0db6c2a36789372.index.js +2 -0
  638. richie/static/richie/js/build/94084.d8b8d0db6c2a36789372.index.js +2 -0
  639. richie/static/richie/js/build/94369.d8b8d0db6c2a36789372.index.js +2 -0
  640. richie/static/richie/js/build/94459.d8b8d0db6c2a36789372.index.js +2 -0
  641. richie/static/richie/js/build/94466.d8b8d0db6c2a36789372.index.js +2 -0
  642. richie/static/richie/js/build/94882.d8b8d0db6c2a36789372.index.js +2 -0
  643. richie/static/richie/js/build/95022.d8b8d0db6c2a36789372.index.js +2 -0
  644. richie/static/richie/js/build/95201.d8b8d0db6c2a36789372.index.js +2 -0
  645. richie/static/richie/js/build/95204.d8b8d0db6c2a36789372.index.js +2 -0
  646. richie/static/richie/js/build/95234.d8b8d0db6c2a36789372.index.js +2 -0
  647. richie/static/richie/js/build/95354.d8b8d0db6c2a36789372.index.js +2 -0
  648. richie/static/richie/js/build/95607.d8b8d0db6c2a36789372.index.js +2 -0
  649. richie/static/richie/js/build/95712.d8b8d0db6c2a36789372.index.js +2 -0
  650. richie/static/richie/js/build/95826.d8b8d0db6c2a36789372.index.js +2 -0
  651. richie/static/richie/js/build/96041.d8b8d0db6c2a36789372.index.js +2 -0
  652. richie/static/richie/js/build/96168.d8b8d0db6c2a36789372.index.js +2 -0
  653. richie/static/richie/js/build/96209.d8b8d0db6c2a36789372.index.js +2 -0
  654. richie/static/richie/js/build/96776.d8b8d0db6c2a36789372.index.js +2 -0
  655. richie/static/richie/js/build/96803.d8b8d0db6c2a36789372.index.js +2 -0
  656. richie/static/richie/js/build/96810.d8b8d0db6c2a36789372.index.js +2 -0
  657. richie/static/richie/js/build/9695.d8b8d0db6c2a36789372.index.js +2 -0
  658. richie/static/richie/js/build/97094.d8b8d0db6c2a36789372.index.js +2 -0
  659. richie/static/richie/js/build/97232.d8b8d0db6c2a36789372.index.js +2 -0
  660. richie/static/richie/js/build/9739.d8b8d0db6c2a36789372.index.js +2 -0
  661. richie/static/richie/js/build/97429.d8b8d0db6c2a36789372.index.js +2 -0
  662. richie/static/richie/js/build/97648.d8b8d0db6c2a36789372.index.js +2 -0
  663. richie/static/richie/js/build/97774.d8b8d0db6c2a36789372.index.js +2 -0
  664. richie/static/richie/js/build/97810.d8b8d0db6c2a36789372.index.js +2 -0
  665. richie/static/richie/js/build/97966.d8b8d0db6c2a36789372.index.js +2 -0
  666. richie/static/richie/js/build/97979.d8b8d0db6c2a36789372.index.js +2 -0
  667. richie/static/richie/js/build/98033.d8b8d0db6c2a36789372.index.js +2 -0
  668. richie/static/richie/js/build/98091.d8b8d0db6c2a36789372.index.js +2 -0
  669. richie/static/richie/js/build/98301.d8b8d0db6c2a36789372.index.js +2 -0
  670. richie/static/richie/js/build/98309.d8b8d0db6c2a36789372.index.js +2 -0
  671. richie/static/richie/js/build/98848.d8b8d0db6c2a36789372.index.js +2 -0
  672. richie/static/richie/js/build/98965.d8b8d0db6c2a36789372.index.js +2 -0
  673. richie/static/richie/js/build/98978.d8b8d0db6c2a36789372.index.js +2 -0
  674. richie/static/richie/js/build/99172.d8b8d0db6c2a36789372.index.js +2 -0
  675. richie/static/richie/js/build/99857.d8b8d0db6c2a36789372.index.js +2 -0
  676. richie/static/richie/js/build/99870.d8b8d0db6c2a36789372.index.js +2 -0
  677. richie/static/richie/js/build/99895.d8b8d0db6c2a36789372.index.js +2 -0
  678. richie/static/richie/js/build/index.js +1 -1
  679. richie-3.1.3.dev12.dist-info/METADATA +161 -0
  680. richie-3.1.3.dev12.dist-info/RECORD +2491 -0
  681. frontend/js/hooks/useCourseProductRelation/index.ts +0 -44
  682. richie/static/richie/js/build/10146.1973586060a86306e1e7.index.js +0 -2
  683. richie/static/richie/js/build/10301.1973586060a86306e1e7.index.js +0 -2
  684. richie/static/richie/js/build/10451.1973586060a86306e1e7.index.js +0 -2
  685. richie/static/richie/js/build/10581.1973586060a86306e1e7.index.js +0 -2
  686. richie/static/richie/js/build/10677.1973586060a86306e1e7.index.js +0 -2
  687. richie/static/richie/js/build/10760.1973586060a86306e1e7.index.js +0 -2
  688. richie/static/richie/js/build/10785.1973586060a86306e1e7.index.js +0 -2
  689. richie/static/richie/js/build/1084.1973586060a86306e1e7.index.js +0 -2
  690. richie/static/richie/js/build/11105.1973586060a86306e1e7.index.js +0 -2
  691. richie/static/richie/js/build/11164.1973586060a86306e1e7.index.js +0 -2
  692. richie/static/richie/js/build/11224.1973586060a86306e1e7.index.js +0 -2
  693. richie/static/richie/js/build/11355.1973586060a86306e1e7.index.js +0 -2
  694. richie/static/richie/js/build/11601.1973586060a86306e1e7.index.js +0 -2
  695. richie/static/richie/js/build/11756.1973586060a86306e1e7.index.js +0 -2
  696. richie/static/richie/js/build/12011.1973586060a86306e1e7.index.js +0 -2
  697. richie/static/richie/js/build/12308.1973586060a86306e1e7.index.js +0 -2
  698. richie/static/richie/js/build/12698.1973586060a86306e1e7.index.js +0 -2
  699. richie/static/richie/js/build/1323.1973586060a86306e1e7.index.js +0 -2
  700. richie/static/richie/js/build/13347.1973586060a86306e1e7.index.js +0 -2
  701. richie/static/richie/js/build/13373.1973586060a86306e1e7.index.js +0 -2
  702. richie/static/richie/js/build/13405.1973586060a86306e1e7.index.js +0 -2
  703. richie/static/richie/js/build/13563.1973586060a86306e1e7.index.js +0 -2
  704. richie/static/richie/js/build/13609.1973586060a86306e1e7.index.js +0 -2
  705. richie/static/richie/js/build/13642.1973586060a86306e1e7.index.js +0 -2
  706. richie/static/richie/js/build/13886.1973586060a86306e1e7.index.js +0 -2
  707. richie/static/richie/js/build/13995.1973586060a86306e1e7.index.js +0 -2
  708. richie/static/richie/js/build/1406.1973586060a86306e1e7.index.js +0 -2
  709. richie/static/richie/js/build/14319.1973586060a86306e1e7.index.js +0 -2
  710. richie/static/richie/js/build/14377.1973586060a86306e1e7.index.js +0 -2
  711. richie/static/richie/js/build/14398.1973586060a86306e1e7.index.js +0 -2
  712. richie/static/richie/js/build/14468.1973586060a86306e1e7.index.js +0 -2
  713. richie/static/richie/js/build/1460.1973586060a86306e1e7.index.js +0 -2
  714. richie/static/richie/js/build/14707.1973586060a86306e1e7.index.js +0 -2
  715. richie/static/richie/js/build/15162.1973586060a86306e1e7.index.js +0 -2
  716. richie/static/richie/js/build/15448.1973586060a86306e1e7.index.js +0 -2
  717. richie/static/richie/js/build/1572.1973586060a86306e1e7.index.js +0 -2
  718. richie/static/richie/js/build/16321.1973586060a86306e1e7.index.js +0 -2
  719. richie/static/richie/js/build/16394.1973586060a86306e1e7.index.js +0 -2
  720. richie/static/richie/js/build/16834.1973586060a86306e1e7.index.js +0 -2
  721. richie/static/richie/js/build/16929.1973586060a86306e1e7.index.js +0 -2
  722. richie/static/richie/js/build/17292.1973586060a86306e1e7.index.js +0 -2
  723. richie/static/richie/js/build/17404.1973586060a86306e1e7.index.js +0 -2
  724. richie/static/richie/js/build/17484.1973586060a86306e1e7.index.js +0 -2
  725. richie/static/richie/js/build/17687.1973586060a86306e1e7.index.js +0 -2
  726. richie/static/richie/js/build/17727.1973586060a86306e1e7.index.js +0 -2
  727. richie/static/richie/js/build/17836.1973586060a86306e1e7.index.js +0 -2
  728. richie/static/richie/js/build/18031.1973586060a86306e1e7.index.js +0 -2
  729. richie/static/richie/js/build/1846.1973586060a86306e1e7.index.js +0 -2
  730. richie/static/richie/js/build/1869.1973586060a86306e1e7.index.js +0 -2
  731. richie/static/richie/js/build/18865.1973586060a86306e1e7.index.js +0 -2
  732. richie/static/richie/js/build/19446.1973586060a86306e1e7.index.js +0 -2
  733. richie/static/richie/js/build/19559.1973586060a86306e1e7.index.js +0 -2
  734. richie/static/richie/js/build/19858.1973586060a86306e1e7.index.js +0 -2
  735. richie/static/richie/js/build/19950.1973586060a86306e1e7.index.js +0 -2
  736. richie/static/richie/js/build/20059.1973586060a86306e1e7.index.js +0 -2
  737. richie/static/richie/js/build/20261.1973586060a86306e1e7.index.js +0 -2
  738. richie/static/richie/js/build/205.1973586060a86306e1e7.index.js +0 -2
  739. richie/static/richie/js/build/20574.1973586060a86306e1e7.index.js +0 -2
  740. richie/static/richie/js/build/20646.1973586060a86306e1e7.index.js +0 -2
  741. richie/static/richie/js/build/20713.1973586060a86306e1e7.index.js +0 -2
  742. richie/static/richie/js/build/20938.1973586060a86306e1e7.index.js +0 -2
  743. richie/static/richie/js/build/21127.1973586060a86306e1e7.index.js +0 -2
  744. richie/static/richie/js/build/21359.1973586060a86306e1e7.index.js +0 -2
  745. richie/static/richie/js/build/21470.1973586060a86306e1e7.index.js +0 -2
  746. richie/static/richie/js/build/21650.1973586060a86306e1e7.index.js +0 -2
  747. richie/static/richie/js/build/2181.1973586060a86306e1e7.index.js +0 -2
  748. richie/static/richie/js/build/21831.1973586060a86306e1e7.index.js +0 -2
  749. richie/static/richie/js/build/21940.1973586060a86306e1e7.index.js +0 -2
  750. richie/static/richie/js/build/2217.1973586060a86306e1e7.index.js +0 -2
  751. richie/static/richie/js/build/22241.1973586060a86306e1e7.index.js +0 -2
  752. richie/static/richie/js/build/22333.1973586060a86306e1e7.index.js +0 -2
  753. richie/static/richie/js/build/22427.1973586060a86306e1e7.index.js +0 -3
  754. richie/static/richie/js/build/22827.1973586060a86306e1e7.index.js +0 -2
  755. richie/static/richie/js/build/23118.1973586060a86306e1e7.index.js +0 -3
  756. richie/static/richie/js/build/23254.1973586060a86306e1e7.index.js +0 -2
  757. richie/static/richie/js/build/23610.1973586060a86306e1e7.index.js +0 -2
  758. richie/static/richie/js/build/23643.1973586060a86306e1e7.index.js +0 -2
  759. richie/static/richie/js/build/23697.1973586060a86306e1e7.index.js +0 -2
  760. richie/static/richie/js/build/23862.1973586060a86306e1e7.index.js +0 -2
  761. richie/static/richie/js/build/23874.1973586060a86306e1e7.index.js +0 -2
  762. richie/static/richie/js/build/23961.1973586060a86306e1e7.index.js +0 -2
  763. richie/static/richie/js/build/23965.1973586060a86306e1e7.index.js +0 -2
  764. richie/static/richie/js/build/23972.1973586060a86306e1e7.index.js +0 -2
  765. richie/static/richie/js/build/24441.1973586060a86306e1e7.index.js +0 -2
  766. richie/static/richie/js/build/24529.1973586060a86306e1e7.index.js +0 -3
  767. richie/static/richie/js/build/24909.1973586060a86306e1e7.index.js +0 -2
  768. richie/static/richie/js/build/2515.1973586060a86306e1e7.index.js +0 -2
  769. richie/static/richie/js/build/25243.1973586060a86306e1e7.index.js +0 -2
  770. richie/static/richie/js/build/25272.1973586060a86306e1e7.index.js +0 -2
  771. richie/static/richie/js/build/25627.1973586060a86306e1e7.index.js +0 -2
  772. richie/static/richie/js/build/25681.1973586060a86306e1e7.index.js +0 -2
  773. richie/static/richie/js/build/25781.1973586060a86306e1e7.index.js +0 -2
  774. richie/static/richie/js/build/25873.1973586060a86306e1e7.index.js +0 -2
  775. richie/static/richie/js/build/2597.1973586060a86306e1e7.index.js +0 -2
  776. richie/static/richie/js/build/26150.1973586060a86306e1e7.index.js +0 -2
  777. richie/static/richie/js/build/2621.1973586060a86306e1e7.index.js +0 -2
  778. richie/static/richie/js/build/26226.1973586060a86306e1e7.index.js +0 -2
  779. richie/static/richie/js/build/2623.1973586060a86306e1e7.index.js +0 -2
  780. richie/static/richie/js/build/26305.1973586060a86306e1e7.index.js +0 -2
  781. richie/static/richie/js/build/26331.1973586060a86306e1e7.index.js +0 -2
  782. richie/static/richie/js/build/26425.1973586060a86306e1e7.index.js +0 -2
  783. richie/static/richie/js/build/26626.1973586060a86306e1e7.index.js +0 -2
  784. richie/static/richie/js/build/26655.1973586060a86306e1e7.index.js +0 -2
  785. richie/static/richie/js/build/26656.1973586060a86306e1e7.index.js +0 -2
  786. richie/static/richie/js/build/26718.1973586060a86306e1e7.index.js +0 -2
  787. richie/static/richie/js/build/27121.1973586060a86306e1e7.index.js +0 -2
  788. richie/static/richie/js/build/27168.1973586060a86306e1e7.index.js +0 -2
  789. richie/static/richie/js/build/27556.1973586060a86306e1e7.index.js +0 -2
  790. richie/static/richie/js/build/27726.1973586060a86306e1e7.index.js +0 -2
  791. richie/static/richie/js/build/27974.1973586060a86306e1e7.index.js +0 -2
  792. richie/static/richie/js/build/28032.1973586060a86306e1e7.index.js +0 -2
  793. richie/static/richie/js/build/28104.1973586060a86306e1e7.index.js +0 -2
  794. richie/static/richie/js/build/28351.1973586060a86306e1e7.index.js +0 -2
  795. richie/static/richie/js/build/28422.1973586060a86306e1e7.index.js +0 -2
  796. richie/static/richie/js/build/28498.1973586060a86306e1e7.index.js +0 -2
  797. richie/static/richie/js/build/28536.1973586060a86306e1e7.index.js +0 -2
  798. richie/static/richie/js/build/28561.1973586060a86306e1e7.index.js +0 -3
  799. richie/static/richie/js/build/28569.1973586060a86306e1e7.index.js +0 -2
  800. richie/static/richie/js/build/28639.1973586060a86306e1e7.index.js +0 -2
  801. richie/static/richie/js/build/28802.1973586060a86306e1e7.index.js +0 -2
  802. richie/static/richie/js/build/29178.1973586060a86306e1e7.index.js +0 -2
  803. richie/static/richie/js/build/2924.1973586060a86306e1e7.index.js +0 -2
  804. richie/static/richie/js/build/29479.1973586060a86306e1e7.index.js +0 -2
  805. richie/static/richie/js/build/29577.1973586060a86306e1e7.index.js +0 -2
  806. richie/static/richie/js/build/29596.1973586060a86306e1e7.index.js +0 -2
  807. richie/static/richie/js/build/2992.1973586060a86306e1e7.index.js +0 -2
  808. richie/static/richie/js/build/30296.1973586060a86306e1e7.index.js +0 -2
  809. richie/static/richie/js/build/30308.1973586060a86306e1e7.index.js +0 -2
  810. richie/static/richie/js/build/30529.1973586060a86306e1e7.index.js +0 -2
  811. richie/static/richie/js/build/30604.1973586060a86306e1e7.index.js +0 -2
  812. richie/static/richie/js/build/30679.1973586060a86306e1e7.index.js +0 -2
  813. richie/static/richie/js/build/3068.1973586060a86306e1e7.index.js +0 -2
  814. richie/static/richie/js/build/30865.1973586060a86306e1e7.index.js +0 -2
  815. richie/static/richie/js/build/30886.1973586060a86306e1e7.index.js +0 -2
  816. richie/static/richie/js/build/31345.1973586060a86306e1e7.index.js +0 -2
  817. richie/static/richie/js/build/31389.1973586060a86306e1e7.index.js +0 -2
  818. richie/static/richie/js/build/31513.1973586060a86306e1e7.index.js +0 -2
  819. richie/static/richie/js/build/31523.1973586060a86306e1e7.index.js +0 -2
  820. richie/static/richie/js/build/31958.1973586060a86306e1e7.index.js +0 -2
  821. richie/static/richie/js/build/32364.1973586060a86306e1e7.index.js +0 -2
  822. richie/static/richie/js/build/32456.1973586060a86306e1e7.index.js +0 -2
  823. richie/static/richie/js/build/32477.1973586060a86306e1e7.index.js +0 -2
  824. richie/static/richie/js/build/32583.1973586060a86306e1e7.index.js +0 -2
  825. richie/static/richie/js/build/33079.1973586060a86306e1e7.index.js +0 -2
  826. richie/static/richie/js/build/3342.1973586060a86306e1e7.index.js +0 -2
  827. richie/static/richie/js/build/33442.1973586060a86306e1e7.index.js +0 -2
  828. richie/static/richie/js/build/33821.1973586060a86306e1e7.index.js +0 -2
  829. richie/static/richie/js/build/3390.1973586060a86306e1e7.index.js +0 -2
  830. richie/static/richie/js/build/34291.1973586060a86306e1e7.index.js +0 -2
  831. richie/static/richie/js/build/34303.1973586060a86306e1e7.index.js +0 -2
  832. richie/static/richie/js/build/34357.1973586060a86306e1e7.index.js +0 -2
  833. richie/static/richie/js/build/34452.1973586060a86306e1e7.index.js +0 -2
  834. richie/static/richie/js/build/3486.1973586060a86306e1e7.index.js +0 -2
  835. richie/static/richie/js/build/34958.1973586060a86306e1e7.index.js +0 -2
  836. richie/static/richie/js/build/35104.1973586060a86306e1e7.index.js +0 -2
  837. richie/static/richie/js/build/35420.1973586060a86306e1e7.index.js +0 -2
  838. richie/static/richie/js/build/35707.1973586060a86306e1e7.index.js +0 -2
  839. richie/static/richie/js/build/36137.1973586060a86306e1e7.index.js +0 -2
  840. richie/static/richie/js/build/3634.1973586060a86306e1e7.index.js +0 -2
  841. richie/static/richie/js/build/36384.1973586060a86306e1e7.index.js +0 -2
  842. richie/static/richie/js/build/36396.1973586060a86306e1e7.index.js +0 -2
  843. richie/static/richie/js/build/36437.1973586060a86306e1e7.index.js +0 -2
  844. richie/static/richie/js/build/36593.1973586060a86306e1e7.index.js +0 -2
  845. richie/static/richie/js/build/3673.1973586060a86306e1e7.index.js +0 -2
  846. richie/static/richie/js/build/36745.1973586060a86306e1e7.index.js +0 -2
  847. richie/static/richie/js/build/3716.1973586060a86306e1e7.index.js +0 -2
  848. richie/static/richie/js/build/37733.1973586060a86306e1e7.index.js +0 -2
  849. richie/static/richie/js/build/37826.1973586060a86306e1e7.index.js +0 -3
  850. richie/static/richie/js/build/38140.1973586060a86306e1e7.index.js +0 -3
  851. richie/static/richie/js/build/3819.1973586060a86306e1e7.index.js +0 -2
  852. richie/static/richie/js/build/38273.1973586060a86306e1e7.index.js +0 -3
  853. richie/static/richie/js/build/38449.1973586060a86306e1e7.index.js +0 -2
  854. richie/static/richie/js/build/38970.1973586060a86306e1e7.index.js +0 -2
  855. richie/static/richie/js/build/38997.1973586060a86306e1e7.index.js +0 -2
  856. richie/static/richie/js/build/39210.1973586060a86306e1e7.index.js +0 -2
  857. richie/static/richie/js/build/39285.1973586060a86306e1e7.index.js +0 -2
  858. richie/static/richie/js/build/39487.1973586060a86306e1e7.index.js +0 -2
  859. richie/static/richie/js/build/39493.1973586060a86306e1e7.index.js +0 -2
  860. richie/static/richie/js/build/39553.1973586060a86306e1e7.index.js +0 -2
  861. richie/static/richie/js/build/39587.1973586060a86306e1e7.index.js +0 -2
  862. richie/static/richie/js/build/39818.1973586060a86306e1e7.index.js +0 -2
  863. richie/static/richie/js/build/39872.1973586060a86306e1e7.index.js +0 -2
  864. richie/static/richie/js/build/39956.1973586060a86306e1e7.index.js +0 -2
  865. richie/static/richie/js/build/39969.1973586060a86306e1e7.index.js +0 -2
  866. richie/static/richie/js/build/40119.1973586060a86306e1e7.index.js +0 -2
  867. richie/static/richie/js/build/40478.1973586060a86306e1e7.index.js +0 -2
  868. richie/static/richie/js/build/40517.1973586060a86306e1e7.index.js +0 -3
  869. richie/static/richie/js/build/40617.1973586060a86306e1e7.index.js +0 -2
  870. richie/static/richie/js/build/40960.1973586060a86306e1e7.index.js +0 -2
  871. richie/static/richie/js/build/41163.1973586060a86306e1e7.index.js +0 -2
  872. richie/static/richie/js/build/4152.1973586060a86306e1e7.index.js +0 -2
  873. richie/static/richie/js/build/41676.1973586060a86306e1e7.index.js +0 -2
  874. richie/static/richie/js/build/41780.1973586060a86306e1e7.index.js +0 -2
  875. richie/static/richie/js/build/42009.1973586060a86306e1e7.index.js +0 -2
  876. richie/static/richie/js/build/42423.1973586060a86306e1e7.index.js +0 -2
  877. richie/static/richie/js/build/42542.1973586060a86306e1e7.index.js +0 -2
  878. richie/static/richie/js/build/4276.1973586060a86306e1e7.index.js +0 -2
  879. richie/static/richie/js/build/43470.1973586060a86306e1e7.index.js +0 -2
  880. richie/static/richie/js/build/43653.1973586060a86306e1e7.index.js +0 -2
  881. richie/static/richie/js/build/43755.1973586060a86306e1e7.index.js +0 -2
  882. richie/static/richie/js/build/43761.1973586060a86306e1e7.index.js +0 -2
  883. richie/static/richie/js/build/43872.1973586060a86306e1e7.index.js +0 -2
  884. richie/static/richie/js/build/44088.1973586060a86306e1e7.index.js +0 -2
  885. richie/static/richie/js/build/44154.1973586060a86306e1e7.index.js +0 -2
  886. richie/static/richie/js/build/44165.1973586060a86306e1e7.index.js +0 -2
  887. richie/static/richie/js/build/44190.1973586060a86306e1e7.index.js +0 -2
  888. richie/static/richie/js/build/44303.1973586060a86306e1e7.index.js +0 -2
  889. richie/static/richie/js/build/44455.1973586060a86306e1e7.index.js +0 -2
  890. richie/static/richie/js/build/44644.1973586060a86306e1e7.index.js +0 -2
  891. richie/static/richie/js/build/44705.1973586060a86306e1e7.index.js +0 -2
  892. richie/static/richie/js/build/44715.1973586060a86306e1e7.index.js +0 -2
  893. richie/static/richie/js/build/44718.1973586060a86306e1e7.index.js +0 -2
  894. richie/static/richie/js/build/45222.1973586060a86306e1e7.index.js +0 -2
  895. richie/static/richie/js/build/45586.1973586060a86306e1e7.index.js +0 -2
  896. richie/static/richie/js/build/45613.1973586060a86306e1e7.index.js +0 -2
  897. richie/static/richie/js/build/45995.1973586060a86306e1e7.index.js +0 -2
  898. richie/static/richie/js/build/46029.1973586060a86306e1e7.index.js +0 -2
  899. richie/static/richie/js/build/46374.1973586060a86306e1e7.index.js +0 -2
  900. richie/static/richie/js/build/465.1973586060a86306e1e7.index.js +0 -2
  901. richie/static/richie/js/build/46537.1973586060a86306e1e7.index.js +0 -2
  902. richie/static/richie/js/build/46596.1973586060a86306e1e7.index.js +0 -2
  903. richie/static/richie/js/build/46639.1973586060a86306e1e7.index.js +0 -2
  904. richie/static/richie/js/build/4689.1973586060a86306e1e7.index.js +0 -2
  905. richie/static/richie/js/build/46910.1973586060a86306e1e7.index.js +0 -2
  906. richie/static/richie/js/build/46934.1973586060a86306e1e7.index.js +0 -2
  907. richie/static/richie/js/build/47084.1973586060a86306e1e7.index.js +0 -2
  908. richie/static/richie/js/build/47163.1973586060a86306e1e7.index.js +0 -2
  909. richie/static/richie/js/build/47304.1973586060a86306e1e7.index.js +0 -2
  910. richie/static/richie/js/build/47353.1973586060a86306e1e7.index.js +0 -2
  911. richie/static/richie/js/build/47643.1973586060a86306e1e7.index.js +0 -2
  912. richie/static/richie/js/build/47681.1973586060a86306e1e7.index.js +0 -2
  913. richie/static/richie/js/build/47839.1973586060a86306e1e7.index.js +0 -2
  914. richie/static/richie/js/build/47843.1973586060a86306e1e7.index.js +0 -2
  915. richie/static/richie/js/build/48206.1973586060a86306e1e7.index.js +0 -2
  916. richie/static/richie/js/build/48218.1973586060a86306e1e7.index.js +0 -2
  917. richie/static/richie/js/build/48260.1973586060a86306e1e7.index.js +0 -2
  918. richie/static/richie/js/build/48315.1973586060a86306e1e7.index.js +0 -2
  919. richie/static/richie/js/build/48337.1973586060a86306e1e7.index.js +0 -3
  920. richie/static/richie/js/build/48473.1973586060a86306e1e7.index.js +0 -2
  921. richie/static/richie/js/build/48592.1973586060a86306e1e7.index.js +0 -2
  922. richie/static/richie/js/build/48603.1973586060a86306e1e7.index.js +0 -2
  923. richie/static/richie/js/build/48608.1973586060a86306e1e7.index.js +0 -2
  924. richie/static/richie/js/build/48861.1973586060a86306e1e7.index.js +0 -2
  925. richie/static/richie/js/build/48960.1973586060a86306e1e7.index.js +0 -2
  926. richie/static/richie/js/build/49157.1973586060a86306e1e7.index.js +0 -2
  927. richie/static/richie/js/build/49345.1973586060a86306e1e7.index.js +0 -2
  928. richie/static/richie/js/build/49495.1973586060a86306e1e7.index.js +0 -2
  929. richie/static/richie/js/build/49526.1973586060a86306e1e7.index.js +0 -2
  930. richie/static/richie/js/build/49561.1973586060a86306e1e7.index.js +0 -2
  931. richie/static/richie/js/build/49582.1973586060a86306e1e7.index.js +0 -2
  932. richie/static/richie/js/build/49687.1973586060a86306e1e7.index.js +0 -2
  933. richie/static/richie/js/build/4969.1973586060a86306e1e7.index.js +0 -2
  934. richie/static/richie/js/build/49949.1973586060a86306e1e7.index.js +0 -2
  935. richie/static/richie/js/build/49958.1973586060a86306e1e7.index.js +0 -2
  936. richie/static/richie/js/build/50179.1973586060a86306e1e7.index.js +0 -2
  937. richie/static/richie/js/build/50181.1973586060a86306e1e7.index.js +0 -2
  938. richie/static/richie/js/build/50204.1973586060a86306e1e7.index.js +0 -3
  939. richie/static/richie/js/build/50235.1973586060a86306e1e7.index.js +0 -2
  940. richie/static/richie/js/build/50353.1973586060a86306e1e7.index.js +0 -2
  941. richie/static/richie/js/build/5038.1973586060a86306e1e7.index.js +0 -2
  942. richie/static/richie/js/build/50571.1973586060a86306e1e7.index.js +0 -2
  943. richie/static/richie/js/build/50625.1973586060a86306e1e7.index.js +0 -2
  944. richie/static/richie/js/build/50890.1973586060a86306e1e7.index.js +0 -2
  945. richie/static/richie/js/build/51082.1973586060a86306e1e7.index.js +0 -2
  946. richie/static/richie/js/build/51113.1973586060a86306e1e7.index.js +0 -2
  947. richie/static/richie/js/build/51363.1973586060a86306e1e7.index.js +0 -2
  948. richie/static/richie/js/build/51387.1973586060a86306e1e7.index.js +0 -2
  949. richie/static/richie/js/build/51551.1973586060a86306e1e7.index.js +0 -2
  950. richie/static/richie/js/build/51628.1973586060a86306e1e7.index.js +0 -2
  951. richie/static/richie/js/build/51756.1973586060a86306e1e7.index.js +0 -2
  952. richie/static/richie/js/build/51805.1973586060a86306e1e7.index.js +0 -2
  953. richie/static/richie/js/build/51961.1973586060a86306e1e7.index.js +0 -2
  954. richie/static/richie/js/build/52186.1973586060a86306e1e7.index.js +0 -2
  955. richie/static/richie/js/build/52472.1973586060a86306e1e7.index.js +0 -2
  956. richie/static/richie/js/build/52961.1973586060a86306e1e7.index.js +0 -2
  957. richie/static/richie/js/build/52969.1973586060a86306e1e7.index.js +0 -2
  958. richie/static/richie/js/build/53468.1973586060a86306e1e7.index.js +0 -2
  959. richie/static/richie/js/build/5361.1973586060a86306e1e7.index.js +0 -2
  960. richie/static/richie/js/build/53813.1973586060a86306e1e7.index.js +0 -2
  961. richie/static/richie/js/build/53829.1973586060a86306e1e7.index.js +0 -2
  962. richie/static/richie/js/build/53979.1973586060a86306e1e7.index.js +0 -2
  963. richie/static/richie/js/build/54030.1973586060a86306e1e7.index.js +0 -2
  964. richie/static/richie/js/build/54162.1973586060a86306e1e7.index.js +0 -2
  965. richie/static/richie/js/build/54572.1973586060a86306e1e7.index.js +0 -2
  966. richie/static/richie/js/build/54964.1973586060a86306e1e7.index.js +0 -2
  967. richie/static/richie/js/build/55430.1973586060a86306e1e7.index.js +0 -2
  968. richie/static/richie/js/build/55575.1973586060a86306e1e7.index.js +0 -2
  969. richie/static/richie/js/build/55746.1973586060a86306e1e7.index.js +0 -2
  970. richie/static/richie/js/build/55798.1973586060a86306e1e7.index.js +0 -2
  971. richie/static/richie/js/build/55849.1973586060a86306e1e7.index.js +0 -2
  972. richie/static/richie/js/build/55862.1973586060a86306e1e7.index.js +0 -2
  973. richie/static/richie/js/build/55889.1973586060a86306e1e7.index.js +0 -2
  974. richie/static/richie/js/build/55970.1973586060a86306e1e7.index.js +0 -2
  975. richie/static/richie/js/build/56009.1973586060a86306e1e7.index.js +0 -2
  976. richie/static/richie/js/build/56120.1973586060a86306e1e7.index.js +0 -2
  977. richie/static/richie/js/build/56186.1973586060a86306e1e7.index.js +0 -2
  978. richie/static/richie/js/build/56287.1973586060a86306e1e7.index.js +0 -2
  979. richie/static/richie/js/build/56382.1973586060a86306e1e7.index.js +0 -2
  980. richie/static/richie/js/build/56383.1973586060a86306e1e7.index.js +0 -2
  981. richie/static/richie/js/build/56463.1973586060a86306e1e7.index.js +0 -3
  982. richie/static/richie/js/build/5648.1973586060a86306e1e7.index.js +0 -2
  983. richie/static/richie/js/build/56503.1973586060a86306e1e7.index.js +0 -2
  984. richie/static/richie/js/build/56598.1973586060a86306e1e7.index.js +0 -2
  985. richie/static/richie/js/build/56917.1973586060a86306e1e7.index.js +0 -2
  986. richie/static/richie/js/build/5705.1973586060a86306e1e7.index.js +0 -2
  987. richie/static/richie/js/build/57523.1973586060a86306e1e7.index.js +0 -2
  988. richie/static/richie/js/build/57647.1973586060a86306e1e7.index.js +0 -3
  989. richie/static/richie/js/build/57743.1973586060a86306e1e7.index.js +0 -2
  990. richie/static/richie/js/build/57956.1973586060a86306e1e7.index.js +0 -2
  991. richie/static/richie/js/build/58327.1973586060a86306e1e7.index.js +0 -2
  992. richie/static/richie/js/build/58435.1973586060a86306e1e7.index.js +0 -2
  993. richie/static/richie/js/build/58614.1973586060a86306e1e7.index.js +0 -2
  994. richie/static/richie/js/build/5881.1973586060a86306e1e7.index.js +0 -2
  995. richie/static/richie/js/build/58828.1973586060a86306e1e7.index.js +0 -2
  996. richie/static/richie/js/build/58905.1973586060a86306e1e7.index.js +0 -2
  997. richie/static/richie/js/build/58918.1973586060a86306e1e7.index.js +0 -2
  998. richie/static/richie/js/build/58969.1973586060a86306e1e7.index.js +0 -2
  999. richie/static/richie/js/build/59213.1973586060a86306e1e7.index.js +0 -2
  1000. richie/static/richie/js/build/59759.1973586060a86306e1e7.index.js +0 -2
  1001. richie/static/richie/js/build/59930.1973586060a86306e1e7.index.js +0 -2
  1002. richie/static/richie/js/build/60000.1973586060a86306e1e7.index.js +0 -2
  1003. richie/static/richie/js/build/60251.1973586060a86306e1e7.index.js +0 -2
  1004. richie/static/richie/js/build/60324.1973586060a86306e1e7.index.js +0 -2
  1005. richie/static/richie/js/build/6036.1973586060a86306e1e7.index.js +0 -2
  1006. richie/static/richie/js/build/60386.1973586060a86306e1e7.index.js +0 -2
  1007. richie/static/richie/js/build/60546.1973586060a86306e1e7.index.js +0 -2
  1008. richie/static/richie/js/build/60671.1973586060a86306e1e7.index.js +0 -2
  1009. richie/static/richie/js/build/60711.1973586060a86306e1e7.index.js +0 -2
  1010. richie/static/richie/js/build/60757.1973586060a86306e1e7.index.js +0 -2
  1011. richie/static/richie/js/build/60808.1973586060a86306e1e7.index.js +0 -2
  1012. richie/static/richie/js/build/60938.1973586060a86306e1e7.index.js +0 -2
  1013. richie/static/richie/js/build/61049.1973586060a86306e1e7.index.js +0 -2
  1014. richie/static/richie/js/build/61068.1973586060a86306e1e7.index.js +0 -2
  1015. richie/static/richie/js/build/61075.1973586060a86306e1e7.index.js +0 -2
  1016. richie/static/richie/js/build/61191.1973586060a86306e1e7.index.js +0 -3
  1017. richie/static/richie/js/build/61621.1973586060a86306e1e7.index.js +0 -2
  1018. richie/static/richie/js/build/61890.1973586060a86306e1e7.index.js +0 -2
  1019. richie/static/richie/js/build/61995.1973586060a86306e1e7.index.js +0 -2
  1020. richie/static/richie/js/build/62005.1973586060a86306e1e7.index.js +0 -2
  1021. richie/static/richie/js/build/62170.1973586060a86306e1e7.index.js +0 -2
  1022. richie/static/richie/js/build/62308.1973586060a86306e1e7.index.js +0 -2
  1023. richie/static/richie/js/build/62419.1973586060a86306e1e7.index.js +0 -2
  1024. richie/static/richie/js/build/62482.1973586060a86306e1e7.index.js +0 -2
  1025. richie/static/richie/js/build/62550.1973586060a86306e1e7.index.js +0 -2
  1026. richie/static/richie/js/build/6260.1973586060a86306e1e7.index.js +0 -2
  1027. richie/static/richie/js/build/62794.1973586060a86306e1e7.index.js +0 -2
  1028. richie/static/richie/js/build/63248.1973586060a86306e1e7.index.js +0 -2
  1029. richie/static/richie/js/build/63377.1973586060a86306e1e7.index.js +0 -2
  1030. richie/static/richie/js/build/63458.1973586060a86306e1e7.index.js +0 -2
  1031. richie/static/richie/js/build/63493.1973586060a86306e1e7.index.js +0 -2
  1032. richie/static/richie/js/build/63570.1973586060a86306e1e7.index.js +0 -2
  1033. richie/static/richie/js/build/63635.1973586060a86306e1e7.index.js +0 -2
  1034. richie/static/richie/js/build/63945.1973586060a86306e1e7.index.js +0 -2
  1035. richie/static/richie/js/build/64021.1973586060a86306e1e7.index.js +0 -2
  1036. richie/static/richie/js/build/64118.1973586060a86306e1e7.index.js +0 -2
  1037. richie/static/richie/js/build/64146.1973586060a86306e1e7.index.js +0 -2
  1038. richie/static/richie/js/build/64581.1973586060a86306e1e7.index.js +0 -2
  1039. richie/static/richie/js/build/64637.1973586060a86306e1e7.index.js +0 -2
  1040. richie/static/richie/js/build/64757.1973586060a86306e1e7.index.js +0 -2
  1041. richie/static/richie/js/build/64971.1973586060a86306e1e7.index.js +0 -2
  1042. richie/static/richie/js/build/65020.1973586060a86306e1e7.index.js +0 -2
  1043. richie/static/richie/js/build/65138.1973586060a86306e1e7.index.js +0 -2
  1044. richie/static/richie/js/build/65219.1973586060a86306e1e7.index.js +0 -2
  1045. richie/static/richie/js/build/65254.1973586060a86306e1e7.index.js +0 -2
  1046. richie/static/richie/js/build/65427.1973586060a86306e1e7.index.js +0 -2
  1047. richie/static/richie/js/build/6546.1973586060a86306e1e7.index.js +0 -2
  1048. richie/static/richie/js/build/65620.1973586060a86306e1e7.index.js +0 -2
  1049. richie/static/richie/js/build/65684.1973586060a86306e1e7.index.js +0 -2
  1050. richie/static/richie/js/build/65809.1973586060a86306e1e7.index.js +0 -2
  1051. richie/static/richie/js/build/65886.1973586060a86306e1e7.index.js +0 -2
  1052. richie/static/richie/js/build/6589.1973586060a86306e1e7.index.js +0 -2
  1053. richie/static/richie/js/build/66097.1973586060a86306e1e7.index.js +0 -2
  1054. richie/static/richie/js/build/661.1973586060a86306e1e7.index.js +0 -2
  1055. richie/static/richie/js/build/66227.1973586060a86306e1e7.index.js +0 -2
  1056. richie/static/richie/js/build/66761.1973586060a86306e1e7.index.js +0 -2
  1057. richie/static/richie/js/build/66865.1973586060a86306e1e7.index.js +0 -2
  1058. richie/static/richie/js/build/66967.1973586060a86306e1e7.index.js +0 -2
  1059. richie/static/richie/js/build/67059.1973586060a86306e1e7.index.js +0 -2
  1060. richie/static/richie/js/build/67076.1973586060a86306e1e7.index.js +0 -2
  1061. richie/static/richie/js/build/67112.1973586060a86306e1e7.index.js +0 -2
  1062. richie/static/richie/js/build/67152.1973586060a86306e1e7.index.js +0 -2
  1063. richie/static/richie/js/build/67359.1973586060a86306e1e7.index.js +0 -2
  1064. richie/static/richie/js/build/67650.1973586060a86306e1e7.index.js +0 -2
  1065. richie/static/richie/js/build/67718.1973586060a86306e1e7.index.js +0 -2
  1066. richie/static/richie/js/build/67899.1973586060a86306e1e7.index.js +0 -2
  1067. richie/static/richie/js/build/67959.1973586060a86306e1e7.index.js +0 -2
  1068. richie/static/richie/js/build/6808.1973586060a86306e1e7.index.js +0 -2
  1069. richie/static/richie/js/build/68410.1973586060a86306e1e7.index.js +0 -2
  1070. richie/static/richie/js/build/68454.1973586060a86306e1e7.index.js +0 -2
  1071. richie/static/richie/js/build/68565.1973586060a86306e1e7.index.js +0 -2
  1072. richie/static/richie/js/build/68572.1973586060a86306e1e7.index.js +0 -2
  1073. richie/static/richie/js/build/68584.1973586060a86306e1e7.index.js +0 -2
  1074. richie/static/richie/js/build/68784.1973586060a86306e1e7.index.js +0 -2
  1075. richie/static/richie/js/build/68830.1973586060a86306e1e7.index.js +0 -2
  1076. richie/static/richie/js/build/68872.1973586060a86306e1e7.index.js +0 -2
  1077. richie/static/richie/js/build/68894.1973586060a86306e1e7.index.js +0 -2
  1078. richie/static/richie/js/build/69138.1973586060a86306e1e7.index.js +0 -2
  1079. richie/static/richie/js/build/69706.1973586060a86306e1e7.index.js +0 -2
  1080. richie/static/richie/js/build/69955.1973586060a86306e1e7.index.js +0 -2
  1081. richie/static/richie/js/build/70223.1973586060a86306e1e7.index.js +0 -2
  1082. richie/static/richie/js/build/7026.1973586060a86306e1e7.index.js +0 -2
  1083. richie/static/richie/js/build/70449.1973586060a86306e1e7.index.js +0 -2
  1084. richie/static/richie/js/build/70585.1973586060a86306e1e7.index.js +0 -2
  1085. richie/static/richie/js/build/7076.1973586060a86306e1e7.index.js +0 -2
  1086. richie/static/richie/js/build/70803.1973586060a86306e1e7.index.js +0 -2
  1087. richie/static/richie/js/build/71159.1973586060a86306e1e7.index.js +0 -2
  1088. richie/static/richie/js/build/71204.1973586060a86306e1e7.index.js +0 -2
  1089. richie/static/richie/js/build/71245.1973586060a86306e1e7.index.js +0 -2
  1090. richie/static/richie/js/build/71457.1973586060a86306e1e7.index.js +0 -2
  1091. richie/static/richie/js/build/717.1973586060a86306e1e7.index.js +0 -2
  1092. richie/static/richie/js/build/71818.1973586060a86306e1e7.index.js +0 -2
  1093. richie/static/richie/js/build/71853.1973586060a86306e1e7.index.js +0 -2
  1094. richie/static/richie/js/build/71882.1973586060a86306e1e7.index.js +0 -2
  1095. richie/static/richie/js/build/72186.1973586060a86306e1e7.index.js +0 -2
  1096. richie/static/richie/js/build/72402.1973586060a86306e1e7.index.js +0 -2
  1097. richie/static/richie/js/build/72639.1973586060a86306e1e7.index.js +0 -2
  1098. richie/static/richie/js/build/72832.1973586060a86306e1e7.index.js +0 -2
  1099. richie/static/richie/js/build/72867.1973586060a86306e1e7.index.js +0 -2
  1100. richie/static/richie/js/build/72917.1973586060a86306e1e7.index.js +0 -2
  1101. richie/static/richie/js/build/7335.1973586060a86306e1e7.index.js +0 -2
  1102. richie/static/richie/js/build/74009.1973586060a86306e1e7.index.js +0 -2
  1103. richie/static/richie/js/build/74049.1973586060a86306e1e7.index.js +0 -2
  1104. richie/static/richie/js/build/74089.1973586060a86306e1e7.index.js +0 -2
  1105. richie/static/richie/js/build/74185.1973586060a86306e1e7.index.js +0 -3
  1106. richie/static/richie/js/build/74456.1973586060a86306e1e7.index.js +0 -2
  1107. richie/static/richie/js/build/74457.1973586060a86306e1e7.index.js +0 -2
  1108. richie/static/richie/js/build/74636.1973586060a86306e1e7.index.js +0 -2
  1109. richie/static/richie/js/build/74924.1973586060a86306e1e7.index.js +0 -2
  1110. richie/static/richie/js/build/74996.1973586060a86306e1e7.index.js +0 -2
  1111. richie/static/richie/js/build/75079.1973586060a86306e1e7.index.js +0 -2
  1112. richie/static/richie/js/build/75127.1973586060a86306e1e7.index.js +0 -2
  1113. richie/static/richie/js/build/75168.1973586060a86306e1e7.index.js +0 -2
  1114. richie/static/richie/js/build/75201.1973586060a86306e1e7.index.js +0 -2
  1115. richie/static/richie/js/build/75687.1973586060a86306e1e7.index.js +0 -2
  1116. richie/static/richie/js/build/75805.1973586060a86306e1e7.index.js +0 -2
  1117. richie/static/richie/js/build/76122.1973586060a86306e1e7.index.js +0 -2
  1118. richie/static/richie/js/build/76219.1973586060a86306e1e7.index.js +0 -2
  1119. richie/static/richie/js/build/76342.1973586060a86306e1e7.index.js +0 -2
  1120. richie/static/richie/js/build/7661.1973586060a86306e1e7.index.js +0 -2
  1121. richie/static/richie/js/build/76620.1973586060a86306e1e7.index.js +0 -2
  1122. richie/static/richie/js/build/76710.1973586060a86306e1e7.index.js +0 -2
  1123. richie/static/richie/js/build/77018.1973586060a86306e1e7.index.js +0 -2
  1124. richie/static/richie/js/build/77082.1973586060a86306e1e7.index.js +0 -2
  1125. richie/static/richie/js/build/77211.1973586060a86306e1e7.index.js +0 -2
  1126. richie/static/richie/js/build/77311.1973586060a86306e1e7.index.js +0 -2
  1127. richie/static/richie/js/build/77356.1973586060a86306e1e7.index.js +0 -2
  1128. richie/static/richie/js/build/77479.1973586060a86306e1e7.index.js +0 -2
  1129. richie/static/richie/js/build/77638.1973586060a86306e1e7.index.js +0 -2
  1130. richie/static/richie/js/build/77653.1973586060a86306e1e7.index.js +0 -2
  1131. richie/static/richie/js/build/7768.1973586060a86306e1e7.index.js +0 -2
  1132. richie/static/richie/js/build/77687.1973586060a86306e1e7.index.js +0 -2
  1133. richie/static/richie/js/build/77803.1973586060a86306e1e7.index.js +0 -2
  1134. richie/static/richie/js/build/77818.1973586060a86306e1e7.index.js +0 -2
  1135. richie/static/richie/js/build/77865.1973586060a86306e1e7.index.js +0 -2
  1136. richie/static/richie/js/build/77987.1973586060a86306e1e7.index.js +0 -2
  1137. richie/static/richie/js/build/78157.1973586060a86306e1e7.index.js +0 -2
  1138. richie/static/richie/js/build/78250.1973586060a86306e1e7.index.js +0 -2
  1139. richie/static/richie/js/build/78264.1973586060a86306e1e7.index.js +0 -2
  1140. richie/static/richie/js/build/78415.1973586060a86306e1e7.index.js +0 -2
  1141. richie/static/richie/js/build/78581.1973586060a86306e1e7.index.js +0 -2
  1142. richie/static/richie/js/build/78603.1973586060a86306e1e7.index.js +0 -2
  1143. richie/static/richie/js/build/79094.1973586060a86306e1e7.index.js +0 -2
  1144. richie/static/richie/js/build/79350.1973586060a86306e1e7.index.js +0 -2
  1145. richie/static/richie/js/build/7936.1973586060a86306e1e7.index.js +0 -2
  1146. richie/static/richie/js/build/79590.1973586060a86306e1e7.index.js +0 -2
  1147. richie/static/richie/js/build/79783.1973586060a86306e1e7.index.js +0 -2
  1148. richie/static/richie/js/build/80027.1973586060a86306e1e7.index.js +0 -2
  1149. richie/static/richie/js/build/80318.1973586060a86306e1e7.index.js +0 -2
  1150. richie/static/richie/js/build/80399.1973586060a86306e1e7.index.js +0 -2
  1151. richie/static/richie/js/build/80414.1973586060a86306e1e7.index.js +0 -3
  1152. richie/static/richie/js/build/80622.1973586060a86306e1e7.index.js +0 -2
  1153. richie/static/richie/js/build/80628.1973586060a86306e1e7.index.js +0 -2
  1154. richie/static/richie/js/build/80971.1973586060a86306e1e7.index.js +0 -2
  1155. richie/static/richie/js/build/81194.1973586060a86306e1e7.index.js +0 -2
  1156. richie/static/richie/js/build/81242.1973586060a86306e1e7.index.js +0 -2
  1157. richie/static/richie/js/build/81267.1973586060a86306e1e7.index.js +0 -2
  1158. richie/static/richie/js/build/81474.1973586060a86306e1e7.index.js +0 -2
  1159. richie/static/richie/js/build/81521.1973586060a86306e1e7.index.js +0 -2
  1160. richie/static/richie/js/build/8175.1973586060a86306e1e7.index.js +0 -2
  1161. richie/static/richie/js/build/81760.1973586060a86306e1e7.index.js +0 -2
  1162. richie/static/richie/js/build/81932.1973586060a86306e1e7.index.js +0 -2
  1163. richie/static/richie/js/build/82055.1973586060a86306e1e7.index.js +0 -2
  1164. richie/static/richie/js/build/82224.1973586060a86306e1e7.index.js +0 -2
  1165. richie/static/richie/js/build/82260.1973586060a86306e1e7.index.js +0 -2
  1166. richie/static/richie/js/build/82327.1973586060a86306e1e7.index.js +0 -2
  1167. richie/static/richie/js/build/82489.1973586060a86306e1e7.index.js +0 -2
  1168. richie/static/richie/js/build/82546.1973586060a86306e1e7.index.js +0 -2
  1169. richie/static/richie/js/build/82730.1973586060a86306e1e7.index.js +0 -2
  1170. richie/static/richie/js/build/82822.1973586060a86306e1e7.index.js +0 -2
  1171. richie/static/richie/js/build/82884.1973586060a86306e1e7.index.js +0 -2
  1172. richie/static/richie/js/build/83394.1973586060a86306e1e7.index.js +0 -2
  1173. richie/static/richie/js/build/83845.1973586060a86306e1e7.index.js +0 -2
  1174. richie/static/richie/js/build/83881.1973586060a86306e1e7.index.js +0 -2
  1175. richie/static/richie/js/build/83898.1973586060a86306e1e7.index.js +0 -2
  1176. richie/static/richie/js/build/84021.1973586060a86306e1e7.index.js +0 -2
  1177. richie/static/richie/js/build/84117.1973586060a86306e1e7.index.js +0 -2
  1178. richie/static/richie/js/build/84748.1973586060a86306e1e7.index.js +0 -2
  1179. richie/static/richie/js/build/84909.1973586060a86306e1e7.index.js +0 -2
  1180. richie/static/richie/js/build/84962.1973586060a86306e1e7.index.js +0 -2
  1181. richie/static/richie/js/build/85022.1973586060a86306e1e7.index.js +0 -2
  1182. richie/static/richie/js/build/85121.1973586060a86306e1e7.index.js +0 -2
  1183. richie/static/richie/js/build/85466.1973586060a86306e1e7.index.js +0 -2
  1184. richie/static/richie/js/build/85725.1973586060a86306e1e7.index.js +0 -2
  1185. richie/static/richie/js/build/85975.1973586060a86306e1e7.index.js +0 -2
  1186. richie/static/richie/js/build/86015.1973586060a86306e1e7.index.js +0 -2
  1187. richie/static/richie/js/build/86035.1973586060a86306e1e7.index.js +0 -2
  1188. richie/static/richie/js/build/86066.1973586060a86306e1e7.index.js +0 -2
  1189. richie/static/richie/js/build/8608.1973586060a86306e1e7.index.js +0 -2
  1190. richie/static/richie/js/build/86196.1973586060a86306e1e7.index.js +0 -2
  1191. richie/static/richie/js/build/86422.1973586060a86306e1e7.index.js +0 -2
  1192. richie/static/richie/js/build/86832.1973586060a86306e1e7.index.js +0 -2
  1193. richie/static/richie/js/build/86846.1973586060a86306e1e7.index.js +0 -2
  1194. richie/static/richie/js/build/86893.1973586060a86306e1e7.index.js +0 -2
  1195. richie/static/richie/js/build/86983.1973586060a86306e1e7.index.js +0 -2
  1196. richie/static/richie/js/build/87294.1973586060a86306e1e7.index.js +0 -2
  1197. richie/static/richie/js/build/87558.1973586060a86306e1e7.index.js +0 -2
  1198. richie/static/richie/js/build/879.1973586060a86306e1e7.index.js +0 -2
  1199. richie/static/richie/js/build/87938.1973586060a86306e1e7.index.js +0 -2
  1200. richie/static/richie/js/build/87959.1973586060a86306e1e7.index.js +0 -2
  1201. richie/static/richie/js/build/88229.1973586060a86306e1e7.index.js +0 -2
  1202. richie/static/richie/js/build/8860.1973586060a86306e1e7.index.js +0 -2
  1203. richie/static/richie/js/build/88619.1973586060a86306e1e7.index.js +0 -3
  1204. richie/static/richie/js/build/88655.1973586060a86306e1e7.index.js +0 -2
  1205. richie/static/richie/js/build/88933.1973586060a86306e1e7.index.js +0 -2
  1206. richie/static/richie/js/build/89110.1973586060a86306e1e7.index.js +0 -2
  1207. richie/static/richie/js/build/89267.1973586060a86306e1e7.index.js +0 -2
  1208. richie/static/richie/js/build/89309.1973586060a86306e1e7.index.js +0 -2
  1209. richie/static/richie/js/build/89565.1973586060a86306e1e7.index.js +0 -2
  1210. richie/static/richie/js/build/89634.1973586060a86306e1e7.index.js +0 -2
  1211. richie/static/richie/js/build/90013.1973586060a86306e1e7.index.js +0 -2
  1212. richie/static/richie/js/build/90040.1973586060a86306e1e7.index.js +0 -2
  1213. richie/static/richie/js/build/90667.1973586060a86306e1e7.index.js +0 -2
  1214. richie/static/richie/js/build/90751.1973586060a86306e1e7.index.js +0 -2
  1215. richie/static/richie/js/build/90819.1973586060a86306e1e7.index.js +0 -2
  1216. richie/static/richie/js/build/90827.1973586060a86306e1e7.index.js +0 -2
  1217. richie/static/richie/js/build/90828.1973586060a86306e1e7.index.js +0 -2
  1218. richie/static/richie/js/build/90883.1973586060a86306e1e7.index.js +0 -2
  1219. richie/static/richie/js/build/90991.1973586060a86306e1e7.index.js +0 -2
  1220. richie/static/richie/js/build/91020.1973586060a86306e1e7.index.js +0 -2
  1221. richie/static/richie/js/build/91091.1973586060a86306e1e7.index.js +0 -2
  1222. richie/static/richie/js/build/91435.1973586060a86306e1e7.index.js +0 -2
  1223. richie/static/richie/js/build/91468.1973586060a86306e1e7.index.js +0 -3
  1224. richie/static/richie/js/build/91470.1973586060a86306e1e7.index.js +0 -2
  1225. richie/static/richie/js/build/91508.1973586060a86306e1e7.index.js +0 -2
  1226. richie/static/richie/js/build/91590.1973586060a86306e1e7.index.js +0 -2
  1227. richie/static/richie/js/build/917.1973586060a86306e1e7.index.js +0 -3
  1228. richie/static/richie/js/build/91839.1973586060a86306e1e7.index.js +0 -2
  1229. richie/static/richie/js/build/92040.1973586060a86306e1e7.index.js +0 -2
  1230. richie/static/richie/js/build/92089.1973586060a86306e1e7.index.js +0 -2
  1231. richie/static/richie/js/build/9242.1973586060a86306e1e7.index.js +0 -2
  1232. richie/static/richie/js/build/92509.1973586060a86306e1e7.index.js +0 -2
  1233. richie/static/richie/js/build/92816.1973586060a86306e1e7.index.js +0 -2
  1234. richie/static/richie/js/build/92828.1973586060a86306e1e7.index.js +0 -2
  1235. richie/static/richie/js/build/92838.1973586060a86306e1e7.index.js +0 -2
  1236. richie/static/richie/js/build/93027.1973586060a86306e1e7.index.js +0 -2
  1237. richie/static/richie/js/build/93051.1973586060a86306e1e7.index.js +0 -2
  1238. richie/static/richie/js/build/93204.1973586060a86306e1e7.index.js +0 -2
  1239. richie/static/richie/js/build/93247.1973586060a86306e1e7.index.js +0 -2
  1240. richie/static/richie/js/build/93490.1973586060a86306e1e7.index.js +0 -2
  1241. richie/static/richie/js/build/93724.1973586060a86306e1e7.index.js +0 -2
  1242. richie/static/richie/js/build/93876.1973586060a86306e1e7.index.js +0 -2
  1243. richie/static/richie/js/build/93909.1973586060a86306e1e7.index.js +0 -2
  1244. richie/static/richie/js/build/94000.1973586060a86306e1e7.index.js +0 -2
  1245. richie/static/richie/js/build/94024.1973586060a86306e1e7.index.js +0 -2
  1246. richie/static/richie/js/build/94074.1973586060a86306e1e7.index.js +0 -2
  1247. richie/static/richie/js/build/94084.1973586060a86306e1e7.index.js +0 -2
  1248. richie/static/richie/js/build/94369.1973586060a86306e1e7.index.js +0 -2
  1249. richie/static/richie/js/build/94459.1973586060a86306e1e7.index.js +0 -2
  1250. richie/static/richie/js/build/94466.1973586060a86306e1e7.index.js +0 -2
  1251. richie/static/richie/js/build/94882.1973586060a86306e1e7.index.js +0 -2
  1252. richie/static/richie/js/build/95022.1973586060a86306e1e7.index.js +0 -2
  1253. richie/static/richie/js/build/95201.1973586060a86306e1e7.index.js +0 -2
  1254. richie/static/richie/js/build/95204.1973586060a86306e1e7.index.js +0 -2
  1255. richie/static/richie/js/build/95234.1973586060a86306e1e7.index.js +0 -2
  1256. richie/static/richie/js/build/95354.1973586060a86306e1e7.index.js +0 -2
  1257. richie/static/richie/js/build/95607.1973586060a86306e1e7.index.js +0 -2
  1258. richie/static/richie/js/build/95712.1973586060a86306e1e7.index.js +0 -2
  1259. richie/static/richie/js/build/95826.1973586060a86306e1e7.index.js +0 -2
  1260. richie/static/richie/js/build/96041.1973586060a86306e1e7.index.js +0 -2
  1261. richie/static/richie/js/build/96168.1973586060a86306e1e7.index.js +0 -2
  1262. richie/static/richie/js/build/96209.1973586060a86306e1e7.index.js +0 -2
  1263. richie/static/richie/js/build/96776.1973586060a86306e1e7.index.js +0 -2
  1264. richie/static/richie/js/build/96803.1973586060a86306e1e7.index.js +0 -2
  1265. richie/static/richie/js/build/96810.1973586060a86306e1e7.index.js +0 -2
  1266. richie/static/richie/js/build/9695.1973586060a86306e1e7.index.js +0 -2
  1267. richie/static/richie/js/build/97094.1973586060a86306e1e7.index.js +0 -2
  1268. richie/static/richie/js/build/97216.1973586060a86306e1e7.index.js +0 -3
  1269. richie/static/richie/js/build/97232.1973586060a86306e1e7.index.js +0 -2
  1270. richie/static/richie/js/build/9739.1973586060a86306e1e7.index.js +0 -2
  1271. richie/static/richie/js/build/97429.1973586060a86306e1e7.index.js +0 -2
  1272. richie/static/richie/js/build/97648.1973586060a86306e1e7.index.js +0 -2
  1273. richie/static/richie/js/build/97774.1973586060a86306e1e7.index.js +0 -2
  1274. richie/static/richie/js/build/97810.1973586060a86306e1e7.index.js +0 -2
  1275. richie/static/richie/js/build/97966.1973586060a86306e1e7.index.js +0 -2
  1276. richie/static/richie/js/build/97979.1973586060a86306e1e7.index.js +0 -2
  1277. richie/static/richie/js/build/98033.1973586060a86306e1e7.index.js +0 -2
  1278. richie/static/richie/js/build/98091.1973586060a86306e1e7.index.js +0 -2
  1279. richie/static/richie/js/build/98301.1973586060a86306e1e7.index.js +0 -2
  1280. richie/static/richie/js/build/98309.1973586060a86306e1e7.index.js +0 -2
  1281. richie/static/richie/js/build/98848.1973586060a86306e1e7.index.js +0 -2
  1282. richie/static/richie/js/build/98965.1973586060a86306e1e7.index.js +0 -2
  1283. richie/static/richie/js/build/98978.1973586060a86306e1e7.index.js +0 -2
  1284. richie/static/richie/js/build/99172.1973586060a86306e1e7.index.js +0 -2
  1285. richie/static/richie/js/build/99857.1973586060a86306e1e7.index.js +0 -2
  1286. richie/static/richie/js/build/99870.1973586060a86306e1e7.index.js +0 -2
  1287. richie/static/richie/js/build/99895.1973586060a86306e1e7.index.js +0 -2
  1288. richie-3.1.3.dev11.dist-info/METADATA +0 -161
  1289. richie-3.1.3.dev11.dist-info/RECORD +0 -2491
  1290. /richie/static/richie/js/build/{10072.1973586060a86306e1e7.index.js → 10072.d8b8d0db6c2a36789372.index.js} +0 -0
  1291. /richie/static/richie/js/build/{1051.1973586060a86306e1e7.index.js → 1051.d8b8d0db6c2a36789372.index.js} +0 -0
  1292. /richie/static/richie/js/build/{10557.1973586060a86306e1e7.index.js → 10557.d8b8d0db6c2a36789372.index.js} +0 -0
  1293. /richie/static/richie/js/build/{1056.1973586060a86306e1e7.index.js → 1056.d8b8d0db6c2a36789372.index.js} +0 -0
  1294. /richie/static/richie/js/build/{10576.1973586060a86306e1e7.index.js → 10576.d8b8d0db6c2a36789372.index.js} +0 -0
  1295. /richie/static/richie/js/build/{11077.1973586060a86306e1e7.index.js → 11077.d8b8d0db6c2a36789372.index.js} +0 -0
  1296. /richie/static/richie/js/build/{11141.1973586060a86306e1e7.index.js → 11141.d8b8d0db6c2a36789372.index.js} +0 -0
  1297. /richie/static/richie/js/build/{11366.1973586060a86306e1e7.index.js → 11366.d8b8d0db6c2a36789372.index.js} +0 -0
  1298. /richie/static/richie/js/build/{11392.1973586060a86306e1e7.index.js → 11392.d8b8d0db6c2a36789372.index.js} +0 -0
  1299. /richie/static/richie/js/build/{11536.1973586060a86306e1e7.index.js → 11536.d8b8d0db6c2a36789372.index.js} +0 -0
  1300. /richie/static/richie/js/build/{11542.1973586060a86306e1e7.index.js → 11542.d8b8d0db6c2a36789372.index.js} +0 -0
  1301. /richie/static/richie/js/build/{11849.1973586060a86306e1e7.index.js → 11849.d8b8d0db6c2a36789372.index.js} +0 -0
  1302. /richie/static/richie/js/build/{11946.1973586060a86306e1e7.index.js → 11946.d8b8d0db6c2a36789372.index.js} +0 -0
  1303. /richie/static/richie/js/build/{12495.1973586060a86306e1e7.index.js → 12495.d8b8d0db6c2a36789372.index.js} +0 -0
  1304. /richie/static/richie/js/build/{12591.1973586060a86306e1e7.index.js → 12591.d8b8d0db6c2a36789372.index.js} +0 -0
  1305. /richie/static/richie/js/build/{1269.1973586060a86306e1e7.index.js → 1269.d8b8d0db6c2a36789372.index.js} +0 -0
  1306. /richie/static/richie/js/build/{12759.1973586060a86306e1e7.index.js → 12759.d8b8d0db6c2a36789372.index.js} +0 -0
  1307. /richie/static/richie/js/build/{13038.1973586060a86306e1e7.index.js → 13038.d8b8d0db6c2a36789372.index.js} +0 -0
  1308. /richie/static/richie/js/build/{13335.1973586060a86306e1e7.index.js → 13335.d8b8d0db6c2a36789372.index.js} +0 -0
  1309. /richie/static/richie/js/build/{13573.1973586060a86306e1e7.index.js → 13573.d8b8d0db6c2a36789372.index.js} +0 -0
  1310. /richie/static/richie/js/build/{13611.1973586060a86306e1e7.index.js → 13611.d8b8d0db6c2a36789372.index.js} +0 -0
  1311. /richie/static/richie/js/build/{13677.1973586060a86306e1e7.index.js → 13677.d8b8d0db6c2a36789372.index.js} +0 -0
  1312. /richie/static/richie/js/build/{14091.1973586060a86306e1e7.index.js → 14091.d8b8d0db6c2a36789372.index.js} +0 -0
  1313. /richie/static/richie/js/build/{14406.1973586060a86306e1e7.index.js → 14406.d8b8d0db6c2a36789372.index.js} +0 -0
  1314. /richie/static/richie/js/build/{14568.1973586060a86306e1e7.index.js → 14568.d8b8d0db6c2a36789372.index.js} +0 -0
  1315. /richie/static/richie/js/build/{1469.1973586060a86306e1e7.index.js → 1469.d8b8d0db6c2a36789372.index.js} +0 -0
  1316. /richie/static/richie/js/build/{14697.1973586060a86306e1e7.index.js → 14697.d8b8d0db6c2a36789372.index.js} +0 -0
  1317. /richie/static/richie/js/build/{14904.1973586060a86306e1e7.index.js → 14904.d8b8d0db6c2a36789372.index.js} +0 -0
  1318. /richie/static/richie/js/build/{15095.1973586060a86306e1e7.index.js → 15095.d8b8d0db6c2a36789372.index.js} +0 -0
  1319. /richie/static/richie/js/build/{15142.1973586060a86306e1e7.index.js → 15142.d8b8d0db6c2a36789372.index.js} +0 -0
  1320. /richie/static/richie/js/build/{15357.1973586060a86306e1e7.index.js → 15357.d8b8d0db6c2a36789372.index.js} +0 -0
  1321. /richie/static/richie/js/build/{15494.1973586060a86306e1e7.index.js → 15494.d8b8d0db6c2a36789372.index.js} +0 -0
  1322. /richie/static/richie/js/build/{15796.1973586060a86306e1e7.index.js → 15796.d8b8d0db6c2a36789372.index.js} +0 -0
  1323. /richie/static/richie/js/build/{16129.1973586060a86306e1e7.index.js → 16129.d8b8d0db6c2a36789372.index.js} +0 -0
  1324. /richie/static/richie/js/build/{16196.1973586060a86306e1e7.index.js → 16196.d8b8d0db6c2a36789372.index.js} +0 -0
  1325. /richie/static/richie/js/build/{16311.1973586060a86306e1e7.index.js → 16311.d8b8d0db6c2a36789372.index.js} +0 -0
  1326. /richie/static/richie/js/build/{16360.1973586060a86306e1e7.index.js → 16360.d8b8d0db6c2a36789372.index.js} +0 -0
  1327. /richie/static/richie/js/build/{16637.1973586060a86306e1e7.index.js → 16637.d8b8d0db6c2a36789372.index.js} +0 -0
  1328. /richie/static/richie/js/build/{17453.1973586060a86306e1e7.index.js → 17453.d8b8d0db6c2a36789372.index.js} +0 -0
  1329. /richie/static/richie/js/build/{17567.1973586060a86306e1e7.index.js → 17567.d8b8d0db6c2a36789372.index.js} +0 -0
  1330. /richie/static/richie/js/build/{17665.1973586060a86306e1e7.index.js → 17665.d8b8d0db6c2a36789372.index.js} +0 -0
  1331. /richie/static/richie/js/build/{17774.1973586060a86306e1e7.index.js → 17774.d8b8d0db6c2a36789372.index.js} +0 -0
  1332. /richie/static/richie/js/build/{17884.1973586060a86306e1e7.index.js → 17884.d8b8d0db6c2a36789372.index.js} +0 -0
  1333. /richie/static/richie/js/build/{18182.1973586060a86306e1e7.index.js → 18182.d8b8d0db6c2a36789372.index.js} +0 -0
  1334. /richie/static/richie/js/build/{18312.1973586060a86306e1e7.index.js → 18312.d8b8d0db6c2a36789372.index.js} +0 -0
  1335. /richie/static/richie/js/build/{18383.1973586060a86306e1e7.index.js → 18383.d8b8d0db6c2a36789372.index.js} +0 -0
  1336. /richie/static/richie/js/build/{18409.1973586060a86306e1e7.index.js → 18409.d8b8d0db6c2a36789372.index.js} +0 -0
  1337. /richie/static/richie/js/build/{18489.1973586060a86306e1e7.index.js → 18489.d8b8d0db6c2a36789372.index.js} +0 -0
  1338. /richie/static/richie/js/build/{18507.1973586060a86306e1e7.index.js → 18507.d8b8d0db6c2a36789372.index.js} +0 -0
  1339. /richie/static/richie/js/build/{19006.1973586060a86306e1e7.index.js → 19006.d8b8d0db6c2a36789372.index.js} +0 -0
  1340. /richie/static/richie/js/build/{19103.1973586060a86306e1e7.index.js → 19103.d8b8d0db6c2a36789372.index.js} +0 -0
  1341. /richie/static/richie/js/build/{19124.1973586060a86306e1e7.index.js → 19124.d8b8d0db6c2a36789372.index.js} +0 -0
  1342. /richie/static/richie/js/build/{1925.1973586060a86306e1e7.index.js → 1925.d8b8d0db6c2a36789372.index.js} +0 -0
  1343. /richie/static/richie/js/build/{19381.1973586060a86306e1e7.index.js → 19381.d8b8d0db6c2a36789372.index.js} +0 -0
  1344. /richie/static/richie/js/build/{19422.1973586060a86306e1e7.index.js → 19422.d8b8d0db6c2a36789372.index.js} +0 -0
  1345. /richie/static/richie/js/build/{19466.1973586060a86306e1e7.index.js → 19466.d8b8d0db6c2a36789372.index.js} +0 -0
  1346. /richie/static/richie/js/build/{19519.1973586060a86306e1e7.index.js → 19519.d8b8d0db6c2a36789372.index.js} +0 -0
  1347. /richie/static/richie/js/build/{19612.1973586060a86306e1e7.index.js → 19612.d8b8d0db6c2a36789372.index.js} +0 -0
  1348. /richie/static/richie/js/build/{19847.1973586060a86306e1e7.index.js → 19847.d8b8d0db6c2a36789372.index.js} +0 -0
  1349. /richie/static/richie/js/build/{19855.1973586060a86306e1e7.index.js → 19855.d8b8d0db6c2a36789372.index.js} +0 -0
  1350. /richie/static/richie/js/build/{20007.1973586060a86306e1e7.index.js → 20007.d8b8d0db6c2a36789372.index.js} +0 -0
  1351. /richie/static/richie/js/build/{20296.1973586060a86306e1e7.index.js → 20296.d8b8d0db6c2a36789372.index.js} +0 -0
  1352. /richie/static/richie/js/build/{20429.1973586060a86306e1e7.index.js → 20429.d8b8d0db6c2a36789372.index.js} +0 -0
  1353. /richie/static/richie/js/build/{20449.1973586060a86306e1e7.index.js → 20449.d8b8d0db6c2a36789372.index.js} +0 -0
  1354. /richie/static/richie/js/build/{2046.1973586060a86306e1e7.index.js → 2046.d8b8d0db6c2a36789372.index.js} +0 -0
  1355. /richie/static/richie/js/build/{20464.1973586060a86306e1e7.index.js → 20464.d8b8d0db6c2a36789372.index.js} +0 -0
  1356. /richie/static/richie/js/build/{20494.1973586060a86306e1e7.index.js → 20494.d8b8d0db6c2a36789372.index.js} +0 -0
  1357. /richie/static/richie/js/build/{20512.1973586060a86306e1e7.index.js → 20512.d8b8d0db6c2a36789372.index.js} +0 -0
  1358. /richie/static/richie/js/build/{2094.1973586060a86306e1e7.index.js → 2094.d8b8d0db6c2a36789372.index.js} +0 -0
  1359. /richie/static/richie/js/build/{21209.1973586060a86306e1e7.index.js → 21209.d8b8d0db6c2a36789372.index.js} +0 -0
  1360. /richie/static/richie/js/build/{2132.1973586060a86306e1e7.index.js → 2132.d8b8d0db6c2a36789372.index.js} +0 -0
  1361. /richie/static/richie/js/build/{21998.1973586060a86306e1e7.index.js → 21998.d8b8d0db6c2a36789372.index.js} +0 -0
  1362. /richie/static/richie/js/build/{22147.1973586060a86306e1e7.index.js → 22147.d8b8d0db6c2a36789372.index.js} +0 -0
  1363. /richie/static/richie/js/build/{22361.1973586060a86306e1e7.index.js → 22361.d8b8d0db6c2a36789372.index.js} +0 -0
  1364. /richie/static/richie/js/build/{22420.1973586060a86306e1e7.index.js → 22420.d8b8d0db6c2a36789372.index.js} +0 -0
  1365. /richie/static/richie/js/build/{22473.1973586060a86306e1e7.index.js → 22473.d8b8d0db6c2a36789372.index.js} +0 -0
  1366. /richie/static/richie/js/build/{22500.1973586060a86306e1e7.index.js → 22500.d8b8d0db6c2a36789372.index.js} +0 -0
  1367. /richie/static/richie/js/build/{22522.1973586060a86306e1e7.index.js → 22522.d8b8d0db6c2a36789372.index.js} +0 -0
  1368. /richie/static/richie/js/build/{22722.1973586060a86306e1e7.index.js → 22722.d8b8d0db6c2a36789372.index.js} +0 -0
  1369. /richie/static/richie/js/build/{2284.1973586060a86306e1e7.index.js → 2284.d8b8d0db6c2a36789372.index.js} +0 -0
  1370. /richie/static/richie/js/build/{22950.1973586060a86306e1e7.index.js → 22950.d8b8d0db6c2a36789372.index.js} +0 -0
  1371. /richie/static/richie/js/build/{22951.1973586060a86306e1e7.index.js → 22951.d8b8d0db6c2a36789372.index.js} +0 -0
  1372. /richie/static/richie/js/build/{22956.1973586060a86306e1e7.index.js → 22956.d8b8d0db6c2a36789372.index.js} +0 -0
  1373. /richie/static/richie/js/build/{2328.1973586060a86306e1e7.index.js → 2328.d8b8d0db6c2a36789372.index.js} +0 -0
  1374. /richie/static/richie/js/build/{2334.1973586060a86306e1e7.index.js → 2334.d8b8d0db6c2a36789372.index.js} +0 -0
  1375. /richie/static/richie/js/build/{23481.1973586060a86306e1e7.index.js → 23481.d8b8d0db6c2a36789372.index.js} +0 -0
  1376. /richie/static/richie/js/build/{23618.1973586060a86306e1e7.index.js → 23618.d8b8d0db6c2a36789372.index.js} +0 -0
  1377. /richie/static/richie/js/build/{23685.1973586060a86306e1e7.index.js → 23685.d8b8d0db6c2a36789372.index.js} +0 -0
  1378. /richie/static/richie/js/build/{23832.1973586060a86306e1e7.index.js → 23832.d8b8d0db6c2a36789372.index.js} +0 -0
  1379. /richie/static/richie/js/build/{23872.1973586060a86306e1e7.index.js → 23872.d8b8d0db6c2a36789372.index.js} +0 -0
  1380. /richie/static/richie/js/build/{2400.1973586060a86306e1e7.index.js → 2400.d8b8d0db6c2a36789372.index.js} +0 -0
  1381. /richie/static/richie/js/build/{24364.1973586060a86306e1e7.index.js → 24364.d8b8d0db6c2a36789372.index.js} +0 -0
  1382. /richie/static/richie/js/build/{24419.1973586060a86306e1e7.index.js → 24419.d8b8d0db6c2a36789372.index.js} +0 -0
  1383. /richie/static/richie/js/build/{24597.1973586060a86306e1e7.index.js → 24597.d8b8d0db6c2a36789372.index.js} +0 -0
  1384. /richie/static/richie/js/build/{24815.1973586060a86306e1e7.index.js → 24815.d8b8d0db6c2a36789372.index.js} +0 -0
  1385. /richie/static/richie/js/build/{24937.1973586060a86306e1e7.index.js → 24937.d8b8d0db6c2a36789372.index.js} +0 -0
  1386. /richie/static/richie/js/build/{25452.1973586060a86306e1e7.index.js → 25452.d8b8d0db6c2a36789372.index.js} +0 -0
  1387. /richie/static/richie/js/build/{25552.1973586060a86306e1e7.index.js → 25552.d8b8d0db6c2a36789372.index.js} +0 -0
  1388. /richie/static/richie/js/build/{25778.1973586060a86306e1e7.index.js → 25778.d8b8d0db6c2a36789372.index.js} +0 -0
  1389. /richie/static/richie/js/build/{26128.1973586060a86306e1e7.index.js → 26128.d8b8d0db6c2a36789372.index.js} +0 -0
  1390. /richie/static/richie/js/build/{26709.1973586060a86306e1e7.index.js → 26709.d8b8d0db6c2a36789372.index.js} +0 -0
  1391. /richie/static/richie/js/build/{26765.1973586060a86306e1e7.index.js → 26765.d8b8d0db6c2a36789372.index.js} +0 -0
  1392. /richie/static/richie/js/build/{26905.1973586060a86306e1e7.index.js → 26905.d8b8d0db6c2a36789372.index.js} +0 -0
  1393. /richie/static/richie/js/build/{26972.1973586060a86306e1e7.index.js → 26972.d8b8d0db6c2a36789372.index.js} +0 -0
  1394. /richie/static/richie/js/build/{27061.1973586060a86306e1e7.index.js → 27061.d8b8d0db6c2a36789372.index.js} +0 -0
  1395. /richie/static/richie/js/build/{27402.1973586060a86306e1e7.index.js → 27402.d8b8d0db6c2a36789372.index.js} +0 -0
  1396. /richie/static/richie/js/build/{27520.1973586060a86306e1e7.index.js → 27520.d8b8d0db6c2a36789372.index.js} +0 -0
  1397. /richie/static/richie/js/build/{27525.1973586060a86306e1e7.index.js → 27525.d8b8d0db6c2a36789372.index.js} +0 -0
  1398. /richie/static/richie/js/build/{27577.1973586060a86306e1e7.index.js → 27577.d8b8d0db6c2a36789372.index.js} +0 -0
  1399. /richie/static/richie/js/build/{2764.1973586060a86306e1e7.index.js → 2764.d8b8d0db6c2a36789372.index.js} +0 -0
  1400. /richie/static/richie/js/build/{27762.1973586060a86306e1e7.index.js → 27762.d8b8d0db6c2a36789372.index.js} +0 -0
  1401. /richie/static/richie/js/build/{27811.1973586060a86306e1e7.index.js → 27811.d8b8d0db6c2a36789372.index.js} +0 -0
  1402. /richie/static/richie/js/build/{27949.1973586060a86306e1e7.index.js → 27949.d8b8d0db6c2a36789372.index.js} +0 -0
  1403. /richie/static/richie/js/build/{27973.1973586060a86306e1e7.index.js → 27973.d8b8d0db6c2a36789372.index.js} +0 -0
  1404. /richie/static/richie/js/build/{28058.1973586060a86306e1e7.index.js → 28058.d8b8d0db6c2a36789372.index.js} +0 -0
  1405. /richie/static/richie/js/build/{28136.1973586060a86306e1e7.index.js → 28136.d8b8d0db6c2a36789372.index.js} +0 -0
  1406. /richie/static/richie/js/build/{28161.1973586060a86306e1e7.index.js → 28161.d8b8d0db6c2a36789372.index.js} +0 -0
  1407. /richie/static/richie/js/build/{28269.1973586060a86306e1e7.index.js → 28269.d8b8d0db6c2a36789372.index.js} +0 -0
  1408. /richie/static/richie/js/build/{28558.1973586060a86306e1e7.index.js → 28558.d8b8d0db6c2a36789372.index.js} +0 -0
  1409. /richie/static/richie/js/build/{28603.1973586060a86306e1e7.index.js → 28603.d8b8d0db6c2a36789372.index.js} +0 -0
  1410. /richie/static/richie/js/build/{28759.1973586060a86306e1e7.index.js → 28759.d8b8d0db6c2a36789372.index.js} +0 -0
  1411. /richie/static/richie/js/build/{28799.1973586060a86306e1e7.index.js → 28799.d8b8d0db6c2a36789372.index.js} +0 -0
  1412. /richie/static/richie/js/build/{28958.1973586060a86306e1e7.index.js → 28958.d8b8d0db6c2a36789372.index.js} +0 -0
  1413. /richie/static/richie/js/build/{29084.1973586060a86306e1e7.index.js → 29084.d8b8d0db6c2a36789372.index.js} +0 -0
  1414. /richie/static/richie/js/build/{29180.1973586060a86306e1e7.index.js → 29180.d8b8d0db6c2a36789372.index.js} +0 -0
  1415. /richie/static/richie/js/build/{29437.1973586060a86306e1e7.index.js → 29437.d8b8d0db6c2a36789372.index.js} +0 -0
  1416. /richie/static/richie/js/build/{29586.1973586060a86306e1e7.index.js → 29586.d8b8d0db6c2a36789372.index.js} +0 -0
  1417. /richie/static/richie/js/build/{29690.1973586060a86306e1e7.index.js → 29690.d8b8d0db6c2a36789372.index.js} +0 -0
  1418. /richie/static/richie/js/build/{29696.1973586060a86306e1e7.index.js → 29696.d8b8d0db6c2a36789372.index.js} +0 -0
  1419. /richie/static/richie/js/build/{29982.1973586060a86306e1e7.index.js → 29982.d8b8d0db6c2a36789372.index.js} +0 -0
  1420. /richie/static/richie/js/build/{30171.1973586060a86306e1e7.index.js → 30171.d8b8d0db6c2a36789372.index.js} +0 -0
  1421. /richie/static/richie/js/build/{30354.1973586060a86306e1e7.index.js → 30354.d8b8d0db6c2a36789372.index.js} +0 -0
  1422. /richie/static/richie/js/build/{30442.1973586060a86306e1e7.index.js → 30442.d8b8d0db6c2a36789372.index.js} +0 -0
  1423. /richie/static/richie/js/build/{30532.1973586060a86306e1e7.index.js → 30532.d8b8d0db6c2a36789372.index.js} +0 -0
  1424. /richie/static/richie/js/build/{30535.1973586060a86306e1e7.index.js → 30535.d8b8d0db6c2a36789372.index.js} +0 -0
  1425. /richie/static/richie/js/build/{30548.1973586060a86306e1e7.index.js → 30548.d8b8d0db6c2a36789372.index.js} +0 -0
  1426. /richie/static/richie/js/build/{30680.1973586060a86306e1e7.index.js → 30680.d8b8d0db6c2a36789372.index.js} +0 -0
  1427. /richie/static/richie/js/build/{30740.1973586060a86306e1e7.index.js → 30740.d8b8d0db6c2a36789372.index.js} +0 -0
  1428. /richie/static/richie/js/build/{30847.1973586060a86306e1e7.index.js → 30847.d8b8d0db6c2a36789372.index.js} +0 -0
  1429. /richie/static/richie/js/build/{31024.1973586060a86306e1e7.index.js → 31024.d8b8d0db6c2a36789372.index.js} +0 -0
  1430. /richie/static/richie/js/build/{31048.1973586060a86306e1e7.index.js → 31048.d8b8d0db6c2a36789372.index.js} +0 -0
  1431. /richie/static/richie/js/build/{31080.1973586060a86306e1e7.index.js → 31080.d8b8d0db6c2a36789372.index.js} +0 -0
  1432. /richie/static/richie/js/build/{31165.1973586060a86306e1e7.index.js → 31165.d8b8d0db6c2a36789372.index.js} +0 -0
  1433. /richie/static/richie/js/build/{31223.1973586060a86306e1e7.index.js → 31223.d8b8d0db6c2a36789372.index.js} +0 -0
  1434. /richie/static/richie/js/build/{31539.1973586060a86306e1e7.index.js → 31539.d8b8d0db6c2a36789372.index.js} +0 -0
  1435. /richie/static/richie/js/build/{31633.1973586060a86306e1e7.index.js → 31633.d8b8d0db6c2a36789372.index.js} +0 -0
  1436. /richie/static/richie/js/build/{31647.1973586060a86306e1e7.index.js → 31647.d8b8d0db6c2a36789372.index.js} +0 -0
  1437. /richie/static/richie/js/build/{31662.1973586060a86306e1e7.index.js → 31662.d8b8d0db6c2a36789372.index.js} +0 -0
  1438. /richie/static/richie/js/build/{32123.1973586060a86306e1e7.index.js → 32123.d8b8d0db6c2a36789372.index.js} +0 -0
  1439. /richie/static/richie/js/build/{322.1973586060a86306e1e7.index.js → 322.d8b8d0db6c2a36789372.index.js} +0 -0
  1440. /richie/static/richie/js/build/{32212.1973586060a86306e1e7.index.js → 32212.d8b8d0db6c2a36789372.index.js} +0 -0
  1441. /richie/static/richie/js/build/{32538.1973586060a86306e1e7.index.js → 32538.d8b8d0db6c2a36789372.index.js} +0 -0
  1442. /richie/static/richie/js/build/{32619.1973586060a86306e1e7.index.js → 32619.d8b8d0db6c2a36789372.index.js} +0 -0
  1443. /richie/static/richie/js/build/{3283.1973586060a86306e1e7.index.js → 3283.d8b8d0db6c2a36789372.index.js} +0 -0
  1444. /richie/static/richie/js/build/{33030.1973586060a86306e1e7.index.js → 33030.d8b8d0db6c2a36789372.index.js} +0 -0
  1445. /richie/static/richie/js/build/{33445.1973586060a86306e1e7.index.js → 33445.d8b8d0db6c2a36789372.index.js} +0 -0
  1446. /richie/static/richie/js/build/{33466.1973586060a86306e1e7.index.js → 33466.d8b8d0db6c2a36789372.index.js} +0 -0
  1447. /richie/static/richie/js/build/{34217.1973586060a86306e1e7.index.js → 34217.d8b8d0db6c2a36789372.index.js} +0 -0
  1448. /richie/static/richie/js/build/{34392.1973586060a86306e1e7.index.js → 34392.d8b8d0db6c2a36789372.index.js} +0 -0
  1449. /richie/static/richie/js/build/{34419.1973586060a86306e1e7.index.js → 34419.d8b8d0db6c2a36789372.index.js} +0 -0
  1450. /richie/static/richie/js/build/{34678.1973586060a86306e1e7.index.js → 34678.d8b8d0db6c2a36789372.index.js} +0 -0
  1451. /richie/static/richie/js/build/{3468.1973586060a86306e1e7.index.js → 3468.d8b8d0db6c2a36789372.index.js} +0 -0
  1452. /richie/static/richie/js/build/{34736.1973586060a86306e1e7.index.js → 34736.d8b8d0db6c2a36789372.index.js} +0 -0
  1453. /richie/static/richie/js/build/{34743.1973586060a86306e1e7.index.js → 34743.d8b8d0db6c2a36789372.index.js} +0 -0
  1454. /richie/static/richie/js/build/{34779.1973586060a86306e1e7.index.js → 34779.d8b8d0db6c2a36789372.index.js} +0 -0
  1455. /richie/static/richie/js/build/{35116.1973586060a86306e1e7.index.js → 35116.d8b8d0db6c2a36789372.index.js} +0 -0
  1456. /richie/static/richie/js/build/{35659.1973586060a86306e1e7.index.js → 35659.d8b8d0db6c2a36789372.index.js} +0 -0
  1457. /richie/static/richie/js/build/{35792.1973586060a86306e1e7.index.js → 35792.d8b8d0db6c2a36789372.index.js} +0 -0
  1458. /richie/static/richie/js/build/{3587.1973586060a86306e1e7.index.js → 3587.d8b8d0db6c2a36789372.index.js} +0 -0
  1459. /richie/static/richie/js/build/{35872.1973586060a86306e1e7.index.js → 35872.d8b8d0db6c2a36789372.index.js} +0 -0
  1460. /richie/static/richie/js/build/{35915.1973586060a86306e1e7.index.js → 35915.d8b8d0db6c2a36789372.index.js} +0 -0
  1461. /richie/static/richie/js/build/{36154.1973586060a86306e1e7.index.js → 36154.d8b8d0db6c2a36789372.index.js} +0 -0
  1462. /richie/static/richie/js/build/{36353.1973586060a86306e1e7.index.js → 36353.d8b8d0db6c2a36789372.index.js} +0 -0
  1463. /richie/static/richie/js/build/{36468.1973586060a86306e1e7.index.js → 36468.d8b8d0db6c2a36789372.index.js} +0 -0
  1464. /richie/static/richie/js/build/{37030.1973586060a86306e1e7.index.js → 37030.d8b8d0db6c2a36789372.index.js} +0 -0
  1465. /richie/static/richie/js/build/{37255.1973586060a86306e1e7.index.js → 37255.d8b8d0db6c2a36789372.index.js} +0 -0
  1466. /richie/static/richie/js/build/{37342.1973586060a86306e1e7.index.js → 37342.d8b8d0db6c2a36789372.index.js} +0 -0
  1467. /richie/static/richie/js/build/{37785.1973586060a86306e1e7.index.js → 37785.d8b8d0db6c2a36789372.index.js} +0 -0
  1468. /richie/static/richie/js/build/{37805.1973586060a86306e1e7.index.js → 37805.d8b8d0db6c2a36789372.index.js} +0 -0
  1469. /richie/static/richie/js/build/{37854.1973586060a86306e1e7.index.js → 37854.d8b8d0db6c2a36789372.index.js} +0 -0
  1470. /richie/static/richie/js/build/{38021.1973586060a86306e1e7.index.js → 38021.d8b8d0db6c2a36789372.index.js} +0 -0
  1471. /richie/static/richie/js/build/{38052.1973586060a86306e1e7.index.js → 38052.d8b8d0db6c2a36789372.index.js} +0 -0
  1472. /richie/static/richie/js/build/{38080.1973586060a86306e1e7.index.js → 38080.d8b8d0db6c2a36789372.index.js} +0 -0
  1473. /richie/static/richie/js/build/{38100.1973586060a86306e1e7.index.js → 38100.d8b8d0db6c2a36789372.index.js} +0 -0
  1474. /richie/static/richie/js/build/{38272.1973586060a86306e1e7.index.js → 38272.d8b8d0db6c2a36789372.index.js} +0 -0
  1475. /richie/static/richie/js/build/{38274.1973586060a86306e1e7.index.js → 38274.d8b8d0db6c2a36789372.index.js} +0 -0
  1476. /richie/static/richie/js/build/{38903.1973586060a86306e1e7.index.js → 38903.d8b8d0db6c2a36789372.index.js} +0 -0
  1477. /richie/static/richie/js/build/{38977.1973586060a86306e1e7.index.js → 38977.d8b8d0db6c2a36789372.index.js} +0 -0
  1478. /richie/static/richie/js/build/{39112.1973586060a86306e1e7.index.js → 39112.d8b8d0db6c2a36789372.index.js} +0 -0
  1479. /richie/static/richie/js/build/{39163.1973586060a86306e1e7.index.js → 39163.d8b8d0db6c2a36789372.index.js} +0 -0
  1480. /richie/static/richie/js/build/{39888.1973586060a86306e1e7.index.js → 39888.d8b8d0db6c2a36789372.index.js} +0 -0
  1481. /richie/static/richie/js/build/{39975.1973586060a86306e1e7.index.js → 39975.d8b8d0db6c2a36789372.index.js} +0 -0
  1482. /richie/static/richie/js/build/{40182.1973586060a86306e1e7.index.js → 40182.d8b8d0db6c2a36789372.index.js} +0 -0
  1483. /richie/static/richie/js/build/{40627.1973586060a86306e1e7.index.js → 40627.d8b8d0db6c2a36789372.index.js} +0 -0
  1484. /richie/static/richie/js/build/{40740.1973586060a86306e1e7.index.js → 40740.d8b8d0db6c2a36789372.index.js} +0 -0
  1485. /richie/static/richie/js/build/{40966.1973586060a86306e1e7.index.js → 40966.d8b8d0db6c2a36789372.index.js} +0 -0
  1486. /richie/static/richie/js/build/{41005.1973586060a86306e1e7.index.js → 41005.d8b8d0db6c2a36789372.index.js} +0 -0
  1487. /richie/static/richie/js/build/{41517.1973586060a86306e1e7.index.js → 41517.d8b8d0db6c2a36789372.index.js} +0 -0
  1488. /richie/static/richie/js/build/{41573.1973586060a86306e1e7.index.js → 41573.d8b8d0db6c2a36789372.index.js} +0 -0
  1489. /richie/static/richie/js/build/{41964.1973586060a86306e1e7.index.js → 41964.d8b8d0db6c2a36789372.index.js} +0 -0
  1490. /richie/static/richie/js/build/{42205.1973586060a86306e1e7.index.js → 42205.d8b8d0db6c2a36789372.index.js} +0 -0
  1491. /richie/static/richie/js/build/{42279.1973586060a86306e1e7.index.js → 42279.d8b8d0db6c2a36789372.index.js} +0 -0
  1492. /richie/static/richie/js/build/{42446.1973586060a86306e1e7.index.js → 42446.d8b8d0db6c2a36789372.index.js} +0 -0
  1493. /richie/static/richie/js/build/{42500.1973586060a86306e1e7.index.js → 42500.d8b8d0db6c2a36789372.index.js} +0 -0
  1494. /richie/static/richie/js/build/{42749.1973586060a86306e1e7.index.js → 42749.d8b8d0db6c2a36789372.index.js} +0 -0
  1495. /richie/static/richie/js/build/{42757.1973586060a86306e1e7.index.js → 42757.d8b8d0db6c2a36789372.index.js} +0 -0
  1496. /richie/static/richie/js/build/{42797.1973586060a86306e1e7.index.js → 42797.d8b8d0db6c2a36789372.index.js} +0 -0
  1497. /richie/static/richie/js/build/{42943.1973586060a86306e1e7.index.js → 42943.d8b8d0db6c2a36789372.index.js} +0 -0
  1498. /richie/static/richie/js/build/{43052.1973586060a86306e1e7.index.js → 43052.d8b8d0db6c2a36789372.index.js} +0 -0
  1499. /richie/static/richie/js/build/{4311.1973586060a86306e1e7.index.js → 4311.d8b8d0db6c2a36789372.index.js} +0 -0
  1500. /richie/static/richie/js/build/{43326.1973586060a86306e1e7.index.js → 43326.d8b8d0db6c2a36789372.index.js} +0 -0
  1501. /richie/static/richie/js/build/{43348.1973586060a86306e1e7.index.js → 43348.d8b8d0db6c2a36789372.index.js} +0 -0
  1502. /richie/static/richie/js/build/{43350.1973586060a86306e1e7.index.js → 43350.d8b8d0db6c2a36789372.index.js} +0 -0
  1503. /richie/static/richie/js/build/{43537.1973586060a86306e1e7.index.js → 43537.d8b8d0db6c2a36789372.index.js} +0 -0
  1504. /richie/static/richie/js/build/{43862.1973586060a86306e1e7.index.js → 43862.d8b8d0db6c2a36789372.index.js} +0 -0
  1505. /richie/static/richie/js/build/{4388.1973586060a86306e1e7.index.js → 4388.d8b8d0db6c2a36789372.index.js} +0 -0
  1506. /richie/static/richie/js/build/{43983.1973586060a86306e1e7.index.js → 43983.d8b8d0db6c2a36789372.index.js} +0 -0
  1507. /richie/static/richie/js/build/{44220.1973586060a86306e1e7.index.js → 44220.d8b8d0db6c2a36789372.index.js} +0 -0
  1508. /richie/static/richie/js/build/{44411.1973586060a86306e1e7.index.js → 44411.d8b8d0db6c2a36789372.index.js} +0 -0
  1509. /richie/static/richie/js/build/{44522.1973586060a86306e1e7.index.js → 44522.d8b8d0db6c2a36789372.index.js} +0 -0
  1510. /richie/static/richie/js/build/{44566.1973586060a86306e1e7.index.js → 44566.d8b8d0db6c2a36789372.index.js} +0 -0
  1511. /richie/static/richie/js/build/{44665.1973586060a86306e1e7.index.js → 44665.d8b8d0db6c2a36789372.index.js} +0 -0
  1512. /richie/static/richie/js/build/{44808.1973586060a86306e1e7.index.js → 44808.d8b8d0db6c2a36789372.index.js} +0 -0
  1513. /richie/static/richie/js/build/{45251.1973586060a86306e1e7.index.js → 45251.d8b8d0db6c2a36789372.index.js} +0 -0
  1514. /richie/static/richie/js/build/{45686.1973586060a86306e1e7.index.js → 45686.d8b8d0db6c2a36789372.index.js} +0 -0
  1515. /richie/static/richie/js/build/{4574.1973586060a86306e1e7.index.js → 4574.d8b8d0db6c2a36789372.index.js} +0 -0
  1516. /richie/static/richie/js/build/{45744.1973586060a86306e1e7.index.js → 45744.d8b8d0db6c2a36789372.index.js} +0 -0
  1517. /richie/static/richie/js/build/{45862.1973586060a86306e1e7.index.js → 45862.d8b8d0db6c2a36789372.index.js} +0 -0
  1518. /richie/static/richie/js/build/{4600.1973586060a86306e1e7.index.js → 4600.d8b8d0db6c2a36789372.index.js} +0 -0
  1519. /richie/static/richie/js/build/{46001.1973586060a86306e1e7.index.js → 46001.d8b8d0db6c2a36789372.index.js} +0 -0
  1520. /richie/static/richie/js/build/{462.1973586060a86306e1e7.index.js → 462.d8b8d0db6c2a36789372.index.js} +0 -0
  1521. /richie/static/richie/js/build/{46238.1973586060a86306e1e7.index.js → 46238.d8b8d0db6c2a36789372.index.js} +0 -0
  1522. /richie/static/richie/js/build/{4668.1973586060a86306e1e7.index.js → 4668.d8b8d0db6c2a36789372.index.js} +0 -0
  1523. /richie/static/richie/js/build/{46693.1973586060a86306e1e7.index.js → 46693.d8b8d0db6c2a36789372.index.js} +0 -0
  1524. /richie/static/richie/js/build/{47252.1973586060a86306e1e7.index.js → 47252.d8b8d0db6c2a36789372.index.js} +0 -0
  1525. /richie/static/richie/js/build/{47523.1973586060a86306e1e7.index.js → 47523.d8b8d0db6c2a36789372.index.js} +0 -0
  1526. /richie/static/richie/js/build/{47603.1973586060a86306e1e7.index.js → 47603.d8b8d0db6c2a36789372.index.js} +0 -0
  1527. /richie/static/richie/js/build/{47902.1973586060a86306e1e7.index.js → 47902.d8b8d0db6c2a36789372.index.js} +0 -0
  1528. /richie/static/richie/js/build/{47913.1973586060a86306e1e7.index.js → 47913.d8b8d0db6c2a36789372.index.js} +0 -0
  1529. /richie/static/richie/js/build/{47990.1973586060a86306e1e7.index.js → 47990.d8b8d0db6c2a36789372.index.js} +0 -0
  1530. /richie/static/richie/js/build/{4805.1973586060a86306e1e7.index.js → 4805.d8b8d0db6c2a36789372.index.js} +0 -0
  1531. /richie/static/richie/js/build/{48119.1973586060a86306e1e7.index.js → 48119.d8b8d0db6c2a36789372.index.js} +0 -0
  1532. /richie/static/richie/js/build/{48359.1973586060a86306e1e7.index.js → 48359.d8b8d0db6c2a36789372.index.js} +0 -0
  1533. /richie/static/richie/js/build/{48510.1973586060a86306e1e7.index.js → 48510.d8b8d0db6c2a36789372.index.js} +0 -0
  1534. /richie/static/richie/js/build/{48565.1973586060a86306e1e7.index.js → 48565.d8b8d0db6c2a36789372.index.js} +0 -0
  1535. /richie/static/richie/js/build/{48703.1973586060a86306e1e7.index.js → 48703.d8b8d0db6c2a36789372.index.js} +0 -0
  1536. /richie/static/richie/js/build/{48789.1973586060a86306e1e7.index.js → 48789.d8b8d0db6c2a36789372.index.js} +0 -0
  1537. /richie/static/richie/js/build/{48801.1973586060a86306e1e7.index.js → 48801.d8b8d0db6c2a36789372.index.js} +0 -0
  1538. /richie/static/richie/js/build/{48834.1973586060a86306e1e7.index.js → 48834.d8b8d0db6c2a36789372.index.js} +0 -0
  1539. /richie/static/richie/js/build/{48950.1973586060a86306e1e7.index.js → 48950.d8b8d0db6c2a36789372.index.js} +0 -0
  1540. /richie/static/richie/js/build/{48954.1973586060a86306e1e7.index.js → 48954.d8b8d0db6c2a36789372.index.js} +0 -0
  1541. /richie/static/richie/js/build/{49009.1973586060a86306e1e7.index.js → 49009.d8b8d0db6c2a36789372.index.js} +0 -0
  1542. /richie/static/richie/js/build/{49206.1973586060a86306e1e7.index.js → 49206.d8b8d0db6c2a36789372.index.js} +0 -0
  1543. /richie/static/richie/js/build/{49279.1973586060a86306e1e7.index.js → 49279.d8b8d0db6c2a36789372.index.js} +0 -0
  1544. /richie/static/richie/js/build/{49300.1973586060a86306e1e7.index.js → 49300.d8b8d0db6c2a36789372.index.js} +0 -0
  1545. /richie/static/richie/js/build/{49518.1973586060a86306e1e7.index.js → 49518.d8b8d0db6c2a36789372.index.js} +0 -0
  1546. /richie/static/richie/js/build/{49727.1973586060a86306e1e7.index.js → 49727.d8b8d0db6c2a36789372.index.js} +0 -0
  1547. /richie/static/richie/js/build/{49793.1973586060a86306e1e7.index.js → 49793.d8b8d0db6c2a36789372.index.js} +0 -0
  1548. /richie/static/richie/js/build/{49852.1973586060a86306e1e7.index.js → 49852.d8b8d0db6c2a36789372.index.js} +0 -0
  1549. /richie/static/richie/js/build/{49866.1973586060a86306e1e7.index.js → 49866.d8b8d0db6c2a36789372.index.js} +0 -0
  1550. /richie/static/richie/js/build/{49961.1973586060a86306e1e7.index.js → 49961.d8b8d0db6c2a36789372.index.js} +0 -0
  1551. /richie/static/richie/js/build/{50025.1973586060a86306e1e7.index.js → 50025.d8b8d0db6c2a36789372.index.js} +0 -0
  1552. /richie/static/richie/js/build/{50187.1973586060a86306e1e7.index.js → 50187.d8b8d0db6c2a36789372.index.js} +0 -0
  1553. /richie/static/richie/js/build/{50211.1973586060a86306e1e7.index.js → 50211.d8b8d0db6c2a36789372.index.js} +0 -0
  1554. /richie/static/richie/js/build/{50241.1973586060a86306e1e7.index.js → 50241.d8b8d0db6c2a36789372.index.js} +0 -0
  1555. /richie/static/richie/js/build/{50543.1973586060a86306e1e7.index.js → 50543.d8b8d0db6c2a36789372.index.js} +0 -0
  1556. /richie/static/richie/js/build/{50567.1973586060a86306e1e7.index.js → 50567.d8b8d0db6c2a36789372.index.js} +0 -0
  1557. /richie/static/richie/js/build/{50713.1973586060a86306e1e7.index.js → 50713.d8b8d0db6c2a36789372.index.js} +0 -0
  1558. /richie/static/richie/js/build/{50769.1973586060a86306e1e7.index.js → 50769.d8b8d0db6c2a36789372.index.js} +0 -0
  1559. /richie/static/richie/js/build/{50833.1973586060a86306e1e7.index.js → 50833.d8b8d0db6c2a36789372.index.js} +0 -0
  1560. /richie/static/richie/js/build/{51121.1973586060a86306e1e7.index.js → 51121.d8b8d0db6c2a36789372.index.js} +0 -0
  1561. /richie/static/richie/js/build/{51270.1973586060a86306e1e7.index.js → 51270.d8b8d0db6c2a36789372.index.js} +0 -0
  1562. /richie/static/richie/js/build/{51428.1973586060a86306e1e7.index.js → 51428.d8b8d0db6c2a36789372.index.js} +0 -0
  1563. /richie/static/richie/js/build/{51613.1973586060a86306e1e7.index.js → 51613.d8b8d0db6c2a36789372.index.js} +0 -0
  1564. /richie/static/richie/js/build/{51723.1973586060a86306e1e7.index.js → 51723.d8b8d0db6c2a36789372.index.js} +0 -0
  1565. /richie/static/richie/js/build/{51796.1973586060a86306e1e7.index.js → 51796.d8b8d0db6c2a36789372.index.js} +0 -0
  1566. /richie/static/richie/js/build/{51912.1973586060a86306e1e7.index.js → 51912.d8b8d0db6c2a36789372.index.js} +0 -0
  1567. /richie/static/richie/js/build/{52283.1973586060a86306e1e7.index.js → 52283.d8b8d0db6c2a36789372.index.js} +0 -0
  1568. /richie/static/richie/js/build/{52307.1973586060a86306e1e7.index.js → 52307.d8b8d0db6c2a36789372.index.js} +0 -0
  1569. /richie/static/richie/js/build/{52384.1973586060a86306e1e7.index.js → 52384.d8b8d0db6c2a36789372.index.js} +0 -0
  1570. /richie/static/richie/js/build/{52470.1973586060a86306e1e7.index.js → 52470.d8b8d0db6c2a36789372.index.js} +0 -0
  1571. /richie/static/richie/js/build/{5248.1973586060a86306e1e7.index.js → 5248.d8b8d0db6c2a36789372.index.js} +0 -0
  1572. /richie/static/richie/js/build/{5262.1973586060a86306e1e7.index.js → 5262.d8b8d0db6c2a36789372.index.js} +0 -0
  1573. /richie/static/richie/js/build/{52745.1973586060a86306e1e7.index.js → 52745.d8b8d0db6c2a36789372.index.js} +0 -0
  1574. /richie/static/richie/js/build/{53235.1973586060a86306e1e7.index.js → 53235.d8b8d0db6c2a36789372.index.js} +0 -0
  1575. /richie/static/richie/js/build/{53384.1973586060a86306e1e7.index.js → 53384.d8b8d0db6c2a36789372.index.js} +0 -0
  1576. /richie/static/richie/js/build/{53630.1973586060a86306e1e7.index.js → 53630.d8b8d0db6c2a36789372.index.js} +0 -0
  1577. /richie/static/richie/js/build/{53962.1973586060a86306e1e7.index.js → 53962.d8b8d0db6c2a36789372.index.js} +0 -0
  1578. /richie/static/richie/js/build/{54049.1973586060a86306e1e7.index.js → 54049.d8b8d0db6c2a36789372.index.js} +0 -0
  1579. /richie/static/richie/js/build/{54154.1973586060a86306e1e7.index.js → 54154.d8b8d0db6c2a36789372.index.js} +0 -0
  1580. /richie/static/richie/js/build/{54552.1973586060a86306e1e7.index.js → 54552.d8b8d0db6c2a36789372.index.js} +0 -0
  1581. /richie/static/richie/js/build/{54651.1973586060a86306e1e7.index.js → 54651.d8b8d0db6c2a36789372.index.js} +0 -0
  1582. /richie/static/richie/js/build/{54950.1973586060a86306e1e7.index.js → 54950.d8b8d0db6c2a36789372.index.js} +0 -0
  1583. /richie/static/richie/js/build/{54975.1973586060a86306e1e7.index.js → 54975.d8b8d0db6c2a36789372.index.js} +0 -0
  1584. /richie/static/richie/js/build/{55021.1973586060a86306e1e7.index.js → 55021.d8b8d0db6c2a36789372.index.js} +0 -0
  1585. /richie/static/richie/js/build/{55204.1973586060a86306e1e7.index.js → 55204.d8b8d0db6c2a36789372.index.js} +0 -0
  1586. /richie/static/richie/js/build/{55239.1973586060a86306e1e7.index.js → 55239.d8b8d0db6c2a36789372.index.js} +0 -0
  1587. /richie/static/richie/js/build/{55572.1973586060a86306e1e7.index.js → 55572.d8b8d0db6c2a36789372.index.js} +0 -0
  1588. /richie/static/richie/js/build/{55624.1973586060a86306e1e7.index.js → 55624.d8b8d0db6c2a36789372.index.js} +0 -0
  1589. /richie/static/richie/js/build/{55690.1973586060a86306e1e7.index.js → 55690.d8b8d0db6c2a36789372.index.js} +0 -0
  1590. /richie/static/richie/js/build/{55704.1973586060a86306e1e7.index.js → 55704.d8b8d0db6c2a36789372.index.js} +0 -0
  1591. /richie/static/richie/js/build/{55811.1973586060a86306e1e7.index.js → 55811.d8b8d0db6c2a36789372.index.js} +0 -0
  1592. /richie/static/richie/js/build/{56510.1973586060a86306e1e7.index.js → 56510.d8b8d0db6c2a36789372.index.js} +0 -0
  1593. /richie/static/richie/js/build/{56652.1973586060a86306e1e7.index.js → 56652.d8b8d0db6c2a36789372.index.js} +0 -0
  1594. /richie/static/richie/js/build/{56785.1973586060a86306e1e7.index.js → 56785.d8b8d0db6c2a36789372.index.js} +0 -0
  1595. /richie/static/richie/js/build/{56798.1973586060a86306e1e7.index.js → 56798.d8b8d0db6c2a36789372.index.js} +0 -0
  1596. /richie/static/richie/js/build/{56846.1973586060a86306e1e7.index.js → 56846.d8b8d0db6c2a36789372.index.js} +0 -0
  1597. /richie/static/richie/js/build/{56946.1973586060a86306e1e7.index.js → 56946.d8b8d0db6c2a36789372.index.js} +0 -0
  1598. /richie/static/richie/js/build/{57040.1973586060a86306e1e7.index.js → 57040.d8b8d0db6c2a36789372.index.js} +0 -0
  1599. /richie/static/richie/js/build/{57333.1973586060a86306e1e7.index.js → 57333.d8b8d0db6c2a36789372.index.js} +0 -0
  1600. /richie/static/richie/js/build/{5742.1973586060a86306e1e7.index.js → 5742.d8b8d0db6c2a36789372.index.js} +0 -0
  1601. /richie/static/richie/js/build/{57651.1973586060a86306e1e7.index.js → 57651.d8b8d0db6c2a36789372.index.js} +0 -0
  1602. /richie/static/richie/js/build/{57727.1973586060a86306e1e7.index.js → 57727.d8b8d0db6c2a36789372.index.js} +0 -0
  1603. /richie/static/richie/js/build/{57762.1973586060a86306e1e7.index.js → 57762.d8b8d0db6c2a36789372.index.js} +0 -0
  1604. /richie/static/richie/js/build/{57763.1973586060a86306e1e7.index.js → 57763.d8b8d0db6c2a36789372.index.js} +0 -0
  1605. /richie/static/richie/js/build/{57837.1973586060a86306e1e7.index.js → 57837.d8b8d0db6c2a36789372.index.js} +0 -0
  1606. /richie/static/richie/js/build/{58183.1973586060a86306e1e7.index.js → 58183.d8b8d0db6c2a36789372.index.js} +0 -0
  1607. /richie/static/richie/js/build/{58308.1973586060a86306e1e7.index.js → 58308.d8b8d0db6c2a36789372.index.js} +0 -0
  1608. /richie/static/richie/js/build/{58380.1973586060a86306e1e7.index.js → 58380.d8b8d0db6c2a36789372.index.js} +0 -0
  1609. /richie/static/richie/js/build/{58524.1973586060a86306e1e7.index.js → 58524.d8b8d0db6c2a36789372.index.js} +0 -0
  1610. /richie/static/richie/js/build/{58551.1973586060a86306e1e7.index.js → 58551.d8b8d0db6c2a36789372.index.js} +0 -0
  1611. /richie/static/richie/js/build/{5857.1973586060a86306e1e7.index.js → 5857.d8b8d0db6c2a36789372.index.js} +0 -0
  1612. /richie/static/richie/js/build/{58576.1973586060a86306e1e7.index.js → 58576.d8b8d0db6c2a36789372.index.js} +0 -0
  1613. /richie/static/richie/js/build/{5873.1973586060a86306e1e7.index.js → 5873.d8b8d0db6c2a36789372.index.js} +0 -0
  1614. /richie/static/richie/js/build/{58757.1973586060a86306e1e7.index.js → 58757.d8b8d0db6c2a36789372.index.js} +0 -0
  1615. /richie/static/richie/js/build/{59126.1973586060a86306e1e7.index.js → 59126.d8b8d0db6c2a36789372.index.js} +0 -0
  1616. /richie/static/richie/js/build/{59132.1973586060a86306e1e7.index.js → 59132.d8b8d0db6c2a36789372.index.js} +0 -0
  1617. /richie/static/richie/js/build/{59287.1973586060a86306e1e7.index.js → 59287.d8b8d0db6c2a36789372.index.js} +0 -0
  1618. /richie/static/richie/js/build/{59380.1973586060a86306e1e7.index.js → 59380.d8b8d0db6c2a36789372.index.js} +0 -0
  1619. /richie/static/richie/js/build/{59455.1973586060a86306e1e7.index.js → 59455.d8b8d0db6c2a36789372.index.js} +0 -0
  1620. /richie/static/richie/js/build/{59514.1973586060a86306e1e7.index.js → 59514.d8b8d0db6c2a36789372.index.js} +0 -0
  1621. /richie/static/richie/js/build/{5962.1973586060a86306e1e7.index.js → 5962.d8b8d0db6c2a36789372.index.js} +0 -0
  1622. /richie/static/richie/js/build/{5980.1973586060a86306e1e7.index.js → 5980.d8b8d0db6c2a36789372.index.js} +0 -0
  1623. /richie/static/richie/js/build/{59813.1973586060a86306e1e7.index.js → 59813.d8b8d0db6c2a36789372.index.js} +0 -0
  1624. /richie/static/richie/js/build/{6011.1973586060a86306e1e7.index.js → 6011.d8b8d0db6c2a36789372.index.js} +0 -0
  1625. /richie/static/richie/js/build/{60279.1973586060a86306e1e7.index.js → 60279.d8b8d0db6c2a36789372.index.js} +0 -0
  1626. /richie/static/richie/js/build/{60328.1973586060a86306e1e7.index.js → 60328.d8b8d0db6c2a36789372.index.js} +0 -0
  1627. /richie/static/richie/js/build/{60428.1973586060a86306e1e7.index.js → 60428.d8b8d0db6c2a36789372.index.js} +0 -0
  1628. /richie/static/richie/js/build/{60505.1973586060a86306e1e7.index.js → 60505.d8b8d0db6c2a36789372.index.js} +0 -0
  1629. /richie/static/richie/js/build/{60634.1973586060a86306e1e7.index.js → 60634.d8b8d0db6c2a36789372.index.js} +0 -0
  1630. /richie/static/richie/js/build/{610.1973586060a86306e1e7.index.js → 610.d8b8d0db6c2a36789372.index.js} +0 -0
  1631. /richie/static/richie/js/build/{61304.1973586060a86306e1e7.index.js → 61304.d8b8d0db6c2a36789372.index.js} +0 -0
  1632. /richie/static/richie/js/build/{61358.1973586060a86306e1e7.index.js → 61358.d8b8d0db6c2a36789372.index.js} +0 -0
  1633. /richie/static/richie/js/build/{61361.1973586060a86306e1e7.index.js → 61361.d8b8d0db6c2a36789372.index.js} +0 -0
  1634. /richie/static/richie/js/build/{61409.1973586060a86306e1e7.index.js → 61409.d8b8d0db6c2a36789372.index.js} +0 -0
  1635. /richie/static/richie/js/build/{61534.1973586060a86306e1e7.index.js → 61534.d8b8d0db6c2a36789372.index.js} +0 -0
  1636. /richie/static/richie/js/build/{61613.1973586060a86306e1e7.index.js → 61613.d8b8d0db6c2a36789372.index.js} +0 -0
  1637. /richie/static/richie/js/build/{61729.1973586060a86306e1e7.index.js → 61729.d8b8d0db6c2a36789372.index.js} +0 -0
  1638. /richie/static/richie/js/build/{61799.1973586060a86306e1e7.index.js → 61799.d8b8d0db6c2a36789372.index.js} +0 -0
  1639. /richie/static/richie/js/build/{62027.1973586060a86306e1e7.index.js → 62027.d8b8d0db6c2a36789372.index.js} +0 -0
  1640. /richie/static/richie/js/build/{621.1973586060a86306e1e7.index.js → 621.d8b8d0db6c2a36789372.index.js} +0 -0
  1641. /richie/static/richie/js/build/{62665.1973586060a86306e1e7.index.js → 62665.d8b8d0db6c2a36789372.index.js} +0 -0
  1642. /richie/static/richie/js/build/{63175.1973586060a86306e1e7.index.js → 63175.d8b8d0db6c2a36789372.index.js} +0 -0
  1643. /richie/static/richie/js/build/{63467.1973586060a86306e1e7.index.js → 63467.d8b8d0db6c2a36789372.index.js} +0 -0
  1644. /richie/static/richie/js/build/{63490.1973586060a86306e1e7.index.js → 63490.d8b8d0db6c2a36789372.index.js} +0 -0
  1645. /richie/static/richie/js/build/{63500.1973586060a86306e1e7.index.js → 63500.d8b8d0db6c2a36789372.index.js} +0 -0
  1646. /richie/static/richie/js/build/{63557.1973586060a86306e1e7.index.js → 63557.d8b8d0db6c2a36789372.index.js} +0 -0
  1647. /richie/static/richie/js/build/{63922.1973586060a86306e1e7.index.js → 63922.d8b8d0db6c2a36789372.index.js} +0 -0
  1648. /richie/static/richie/js/build/{64015.1973586060a86306e1e7.index.js → 64015.d8b8d0db6c2a36789372.index.js} +0 -0
  1649. /richie/static/richie/js/build/{64061.1973586060a86306e1e7.index.js → 64061.d8b8d0db6c2a36789372.index.js} +0 -0
  1650. /richie/static/richie/js/build/{64172.1973586060a86306e1e7.index.js → 64172.d8b8d0db6c2a36789372.index.js} +0 -0
  1651. /richie/static/richie/js/build/{64491.1973586060a86306e1e7.index.js → 64491.d8b8d0db6c2a36789372.index.js} +0 -0
  1652. /richie/static/richie/js/build/{64887.1973586060a86306e1e7.index.js → 64887.d8b8d0db6c2a36789372.index.js} +0 -0
  1653. /richie/static/richie/js/build/{65281.1973586060a86306e1e7.index.js → 65281.d8b8d0db6c2a36789372.index.js} +0 -0
  1654. /richie/static/richie/js/build/{65338.1973586060a86306e1e7.index.js → 65338.d8b8d0db6c2a36789372.index.js} +0 -0
  1655. /richie/static/richie/js/build/{65356.1973586060a86306e1e7.index.js → 65356.d8b8d0db6c2a36789372.index.js} +0 -0
  1656. /richie/static/richie/js/build/{66036.1973586060a86306e1e7.index.js → 66036.d8b8d0db6c2a36789372.index.js} +0 -0
  1657. /richie/static/richie/js/build/{66055.1973586060a86306e1e7.index.js → 66055.d8b8d0db6c2a36789372.index.js} +0 -0
  1658. /richie/static/richie/js/build/{66061.1973586060a86306e1e7.index.js → 66061.d8b8d0db6c2a36789372.index.js} +0 -0
  1659. /richie/static/richie/js/build/{66121.1973586060a86306e1e7.index.js → 66121.d8b8d0db6c2a36789372.index.js} +0 -0
  1660. /richie/static/richie/js/build/{66403.1973586060a86306e1e7.index.js → 66403.d8b8d0db6c2a36789372.index.js} +0 -0
  1661. /richie/static/richie/js/build/{66404.1973586060a86306e1e7.index.js → 66404.d8b8d0db6c2a36789372.index.js} +0 -0
  1662. /richie/static/richie/js/build/{66489.1973586060a86306e1e7.index.js → 66489.d8b8d0db6c2a36789372.index.js} +0 -0
  1663. /richie/static/richie/js/build/{66738.1973586060a86306e1e7.index.js → 66738.d8b8d0db6c2a36789372.index.js} +0 -0
  1664. /richie/static/richie/js/build/{67143.1973586060a86306e1e7.index.js → 67143.d8b8d0db6c2a36789372.index.js} +0 -0
  1665. /richie/static/richie/js/build/{67370.1973586060a86306e1e7.index.js → 67370.d8b8d0db6c2a36789372.index.js} +0 -0
  1666. /richie/static/richie/js/build/{67450.1973586060a86306e1e7.index.js → 67450.d8b8d0db6c2a36789372.index.js} +0 -0
  1667. /richie/static/richie/js/build/{67520.1973586060a86306e1e7.index.js → 67520.d8b8d0db6c2a36789372.index.js} +0 -0
  1668. /richie/static/richie/js/build/{67697.1973586060a86306e1e7.index.js → 67697.d8b8d0db6c2a36789372.index.js} +0 -0
  1669. /richie/static/richie/js/build/{67754.1973586060a86306e1e7.index.js → 67754.d8b8d0db6c2a36789372.index.js} +0 -0
  1670. /richie/static/richie/js/build/{67791.1973586060a86306e1e7.index.js → 67791.d8b8d0db6c2a36789372.index.js} +0 -0
  1671. /richie/static/richie/js/build/{67986.1973586060a86306e1e7.index.js → 67986.d8b8d0db6c2a36789372.index.js} +0 -0
  1672. /richie/static/richie/js/build/{68287.1973586060a86306e1e7.index.js → 68287.d8b8d0db6c2a36789372.index.js} +0 -0
  1673. /richie/static/richie/js/build/{68364.1973586060a86306e1e7.index.js → 68364.d8b8d0db6c2a36789372.index.js} +0 -0
  1674. /richie/static/richie/js/build/{68395.1973586060a86306e1e7.index.js → 68395.d8b8d0db6c2a36789372.index.js} +0 -0
  1675. /richie/static/richie/js/build/{68677.1973586060a86306e1e7.index.js → 68677.d8b8d0db6c2a36789372.index.js} +0 -0
  1676. /richie/static/richie/js/build/{68750.1973586060a86306e1e7.index.js → 68750.d8b8d0db6c2a36789372.index.js} +0 -0
  1677. /richie/static/richie/js/build/{68912.1973586060a86306e1e7.index.js → 68912.d8b8d0db6c2a36789372.index.js} +0 -0
  1678. /richie/static/richie/js/build/{68930.1973586060a86306e1e7.index.js → 68930.d8b8d0db6c2a36789372.index.js} +0 -0
  1679. /richie/static/richie/js/build/{69017.1973586060a86306e1e7.index.js → 69017.d8b8d0db6c2a36789372.index.js} +0 -0
  1680. /richie/static/richie/js/build/{69214.1973586060a86306e1e7.index.js → 69214.d8b8d0db6c2a36789372.index.js} +0 -0
  1681. /richie/static/richie/js/build/{69444.1973586060a86306e1e7.index.js → 69444.d8b8d0db6c2a36789372.index.js} +0 -0
  1682. /richie/static/richie/js/build/{69525.1973586060a86306e1e7.index.js → 69525.d8b8d0db6c2a36789372.index.js} +0 -0
  1683. /richie/static/richie/js/build/{69630.1973586060a86306e1e7.index.js → 69630.d8b8d0db6c2a36789372.index.js} +0 -0
  1684. /richie/static/richie/js/build/{69777.1973586060a86306e1e7.index.js → 69777.d8b8d0db6c2a36789372.index.js} +0 -0
  1685. /richie/static/richie/js/build/{69792.1973586060a86306e1e7.index.js → 69792.d8b8d0db6c2a36789372.index.js} +0 -0
  1686. /richie/static/richie/js/build/{6991.1973586060a86306e1e7.index.js → 6991.d8b8d0db6c2a36789372.index.js} +0 -0
  1687. /richie/static/richie/js/build/{70063.1973586060a86306e1e7.index.js → 70063.d8b8d0db6c2a36789372.index.js} +0 -0
  1688. /richie/static/richie/js/build/{7024.1973586060a86306e1e7.index.js → 7024.d8b8d0db6c2a36789372.index.js} +0 -0
  1689. /richie/static/richie/js/build/{70308.1973586060a86306e1e7.index.js → 70308.d8b8d0db6c2a36789372.index.js} +0 -0
  1690. /richie/static/richie/js/build/{70361.1973586060a86306e1e7.index.js → 70361.d8b8d0db6c2a36789372.index.js} +0 -0
  1691. /richie/static/richie/js/build/{7047.1973586060a86306e1e7.index.js → 7047.d8b8d0db6c2a36789372.index.js} +0 -0
  1692. /richie/static/richie/js/build/{70598.1973586060a86306e1e7.index.js → 70598.d8b8d0db6c2a36789372.index.js} +0 -0
  1693. /richie/static/richie/js/build/{70625.1973586060a86306e1e7.index.js → 70625.d8b8d0db6c2a36789372.index.js} +0 -0
  1694. /richie/static/richie/js/build/{70732.1973586060a86306e1e7.index.js → 70732.d8b8d0db6c2a36789372.index.js} +0 -0
  1695. /richie/static/richie/js/build/{70733.1973586060a86306e1e7.index.js → 70733.d8b8d0db6c2a36789372.index.js} +0 -0
  1696. /richie/static/richie/js/build/{70911.1973586060a86306e1e7.index.js → 70911.d8b8d0db6c2a36789372.index.js} +0 -0
  1697. /richie/static/richie/js/build/{71070.1973586060a86306e1e7.index.js → 71070.d8b8d0db6c2a36789372.index.js} +0 -0
  1698. /richie/static/richie/js/build/{71200.1973586060a86306e1e7.index.js → 71200.d8b8d0db6c2a36789372.index.js} +0 -0
  1699. /richie/static/richie/js/build/{71277.1973586060a86306e1e7.index.js → 71277.d8b8d0db6c2a36789372.index.js} +0 -0
  1700. /richie/static/richie/js/build/{71466.1973586060a86306e1e7.index.js → 71466.d8b8d0db6c2a36789372.index.js} +0 -0
  1701. /richie/static/richie/js/build/{71530.1973586060a86306e1e7.index.js → 71530.d8b8d0db6c2a36789372.index.js} +0 -0
  1702. /richie/static/richie/js/build/{71697.1973586060a86306e1e7.index.js → 71697.d8b8d0db6c2a36789372.index.js} +0 -0
  1703. /richie/static/richie/js/build/{72064.1973586060a86306e1e7.index.js → 72064.d8b8d0db6c2a36789372.index.js} +0 -0
  1704. /richie/static/richie/js/build/{72170.1973586060a86306e1e7.index.js → 72170.d8b8d0db6c2a36789372.index.js} +0 -0
  1705. /richie/static/richie/js/build/{72321.1973586060a86306e1e7.index.js → 72321.d8b8d0db6c2a36789372.index.js} +0 -0
  1706. /richie/static/richie/js/build/{7237.1973586060a86306e1e7.index.js → 7237.d8b8d0db6c2a36789372.index.js} +0 -0
  1707. /richie/static/richie/js/build/{72627.1973586060a86306e1e7.index.js → 72627.d8b8d0db6c2a36789372.index.js} +0 -0
  1708. /richie/static/richie/js/build/{72719.1973586060a86306e1e7.index.js → 72719.d8b8d0db6c2a36789372.index.js} +0 -0
  1709. /richie/static/richie/js/build/{73172.1973586060a86306e1e7.index.js → 73172.d8b8d0db6c2a36789372.index.js} +0 -0
  1710. /richie/static/richie/js/build/{73207.1973586060a86306e1e7.index.js → 73207.d8b8d0db6c2a36789372.index.js} +0 -0
  1711. /richie/static/richie/js/build/{73219.1973586060a86306e1e7.index.js → 73219.d8b8d0db6c2a36789372.index.js} +0 -0
  1712. /richie/static/richie/js/build/{73326.1973586060a86306e1e7.index.js → 73326.d8b8d0db6c2a36789372.index.js} +0 -0
  1713. /richie/static/richie/js/build/{73717.1973586060a86306e1e7.index.js → 73717.d8b8d0db6c2a36789372.index.js} +0 -0
  1714. /richie/static/richie/js/build/{73801.1973586060a86306e1e7.index.js → 73801.d8b8d0db6c2a36789372.index.js} +0 -0
  1715. /richie/static/richie/js/build/{73882.1973586060a86306e1e7.index.js → 73882.d8b8d0db6c2a36789372.index.js} +0 -0
  1716. /richie/static/richie/js/build/{74310.1973586060a86306e1e7.index.js → 74310.d8b8d0db6c2a36789372.index.js} +0 -0
  1717. /richie/static/richie/js/build/{74518.1973586060a86306e1e7.index.js → 74518.d8b8d0db6c2a36789372.index.js} +0 -0
  1718. /richie/static/richie/js/build/{74523.1973586060a86306e1e7.index.js → 74523.d8b8d0db6c2a36789372.index.js} +0 -0
  1719. /richie/static/richie/js/build/{74666.1973586060a86306e1e7.index.js → 74666.d8b8d0db6c2a36789372.index.js} +0 -0
  1720. /richie/static/richie/js/build/{74958.1973586060a86306e1e7.index.js → 74958.d8b8d0db6c2a36789372.index.js} +0 -0
  1721. /richie/static/richie/js/build/{75037.1973586060a86306e1e7.index.js → 75037.d8b8d0db6c2a36789372.index.js} +0 -0
  1722. /richie/static/richie/js/build/{75176.1973586060a86306e1e7.index.js → 75176.d8b8d0db6c2a36789372.index.js} +0 -0
  1723. /richie/static/richie/js/build/{75395.1973586060a86306e1e7.index.js → 75395.d8b8d0db6c2a36789372.index.js} +0 -0
  1724. /richie/static/richie/js/build/{75748.1973586060a86306e1e7.index.js → 75748.d8b8d0db6c2a36789372.index.js} +0 -0
  1725. /richie/static/richie/js/build/{75948.1973586060a86306e1e7.index.js → 75948.d8b8d0db6c2a36789372.index.js} +0 -0
  1726. /richie/static/richie/js/build/{75966.1973586060a86306e1e7.index.js → 75966.d8b8d0db6c2a36789372.index.js} +0 -0
  1727. /richie/static/richie/js/build/{76024.1973586060a86306e1e7.index.js → 76024.d8b8d0db6c2a36789372.index.js} +0 -0
  1728. /richie/static/richie/js/build/{76110.1973586060a86306e1e7.index.js → 76110.d8b8d0db6c2a36789372.index.js} +0 -0
  1729. /richie/static/richie/js/build/{76525.1973586060a86306e1e7.index.js → 76525.d8b8d0db6c2a36789372.index.js} +0 -0
  1730. /richie/static/richie/js/build/{76997.1973586060a86306e1e7.index.js → 76997.d8b8d0db6c2a36789372.index.js} +0 -0
  1731. /richie/static/richie/js/build/{77224.1973586060a86306e1e7.index.js → 77224.d8b8d0db6c2a36789372.index.js} +0 -0
  1732. /richie/static/richie/js/build/{77235.1973586060a86306e1e7.index.js → 77235.d8b8d0db6c2a36789372.index.js} +0 -0
  1733. /richie/static/richie/js/build/{77259.1973586060a86306e1e7.index.js → 77259.d8b8d0db6c2a36789372.index.js} +0 -0
  1734. /richie/static/richie/js/build/{77466.1973586060a86306e1e7.index.js → 77466.d8b8d0db6c2a36789372.index.js} +0 -0
  1735. /richie/static/richie/js/build/{7749.1973586060a86306e1e7.index.js → 7749.d8b8d0db6c2a36789372.index.js} +0 -0
  1736. /richie/static/richie/js/build/{78008.1973586060a86306e1e7.index.js → 78008.d8b8d0db6c2a36789372.index.js} +0 -0
  1737. /richie/static/richie/js/build/{78300.1973586060a86306e1e7.index.js → 78300.d8b8d0db6c2a36789372.index.js} +0 -0
  1738. /richie/static/richie/js/build/{78369.1973586060a86306e1e7.index.js → 78369.d8b8d0db6c2a36789372.index.js} +0 -0
  1739. /richie/static/richie/js/build/{78552.1973586060a86306e1e7.index.js → 78552.d8b8d0db6c2a36789372.index.js} +0 -0
  1740. /richie/static/richie/js/build/{78597.1973586060a86306e1e7.index.js → 78597.d8b8d0db6c2a36789372.index.js} +0 -0
  1741. /richie/static/richie/js/build/{78761.1973586060a86306e1e7.index.js → 78761.d8b8d0db6c2a36789372.index.js} +0 -0
  1742. /richie/static/richie/js/build/{78815.1973586060a86306e1e7.index.js → 78815.d8b8d0db6c2a36789372.index.js} +0 -0
  1743. /richie/static/richie/js/build/{79015.1973586060a86306e1e7.index.js → 79015.d8b8d0db6c2a36789372.index.js} +0 -0
  1744. /richie/static/richie/js/build/{79165.1973586060a86306e1e7.index.js → 79165.d8b8d0db6c2a36789372.index.js} +0 -0
  1745. /richie/static/richie/js/build/{79430.1973586060a86306e1e7.index.js → 79430.d8b8d0db6c2a36789372.index.js} +0 -0
  1746. /richie/static/richie/js/build/{79435.1973586060a86306e1e7.index.js → 79435.d8b8d0db6c2a36789372.index.js} +0 -0
  1747. /richie/static/richie/js/build/{79625.1973586060a86306e1e7.index.js → 79625.d8b8d0db6c2a36789372.index.js} +0 -0
  1748. /richie/static/richie/js/build/{79769.1973586060a86306e1e7.index.js → 79769.d8b8d0db6c2a36789372.index.js} +0 -0
  1749. /richie/static/richie/js/build/{80192.1973586060a86306e1e7.index.js → 80192.d8b8d0db6c2a36789372.index.js} +0 -0
  1750. /richie/static/richie/js/build/{80200.1973586060a86306e1e7.index.js → 80200.d8b8d0db6c2a36789372.index.js} +0 -0
  1751. /richie/static/richie/js/build/{80223.1973586060a86306e1e7.index.js → 80223.d8b8d0db6c2a36789372.index.js} +0 -0
  1752. /richie/static/richie/js/build/{80381.1973586060a86306e1e7.index.js → 80381.d8b8d0db6c2a36789372.index.js} +0 -0
  1753. /richie/static/richie/js/build/{80506.1973586060a86306e1e7.index.js → 80506.d8b8d0db6c2a36789372.index.js} +0 -0
  1754. /richie/static/richie/js/build/{80739.1973586060a86306e1e7.index.js → 80739.d8b8d0db6c2a36789372.index.js} +0 -0
  1755. /richie/static/richie/js/build/{80806.1973586060a86306e1e7.index.js → 80806.d8b8d0db6c2a36789372.index.js} +0 -0
  1756. /richie/static/richie/js/build/{81038.1973586060a86306e1e7.index.js → 81038.d8b8d0db6c2a36789372.index.js} +0 -0
  1757. /richie/static/richie/js/build/{81094.1973586060a86306e1e7.index.js → 81094.d8b8d0db6c2a36789372.index.js} +0 -0
  1758. /richie/static/richie/js/build/{81164.1973586060a86306e1e7.index.js → 81164.d8b8d0db6c2a36789372.index.js} +0 -0
  1759. /richie/static/richie/js/build/{81175.1973586060a86306e1e7.index.js → 81175.d8b8d0db6c2a36789372.index.js} +0 -0
  1760. /richie/static/richie/js/build/{8164.1973586060a86306e1e7.index.js → 8164.d8b8d0db6c2a36789372.index.js} +0 -0
  1761. /richie/static/richie/js/build/{81650.1973586060a86306e1e7.index.js → 81650.d8b8d0db6c2a36789372.index.js} +0 -0
  1762. /richie/static/richie/js/build/{81719.1973586060a86306e1e7.index.js → 81719.d8b8d0db6c2a36789372.index.js} +0 -0
  1763. /richie/static/richie/js/build/{81851.1973586060a86306e1e7.index.js → 81851.d8b8d0db6c2a36789372.index.js} +0 -0
  1764. /richie/static/richie/js/build/{81863.1973586060a86306e1e7.index.js → 81863.d8b8d0db6c2a36789372.index.js} +0 -0
  1765. /richie/static/richie/js/build/{82027.1973586060a86306e1e7.index.js → 82027.d8b8d0db6c2a36789372.index.js} +0 -0
  1766. /richie/static/richie/js/build/{82501.1973586060a86306e1e7.index.js → 82501.d8b8d0db6c2a36789372.index.js} +0 -0
  1767. /richie/static/richie/js/build/{82694.1973586060a86306e1e7.index.js → 82694.d8b8d0db6c2a36789372.index.js} +0 -0
  1768. /richie/static/richie/js/build/{82740.1973586060a86306e1e7.index.js → 82740.d8b8d0db6c2a36789372.index.js} +0 -0
  1769. /richie/static/richie/js/build/{8282.1973586060a86306e1e7.index.js → 8282.d8b8d0db6c2a36789372.index.js} +0 -0
  1770. /richie/static/richie/js/build/{83097.1973586060a86306e1e7.index.js → 83097.d8b8d0db6c2a36789372.index.js} +0 -0
  1771. /richie/static/richie/js/build/{83272.1973586060a86306e1e7.index.js → 83272.d8b8d0db6c2a36789372.index.js} +0 -0
  1772. /richie/static/richie/js/build/{83404.1973586060a86306e1e7.index.js → 83404.d8b8d0db6c2a36789372.index.js} +0 -0
  1773. /richie/static/richie/js/build/{83508.1973586060a86306e1e7.index.js → 83508.d8b8d0db6c2a36789372.index.js} +0 -0
  1774. /richie/static/richie/js/build/{83626.1973586060a86306e1e7.index.js → 83626.d8b8d0db6c2a36789372.index.js} +0 -0
  1775. /richie/static/richie/js/build/{8366.1973586060a86306e1e7.index.js → 8366.d8b8d0db6c2a36789372.index.js} +0 -0
  1776. /richie/static/richie/js/build/{83720.1973586060a86306e1e7.index.js → 83720.d8b8d0db6c2a36789372.index.js} +0 -0
  1777. /richie/static/richie/js/build/{83836.1973586060a86306e1e7.index.js → 83836.d8b8d0db6c2a36789372.index.js} +0 -0
  1778. /richie/static/richie/js/build/{83973.1973586060a86306e1e7.index.js → 83973.d8b8d0db6c2a36789372.index.js} +0 -0
  1779. /richie/static/richie/js/build/{84661.1973586060a86306e1e7.index.js → 84661.d8b8d0db6c2a36789372.index.js} +0 -0
  1780. /richie/static/richie/js/build/{84692.1973586060a86306e1e7.index.js → 84692.d8b8d0db6c2a36789372.index.js} +0 -0
  1781. /richie/static/richie/js/build/{85165.1973586060a86306e1e7.index.js → 85165.d8b8d0db6c2a36789372.index.js} +0 -0
  1782. /richie/static/richie/js/build/{85314.1973586060a86306e1e7.index.js → 85314.d8b8d0db6c2a36789372.index.js} +0 -0
  1783. /richie/static/richie/js/build/{85544.1973586060a86306e1e7.index.js → 85544.d8b8d0db6c2a36789372.index.js} +0 -0
  1784. /richie/static/richie/js/build/{85635.1973586060a86306e1e7.index.js → 85635.d8b8d0db6c2a36789372.index.js} +0 -0
  1785. /richie/static/richie/js/build/{85804.1973586060a86306e1e7.index.js → 85804.d8b8d0db6c2a36789372.index.js} +0 -0
  1786. /richie/static/richie/js/build/{85930.1973586060a86306e1e7.index.js → 85930.d8b8d0db6c2a36789372.index.js} +0 -0
  1787. /richie/static/richie/js/build/{86034.1973586060a86306e1e7.index.js → 86034.d8b8d0db6c2a36789372.index.js} +0 -0
  1788. /richie/static/richie/js/build/{86798.1973586060a86306e1e7.index.js → 86798.d8b8d0db6c2a36789372.index.js} +0 -0
  1789. /richie/static/richie/js/build/{87038.1973586060a86306e1e7.index.js → 87038.d8b8d0db6c2a36789372.index.js} +0 -0
  1790. /richie/static/richie/js/build/{87048.1973586060a86306e1e7.index.js → 87048.d8b8d0db6c2a36789372.index.js} +0 -0
  1791. /richie/static/richie/js/build/{87094.1973586060a86306e1e7.index.js → 87094.d8b8d0db6c2a36789372.index.js} +0 -0
  1792. /richie/static/richie/js/build/{87230.1973586060a86306e1e7.index.js → 87230.d8b8d0db6c2a36789372.index.js} +0 -0
  1793. /richie/static/richie/js/build/{87272.1973586060a86306e1e7.index.js → 87272.d8b8d0db6c2a36789372.index.js} +0 -0
  1794. /richie/static/richie/js/build/{87578.1973586060a86306e1e7.index.js → 87578.d8b8d0db6c2a36789372.index.js} +0 -0
  1795. /richie/static/richie/js/build/{87798.1973586060a86306e1e7.index.js → 87798.d8b8d0db6c2a36789372.index.js} +0 -0
  1796. /richie/static/richie/js/build/{87897.1973586060a86306e1e7.index.js → 87897.d8b8d0db6c2a36789372.index.js} +0 -0
  1797. /richie/static/richie/js/build/{88124.1973586060a86306e1e7.index.js → 88124.d8b8d0db6c2a36789372.index.js} +0 -0
  1798. /richie/static/richie/js/build/{88137.1973586060a86306e1e7.index.js → 88137.d8b8d0db6c2a36789372.index.js} +0 -0
  1799. /richie/static/richie/js/build/{88198.1973586060a86306e1e7.index.js → 88198.d8b8d0db6c2a36789372.index.js} +0 -0
  1800. /richie/static/richie/js/build/{88252.1973586060a86306e1e7.index.js → 88252.d8b8d0db6c2a36789372.index.js} +0 -0
  1801. /richie/static/richie/js/build/{88441.1973586060a86306e1e7.index.js → 88441.d8b8d0db6c2a36789372.index.js} +0 -0
  1802. /richie/static/richie/js/build/{88889.1973586060a86306e1e7.index.js → 88889.d8b8d0db6c2a36789372.index.js} +0 -0
  1803. /richie/static/richie/js/build/{890.1973586060a86306e1e7.index.js → 890.d8b8d0db6c2a36789372.index.js} +0 -0
  1804. /richie/static/richie/js/build/{89028.1973586060a86306e1e7.index.js → 89028.d8b8d0db6c2a36789372.index.js} +0 -0
  1805. /richie/static/richie/js/build/{89302.1973586060a86306e1e7.index.js → 89302.d8b8d0db6c2a36789372.index.js} +0 -0
  1806. /richie/static/richie/js/build/{89399.1973586060a86306e1e7.index.js → 89399.d8b8d0db6c2a36789372.index.js} +0 -0
  1807. /richie/static/richie/js/build/{89419.1973586060a86306e1e7.index.js → 89419.d8b8d0db6c2a36789372.index.js} +0 -0
  1808. /richie/static/richie/js/build/{89540.1973586060a86306e1e7.index.js → 89540.d8b8d0db6c2a36789372.index.js} +0 -0
  1809. /richie/static/richie/js/build/{89749.1973586060a86306e1e7.index.js → 89749.d8b8d0db6c2a36789372.index.js} +0 -0
  1810. /richie/static/richie/js/build/{89923.1973586060a86306e1e7.index.js → 89923.d8b8d0db6c2a36789372.index.js} +0 -0
  1811. /richie/static/richie/js/build/{90213.1973586060a86306e1e7.index.js → 90213.d8b8d0db6c2a36789372.index.js} +0 -0
  1812. /richie/static/richie/js/build/{90822.1973586060a86306e1e7.index.js → 90822.d8b8d0db6c2a36789372.index.js} +0 -0
  1813. /richie/static/richie/js/build/{9116.1973586060a86306e1e7.index.js → 9116.d8b8d0db6c2a36789372.index.js} +0 -0
  1814. /richie/static/richie/js/build/{91167.1973586060a86306e1e7.index.js → 91167.d8b8d0db6c2a36789372.index.js} +0 -0
  1815. /richie/static/richie/js/build/{9117.1973586060a86306e1e7.index.js → 9117.d8b8d0db6c2a36789372.index.js} +0 -0
  1816. /richie/static/richie/js/build/{91216.1973586060a86306e1e7.index.js → 91216.d8b8d0db6c2a36789372.index.js} +0 -0
  1817. /richie/static/richie/js/build/{91418.1973586060a86306e1e7.index.js → 91418.d8b8d0db6c2a36789372.index.js} +0 -0
  1818. /richie/static/richie/js/build/{91553.1973586060a86306e1e7.index.js → 91553.d8b8d0db6c2a36789372.index.js} +0 -0
  1819. /richie/static/richie/js/build/{92109.1973586060a86306e1e7.index.js → 92109.d8b8d0db6c2a36789372.index.js} +0 -0
  1820. /richie/static/richie/js/build/{92164.1973586060a86306e1e7.index.js → 92164.d8b8d0db6c2a36789372.index.js} +0 -0
  1821. /richie/static/richie/js/build/{92282.1973586060a86306e1e7.index.js → 92282.d8b8d0db6c2a36789372.index.js} +0 -0
  1822. /richie/static/richie/js/build/{92308.1973586060a86306e1e7.index.js → 92308.d8b8d0db6c2a36789372.index.js} +0 -0
  1823. /richie/static/richie/js/build/{92591.1973586060a86306e1e7.index.js → 92591.d8b8d0db6c2a36789372.index.js} +0 -0
  1824. /richie/static/richie/js/build/{92735.1973586060a86306e1e7.index.js → 92735.d8b8d0db6c2a36789372.index.js} +0 -0
  1825. /richie/static/richie/js/build/{92781.1973586060a86306e1e7.index.js → 92781.d8b8d0db6c2a36789372.index.js} +0 -0
  1826. /richie/static/richie/js/build/{92979.1973586060a86306e1e7.index.js → 92979.d8b8d0db6c2a36789372.index.js} +0 -0
  1827. /richie/static/richie/js/build/{93066.1973586060a86306e1e7.index.js → 93066.d8b8d0db6c2a36789372.index.js} +0 -0
  1828. /richie/static/richie/js/build/{93240.1973586060a86306e1e7.index.js → 93240.d8b8d0db6c2a36789372.index.js} +0 -0
  1829. /richie/static/richie/js/build/{93406.1973586060a86306e1e7.index.js → 93406.d8b8d0db6c2a36789372.index.js} +0 -0
  1830. /richie/static/richie/js/build/{93434.1973586060a86306e1e7.index.js → 93434.d8b8d0db6c2a36789372.index.js} +0 -0
  1831. /richie/static/richie/js/build/{93491.1973586060a86306e1e7.index.js → 93491.d8b8d0db6c2a36789372.index.js} +0 -0
  1832. /richie/static/richie/js/build/{93685.1973586060a86306e1e7.index.js → 93685.d8b8d0db6c2a36789372.index.js} +0 -0
  1833. /richie/static/richie/js/build/{93840.1973586060a86306e1e7.index.js → 93840.d8b8d0db6c2a36789372.index.js} +0 -0
  1834. /richie/static/richie/js/build/{93989.1973586060a86306e1e7.index.js → 93989.d8b8d0db6c2a36789372.index.js} +0 -0
  1835. /richie/static/richie/js/build/{94056.1973586060a86306e1e7.index.js → 94056.d8b8d0db6c2a36789372.index.js} +0 -0
  1836. /richie/static/richie/js/build/{94380.1973586060a86306e1e7.index.js → 94380.d8b8d0db6c2a36789372.index.js} +0 -0
  1837. /richie/static/richie/js/build/{94695.1973586060a86306e1e7.index.js → 94695.d8b8d0db6c2a36789372.index.js} +0 -0
  1838. /richie/static/richie/js/build/{9472.1973586060a86306e1e7.index.js → 9472.d8b8d0db6c2a36789372.index.js} +0 -0
  1839. /richie/static/richie/js/build/{94918.1973586060a86306e1e7.index.js → 94918.d8b8d0db6c2a36789372.index.js} +0 -0
  1840. /richie/static/richie/js/build/{94920.1973586060a86306e1e7.index.js → 94920.d8b8d0db6c2a36789372.index.js} +0 -0
  1841. /richie/static/richie/js/build/{95152.1973586060a86306e1e7.index.js → 95152.d8b8d0db6c2a36789372.index.js} +0 -0
  1842. /richie/static/richie/js/build/{95307.1973586060a86306e1e7.index.js → 95307.d8b8d0db6c2a36789372.index.js} +0 -0
  1843. /richie/static/richie/js/build/{95501.1973586060a86306e1e7.index.js → 95501.d8b8d0db6c2a36789372.index.js} +0 -0
  1844. /richie/static/richie/js/build/{95549.1973586060a86306e1e7.index.js → 95549.d8b8d0db6c2a36789372.index.js} +0 -0
  1845. /richie/static/richie/js/build/{95747.1973586060a86306e1e7.index.js → 95747.d8b8d0db6c2a36789372.index.js} +0 -0
  1846. /richie/static/richie/js/build/{95780.1973586060a86306e1e7.index.js → 95780.d8b8d0db6c2a36789372.index.js} +0 -0
  1847. /richie/static/richie/js/build/{95901.1973586060a86306e1e7.index.js → 95901.d8b8d0db6c2a36789372.index.js} +0 -0
  1848. /richie/static/richie/js/build/{95978.1973586060a86306e1e7.index.js → 95978.d8b8d0db6c2a36789372.index.js} +0 -0
  1849. /richie/static/richie/js/build/{96106.1973586060a86306e1e7.index.js → 96106.d8b8d0db6c2a36789372.index.js} +0 -0
  1850. /richie/static/richie/js/build/{96185.1973586060a86306e1e7.index.js → 96185.d8b8d0db6c2a36789372.index.js} +0 -0
  1851. /richie/static/richie/js/build/{96237.1973586060a86306e1e7.index.js → 96237.d8b8d0db6c2a36789372.index.js} +0 -0
  1852. /richie/static/richie/js/build/{96440.1973586060a86306e1e7.index.js → 96440.d8b8d0db6c2a36789372.index.js} +0 -0
  1853. /richie/static/richie/js/build/{96546.1973586060a86306e1e7.index.js → 96546.d8b8d0db6c2a36789372.index.js} +0 -0
  1854. /richie/static/richie/js/build/{96911.1973586060a86306e1e7.index.js → 96911.d8b8d0db6c2a36789372.index.js} +0 -0
  1855. /richie/static/richie/js/build/{97077.1973586060a86306e1e7.index.js → 97077.d8b8d0db6c2a36789372.index.js} +0 -0
  1856. /richie/static/richie/js/build/{97598.1973586060a86306e1e7.index.js → 97598.d8b8d0db6c2a36789372.index.js} +0 -0
  1857. /richie/static/richie/js/build/{97722.1973586060a86306e1e7.index.js → 97722.d8b8d0db6c2a36789372.index.js} +0 -0
  1858. /richie/static/richie/js/build/{97758.1973586060a86306e1e7.index.js → 97758.d8b8d0db6c2a36789372.index.js} +0 -0
  1859. /richie/static/richie/js/build/{98011.1973586060a86306e1e7.index.js → 98011.d8b8d0db6c2a36789372.index.js} +0 -0
  1860. /richie/static/richie/js/build/{98177.1973586060a86306e1e7.index.js → 98177.d8b8d0db6c2a36789372.index.js} +0 -0
  1861. /richie/static/richie/js/build/{98557.1973586060a86306e1e7.index.js → 98557.d8b8d0db6c2a36789372.index.js} +0 -0
  1862. /richie/static/richie/js/build/{98897.1973586060a86306e1e7.index.js → 98897.d8b8d0db6c2a36789372.index.js} +0 -0
  1863. /richie/static/richie/js/build/{98931.1973586060a86306e1e7.index.js → 98931.d8b8d0db6c2a36789372.index.js} +0 -0
  1864. /richie/static/richie/js/build/{99366.1973586060a86306e1e7.index.js → 99366.d8b8d0db6c2a36789372.index.js} +0 -0
  1865. /richie/static/richie/js/build/{99377.1973586060a86306e1e7.index.js → 99377.d8b8d0db6c2a36789372.index.js} +0 -0
  1866. /richie/static/richie/js/build/{99692.1973586060a86306e1e7.index.js → 99692.d8b8d0db6c2a36789372.index.js} +0 -0
  1867. /richie/static/richie/js/build/{99716.1973586060a86306e1e7.index.js → 99716.d8b8d0db6c2a36789372.index.js} +0 -0
  1868. /richie/static/richie/js/build/{9986.1973586060a86306e1e7.index.js → 9986.d8b8d0db6c2a36789372.index.js} +0 -0
  1869. /richie/static/richie/js/build/{99953.1973586060a86306e1e7.index.js → 99953.d8b8d0db6c2a36789372.index.js} +0 -0
  1870. {richie-3.1.3.dev11.dist-info → richie-3.1.3.dev12.dist-info}/WHEEL +0 -0
  1871. {richie-3.1.3.dev11.dist-info → richie-3.1.3.dev12.dist-info}/licenses/LICENSE +0 -0
  1872. {richie-3.1.3.dev11.dist-info → richie-3.1.3.dev12.dist-info}/top_level.txt +0 -0
  1873. {richie-3.1.3.dev11.dist-info → richie-3.1.3.dev12.dist-info}/zip-safe +0 -0
@@ -6,7 +6,7 @@ import {
6
6
  PacedCourseFactory,
7
7
  } from 'utils/test/factories/richie';
8
8
  import {
9
- CourseProductRelationFactory,
9
+ OfferFactory,
10
10
  EnrollmentFactory,
11
11
  CredentialOrderFactory,
12
12
  ProductFactory,
@@ -74,8 +74,8 @@ describe('CourseProductItem', () => {
74
74
  }).format(price);
75
75
 
76
76
  it('should display a loader until product is loaded', async () => {
77
- const relation = CourseProductRelationFactory().one();
78
- const { product } = relation;
77
+ const offer = OfferFactory().one();
78
+ const { product } = offer;
79
79
  const productDeferred = new Deferred();
80
80
  fetchMock.get(
81
81
  `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
@@ -92,17 +92,14 @@ describe('CourseProductItem', () => {
92
92
 
93
93
  // - A loader should be displayed while product information are fetching
94
94
  await expectSpinner('Loading product information...');
95
- productDeferred.resolve(relation);
95
+ productDeferred.resolve(offer);
96
96
  await expectNoSpinner('Loading product information...');
97
97
  });
98
98
 
99
99
  it('renders product information for anonymous user', async () => {
100
- const relation = CourseProductRelationFactory().one();
101
- const { product } = relation;
102
- fetchMock.get(
103
- `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
104
- relation,
105
- );
100
+ const offer = OfferFactory().one();
101
+ const { product } = offer;
102
+ fetchMock.get(`https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`, offer);
106
103
 
107
104
  render(
108
105
  <CourseProductItem
@@ -131,7 +128,7 @@ describe('CourseProductItem', () => {
131
128
  ).not.toBeInTheDocument();
132
129
 
133
130
  // - Render all target courses information
134
- relation.product.target_courses.forEach((course) => {
131
+ offer.product.target_courses.forEach((course) => {
135
132
  const $item = screen.getByTestId(`course-item-${course.code}`);
136
133
  // the course title shouldn't be a heading to prevent misdirection for screen reader users,
137
134
  // but we want to it to visually look like a h5
@@ -151,7 +148,7 @@ describe('CourseProductItem', () => {
151
148
  });
152
149
 
153
150
  it('renders discount rate for anonymous user', async () => {
154
- const relation = CourseProductRelationFactory({
151
+ const offer = OfferFactory({
155
152
  product: CredentialProductFactory({
156
153
  price: 840,
157
154
  price_currency: 'EUR',
@@ -162,11 +159,8 @@ describe('CourseProductItem', () => {
162
159
  discount_start: new Date('2023-01-01T00:00:00Z').toISOString(),
163
160
  discount_end: new Date('2023-12-31T23:59:59Z').toISOString(),
164
161
  }).one();
165
- const { product } = relation;
166
- fetchMock.get(
167
- `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
168
- relation,
169
- );
162
+ const { product } = offer;
163
+ fetchMock.get(`https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`, offer);
170
164
 
171
165
  render(
172
166
  <CourseProductItem
@@ -192,7 +186,7 @@ describe('CourseProductItem', () => {
192
186
  const discountedPriceLabel = screen.getByText('Discounted price:');
193
187
  expect(discountedPriceLabel.classList.contains('offscreen')).toBe(true);
194
188
  const discountedPrice = screen.getByText(
195
- priceFormatter(product.price_currency, relation.discounted_price!).replace(
189
+ priceFormatter(product.price_currency, offer.discounted_price!).replace(
196
190
  /(\u202F|\u00a0)/g,
197
191
  ' ',
198
192
  ),
@@ -212,7 +206,7 @@ describe('CourseProductItem', () => {
212
206
  });
213
207
 
214
208
  it('renders discount amount for anonymous user', async () => {
215
- const relation = CourseProductRelationFactory({
209
+ const offer = OfferFactory({
216
210
  product: CredentialProductFactory({
217
211
  price: 840,
218
212
  price_currency: 'EUR',
@@ -223,11 +217,8 @@ describe('CourseProductItem', () => {
223
217
  discount_start: new Date('2023-01-01T00:00:00Z').toISOString(),
224
218
  discount_end: new Date('2023-12-31T23:59:59Z').toISOString(),
225
219
  }).one();
226
- const { product } = relation;
227
- fetchMock.get(
228
- `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
229
- relation,
230
- );
220
+ const { product } = offer;
221
+ fetchMock.get(`https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`, offer);
231
222
 
232
223
  render(
233
224
  <CourseProductItem
@@ -253,7 +244,7 @@ describe('CourseProductItem', () => {
253
244
  const discountedPriceLabel = screen.getByText('Discounted price:');
254
245
  expect(discountedPriceLabel.classList.contains('offscreen')).toBe(true);
255
246
  const discountedPrice = screen.getByText(
256
- priceFormatter(product.price_currency, relation.discounted_price!).replace(
247
+ priceFormatter(product.price_currency, offer.discounted_price!).replace(
257
248
  /(\u202F|\u00a0)/g,
258
249
  ' ',
259
250
  ),
@@ -273,16 +264,13 @@ describe('CourseProductItem', () => {
273
264
  });
274
265
 
275
266
  it('does not render <CertificateItem /> if product do not have a certificate', async () => {
276
- const relation = CourseProductRelationFactory({
267
+ const offer = OfferFactory({
277
268
  product: ProductFactory({
278
269
  certificate_definition: undefined,
279
270
  }).one(),
280
271
  }).one();
281
- const { product } = relation;
282
- fetchMock.get(
283
- `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
284
- relation,
285
- );
272
+ const { product } = offer;
273
+ fetchMock.get(`https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`, offer);
286
274
 
287
275
  render(
288
276
  <CourseProductItem
@@ -300,16 +288,16 @@ describe('CourseProductItem', () => {
300
288
  });
301
289
 
302
290
  it('renders product information in compact mode', async () => {
303
- const relation = CourseProductRelationFactory().one();
291
+ const offer = OfferFactory().one();
304
292
  fetchMock.get(
305
- `https://joanie.endpoint/api/v1.0/courses/00000/products/${relation.product.id}/`,
306
- relation,
293
+ `https://joanie.endpoint/api/v1.0/courses/00000/products/${offer.product.id}/`,
294
+ offer,
307
295
  );
308
296
 
309
297
  const { container } = render(
310
298
  <CourseProductItem
311
299
  course={PacedCourseFactory({ code: '00000' }).one()}
312
- productId={relation.product.id}
300
+ productId={offer.product.id}
313
301
  compact
314
302
  />,
315
303
  { queryOptions: { client: createTestQueryClient({ user: null }) } },
@@ -317,14 +305,14 @@ describe('CourseProductItem', () => {
317
305
 
318
306
  // In the header, we should display the product title, the product price
319
307
  // and product date range and languages
320
- await screen.findByRole('heading', { level: 3, name: relation.product.title });
308
+ await screen.findByRole('heading', { level: 3, name: offer.product.title });
321
309
  // the price shouldn't be a heading to prevent misdirection for screen reader users,
322
310
  // but we want to it to visually look like a h6
323
311
 
324
312
  const $price = screen.getByText(
325
313
  // the price formatter generates non-breaking spaces and getByText doesn't seem to handle that well, replace it
326
314
  // with a regular space. We replace NNBSP (\u202F) and NBSP (\u00a0) with a regular space
327
- priceFormatter(relation.product.price_currency, relation.product.price).replace(
315
+ priceFormatter(offer.product.price_currency, offer.product.price).replace(
328
316
  /(\u202F|\u00a0)/g,
329
317
  ' ',
330
318
  ),
@@ -340,7 +328,7 @@ describe('CourseProductItem', () => {
340
328
  expect($productWidgetContent).not.toBeInTheDocument();
341
329
 
342
330
  // - Any target courses information should be displayed
343
- relation.product.target_courses.forEach((course) => {
331
+ offer.product.target_courses.forEach((course) => {
344
332
  const $item = screen.queryByTestId(`course-item-${course.code}`);
345
333
  expect($item).not.toBeInTheDocument();
346
334
  });
@@ -349,7 +337,7 @@ describe('CourseProductItem', () => {
349
337
  expect(screen.queryByTestId('CertificateItem')).not.toBeInTheDocument();
350
338
 
351
339
  // - Render a login button
352
- screen.getByRole('button', { name: `Login to purchase "${relation.product.title}"` });
340
+ screen.getByRole('button', { name: `Login to purchase "${offer.product.title}"` });
353
341
  // - Does not render PurchaseButton cta
354
342
  expect(screen.queryByTestId('PurchaseButton__cta')).not.toBeInTheDocument();
355
343
  });
@@ -357,8 +345,8 @@ describe('CourseProductItem', () => {
357
345
  it.each([OrderState.PENDING, OrderState.NO_PAYMENT])(
358
346
  'renders product informations for %s order',
359
347
  async (state) => {
360
- const relation = CourseProductRelationFactory().one();
361
- const { product } = relation;
348
+ const offer = OfferFactory().one();
349
+ const { product } = offer;
362
350
  const order = CredentialOrderFactory({
363
351
  product_id: product.id,
364
352
  course: PacedCourseFactory({ code: '00000' }).one(),
@@ -368,7 +356,7 @@ describe('CourseProductItem', () => {
368
356
 
369
357
  fetchMock.get(
370
358
  `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
371
- relation,
359
+ offer,
372
360
  );
373
361
  const orderQueryParameters = {
374
362
  course_code: order.course.code,
@@ -382,13 +370,13 @@ describe('CourseProductItem', () => {
382
370
  render(
383
371
  <CourseProductItem
384
372
  course={PacedCourseFactory({ code: '00000' }).one()}
385
- productId={relation.product.id}
373
+ productId={offer.product.id}
386
374
  />,
387
375
  );
388
376
 
389
377
  // In the header, we should display the product title, the product price
390
378
  // and product date range and languages
391
- await screen.findByRole('heading', { level: 3, name: relation.product.title });
379
+ await screen.findByRole('heading', { level: 3, name: offer.product.title });
392
380
  // the price shouldn't be a heading to prevent misdirection for screen reader users,
393
381
  // but we want to it to visually look like a h6
394
382
 
@@ -418,8 +406,8 @@ describe('CourseProductItem', () => {
418
406
  it.each([OrderState.PENDING, OrderState.NO_PAYMENT])(
419
407
  'renders product informations for %s order in compact mode',
420
408
  async (state) => {
421
- const relation = CourseProductRelationFactory().one();
422
- const { product } = relation;
409
+ const offer = OfferFactory().one();
410
+ const { product } = offer;
423
411
  const order = CredentialOrderFactory({
424
412
  product_id: product.id,
425
413
  course: PacedCourseFactory({ code: '00000' }).one(),
@@ -429,7 +417,7 @@ describe('CourseProductItem', () => {
429
417
 
430
418
  fetchMock.get(
431
419
  `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
432
- relation,
420
+ offer,
433
421
  );
434
422
  const orderQueryParameters = {
435
423
  course_code: order.course.code,
@@ -443,14 +431,14 @@ describe('CourseProductItem', () => {
443
431
  render(
444
432
  <CourseProductItem
445
433
  course={PacedCourseFactory({ code: '00000' }).one()}
446
- productId={relation.product.id}
434
+ productId={offer.product.id}
447
435
  compact
448
436
  />,
449
437
  );
450
438
 
451
439
  // In the header, we should display the product title, the product price
452
440
  // and product date range and languages
453
- await screen.findByRole('heading', { level: 3, name: relation.product.title });
441
+ await screen.findByRole('heading', { level: 3, name: offer.product.title });
454
442
  // the price shouldn't be a heading to prevent misdirection for screen reader users,
455
443
  // but we want to it to visually look like a h6
456
444
 
@@ -460,7 +448,7 @@ describe('CourseProductItem', () => {
460
448
  expect($enrolledInfo.classList.contains('h6')).toBe(true);
461
449
 
462
450
  // - Any target courses information should be displayed
463
- relation.product.target_courses.forEach((course) => {
451
+ offer.product.target_courses.forEach((course) => {
464
452
  const $item = screen.queryByTestId(`course-item-${course.code}`);
465
453
  expect($item).not.toBeInTheDocument();
466
454
  });
@@ -471,8 +459,8 @@ describe('CourseProductItem', () => {
471
459
  );
472
460
 
473
461
  it.each(ENROLLABLE_ORDER_STATES)('renders product information for a %s order', async (state) => {
474
- const relation = CourseProductRelationFactory().one();
475
- const { product } = relation;
462
+ const offer = OfferFactory().one();
463
+ const { product } = offer;
476
464
  const order = CredentialOrderFactory({
477
465
  product_id: product.id,
478
466
  course: PacedCourseFactory({ code: '00000' }).one(),
@@ -480,10 +468,7 @@ describe('CourseProductItem', () => {
480
468
  state,
481
469
  }).one();
482
470
 
483
- fetchMock.get(
484
- `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
485
- relation,
486
- );
471
+ fetchMock.get(`https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`, offer);
487
472
  const orderQueryParameters = {
488
473
  course_code: order.course.code,
489
474
  product_id: order.product_id,
@@ -533,17 +518,17 @@ describe('CourseProductItem', () => {
533
518
  it.each(ENROLLABLE_ORDER_STATES)(
534
519
  'renders product informations for a %s order in compact mode',
535
520
  async (state) => {
536
- const relation = CourseProductRelationFactory().one();
521
+ const offer = OfferFactory().one();
537
522
  const order: CredentialOrder = CredentialOrderFactory({
538
- product_id: relation.product.id,
523
+ product_id: offer.product.id,
539
524
  course: PacedCourseFactory({ code: '00000' }).one(),
540
- target_courses: relation.product.target_courses,
525
+ target_courses: offer.product.target_courses,
541
526
  state,
542
527
  }).one();
543
528
 
544
529
  fetchMock.get(
545
- `https://joanie.endpoint/api/v1.0/courses/00000/products/${relation.product.id}/`,
546
- relation,
530
+ `https://joanie.endpoint/api/v1.0/courses/00000/products/${offer.product.id}/`,
531
+ offer,
547
532
  );
548
533
  const orderQueryParameters = {
549
534
  product_id: order.product_id,
@@ -557,14 +542,14 @@ describe('CourseProductItem', () => {
557
542
 
558
543
  render(
559
544
  <CourseProductItem
560
- productId={relation.product.id}
545
+ productId={offer.product.id}
561
546
  course={PacedCourseFactory({ code: '00000' }).one()}
562
547
  compact
563
548
  />,
564
549
  );
565
550
 
566
551
  // Wait for product information to be fetched
567
- await screen.findByRole('heading', { level: 3, name: relation.product.title });
552
+ await screen.findByRole('heading', { level: 3, name: offer.product.title });
568
553
 
569
554
  // - In place of product price, a label should be displayed
570
555
  const $enrolledInfo = await screen.findByText('Purchased');
@@ -601,8 +586,8 @@ describe('CourseProductItem', () => {
601
586
  );
602
587
 
603
588
  it('renders enrollment information when user is enrolled to a course run', async () => {
604
- const relation = CourseProductRelationFactory().one();
605
- const { product } = relation;
589
+ const offer = OfferFactory().one();
590
+ const { product } = offer;
606
591
  // - Create an order with an active enrollment
607
592
  const enrollment: Enrollment = EnrollmentFactory({
608
593
  course_run: product.target_courses[0]!.course_runs[0]! as CourseRun,
@@ -614,10 +599,7 @@ describe('CourseProductItem', () => {
614
599
  target_enrollments: [enrollment],
615
600
  }).one();
616
601
 
617
- fetchMock.get(
618
- `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
619
- relation,
620
- );
602
+ fetchMock.get(`https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`, offer);
621
603
  const orderQueryParameters = {
622
604
  product_id: order.product_id,
623
605
  course_code: order.course?.code,
@@ -668,8 +650,8 @@ describe('CourseProductItem', () => {
668
650
  it.each(PURCHASABLE_ORDER_STATES)(
669
651
  'renders sale tunnel button if user already has a %s order',
670
652
  async (state) => {
671
- const relation = CourseProductRelationFactory().one();
672
- const { product } = relation;
653
+ const offer = OfferFactory().one();
654
+ const { product } = offer;
673
655
  const order = CredentialOrderFactory({
674
656
  product_id: product.id,
675
657
  course: PacedCourseFactory({ code: '00000' }).one(),
@@ -678,7 +660,7 @@ describe('CourseProductItem', () => {
678
660
  }).one();
679
661
  fetchMock.get(
680
662
  `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
681
- relation,
663
+ offer,
682
664
  );
683
665
  const orderQueryParameters = {
684
666
  product_id: order.product_id,
@@ -709,7 +691,7 @@ describe('CourseProductItem', () => {
709
691
  expect($price.classList.contains('h6')).toBe(true);
710
692
 
711
693
  // - Render all target courses information
712
- relation.product.target_courses.forEach((course) => {
694
+ offer.product.target_courses.forEach((course) => {
713
695
  const $item = screen.getByTestId(`course-item-${course.code}`);
714
696
  // the course title shouldn't be a heading to prevent misdirection for screen reader users,
715
697
  // but we want to it to visually look like a h5
@@ -724,12 +706,9 @@ describe('CourseProductItem', () => {
724
706
  );
725
707
 
726
708
  it('renders sale tunnel button if user already has a canceled order', async () => {
727
- const relation = CourseProductRelationFactory().one();
728
- const { product } = relation;
729
- fetchMock.get(
730
- `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
731
- relation,
732
- );
709
+ const offer = OfferFactory().one();
710
+ const { product } = offer;
711
+ fetchMock.get(`https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`, offer);
733
712
  const orderQueryParameters = {
734
713
  product_id: product.id,
735
714
  course_code: '00000',
@@ -759,7 +738,7 @@ describe('CourseProductItem', () => {
759
738
  expect($price.classList.contains('h6')).toBe(true);
760
739
 
761
740
  // - Render all target courses information
762
- relation.product.target_courses.forEach((course) => {
741
+ offer.product.target_courses.forEach((course) => {
763
742
  const $item = screen.getByTestId(`course-item-${course.code}`);
764
743
  // the course title shouldn't be a heading to prevent misdirection for screen reader users,
765
744
  // but we want to it to visually look like a h5
@@ -773,7 +752,7 @@ describe('CourseProductItem', () => {
773
752
  });
774
753
 
775
754
  it('renders error message when product fetching has failed', async () => {
776
- const { product } = CourseProductRelationFactory().one();
755
+ const { product } = OfferFactory().one();
777
756
 
778
757
  fetchMock.get(
779
758
  `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
@@ -794,21 +773,18 @@ describe('CourseProductItem', () => {
794
773
  });
795
774
 
796
775
  it('renders a warning message that tells that no seats are left', async () => {
797
- const relation = CourseProductRelationFactory({
776
+ const offer = OfferFactory({
798
777
  seats: 2,
799
778
  nb_seats_available: 0,
800
779
  }).one();
801
- const { product } = relation;
780
+ const { product } = offer;
802
781
  const order = CredentialOrderFactory({
803
782
  product_id: product.id,
804
783
  course: PacedCourseFactory({ code: '00000' }).one(),
805
784
  target_courses: product.target_courses,
806
785
  state: OrderState.DRAFT,
807
786
  }).one();
808
- fetchMock.get(
809
- `https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`,
810
- relation,
811
- );
787
+ fetchMock.get(`https://joanie.endpoint/api/v1.0/courses/00000/products/${product.id}/`, offer);
812
788
  const orderQueryParameters = {
813
789
  product_id: order.product_id,
814
790
  course_code: order.course?.code,
@@ -3,7 +3,7 @@ import { QueryClientProvider } from '@tanstack/react-query';
3
3
  import fetchMock from 'fetch-mock';
4
4
  import { StorybookHelper } from 'utils/StorybookHelper';
5
5
  import {
6
- CourseProductRelationFactory,
6
+ OfferFactory,
7
7
  CourseRunFactory,
8
8
  CredentialOrderFactory,
9
9
  CredentialProductFactory,
@@ -22,7 +22,7 @@ const render = (args: CourseProductItemProps, options?: Maybe<{ order: Credentia
22
22
  fetchMock.get(`http://localhost:8071/api/v1.0/addresses/`, [], { overwriteRoutes: true });
23
23
  fetchMock.get(
24
24
  `http://localhost:8071/api/v1.0/courses/${args.course.code}/products/${args.productId}/`,
25
- CourseProductRelationFactory({
25
+ OfferFactory({
26
26
  product: CredentialProductFactory({
27
27
  price: 840,
28
28
  price_currency: 'EUR',
@@ -1,7 +1,7 @@
1
1
  import { Children, useEffect, useMemo } from 'react';
2
2
  import { defineMessages, FormattedMessage, FormattedNumber, useIntl } from 'react-intl';
3
3
  import c from 'classnames';
4
- import { CourseProductRelation, CredentialOrder, Product, ProductType } from 'types/Joanie';
4
+ import { Offer, CredentialOrder, Product, ProductType } from 'types/Joanie';
5
5
  import { useCourseProduct } from 'hooks/useCourseProducts';
6
6
  import { Spinner } from 'components/Spinner';
7
7
  import { Icon, IconTypeEnum } from 'components/Icon';
@@ -77,16 +77,9 @@ type HeaderProps = {
77
77
  canPurchase: boolean;
78
78
  order: Maybe<CredentialOrder>;
79
79
  product: Product;
80
- courseProductRelation: CourseProductRelation;
80
+ offer: Offer;
81
81
  };
82
- const Header = ({
83
- product,
84
- order,
85
- courseProductRelation,
86
- hasPurchased,
87
- canPurchase,
88
- compact,
89
- }: HeaderProps) => {
82
+ const Header = ({ product, order, offer, hasPurchased, canPurchase, compact }: HeaderProps) => {
90
83
  const intl = useIntl();
91
84
  const formatDate = useDateFormat();
92
85
 
@@ -110,7 +103,7 @@ const Header = ({
110
103
  return null;
111
104
  }
112
105
 
113
- if (courseProductRelation.discounted_price) {
106
+ if (offer.discounted_price) {
114
107
  return (
115
108
  <>
116
109
  <span id="original-price" className="offscreen">
@@ -129,7 +122,7 @@ const Header = ({
129
122
  <ins aria-describedby="discount-price" className="product-widget__price-discount">
130
123
  <FormattedNumber
131
124
  currency={product.price_currency}
132
- value={courseProductRelation.discounted_price}
125
+ value={offer.discounted_price}
133
126
  style="currency"
134
127
  />
135
128
  </ins>
@@ -140,7 +133,7 @@ const Header = ({
140
133
  return (
141
134
  <FormattedNumber currency={product.price_currency} value={product.price} style="currency" />
142
135
  );
143
- }, [canPurchase, courseProductRelation.discounted_price, product.price]);
136
+ }, [canPurchase, offer.discounted_price, product.price]);
144
137
 
145
138
  return (
146
139
  <header className="product-widget__header">
@@ -151,40 +144,37 @@ const Header = ({
151
144
  {hasPurchased && <FormattedMessage {...messages.purchased} />}
152
145
  {displayPrice}
153
146
  </strong>
154
- {courseProductRelation?.description && (
155
- <p className="product-widget__header-description">{courseProductRelation.description}</p>
147
+ {offer?.description && (
148
+ <p className="product-widget__header-description">{offer.description}</p>
156
149
  )}
157
- {courseProductRelation?.discounted_price && (
150
+ {offer?.discounted_price && (
158
151
  <p className="product-widget__header-discount">
159
- {courseProductRelation.discount_rate ? (
152
+ {offer.discount_rate ? (
160
153
  <span className="product-widget__header-discount-rate">
161
- <FormattedNumber value={-courseProductRelation.discount_rate} style="percent" />
154
+ <FormattedNumber value={-offer.discount_rate} style="percent" />
162
155
  </span>
163
156
  ) : (
164
157
  <span className="product-widget__header-discount-amount">
165
158
  <FormattedNumber
166
159
  currency={product.price_currency}
167
- value={-courseProductRelation.discount_amount!}
160
+ value={-offer.discount_amount!}
168
161
  style="currency"
169
162
  />
170
163
  </span>
171
164
  )}
172
- {courseProductRelation.discount_start && (
165
+ {offer.discount_start && (
173
166
  <span className="product-widget__header-discount-date">
174
167
  &nbsp;
175
168
  <FormattedMessage
176
169
  {...messages.from}
177
- values={{ from: formatDate(courseProductRelation.discount_start) }}
170
+ values={{ from: formatDate(offer.discount_start) }}
178
171
  />
179
172
  </span>
180
173
  )}
181
- {courseProductRelation.discount_end && (
174
+ {offer.discount_end && (
182
175
  <span className="product-widget__header-discount-date">
183
176
  &nbsp;
184
- <FormattedMessage
185
- {...messages.to}
186
- values={{ to: formatDate(courseProductRelation.discount_end) }}
187
- />
177
+ <FormattedMessage {...messages.to} values={{ to: formatDate(offer.discount_end) }} />
188
178
  </span>
189
179
  )}
190
180
  </p>
@@ -246,12 +236,12 @@ const Content = ({ product, order }: { product: Product; order?: CredentialOrder
246
236
  const CourseProductItem = ({ productId, course, compact = false }: CourseProductItemProps) => {
247
237
  // FIXME(rlecellier): useCourseProduct need's a filter on product.type that only return
248
238
  // CredentialOrder
249
- const { item: courseProductRelation, states: productQueryStates } = useCourseProduct({
239
+ const { item: offer, states: productQueryStates } = useCourseProduct({
250
240
  product_id: productId,
251
241
  course_id: course.code,
252
242
  });
253
243
 
254
- const product = courseProductRelation?.product;
244
+ const product = offer?.product;
255
245
  const { item: productOrder, states: orderQueryStates } = useProductOrder({
256
246
  productId,
257
247
  courseCode: course.code,
@@ -309,18 +299,14 @@ const CourseProductItem = ({ productId, course, compact = false }: CourseProduct
309
299
  <Header
310
300
  product={product}
311
301
  order={order}
312
- courseProductRelation={courseProductRelation}
302
+ offer={offer}
313
303
  canPurchase={canPurchase}
314
304
  hasPurchased={hasPurchased}
315
305
  compact={compact}
316
306
  />
317
307
  {canShowContent && <Content product={product} order={order} />}
318
308
  <footer className="product-widget__footer">
319
- <CourseProductItemFooter
320
- course={course}
321
- courseProductRelation={courseProductRelation}
322
- canPurchase={canPurchase}
323
- />
309
+ <CourseProductItemFooter course={course} offer={offer} canPurchase={canPurchase} />
324
310
  </footer>
325
311
  </>
326
312
  )}
@@ -22,8 +22,8 @@ import {
22
22
  import SyllabusCourseRunsList from 'widgets/SyllabusCourseRunsList/index';
23
23
  import { createTestQueryClient } from 'utils/test/createTestQueryClient';
24
24
  import { CourseRun, Priority } from 'types';
25
- import { CourseProductRelation } from 'types/Joanie';
26
- import { CourseProductRelationFactory } from 'utils/test/factories/joanie';
25
+ import { Offer } from 'types/Joanie';
26
+ import { OfferFactory } from 'utils/test/factories/joanie';
27
27
  import { DEFAULT_DATE_FORMAT } from 'hooks/useDateFormat';
28
28
  import { StringHelper } from 'utils/StringHelper';
29
29
  import { computeStates } from 'utils/CourseRuns';
@@ -211,9 +211,9 @@ describe('<SyllabusCourseRunsList/>', () => {
211
211
  });
212
212
  };
213
213
 
214
- const expectCourseProduct = async (container: HTMLElement, relation: CourseProductRelation) => {
214
+ const expectCourseProduct = async (container: HTMLElement, offer: Offer) => {
215
215
  const heading = await findByRole(container, 'heading', {
216
- name: relation.product.title,
216
+ name: offer.product.title,
217
217
  });
218
218
  expect(Array.from(heading.classList)).toContain('product-widget__title');
219
219
  };
@@ -383,9 +383,9 @@ describe('<SyllabusCourseRunsList/>', () => {
383
383
 
384
384
  it('has one opened product', async () => {
385
385
  const course = PacedCourseFactory().one();
386
- const relation = CourseProductRelationFactory().one();
387
- const resourceLink = `https://joanie.endpoint/api/v1.0/courses/${course.code}/products/${relation.product.id}/`;
388
- fetchMock.get(resourceLink, relation);
386
+ const offer = OfferFactory().one();
387
+ const resourceLink = `https://joanie.endpoint/api/v1.0/courses/${course.code}/products/${offer.product.id}/`;
388
+ fetchMock.get(resourceLink, offer);
389
389
 
390
390
  const courseRun = CourseRunFactoryFromPriority(Priority.ONGOING_OPEN)({
391
391
  resource_link: resourceLink,
@@ -406,7 +406,7 @@ describe('<SyllabusCourseRunsList/>', () => {
406
406
  expect(getHeaderContainer().querySelectorAll('.course-detail__run-descriptions').length).toBe(
407
407
  1,
408
408
  );
409
- await expectCourseProduct(getHeaderContainer(), relation);
409
+ await expectCourseProduct(getHeaderContainer(), offer);
410
410
 
411
411
  // Portal.
412
412
  expectEmptyPortalContainer();
@@ -0,0 +1,2 @@
1
+ (self.webpackChunkrichie_education=self.webpackChunkrichie_education||[]).push([[10146],{10146:function(){Intl.RelativeTimeFormat&&"function"==typeof Intl.RelativeTimeFormat.__addLocaleData&&Intl.RelativeTimeFormat.__addLocaleData({data:{day:{"-1":"hier","-2":"avant-hier",0:"aujourd’hui",1:"demain",2:"après-demain",future:{one:"dans {0} jour",other:"dans {0} jours"},past:{one:"il y a {0} jour",other:"il y a {0} jours"}},"day-narrow":{"-1":"hier","-2":"avant-hier",0:"aujourd’hui",1:"demain",2:"après-demain",future:{one:"+{0} j",other:"+{0} j"},past:{one:"-{0} j",other:"-{0} j"}},"day-short":{"-1":"hier","-2":"avant-hier",0:"aujourd’hui",1:"demain",2:"après-demain",future:{one:"dans {0} j",other:"dans {0} j"},past:{one:"il y a {0} j",other:"il y a {0} j"}},hour:{0:"cette heure-ci",future:{one:"dans {0} heure",other:"dans {0} heures"},past:{one:"il y a {0} heure",other:"il y a {0} heures"}},"hour-narrow":{0:"cette heure-ci",future:{one:"+{0} h",other:"+{0} h"},past:{one:"-{0} h",other:"-{0} h"}},"hour-short":{0:"cette heure-ci",future:{one:"dans {0} h",other:"dans {0} h"},past:{one:"il y a {0} h",other:"il y a {0} h"}},minute:{0:"cette minute-ci",future:{one:"dans {0} minute",other:"dans {0} minutes"},past:{one:"il y a {0} minute",other:"il y a {0} minutes"}},"minute-narrow":{0:"cette minute-ci",future:{one:"+{0} min",other:"+{0} min"},past:{one:"-{0} min",other:"-{0} min"}},"minute-short":{0:"cette minute-ci",future:{one:"dans {0} min",other:"dans {0} min"},past:{one:"il y a {0} min",other:"il y a {0} min"}},month:{"-1":"le mois dernier",0:"ce mois-ci",1:"le mois prochain",future:{one:"dans {0} mois",other:"dans {0} mois"},past:{one:"il y a {0} mois",other:"il y a {0} mois"}},"month-narrow":{"-1":"le mois dernier",0:"ce mois-ci",1:"le mois prochain",future:{one:"+{0} m.",other:"+{0} m."},past:{one:"-{0} m.",other:"-{0} m."}},"month-short":{"-1":"le mois dernier",0:"ce mois-ci",1:"le mois prochain",future:{one:"dans {0} m.",other:"dans {0} m."},past:{one:"il y a {0} m.",other:"il y a {0} m."}},nu:["latn"],quarter:{"-1":"le trimestre dernier",0:"ce trimestre",1:"le trimestre prochain",future:{one:"dans {0} trimestre",other:"dans {0} trimestres"},past:{one:"il y a {0} trimestre",other:"il y a {0} trimestres"}},"quarter-narrow":{"-1":"le trimestre dernier",0:"ce trimestre",1:"le trimestre prochain",future:{one:"+{0} trim.",other:"+{0} trim."},past:{one:"-{0} trim.",other:"-{0} trim."}},"quarter-short":{"-1":"le trimestre dernier",0:"ce trimestre",1:"le trimestre prochain",future:{one:"dans {0} trim.",other:"dans {0} trim."},past:{one:"il y a {0} trim.",other:"il y a {0} trim."}},second:{0:"maintenant",future:{one:"dans {0} seconde",other:"dans {0} secondes"},past:{one:"il y a {0} seconde",other:"il y a {0} secondes"}},"second-narrow":{0:"maintenant",future:{one:"+{0} s",other:"+{0} s"},past:{one:"-{0} s",other:"-{0} s"}},"second-short":{0:"maintenant",future:{one:"dans {0} s",other:"dans {0} s"},past:{one:"il y a {0} s",other:"il y a {0} s"}},week:{"-1":"la semaine dernière",0:"cette semaine",1:"la semaine prochaine",future:{one:"dans {0} semaine",other:"dans {0} semaines"},past:{one:"il y a {0} semaine",other:"il y a {0} semaines"}},"week-narrow":{"-1":"la semaine dernière",0:"cette semaine",1:"la semaine prochaine",future:{one:"+{0} sem.",other:"+{0} sem."},past:{one:"-{0} sem.",other:"-{0} sem."}},"week-short":{"-1":"la semaine dernière",0:"cette semaine",1:"la semaine prochaine",future:{one:"dans {0} sem.",other:"dans {0} sem."},past:{one:"il y a {0} sem.",other:"il y a {0} sem."}},year:{"-1":"l’année dernière",0:"cette année",1:"l’année prochaine",future:{one:"dans {0} an",other:"dans {0} ans"},past:{one:"il y a {0} an",other:"il y a {0} ans"}},"year-narrow":{"-1":"l’année dernière",0:"cette année",1:"l’année prochaine",future:{one:"+{0} a",other:"+{0} a"},past:{one:"-{0} a",other:"-{0} a"}},"year-short":{"-1":"l’année dernière",0:"cette année",1:"l’année prochaine",future:{one:"dans {0} a",other:"dans {0} a"},past:{one:"il y a {0} a",other:"il y a {0} a"}}},locale:"fr-SY"})}}]);
2
+ //# sourceMappingURL=10146.d8b8d0db6c2a36789372.index.js.map