endoreg-db 0.5.3__py3-none-any.whl → 0.6.1__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 endoreg-db might be problematic. Click here for more details.

Files changed (268) hide show
  1. endoreg_db/admin.py +90 -1
  2. endoreg_db/case_generator/case_generator.py +159 -0
  3. endoreg_db/case_generator/lab_sample_factory.py +33 -0
  4. endoreg_db/case_generator/utils.py +30 -0
  5. endoreg_db/data/__init__.py +50 -4
  6. endoreg_db/data/ai_model/data.yaml +7 -0
  7. endoreg_db/data/{label → ai_model_label}/label/data.yaml +27 -1
  8. endoreg_db/data/ai_model_label/label-set/data.yaml +21 -0
  9. endoreg_db/data/ai_model_meta/default_multilabel_classification.yaml +5 -0
  10. endoreg_db/data/ai_model_video_segmentation_label/base_segmentation.yaml +176 -0
  11. endoreg_db/data/ai_model_video_segmentation_labelset/data.yaml +20 -0
  12. endoreg_db/data/center/data.yaml +35 -5
  13. endoreg_db/data/contraindication/bleeding.yaml +11 -0
  14. endoreg_db/data/distribution/numeric/data.yaml +14 -0
  15. endoreg_db/data/endoscope/data.yaml +93 -0
  16. endoreg_db/data/examination_indication/endoscopy.yaml +8 -0
  17. endoreg_db/data/examination_indication_classification/endoscopy.yaml +8 -0
  18. endoreg_db/data/examination_indication_classification_choice/endoscopy.yaml +101 -0
  19. endoreg_db/data/finding/data.yaml +141 -0
  20. endoreg_db/data/finding_intervention/endoscopy.yaml +138 -0
  21. endoreg_db/data/finding_intervention_type/endoscopy.yaml +15 -0
  22. endoreg_db/data/finding_location_classification/colonoscopy.yaml +46 -0
  23. endoreg_db/data/finding_location_classification_choice/colonoscopy.yaml +240 -0
  24. endoreg_db/data/finding_morphology_classification/colonoscopy.yaml +48 -0
  25. endoreg_db/data/finding_morphology_classification_choice/colon_lesion_circularity_default.yaml +34 -0
  26. endoreg_db/data/finding_morphology_classification_choice/colon_lesion_nice.yaml +20 -0
  27. endoreg_db/data/finding_morphology_classification_choice/colon_lesion_paris.yaml +65 -0
  28. endoreg_db/data/finding_morphology_classification_choice/colon_lesion_planarity_default.yaml +56 -0
  29. endoreg_db/data/finding_morphology_classification_choice/colon_lesion_surface_intact_default.yaml +39 -0
  30. endoreg_db/data/finding_morphology_classification_choice/colonoscopy_size.yaml +57 -0
  31. endoreg_db/data/finding_morphology_classification_type/colonoscopy.yaml +79 -0
  32. endoreg_db/data/finding_type/data.yaml +30 -0
  33. endoreg_db/data/gender/data.yaml +17 -0
  34. endoreg_db/data/lab_value/cardiac_enzymes.yaml +7 -1
  35. endoreg_db/data/lab_value/coagulation.yaml +6 -1
  36. endoreg_db/data/lab_value/electrolytes.yaml +39 -1
  37. endoreg_db/data/lab_value/gastrointestinal_function.yaml +12 -0
  38. endoreg_db/data/lab_value/hematology.yaml +17 -2
  39. endoreg_db/data/lab_value/hormones.yaml +6 -0
  40. endoreg_db/data/lab_value/lipids.yaml +12 -3
  41. endoreg_db/data/lab_value/misc.yaml +5 -2
  42. endoreg_db/data/lab_value/renal_function.yaml +2 -1
  43. endoreg_db/data/lx_client_tag/base.yaml +54 -0
  44. endoreg_db/data/lx_client_type/base.yaml +30 -0
  45. endoreg_db/data/lx_permission/base.yaml +24 -0
  46. endoreg_db/data/lx_permission/endoreg.yaml +52 -0
  47. endoreg_db/data/medication_indication/anticoagulation.yaml +44 -49
  48. endoreg_db/data/names_first/first_names.yaml +51 -0
  49. endoreg_db/data/names_last/last_names.yaml +51 -0
  50. endoreg_db/data/network_device/data.yaml +30 -0
  51. endoreg_db/data/organ/data.yaml +29 -0
  52. endoreg_db/data/pdf_type/data.yaml +2 -1
  53. endoreg_db/data/report_reader_flag/ukw-examination-generic.yaml +4 -0
  54. endoreg_db/forms/__init__.py +3 -1
  55. endoreg_db/forms/examination_form.py +11 -0
  56. endoreg_db/forms/patient_finding_intervention_form.py +19 -0
  57. endoreg_db/forms/patient_form.py +26 -0
  58. endoreg_db/management/commands/__init__.py +0 -0
  59. endoreg_db/management/commands/load_ai_model_data.py +57 -23
  60. endoreg_db/management/commands/load_ai_model_label_data.py +59 -0
  61. endoreg_db/management/commands/load_base_db_data.py +160 -118
  62. endoreg_db/management/commands/{load_endoscope_type_data.py → load_contraindication_data.py} +3 -7
  63. endoreg_db/management/commands/load_disease_data.py +29 -7
  64. endoreg_db/management/commands/load_endoscope_data.py +68 -0
  65. endoreg_db/management/commands/load_examination_indication_data.py +65 -0
  66. endoreg_db/management/commands/load_finding_data.py +171 -0
  67. endoreg_db/management/commands/load_lab_value_data.py +3 -3
  68. endoreg_db/management/commands/load_lx_data.py +64 -0
  69. endoreg_db/management/commands/load_medication_data.py +83 -21
  70. endoreg_db/management/commands/load_name_data.py +37 -0
  71. endoreg_db/management/commands/{load_endoscopy_processor_data.py → load_organ_data.py} +7 -9
  72. endoreg_db/migrations/0001_initial.py +1206 -728
  73. endoreg_db/migrations/0002_alter_frame_image_alter_rawframe_image.py +23 -0
  74. endoreg_db/migrations/0003_alter_frame_image_alter_rawframe_image.py +23 -0
  75. endoreg_db/migrations/0004_alter_rawvideofile_file_alter_video_file.py +25 -0
  76. endoreg_db/migrations/0005_rawvideofile_frame_count_and_more.py +33 -0
  77. endoreg_db/migrations/0006_frame_extracted_rawframe_extracted.py +23 -0
  78. endoreg_db/migrations/0007_rename_pseudo_patient_video_patient_and_more.py +24 -0
  79. endoreg_db/migrations/0008_remove_reportfile_patient_examination_and_more.py +48 -0
  80. endoreg_db/models/__init__.py +331 -28
  81. endoreg_db/models/ai_model/__init__.py +1 -0
  82. endoreg_db/models/ai_model/ai_model.py +103 -0
  83. endoreg_db/models/ai_model/lightning/__init__.py +3 -0
  84. endoreg_db/models/ai_model/lightning/inference_dataset.py +53 -0
  85. endoreg_db/models/ai_model/lightning/multilabel_classification_net.py +155 -0
  86. endoreg_db/models/ai_model/lightning/postprocess.py +53 -0
  87. endoreg_db/models/ai_model/lightning/predict.py +172 -0
  88. endoreg_db/models/ai_model/lightning/prediction_visualizer.py +55 -0
  89. endoreg_db/models/ai_model/lightning/preprocess.py +68 -0
  90. endoreg_db/models/ai_model/lightning/run_visualizer.py +21 -0
  91. endoreg_db/models/ai_model/model_meta.py +232 -6
  92. endoreg_db/models/ai_model/model_type.py +13 -3
  93. endoreg_db/models/annotation/__init__.py +31 -2
  94. endoreg_db/models/annotation/anonymized_image_annotation.py +73 -18
  95. endoreg_db/models/annotation/binary_classification_annotation_task.py +94 -57
  96. endoreg_db/models/annotation/image_classification.py +73 -14
  97. endoreg_db/models/annotation/video_segmentation_annotation.py +52 -0
  98. endoreg_db/models/annotation/video_segmentation_labelset.py +20 -0
  99. endoreg_db/models/case/__init__.py +1 -0
  100. endoreg_db/models/{persons/patient/case → case}/case.py +4 -0
  101. endoreg_db/models/case_template/__init__.py +10 -1
  102. endoreg_db/models/case_template/case_template.py +57 -13
  103. endoreg_db/models/case_template/case_template_rule.py +5 -5
  104. endoreg_db/models/case_template/case_template_rule_value.py +19 -4
  105. endoreg_db/models/center/__init__.py +7 -0
  106. endoreg_db/models/center/center.py +31 -5
  107. endoreg_db/models/center/center_product.py +0 -1
  108. endoreg_db/models/center/center_resource.py +16 -2
  109. endoreg_db/models/center/center_waste.py +6 -1
  110. endoreg_db/models/contraindication/__init__.py +21 -0
  111. endoreg_db/models/data_file/__init__.py +38 -5
  112. endoreg_db/models/data_file/base_classes/__init__.py +6 -1
  113. endoreg_db/models/data_file/base_classes/abstract_frame.py +64 -15
  114. endoreg_db/models/data_file/base_classes/abstract_pdf.py +136 -0
  115. endoreg_db/models/data_file/base_classes/abstract_video.py +744 -138
  116. endoreg_db/models/data_file/base_classes/frame_helpers.py +17 -0
  117. endoreg_db/models/data_file/base_classes/prepare_bulk_frames.py +19 -0
  118. endoreg_db/models/data_file/base_classes/utils.py +80 -0
  119. endoreg_db/models/data_file/frame.py +22 -38
  120. endoreg_db/models/data_file/import_classes/__init__.py +4 -18
  121. endoreg_db/models/data_file/import_classes/raw_pdf.py +162 -90
  122. endoreg_db/models/data_file/import_classes/raw_video.py +239 -294
  123. endoreg_db/models/data_file/metadata/__init__.py +10 -0
  124. endoreg_db/models/data_file/metadata/pdf_meta.py +4 -0
  125. endoreg_db/models/data_file/metadata/sensitive_meta.py +265 -6
  126. endoreg_db/models/data_file/metadata/video_meta.py +116 -50
  127. endoreg_db/models/data_file/report_file.py +30 -63
  128. endoreg_db/models/data_file/video/__init__.py +6 -2
  129. endoreg_db/models/data_file/video/video.py +187 -16
  130. endoreg_db/models/data_file/video_segment.py +162 -55
  131. endoreg_db/models/disease.py +25 -2
  132. endoreg_db/models/emission/__init__.py +5 -1
  133. endoreg_db/models/emission/emission_factor.py +71 -6
  134. endoreg_db/models/event.py +51 -0
  135. endoreg_db/models/examination/__init__.py +6 -1
  136. endoreg_db/models/examination/examination.py +53 -12
  137. endoreg_db/models/examination/examination_indication.py +170 -0
  138. endoreg_db/models/examination/examination_time.py +31 -5
  139. endoreg_db/models/examination/examination_time_type.py +28 -4
  140. endoreg_db/models/examination/examination_type.py +28 -6
  141. endoreg_db/models/finding/__init__.py +11 -0
  142. endoreg_db/models/finding/finding.py +75 -0
  143. endoreg_db/models/finding/finding_intervention.py +60 -0
  144. endoreg_db/models/finding/finding_location_classification.py +94 -0
  145. endoreg_db/models/finding/finding_morphology_classification.py +89 -0
  146. endoreg_db/models/finding/finding_type.py +22 -0
  147. endoreg_db/models/hardware/endoscope.py +16 -0
  148. endoreg_db/models/hardware/endoscopy_processor.py +31 -19
  149. endoreg_db/models/label/label.py +35 -7
  150. endoreg_db/models/laboratory/lab_value.py +12 -3
  151. endoreg_db/models/logging/__init__.py +8 -1
  152. endoreg_db/models/lx/__init__.py +4 -0
  153. endoreg_db/models/lx/client.py +57 -0
  154. endoreg_db/models/lx/identity.py +34 -0
  155. endoreg_db/models/lx/permission.py +18 -0
  156. endoreg_db/models/lx/user.py +16 -0
  157. endoreg_db/models/medication/__init__.py +19 -1
  158. endoreg_db/models/medication/medication.py +7 -122
  159. endoreg_db/models/medication/medication_indication.py +50 -0
  160. endoreg_db/models/medication/medication_indication_type.py +34 -0
  161. endoreg_db/models/medication/medication_intake_time.py +26 -0
  162. endoreg_db/models/medication/medication_schedule.py +37 -0
  163. endoreg_db/models/network/__init__.py +7 -1
  164. endoreg_db/models/network/network_device.py +13 -8
  165. endoreg_db/models/organ/__init__.py +38 -0
  166. endoreg_db/models/other/__init__.py +19 -1
  167. endoreg_db/models/other/distribution/__init__.py +44 -0
  168. endoreg_db/models/other/distribution/base_value_distribution.py +20 -0
  169. endoreg_db/models/other/distribution/date_value_distribution.py +91 -0
  170. endoreg_db/models/other/distribution/multiple_categorical_value_distribution.py +32 -0
  171. endoreg_db/models/other/distribution/numeric_value_distribution.py +97 -0
  172. endoreg_db/models/other/distribution/single_categorical_value_distribution.py +22 -0
  173. endoreg_db/models/other/distribution.py +1 -211
  174. endoreg_db/models/other/material.py +4 -0
  175. endoreg_db/models/other/transport_route.py +2 -1
  176. endoreg_db/models/patient/__init__.py +24 -0
  177. endoreg_db/models/patient/patient_examination.py +182 -0
  178. endoreg_db/models/patient/patient_finding.py +143 -0
  179. endoreg_db/models/patient/patient_finding_intervention.py +26 -0
  180. endoreg_db/models/patient/patient_finding_location.py +120 -0
  181. endoreg_db/models/patient/patient_finding_morphology.py +166 -0
  182. endoreg_db/models/persons/__init__.py +29 -2
  183. endoreg_db/models/persons/examiner/examiner.py +48 -4
  184. endoreg_db/models/persons/patient/__init__.py +1 -1
  185. endoreg_db/models/persons/patient/patient.py +227 -54
  186. endoreg_db/models/persons/patient/patient_disease.py +6 -0
  187. endoreg_db/models/persons/patient/patient_event.py +31 -1
  188. endoreg_db/models/persons/patient/patient_examination_indication.py +32 -0
  189. endoreg_db/models/persons/patient/patient_lab_sample.py +4 -2
  190. endoreg_db/models/persons/patient/patient_lab_value.py +37 -16
  191. endoreg_db/models/persons/patient/patient_medication.py +27 -12
  192. endoreg_db/models/persons/patient/patient_medication_schedule.py +62 -2
  193. endoreg_db/models/prediction/__init__.py +7 -1
  194. endoreg_db/models/prediction/image_classification.py +20 -6
  195. endoreg_db/models/prediction/video_prediction_meta.py +151 -89
  196. endoreg_db/models/product/__init__.py +10 -1
  197. endoreg_db/models/product/product.py +15 -2
  198. endoreg_db/models/product/product_group.py +8 -0
  199. endoreg_db/models/product/product_material.py +4 -0
  200. endoreg_db/models/product/product_weight.py +12 -0
  201. endoreg_db/models/product/reference_product.py +19 -3
  202. endoreg_db/models/quiz/__init__.py +8 -1
  203. endoreg_db/models/report_reader/__init__.py +6 -1
  204. endoreg_db/serializers/__init__.py +1 -1
  205. endoreg_db/serializers/annotation.py +2 -5
  206. endoreg_db/serializers/frame.py +1 -5
  207. endoreg_db/serializers/patient.py +26 -3
  208. endoreg_db/serializers/prediction.py +2 -7
  209. endoreg_db/serializers/raw_video_meta_validation.py +13 -0
  210. endoreg_db/serializers/video.py +6 -13
  211. endoreg_db/serializers/video_segmentation.py +492 -0
  212. endoreg_db/templates/admin/patient_finding_intervention.html +253 -0
  213. endoreg_db/templates/admin/start_examination.html +12 -0
  214. endoreg_db/templates/timeline.html +176 -0
  215. endoreg_db/urls.py +173 -0
  216. endoreg_db/utils/__init__.py +36 -1
  217. endoreg_db/utils/dataloader.py +45 -19
  218. endoreg_db/utils/dates.py +39 -0
  219. endoreg_db/utils/hashs.py +122 -4
  220. endoreg_db/utils/names.py +74 -0
  221. endoreg_db/utils/parse_and_generate_yaml.py +46 -0
  222. endoreg_db/utils/pydantic_models/__init__.py +6 -0
  223. endoreg_db/utils/pydantic_models/db_config.py +57 -0
  224. endoreg_db/utils/validate_endo_roi.py +19 -0
  225. endoreg_db/utils/validate_subcategory_dict.py +91 -0
  226. endoreg_db/utils/video/__init__.py +13 -0
  227. endoreg_db/utils/video/extract_frames.py +121 -0
  228. endoreg_db/utils/video/transcode_videofile.py +111 -0
  229. endoreg_db/views/__init__.py +2 -0
  230. endoreg_db/views/csrf.py +7 -0
  231. endoreg_db/views/patient_views.py +90 -0
  232. endoreg_db/views/raw_video_meta_validation_views.py +38 -0
  233. endoreg_db/views/report_views.py +96 -0
  234. endoreg_db/views/video_segmentation_views.py +149 -0
  235. endoreg_db/views/views_for_timeline.py +46 -0
  236. endoreg_db/views.py +0 -3
  237. endoreg_db-0.6.1.dist-info/METADATA +151 -0
  238. endoreg_db-0.6.1.dist-info/RECORD +420 -0
  239. {endoreg_db-0.5.3.dist-info → endoreg_db-0.6.1.dist-info}/WHEEL +1 -1
  240. endoreg_db/data/active_model/data.yaml +0 -3
  241. endoreg_db/data/label/label-set/data.yaml +0 -18
  242. endoreg_db/management/commands/delete_legacy_images.py +0 -19
  243. endoreg_db/management/commands/delete_legacy_videos.py +0 -17
  244. endoreg_db/management/commands/extract_legacy_video_frames.py +0 -18
  245. endoreg_db/management/commands/import_legacy_images.py +0 -94
  246. endoreg_db/management/commands/import_legacy_videos.py +0 -76
  247. endoreg_db/management/commands/load_label_data.py +0 -67
  248. endoreg_db/migrations/0002_anonymizedimagelabel_anonymousimageannotation_and_more.py +0 -55
  249. endoreg_db/migrations/0003_anonymousimageannotation_original_image_url_and_more.py +0 -39
  250. endoreg_db/migrations/0004_alter_rawpdffile_file.py +0 -20
  251. endoreg_db/migrations/0005_uploadedfile_alter_rawpdffile_file_anonymizedfile.py +0 -40
  252. endoreg_db/migrations/0006_alter_rawpdffile_file.py +0 -20
  253. endoreg_db/migrations/0007_networkdevicelogentry_datetime_and_more.py +0 -43
  254. endoreg_db/migrations/0008_networkdevicelogentry_aglnet_ip_and_more.py +0 -28
  255. endoreg_db/migrations/0009_alter_networkdevicelogentry_vpn_service_status.py +0 -18
  256. endoreg_db/migrations/0010_remove_networkdevicelogentry_hostname.py +0 -17
  257. endoreg_db/models/legacy_data/__init__.py +0 -3
  258. endoreg_db/models/legacy_data/image.py +0 -34
  259. endoreg_db/models/patient_examination/__init__.py +0 -35
  260. endoreg_db/utils/video_metadata.py +0 -87
  261. endoreg_db-0.5.3.dist-info/METADATA +0 -28
  262. endoreg_db-0.5.3.dist-info/RECORD +0 -319
  263. /endoreg_db/{models/persons/patient/case → case_generator}/__init__.py +0 -0
  264. /endoreg_db/data/{label → ai_model_label}/label-type/data.yaml +0 -0
  265. /endoreg_db/data/{model_type → ai_model_type}/data.yaml +0 -0
  266. /endoreg_db/{data/distribution/numeric/.init → management/__init__.py} +0 -0
  267. /endoreg_db/management/commands/{load_report_reader_flag.py → load_report_reader_flag_data.py} +0 -0
  268. {endoreg_db-0.5.3.dist-info → endoreg_db-0.6.1.dist-info}/licenses/LICENSE +0 -0
@@ -0,0 +1,151 @@
1
+ Metadata-Version: 2.4
2
+ Name: endoreg-db
3
+ Version: 0.6.1
4
+ Summary: EndoReg Db Django App
5
+ License-File: LICENSE
6
+ Requires-Python: >=3.11
7
+ Requires-Dist: agl-report-reader>=0.4.0
8
+ Requires-Dist: django-bootstrap5>=24.3
9
+ Requires-Dist: django-cors-headers>=4.7.0
10
+ Requires-Dist: django-extensions>=3.2.3
11
+ Requires-Dist: django>=5.1.3
12
+ Requires-Dist: djangorestframework>=3.15.2
13
+ Requires-Dist: faker>=32.1.0
14
+ Requires-Dist: icecream>=2.1.4
15
+ Requires-Dist: numpy>=2.1.3
16
+ Requires-Dist: opencv-python>=4.10.0.84
17
+ Requires-Dist: pandas>=2.2.3
18
+ Requires-Dist: pillow>=11.0.0
19
+ Requires-Dist: pydantic>=2.10.6
20
+ Requires-Dist: pytesseract>=0.3.13
21
+ Requires-Dist: python-ffmpeg>=2.0.12
22
+ Requires-Dist: pytorch-lightning>=2.4.0
23
+ Requires-Dist: pyyaml>=6.0.2
24
+ Requires-Dist: scikit-learn>=1.5.2
25
+ Requires-Dist: scipy>=1.14.1
26
+ Requires-Dist: tesseract>=0.1.3
27
+ Requires-Dist: tqdm>=4.67.0
28
+ Requires-Dist: urllib3>=2.2.3
29
+ Description-Content-Type: text/markdown
30
+
31
+ # EndoregDB - Professional Data Infrastructure for Clinical Research
32
+
33
+ EndoregDB is a comprehensive database framework designed to manage medical and research-related data for clinical trials. This repository focuses on efficient data processing, automated deployment, security, and reproducibility, offering a flexible setup for local development environments as well as distributed systems. It supports the integration of AI/ML tools and advanced image and report processing.
34
+
35
+ This infrastructure was originally designed for clinical research studies and is optimized for handling large data volumes, including:
36
+
37
+ - Medical reports,
38
+ - Patient imaging and video data,
39
+ - Clinical product and treatment data,
40
+ and more.
41
+
42
+ ## 🚀 Key Features
43
+
44
+ ### System Architecture
45
+
46
+ - **Modular Design**: Built on scalable and reusable components to simplify integration into various environments.
47
+ - **Multi-System Support**: Manages configurations for local workstations and production servers.
48
+ - **Role-Specific Configuration**: Predefined roles for common use cases:
49
+ - Medical data processing systems
50
+ - AI/ML model deployment
51
+ - Research workstation configuration
52
+
53
+ ### Security & Data Management
54
+
55
+ - **Data Encryption**: All sensitive data is encrypted, and privacy policies are enforced.
56
+ - **Impermanence**: Stateless system configuration with persistence for critical data.
57
+ - **Access Control**: Role-based access and identity management integration.
58
+
59
+ ### Data and Processing Environment
60
+
61
+ - **Data Processing**: Optimized for processing medical datasets with preprocessing tools.
62
+ - **AI/ML Support**:
63
+ - Integration of machine learning tools for predictive analysis.
64
+ - TensorFlow, PyTorch, and other frameworks supported for model training.
65
+ - **Image/Video Processing**: Support for analyzing patient images and clinical videos.
66
+
67
+ ### Development Tools & Infrastructure
68
+
69
+ - **Data Science Toolchains**: Pre-configured environments for data processing, analysis, and visualization.
70
+ - **Monitoring & Logging**: Setup for continuous monitoring and logging to ensure system stability and performance.
71
+
72
+ ---
73
+
74
+ ## 🛠 Getting Started
75
+
76
+ ### Prerequisites
77
+
78
+ - A Linux-based system (Ubuntu/Debian recommended) or NixOS
79
+ - Hardware with sufficient storage for data processing (at least 1 TB recommended)
80
+
81
+ ### Quick Start
82
+
83
+ 1. Clone the repository:
84
+
85
+ ```bash
86
+ git clone https://github.com/wg-lux/endoreg-db.git
87
+ cd endoreg-db
88
+ ```
89
+
90
+ 2. Set up your Python environment:
91
+ _TODO_: Explain Devenv / point to other docs
92
+
93
+ ```bash
94
+ direnv allow
95
+ ```
96
+
97
+ 3. Run tests:
98
+ Call Devenv Script to run tests
99
+
100
+ ```bash
101
+ runtests
102
+ ```
103
+
104
+ ---
105
+
106
+ ## 📁 Repository Structure
107
+
108
+ ```
109
+ endoreg-db/
110
+ ├── endoreg_db/ # Main Django app for medical data
111
+ │ ├── case_generator/ # Sample case generator
112
+ │ ├── data/ # Medical knowledge base
113
+ │ ├── management/ # Data wrangling operations
114
+ │ ├── models/ # Data models
115
+ │ ├── migrations/ # Database migrations
116
+ │ └── serializers/ # Serializers for data
117
+ ├── .gitignore # Git ignore file for unnecessary files
118
+ └── README.md # Project description and setup instructions
119
+ ```
120
+
121
+ ---
122
+
123
+ ## 🔒 Security Features
124
+
125
+ - **Data Encryption**: All sensitive patient data is encrypted.
126
+ - **Role-Based Access Control**: Configurable roles for managing access to various parts of the system.
127
+ - **Logging & Auditing**: Comprehensive logging system that tracks user activities and data changes.
128
+
129
+ ---
130
+
131
+ ## 🖥️ Supported Systems
132
+
133
+ - **Workstations**: Local development or research workstations with low data processing demands.
134
+ - **Servers**: Scalable server infrastructure for processing large data volumes, integrated with cloud services for scalability.
135
+
136
+ ---
137
+
138
+ ## 🛟 Support
139
+
140
+ For issues and questions:
141
+
142
+ - Create an issue in the repository
143
+ - Review the Deployment Guide for common issues
144
+
145
+ ---
146
+
147
+ ## 📜 License
148
+
149
+ MIT - see LICENSE
150
+
151
+ ---
@@ -0,0 +1,420 @@
1
+ endoreg_db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
2
+ endoreg_db/admin.py,sha256=lmRHt3UF6_AdkFTgCT5UiNHkvqNo2CzqGxlTa2nFjmA,3477
3
+ endoreg_db/apps.py,sha256=zYb2_RiEGIsLS6_OMWzCxcTHSNkF28CqF4xcd_6NHUg,151
4
+ endoreg_db/tests.py,sha256=mrbGGRNg5jwbTJtWWa7zSKdDyeB4vmgZCRc2nk6VY-g,60
5
+ endoreg_db/urls.py,sha256=FtzUgtSMpfopAMwzOdqQUihr-scHsEjnuMxIP-bscuM,8506
6
+ endoreg_db/views.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
7
+ endoreg_db/case_generator/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
8
+ endoreg_db/case_generator/case_generator.py,sha256=klrytmkGg8zcQvKoY6JvyAN6iSd41i528I6PF-eHa3Y,5771
9
+ endoreg_db/case_generator/lab_sample_factory.py,sha256=th4dDjLqRMNKw8jc7W2nICY4aMf4uDZ0T-sk2izqdus,905
10
+ endoreg_db/case_generator/utils.py,sha256=qY9fc-bg-hvkhGI_eKTNcgZZw3jxBWxWK5AH3o8tghw,1045
11
+ endoreg_db/data/__init__.py,sha256=aycU8ybZgvgCottee8hqXunBk5FwYu_vQ5VQ1uNcydA,4968
12
+ endoreg_db/data/agl_service/data.yaml,sha256=4lk3VYsrPM2KJgTsPzj0J0LsAu4YazZXAzyxsQM_YAI,433
13
+ endoreg_db/data/ai_model/data.yaml,sha256=8U8g5kaxXviKeVUTz0BWqZpmyY-sTrOoPUXZzPchCUU,286
14
+ endoreg_db/data/ai_model_label/label/data.yaml,sha256=qkt0FfrLvPrcW_N0GUzu3q9TpiXrvZU047xAIOk_33A,1737
15
+ endoreg_db/data/ai_model_label/label-set/data.yaml,sha256=QwWMyMxa9L4_yF7LLyUpE3tesO-NTE_9OB6rv6NT8Us,410
16
+ endoreg_db/data/ai_model_label/label-type/data.yaml,sha256=vffKYpTae_gu63_wza6LONs5ys4pna1EbrUUO6CafQs,136
17
+ endoreg_db/data/ai_model_meta/default_multilabel_classification.yaml,sha256=JhrFP6WXSFRa4kKujKAtgNVmnFYMiz8-J_oN-JQsSi0,182
18
+ endoreg_db/data/ai_model_type/data.yaml,sha256=vCMMo8wiI5uL2zrQROmgsHq1GrC8IdagGIgNdQunUeQ,149
19
+ endoreg_db/data/ai_model_video_segmentation_label/base_segmentation.yaml,sha256=EZ83vq02Cf2KfflWQ4HEe1NHmuzSCsmKtWW5Bv8jet0,4060
20
+ endoreg_db/data/ai_model_video_segmentation_labelset/data.yaml,sha256=07uB1ousJVNpp8B9enJ_YIdZf3y4sBPlME4bZwDv6ho,404
21
+ endoreg_db/data/case_template/rule/00_patient_lab_sample_add_default_value.yaml,sha256=H3kTALJ_6GJrY-4EYemeTCaa81NkyI-8LcNJFuEp5zs,4100
22
+ endoreg_db/data/case_template/rule/01_patient-set-age.yaml,sha256=lXfgKtirkQMHfAQtp9y9mojNnYx2KskGvdK-C1GEmtc,281
23
+ endoreg_db/data/case_template/rule/01_patient-set-gender.yaml,sha256=mZqygZ7lhjfSOO9M2m-ax1hmH2ztSXLsJwMEqJnj7e4,300
24
+ endoreg_db/data/case_template/rule/11_create_patient_lab_sample.yaml,sha256=AWSRRith2u-0zDKvf87OCK_KoG8pmlR8jNmFVsrK7S8,775
25
+ endoreg_db/data/case_template/rule/12_create-patient_medication-anticoagulation.yaml,sha256=Ep4BAa19E8MvXrEvmVoKpXZoaopmqxiJh7ijMMaTpd0,482
26
+ endoreg_db/data/case_template/rule/13_create-patient_medication_schedule-anticoagulation.yaml,sha256=QJ3fVapFhwf2N6InL7KFeANvZglf-NN3ozPOCZe2Oac,490
27
+ endoreg_db/data/case_template/rule/19_create_patient.yaml,sha256=xo563JMa-S59v3DrMuLW9EbVlTbu4dZdBGFMLAYzeaY,436
28
+ endoreg_db/data/case_template/rule_type/base_types.yaml,sha256=SOxV4SslNAx0DZoknWlKKLb3R1Ng2nlMDK2gfiVS_1M,1253
29
+ endoreg_db/data/case_template/rule_value/.init,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
+ endoreg_db/data/case_template/rule_value_type/base_types.yaml,sha256=0flEVxBKOegNxJnc2EOhaf950BNxC7WujrLV2aPncYM,1414
31
+ endoreg_db/data/case_template/template/base.yaml,sha256=lRrvLma0jW57qZEAuWWFQAtTWL8TaRpYiXFenlbTQJE,251
32
+ endoreg_db/data/case_template/template_type/pre_endoscopy.yaml,sha256=pJdvcaxpZsciK3Ok4Z3yCVPBG465v4bISmq1Gmgn2mI,74
33
+ endoreg_db/data/case_template/tmp/_rule_value,sha256=IJ3mdifZdfaWXI4sfYGYX0be_SvLdJSBKDnDx-gCLcI,464
34
+ endoreg_db/data/case_template/tmp/rule/01_atrial_fibrillation.yaml,sha256=zZsgZhfY4sgaA23q3EKDM9XTbtjUCG16H6waheIssRs,663
35
+ endoreg_db/data/case_template/tmp/rule/02_create_object.yaml,sha256=ZsKtkLTOp_9ThcITico-v2Ggw6Pwi_6mqCzqf-hf4Ro,263
36
+ endoreg_db/data/case_template/tmp/template/atrial_fibrillation_low_risk.yaml,sha256=zHa-SZLjJTcRgZuxuBiuAeb7OXk9VhWVgInUWBrXbLU,201
37
+ endoreg_db/data/center/data.yaml,sha256=3muMBEfuHK9w4yskwCD5FvMNOTmdiY2wZGrkM8YDIvg,1927
38
+ endoreg_db/data/center_resource/green_endoscopy_dashboard_CenterResource.yaml,sha256=VUv4hjOqA4ubWlga5h_e5Kp3oA_HfSuPBoh2HMP6zVQ,4513
39
+ endoreg_db/data/center_waste/green_endoscopy_dashboard_CenterWaste.yaml,sha256=OWusRQgfT1oGIPalbL-82GUKezESZYdr8aFl-bbVTUg,1242
40
+ endoreg_db/data/contraindication/bleeding.yaml,sha256=4dsXI8j5lVwU3_Io9KLZ2Jzhy5mysAuvmGtpGFX1m5s,270
41
+ endoreg_db/data/disease/cardiovascular.yaml,sha256=MVePTrd0ia2Aeo9kdIIYdz5MF6qtlub2Dw2JYHTwIrY,963
42
+ endoreg_db/data/disease/hepatology.yaml,sha256=oDYKRPZXQD_NKB7ruHFrpWDaoqnXqQblPyKwme1l97o,125
43
+ endoreg_db/data/disease/misc.yaml,sha256=YB8xqemnO9Xn56KSjQxz6wXjdqTECIMMsRw7A1_TSTc,163
44
+ endoreg_db/data/disease/renal.yaml,sha256=hUFjn8KiEZ7oYW2uY-JfufR6N9Fk_0otKbwfZPWyFJQ,153
45
+ endoreg_db/data/disease_classification/chronic_kidney_disease.yaml,sha256=1iae5lxPsH0AKfyUFSlXaF1WUz4LdfZdPyWEGp-foJ0,228
46
+ endoreg_db/data/disease_classification/coronary_vessel_disease.yaml,sha256=olKtHAmSqDrBAvpuBcH5JwSD3scd_KliGLpT_cEFkTs,270
47
+ endoreg_db/data/disease_classification_choice/chronic_kidney_disease.yaml,sha256=jgZVuHUp_ZGhvnl552-XgBZlFl2Uv_s1YNTgcGtW5do,1582
48
+ endoreg_db/data/disease_classification_choice/coronary_vessel_disease.yaml,sha256=Z_MG6bbx_zI4C8qV-U_Yqvn1K3KYbvG-ElFaXbYAMNQ,835
49
+ endoreg_db/data/distribution/date/patient.yaml,sha256=I3fr98VNCja6a4qtf9YnjoFPlqH67LPbDlssQKY_cPE,210
50
+ endoreg_db/data/distribution/multiple_categorical/.init,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
51
+ endoreg_db/data/distribution/numeric/data.yaml,sha256=sr40P-w_LxK8FDnocckKJM6s9Fik2mIGJjufE53xAGU,362
52
+ endoreg_db/data/distribution/single_categorical/patient.yaml,sha256=R7beZDRqdOWNaFu-8Bd88E6j3eBc9mqhOW_265EA0e0,156
53
+ endoreg_db/data/emission_factor/green_endoscopy_dashboard_EmissionFactor.yaml,sha256=bBLmr3_uSLXdsbtRa9707WK1Z7Xy8TpBGKOfzWcfC_M,2968
54
+ endoreg_db/data/endoscope/data.yaml,sha256=ZaXTKP3C6oBh5mha03_ioE77XZKQB3aneOLWHpA8UnI,2341
55
+ endoreg_db/data/endoscope_type/data.yaml,sha256=k8uF94svJsU02O-ceaLnQBoozJ6cT3iY_s_aKrvJZqg,242
56
+ endoreg_db/data/endoscopy_processor/data.yaml,sha256=Q72v9DhWjt9zsa0fC-Xty8nWzRcqeyHJpYq-w5UmwXQ,1049
57
+ endoreg_db/data/event/cardiology.yaml,sha256=c2SfXXU8_hOBibNqidxxkZoEaKGGh0UWUTYudjG-Sqo,804
58
+ endoreg_db/data/event/neurology.yaml,sha256=AdpGHQxfBAOuUbKQ234T1MtE3bfHdgKA47HUoyFB5KE,282
59
+ endoreg_db/data/event/surgery.yaml,sha256=hyZWxg8LUNOwf3iybVj0Muta7pUdWhZXmLuuOh7hjek,428
60
+ endoreg_db/data/event/thrombembolism.yaml,sha256=TvpllrcpTV-kOxsttcPIxeRAZ1JKdoN_Nu0LSPatOZc,556
61
+ endoreg_db/data/examination/examinations/data.yaml,sha256=ZEs-bUdEtaz2aC0eu5vUbE970yVEDF3vUJyWX4MZVB0,1362
62
+ endoreg_db/data/examination/time/data.yaml,sha256=YQ2VFpmNoUwDf4cCSx35hj46YG2_JeRm_t86RTodVsI,1010
63
+ endoreg_db/data/examination/time-type/data.yaml,sha256=-RUaF7zUtuIFttLpu_Cb-cVZMN8_Y9bSHTozI6a69LA,156
64
+ endoreg_db/data/examination/type/data.yaml,sha256=Iimo4B2oIAkYTiTsFtrGr6RjLoegYV-ijP8mN2SHKH8,115
65
+ endoreg_db/data/examination_indication/endoscopy.yaml,sha256=hVCXAVf46z9_Hhx9LRg1K3V0MGn4rsoK6WnpVJiwYog,206
66
+ endoreg_db/data/examination_indication_classification/endoscopy.yaml,sha256=1swPcxx6WIkCL3cK2wGIpwjuRnAZ9gjJEI3tEqcOu9c,163
67
+ endoreg_db/data/examination_indication_classification_choice/endoscopy.yaml,sha256=etlhAkLr8HXXx7VG5wBOrXzwh13mJBQxiqptJSiOmnw,3051
68
+ endoreg_db/data/finding/data.yaml,sha256=R40eecLFFqJgtXe9FJzue5cEs8qTnSoWXHKJf_JHU6c,3276
69
+ endoreg_db/data/finding_intervention/endoscopy.yaml,sha256=6B7NrenYtWBvO6EiRHhHwrOLCTmrnHDbP_azs7ZAWzo,5674
70
+ endoreg_db/data/finding_intervention_type/endoscopy.yaml,sha256=EnxIpRys8noMik2rUGQQG2zO0juZn75-k-4rVhD18ZY,319
71
+ endoreg_db/data/finding_location_classification/colonoscopy.yaml,sha256=yZT6YCXWK2vIpSZ0PBBWHnpsy0LVcf8oWiPKyIebt3w,909
72
+ endoreg_db/data/finding_location_classification_choice/colonoscopy.yaml,sha256=hlp5CvRVgQsrm-Fzx7__iYmjZRHThLEPYJVSJdklpcM,6618
73
+ endoreg_db/data/finding_morphology_classification/colonoscopy.yaml,sha256=NjcnFQzSXZ5F1etT5OE8Hz9jBwloj3SoBEaUVnMGebs,1799
74
+ endoreg_db/data/finding_morphology_classification_choice/colon_lesion_circularity_default.yaml,sha256=tlXplbydCj_R7smLxi3E-H4FE-j1XQVtgUw9SWXv9IM,1080
75
+ endoreg_db/data/finding_morphology_classification_choice/colon_lesion_nice.yaml,sha256=4s1cOfuU6noW7zwUfVFBZCt196EV_8Umq_2BPf6Ghow,694
76
+ endoreg_db/data/finding_morphology_classification_choice/colon_lesion_paris.yaml,sha256=49O23KtgRGlL1IU8MNSivyuzlH-IQB8rlHv4ceL_Uwg,2699
77
+ endoreg_db/data/finding_morphology_classification_choice/colon_lesion_planarity_default.yaml,sha256=edxbtky17RAXBGZZI_iNvOq7XowUf8TajtNYmXwOIjk,2181
78
+ endoreg_db/data/finding_morphology_classification_choice/colon_lesion_surface_intact_default.yaml,sha256=H4l93YMpq1c3Ul81dLHMrBEDMJO6bGQ4bkZsMrLkamo,1357
79
+ endoreg_db/data/finding_morphology_classification_choice/colonoscopy_size.yaml,sha256=8BCA1CRwErAjaWrZWc_2AerQx-PohcxOZAV6vXWUw3c,2093
80
+ endoreg_db/data/finding_morphology_classification_type/colonoscopy.yaml,sha256=FmWlqedNCPzIofrpOIewQIf22a8juJHpSMN04r9WmM0,1879
81
+ endoreg_db/data/finding_type/data.yaml,sha256=Z99m8c9X3aCdAIdqgpSWhgsQIZBb7UEq7oWNuTIf7-A,700
82
+ endoreg_db/data/gender/data.yaml,sha256=ku0vvaBP3vcflfNn5aeE8ynxlUHg5DwfyigRAZjA8A0,762
83
+ endoreg_db/data/information_source/data.yaml,sha256=ZJULuYMz7FzkKaC76hor6sCW_P43KoZ_ncEN0grjegk,765
84
+ endoreg_db/data/information_source/medication.yaml,sha256=S4MJ1w87IX0TSCCW5gpcXcMs-hIlhWss6wo4rvSMI5g,285
85
+ endoreg_db/data/lab_value/cardiac_enzymes.yaml,sha256=uhXoXDknkdWW5hGFozllGVSW3pEO-m1i3GC2yL_pirw,910
86
+ endoreg_db/data/lab_value/coagulation.yaml,sha256=At6yBZGPVGvroVgO43yOrVAcAglYq0XUlumqOHacUlo,1792
87
+ endoreg_db/data/lab_value/electrolytes.yaml,sha256=8S6jvd5MkUz44QR3uW_YvR6uZgeCnR6zOzBe6xLAWYI,6591
88
+ endoreg_db/data/lab_value/gastrointestinal_function.yaml,sha256=9mkqs8lyE-yjb8GZvLZGJabedmnuVFw04s7LZHmdyc8,4049
89
+ endoreg_db/data/lab_value/hematology.yaml,sha256=dv3oNXVG1977iQz2nGKeCiMet4GL6KAxrKTx_hVC-Ok,5531
90
+ endoreg_db/data/lab_value/hormones.yaml,sha256=ZYN8dwm8QYnulWtS7mrxqRpF0mKln1pzcBoTDQw9DIM,1971
91
+ endoreg_db/data/lab_value/lipids.yaml,sha256=K3Nk80ug9FT0ZwnxcacFhmNiD8vbJS0TIPZtTnYZinI,1529
92
+ endoreg_db/data/lab_value/misc.yaml,sha256=ZOZI5OqElAh-GR-yeehT0ynRkq8PS9t5DuaZ1YBCux8,1037
93
+ endoreg_db/data/lab_value/renal_function.yaml,sha256=EecTOl-TiUcfs03tnOVqwNG1vm8840EJBWdYzYlayME,402
94
+ endoreg_db/data/log_type/data.yaml,sha256=nZeua8KwnrVGupl-B74PjsUenANSmUwCVkEzdtrTGAQ,1126
95
+ endoreg_db/data/lx_client_tag/base.yaml,sha256=-nQpO64m3oPGSEo93iRgE7BeSKtg_0xP9_ZrGQrkdvI,1128
96
+ endoreg_db/data/lx_client_type/base.yaml,sha256=GVLjTm4C2ZsZuhaN4lef9DAKkFNFthM0cwmfeE0hkis,568
97
+ endoreg_db/data/lx_permission/base.yaml,sha256=FikkGRvrEBwdXV4r5SFRwHdPjUJ-SVbnKAN-w7rWTJU,426
98
+ endoreg_db/data/lx_permission/endoreg.yaml,sha256=P9dbv14ibF5SqlNQ3TTJYUnPVFYVy6qBNFEoVS8pSis,1007
99
+ endoreg_db/data/material/material.yaml,sha256=GUY0l4DSm1OQtgExNbTMqAuUMPvUBlTvNWvrtJKhXiY,2035
100
+ endoreg_db/data/medication/anticoagulation.yaml,sha256=NfAXuD9hQqHE2knWl51JGJnyjJvh_I1xRxaF8VS5-Us,1635
101
+ endoreg_db/data/medication/tah.yaml,sha256=UDuY9tn9e8806KdZ3AL1LooGPdxqoPHNz6IX38yk-6g,1701
102
+ endoreg_db/data/medication_indication/anticoagulation.yaml,sha256=idOp2A2jHTo8SJh_QVt2r9dKxExkBh7dVC38dFEIJ0M,4270
103
+ endoreg_db/data/medication_indication_type/data.yaml,sha256=5A3JuEO6INqv-eeLuqbRi30klC_qD13riApzLUHVlLo,245
104
+ endoreg_db/data/medication_indication_type/thrombembolism.yaml,sha256=9zPWk-1pnb4fFCHueVlXX90x6z7V_dJlN3pz2kMl6BE,1691
105
+ endoreg_db/data/medication_intake_time/base.yaml,sha256=wkN4UKt_KY2bLnfwyPbar5-CSHTbsNRmoMOg4dtDZik,682
106
+ endoreg_db/data/medication_schedule/apixaban.yaml,sha256=TjmoBu4ian9ZwiSN5qBKtivzesJC0cdWkE1JP5DRmwE,2366
107
+ endoreg_db/data/medication_schedule/ass.yaml,sha256=ECiHbQcahbZP9B8IDOYRB6vHKj3yl7cBY9QasIHJ7sM,295
108
+ endoreg_db/data/medication_schedule/enoxaparin.yaml,sha256=lI8WfFBspEXhTxnTEfyq1a_VBKbdNAcj34PIF2_X3cQ,653
109
+ endoreg_db/data/names_first/first_names.yaml,sha256=WD2R354HXolNOSB2jzryIlHBsKOc2D1JnnmWpL2rKAE,985
110
+ endoreg_db/data/names_last/last_names.yaml,sha256=MEvlTohYPEOf0jbI3k74lcpmM9P_vtCq2hOo-f2uPeg,976
111
+ endoreg_db/data/network_device/data.yaml,sha256=VM7rewtnEB_BdJZc6hegfIZNQFA2Xe2MTIDMmqFUoVI,1289
112
+ endoreg_db/data/network_device_type/data.yaml,sha256=xkbfoHjqM9uHv68W_LNsVDbZSy4FZrhKauzJJkzM-h4,230
113
+ endoreg_db/data/organ/data.yaml,sha256=xMrCPGyCB6QIhHwL1tnf61ZenmIGP7JBMsVoFeMlX1I,518
114
+ endoreg_db/data/patient_lab_sample_type/generic.yaml,sha256=nbtummOrGUeBkM7sVpqq48txkC-bmxn4_h40oS4VloY,162
115
+ endoreg_db/data/pdf_type/data.yaml,sha256=flXT51aaju1ya4I-8zc0Go9zTYrrmx9CSJ6s-QOQZQI,1043
116
+ endoreg_db/data/product/green_endoscopy_dashboard_Product.yaml,sha256=PzQGTSXJ-UwtXkOGdI0nsGGDo0HO1KwZKpCfiEqmdt0,1898
117
+ endoreg_db/data/product_group/green_endoscopy_dashboard_ProductGroup.yaml,sha256=RMkNyM0eDJ9yqUIflirWT5V108p3o8Yp6MoDr6eQg-c,685
118
+ endoreg_db/data/product_material/green_endoscopy_dashboard_ProductMaterial.yaml,sha256=jFGcc9Z0fqPHc9rHbju9PpwPNuacUsZMDZB-j2cfmBE,7225
119
+ endoreg_db/data/product_weight/green_endoscopy_dashboard_ProductWeight.yaml,sha256=O1eQJ5iKAu29hewIXAp-gRKUzvILQviR10FDrfn5x7c,2200
120
+ endoreg_db/data/profession/data.yaml,sha256=3lRQ-SEiJHjmuQWXVLBoL7tpfO2t82NgGc3PpKIayQg,2151
121
+ endoreg_db/data/reference_product/green_endoscopy_dashboard_ReferenceProduct.yaml,sha256=sSvySBfb6RgEwp2Gcq-HuS8_34HFbcQt1rg34DZdNnA,1643
122
+ endoreg_db/data/report_reader_flag/ukw-examination-generic.yaml,sha256=1a_pvnDg-LztEyT5o13J6ukPCxx4wAQDaP0qowaRTJE,870
123
+ endoreg_db/data/report_reader_flag/ukw-histology-generic.yaml,sha256=1iaUFiVt_ldCPGqud_znD2-AFgSfrZr_oncAONM9Ic0,493
124
+ endoreg_db/data/resource/green_endoscopy_dashboard_Resource.yaml,sha256=hjmrFJn_-SbVkX9Nsa3Vo9YItUmje5aVLraKGI8BiZM,288
125
+ endoreg_db/data/tmp/chronic_kidney_disease.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
126
+ endoreg_db/data/tmp/congestive_heart_failure.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
127
+ endoreg_db/data/transport_route/green_endoscopy_dashboard_TransportRoute.yaml,sha256=Q7JeSHHYEOtlYsIs44XQEjWd19eZIOdUHkaTLq115ik,349
128
+ endoreg_db/data/unit/concentration.yaml,sha256=7V2_Xoellhtalv38RpuRyEOjJWpSkEcBlfOlJG94eA4,2578
129
+ endoreg_db/data/unit/data.yaml,sha256=t9D7xepTm_7g6q6MUacCigoCLI3_6R6WS3BaowI6tok,393
130
+ endoreg_db/data/unit/length.yaml,sha256=sNbyr1bFd5JzQxSjuDU2HbcCvM4WepxZRxrquENpAAQ,629
131
+ endoreg_db/data/unit/misc.yaml,sha256=_zNA_5AmGaaYpTqFloRob3abPdjiT_GSC-apyhptw1Q,365
132
+ endoreg_db/data/unit/rate.yaml,sha256=PcJiFwPtZVBDwhcfNE_hYjG9cUh6LvHt0ObrX8F7tSM,174
133
+ endoreg_db/data/unit/time.yaml,sha256=uXSFVDoVbhm60_182qVU2uDLdy0WGHugbbJwYGEIv4M,250
134
+ endoreg_db/data/unit/volume.yaml,sha256=mkrWixjRJJ0Ob2s9jwU69wW6u4QqdOcw12BWqhf6X3g,685
135
+ endoreg_db/data/unit/weight.yaml,sha256=o1PvHk-4GhKxstCozhDYQNMMYcTXvwmqx4hlQXO2U8o,747
136
+ endoreg_db/data/waste/data.yaml,sha256=A8dUOdzsxhICHViXmbcLtOmtqkBX_CkZaRNo-ePAyEA,245
137
+ endoreg_db/forms/__init__.py,sha256=H2bgLGusm3FLbSTN8cjYcJPaABJL1L5ee9dOTTGRrwU,130
138
+ endoreg_db/forms/examination_form.py,sha256=1AEGCzjJhJt80t8VWbro61hBUJxbCOkPIUsTFoxwhqc,405
139
+ endoreg_db/forms/patient_finding_intervention_form.py,sha256=rvt6BJXwED-1lvyeymCAtSNaUvQGS3Yhj3JwyYxZGIw,1208
140
+ endoreg_db/forms/patient_form.py,sha256=ROfolPdXawk7oHzr45B2Kj0tR8EpHDcpNXBgRekohxQ,929
141
+ endoreg_db/forms/unit.py,sha256=rywaSXT6E18RwPdGXhDr94Q9_lP-fauY1XAPhj0D7Dc,116
142
+ endoreg_db/forms/questionnaires/__init__.py,sha256=q7V33XpmOJj5brhcaNbuXMZYsAj2r4HYchJebRIhiNc,75
143
+ endoreg_db/forms/questionnaires/tto_questionnaire.py,sha256=_7PqqyUlffBkTGqZj_ZaKCwYWJ9kdfh_fO9jwRqt8Nw,890
144
+ endoreg_db/forms/settings/__init__.py,sha256=xKCYyRS1tEAWsm5C9OrG0Btqgitzuh_s31Oa_W6Os0I,259
145
+ endoreg_db/management/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
146
+ endoreg_db/management/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
147
+ endoreg_db/management/commands/_load_model_template.py,sha256=2ELH07EbvcXs4Wdpj9rixm6rggNFJp3P0gb_zDQwNLQ,1379
148
+ endoreg_db/management/commands/delete_all.py,sha256=AA5f5GRAyMdzOdOT7qj-Ox7nbioKMJfjAZCgqd839NI,974
149
+ endoreg_db/management/commands/fetch_legacy_image_dataset.py,sha256=8QJyw25AOdCVLtbBvn7bTiIlZctEuxRmvRuNVqP7_iw,1153
150
+ endoreg_db/management/commands/fix_auth_permission.py,sha256=f7RFMH4ET4ee5ODZtvTP0RmgJcT3JclPW1OGHLfMMoc,947
151
+ endoreg_db/management/commands/load_active_model_data.py,sha256=NpWIksrVQIyrd-ZhI_B_34NFbLJI1_vhwuN6gXc8hgQ,1337
152
+ endoreg_db/management/commands/load_ai_model_data.py,sha256=50qur5C-cRxf_fnPPMt3AGCdhsCLYmAn8DqSgv31npU,2822
153
+ endoreg_db/management/commands/load_ai_model_label_data.py,sha256=jnm2720TsnRTBKF6guwnjLo7sropW_YoRjgyjo1TUr8,2143
154
+ endoreg_db/management/commands/load_base_db_data.py,sha256=Mq011YuMMDEtVSwoKYhz_jrLpemagVKkAFwxFDybaSI,8627
155
+ endoreg_db/management/commands/load_center_data.py,sha256=Ra7BikibHJF4Ks72WNGwJqtbIw-9MieCxKlZG_RUA-s,1339
156
+ endoreg_db/management/commands/load_contraindication_data.py,sha256=5cEIBX42Exc6m3li-HQCEK3NHO6lbvACV4eJoaa-zG0,1256
157
+ endoreg_db/management/commands/load_disease_classification_choices_data.py,sha256=zSwNVmI56myFtOBUxV9kD_-4NKh0Z4nWuvFN3RSSulU,1361
158
+ endoreg_db/management/commands/load_disease_classification_data.py,sha256=B0sIgDq35e8Js3cqBCpRBoDuKRoDy7YvPbaZ4jjJS2I,1305
159
+ endoreg_db/management/commands/load_disease_data.py,sha256=8P4piw44IxuZc2350_hMUGfB6-zmJgqC69PQ8ohTWkg,2109
160
+ endoreg_db/management/commands/load_distribution_data.py,sha256=d0KpJF9E519PsJvGJk6Lcxr4ZGMLCtw0WuvTaiJhO7E,2059
161
+ endoreg_db/management/commands/load_endoscope_data.py,sha256=mZSprtXKH43_6uSiE-h6a81hSSK8xTI0zisDXUJhG3s,1949
162
+ endoreg_db/management/commands/load_event_data.py,sha256=WYT8GRzrJ3JgGaSi7l-8sF1rrL-7NnvlDj262Fux47g,1223
163
+ endoreg_db/management/commands/load_examination_data.py,sha256=kGGSRpHxvhugpKXpUMrttWYe9y81XOzyjgiBqV492KU,2748
164
+ endoreg_db/management/commands/load_examination_indication_data.py,sha256=e6ohpNN766nBhyyKXCMww4gBnD2xICwAwIAMFSSpagc,2538
165
+ endoreg_db/management/commands/load_finding_data.py,sha256=9lTGojQ0C0S7ifyVV4CqEdRS-38eZFPB2UNV5fDVYBo,5693
166
+ endoreg_db/management/commands/load_g_play_data.py,sha256=uPfTx8aGqU7U8bsQz7rR9fsLQZEVEQ7kJk_nGW6ScAA,3399
167
+ endoreg_db/management/commands/load_gender_data.py,sha256=skg1EcE5EIYAVDO-jNx8qjmJNaFXaOaqILgmJ6j6CLY,1137
168
+ endoreg_db/management/commands/load_green_endoscopy_wuerzburg_data.py,sha256=rjWFTB9nWN1cohsN7n7ZEb2E2_W2FDuauoBNiaGAT3g,3968
169
+ endoreg_db/management/commands/load_information_source.py,sha256=3sL906AMa7FGO3bgrNbfJlptrEwv925n-X_XB4PDZ_Q,1347
170
+ endoreg_db/management/commands/load_lab_value_data.py,sha256=ueui82FAJL4djGpy1B2nikjD1QP7iA3r4tcBarunJ_Q,1700
171
+ endoreg_db/management/commands/load_logging_data.py,sha256=1GWVQFh-tVWGZjSlvqcqkG2ByClJjOqU-GLwgh3TEnE,1222
172
+ endoreg_db/management/commands/load_lx_data.py,sha256=RSJSEmAUj5cgUmtMepeymPlMgWXhLQzx_zjfi4J9qxo,1696
173
+ endoreg_db/management/commands/load_medication_data.py,sha256=E4zn7cTBxk3nPEoMiw8A5CsYKarGkroGq1O9RC8_VCc,3412
174
+ endoreg_db/management/commands/load_medication_indication_data.py,sha256=lR3zJdTjtKeVmXUrb3AyAcTwyutUteppfD-GbkgXRG0,1783
175
+ endoreg_db/management/commands/load_medication_indication_type_data.py,sha256=CJ3zyFv7DnTuhBfG6TAdU9uZ0c2aHd31Y33g3X-SYVA,1282
176
+ endoreg_db/management/commands/load_medication_intake_time_data.py,sha256=Qln3plozYsADcS0gKLdnLzAjbVLxC6N9h3ja-pS5CiI,1270
177
+ endoreg_db/management/commands/load_medication_schedule_data.py,sha256=UTnCGF2gFUsdDb76cYrntaHGFazz4tUWg9ulF8bOVKY,1514
178
+ endoreg_db/management/commands/load_name_data.py,sha256=OxPYEC4uAiyv7iP8KTtTBwUO4qPHn9oq68pE7hs6ppo,1320
179
+ endoreg_db/management/commands/load_network_data.py,sha256=zg8Kt0Qv1ocgRG3pUlweJhNIF2JCMtAFEh-kZb0SiX8,1991
180
+ endoreg_db/management/commands/load_organ_data.py,sha256=gPknJ8Zk-jRN7ASZLLgA-Fd8KedLmu74SRblpgyVk1E,1222
181
+ endoreg_db/management/commands/load_pdf_type_data.py,sha256=sJeGI1M4Xwkagi7rModwUJH3MuQckZXdOkHekoAvRAw,1650
182
+ endoreg_db/management/commands/load_profession_data.py,sha256=oF3OF7zRqxA-SVpMW6e7LJ3MSfEc5Hoz1XlcvcFACRg,1321
183
+ endoreg_db/management/commands/load_report_reader_flag_data.py,sha256=pvqRgtcjaYTgx2Ce7HYnNzsUB48yJe9lXTk-lzfJUPI,1371
184
+ endoreg_db/management/commands/load_unit_data.py,sha256=tcux-iL-ByT2ApgmHEkLllZSEA3AGMK5l-ze2Mtty1Y,1319
185
+ endoreg_db/management/commands/load_user_groups.py,sha256=D7SK2FvZEHoE4TIXNGCjDw5_12MH9bpGZvoS7eEv0Os,1031
186
+ endoreg_db/management/commands/register_ai_model.py,sha256=ni_YBlEuCuhMymRE1376e64x6S1CcQkNH7XaJ_DhP4A,2520
187
+ endoreg_db/management/commands/reset_celery_schedule.py,sha256=U-m_FNRTw6LAwJoT9RUE4qrhmQXm7AyFToPcHYyJpIE,386
188
+ endoreg_db/migrations/0001_initial.py,sha256=YdVpKxYKPcBgvm8Bl5zW6dIFdTGbZsItu8pJGjNYmQ4,130061
189
+ endoreg_db/migrations/0002_alter_frame_image_alter_rawframe_image.py,sha256=xMHomo0mM0vLb1VzVZCG4TXEoxv9ZEAmORB0bmwXUcU,576
190
+ endoreg_db/migrations/0003_alter_frame_image_alter_rawframe_image.py,sha256=sKXpiwourxOrZP8EiQH0w4FrkFvaC1C1KeeYYBGDVUk,629
191
+ endoreg_db/migrations/0004_alter_rawvideofile_file_alter_video_file.py,sha256=-Mp8JZhLCmx4qKEOXtB721UPuHWCHWnvb3gAyXH5sfI,996
192
+ endoreg_db/migrations/0005_rawvideofile_frame_count_and_more.py,sha256=2hPcm4aLsT1GYkOrv6Er0ZDni-75BRRiwflCqHGmaVk,946
193
+ endoreg_db/migrations/0006_frame_extracted_rawframe_extracted.py,sha256=MPxk4-OjU2sR7JDUHvSKE2VRgJql7GIhKvLnkzjA4yU,566
194
+ endoreg_db/migrations/0007_rename_pseudo_patient_video_patient_and_more.py,sha256=md_r9FODDzI2A0naw5l0RS7IpQBbdUN7N6xY7Km53Mo,697
195
+ endoreg_db/migrations/0008_remove_reportfile_patient_examination_and_more.py,sha256=E9-RrrexL1A1fDlLOYw4HrO0Cv1hWz4HWowqiiUYm7g,1886
196
+ endoreg_db/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
197
+ endoreg_db/models/__init__.py,sha256=gBIZ6l1f67D6StLcXZ7vsKcRNhWpwkctZZaIo5Xs4UM,7462
198
+ endoreg_db/models/disease.py,sha256=oCxkECjDfzNachQr4gNa5Al8ekw95LaIDkYg4aQnJ7o,2428
199
+ endoreg_db/models/event.py,sha256=W6GdvJdZjoXMncV12Ql4336cnfXVdIXkTIyyvbAfgO4,2429
200
+ endoreg_db/models/information_source.py,sha256=xgSeqCR4Ya3PFExPCtfzFuoj5bT7TR_pc7u-X1dGrio,911
201
+ endoreg_db/models/unit.py,sha256=5-LrmM3vVTElsNqztVDDBE9e9xpYIfz5-AD30H630oU,836
202
+ endoreg_db/models/ai_model/__init__.py,sha256=sugy0DWdAImMudsNybyyx3w3z2YGasC2HA0MoCjZNm4,136
203
+ endoreg_db/models/ai_model/active_model.py,sha256=r7SE3yg54kbjfOkk0Ei0rgs_Wo3ikx88rcEELqvRzGc,343
204
+ endoreg_db/models/ai_model/ai_model.py,sha256=uckSehPn9AfZvaVWtCPxnr6Q1iWw9CwskwlpUrjZPzI,3076
205
+ endoreg_db/models/ai_model/model_meta.py,sha256=0wQifk9AOhcJEu25GQEU3kwi0NwJQgUa2zg_ZS4kFQM,8670
206
+ endoreg_db/models/ai_model/model_type.py,sha256=tx6bHUDuFh8HbotD778mRvFLmFM19n8flIOwS20FYQI,901
207
+ endoreg_db/models/ai_model/utils.py,sha256=Vh6_3lbDuFhSVCaaZKKm0CjoGA5Man6gWYe46HUXmbA,270
208
+ endoreg_db/models/ai_model/lightning/__init__.py,sha256=l7au6x_zY_QFSftTbpm5EgPxqT3bHtObiZvRaclHMp0,150
209
+ endoreg_db/models/ai_model/lightning/inference_dataset.py,sha256=8WgburaXBv6Jvtbt0QYKI-bywu7o0NHl4Az1BMJNoRA,1811
210
+ endoreg_db/models/ai_model/lightning/multilabel_classification_net.py,sha256=hTjc_221ipfPycfaBwpDu8ycLI0ODiAwemasNr2_Hvc,5387
211
+ endoreg_db/models/ai_model/lightning/postprocess.py,sha256=UEGxBJ154n-9nP87K2qXYYF_W32-lJInPHXuuWQ-tJ8,2148
212
+ endoreg_db/models/ai_model/lightning/predict.py,sha256=GnAxh31ovPIUSDviW6MbtdPsj5Pwa6z4Dt_czsF-jKQ,6019
213
+ endoreg_db/models/ai_model/lightning/prediction_visualizer.py,sha256=fiZtJel_7j3Kd_loUryinwQPsfGPmRvZJ7CZBa06phk,1654
214
+ endoreg_db/models/ai_model/lightning/preprocess.py,sha256=2RSdvllcO6g57KtffqpK2QV1Ro7UZmqGrKz7dGH9XkE,2302
215
+ endoreg_db/models/ai_model/lightning/run_visualizer.py,sha256=ruBjfO8RKasHRIV2K_H2OYbUfBHuFe2sTt9YQbE02V4,873
216
+ endoreg_db/models/annotation/__init__.py,sha256=oywnnbqLRw-VqojaY5sPNYZ3mCJ1D5lTRAGRL4_FSxc,840
217
+ endoreg_db/models/annotation/anonymized_image_annotation.py,sha256=5QML75IUpbDnZuri86WqrrvawdOHrzz3l8nAYU4Y9zk,4471
218
+ endoreg_db/models/annotation/binary_classification_annotation_task.py,sha256=uCpDEk6ipckvQMRKJBy1RhVMy98xDQzeuYSsC7D_5No,4390
219
+ endoreg_db/models/annotation/image_classification.py,sha256=-UvAGxMVu_Tvgzvgy_EPghBxUBXsWchR6rFiusVnq70,2665
220
+ endoreg_db/models/annotation/video_segmentation_annotation.py,sha256=_9qsv8-KRFdIGLWZ8FPNWqekzAfU0YqkLTNaWgP3QQM,2001
221
+ endoreg_db/models/annotation/video_segmentation_labelset.py,sha256=pcDFV1n580XjiqQEFTP5mK7trE0d98l56JGZ1IgYRbI,561
222
+ endoreg_db/models/case/__init__.py,sha256=7QO5lmKW8GRcffm4cC-OhKL0ujE1ljoqb-W-CBGzAd4,22
223
+ endoreg_db/models/case/case.py,sha256=VYSZNLpkN51eQeuQRUGjkAknn24_-RhA5JmnicljT-g,1451
224
+ endoreg_db/models/case_template/__init__.py,sha256=GwGBRl1YdpndeD0N5r4pTXK7T6Xcavq3dru3jd3huvo,542
225
+ endoreg_db/models/case_template/case_template.py,sha256=MBya9E8hH5MpdueLxDzj5_K-HKxUsyupZXUqjwysLck,4866
226
+ endoreg_db/models/case_template/case_template_rule.py,sha256=nNDD5aKKhxin_Fqdoet4OcHROr2UVvovYOg_bO8j71k,11408
227
+ endoreg_db/models/case_template/case_template_rule_value.py,sha256=grEXBShItvvbug2hRpy0DjSNBk1zuDRJjXUBoiGRHr4,2795
228
+ endoreg_db/models/case_template/case_template_type.py,sha256=5FkaHRbLHag103u3OXPDoZGKp4VSYO-yGhJ2YSiah8Q,764
229
+ endoreg_db/models/center/__init__.py,sha256=wf7Dm9NRAADNPojlm7YiKYmmBIlxWzEm3LJQ9jpV4AA,241
230
+ endoreg_db/models/center/center.py,sha256=NMFMVcSPAsAoqaxpHfz1aUn8ZkjZBFBtDEKE_ZnA-sc,1330
231
+ endoreg_db/models/center/center_product.py,sha256=3dzo4LO4i6oIY0CKwyL6Elbiagpe7kGcP1yWGS3jNRI,874
232
+ endoreg_db/models/center/center_resource.py,sha256=uTqYbYYzsM94i7UI-d9pCrI2yrR7KlNqINMLe0GpOfg,1659
233
+ endoreg_db/models/center/center_waste.py,sha256=60cdK3jA1EDyVgL_7y_7BEJkswDaDdu1ODQXphLJREo,649
234
+ endoreg_db/models/contraindication/__init__.py,sha256=29xixed-Ouwdv4eenYDvx0SZGiFlMyO21vEjFUcrHyw,726
235
+ endoreg_db/models/data_file/__init__.py,sha256=-VmjakA8r8OM-xFqqI560u8IVub4iRe8mDn9kHSYyPM,718
236
+ endoreg_db/models/data_file/frame.py,sha256=eZpVAyxOb6CM_WkLVlldJsIXhWTfgiNBlws1yD14pmw,836
237
+ endoreg_db/models/data_file/report_file.py,sha256=o-FZ-0UAoT8kheezdG2zP0rUmRT0FavZ7TDc6AkG1i8,1992
238
+ endoreg_db/models/data_file/video_segment.py,sha256=dd1IuEpadj8BSxoOyQwSXpcW3oS6aXUMhyjzzmDDq7Q,6717
239
+ endoreg_db/models/data_file/base_classes/__init__.py,sha256=LFfq1NMdMb_e4VvP6p3JQBeAqFohf4gQbY5SI6K_PhY,149
240
+ endoreg_db/models/data_file/base_classes/abstract_frame.py,sha256=0B5yUaXydEAR-lIk4eLUFSh73F_FRprSYE97AUjkgAg,3574
241
+ endoreg_db/models/data_file/base_classes/abstract_pdf.py,sha256=lR9Vq6TaGosKcI1w3SzgXtL3-3_-NoYdKFkHhI-kOHk,3784
242
+ endoreg_db/models/data_file/base_classes/abstract_video.py,sha256=XPbUlXNO9NuY7GVnDkxSh8vYJTLkNZFYSlls2ZGMxnw,27613
243
+ endoreg_db/models/data_file/base_classes/frame_helpers.py,sha256=Njfa5ktrI9R03FnsgWvqTB5aYlFUD1TZVxPkMoSZi0E,548
244
+ endoreg_db/models/data_file/base_classes/prepare_bulk_frames.py,sha256=hoCz0FuFx5mSg7U-OveHgg6JS8nJaTxW7zJIZO89aI4,550
245
+ endoreg_db/models/data_file/base_classes/utils.py,sha256=tG8Xa5q_0i7ueiLySCPmT8_nRNsvWOdDewIyiSHa0rg,2580
246
+ endoreg_db/models/data_file/import_classes/__init__.py,sha256=KCIilSmpwKLClmkcVmUlBMGXpPPCCdrECTKU04ZFATw,629
247
+ endoreg_db/models/data_file/import_classes/raw_pdf.py,sha256=vTiLguHuOtZrQ-lJeYHk1lcuQJVhJQtO_dTHyzYdZTo,8804
248
+ endoreg_db/models/data_file/import_classes/raw_video.py,sha256=YRAwSNL_yntELqzkALiMykzA8lKlkRddRmIJrYy1VLs,9921
249
+ endoreg_db/models/data_file/import_classes/processing_functions/__init__.py,sha256=uathXg8ckLb_XBTRipdHrBXFpZpvKzuouk7lwRN0aqE,932
250
+ endoreg_db/models/data_file/import_classes/processing_functions/pdf.py,sha256=lEd1V_kS8758XuRZ0gj7bVhY5DgTfpEyeDgX3zWHuzE,716
251
+ endoreg_db/models/data_file/import_classes/processing_functions/video.py,sha256=ij3fMdqnZnX1FrS-hscy_pfaYIkxDFKVL7SVjCqCUxs,8530
252
+ endoreg_db/models/data_file/metadata/__init__.py,sha256=A2ZePl-Z00OE4Q3Fh6_9Teu07M_w2YFvNe6pXvpGgNU,269
253
+ endoreg_db/models/data_file/metadata/pdf_meta.py,sha256=w2-4FNtHw62-s9TspHQFi_quLzC1UU_KzxXNyTOD0jg,2316
254
+ endoreg_db/models/data_file/metadata/sensitive_meta.py,sha256=FRXusbgiYYtxBVgavUBYiJAH33x-jhfEfQamXeueFH8,10187
255
+ endoreg_db/models/data_file/metadata/video_meta.py,sha256=FyXCMdP4-uPnL1OAYqvMyVCqnGfInABOaElnCalIUCY,6914
256
+ endoreg_db/models/data_file/video/__init__.py,sha256=bfuxgfl1YOYY2QYk__0alxR3k-xmrRQoHtiHLL8yirs,133
257
+ endoreg_db/models/data_file/video/import_meta.py,sha256=NTRYIZI8TeNoPmJhE0ZFljGIOf5CS9LbFcdYO0p4-mA,1311
258
+ endoreg_db/models/data_file/video/video.py,sha256=GnZ1nlr-MDWZSDdMNOXPRqNjOkzkMRMIsX1Ue7WAIgU,6694
259
+ endoreg_db/models/emission/__init__.py,sha256=rvIQ_cA1Vj--FzQRWOoSy-84iGcjTTAGX1MM6nUjn4w,81
260
+ endoreg_db/models/emission/emission_factor.py,sha256=9XnoHZJy_FxcIy05VnPd9r0jIyG9p4lSDkcI479o7sQ,2847
261
+ endoreg_db/models/examination/__init__.py,sha256=uZleJq2-LUC9AD2x_UUbm0BraxAOF2cBDsZXTo9W7mE,336
262
+ endoreg_db/models/examination/examination.py,sha256=SEwsALZnC1yg4UhTwF1zTxTn-_zUce7jXSClkNqRvmo,1981
263
+ endoreg_db/models/examination/examination_indication.py,sha256=a5odq5uoJ-bes7wa1qgb1iOFyXE7iKFuBPvDJw3vgzE,5720
264
+ endoreg_db/models/examination/examination_time.py,sha256=f0xXLYDXsqWW048MGaHPxMe7NMwmtZ2IRu83GQVQXxU,1829
265
+ endoreg_db/models/examination/examination_time_type.py,sha256=xta9s9bHVjotxIR6aa-72GodoTU4j_TIusZUeDC3hco,1557
266
+ endoreg_db/models/examination/examination_type.py,sha256=kn2S8wSb4gENxy2lhk_FL65YXusNemwpGfErz5vXrIE,1235
267
+ endoreg_db/models/finding/__init__.py,sha256=aDOVIQwzHnfpwp9bZndyywy_CIXAi9vMRyZ2roLalo8,433
268
+ endoreg_db/models/finding/finding.py,sha256=8XP96HVloZ6nM_e-pK7A5ozzDVvCXCIE99TCgfBZK9Q,2666
269
+ endoreg_db/models/finding/finding_intervention.py,sha256=PmpmTTp_SrqgJghguCVrUSOPWP8_tuk2qeZ_8oxPVf0,1925
270
+ endoreg_db/models/finding/finding_location_classification.py,sha256=rDjp5fHzm-LIsL-FQLYC7KveCxX6bLZHnh5A0JSwa_U,3646
271
+ endoreg_db/models/finding/finding_morphology_classification.py,sha256=bfaNodekSYnK7egXp7Y-7sj3-HlJuw4GYdRfquvtENo,2964
272
+ endoreg_db/models/finding/finding_type.py,sha256=ngnl-wlgfFjdnAM0oTZoeBrlWB7_UP3fZ2PyMg7xDjA,708
273
+ endoreg_db/models/hardware/__init__.py,sha256=uFvXFjbIJnJ0-c9f_wA9cSNZ7IcPPZtUmYnJ0z2hfXw,99
274
+ endoreg_db/models/hardware/endoscope.py,sha256=gtNdAbNYD8mUTExzqwA3UpgopEouwrYCrdzWVV0VMdM,1686
275
+ endoreg_db/models/hardware/endoscopy_processor.py,sha256=tHpuDGRHqQROiUEhirZ15tkgj5PatIzLemQMW8CgCrY,5307
276
+ endoreg_db/models/label/__init__.py,sha256=_WpYq-PlmPDvKRSNaGMLxlxJk-N3oRsbr_QwlF11dr4,45
277
+ endoreg_db/models/label/label.py,sha256=rB_xEevo6pn2IpvUziVNh-PFSSkrxmXdn04ktqIyywg,2783
278
+ endoreg_db/models/laboratory/__init__.py,sha256=UQb4RDHqgMfSvO7UBGi_TzI1wUV3QMtLQU7g2-mFAFQ,31
279
+ endoreg_db/models/laboratory/lab_value.py,sha256=cbnL3lXKtGBdzj3Nrss76wM2i34no58Ctb7UJuccItQ,4360
280
+ endoreg_db/models/logging/__init__.py,sha256=O0T9NES9Gmbg4J3NXEc6CQpu5rmBswJD-YoVuFE_d0Y,267
281
+ endoreg_db/models/logging/agl_service.py,sha256=WA5_I1clwTJWtXXDOdFt2opGJiEmp5ebEiHIx2CWkx8,699
282
+ endoreg_db/models/logging/base.py,sha256=39pKcV65Gru4ssZ3xb8T2IJ-ou8cjCGqn1efGuHzoRM,773
283
+ endoreg_db/models/logging/log_type.py,sha256=o_52ZzBBDE9CDgSeBmZJcNBoFyCDxo9HzeSANnOHrj0,636
284
+ endoreg_db/models/logging/network_device.py,sha256=-0DXFf4A74L0jFHybVZXNumzQlL4flUgtbcER2k0eTM,1205
285
+ endoreg_db/models/lx/__init__.py,sha256=drimPEhdj8FA4o1OxVsBHcyBRZ0ApwCOmoMIvZU-pko,166
286
+ endoreg_db/models/lx/client.py,sha256=QrSSJVrh56hypGgqNDwevHheG689HQ9BZ-Bb3d0gWgU,1765
287
+ endoreg_db/models/lx/identity.py,sha256=E0RWtZI3ZRtO6JnVSnL32HpQ95-AY_Pbx3Y1yxyOwdQ,1016
288
+ endoreg_db/models/lx/permission.py,sha256=5blNxqfthqG8O75R99NIDdCB8Reqs1C8vh2gX_lXqwM,488
289
+ endoreg_db/models/lx/user.py,sha256=7ZJQqeGx3ymd-Pr9VB_AZjukDRzxqSRNoeb6lhfODAQ,310
290
+ endoreg_db/models/medication/__init__.py,sha256=BHh6ARvm2uVNswN12EQAEMFPnoGBiVwl7RCjKrW6C2I,761
291
+ endoreg_db/models/medication/medication.py,sha256=rgv8t8aVukkw1ocT3-4VeHtv8Te-QTQgT2pSxuE-mfY,1192
292
+ endoreg_db/models/medication/medication_indication.py,sha256=RTQBODK_YKS01gAGq9MRtqmH1HdhQKOTnA-WDPGHrGs,1609
293
+ endoreg_db/models/medication/medication_indication_type.py,sha256=Al4J_rnImLku9K0dQpNXs2_bqWAW3m7tkVhICGJG1cc,1401
294
+ endoreg_db/models/medication/medication_intake_time.py,sha256=PJ9KJj_hvahcUlMi25BSgvQhcOpGJQm-XMp1AEyrEY4,978
295
+ endoreg_db/models/medication/medication_schedule.py,sha256=Kja--TDE5F75l7fN-10lUB8zQY2-kRAn5Ifdle5v7Ew,1458
296
+ endoreg_db/models/network/__init__.py,sha256=KvxzR5WC70sVrh42jUXH6F8x-FJngksP03kmTc60iJM,207
297
+ endoreg_db/models/network/agl_service.py,sha256=mS_0jDm4ovww9O-Nz0U8kVOoBK-MGrLnmv4NnFTUtrA,1275
298
+ endoreg_db/models/network/network_device.py,sha256=4eaXNJUMancBOMQ3mZRwPjL2kxOPLrizaEtbY0XDYV8,1975
299
+ endoreg_db/models/network/network_device_type.py,sha256=LHGVGkF0LRH8VmAJHE0If5H3c8HC5wtP0-GZY7r02TU,728
300
+ endoreg_db/models/organ/__init__.py,sha256=tsuO7zsJ4GIiQKTufUexgK9WkPdRQHnQpz5Glup_gf8,1254
301
+ endoreg_db/models/other/__init__.py,sha256=_1yiX414_bb9zwj3O1VFs7-HA2OhKGBwjX9ct1GgFls,584
302
+ endoreg_db/models/other/distribution.py,sha256=v--3kf4vZ9yzUNvQEkjepkMt5fivdqVtpnx5jxYyVl0,7
303
+ endoreg_db/models/other/material.py,sha256=uR8EMk-34-fqnT2yYp1PADEia6TvbW1S5i6yLPjgHUw,643
304
+ endoreg_db/models/other/resource.py,sha256=x3EtvQNBad9lofhm4V7A5hW_C269zIHGraUbNjPwUxs,480
305
+ endoreg_db/models/other/transport_route.py,sha256=MoDapPnMF_-UQGHKszojNKhbBrE8t9Xet53x_w3Dj3c,788
306
+ endoreg_db/models/other/waste.py,sha256=COSo2OXsBylywqwCdKWFoDK3RW8m7Qp9yQr3sWKR8d8,579
307
+ endoreg_db/models/other/distribution/__init__.py,sha256=CBOt6i1ESZJqscCoKmijo2HWFPkXbeMEakl_v9V4NU8,1419
308
+ endoreg_db/models/other/distribution/base_value_distribution.py,sha256=Y9UOjaVIKU43ltZ6QjWN4Uk-tqATB11Ir63WwIy942Y,514
309
+ endoreg_db/models/other/distribution/date_value_distribution.py,sha256=_gyi9RyDUCwMngS2uX1aRWEnZzSRHwZmeyuYH5PCtG4,3791
310
+ endoreg_db/models/other/distribution/multiple_categorical_value_distribution.py,sha256=NQgEKkScAXtVMxDZkaVHhIUSiNuD87RyNzado79L3qQ,1502
311
+ endoreg_db/models/other/distribution/numeric_value_distribution.py,sha256=TEePOxf4nyaxns_CeTkEAKoz1NCet3bLsM3IrckfXyU,3490
312
+ endoreg_db/models/other/distribution/single_categorical_value_distribution.py,sha256=haUADjZ1zCvYGzMQIBOPjYQssSUURa_1y22z7huI7S0,737
313
+ endoreg_db/models/patient/__init__.py,sha256=mOpppdXt2-M_298h7fzRNf5BoRyM96b4qaZZfWfPO3k,516
314
+ endoreg_db/models/patient/patient_examination.py,sha256=TBU7kinvlLj9rV9Rl22oqbdJtoZfk9LOhK1Y5S5H0pQ,5875
315
+ endoreg_db/models/patient/patient_finding.py,sha256=_NM18wMxUda0EhEdBMyOrZNkqFH8rAzeJ2u1002vu-E,5156
316
+ endoreg_db/models/patient/patient_finding_intervention.py,sha256=7KYSwBn2qPoqBr7c-vIOvluvN35HIr8ZFjyM0EC8zaw,794
317
+ endoreg_db/models/patient/patient_finding_location.py,sha256=vDmbV0XEcNYXCwQ4Tw9fD6CItoEXhoeLjLPHB75Bl-w,5052
318
+ endoreg_db/models/patient/patient_finding_morphology.py,sha256=d6r7zgX-3U3N3yQ4O7zyc3l17mO4-XwF07HBcPdpPQU,6688
319
+ endoreg_db/models/permissions/__init__.py,sha256=p4C61oKuwKwYcN0EZ6SqBZDW0GCRO2VS-12whhOZBuY,1766
320
+ endoreg_db/models/persons/__init__.py,sha256=Cskk9XXVKrmYlza7-1hnzsZgcyoY6gikjEvlBunTJ0M,862
321
+ endoreg_db/models/persons/first_name.py,sha256=L5K-f9B0mDuJdCPgyo8iDHCxEPEY8q4gj9aK1unP78U,456
322
+ endoreg_db/models/persons/gender.py,sha256=imGiIpaLgiwc9j006QWIvtiT0L8RTxgkaAPaFv5hQ-0,636
323
+ endoreg_db/models/persons/last_name.py,sha256=wzBvqHtJRrSkaFnBR65DtB9xWjizFADjhKPFxDbT5pY,501
324
+ endoreg_db/models/persons/person.py,sha256=qZq-pXgRV-OuZ_9S-TAnT2bf085JOU3RiThyH2nQUAw,1015
325
+ endoreg_db/models/persons/portal_user_information.py,sha256=HE-vgYiEXlAByN3esSCmbMiCPDuL1zSgrwNfFeSCgxk,939
326
+ endoreg_db/models/persons/examiner/__init__.py,sha256=-e0mxzCacT04tOAg2NA2aKg6EbKvzuZPQR4E2MqMEfI,92
327
+ endoreg_db/models/persons/examiner/examiner.py,sha256=GWMQ0Vbg28kyfa_ZqOUaKtEuqzd2RV-CaPdsCdRTdMs,1724
328
+ endoreg_db/models/persons/examiner/examiner_type.py,sha256=wz9afexQBLl8oNJE40LYlKKgBux_Kv-lvviRxGqbwH4,72
329
+ endoreg_db/models/persons/patient/__init__.py,sha256=yAoPhzmV010HHjxbvrn0r8x2KG2odR3uUOgCZ-nKf2k,434
330
+ endoreg_db/models/persons/patient/patient.py,sha256=oYhoo-h4_7wypKYktRDPOxXskQRclJHla4RhkHj0pDo,12945
331
+ endoreg_db/models/persons/patient/patient_disease.py,sha256=jWx9PqjGu4TmxK2smFAWHLD54SGW3UJ_hxw01FTNiSk,816
332
+ endoreg_db/models/persons/patient/patient_event.py,sha256=WQoAZoRobK1ydW9UYcBzxuyfLAvXVQYijZsXnM9SXB4,2016
333
+ endoreg_db/models/persons/patient/patient_examination_indication.py,sha256=iSj6OmMN2kVfaIArObgO9zd0LxU57r4N1ezrTdNrnRE,1314
334
+ endoreg_db/models/persons/patient/patient_lab_sample.py,sha256=FbBiG_czbm0xXelk1ZCsqSnq4ZOkv7hX7Sa_CSwmMV4,3319
335
+ endoreg_db/models/persons/patient/patient_lab_value.py,sha256=eoG-DZF6gihRpGgTbIiN4yyUDTqCQJzt6u-cPnRfljU,6634
336
+ endoreg_db/models/persons/patient/patient_medication.py,sha256=C5mX-qDWJgtj8Nrci_n5VxEbuv_aE8S9aAUf1PdOMxg,1741
337
+ endoreg_db/models/persons/patient/patient_medication_schedule.py,sha256=wQFaxuVdEafYGBdDwd4I3Hv1bSbnU0nbVTfjKC94_T8,3071
338
+ endoreg_db/models/prediction/__init__.py,sha256=3REgrWSSfYZwmcludm-eoSOE73vY-2kK2BORM-75-Lk,252
339
+ endoreg_db/models/prediction/image_classification.py,sha256=mv1p03tj_4KhHrxd_1lCu3mfRkGlps6MAdptyK6BIfQ,1430
340
+ endoreg_db/models/prediction/video_prediction_meta.py,sha256=xKBXSuwJn4_sFS2n_QJyLe5Cr3G2Xi9n9Lzi2Niud4Y,11049
341
+ endoreg_db/models/product/__init__.py,sha256=3D1mlTuB0PkcvAqIC8dzq0jefoLeggLy9ewKhRFBQhc,355
342
+ endoreg_db/models/product/product.py,sha256=Ld8w3SVo5aVK2NPb77qlfwp4FkUcarqrQ1FJi2NitRw,3962
343
+ endoreg_db/models/product/product_group.py,sha256=fld84oXnh5kPwLjJVNOQoVj1s8KeUIJdNPgDZs4fzKg,800
344
+ endoreg_db/models/product/product_material.py,sha256=EMmoCrIgEVRy__puUbBOIeidbF4vqWwR5t1y628LsHo,1202
345
+ endoreg_db/models/product/product_weight.py,sha256=ydFWZjG_iUw-zV0I76u8BiXEEOwaan7YYZZT6_EYnVI,1391
346
+ endoreg_db/models/product/reference_product.py,sha256=0UZDnPj9123ctVdBW155j5kSym1Dooa2mw6lQ9BqApw,4587
347
+ endoreg_db/models/questionnaires/__init__.py,sha256=ie6TUg-PKFQOlUBPzlIKoStU4-EdIUT-hBZRTRdilhk,6029
348
+ endoreg_db/models/quiz/__init__.py,sha256=eGUu4p0L4-8R9LcffdQQzByeLEGB8TXoHEPaT_UbRL0,210
349
+ endoreg_db/models/quiz/quiz_answer.py,sha256=ACWP57onxRdQ0CjcycsdRcXf7dO1RHsnnF1Q_V9R8AE,1116
350
+ endoreg_db/models/quiz/quiz_question.py,sha256=nntckPi0xdHQhAY2ScfvV19XoDjkuo2Gabu3TTPYSzQ,1468
351
+ endoreg_db/models/report_reader/__init__.py,sha256=LiMooVstXRay5qcB-uZW0wxbcdUvPrfAs_xBwWiuuWc,166
352
+ endoreg_db/models/report_reader/report_reader_config.py,sha256=ONlqtb4kBxWGHkX_eW6d_Jiwh0EtRPOH7jQT7759nuI,2353
353
+ endoreg_db/models/report_reader/report_reader_flag.py,sha256=j9tjbLRenxpWfeaseALl8rV2Dqem9YaM_duS1iJkARU,536
354
+ endoreg_db/models/rules/__init__.py,sha256=wJGGh7o-4L85T_6JcAIaPVsg9w1BTMOf3-3ePcNtG-g,180
355
+ endoreg_db/models/rules/rule.py,sha256=LqsL6hep3Lce97AvIThiII7PX9JckRdauIQxpdooAmU,809
356
+ endoreg_db/models/rules/rule_applicator.py,sha256=m1doR6h_5CzLCDdHaJeo-2eO_uc_vbiDOWRUu_xTyXM,9376
357
+ endoreg_db/models/rules/rule_attribute_dtype.py,sha256=PH5YwHV2K3TY3-pjLIDJCMq1GSYuFbTtY3JKvDk_hWc,540
358
+ endoreg_db/models/rules/rule_type.py,sha256=BQVuedM0KmEJsbpe6Cb6gecn4LDMqfK94xQxLXS3FJA,604
359
+ endoreg_db/models/rules/ruleset.py,sha256=XaY30qfXuXaUhaDmgfyUhPBnQ4EE1owixZ3mDW63lcY,550
360
+ endoreg_db/queries/__init__.py,sha256=3yhFtU_yY2L8rK2--8WkjcyI0q94QPpTtv5w_v8rZRY,83
361
+ endoreg_db/queries/annotations/__init__.py,sha256=76O3dAIzuSye09VNPGSNPnqPEtgXZcBAGXKdh89y0ts,95
362
+ endoreg_db/queries/annotations/legacy.py,sha256=KOHWLDf3CLvIT9GpQi3ps4bUi3JDJUhJXH4gvw9T47E,6418
363
+ endoreg_db/queries/get/__init__.py,sha256=id0oVNTEjzzUpkvTp0E4tClFN91EeKOyEuSAYsIlIQo,147
364
+ endoreg_db/queries/get/annotation.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
365
+ endoreg_db/queries/get/center.py,sha256=SeVxpzZUErk_jjv0RaurDar2i_28FWQ6RarxFHblnGw,1155
366
+ endoreg_db/queries/get/model.py,sha256=k4s5zDIv3s0SleG4lMBhrMYQuSlnECIHoORVQnAIerA,371
367
+ endoreg_db/queries/get/patient.py,sha256=5hN2tOPgeSrV0WtkWOkOjnWT4y7rf1HIHBDKGgX3-NQ,358
368
+ endoreg_db/queries/get/patient_examination.py,sha256=ImFzLT9cMAuVuK3oVPXZ75APv0FPO_ny1dGwWpbfPgM,728
369
+ endoreg_db/queries/get/prediction.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
370
+ endoreg_db/queries/get/report_file.py,sha256=dBQdCB-nujd-Q5_ecknGYF7C_uzJ8Zna__oclCo0o6M,976
371
+ endoreg_db/queries/get/video.py,sha256=-QsFaUr8CJCSLUn0BJ5AXYg9rTrJ8KGB67hTnudB3T4,887
372
+ endoreg_db/queries/get/video_import_meta.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
373
+ endoreg_db/queries/get/video_prediction_meta.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
374
+ endoreg_db/queries/sanity/__init_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
375
+ endoreg_db/serializers/__init__.py,sha256=b7oUJKX5anHwP5YWh3sz-Riq-UsB5a8IB_2h5sgTCX4,236
376
+ endoreg_db/serializers/ai_model.py,sha256=ArQOLN3qnb0H6_TfgySbndErEYqgO0rDAFsF_pdwDVs,579
377
+ endoreg_db/serializers/annotation.py,sha256=ZBf4-OwgWD8EaYeK8Lz-YzdkuB-UgjvOCh40EH4JNnw,480
378
+ endoreg_db/serializers/center.py,sha256=CAR0OETP_Ho8IEsmN08QrI-UmZ3i2tVnt6Gd2QTt_Pc,207
379
+ endoreg_db/serializers/examination.py,sha256=Tbe89zn-_a-3urNvdcsZ6MUAeRgDjsP7jNrgxIJ4E98,876
380
+ endoreg_db/serializers/frame.py,sha256=EHaPVbHg5uCMAPE6Mmv46_Xy6oCiumHL7pE5p_nO5_4,195
381
+ endoreg_db/serializers/hardware.py,sha256=nSxRgMZUVGYYX5a0ZB90q1EnCZahs-WvegtBxODrq4c,534
382
+ endoreg_db/serializers/label.py,sha256=IzUK2t5FPy40LGq-yRS_KTakM0BqBsnCKGzxtTZ8W9g,490
383
+ endoreg_db/serializers/patient.py,sha256=yMCj8VCa7piu7k_FcLIBPGN2W3EQw-zz6901dkBnsXg,1174
384
+ endoreg_db/serializers/prediction.py,sha256=I75ywgoky9ZhgLFQ4c6tfBK_KxiCFF6Mgj5cZ_tzdwg,275
385
+ endoreg_db/serializers/raw_video_meta_validation.py,sha256=4YVyTV4nGdKQiP5H_ypmxuQsVYVbhb_-VLQ5WNS9zcY,501
386
+ endoreg_db/serializers/report_file.py,sha256=dsO_-zwybdhq4BWGzD2rp6u1nloZgTMa3Ll8qiq_et4,208
387
+ endoreg_db/serializers/video.py,sha256=Hku_C5QtLMxvZuSVyMyENn_yxxRQVvEux6zfbhm-44Y,512
388
+ endoreg_db/serializers/video_segmentation.py,sha256=INzMLBFcqpkO6mCdAIbAcH1tHoJpZZ6EY-dOxOygaD4,20896
389
+ endoreg_db/templates/timeline.html,sha256=H9VXKOecCzqcWWkpNIZXFI29ztg-oxV5uvxMglgoClk,6167
390
+ endoreg_db/templates/admin/patient_finding_intervention.html,sha256=F3JUKm3HhWIf_xoZZ-SET5d5ZDlm2jMM8g909w1dnYc,10164
391
+ endoreg_db/templates/admin/start_examination.html,sha256=3K4wirul9KNyB5mN9cpfCSCAyAD6ro19GwxFOY5sZ3A,267
392
+ endoreg_db/utils/__init__.py,sha256=XpA7by63PZ3iBC1Pf0GjUCh9hNCPywxKdHm2RIzkejI,945
393
+ endoreg_db/utils/cropping.py,sha256=wMLo5sCFdZAEVBe3RbCH26eQjRe8q3th4K3ZKDd9fww,1143
394
+ endoreg_db/utils/dataloader.py,sha256=xGwmtI_C52xe4t9BVLEs3_hM4d2hHxFI1chL52uJAzk,4506
395
+ endoreg_db/utils/dates.py,sha256=lcmnSvBSRpo8XyJKFHoSpPVahn8yO-OAeoq32lxeIJU,1239
396
+ endoreg_db/utils/file_operations.py,sha256=3mUY6jARIm927XK0nJoDO7fRp5quoSqPr95jDJERmr0,884
397
+ endoreg_db/utils/hashs.py,sha256=8eKXYdc6b-uYUvQYfByZgY9HeiEC-6MaTZrQ6k6BUNs,4752
398
+ endoreg_db/utils/legacy_ocr.py,sha256=lzZb8om4pfEJ5i7fuamW1XaVjO1Fybne7QCdVUxz8O8,7640
399
+ endoreg_db/utils/names.py,sha256=ZO_Untq46ugikBQr8T586NiEcazlQVAN_xDZVXLNylM,2674
400
+ endoreg_db/utils/ocr.py,sha256=LvyABxX5OZhIeXw2pI6af8_xTj7nHQQoKGh5kNsrv7o,7136
401
+ endoreg_db/utils/parse_and_generate_yaml.py,sha256=k7y0fl9Jbb_LNryeJYd6tebklRlu1-P70dJ-4sxvEZs,1626
402
+ endoreg_db/utils/uuid.py,sha256=T4HXqYtKwXFqE5kPyvlgWHyllBBF6LL6N48nl9TpwBk,53
403
+ endoreg_db/utils/validate_endo_roi.py,sha256=Ct2H0JJW9gxYZc7099NYee4kxdKL90a3LGYahqibwms,925
404
+ endoreg_db/utils/validate_subcategory_dict.py,sha256=zUR2sb5jgr0Ue--nCh-PYGrCTl4IP6j0WaIjkXIdScM,3443
405
+ endoreg_db/utils/pydantic_models/__init__.py,sha256=qK_92ECIuirWzILReMdz_tOkrQqvxQZzGB7joUOLL8o,96
406
+ endoreg_db/utils/pydantic_models/db_config.py,sha256=TRaG8EFh9BKZpjQJdewq3jZK3xuj9XY7UiFRJGyivzU,1736
407
+ endoreg_db/utils/video/__init__.py,sha256=beSdWQ8u0mA1U6evgB-oFD_J_GdxIb3xED24qcyjEr8,304
408
+ endoreg_db/utils/video/extract_frames.py,sha256=2HgobqZsVP5pQs8c99AyaAQ9O36taQeeoGDxooRHJSM,3682
409
+ endoreg_db/utils/video/transcode_videofile.py,sha256=GcqMsy-dWpdK77yC5_P-Hz86W4_8cVEp5p5XNtXVQ2Y,3787
410
+ endoreg_db/views/__init__.py,sha256=re1YnHSmKzpQhfqpwNpOZBKSzWmrL9m08_x9R_IqD2Q,97
411
+ endoreg_db/views/csrf.py,sha256=Cm30VMzqe7eMzTp-NYO5ZLEEsgx1-fuo20WXhlrko2Y,241
412
+ endoreg_db/views/patient_views.py,sha256=k16qoGaY6yGZz2gDkQ5Ktqtd1j3ePWsW2RH_2B6KseY,4061
413
+ endoreg_db/views/raw_video_meta_validation_views.py,sha256=6oXyj38Y3mHln8e8cs7qawXm0Ml3INaVCrumtnF4iiY,1639
414
+ endoreg_db/views/report_views.py,sha256=ZfjwdmP4f6JYq7bST1l55r03zqT9w_7w6W0_RXr7Bik,4075
415
+ endoreg_db/views/video_segmentation_views.py,sha256=Tr-IEgcO53zRjqw1k4d27dPClTL9dqmNl0cteZgzZ4g,5916
416
+ endoreg_db/views/views_for_timeline.py,sha256=GgbP6YzALKAwCn06PJQcCQHR7p0fvthL0NFzqE21mSw,1810
417
+ endoreg_db-0.6.1.dist-info/METADATA,sha256=sN5R83DO82sHwaNZxFBJ1HL4hKEDoLKpaO2xVy_nwEA,4936
418
+ endoreg_db-0.6.1.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
419
+ endoreg_db-0.6.1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
420
+ endoreg_db-0.6.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: hatchling 1.26.3
2
+ Generator: hatchling 1.27.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,3 +0,0 @@
1
- - model: endoreg_db.active_model
2
- data:
3
- - name: "multilabel_image_classification"
@@ -1,18 +0,0 @@
1
- - model: endoreg_db.LabelSet
2
- fields:
3
- name: "multilabel_classification"
4
- version: 0
5
- labels: [
6
- "appendix",
7
- "ileocecal_valve",
8
- "polyp",
9
- "water_jet",
10
- "digital_chromo_endoscopy",
11
- "instrument",
12
- "wound",
13
- "blood",
14
- "ileum",
15
- "low_quality",
16
- "clip",
17
- "outside",
18
- ]