endoreg-db 0.8.6.1__py3-none-any.whl → 0.8.8.9__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.
- endoreg_db/authz/auth.py +74 -0
- endoreg_db/authz/backends.py +168 -0
- endoreg_db/authz/management/commands/list_routes.py +18 -0
- endoreg_db/authz/middleware.py +83 -0
- endoreg_db/authz/permissions.py +127 -0
- endoreg_db/authz/policy.py +218 -0
- endoreg_db/authz/views_auth.py +66 -0
- endoreg_db/config/env.py +13 -8
- endoreg_db/data/__init__.py +2 -11
- endoreg_db/data/ai_model_meta/default_multilabel_classification.yaml +3 -3
- endoreg_db/data/event_classification/data.yaml +4 -0
- endoreg_db/data/event_classification_choice/data.yaml +9 -0
- endoreg_db/data/examination/examinations/data.yaml +114 -14
- endoreg_db/data/examination/time-type/data.yaml +0 -3
- endoreg_db/data/examination_indication/endoscopy.yaml +108 -173
- endoreg_db/data/examination_indication_classification/endoscopy.yaml +0 -70
- endoreg_db/data/examination_indication_classification_choice/endoscopy.yaml +33 -37
- endoreg_db/data/finding/00_generic.yaml +35 -0
- endoreg_db/data/finding/00_generic_complication.yaml +9 -0
- endoreg_db/data/finding/01_gastroscopy_baseline.yaml +88 -0
- endoreg_db/data/finding/01_gastroscopy_observation.yaml +113 -0
- endoreg_db/data/finding/02_colonoscopy_baseline.yaml +53 -0
- endoreg_db/data/finding/02_colonoscopy_hidden.yaml +119 -0
- endoreg_db/data/finding/02_colonoscopy_observation.yaml +152 -0
- endoreg_db/data/finding_classification/00_generic.yaml +44 -0
- endoreg_db/data/finding_classification/00_generic_histology.yaml +28 -0
- endoreg_db/data/finding_classification/00_generic_lesion.yaml +52 -0
- endoreg_db/data/finding_classification/02_colonoscopy_baseline.yaml +83 -0
- endoreg_db/data/finding_classification/02_colonoscopy_histology.yaml +13 -0
- endoreg_db/data/finding_classification/02_colonoscopy_other.yaml +12 -0
- endoreg_db/data/finding_classification/02_colonoscopy_polyp.yaml +101 -0
- endoreg_db/data/finding_classification_choice/{yes_no_na.yaml → 00_generic.yaml} +5 -1
- endoreg_db/data/finding_classification_choice/{examination_setting_generic_types.yaml → 00_generic_baseline.yaml} +10 -2
- endoreg_db/data/finding_classification_choice/{complication_generic_types.yaml → 00_generic_complication.yaml} +1 -1
- endoreg_db/data/finding_classification_choice/{histology.yaml → 00_generic_histology.yaml} +1 -4
- endoreg_db/data/finding_classification_choice/00_generic_lesion.yaml +158 -0
- endoreg_db/data/finding_classification_choice/{bowel_preparation.yaml → 02_colonoscopy_bowel_preparation.yaml} +1 -30
- endoreg_db/data/finding_classification_choice/{colonoscopy_not_complete_reason.yaml → 02_colonoscopy_generic.yaml} +1 -1
- endoreg_db/data/finding_classification_choice/{histology_polyp.yaml → 02_colonoscopy_histology.yaml} +1 -1
- endoreg_db/data/finding_classification_choice/{colonoscopy_location.yaml → 02_colonoscopy_location.yaml} +23 -4
- endoreg_db/data/finding_classification_choice/02_colonoscopy_other.yaml +34 -0
- endoreg_db/data/finding_classification_choice/02_colonoscopy_polyp_advanced_imaging.yaml +76 -0
- endoreg_db/data/finding_classification_choice/{colon_lesion_paris.yaml → 02_colonoscopy_polyp_morphology.yaml} +26 -8
- endoreg_db/data/finding_classification_choice/02_colonoscopy_size.yaml +27 -0
- endoreg_db/data/finding_classification_type/{colonoscopy_basic.yaml → 00_generic.yaml} +18 -13
- endoreg_db/data/finding_classification_type/02_colonoscopy.yaml +9 -0
- endoreg_db/data/finding_intervention/00_generic_endoscopy.yaml +59 -0
- endoreg_db/data/finding_intervention/00_generic_endoscopy_ablation.yaml +44 -0
- endoreg_db/data/finding_intervention/00_generic_endoscopy_bleeding.yaml +55 -0
- endoreg_db/data/finding_intervention/00_generic_endoscopy_resection.yaml +85 -0
- endoreg_db/data/finding_intervention/00_generic_endoscopy_stenosis.yaml +17 -0
- endoreg_db/data/finding_intervention/00_generic_endoscopy_stent.yaml +9 -0
- endoreg_db/data/finding_intervention/01_gastroscopy.yaml +19 -0
- endoreg_db/data/finding_intervention/04_eus.yaml +39 -0
- endoreg_db/data/finding_intervention/05_ercp.yaml +3 -0
- endoreg_db/data/finding_type/data.yaml +8 -12
- endoreg_db/data/requirement/01_patient_data.yaml +93 -0
- endoreg_db/data/requirement/old/colon_polyp_intervention.yaml +49 -0
- endoreg_db/data/requirement/old/coloreg_colon_polyp.yaml +49 -0
- endoreg_db/data/requirement_operator/new_operators.yaml +36 -0
- endoreg_db/data/requirement_set/01_endoscopy_generic.yaml +29 -12
- endoreg_db/data/requirement_set/01_laboratory.yaml +13 -0
- endoreg_db/data/requirement_set/{endoscopy_bleeding_risk.yaml → 02_endoscopy_bleeding_risk.yaml} +0 -6
- endoreg_db/data/requirement_set/90_coloreg.yaml +190 -0
- endoreg_db/data/requirement_set/_old_ +109 -0
- endoreg_db/data/requirement_set_type/data.yaml +21 -0
- endoreg_db/data/setup_config.yaml +4 -4
- endoreg_db/data/tag/requirement_set_tags.yaml +21 -0
- endoreg_db/exceptions.py +4 -2
- endoreg_db/forms/examination_form.py +1 -1
- endoreg_db/helpers/data_loader.py +125 -53
- endoreg_db/helpers/default_objects.py +116 -81
- endoreg_db/import_files/__init__.py +27 -0
- endoreg_db/import_files/context/__init__.py +7 -0
- endoreg_db/import_files/context/default_sensitive_meta.py +81 -0
- endoreg_db/import_files/context/ensure_center.py +17 -0
- endoreg_db/import_files/context/file_lock.py +66 -0
- endoreg_db/import_files/context/import_context.py +43 -0
- endoreg_db/import_files/context/validate_directories.py +56 -0
- endoreg_db/import_files/file_storage/__init__.py +15 -0
- endoreg_db/import_files/file_storage/create_report_file.py +76 -0
- endoreg_db/import_files/file_storage/create_video_file.py +75 -0
- endoreg_db/import_files/file_storage/sensitive_meta_storage.py +39 -0
- endoreg_db/import_files/file_storage/state_management.py +400 -0
- endoreg_db/import_files/file_storage/storage.py +36 -0
- endoreg_db/import_files/import_service.md +26 -0
- endoreg_db/import_files/processing/__init__.py +11 -0
- endoreg_db/import_files/processing/report_processing/report_anonymization.py +94 -0
- endoreg_db/import_files/processing/sensitive_meta_adapter.py +51 -0
- endoreg_db/import_files/processing/video_processing/video_anonymization.py +107 -0
- endoreg_db/import_files/processing/video_processing/video_cleanup_on_error.py +119 -0
- endoreg_db/import_files/pseudonymization/fake.py +52 -0
- endoreg_db/import_files/pseudonymization/k_anonymity.py +182 -0
- endoreg_db/import_files/pseudonymization/k_pseudonymity.py +128 -0
- endoreg_db/import_files/report_import_service.py +141 -0
- endoreg_db/import_files/video_import_service.py +150 -0
- endoreg_db/management/commands/create_model_meta_from_huggingface.py +21 -10
- endoreg_db/management/commands/create_multilabel_model_meta.py +299 -129
- endoreg_db/management/commands/import_report.py +130 -65
- endoreg_db/management/commands/import_video.py +9 -10
- endoreg_db/management/commands/import_video_with_classification.py +2 -2
- endoreg_db/management/commands/list_routes.py +18 -0
- endoreg_db/management/commands/load_ai_model_data.py +5 -5
- endoreg_db/management/commands/load_ai_model_label_data.py +9 -7
- endoreg_db/management/commands/load_base_db_data.py +5 -134
- endoreg_db/management/commands/load_center_data.py +12 -12
- endoreg_db/management/commands/load_contraindication_data.py +14 -16
- endoreg_db/management/commands/load_disease_classification_choices_data.py +15 -18
- endoreg_db/management/commands/load_disease_classification_data.py +15 -18
- endoreg_db/management/commands/load_disease_data.py +25 -28
- endoreg_db/management/commands/load_endoscope_data.py +20 -27
- endoreg_db/management/commands/load_event_data.py +14 -16
- endoreg_db/management/commands/load_examination_data.py +31 -44
- endoreg_db/management/commands/load_examination_indication_data.py +20 -21
- endoreg_db/management/commands/load_finding_data.py +52 -80
- endoreg_db/management/commands/load_information_source.py +21 -23
- endoreg_db/management/commands/load_lab_value_data.py +17 -26
- endoreg_db/management/commands/load_medication_data.py +13 -12
- endoreg_db/management/commands/load_organ_data.py +15 -19
- endoreg_db/management/commands/load_pdf_type_data.py +19 -18
- endoreg_db/management/commands/load_profession_data.py +14 -17
- endoreg_db/management/commands/load_qualification_data.py +20 -23
- endoreg_db/management/commands/load_report_reader_flag_data.py +17 -19
- endoreg_db/management/commands/load_requirement_data.py +62 -39
- endoreg_db/management/commands/load_requirement_set_tags.py +95 -0
- endoreg_db/management/commands/load_risk_data.py +7 -6
- endoreg_db/management/commands/load_shift_data.py +20 -23
- endoreg_db/management/commands/load_tag_data.py +8 -11
- endoreg_db/management/commands/load_unit_data.py +17 -19
- endoreg_db/management/commands/setup_endoreg_db.py +3 -3
- endoreg_db/management/commands/start_filewatcher.py +46 -37
- endoreg_db/management/commands/storage_management.py +271 -203
- endoreg_db/management/commands/validate_video_files.py +1 -5
- endoreg_db/migrations/0001_initial.py +297 -250
- endoreg_db/models/__init__.py +78 -123
- endoreg_db/models/administration/__init__.py +21 -42
- endoreg_db/models/administration/ai/active_model.py +2 -2
- endoreg_db/models/administration/ai/ai_model.py +7 -6
- endoreg_db/models/administration/case/__init__.py +1 -15
- endoreg_db/models/administration/case/case.py +3 -3
- endoreg_db/models/administration/case/case_template/__init__.py +2 -14
- endoreg_db/models/administration/case/case_template/case_template.py +2 -124
- endoreg_db/models/administration/case/case_template/case_template_rule.py +2 -268
- endoreg_db/models/administration/case/case_template/case_template_rule_value.py +2 -85
- endoreg_db/models/administration/case/case_template/case_template_type.py +2 -25
- endoreg_db/models/administration/center/center.py +33 -19
- endoreg_db/models/administration/center/center_product.py +12 -9
- endoreg_db/models/administration/center/center_resource.py +25 -19
- endoreg_db/models/administration/center/center_shift.py +21 -17
- endoreg_db/models/administration/center/center_waste.py +16 -8
- endoreg_db/models/administration/person/__init__.py +2 -0
- endoreg_db/models/administration/person/employee/employee.py +10 -5
- endoreg_db/models/administration/person/employee/employee_qualification.py +9 -4
- endoreg_db/models/administration/person/employee/employee_type.py +12 -6
- endoreg_db/models/administration/person/examiner/examiner.py +13 -11
- endoreg_db/models/administration/person/patient/__init__.py +2 -0
- endoreg_db/models/administration/person/patient/patient.py +129 -100
- endoreg_db/models/administration/person/patient/patient_external_id.py +37 -0
- endoreg_db/models/administration/person/person.py +4 -0
- endoreg_db/models/administration/person/profession/__init__.py +8 -4
- endoreg_db/models/administration/person/user/portal_user_information.py +11 -7
- endoreg_db/models/administration/product/product.py +20 -15
- endoreg_db/models/administration/product/product_material.py +17 -18
- endoreg_db/models/administration/product/product_weight.py +12 -8
- endoreg_db/models/administration/product/reference_product.py +23 -55
- endoreg_db/models/administration/qualification/qualification.py +7 -3
- endoreg_db/models/administration/qualification/qualification_type.py +7 -3
- endoreg_db/models/administration/shift/scheduled_days.py +8 -5
- endoreg_db/models/administration/shift/shift.py +16 -12
- endoreg_db/models/administration/shift/shift_type.py +23 -31
- endoreg_db/models/label/__init__.py +8 -9
- endoreg_db/models/label/annotation/image_classification.py +10 -9
- endoreg_db/models/label/annotation/video_segmentation_annotation.py +23 -28
- endoreg_db/models/label/label.py +15 -15
- endoreg_db/models/label/label_set.py +19 -6
- endoreg_db/models/label/label_type.py +1 -1
- endoreg_db/models/label/label_video_segment/_create_from_video.py +5 -8
- endoreg_db/models/label/label_video_segment/label_video_segment.py +98 -102
- endoreg_db/models/label/video_segmentation_label.py +4 -0
- endoreg_db/models/label/video_segmentation_labelset.py +4 -3
- endoreg_db/models/media/frame/frame.py +22 -22
- endoreg_db/models/media/pdf/raw_pdf.py +194 -194
- endoreg_db/models/media/pdf/report_file.py +25 -29
- endoreg_db/models/media/pdf/report_reader/report_reader_config.py +55 -47
- endoreg_db/models/media/pdf/report_reader/report_reader_flag.py +23 -7
- endoreg_db/models/media/processing_history/__init__.py +5 -0
- endoreg_db/models/media/processing_history/processing_history.py +96 -0
- endoreg_db/models/media/video/__init__.py +1 -0
- endoreg_db/models/media/video/create_from_file.py +139 -77
- endoreg_db/models/media/video/pipe_2.py +8 -9
- endoreg_db/models/media/video/video_file.py +174 -112
- endoreg_db/models/media/video/video_file_ai.py +288 -74
- endoreg_db/models/media/video/video_file_anonymize.py +38 -38
- endoreg_db/models/media/video/video_file_frames/__init__.py +3 -1
- endoreg_db/models/media/video/video_file_frames/_bulk_create_frames.py +6 -8
- endoreg_db/models/media/video/video_file_frames/_create_frame_object.py +7 -9
- endoreg_db/models/media/video/video_file_frames/_delete_frames.py +9 -8
- endoreg_db/models/media/video/video_file_frames/_extract_frames.py +38 -45
- endoreg_db/models/media/video/video_file_frames/_get_frame.py +6 -8
- endoreg_db/models/media/video/video_file_frames/_get_frame_number.py +4 -18
- endoreg_db/models/media/video/video_file_frames/_get_frame_path.py +4 -3
- endoreg_db/models/media/video/video_file_frames/_get_frame_paths.py +7 -6
- endoreg_db/models/media/video/video_file_frames/_get_frame_range.py +6 -8
- endoreg_db/models/media/video/video_file_frames/_get_frames.py +6 -8
- endoreg_db/models/media/video/video_file_frames/_initialize_frames.py +15 -25
- endoreg_db/models/media/video/video_file_frames/_manage_frame_range.py +26 -23
- endoreg_db/models/media/video/video_file_frames/_mark_frames_extracted_status.py +23 -14
- endoreg_db/models/media/video/video_file_io.py +113 -61
- endoreg_db/models/media/video/video_file_meta/get_crop_template.py +3 -3
- endoreg_db/models/media/video/video_file_meta/get_endo_roi.py +5 -3
- endoreg_db/models/media/video/video_file_meta/get_fps.py +37 -34
- endoreg_db/models/media/video/video_file_meta/initialize_video_specs.py +19 -25
- endoreg_db/models/media/video/video_file_meta/text_meta.py +41 -38
- endoreg_db/models/media/video/video_file_meta/video_meta.py +14 -7
- endoreg_db/models/media/video/video_file_segments.py +24 -17
- endoreg_db/models/media/video/video_metadata.py +19 -35
- endoreg_db/models/media/video/video_processing.py +96 -95
- endoreg_db/models/medical/contraindication/README.md +1 -0
- endoreg_db/models/medical/contraindication/__init__.py +13 -3
- endoreg_db/models/medical/disease.py +22 -16
- endoreg_db/models/medical/event.py +31 -18
- endoreg_db/models/medical/examination/__init__.py +13 -6
- endoreg_db/models/medical/examination/examination.py +39 -20
- endoreg_db/models/medical/examination/examination_indication.py +30 -95
- endoreg_db/models/medical/examination/examination_time.py +23 -8
- endoreg_db/models/medical/examination/examination_time_type.py +9 -6
- endoreg_db/models/medical/examination/examination_type.py +3 -4
- endoreg_db/models/medical/finding/finding.py +32 -40
- endoreg_db/models/medical/finding/finding_classification.py +42 -72
- endoreg_db/models/medical/finding/finding_intervention.py +25 -22
- endoreg_db/models/medical/finding/finding_type.py +13 -12
- endoreg_db/models/medical/hardware/endoscope.py +26 -26
- endoreg_db/models/medical/hardware/endoscopy_processor.py +2 -2
- endoreg_db/models/medical/laboratory/lab_value.py +62 -91
- endoreg_db/models/medical/medication/medication.py +22 -10
- endoreg_db/models/medical/medication/medication_indication.py +29 -3
- endoreg_db/models/medical/medication/medication_indication_type.py +25 -14
- endoreg_db/models/medical/medication/medication_intake_time.py +31 -19
- endoreg_db/models/medical/medication/medication_schedule.py +27 -16
- endoreg_db/models/medical/organ/__init__.py +15 -12
- endoreg_db/models/medical/patient/medication_examples.py +6 -6
- endoreg_db/models/medical/patient/patient_disease.py +20 -23
- endoreg_db/models/medical/patient/patient_event.py +19 -22
- endoreg_db/models/medical/patient/patient_examination.py +48 -54
- endoreg_db/models/medical/patient/patient_examination_indication.py +16 -14
- endoreg_db/models/medical/patient/patient_finding.py +122 -139
- endoreg_db/models/medical/patient/patient_finding_classification.py +44 -49
- endoreg_db/models/medical/patient/patient_finding_intervention.py +8 -19
- endoreg_db/models/medical/patient/patient_lab_sample.py +28 -23
- endoreg_db/models/medical/patient/patient_lab_value.py +82 -89
- endoreg_db/models/medical/patient/patient_medication.py +27 -38
- endoreg_db/models/medical/patient/patient_medication_schedule.py +28 -36
- endoreg_db/models/medical/risk/risk.py +7 -6
- endoreg_db/models/medical/risk/risk_type.py +8 -5
- endoreg_db/models/metadata/model_meta.py +60 -29
- endoreg_db/models/metadata/model_meta_logic.py +125 -18
- endoreg_db/models/metadata/pdf_meta.py +31 -24
- endoreg_db/models/metadata/sensitive_meta.py +105 -85
- endoreg_db/models/metadata/sensitive_meta_logic.py +198 -103
- endoreg_db/models/metadata/video_meta.py +51 -31
- endoreg_db/models/metadata/video_prediction_logic.py +16 -23
- endoreg_db/models/metadata/video_prediction_meta.py +29 -33
- endoreg_db/models/other/distribution/date_value_distribution.py +89 -29
- endoreg_db/models/other/distribution/multiple_categorical_value_distribution.py +21 -5
- endoreg_db/models/other/distribution/numeric_value_distribution.py +114 -53
- endoreg_db/models/other/distribution/single_categorical_value_distribution.py +4 -3
- endoreg_db/models/other/emission/emission_factor.py +18 -8
- endoreg_db/models/other/gender.py +10 -5
- endoreg_db/models/other/information_source.py +50 -29
- endoreg_db/models/other/material.py +9 -5
- endoreg_db/models/other/resource.py +6 -4
- endoreg_db/models/other/tag.py +10 -5
- endoreg_db/models/other/transport_route.py +13 -8
- endoreg_db/models/other/unit.py +10 -6
- endoreg_db/models/other/waste.py +6 -5
- endoreg_db/models/report/report.py +6 -0
- endoreg_db/models/requirement/requirement.py +329 -361
- endoreg_db/models/requirement/requirement_error.py +85 -0
- endoreg_db/models/requirement/requirement_evaluation/evaluate_with_dependencies.py +268 -0
- endoreg_db/models/requirement/requirement_evaluation/operator_evaluation_models.py +3 -6
- endoreg_db/models/requirement/requirement_evaluation/requirement_type_parser.py +90 -64
- endoreg_db/models/requirement/requirement_operator.py +103 -112
- endoreg_db/models/requirement/requirement_set.py +74 -57
- endoreg_db/models/state/__init__.py +4 -4
- endoreg_db/models/state/abstract.py +2 -2
- endoreg_db/models/state/anonymization.py +12 -0
- endoreg_db/models/state/audit_ledger.py +49 -51
- endoreg_db/models/state/label_video_segment.py +9 -0
- endoreg_db/models/state/raw_pdf.py +101 -68
- endoreg_db/models/state/sensitive_meta.py +6 -2
- endoreg_db/models/state/video.py +110 -90
- endoreg_db/models/upload_job.py +35 -34
- endoreg_db/models/utils.py +28 -25
- endoreg_db/queries/__init__.py +3 -1
- endoreg_db/root_urls.py +21 -2
- endoreg_db/schemas/examination_evaluation.py +1 -1
- endoreg_db/serializers/__init__.py +2 -10
- endoreg_db/serializers/anonymization.py +18 -10
- endoreg_db/serializers/label_video_segment/label_video_segment.py +2 -29
- endoreg_db/serializers/meta/__init__.py +1 -6
- endoreg_db/serializers/meta/sensitive_meta_detail.py +63 -118
- endoreg_db/serializers/misc/file_overview.py +11 -99
- endoreg_db/serializers/misc/sensitive_patient_data.py +50 -26
- endoreg_db/serializers/patient_examination/patient_examination.py +3 -3
- endoreg_db/serializers/pdf/anony_text_validation.py +39 -23
- endoreg_db/serializers/requirements/requirement_sets.py +92 -22
- endoreg_db/serializers/video/segmentation.py +2 -1
- endoreg_db/serializers/video/video_file_list.py +65 -34
- endoreg_db/serializers/video/video_processing_history.py +20 -5
- endoreg_db/services/__old/pdf_import.py +1487 -0
- endoreg_db/services/__old/video_import.py +1306 -0
- endoreg_db/services/anonymization.py +128 -89
- endoreg_db/services/lookup_service.py +65 -52
- endoreg_db/services/lookup_store.py +2 -2
- endoreg_db/services/pdf_import.py +0 -1382
- endoreg_db/services/report_import.py +10 -0
- endoreg_db/services/video_import.py +6 -1255
- endoreg_db/tasks/upload_tasks.py +79 -70
- endoreg_db/tasks/video_ingest.py +8 -4
- endoreg_db/urls/__init__.py +5 -32
- endoreg_db/urls/ai.py +32 -0
- endoreg_db/urls/media.py +121 -83
- endoreg_db/urls/root_urls.py +29 -0
- endoreg_db/utils/__init__.py +15 -5
- endoreg_db/utils/ai/multilabel_classification_net.py +116 -20
- endoreg_db/utils/case_generator/__init__.py +3 -0
- endoreg_db/utils/dataloader.py +142 -40
- endoreg_db/utils/defaults/set_default_center.py +32 -0
- endoreg_db/utils/names.py +22 -16
- endoreg_db/utils/paths.py +110 -46
- endoreg_db/utils/permissions.py +2 -1
- endoreg_db/utils/pipelines/Readme.md +1 -1
- endoreg_db/utils/pipelines/process_video_dir.py +1 -1
- endoreg_db/utils/requirement_operator_logic/_old/model_evaluators.py +655 -0
- endoreg_db/utils/requirement_operator_logic/new_operator_logic.py +97 -0
- endoreg_db/utils/setup_config.py +8 -5
- endoreg_db/utils/storage.py +115 -0
- endoreg_db/utils/validate_endo_roi.py +8 -2
- endoreg_db/utils/video/ffmpeg_wrapper.py +184 -188
- endoreg_db/views/__init__.py +85 -183
- endoreg_db/views/ai/__init__.py +8 -0
- endoreg_db/views/ai/label.py +155 -0
- endoreg_db/views/anonymization/media_management.py +202 -166
- endoreg_db/views/anonymization/overview.py +99 -67
- endoreg_db/views/anonymization/validate.py +182 -44
- endoreg_db/views/media/__init__.py +7 -20
- endoreg_db/views/media/pdf_media.py +197 -174
- endoreg_db/views/media/sensitive_metadata.py +193 -138
- endoreg_db/views/media/video_media.py +89 -82
- endoreg_db/views/meta/__init__.py +0 -8
- endoreg_db/views/misc/__init__.py +1 -7
- endoreg_db/views/misc/upload_views.py +94 -93
- endoreg_db/views/patient/patient.py +5 -4
- endoreg_db/views/report/__init__.py +5 -7
- endoreg_db/views/{pdf → report}/reimport.py +22 -22
- endoreg_db/views/{pdf/pdf_stream.py → report/report_stream.py} +46 -39
- endoreg_db/views/requirement/evaluate.py +188 -187
- endoreg_db/views/requirement/lookup.py +17 -3
- endoreg_db/views/requirement/lookup_store.py +22 -90
- endoreg_db/views/requirement/requirement_utils.py +89 -0
- endoreg_db/views/video/__init__.py +23 -24
- endoreg_db/views/video/correction.py +201 -172
- endoreg_db/views/video/reimport.py +1 -1
- endoreg_db/views/{media/video_segments.py → video/segments_crud.py} +77 -40
- endoreg_db/views/video/{video_meta.py → video_meta_stats.py} +2 -2
- endoreg_db/views/video/video_stream.py +7 -8
- {endoreg_db-0.8.6.1.dist-info → endoreg_db-0.8.8.9.dist-info}/METADATA +7 -3
- {endoreg_db-0.8.6.1.dist-info → endoreg_db-0.8.8.9.dist-info}/RECORD +391 -413
- {endoreg_db-0.8.6.1.dist-info → endoreg_db-0.8.8.9.dist-info}/WHEEL +1 -1
- endoreg_db/data/finding/anatomy_colon.yaml +0 -128
- endoreg_db/data/finding/colonoscopy.yaml +0 -40
- endoreg_db/data/finding/colonoscopy_bowel_prep.yaml +0 -56
- endoreg_db/data/finding/complication.yaml +0 -16
- endoreg_db/data/finding/data.yaml +0 -105
- endoreg_db/data/finding/examination_setting.yaml +0 -16
- endoreg_db/data/finding/medication_related.yaml +0 -18
- endoreg_db/data/finding/outcome.yaml +0 -12
- endoreg_db/data/finding_classification/colonoscopy_bowel_preparation.yaml +0 -95
- endoreg_db/data/finding_classification/colonoscopy_jnet.yaml +0 -22
- endoreg_db/data/finding_classification/colonoscopy_kudo.yaml +0 -25
- endoreg_db/data/finding_classification/colonoscopy_lesion_circularity.yaml +0 -20
- endoreg_db/data/finding_classification/colonoscopy_lesion_planarity.yaml +0 -24
- endoreg_db/data/finding_classification/colonoscopy_lesion_size.yaml +0 -68
- endoreg_db/data/finding_classification/colonoscopy_lesion_surface.yaml +0 -20
- endoreg_db/data/finding_classification/colonoscopy_location.yaml +0 -80
- endoreg_db/data/finding_classification/colonoscopy_lst.yaml +0 -21
- endoreg_db/data/finding_classification/colonoscopy_nice.yaml +0 -20
- endoreg_db/data/finding_classification/colonoscopy_paris.yaml +0 -26
- endoreg_db/data/finding_classification/colonoscopy_sano.yaml +0 -22
- endoreg_db/data/finding_classification/colonoscopy_summary.yaml +0 -53
- endoreg_db/data/finding_classification/complication_generic.yaml +0 -25
- endoreg_db/data/finding_classification/examination_setting_generic.yaml +0 -40
- endoreg_db/data/finding_classification/histology_colo.yaml +0 -51
- endoreg_db/data/finding_classification/intervention_required.yaml +0 -26
- endoreg_db/data/finding_classification/medication_related.yaml +0 -23
- endoreg_db/data/finding_classification/visualized.yaml +0 -33
- endoreg_db/data/finding_classification_choice/colon_lesion_circularity_default.yaml +0 -32
- endoreg_db/data/finding_classification_choice/colon_lesion_jnet.yaml +0 -15
- endoreg_db/data/finding_classification_choice/colon_lesion_kudo.yaml +0 -23
- endoreg_db/data/finding_classification_choice/colon_lesion_lst.yaml +0 -15
- endoreg_db/data/finding_classification_choice/colon_lesion_nice.yaml +0 -17
- endoreg_db/data/finding_classification_choice/colon_lesion_planarity_default.yaml +0 -49
- endoreg_db/data/finding_classification_choice/colon_lesion_sano.yaml +0 -14
- endoreg_db/data/finding_classification_choice/colon_lesion_surface_intact_default.yaml +0 -36
- endoreg_db/data/finding_classification_choice/colonoscopy_size.yaml +0 -82
- endoreg_db/data/finding_classification_choice/colonoscopy_summary_worst_finding.yaml +0 -15
- endoreg_db/data/finding_classification_choice/outcome.yaml +0 -19
- endoreg_db/data/finding_intervention/endoscopy.yaml +0 -43
- endoreg_db/data/finding_intervention/endoscopy_colonoscopy.yaml +0 -168
- endoreg_db/data/finding_intervention/endoscopy_egd.yaml +0 -128
- endoreg_db/data/finding_intervention/endoscopy_ercp.yaml +0 -32
- endoreg_db/data/finding_intervention/endoscopy_eus_lower.yaml +0 -9
- endoreg_db/data/finding_intervention/endoscopy_eus_upper.yaml +0 -36
- endoreg_db/data/finding_morphology_classification_type/colonoscopy.yaml +0 -79
- endoreg_db/data/requirement/age.yaml +0 -26
- endoreg_db/data/requirement/gender.yaml +0 -25
- endoreg_db/management/commands/init_default_ai_model.py +0 -112
- endoreg_db/management/commands/reset_celery_schedule.py +0 -9
- endoreg_db/management/commands/validate_video.py +0 -204
- endoreg_db/migrations/0002_add_video_correction_models.py +0 -52
- endoreg_db/migrations/0003_add_center_display_name.py +0 -30
- endoreg_db/models/administration/permissions/__init__.py +0 -44
- endoreg_db/models/rule/__init__.py +0 -13
- endoreg_db/models/rule/rule.py +0 -27
- endoreg_db/models/rule/rule_applicator.py +0 -224
- endoreg_db/models/rule/rule_attribute_dtype.py +0 -17
- endoreg_db/models/rule/rule_type.py +0 -20
- endoreg_db/models/rule/ruleset.py +0 -17
- endoreg_db/renames.yml +0 -8
- endoreg_db/serializers/_old/raw_pdf_meta_validation.py +0 -223
- endoreg_db/serializers/_old/raw_video_meta_validation.py +0 -179
- endoreg_db/serializers/_old/video.py +0 -71
- endoreg_db/serializers/meta/pdf_file_meta_extraction.py +0 -115
- endoreg_db/serializers/meta/report_meta.py +0 -53
- endoreg_db/serializers/report/__init__.py +0 -9
- endoreg_db/serializers/report/mixins.py +0 -45
- endoreg_db/serializers/report/report.py +0 -105
- endoreg_db/serializers/report/report_list.py +0 -22
- endoreg_db/serializers/report/secure_file_url.py +0 -26
- endoreg_db/serializers/video/video_metadata.py +0 -105
- endoreg_db/services/requirements_object.py +0 -147
- endoreg_db/services/storage_aware_video_processor.py +0 -344
- endoreg_db/urls/files.py +0 -6
- endoreg_db/urls/label_video_segment_validate.py +0 -33
- endoreg_db/urls/label_video_segments.py +0 -46
- endoreg_db/urls/report.py +0 -48
- endoreg_db/urls/video.py +0 -61
- endoreg_db/utils/case_generator/case_generator.py +0 -159
- endoreg_db/utils/case_generator/utils.py +0 -30
- endoreg_db/utils/requirement_operator_logic/model_evaluators.py +0 -368
- endoreg_db/views/label/__init__.py +0 -5
- endoreg_db/views/label/label.py +0 -15
- endoreg_db/views/label_video_segment/__init__.py +0 -16
- endoreg_db/views/label_video_segment/create_lvs_from_annotation.py +0 -44
- endoreg_db/views/label_video_segment/get_lvs_by_name_and_video.py +0 -50
- endoreg_db/views/label_video_segment/label_video_segment.py +0 -77
- endoreg_db/views/label_video_segment/label_video_segment_by_label.py +0 -174
- endoreg_db/views/label_video_segment/label_video_segment_detail.py +0 -73
- endoreg_db/views/label_video_segment/update_lvs_from_annotation.py +0 -46
- endoreg_db/views/label_video_segment/validate.py +0 -226
- endoreg_db/views/media/segments.py +0 -71
- endoreg_db/views/meta/available_files_list.py +0 -146
- endoreg_db/views/meta/report_meta.py +0 -53
- endoreg_db/views/meta/sensitive_meta_detail.py +0 -148
- endoreg_db/views/misc/secure_file_serving_view.py +0 -80
- endoreg_db/views/misc/secure_file_url_view.py +0 -84
- endoreg_db/views/misc/secure_url_validate.py +0 -79
- endoreg_db/views/patient_examination/DEPRECATED_video_backup.py +0 -164
- endoreg_db/views/patient_finding_location/__init__.py +0 -5
- endoreg_db/views/patient_finding_location/pfl_create.py +0 -70
- endoreg_db/views/patient_finding_morphology/__init__.py +0 -5
- endoreg_db/views/patient_finding_morphology/pfm_create.py +0 -70
- endoreg_db/views/pdf/__init__.py +0 -8
- endoreg_db/views/report/report_list.py +0 -112
- endoreg_db/views/report/report_with_secure_url.py +0 -28
- endoreg_db/views/report/start_examination.py +0 -7
- endoreg_db/views/video/segmentation.py +0 -274
- endoreg_db/views/video/task_status.py +0 -49
- endoreg_db/views/video/timeline.py +0 -46
- endoreg_db/views/video/video_analyze.py +0 -52
- endoreg_db/views.py +0 -0
- /endoreg_db/data/requirement/{colonoscopy_baseline_austria.yaml → old/colonoscopy_baseline_austria.yaml} +0 -0
- /endoreg_db/data/requirement/{disease_cardiovascular.yaml → old/disease_cardiovascular.yaml} +0 -0
- /endoreg_db/data/requirement/{disease_classification_choice_cardiovascular.yaml → old/disease_classification_choice_cardiovascular.yaml} +0 -0
- /endoreg_db/data/requirement/{disease_hepatology.yaml → old/disease_hepatology.yaml} +0 -0
- /endoreg_db/data/requirement/{disease_misc.yaml → old/disease_misc.yaml} +0 -0
- /endoreg_db/data/requirement/{disease_renal.yaml → old/disease_renal.yaml} +0 -0
- /endoreg_db/data/requirement/{endoscopy_bleeding_risk.yaml → old/endoscopy_bleeding_risk.yaml} +0 -0
- /endoreg_db/data/requirement/{event_cardiology.yaml → old/event_cardiology.yaml} +0 -0
- /endoreg_db/data/requirement/{event_requirements.yaml → old/event_requirements.yaml} +0 -0
- /endoreg_db/data/requirement/{finding_colon_polyp.yaml → old/finding_colon_polyp.yaml} +0 -0
- /endoreg_db/{migrations/__init__.py → data/requirement/old/gender.yaml} +0 -0
- /endoreg_db/data/requirement/{lab_value.yaml → old/lab_value.yaml} +0 -0
- /endoreg_db/data/requirement/{medication.yaml → old/medication.yaml} +0 -0
- /endoreg_db/data/requirement_operator/{age.yaml → _old/age.yaml} +0 -0
- /endoreg_db/data/requirement_operator/{lab_operators.yaml → _old/lab_operators.yaml} +0 -0
- /endoreg_db/data/requirement_operator/{model_operators.yaml → _old/model_operators.yaml} +0 -0
- /endoreg_db/{models/media/video/refactor_plan.md → import_files/pseudonymization/__init__.py} +0 -0
- /endoreg_db/{models/media/video/video_file_frames.py → import_files/pseudonymization/pseudonymize.py} +0 -0
- /endoreg_db/models/{metadata/frame_ocr_result.py → report/__init__.py} +0 -0
- /endoreg_db/{urls/sensitive_meta.py → models/report/images.py} +0 -0
- /endoreg_db/utils/requirement_operator_logic/{lab_value_operators.py → _old/lab_value_operators.py} +0 -0
- {endoreg_db-0.8.6.1.dist-info → endoreg_db-0.8.8.9.dist-info}/licenses/LICENSE +0 -0
|
@@ -2,30 +2,35 @@ endoreg_db/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
2
2
|
endoreg_db/admin.py,sha256=QAqwli6WPIAu9VGteHAOx0ndvFH6ofgapVyVXC1dUXw,3719
|
|
3
3
|
endoreg_db/api_urls.py,sha256=k-JjENY5Rghz-xCXEp2fTcmVzoWUzuKRmdPK1B_LPLY,183
|
|
4
4
|
endoreg_db/apps.py,sha256=LXJ-CksxHy2ecMPjBOprhuJdFtEwU-t4X7LyaR36tAs,577
|
|
5
|
-
endoreg_db/exceptions.py,sha256=
|
|
5
|
+
endoreg_db/exceptions.py,sha256=bf5tJsZ2FMQmUEiPSkJkKWpmkiXdHCVcAr6lQ1mlr_k,575
|
|
6
6
|
endoreg_db/logger_conf.py,sha256=RDFq8WoHxkKDXPC4Q5zlRyCvBR1VQ5Hm9r2B7os9MuI,5618
|
|
7
|
-
endoreg_db/
|
|
8
|
-
endoreg_db/root_urls.py,sha256=ErkvFK8py5aEyDXd7AkKfdYoyZPXPG6mxmvu-sY5-dA,285
|
|
7
|
+
endoreg_db/root_urls.py,sha256=vjoEGj7nMh6_EcxObXVhJrguCQdP4Wau0xyMCaNAANU,1037
|
|
9
8
|
endoreg_db/urls.py,sha256=Bog2gEOtMKPiHruNKH7aOC7ggfg-E28dl94qhEDE7jg,300
|
|
10
|
-
endoreg_db/views.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
11
9
|
endoreg_db/api/serializers/finding_descriptions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
10
|
endoreg_db/api/views/finding_descriptions.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
13
11
|
endoreg_db/assets/dummy_model.ckpt,sha256=NAw5JDdrpV5bpZgdHXhmlQeo6TocKwQ_LQRzmqIm2Dw,21
|
|
12
|
+
endoreg_db/authz/auth.py,sha256=jaR_dER08lBrGqvRhNrje8K6Ma676v6ECk1QkEEHIlg,2500
|
|
13
|
+
endoreg_db/authz/backends.py,sha256=aJfO3pDfo_KKRHJUrLfRirE2g0pQ_RrR8gDmHaFYmXE,6689
|
|
14
|
+
endoreg_db/authz/middleware.py,sha256=c9JEprL05flGZXdj5g5zsa99L1-mHSuIFhwyJIXiZ5s,3772
|
|
15
|
+
endoreg_db/authz/permissions.py,sha256=2fE7M1HqVigBC_7hWbzSXUGQewPBAwuK-bOhf4wfek0,4904
|
|
16
|
+
endoreg_db/authz/policy.py,sha256=16CJL9G1UfNRDX_m9bywtzsEJQ9wFdxNKs5jbPgQ6mc,6970
|
|
17
|
+
endoreg_db/authz/views_auth.py,sha256=_Zh_I6Qi8YByKsEXcw6nMGZXu1Svd-kBIwaO4UZtoPY,2241
|
|
18
|
+
endoreg_db/authz/management/commands/list_routes.py,sha256=7u1P5CbLZXolRfegSPj3sPt_7IWoQJBf_Sc-pr-IrHs,622
|
|
14
19
|
endoreg_db/codemods/readme.md,sha256=mVOAevESOuN0WSTMI3tJPbuuGE3ROASp9s21bpf-LOs,3958
|
|
15
20
|
endoreg_db/codemods/rename_datetime_fields.py,sha256=ulLfte1erPrde2ovOHXT9qubitPceu_JT9uCkxLlKc4,2900
|
|
16
21
|
endoreg_db/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
|
-
endoreg_db/config/env.py,sha256=
|
|
18
|
-
endoreg_db/data/__init__.py,sha256=
|
|
22
|
+
endoreg_db/config/env.py,sha256=9uMRrD9BWZnlKeUqqidVx0JRuD5SdxwGpRf0kv0uaA4,2690
|
|
23
|
+
endoreg_db/data/__init__.py,sha256=wjJs6ISilF5AE6qWIhecREIJQrTWGQzVaq7m7cnJk2w,5443
|
|
19
24
|
endoreg_db/data/db_summary.csv,sha256=K4PcufVHQ64H1i2MbCShMxReEa96I8cL6IfwCVpqF2M,1225
|
|
20
25
|
endoreg_db/data/db_summary.xlsx,sha256=pwsc_IcxNETNrYjDXjpSW83b8f-WsSunRDiJLZXENZ0,5829
|
|
21
|
-
endoreg_db/data/setup_config.yaml,sha256=
|
|
26
|
+
endoreg_db/data/setup_config.yaml,sha256=OavnU5KtaL2oIvysFTbi_sJvpPoVnDexw6MFH-lpg8o,1329
|
|
22
27
|
endoreg_db/data/ai_model/data.yaml,sha256=9XIRMS_meioGu-vYY6zUvz4RUXhRLdalaHhCTdaq4nA,306
|
|
23
28
|
endoreg_db/data/ai_model_label/label/data.yaml,sha256=qkt0FfrLvPrcW_N0GUzu3q9TpiXrvZU047xAIOk_33A,1737
|
|
24
29
|
endoreg_db/data/ai_model_label/label/polyp_classification.yaml,sha256=lHx2VwwVgKzOM_3PcuHuSIStgvMK6rHVi3WP67Qjv70,936
|
|
25
30
|
endoreg_db/data/ai_model_label/label-set/data.yaml,sha256=ocaxnkqiZgwi4sY561TbP_DEQWkPG1hBZ3olwPOqiXQ,789
|
|
26
31
|
endoreg_db/data/ai_model_label/label-set/polyp_classifications.yaml,sha256=GVmctJCgnr2lPUMttgPThNXoLcUl4XpliiuSjvE6h_Q,443
|
|
27
32
|
endoreg_db/data/ai_model_label/label-type/data.yaml,sha256=vffKYpTae_gu63_wza6LONs5ys4pna1EbrUUO6CafQs,136
|
|
28
|
-
endoreg_db/data/ai_model_meta/default_multilabel_classification.yaml,sha256=
|
|
33
|
+
endoreg_db/data/ai_model_meta/default_multilabel_classification.yaml,sha256=H2YzFLNl0vVAwFY0Oc0cEyqQwy1H0-inoS3WHoPOmeA,1162
|
|
29
34
|
endoreg_db/data/ai_model_type/data.yaml,sha256=vCMMo8wiI5uL2zrQROmgsHq1GrC8IdagGIgNdQunUeQ,149
|
|
30
35
|
endoreg_db/data/ai_model_video_segmentation_label/base_segmentation.yaml,sha256=EZ83vq02Cf2KfflWQ4HEe1NHmuzSCsmKtWW5Bv8jet0,4060
|
|
31
36
|
endoreg_db/data/ai_model_video_segmentation_labelset/data.yaml,sha256=07uB1ousJVNpp8B9enJ_YIdZf3y4sBPlME4bZwDv6ho,404
|
|
@@ -70,71 +75,56 @@ endoreg_db/data/event/cardiology.yaml,sha256=OGE7vyP6aJwNY5ZmRNqUK2EqrTE8CGtXCii
|
|
|
70
75
|
endoreg_db/data/event/neurology.yaml,sha256=AdpGHQxfBAOuUbKQ234T1MtE3bfHdgKA47HUoyFB5KE,282
|
|
71
76
|
endoreg_db/data/event/surgery.yaml,sha256=hyZWxg8LUNOwf3iybVj0Muta7pUdWhZXmLuuOh7hjek,428
|
|
72
77
|
endoreg_db/data/event/thrombembolism.yaml,sha256=TvpllrcpTV-kOxsttcPIxeRAZ1JKdoN_Nu0LSPatOZc,556
|
|
73
|
-
endoreg_db/data/
|
|
78
|
+
endoreg_db/data/event_classification/data.yaml,sha256=YejHg13_RWf1l18TxlVr0cdcQdCBv8Lls-_fuHMpXFY,112
|
|
79
|
+
endoreg_db/data/event_classification_choice/data.yaml,sha256=M2zPviPSW0R2KM-zC1tbUpVZ8dak_tPe52JqAAlvXGw,290
|
|
80
|
+
endoreg_db/data/examination/examinations/data.yaml,sha256=NmbHNhbtfF7fzFyBcEzdAqhbHSGIAatYjSVoXyZl9I4,5102
|
|
74
81
|
endoreg_db/data/examination/time/data.yaml,sha256=YQ2VFpmNoUwDf4cCSx35hj46YG2_JeRm_t86RTodVsI,1010
|
|
75
|
-
endoreg_db/data/examination/time-type/data.yaml,sha256
|
|
82
|
+
endoreg_db/data/examination/time-type/data.yaml,sha256=EPFHoEX_H1m-u0beRaPcjQYv071rxfD-1VCk1YKKBWI,111
|
|
76
83
|
endoreg_db/data/examination/type/data.yaml,sha256=z5mkiC1-xBoX9s28zI8-rt73DcX4r2gBm0LP5i4CiyI,339
|
|
77
|
-
endoreg_db/data/examination_indication/endoscopy.yaml,sha256=
|
|
78
|
-
endoreg_db/data/examination_indication_classification/endoscopy.yaml,sha256=
|
|
79
|
-
endoreg_db/data/examination_indication_classification_choice/endoscopy.yaml,sha256=
|
|
84
|
+
endoreg_db/data/examination_indication/endoscopy.yaml,sha256=nHcGxjYu-n1wMR9_Vh6fWh_UXQuDup_hdkAfer3J_5g,13312
|
|
85
|
+
endoreg_db/data/examination_indication_classification/endoscopy.yaml,sha256=Ghtn6Yzq98cNGYU4mOmBH0_UhVcwD2OYlnFF_hVmY00,3078
|
|
86
|
+
endoreg_db/data/examination_indication_classification_choice/endoscopy.yaml,sha256=nWUbJkNUqaBQwdGiOxVMRae2IkSJde4dsjgh8nCe6IU,2908
|
|
80
87
|
endoreg_db/data/examination_requirement_set/colonoscopy.yaml,sha256=Mo_EnRSqsPfYfzDq_-pQFJeXvDiNgSzi_AmmrXdXnMQ,323
|
|
81
|
-
endoreg_db/data/finding/
|
|
82
|
-
endoreg_db/data/finding/
|
|
83
|
-
endoreg_db/data/finding/
|
|
84
|
-
endoreg_db/data/finding/
|
|
85
|
-
endoreg_db/data/finding/
|
|
86
|
-
endoreg_db/data/finding/
|
|
87
|
-
endoreg_db/data/finding/
|
|
88
|
-
endoreg_db/data/
|
|
89
|
-
endoreg_db/data/finding_classification/
|
|
90
|
-
endoreg_db/data/finding_classification/
|
|
91
|
-
endoreg_db/data/finding_classification/
|
|
92
|
-
endoreg_db/data/finding_classification/
|
|
93
|
-
endoreg_db/data/finding_classification/
|
|
94
|
-
endoreg_db/data/finding_classification/
|
|
95
|
-
endoreg_db/data/
|
|
96
|
-
endoreg_db/data/
|
|
97
|
-
endoreg_db/data/
|
|
98
|
-
endoreg_db/data/
|
|
99
|
-
endoreg_db/data/
|
|
100
|
-
endoreg_db/data/
|
|
101
|
-
endoreg_db/data/
|
|
102
|
-
endoreg_db/data/
|
|
103
|
-
endoreg_db/data/
|
|
104
|
-
endoreg_db/data/
|
|
105
|
-
endoreg_db/data/
|
|
106
|
-
endoreg_db/data/
|
|
107
|
-
endoreg_db/data/
|
|
108
|
-
endoreg_db/data/
|
|
109
|
-
endoreg_db/data/
|
|
110
|
-
endoreg_db/data/
|
|
111
|
-
endoreg_db/data/
|
|
112
|
-
endoreg_db/data/
|
|
113
|
-
endoreg_db/data/
|
|
114
|
-
endoreg_db/data/
|
|
115
|
-
endoreg_db/data/
|
|
116
|
-
endoreg_db/data/
|
|
117
|
-
endoreg_db/data/
|
|
118
|
-
endoreg_db/data/
|
|
119
|
-
endoreg_db/data/finding_classification_choice/colonoscopy_not_complete_reason.yaml,sha256=dMwS6d1BrDFEgTE3U0AZh0n5L92HF38jCoxlBGmkc4Y,536
|
|
120
|
-
endoreg_db/data/finding_classification_choice/colonoscopy_size.yaml,sha256=qu74XvHjjEHUiTmoA-df_WlQYZct8lCSIVCRXajuldc,3095
|
|
121
|
-
endoreg_db/data/finding_classification_choice/colonoscopy_summary_worst_finding.yaml,sha256=7x45Fd4r4IPMgs9Wz_vO84SLfOqxEmJhEusBF24IAZ4,434
|
|
122
|
-
endoreg_db/data/finding_classification_choice/complication_generic_types.yaml,sha256=cdDSlTzXcdYABVkERXzju3_pbZjKOaljCRJdeC6mAzI,439
|
|
123
|
-
endoreg_db/data/finding_classification_choice/examination_setting_generic_types.yaml,sha256=QLrW33AJ14Dfm72ouZFDdLMhLhIs4DhyUS2MS8K0C2U,448
|
|
124
|
-
endoreg_db/data/finding_classification_choice/histology.yaml,sha256=c728BW0rmT_DFoPqgG5SNYS0q3PkmLj0eoPUQq8gr5k,815
|
|
125
|
-
endoreg_db/data/finding_classification_choice/histology_polyp.yaml,sha256=1rDjHj3Ia9RSooa04SYQ--7f8zcQGhWtgMqGH0q8cMM,777
|
|
126
|
-
endoreg_db/data/finding_classification_choice/outcome.yaml,sha256=QYdaDLqldxEGMekvx2IgBY2_BNhC1bpARtl-lsgXwdw,546
|
|
127
|
-
endoreg_db/data/finding_classification_choice/yes_no_na.yaml,sha256=1JNZa_QVeR9R6T35xNzOvRsZtdhbCM_v8pfE97Dx7V8,227
|
|
128
|
-
endoreg_db/data/finding_classification_type/colonoscopy_basic.yaml,sha256=SYLFHfsBtnI5dqbCprPn9CD-fo-mZeok-cGMBifDQjY,1106
|
|
129
|
-
endoreg_db/data/finding_intervention/endoscopy.yaml,sha256=DqRBNvNzjvLI1DbfqjDAoGfDpgHtR2zLf_Sqoy7V0KQ,1390
|
|
130
|
-
endoreg_db/data/finding_intervention/endoscopy_colonoscopy.yaml,sha256=QCNwossX_G6-DUX3Z7b6MUpOugSoBmcVwlifP0McowU,6474
|
|
131
|
-
endoreg_db/data/finding_intervention/endoscopy_egd.yaml,sha256=DaE7OmKJ0um6WRYHSCOTLPVm80zaYloFovKxeLksle0,3535
|
|
132
|
-
endoreg_db/data/finding_intervention/endoscopy_ercp.yaml,sha256=PBBKpjiLM-7Wt8VtSrGesmZ7YSJt3iXDmE2QNYLu5og,797
|
|
133
|
-
endoreg_db/data/finding_intervention/endoscopy_eus_lower.yaml,sha256=bRnTKc2DdVX2aw-gRXe5bQhppkigO6SIHdqbRygeTtQ,275
|
|
134
|
-
endoreg_db/data/finding_intervention/endoscopy_eus_upper.yaml,sha256=U2i1-XarQR6dTm5fEs0o2AWRtrtJpRSgcMjHiS_Jtxw,1163
|
|
88
|
+
endoreg_db/data/finding/00_generic.yaml,sha256=3VJvfAidV_kr-QoI_Dh0F7TNlTDu0XLnZ8Nrw_int1M,1097
|
|
89
|
+
endoreg_db/data/finding/00_generic_complication.yaml,sha256=y_c1Ed5EIOpkajg10oIAbL9ZkLzL_iSK04_condAeeY,252
|
|
90
|
+
endoreg_db/data/finding/01_gastroscopy_baseline.yaml,sha256=Ar8GtgTVMHYioPzDdXEFL4QZTH24kRsA7848Xr-tuQ0,2217
|
|
91
|
+
endoreg_db/data/finding/01_gastroscopy_observation.yaml,sha256=s4fZneFZ4wkD7ino_wlRrdPr_TjKOb5TCR67i3En0Hk,2499
|
|
92
|
+
endoreg_db/data/finding/02_colonoscopy_baseline.yaml,sha256=pslQDHdtNtMGuAXVgW2sdA51gHCNWf0DLx-ZL1sEpNU,1646
|
|
93
|
+
endoreg_db/data/finding/02_colonoscopy_hidden.yaml,sha256=0O5LCvhp6zzgxy53eJiJtOZdra62K9zLYZsuDSF12yk,2617
|
|
94
|
+
endoreg_db/data/finding/02_colonoscopy_observation.yaml,sha256=mB-de5RPjS5UuBqpxlrnJE8in8EZpKnAaPbjbqvTEoY,3952
|
|
95
|
+
endoreg_db/data/finding_classification/00_generic.yaml,sha256=8HlxMBFykbVXWcckssLxGEWMeUZknfqBGlmSnk_QsNU,1151
|
|
96
|
+
endoreg_db/data/finding_classification/00_generic_histology.yaml,sha256=Qxa11CWG6jYHdQIAo-UyPvyQMWglSRIwBlFgKCsNSqU,678
|
|
97
|
+
endoreg_db/data/finding_classification/00_generic_lesion.yaml,sha256=LD-VTenycBNMUEarTcXssKtHQaGajuBMIvg2echYphQ,1516
|
|
98
|
+
endoreg_db/data/finding_classification/02_colonoscopy_baseline.yaml,sha256=tpxf2B-nZ3OrY_gMRzg1-hrnDEE4Gu6r_KNC9UboJLA,2260
|
|
99
|
+
endoreg_db/data/finding_classification/02_colonoscopy_histology.yaml,sha256=wiJAnMHEZ62e1NATKVB3U1e8qvdCSCmclBELa-PWi-0,405
|
|
100
|
+
endoreg_db/data/finding_classification/02_colonoscopy_other.yaml,sha256=EDsZZ56gaR3eHh2dZYLRDhdaFdpz_oTaWDKEu-qme-M,311
|
|
101
|
+
endoreg_db/data/finding_classification/02_colonoscopy_polyp.yaml,sha256=HTUpaioVX_pBAhtWOOrfEbHxG9ltF29SQevuDa-LY_Y,3292
|
|
102
|
+
endoreg_db/data/finding_classification_choice/00_generic.yaml,sha256=hAsRIvF3nH_9ngejamk7K75QwCZsE3wBJSyQ22OAMus,309
|
|
103
|
+
endoreg_db/data/finding_classification_choice/00_generic_baseline.yaml,sha256=_xxqLR16O9yfCoGd-PJA7o4yqD3Jo2lKEgF5-Fyhh7o,612
|
|
104
|
+
endoreg_db/data/finding_classification_choice/00_generic_complication.yaml,sha256=zd4-zH_4W_xHhgS4FAikEvaTZ4jnM7BLHotDWyWSd_8,440
|
|
105
|
+
endoreg_db/data/finding_classification_choice/00_generic_histology.yaml,sha256=gVtTJu2cr1rQ4qvNB2mx3OnaMhDSYpqo7lEGRJC3nWc,715
|
|
106
|
+
endoreg_db/data/finding_classification_choice/00_generic_lesion.yaml,sha256=rP85msm0JMI0QQGHHE2vmFflor04nW1keK1jWAOMxCk,4641
|
|
107
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_bowel_preparation.yaml,sha256=-8Fj44SLKiabQXwhfhFNko1xeBSF2oeaetAbn7NHmHs,1172
|
|
108
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_generic.yaml,sha256=vZKsQakhy7VrqDRGvu3yKT0id-Xwf9bDesFpXVAjAJA,537
|
|
109
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_histology.yaml,sha256=6fRXcH0R7nEIsn6saYtQAr9zUW658wvGF5qDhTmdtLQ,778
|
|
110
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_location.yaml,sha256=EbmHQrf1U2de9Jk1DF7KQ2wQaAAX64MrckbZuF1e5w8,6855
|
|
111
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_other.yaml,sha256=RDTLmkMHJzExFs6tDhNAnX7JItJLBtd2ATj_JfqXOck,1044
|
|
112
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_polyp_advanced_imaging.yaml,sha256=wqpQf4ga6AIK6kijGc5ymd4zyUzletnZwOfSyNQ_hGM,1968
|
|
113
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_polyp_morphology.yaml,sha256=Pyyn5BAKEGY3mYxOtIjgr2czbgrULbyKwqSrj6ON2BE,2901
|
|
114
|
+
endoreg_db/data/finding_classification_choice/02_colonoscopy_size.yaml,sha256=GSfG0ZdU_QHzIqswR-wMr4Lya85s70zI1Zvxfsh1sbs,1098
|
|
115
|
+
endoreg_db/data/finding_classification_type/00_generic.yaml,sha256=WIMpDDFz3vZ2UQfeali9hmfngNBaDQ0NYNnP6TVnBkE,1158
|
|
116
|
+
endoreg_db/data/finding_classification_type/02_colonoscopy.yaml,sha256=LnHu7EF-VmaBKnhD0TJJqCikolrst6nSlTsnjOyBGUQ,258
|
|
117
|
+
endoreg_db/data/finding_intervention/00_generic_endoscopy.yaml,sha256=IyA7fNh2876EQ7KS9vqqfHNXLvZsC_VGIGctW0peNuI,2140
|
|
118
|
+
endoreg_db/data/finding_intervention/00_generic_endoscopy_ablation.yaml,sha256=HlQdFgnDg11m3VuD3czQa98k_eBvuIsDAoSBDlmFf0w,1549
|
|
119
|
+
endoreg_db/data/finding_intervention/00_generic_endoscopy_bleeding.yaml,sha256=zjR0lNiDfhBrhxAx6RzywTcsGF2E4kbfMFczO2h1MMg,1850
|
|
120
|
+
endoreg_db/data/finding_intervention/00_generic_endoscopy_resection.yaml,sha256=kb4RIq3PZMi0DxDygpsFiYSys6USeZBd-3SncW-Bh54,3496
|
|
121
|
+
endoreg_db/data/finding_intervention/00_generic_endoscopy_stenosis.yaml,sha256=7rw-E8_ZX2p7qaTW4-RjjRzVT4WTSV4IuPbaToebulI,495
|
|
122
|
+
endoreg_db/data/finding_intervention/00_generic_endoscopy_stent.yaml,sha256=1yYDdlXlDxdyjUzzNNVWvmVp5LfhfIqiWKrMoVjP0wo,269
|
|
123
|
+
endoreg_db/data/finding_intervention/01_gastroscopy.yaml,sha256=xWnqYvAvME1AKYjimrIrN6zNn7d7Gd-9Lzv5UbJmmJU,432
|
|
124
|
+
endoreg_db/data/finding_intervention/04_eus.yaml,sha256=Asxh4whTaJ8I2hrZGm1m32VH5m1LD9Eta2Z2V_qATKg,948
|
|
125
|
+
endoreg_db/data/finding_intervention/05_ercp.yaml,sha256=dYNB3a3RXwn3jWW9DmFTKthPECi8aD1May5KSSXuT-s,81
|
|
135
126
|
endoreg_db/data/finding_intervention_type/endoscopy.yaml,sha256=EnxIpRys8noMik2rUGQQG2zO0juZn75-k-4rVhD18ZY,319
|
|
136
|
-
endoreg_db/data/
|
|
137
|
-
endoreg_db/data/finding_type/data.yaml,sha256=ROGsNXtwc1Qq3SdRWww-t-TXVrZSoH9I5xrUzXXDedE,787
|
|
127
|
+
endoreg_db/data/finding_type/data.yaml,sha256=fOSR88HU0aW0OaW39qV4GknycUA6Q9lJO3TLAiBFn70,694
|
|
138
128
|
endoreg_db/data/gender/data.yaml,sha256=H4Y4NaPWIie2uFzaQXe-gDQeDTx2z9iB2w1-8-9dHdQ,890
|
|
139
129
|
endoreg_db/data/information_source/annotation.yaml,sha256=oFRCVh0jwsRtk0_pxkj8XEX0yKJLhR2LaPAVu3BsSPE,135
|
|
140
130
|
endoreg_db/data/information_source/data.yaml,sha256=ZJULuYMz7FzkKaC76hor6sCW_P43KoZ_ncEN0grjegk,765
|
|
@@ -187,27 +177,33 @@ endoreg_db/data/reference_product/green_endoscopy_dashboard_ReferenceProduct.yam
|
|
|
187
177
|
endoreg_db/data/report_reader_flag/rkh-histology-generic.yaml,sha256=Y9Zz02Qw-GZn3PY6p6smE_aNRNE8zENbUNUmGUenAVg,251
|
|
188
178
|
endoreg_db/data/report_reader_flag/ukw-examination-generic.yaml,sha256=1a_pvnDg-LztEyT5o13J6ukPCxx4wAQDaP0qowaRTJE,870
|
|
189
179
|
endoreg_db/data/report_reader_flag/ukw-histology-generic.yaml,sha256=q_sRCIjhFBmGMtbT_9Syl3OKXeICFrUyP0iTsFtzXAI,624
|
|
190
|
-
endoreg_db/data/requirement/
|
|
191
|
-
endoreg_db/data/requirement/
|
|
192
|
-
endoreg_db/data/requirement/
|
|
193
|
-
endoreg_db/data/requirement/
|
|
194
|
-
endoreg_db/data/requirement/
|
|
195
|
-
endoreg_db/data/requirement/
|
|
196
|
-
endoreg_db/data/requirement/
|
|
197
|
-
endoreg_db/data/requirement/
|
|
198
|
-
endoreg_db/data/requirement/
|
|
199
|
-
endoreg_db/data/requirement/
|
|
200
|
-
endoreg_db/data/requirement/
|
|
201
|
-
endoreg_db/data/requirement/
|
|
202
|
-
endoreg_db/data/requirement/
|
|
203
|
-
endoreg_db/data/requirement/
|
|
204
|
-
endoreg_db/data/
|
|
205
|
-
endoreg_db/data/
|
|
206
|
-
endoreg_db/data/requirement_operator/
|
|
207
|
-
endoreg_db/data/
|
|
180
|
+
endoreg_db/data/requirement/01_patient_data.yaml,sha256=QFxMiTyUVAXz5qjKm9KbZ9OWPyFNtbDK7w3S4CQZjlQ,3658
|
|
181
|
+
endoreg_db/data/requirement/old/colon_polyp_intervention.yaml,sha256=ziOMOBi5mrT9xHez0YVoi15jcfFR4WePCTg3MJuHJEw,1413
|
|
182
|
+
endoreg_db/data/requirement/old/colonoscopy_baseline_austria.yaml,sha256=n_5hP9xoDr7jFWLE5M53r1ar5g5Rc6WI8mm4aK11_T8,1133
|
|
183
|
+
endoreg_db/data/requirement/old/coloreg_colon_polyp.yaml,sha256=qgl4w6fhbpygNQmCu5WGA-B-H06-MupCMRc65SL0oZQ,1310
|
|
184
|
+
endoreg_db/data/requirement/old/disease_cardiovascular.yaml,sha256=5DsBiGQjcnVyEhRRqyZkjnJBqRaCUfXVW3OfkLOMLsw,2059
|
|
185
|
+
endoreg_db/data/requirement/old/disease_classification_choice_cardiovascular.yaml,sha256=10ejrlmzr53eGmTGRD2wrikuEfK3yPwxKFOgx3VshLk,1403
|
|
186
|
+
endoreg_db/data/requirement/old/disease_hepatology.yaml,sha256=DS6azOT3H-bSwghmv8fyPylHKkxN0gJ1BbVlchT2hWU,324
|
|
187
|
+
endoreg_db/data/requirement/old/disease_misc.yaml,sha256=qMvKSE1J8CPNlzCae5liQWNxDYxpERzlzHBKB6YQSp0,354
|
|
188
|
+
endoreg_db/data/requirement/old/disease_renal.yaml,sha256=1eiIMZQVt5i0dAvOEP1_1i5jvITRfeavZr62zwTPvVI,3472
|
|
189
|
+
endoreg_db/data/requirement/old/endoscopy_bleeding_risk.yaml,sha256=dhc0zqrnR6xkqrfZlb_fe-lYne2MNXaCmmagiAZhpkY,2054
|
|
190
|
+
endoreg_db/data/requirement/old/event_cardiology.yaml,sha256=7ss8PILhYtxQztmM7U61fd41tzCE7INqCE5bdDxgGXI,8574
|
|
191
|
+
endoreg_db/data/requirement/old/event_requirements.yaml,sha256=xDnJFKlQifDP0fLb3N5kbcOPocMcYUHQ_UjfRyXNDwA,5083
|
|
192
|
+
endoreg_db/data/requirement/old/finding_colon_polyp.yaml,sha256=I2rKRUij7tui6O-0dj_l-P54vYLD81V1tOdDMBJqLBU,1387
|
|
193
|
+
endoreg_db/data/requirement/old/gender.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
|
+
endoreg_db/data/requirement/old/lab_value.yaml,sha256=sCLQ-VR6bYVFp_9q1_lH6vkIDIKMj6RapNvW-eWEEl4,15081
|
|
195
|
+
endoreg_db/data/requirement/old/medication.yaml,sha256=kJLiAkiRDgSWzU7AU1BFxtkQ5-gVEdinsGLqj07Eb3Y,3500
|
|
196
|
+
endoreg_db/data/requirement_operator/new_operators.yaml,sha256=-kpo2cL8sEl90p6Ioy53NlOb9nAYMtGi7LNFZNiMVK8,1462
|
|
197
|
+
endoreg_db/data/requirement_operator/_old/age.yaml,sha256=RHQ2o3RNnSrgDKKLL1wdbwhjV0iI03sD99B-5BEePks,535
|
|
198
|
+
endoreg_db/data/requirement_operator/_old/lab_operators.yaml,sha256=0-XFEn0y_D-46f-6p6i21I2jUQFVFhsUaKA-03ORLTU,8105
|
|
199
|
+
endoreg_db/data/requirement_operator/_old/model_operators.yaml,sha256=DjePXlQ8WV974-WqjTyX4B2lLSXdo0oNUX-_22G5yH4,5368
|
|
200
|
+
endoreg_db/data/requirement_set/01_endoscopy_generic.yaml,sha256=sPTaZ9oVx8ls73tjiYpKOdUEgJhqk4JxJqXathr9-ro,2084
|
|
201
|
+
endoreg_db/data/requirement_set/01_laboratory.yaml,sha256=IMO7L2aTMnpXNunnRwyJIlDrZ67M4heMIxRp-3OqMtw,438
|
|
202
|
+
endoreg_db/data/requirement_set/02_endoscopy_bleeding_risk.yaml,sha256=yjkL22wa8_bm08EMYIoMlQ4barfIOaxILz3R8RKdxZc,1864
|
|
203
|
+
endoreg_db/data/requirement_set/90_coloreg.yaml,sha256=XoYElKXD5f03Hc_RGnsUsU_2hq0LQp6CPzxWhjhy_ug,7415
|
|
204
|
+
endoreg_db/data/requirement_set/_old_,sha256=WsKGasdo3kUVH_gm3ao9pxRbqjgcjH3dGdfeF7mlsmY,4499
|
|
208
205
|
endoreg_db/data/requirement_set/colonoscopy_austria_screening.yaml,sha256=p2KcbSgWJUVh2ZxDt_VD1Z3Tlep2xxgmiTGYvAhT1c4,2057
|
|
209
|
-
endoreg_db/data/
|
|
210
|
-
endoreg_db/data/requirement_set_type/data.yaml,sha256=lr5asqa7NwffeyCFYiwkZNhncYldQL7m10PSwklJ3_4,481
|
|
206
|
+
endoreg_db/data/requirement_set_type/data.yaml,sha256=g3IuxMZGfvRhtzT5PJguuOEkD6U9uHrcVdUlg2oPS4k,1028
|
|
211
207
|
endoreg_db/data/requirement_type/requirement_types.yaml,sha256=nL2P1ciHqgWM2NnwpwxQgTt7hsMga2neupJDIoi6VCE,4920
|
|
212
208
|
endoreg_db/data/resource/green_endoscopy_dashboard_Resource.yaml,sha256=hjmrFJn_-SbVkX9Nsa3Vo9YItUmje5aVLraKGI8BiZM,288
|
|
213
209
|
endoreg_db/data/risk/bleeding.yaml,sha256=chZuhEGeve36Y6eb-lbikJg_ox-e9m2EPcS-VhOeei4,628
|
|
@@ -216,7 +212,7 @@ endoreg_db/data/risk_type/data.yaml,sha256=jqdXnBJk3NJErmi7B162uPG78qVHd8XJOIhse
|
|
|
216
212
|
endoreg_db/data/shift/endoscopy.yaml,sha256=rRkOgbdzh2DX4Xy22KF1zivcQL8TxKbKQw50WEEUSwM,626
|
|
217
213
|
endoreg_db/data/shift/m2.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
218
214
|
endoreg_db/data/shift_type/base.yaml,sha256=p_hucxdy7deSgB2MvG81H9kxPWUQziIUvmFcE6Y3LGk,716
|
|
219
|
-
endoreg_db/data/tag/requirement_set_tags.yaml,sha256=
|
|
215
|
+
endoreg_db/data/tag/requirement_set_tags.yaml,sha256=sTpDknB2Wr8nm3EgaCSu6AEnf6CGHv6voYCcNjp9HZs,574
|
|
220
216
|
endoreg_db/data/tmp/chronic_kidney_disease.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
221
217
|
endoreg_db/data/tmp/congestive_heart_failure.yaml,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
222
218
|
endoreg_db/data/transport_route/green_endoscopy_dashboard_TransportRoute.yaml,sha256=Q7JeSHHYEOtlYsIs44XQEjWd19eZIOdUHkaTLq115ik,349
|
|
@@ -231,7 +227,7 @@ endoreg_db/data/unit/weight.yaml,sha256=o1PvHk-4GhKxstCozhDYQNMMYcTXvwmqx4hlQXO2
|
|
|
231
227
|
endoreg_db/data/waste/data.yaml,sha256=A8dUOdzsxhICHViXmbcLtOmtqkBX_CkZaRNo-ePAyEA,245
|
|
232
228
|
endoreg_db/factories/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
233
229
|
endoreg_db/forms/__init__.py,sha256=H2bgLGusm3FLbSTN8cjYcJPaABJL1L5ee9dOTTGRrwU,130
|
|
234
|
-
endoreg_db/forms/examination_form.py,sha256=
|
|
230
|
+
endoreg_db/forms/examination_form.py,sha256=tmAzDSy_s5mun3rfBatEag06_YpOq_MuhDHOmNobH6E,389
|
|
235
231
|
endoreg_db/forms/patient_finding_intervention_form.py,sha256=RztLQpz3-hkON1ppudXuQZHbtq4-_oY_tk-zD9RtoaQ,1083
|
|
236
232
|
endoreg_db/forms/patient_form.py,sha256=auoeGlMWNiIWAdsE9jRzGGcvEtmssXpsVMFte11YsmM,709
|
|
237
233
|
endoreg_db/forms/unit.py,sha256=rywaSXT6E18RwPdGXhDr94Q9_lP-fauY1XAPhj0D7Dc,116
|
|
@@ -240,63 +236,88 @@ endoreg_db/forms/questionnaires/tto_questionnaire.py,sha256=4QVcMONQIKDYRTbMw-9q
|
|
|
240
236
|
endoreg_db/forms/settings/__init__.py,sha256=xKCYyRS1tEAWsm5C9OrG0Btqgitzuh_s31Oa_W6Os0I,259
|
|
241
237
|
endoreg_db/helpers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
242
238
|
endoreg_db/helpers/count_db.py,sha256=IkdgvDPM5xq7DgFn8Bp1rgpXOtmLzPfLpZy-5cFTEPg,1951
|
|
243
|
-
endoreg_db/helpers/data_loader.py,sha256=
|
|
244
|
-
endoreg_db/helpers/default_objects.py,sha256=
|
|
239
|
+
endoreg_db/helpers/data_loader.py,sha256=gAnfAemBrJFWtGFbmB-2P9mhuPmLybIp76vyTZDH8W4,6586
|
|
240
|
+
endoreg_db/helpers/default_objects.py,sha256=pdjexvBrdHGPNj6U2iIzVR738_VDT8NhOb4l8Troyq0,14143
|
|
245
241
|
endoreg_db/helpers/download_segmentation_model.py,sha256=VZ8BU7QkYpZkr8kpkUrnuvDBkirmLhuf2rHC2jRBILM,1053
|
|
246
242
|
endoreg_db/helpers/interact.py,sha256=EAiUP_5CXCauKcYYEoUo-Ot3FqE5n1Rm4UX6mkC06IY,174
|
|
247
243
|
endoreg_db/helpers/test_video_helper.py,sha256=4iIjH3Xe-5krhLffQLJO16XtxKJpM9wplpWUocmwWeg,4695
|
|
244
|
+
endoreg_db/import_files/__init__.py,sha256=UZ258NRGtUIL2kwtr4enrdwjbI0QWBWnEgqZA-hkFAc,849
|
|
245
|
+
endoreg_db/import_files/import_service.md,sha256=TjFL7XfhryOIJbrbCtQSk8-iMUgR5TqcftxDdimvVmU,1769
|
|
246
|
+
endoreg_db/import_files/report_import_service.py,sha256=1VlCdeNzHCwKpAqd-EcnAhSa1qZIWPuCA65AxyiIQ-M,5208
|
|
247
|
+
endoreg_db/import_files/video_import_service.py,sha256=w0jcf41P82k62vwAK3D1fpSRfcJ6C14tHTpFsJ-Ot-A,5521
|
|
248
|
+
endoreg_db/import_files/context/__init__.py,sha256=1bEDek9TGDdK1vRlZ7YeZEhDGa0uybPiiWx4f0eHfvQ,127
|
|
249
|
+
endoreg_db/import_files/context/default_sensitive_meta.py,sha256=5DILDr6l03GlQrnuS_h3gxCqq_Evx2uLMsnCCGnJKds,2835
|
|
250
|
+
endoreg_db/import_files/context/ensure_center.py,sha256=-TktK-QVR4DX6oGl0Y_67NvTwMeUxVMM4bEOj0fd6wI,591
|
|
251
|
+
endoreg_db/import_files/context/file_lock.py,sha256=SR3b1ZvCDR4T59lJgpNDX6wQGRy_ZmUsCrsqScwFIDw,1960
|
|
252
|
+
endoreg_db/import_files/context/import_context.py,sha256=mTSJqRO4ycy9PzZAeKMJohyKq1M5Soq85WUpak3t3Vg,1233
|
|
253
|
+
endoreg_db/import_files/context/validate_directories.py,sha256=vrbscCX8g44YPq1283ioTktlDT6D-cK3Z38_R9WXObQ,1344
|
|
254
|
+
endoreg_db/import_files/file_storage/__init__.py,sha256=3YkOalkE6R5Y84dPOzhjJuGqUkFDA9K0iGa_Pqzjp9I,313
|
|
255
|
+
endoreg_db/import_files/file_storage/create_report_file.py,sha256=u4nq-FrnhEnrnIyHuPk1ShTwSDxcq8vlikqFJCMdYkQ,2666
|
|
256
|
+
endoreg_db/import_files/file_storage/create_video_file.py,sha256=OkSJGGdwlUvuM57EXQb4pNo8CuC8UanK_Y9E9jmJtB0,2562
|
|
257
|
+
endoreg_db/import_files/file_storage/sensitive_meta_storage.py,sha256=1fHENzURgBgqEbAa_xMupS93CbIQj4AC4WUBurzQxjA,1452
|
|
258
|
+
endoreg_db/import_files/file_storage/state_management.py,sha256=kl8j27UuI8v0VL9ywE6EMcAjsdyfnhUiKx5LTfvRJDI,13939
|
|
259
|
+
endoreg_db/import_files/file_storage/storage.py,sha256=ITntL7AyXAovTgE1mtURgZRRBwUTIj2obrho3R-PBxg,1084
|
|
260
|
+
endoreg_db/import_files/processing/__init__.py,sha256=p4R0j6aC28TNFeboyum2R9pF9P98nvMk-CQsy_0yWtA,220
|
|
261
|
+
endoreg_db/import_files/processing/sensitive_meta_adapter.py,sha256=BXoiIxfSqKzze_ss6opEaW_C9TnKzwZkeyS-jJl8e_8,1768
|
|
262
|
+
endoreg_db/import_files/processing/report_processing/report_anonymization.py,sha256=CBJbJ0AEVLuRg27CddN2yhaX53OTZkEBJO2E9lqyukY,3469
|
|
263
|
+
endoreg_db/import_files/processing/video_processing/video_anonymization.py,sha256=POOkFSXD5rDc8eiYXnxSneXrksRVZmvQemPS4PJLF-0,4116
|
|
264
|
+
endoreg_db/import_files/processing/video_processing/video_cleanup_on_error.py,sha256=tUGjGokoM-__gY-qXpTyRgP5ObSmAmdnsyQz9by2KME,4567
|
|
265
|
+
endoreg_db/import_files/pseudonymization/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
266
|
+
endoreg_db/import_files/pseudonymization/fake.py,sha256=UAObfuNT4YrUHZX8E53RLp7D3X3bpDs6f0UdoKh-8gE,1347
|
|
267
|
+
endoreg_db/import_files/pseudonymization/k_anonymity.py,sha256=59d82ljv7cUmTVSA0jK0i_yov2l2yaqkpLPhZQnjGXk,5595
|
|
268
|
+
endoreg_db/import_files/pseudonymization/k_pseudonymity.py,sha256=kEkpPCF3TFSvuHj0ZYySB2pDj_svHVzRzjdJWgZLSgg,4171
|
|
269
|
+
endoreg_db/import_files/pseudonymization/pseudonymize.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
248
270
|
endoreg_db/management/__init__.py,sha256=3dsK9Mizq1veuWTcvSOyWMFT9VI8wtyk-P2K9Ri7liY,29
|
|
249
271
|
endoreg_db/management/commands/__init__.py,sha256=Ch0jwQfNpOSr4O5KKMfYJ93dsesk1Afb-JtbRVyFXZs,21
|
|
250
272
|
endoreg_db/management/commands/anonymize_video.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
273
|
endoreg_db/management/commands/check_auth.py,sha256=TPiYeCZ5QcqIvR33xhbqXunO2nrcNAmHb_izoMTqgpg,5390
|
|
252
|
-
endoreg_db/management/commands/create_model_meta_from_huggingface.py,sha256=
|
|
253
|
-
endoreg_db/management/commands/create_multilabel_model_meta.py,sha256=
|
|
274
|
+
endoreg_db/management/commands/create_model_meta_from_huggingface.py,sha256=jdu6ZNZIdxNqtrm6Q1wb0eIOtFZ4NsZ8tWCL03fpjEw,4502
|
|
275
|
+
endoreg_db/management/commands/create_multilabel_model_meta.py,sha256=EsF3ygtdLgAuHHVJh0x7La9TF-ZaihDe-t8wQzACx78,14857
|
|
254
276
|
endoreg_db/management/commands/fix_missing_patient_data.py,sha256=5TPUTOQwI2fVh3Zd88o4ne0R8N_V98k0GZsI1gW0kGM,7766
|
|
255
277
|
endoreg_db/management/commands/fix_video_paths.py,sha256=7LLwc38oX3B_tYWbLJA43Li_KBO3m5Lyw0CF6YqN5rU,7145
|
|
256
278
|
endoreg_db/management/commands/import_fallback_video.py,sha256=PhSBqyHevGgOZieZsj3NBfPJ656wqEkdCWrp2NSb538,9590
|
|
257
|
-
endoreg_db/management/commands/import_report.py,sha256=
|
|
258
|
-
endoreg_db/management/commands/import_video.py,sha256=
|
|
259
|
-
endoreg_db/management/commands/import_video_with_classification.py,sha256=
|
|
260
|
-
endoreg_db/management/commands/
|
|
261
|
-
endoreg_db/management/commands/load_ai_model_data.py,sha256=
|
|
262
|
-
endoreg_db/management/commands/load_ai_model_label_data.py,sha256=
|
|
263
|
-
endoreg_db/management/commands/load_base_db_data.py,sha256=
|
|
264
|
-
endoreg_db/management/commands/load_center_data.py,sha256=
|
|
265
|
-
endoreg_db/management/commands/load_contraindication_data.py,sha256=
|
|
266
|
-
endoreg_db/management/commands/load_disease_classification_choices_data.py,sha256=
|
|
267
|
-
endoreg_db/management/commands/load_disease_classification_data.py,sha256=
|
|
268
|
-
endoreg_db/management/commands/load_disease_data.py,sha256=
|
|
279
|
+
endoreg_db/management/commands/import_report.py,sha256=qJjn5roJmOw4-dLfN0Pb-esTwTTC-C2NBLcag8Cxmo0,14450
|
|
280
|
+
endoreg_db/management/commands/import_video.py,sha256=OBwL4xnYATfLz6tJXGpp8FMjhYkjHubGqwvfnX8kO5I,17856
|
|
281
|
+
endoreg_db/management/commands/import_video_with_classification.py,sha256=qPMOZTVFVKFSFBi3Wyc5f7JSYSDDZYWWMcG9RmUN45E,14728
|
|
282
|
+
endoreg_db/management/commands/list_routes.py,sha256=7u1P5CbLZXolRfegSPj3sPt_7IWoQJBf_Sc-pr-IrHs,622
|
|
283
|
+
endoreg_db/management/commands/load_ai_model_data.py,sha256=9CWiHQ5fs6zWZCIvfRn3qTmvQXBb_IQwEXBln0sN-gc,2806
|
|
284
|
+
endoreg_db/management/commands/load_ai_model_label_data.py,sha256=eBl9xoOhh41CeRtxGxS8jHHh2U8U6mg12i_Domc_wv4,2062
|
|
285
|
+
endoreg_db/management/commands/load_base_db_data.py,sha256=PzVrHQpfm5Fs-nEd1sXNpe-UcOGFODQlXCz_-jVTows,2874
|
|
286
|
+
endoreg_db/management/commands/load_center_data.py,sha256=q3yAQwqTMM8-oEHtLqRpuoYojm6v-el2LMBJVa007Mo,2426
|
|
287
|
+
endoreg_db/management/commands/load_contraindication_data.py,sha256=TBmeT4hUTEwx3ArzRl3eik6JM6pvj4j_dGH4Y_BTTE0,1167
|
|
288
|
+
endoreg_db/management/commands/load_disease_classification_choices_data.py,sha256=ZsrLWKbb-M1rQggsGG3EeAwKlc7X7V54afrBx-b4hgY,1271
|
|
289
|
+
endoreg_db/management/commands/load_disease_classification_data.py,sha256=ap41QQsDzd7XON-8y33OAdzo4gZoPbuCsvMTD_YkcYk,1215
|
|
290
|
+
endoreg_db/management/commands/load_disease_data.py,sha256=ymCiRh3HWNcYkc5PcBDG2GFQcNMtAtNjpRHxKtwA7zk,1985
|
|
269
291
|
endoreg_db/management/commands/load_distribution_data.py,sha256=d0KpJF9E519PsJvGJk6Lcxr4ZGMLCtw0WuvTaiJhO7E,2059
|
|
270
|
-
endoreg_db/management/commands/load_endoscope_data.py,sha256=
|
|
271
|
-
endoreg_db/management/commands/load_event_data.py,sha256=
|
|
272
|
-
endoreg_db/management/commands/load_examination_data.py,sha256=
|
|
273
|
-
endoreg_db/management/commands/load_examination_indication_data.py,sha256=
|
|
274
|
-
endoreg_db/management/commands/load_finding_data.py,sha256=
|
|
292
|
+
endoreg_db/management/commands/load_endoscope_data.py,sha256=DuRmUTiwdonQwBvR9tm0wVa3DJKc_3HKEJW9V3nVCys,1858
|
|
293
|
+
endoreg_db/management/commands/load_event_data.py,sha256=J4tzN7v2v0LU3qxjMIyNMYqYxKDFpP0TuOtsnw6oOWw,1134
|
|
294
|
+
endoreg_db/management/commands/load_examination_data.py,sha256=sHqscCjSnikJOzJTrmz0J9yRAnk6T5Tnt_P-QJwk9jU,2023
|
|
295
|
+
endoreg_db/management/commands/load_examination_indication_data.py,sha256=7I25p1_UEeePTVuJYnU_6xgNbP3vXSKPp1uxB9yT7Lk,2904
|
|
296
|
+
endoreg_db/management/commands/load_finding_data.py,sha256=x-95TFDwy2tZQvJOyJlSzvAhd7NM77CFPDh5OvgpNQg,3234
|
|
275
297
|
endoreg_db/management/commands/load_gender_data.py,sha256=skg1EcE5EIYAVDO-jNx8qjmJNaFXaOaqILgmJ6j6CLY,1137
|
|
276
298
|
endoreg_db/management/commands/load_green_endoscopy_wuerzburg_data.py,sha256=o-TmBaR1fpGg3pe3cukrbtZo36cdLKle22WUCn5IcKY,3950
|
|
277
|
-
endoreg_db/management/commands/load_information_source.py,sha256=
|
|
278
|
-
endoreg_db/management/commands/load_lab_value_data.py,sha256=
|
|
279
|
-
endoreg_db/management/commands/load_medication_data.py,sha256=
|
|
299
|
+
endoreg_db/management/commands/load_information_source.py,sha256=3APuqi-ElPMAIXAL0gXUPw_-MZcA-WjRyLsp4jauby8,1684
|
|
300
|
+
endoreg_db/management/commands/load_lab_value_data.py,sha256=mzHZbQSkcT3a75pkDrcMZRUTCK-489gVrAnbQFDbO1s,1546
|
|
301
|
+
endoreg_db/management/commands/load_medication_data.py,sha256=jAQxysM8sKhQmGCVEP7VGm4vrvaxkemeEGQgqGhJpiU,3308
|
|
280
302
|
endoreg_db/management/commands/load_name_data.py,sha256=OxPYEC4uAiyv7iP8KTtTBwUO4qPHn9oq68pE7hs6ppo,1320
|
|
281
|
-
endoreg_db/management/commands/load_organ_data.py,sha256=
|
|
282
|
-
endoreg_db/management/commands/load_pdf_type_data.py,sha256=
|
|
283
|
-
endoreg_db/management/commands/load_profession_data.py,sha256=
|
|
284
|
-
endoreg_db/management/commands/load_qualification_data.py,sha256=
|
|
285
|
-
endoreg_db/management/commands/load_report_reader_flag_data.py,sha256=
|
|
286
|
-
endoreg_db/management/commands/load_requirement_data.py,sha256=
|
|
287
|
-
endoreg_db/management/commands/
|
|
288
|
-
endoreg_db/management/commands/
|
|
289
|
-
endoreg_db/management/commands/
|
|
290
|
-
endoreg_db/management/commands/
|
|
303
|
+
endoreg_db/management/commands/load_organ_data.py,sha256=Ybrbo3CBh_AMWdR9sooqdqaneH6SdNgBjtXsssNvZSQ,1127
|
|
304
|
+
endoreg_db/management/commands/load_pdf_type_data.py,sha256=YEa4PdmYhq4V8saMDdzhE14nHgxJFhNoJXDWQI_mt3I,1775
|
|
305
|
+
endoreg_db/management/commands/load_profession_data.py,sha256=Wlppyp1R6PH5DyeFv1vdVhPw_zjEhoyh0887ULvP9k4,1232
|
|
306
|
+
endoreg_db/management/commands/load_qualification_data.py,sha256=3E7B2gkDlLWlqYvH37MqbVDQRtC2g7dT11WNQB5qmOU,1922
|
|
307
|
+
endoreg_db/management/commands/load_report_reader_flag_data.py,sha256=385RDOKE4IIdaHQumwpDSsXIBZjEozud_HVJTO2T7mY,1283
|
|
308
|
+
endoreg_db/management/commands/load_requirement_data.py,sha256=lknv1jKyPin1A2OZCsCtpI85LO_Bul46tKUC8JSoknE,6862
|
|
309
|
+
endoreg_db/management/commands/load_requirement_set_tags.py,sha256=zi8GN-zz8lzfzHv5u9u2D6a6HSprZbBZ_vcwAGPuNhI,3318
|
|
310
|
+
endoreg_db/management/commands/load_risk_data.py,sha256=Gy45jchE0DATm_EiQbUdCOR1FKKfs4DbTVwvJ2xKffQ,2045
|
|
311
|
+
endoreg_db/management/commands/load_shift_data.py,sha256=1lda_LKzDMmf7o6JnyYf3sOWSMWrgn5-Drfa9uUnzN4,1951
|
|
312
|
+
endoreg_db/management/commands/load_tag_data.py,sha256=StnPy1oxFXVumckGyUVogZ_eLzdM29_lUvqh2UxD7w0,1877
|
|
313
|
+
endoreg_db/management/commands/load_unit_data.py,sha256=C4R7SiEvjVCrkNbeMjGvwio-KCu1N7K9eaYpL-zAaeY,1231
|
|
291
314
|
endoreg_db/management/commands/load_user_groups.py,sha256=D7SK2FvZEHoE4TIXNGCjDw5_12MH9bpGZvoS7eEv0Os,1031
|
|
292
315
|
endoreg_db/management/commands/register_ai_model.py,sha256=KixTfuQR6TUfRmzB5GOos16BFOz7NL4TzLzBkgtPPgE,2510
|
|
293
|
-
endoreg_db/management/commands/
|
|
294
|
-
endoreg_db/management/commands/
|
|
295
|
-
endoreg_db/management/commands/
|
|
296
|
-
endoreg_db/management/commands/storage_management.py,sha256=NpToX59ndwTFNmnSoeppmiPdMvpjSHH7mAdIe4SvUoI,22396
|
|
316
|
+
endoreg_db/management/commands/setup_endoreg_db.py,sha256=TDrH_2xmE-XLUAeVahxGPtyQtFXZ07eyUWxDE3spEtg,17888
|
|
317
|
+
endoreg_db/management/commands/start_filewatcher.py,sha256=Qd2s1kRHvLSiO3CoDjYgD2yb16zCPjtDfQd8e63VXXQ,4090
|
|
318
|
+
endoreg_db/management/commands/storage_management.py,sha256=f7d3vEw069TomZhoHgOuydbDyqOHZiRXpx_HdEqjJTc,22337
|
|
297
319
|
endoreg_db/management/commands/summarize_db_content.py,sha256=pOIz3qbY4Ktmh0zV_DKFx971VD0pPx027gCD7a47EL0,10766
|
|
298
|
-
endoreg_db/management/commands/
|
|
299
|
-
endoreg_db/management/commands/validate_video_files.py,sha256=0lvA0Z8BKiibjyqc4ueI646IIc5bKI3sIOxiiF5_bTk,6509
|
|
320
|
+
endoreg_db/management/commands/validate_video_files.py,sha256=zB_PPVXyAqxgFblXMMWJAqc0ghs6BYvr8pB29KohL_M,6397
|
|
300
321
|
endoreg_db/management/commands/video_validation.py,sha256=xnAoCPB44dmnRbn6FqUjqRXQ-ZhDPNX1T5kCpAU8sgc,771
|
|
301
322
|
endoreg_db/mermaid/Overall_flow_patient_finding_intervention.md,sha256=qNOXAn04flFW1m3a4hN3Bb1Vd7121Wo-sZ6MeaR0Lqo,399
|
|
302
323
|
endoreg_db/mermaid/anonymized_image_annotation.md,sha256=F0MIJB2Jsj38M1bu8-0d8wWPpb53rrp28RCGTsH3VJ4,744
|
|
@@ -309,222 +330,216 @@ endoreg_db/mermaid/interventions.md,sha256=jWFB5fHr-bbOplk91VdPrSrS24EUZQKl8gQi_
|
|
|
309
330
|
endoreg_db/mermaid/morphology.md,sha256=9_--hWVwXW1UB1E9od9yddyUFJonm3eCGr986nwpQpY,360
|
|
310
331
|
endoreg_db/mermaid/patient_creation.md,sha256=P0U50Pejxn_AATzHTJ3U9iydoEVSnpRjGEUOTRNJrGs,384
|
|
311
332
|
endoreg_db/mermaid/video_segmentation_annotation.md,sha256=oouo5htDabP8m-W86C6aWXyIxi1A7zAoPqa3o5xr354,536
|
|
312
|
-
endoreg_db/migrations/0001_initial.py,sha256=
|
|
313
|
-
endoreg_db/
|
|
314
|
-
endoreg_db/
|
|
315
|
-
endoreg_db/
|
|
316
|
-
endoreg_db/models/__init__.py,sha256=
|
|
317
|
-
endoreg_db/models/upload_job.py,sha256=lSsyv2d5jZxI8jAKlBU7dXi4jhEIKYjJKt8gZlwRz94,3000
|
|
318
|
-
endoreg_db/models/utils.py,sha256=G2W-QzPEKLDqbBuE4Z0srlkUageW0ZRuIIF8sQCXp2w,4451
|
|
319
|
-
endoreg_db/models/administration/__init__.py,sha256=T1dgcMsnYlz6peK7ThskJF6EFigw12lYZie34t301yw,1717
|
|
333
|
+
endoreg_db/migrations/0001_initial.py,sha256=nhv_mB0U8cXlGgTF16sMtF4nr6NMmnq9Qn0eplvPOfc,123647
|
|
334
|
+
endoreg_db/models/__init__.py,sha256=sVRsrTj4AHjUinFOGjIUtliXzMd5u_IfnS7JWO4FN74,6567
|
|
335
|
+
endoreg_db/models/upload_job.py,sha256=jWG-FuKp9yllUKrw86C-jPQyhaaLxib-V-i5TTWvKvw,3089
|
|
336
|
+
endoreg_db/models/utils.py,sha256=mA-lBrwOrhQOZ1EojIquDDLUH2FoH3ZUg9B7i9U9nLw,4420
|
|
337
|
+
endoreg_db/models/administration/__init__.py,sha256=BSWkeFPLgtNhUw428Qr5jesv_UlEuoZuPCma3GYmi8c,1443
|
|
320
338
|
endoreg_db/models/administration/ai/__init__.py,sha256=AYnrzvWkLYsySnlryfZ35_wgJ5egIdIpgmxW3DzO4OY,168
|
|
321
|
-
endoreg_db/models/administration/ai/active_model.py,sha256=
|
|
322
|
-
endoreg_db/models/administration/ai/ai_model.py,sha256
|
|
339
|
+
endoreg_db/models/administration/ai/active_model.py,sha256=_bV0yCq3lgJhP0IZmRSoJff8GCOz6qkO7ut_Px2KzGY,1438
|
|
340
|
+
endoreg_db/models/administration/ai/ai_model.py,sha256=fEIZfJrs5P1Ps4-hZIbxrW5Emea50BfcIRKwct0KsnY,5503
|
|
323
341
|
endoreg_db/models/administration/ai/model_type.py,sha256=yLwiKI1k_u5ofzd9cx1pxf6xU5tFPJYvKDetaWqV-vQ,1019
|
|
324
|
-
endoreg_db/models/administration/case/__init__.py,sha256=
|
|
325
|
-
endoreg_db/models/administration/case/case.py,sha256
|
|
326
|
-
endoreg_db/models/administration/case/case_template/__init__.py,sha256=
|
|
327
|
-
endoreg_db/models/administration/case/case_template/case_template.py,sha256
|
|
328
|
-
endoreg_db/models/administration/case/case_template/case_template_rule.py,sha256=
|
|
329
|
-
endoreg_db/models/administration/case/case_template/case_template_rule_value.py,sha256=
|
|
330
|
-
endoreg_db/models/administration/case/case_template/case_template_type.py,sha256=
|
|
342
|
+
endoreg_db/models/administration/case/__init__.py,sha256=kW78tWrVItXRiT0R7O8Y5TtRGjyZHVDACPddPrh8rzQ,50
|
|
343
|
+
endoreg_db/models/administration/case/case.py,sha256=CzG0RDW1C_mAVbUmxxqU3d9xehUJkwb4k2scxyHM0lk,3893
|
|
344
|
+
endoreg_db/models/administration/case/case_template/__init__.py,sha256=q2L2GY4ICLrMWxOf1D0-OzRcxSBce49ZhPmfJLhVwSU,102
|
|
345
|
+
endoreg_db/models/administration/case/case_template/case_template.py,sha256=-xxGHkYxxD85RNWiSv6uCC_LJ23oJ2MMFpxgfyyZbpk,82
|
|
346
|
+
endoreg_db/models/administration/case/case_template/case_template_rule.py,sha256=SuIGUeuk9FUFwm2-3Ks5hu7IwNZWuBEYv2VuCr-s_9o,87
|
|
347
|
+
endoreg_db/models/administration/case/case_template/case_template_rule_value.py,sha256=aHtbK_3X_8AbOxujERZPGAgRhWa3AwjjwAWMBb5Wqdk,93
|
|
348
|
+
endoreg_db/models/administration/case/case_template/case_template_type.py,sha256=myF4XwtS-eovCTOxlB8JOMJ5MwkEnPCYgoCiODc89iY,85
|
|
331
349
|
endoreg_db/models/administration/center/__init__.py,sha256=VQj0PFNjzY_nwRlvOHnrA0Agle2YFCbRX0yrDeBHawY,299
|
|
332
|
-
endoreg_db/models/administration/center/center.py,sha256=
|
|
333
|
-
endoreg_db/models/administration/center/center_product.py,sha256=
|
|
334
|
-
endoreg_db/models/administration/center/center_resource.py,sha256=
|
|
335
|
-
endoreg_db/models/administration/center/center_shift.py,sha256=
|
|
336
|
-
endoreg_db/models/administration/center/center_waste.py,sha256=
|
|
337
|
-
endoreg_db/models/administration/
|
|
338
|
-
endoreg_db/models/administration/person/
|
|
339
|
-
endoreg_db/models/administration/person/person.py,sha256=qZq-pXgRV-OuZ_9S-TAnT2bf085JOU3RiThyH2nQUAw,1015
|
|
350
|
+
endoreg_db/models/administration/center/center.py,sha256=tVg7AdwpB0hpgAwwhWjJzf8W4VxfegPxlWe6XKt1kks,2469
|
|
351
|
+
endoreg_db/models/administration/center/center_product.py,sha256=wlA_IQLaWMMp6pb3T3ZgzDlsrKSRZoVQ3cnEvshoUME,1923
|
|
352
|
+
endoreg_db/models/administration/center/center_resource.py,sha256=YZndCH-OS4gb21W51lLUAOui4z7hGzijx18kW1-EzV0,2223
|
|
353
|
+
endoreg_db/models/administration/center/center_shift.py,sha256=BQhwl-t2zZdercmvL3OylIQA4P_jn-KIbs9DJZbzPaI,2532
|
|
354
|
+
endoreg_db/models/administration/center/center_waste.py,sha256=eRa9BeGqebgL2pehy4AJv4Iy_KhPGJy7PArHexdDVmI,1361
|
|
355
|
+
endoreg_db/models/administration/person/__init__.py,sha256=VgBRzQQWFnyeyxvFN1foJhCLHkbT3H8X9ynEhRiRTF8,580
|
|
356
|
+
endoreg_db/models/administration/person/person.py,sha256=siQ9GnVBwC1z15jDjID2U7Pvz7oX73VqUi-vHhk1kq0,1223
|
|
340
357
|
endoreg_db/models/administration/person/employee/__init__.py,sha256=26r9d28FSuz4TM66eZiXIao_QG1e-KxGTM6GutE991I,128
|
|
341
|
-
endoreg_db/models/administration/person/employee/employee.py,sha256=
|
|
342
|
-
endoreg_db/models/administration/person/employee/employee_qualification.py,sha256=
|
|
343
|
-
endoreg_db/models/administration/person/employee/employee_type.py,sha256=
|
|
358
|
+
endoreg_db/models/administration/person/employee/employee.py,sha256=l5W43nDzNWHZq1wwTu9hcb1JW4nccc_ThnedmVSByEQ,1098
|
|
359
|
+
endoreg_db/models/administration/person/employee/employee_qualification.py,sha256=vTdhhosmfiULHbApfHHjHioJnmuMbQMW8kycZVkPOk0,1391
|
|
360
|
+
endoreg_db/models/administration/person/employee/employee_type.py,sha256=w68t-CCpU5X0cRJysubBda59OqUBgtijtlZkpSucAXo,1234
|
|
344
361
|
endoreg_db/models/administration/person/examiner/__init__.py,sha256=F1X50yY_vCwVKpzJZ-GE-kBSIFJha5DIQkPtjZU37P0,55
|
|
345
|
-
endoreg_db/models/administration/person/examiner/examiner.py,sha256=
|
|
362
|
+
endoreg_db/models/administration/person/examiner/examiner.py,sha256=pxIP-Np9DhccuzgRMFyUUAJDUwYeYohzHJVgIMPC_yk,1715
|
|
346
363
|
endoreg_db/models/administration/person/names/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
347
364
|
endoreg_db/models/administration/person/names/first_name.py,sha256=AC9mq42IS1e2pifrBVbCzzvwnfdrctvkvIiFWYiij8Y,461
|
|
348
365
|
endoreg_db/models/administration/person/names/last_name.py,sha256=Oz090ghvAWf6TY9Ao668tPn0If9Z7me5xgq0FgryGtM,436
|
|
349
|
-
endoreg_db/models/administration/person/patient/__init__.py,sha256=
|
|
350
|
-
endoreg_db/models/administration/person/patient/patient.py,sha256=
|
|
351
|
-
endoreg_db/models/administration/person/
|
|
366
|
+
endoreg_db/models/administration/person/patient/__init__.py,sha256=uC88MwLpy3sPYWyBlE2_cGkT8BcDRr77N3GdK9fxDmc,134
|
|
367
|
+
endoreg_db/models/administration/person/patient/patient.py,sha256=7helgwts7Lb5hWWs2igaEHuQO7IqugykEycrBE8QOYA,17494
|
|
368
|
+
endoreg_db/models/administration/person/patient/patient_external_id.py,sha256=n31IzLCHCgJg1s6aKeWFG6-8sNNIv-VVt3mo6vXfi-8,921
|
|
369
|
+
endoreg_db/models/administration/person/profession/__init__.py,sha256=wxqhS38cCLJq3U2JY3_gmseiMHoKeF9pbJAO18nyapM,684
|
|
352
370
|
endoreg_db/models/administration/person/user/__init__.py,sha256=vUgDOU5hTkszcLMBPWBGF_feLdoCHgVW6HW4y232kIs,89
|
|
353
|
-
endoreg_db/models/administration/person/user/portal_user_information.py,sha256=
|
|
371
|
+
endoreg_db/models/administration/person/user/portal_user_information.py,sha256=O4JTHVPE93UWGP2F7FihfLE3F3i7HDl5qGU5Nm1X-Xg,1071
|
|
354
372
|
endoreg_db/models/administration/product/__init__.py,sha256=3D1mlTuB0PkcvAqIC8dzq0jefoLeggLy9ewKhRFBQhc,355
|
|
355
|
-
endoreg_db/models/administration/product/product.py,sha256=
|
|
373
|
+
endoreg_db/models/administration/product/product.py,sha256=4APMxr68CgY_ZYx0Zns-ISjbF0MLkRu6jW8W3xbfrDA,4063
|
|
356
374
|
endoreg_db/models/administration/product/product_group.py,sha256=ITlBcc5KUr6VC__KOFdODOniVaHRV4t2owaG2dfgOMk,996
|
|
357
|
-
endoreg_db/models/administration/product/product_material.py,sha256=
|
|
358
|
-
endoreg_db/models/administration/product/product_weight.py,sha256=
|
|
359
|
-
endoreg_db/models/administration/product/reference_product.py,sha256=
|
|
375
|
+
endoreg_db/models/administration/product/product_material.py,sha256=mNY8dcwufvBMTF_tb0KvJ1dSSBvWvwC5noRN-6RAWRg,1892
|
|
376
|
+
endoreg_db/models/administration/product/product_weight.py,sha256=orAoQAKQgt8GXB2Ci3oF-Ozj8YIKthBASAU_-1qhHD4,1615
|
|
377
|
+
endoreg_db/models/administration/product/reference_product.py,sha256=CY4qoKXax8X2roNRy4vCv0eJNeLtLrydXueuP_a6loY,4637
|
|
360
378
|
endoreg_db/models/administration/qualification/__init__.py,sha256=HQq1CKpgFLT_6MhkpuD4SinIw-pAD39VGVmA3PxXaiw,152
|
|
361
|
-
endoreg_db/models/administration/qualification/qualification.py,sha256=
|
|
362
|
-
endoreg_db/models/administration/qualification/qualification_type.py,sha256=
|
|
379
|
+
endoreg_db/models/administration/qualification/qualification.py,sha256=lfCNSt_8YKXan1yJntvDBdGIf_4rjns6GxnC2yGc6_s,1103
|
|
380
|
+
endoreg_db/models/administration/qualification/qualification_type.py,sha256=daQ6qLJA0fflBsOXq-IxlXXQZTANd4cZmLxe8820iC4,986
|
|
363
381
|
endoreg_db/models/administration/shift/__init__.py,sha256=-YDYCWFwpEJllbvQ18i2rIkf4KNRkSXlUfNiZ3EAeNM,167
|
|
364
|
-
endoreg_db/models/administration/shift/scheduled_days.py,sha256=
|
|
365
|
-
endoreg_db/models/administration/shift/shift.py,sha256=
|
|
366
|
-
endoreg_db/models/administration/shift/shift_type.py,sha256=
|
|
367
|
-
endoreg_db/models/label/__init__.py,sha256=
|
|
368
|
-
endoreg_db/models/label/label.py,sha256=
|
|
369
|
-
endoreg_db/models/label/label_set.py,sha256=
|
|
370
|
-
endoreg_db/models/label/label_type.py,sha256=
|
|
371
|
-
endoreg_db/models/label/video_segmentation_label.py,sha256=
|
|
372
|
-
endoreg_db/models/label/video_segmentation_labelset.py,sha256=
|
|
382
|
+
endoreg_db/models/administration/shift/scheduled_days.py,sha256=h5cUQY4g6Wn-R5KBFsC9ZKi4hPkYLeb6WtNYbMkTJV0,1579
|
|
383
|
+
endoreg_db/models/administration/shift/shift.py,sha256=Fc5VAqbw53n8FNj8eLPvzszMEbt4Ak8ve-arMFMyGK4,1384
|
|
384
|
+
endoreg_db/models/administration/shift/shift_type.py,sha256=XP7C3nXlVGvDOyA7sq-a5E8SFdjFxCB5YbdtZfhE-20,3169
|
|
385
|
+
endoreg_db/models/label/__init__.py,sha256=pf_rLYseKR2TsYCB0-ddmqpeUbFIui54Xp08H3a_mwU,614
|
|
386
|
+
endoreg_db/models/label/label.py,sha256=uWV0Pk9PmWlOztAepJr5pp-hVrkN7Zo-BJxh13MFCIs,2473
|
|
387
|
+
endoreg_db/models/label/label_set.py,sha256=CQuusK_YR9mHt-xf5ZYy5mJkX-PBdvztaAOJSYszt_o,1832
|
|
388
|
+
endoreg_db/models/label/label_type.py,sha256=80RlxsKeaUKuTaBXz0h-Wejf4g0L9ZzuwxzVmDeSJec,663
|
|
389
|
+
endoreg_db/models/label/video_segmentation_label.py,sha256=pykx8zcayyo-uWwOVyX10tMYX_pEuTZFzd4DhVAxPuQ,1034
|
|
390
|
+
endoreg_db/models/label/video_segmentation_labelset.py,sha256=D8s0uWc-wcdOrzE3X0ljVgauFj2sI9d617EM9jUwbCc,787
|
|
373
391
|
endoreg_db/models/label/annotation/__init__.py,sha256=6igZTy9Iqw-GRf8yB82zoFOsSHgqhbN0bFZ9se6Njgs,268
|
|
374
|
-
endoreg_db/models/label/annotation/image_classification.py,sha256=
|
|
375
|
-
endoreg_db/models/label/annotation/video_segmentation_annotation.py,sha256=
|
|
392
|
+
endoreg_db/models/label/annotation/image_classification.py,sha256=fBxXssr-8OL0oUhmwHV-c9DK2yUI7V_59Hs0ajtC6-k,3132
|
|
393
|
+
endoreg_db/models/label/annotation/video_segmentation_annotation.py,sha256=xwsUJC-cd6gfD4y4OVRh3WFh4p7HsVZnDBHXNVrYops,1800
|
|
376
394
|
endoreg_db/models/label/label_video_segment/__init__.py,sha256=MLFkJvmLm8IZccn2IOMg9C9kZyKUviZtAZpbGdev_nw,84
|
|
377
|
-
endoreg_db/models/label/label_video_segment/_create_from_video.py,sha256=
|
|
378
|
-
endoreg_db/models/label/label_video_segment/label_video_segment.py,sha256=
|
|
395
|
+
endoreg_db/models/label/label_video_segment/_create_from_video.py,sha256=AoLNwsWGrI7zHCUuj3sxchRec_a1P6W3lLa0oGj_t6I,1179
|
|
396
|
+
endoreg_db/models/label/label_video_segment/label_video_segment.py,sha256=0ybONn4Rd7BHSj3cjCBcEJQ3vc19tLwkTJMUJx0mkw0,22023
|
|
379
397
|
endoreg_db/models/media/__init__.py,sha256=WuomOKk-3kNGDLKoLO_ltnXbo028JDVlCCScdJMMQI4,465
|
|
380
398
|
endoreg_db/models/media/frame/__init__.py,sha256=25WriZHocR82rbHr_IMIgBt5z-mkV2O0LVWUpJRnQ5E,45
|
|
381
|
-
endoreg_db/models/media/frame/frame.py,sha256=
|
|
399
|
+
endoreg_db/models/media/frame/frame.py,sha256=7W_KdKwFq12cJoT6h-0JAxCRJrUScz88n6WQsEDa0b0,4364
|
|
382
400
|
endoreg_db/models/media/pdf/__init__.py,sha256=1fimtZK5LUuP_yqETN6pMj0hxKXuQqeLb1DP5wPmtT4,343
|
|
383
|
-
endoreg_db/models/media/pdf/raw_pdf.py,sha256=
|
|
384
|
-
endoreg_db/models/media/pdf/report_file.py,sha256=
|
|
401
|
+
endoreg_db/models/media/pdf/raw_pdf.py,sha256=cCtfY2nt6hVWolKe_r_CfNt317A7XGr9jL8XPLwTXdk,29480
|
|
402
|
+
endoreg_db/models/media/pdf/report_file.py,sha256=sCinU2R8KCJsYz4lYKYcdtais0LZOTi-OL9kGeQLnDA,4417
|
|
385
403
|
endoreg_db/models/media/pdf/report_reader/__init__.py,sha256=LiMooVstXRay5qcB-uZW0wxbcdUvPrfAs_xBwWiuuWc,166
|
|
386
|
-
endoreg_db/models/media/pdf/report_reader/report_reader_config.py,sha256=
|
|
387
|
-
endoreg_db/models/media/pdf/report_reader/report_reader_flag.py,sha256=
|
|
388
|
-
endoreg_db/models/media/
|
|
389
|
-
endoreg_db/models/media/
|
|
404
|
+
endoreg_db/models/media/pdf/report_reader/report_reader_config.py,sha256=CIvRYSSBhIltMqCgtGkhtORYX8VnR6hf2F1v2zISJx4,3403
|
|
405
|
+
endoreg_db/models/media/pdf/report_reader/report_reader_flag.py,sha256=Ar6iIZoKWPoTFRt8uYs-W6Zj2-4plEcQZqHhb2TTD4U,1175
|
|
406
|
+
endoreg_db/models/media/processing_history/__init__.py,sha256=s01wPFbVYlZ93mNVyXHK7PyPtLSpF1LdUqXQKeJAcbY,88
|
|
407
|
+
endoreg_db/models/media/processing_history/processing_history.py,sha256=o-Ee90LVRmN53mZyWHCcfeYv4ywXo-oWHIschZQ9eUo,2953
|
|
408
|
+
endoreg_db/models/media/video/__init__.py,sha256=GJ5wdcvmPdptbSCfYuJeD_UegIdm3kOxjcLLBhKht-s,212
|
|
409
|
+
endoreg_db/models/media/video/create_from_file.py,sha256=vDoWq6o83RGz4POwE_zxLwrMvJsh3RbsJ7rD44JRnpI,16009
|
|
390
410
|
endoreg_db/models/media/video/pipe_1.py,sha256=ljO3vO2mqqTXLZsKjzMTC6-sW4JRWMVRfJcK0n5CjKg,9740
|
|
391
|
-
endoreg_db/models/media/video/pipe_2.py,sha256=
|
|
392
|
-
endoreg_db/models/media/video/
|
|
393
|
-
endoreg_db/models/media/video/
|
|
394
|
-
endoreg_db/models/media/video/
|
|
395
|
-
endoreg_db/models/media/video/
|
|
396
|
-
endoreg_db/models/media/video/
|
|
397
|
-
endoreg_db/models/media/video/
|
|
398
|
-
endoreg_db/models/media/video/
|
|
399
|
-
endoreg_db/models/media/video/
|
|
400
|
-
endoreg_db/models/media/video/
|
|
401
|
-
endoreg_db/models/media/video/video_file_frames/
|
|
402
|
-
endoreg_db/models/media/video/video_file_frames/
|
|
403
|
-
endoreg_db/models/media/video/video_file_frames/
|
|
404
|
-
endoreg_db/models/media/video/video_file_frames/
|
|
405
|
-
endoreg_db/models/media/video/video_file_frames/
|
|
406
|
-
endoreg_db/models/media/video/video_file_frames/
|
|
407
|
-
endoreg_db/models/media/video/video_file_frames/
|
|
408
|
-
endoreg_db/models/media/video/video_file_frames/
|
|
409
|
-
endoreg_db/models/media/video/video_file_frames/
|
|
410
|
-
endoreg_db/models/media/video/video_file_frames/
|
|
411
|
-
endoreg_db/models/media/video/video_file_frames/
|
|
412
|
-
endoreg_db/models/media/video/video_file_frames/
|
|
413
|
-
endoreg_db/models/media/video/video_file_frames/_manage_frame_range.py,sha256=jN_jqEG9cLogdPmQDjZ2VH5FB2WPFkxe_4j-9dm7e_I,6055
|
|
414
|
-
endoreg_db/models/media/video/video_file_frames/_mark_frames_extracted_status.py,sha256=ZyoJNKUEOtJctosfgRsRd5ZMAgQsM8slrqquxQ8-QY4,3432
|
|
411
|
+
endoreg_db/models/media/video/pipe_2.py,sha256=8e6CnsWZ8SOQQ8OCRQoQJjvJ7I6ZZ8UbLWIk4RL6Fvk,4928
|
|
412
|
+
endoreg_db/models/media/video/video_file.py,sha256=QNCSrWUnXga43S1Px1MkPSXam1QzO8cm8oDckBEw3Wc,31905
|
|
413
|
+
endoreg_db/models/media/video/video_file_ai.py,sha256=nQP9o58eyO1Dw4huxfI-TC3mS91OO3E71V40ZJt283s,26068
|
|
414
|
+
endoreg_db/models/media/video/video_file_anonymize.py,sha256=AcYizmUDCaABRHmMXN734Axrufc582ErF9hLbCtzd0U,16190
|
|
415
|
+
endoreg_db/models/media/video/video_file_io.py,sha256=nUhC0BIbryfALBAGcBFAzxGPhTFht8sru_tTQsQEW2M,8795
|
|
416
|
+
endoreg_db/models/media/video/video_file_segments.py,sha256=mQ5jjbcB_jUmk_ojpXPDNpX9pGnn0mFg5Uh1F-5SdFA,8668
|
|
417
|
+
endoreg_db/models/media/video/video_metadata.py,sha256=YA4CGJkXMUcFwOrjKoBHyPMpj6xorRBgQL8V761j7h0,1815
|
|
418
|
+
endoreg_db/models/media/video/video_processing.py,sha256=NYt3ECmBGGrw24p4qTVHwnFXBXeVZANQG11AyUSdaYc,5549
|
|
419
|
+
endoreg_db/models/media/video/video_file_frames/__init__.py,sha256=H262Lbkau6atEdM9kaabvhuu0ato63KNWMz1L5yFXpE,2062
|
|
420
|
+
endoreg_db/models/media/video/video_file_frames/_bulk_create_frames.py,sha256=JHcrh4LTj8SxJ8Vdu1RvpQ6CD-Q0Wsnaa0Z-9b6-HLM,623
|
|
421
|
+
endoreg_db/models/media/video/video_file_frames/_create_frame_object.py,sha256=LTR90PdLENU_8WQ7e_9SmyzekWfx_ilfDBALRQ6AHBU,563
|
|
422
|
+
endoreg_db/models/media/video/video_file_frames/_delete_frames.py,sha256=MYabHe480uHkOtU5FHoZmnHwosEdrAcuq_7kE2PC7hk,4118
|
|
423
|
+
endoreg_db/models/media/video/video_file_frames/_extract_frames.py,sha256=weEZiCUw90EvjXicO5WlBanMwuq-JXnvuuHoqyTngR8,8379
|
|
424
|
+
endoreg_db/models/media/video/video_file_frames/_get_frame.py,sha256=QcLUdvmj6bkiqOKc-WBn6roS3mSEeTQlenGxZJJvEsA,1006
|
|
425
|
+
endoreg_db/models/media/video/video_file_frames/_get_frame_number.py,sha256=OvUp2yAQeHXgBIJFECc85IGV4LDaihW9cIIkchgkR6g,344
|
|
426
|
+
endoreg_db/models/media/video/video_file_frames/_get_frame_path.py,sha256=ld_E5FADn7frfEFN9ZwXe-Fi7epDtbRl1swYIG_zbJA,675
|
|
427
|
+
endoreg_db/models/media/video/video_file_frames/_get_frame_paths.py,sha256=dDWb8SzBmyOj0jF1ovZcROV-2nBAdiQ9WrrELK1QOjk,1054
|
|
428
|
+
endoreg_db/models/media/video/video_file_frames/_get_frame_range.py,sha256=gwIjAg4uK3mdk4xiunhdIsho-ZWRAIeu37IrZRLYgI4,1253
|
|
429
|
+
endoreg_db/models/media/video/video_file_frames/_get_frames.py,sha256=Ftd6ZIQ59yB7R1YpDY8k3HBcDKYM2NectMGHhbwd5FA,914
|
|
430
|
+
endoreg_db/models/media/video/video_file_frames/_initialize_frames.py,sha256=tHPtWEVK_vWHEhXMZBtvUoFSQ6ixS-tPkhHBh7Dcf-s,6435
|
|
431
|
+
endoreg_db/models/media/video/video_file_frames/_manage_frame_range.py,sha256=8-68nFFLXYXn4M14kubHzqKIYxSqxuKCHitGJDJmNcM,6105
|
|
432
|
+
endoreg_db/models/media/video/video_file_frames/_mark_frames_extracted_status.py,sha256=N41dbFsfD15U6bpGGbLtprL7wW3unOeAcT6_oLYfxzc,3525
|
|
415
433
|
endoreg_db/models/media/video/video_file_meta/__init__.py,sha256=gERNjbOgaqtqMeUDb9E2TkuPt-1to7UzR1wf7yTgS10,645
|
|
416
|
-
endoreg_db/models/media/video/video_file_meta/get_crop_template.py,sha256=
|
|
417
|
-
endoreg_db/models/media/video/video_file_meta/get_endo_roi.py,sha256=
|
|
418
|
-
endoreg_db/models/media/video/video_file_meta/get_fps.py,sha256=
|
|
419
|
-
endoreg_db/models/media/video/video_file_meta/initialize_video_specs.py,sha256=
|
|
420
|
-
endoreg_db/models/media/video/video_file_meta/text_meta.py,sha256=
|
|
421
|
-
endoreg_db/models/media/video/video_file_meta/video_meta.py,sha256=
|
|
434
|
+
endoreg_db/models/media/video/video_file_meta/get_crop_template.py,sha256=7_IS8ETreSGeZEsc-pp1LKzA3sHtsTCx0C_v7petKbI,1614
|
|
435
|
+
endoreg_db/models/media/video/video_file_meta/get_endo_roi.py,sha256=GJElNzNQKQy9Nc7oP7hwcyz7fvYGeytzge2QPwFj6wg,1682
|
|
436
|
+
endoreg_db/models/media/video/video_file_meta/get_fps.py,sha256=veUxL7Z2zsND7TOL3LyUxYaZyNFTLARbFzZeMhMu2kM,6197
|
|
437
|
+
endoreg_db/models/media/video/video_file_meta/initialize_video_specs.py,sha256=rAKyC6SH0l9WOdOwhLPAdbDOy061fmgt0npyZ8VWmJo,6732
|
|
438
|
+
endoreg_db/models/media/video/video_file_meta/text_meta.py,sha256=ZBv6WTLttGjCdwHuxAVn5T623d3jJT_WNcUrMzCLk1w,6463
|
|
439
|
+
endoreg_db/models/media/video/video_file_meta/video_meta.py,sha256=KtjiaiT1XP1-bQFQIp1Dyq95Ycg0QB_2jc4JZcAbhjk,3815
|
|
422
440
|
endoreg_db/models/medical/__init__.py,sha256=2xsb7CQlUiMB7txt_7iP_ydfE-loVYU4pt9agcsVD8s,2932
|
|
423
|
-
endoreg_db/models/medical/disease.py,sha256=
|
|
424
|
-
endoreg_db/models/medical/event.py,sha256=
|
|
425
|
-
endoreg_db/models/medical/contraindication/
|
|
426
|
-
endoreg_db/models/medical/
|
|
427
|
-
endoreg_db/models/medical/examination/
|
|
428
|
-
endoreg_db/models/medical/examination/
|
|
429
|
-
endoreg_db/models/medical/examination/
|
|
430
|
-
endoreg_db/models/medical/examination/
|
|
431
|
-
endoreg_db/models/medical/examination/
|
|
441
|
+
endoreg_db/models/medical/disease.py,sha256=MgK4hSlHEtjQ0iayzt6PRWylaAyJAoVgos83yEB1P5I,5060
|
|
442
|
+
endoreg_db/models/medical/event.py,sha256=0cCgzGu-qcWmfKxrTh90WsjV-oFTMY5JZa-AyL9RR0E,4420
|
|
443
|
+
endoreg_db/models/medical/contraindication/README.md,sha256=sOx2L1HlZz_S6QvEA-IskuaGsLUBmVWcTzRbdp8q7ZY,28
|
|
444
|
+
endoreg_db/models/medical/contraindication/__init__.py,sha256=sbaBtsfca3XTO-y4DZ0OCaMkZcB2P0rvASRoVVMvCMI,711
|
|
445
|
+
endoreg_db/models/medical/examination/__init__.py,sha256=mTB-nOqN7wfLRj15oeFa-Q3qw0lh6lLdhIYSrZnou6Y,610
|
|
446
|
+
endoreg_db/models/medical/examination/examination.py,sha256=-pnEnE55oHNdfK4skeDkbeMghm6_JOM0Pwi6FOU6X4Q,5143
|
|
447
|
+
endoreg_db/models/medical/examination/examination_indication.py,sha256=8i4LPhdwVEJptuFJjAiUzXWHD15rzs5_VF5oUBtoqI8,6968
|
|
448
|
+
endoreg_db/models/medical/examination/examination_time.py,sha256=SoRI0-JxtWpCWiyxp8A9mv-EmajOUfDirRZF5HalFIs,1915
|
|
449
|
+
endoreg_db/models/medical/examination/examination_time_type.py,sha256=Cqf4cUstXSyqqG8GBETjusad6ghl8k5il27XyZ9dLU4,1226
|
|
450
|
+
endoreg_db/models/medical/examination/examination_type.py,sha256=4SlqinG6QdaNpBcyH-aiizeqVGLzjTObHAWQth__U1Y,1221
|
|
432
451
|
endoreg_db/models/medical/finding/__init__.py,sha256=9DZuNgBqWhcKzEYo-wnCTmzflbirFgVaeNlkDdr_zeg,475
|
|
433
|
-
endoreg_db/models/medical/finding/finding.py,sha256=
|
|
434
|
-
endoreg_db/models/medical/finding/finding_classification.py,sha256=
|
|
435
|
-
endoreg_db/models/medical/finding/finding_intervention.py,sha256=
|
|
436
|
-
endoreg_db/models/medical/finding/finding_type.py,sha256=
|
|
452
|
+
endoreg_db/models/medical/finding/finding.py,sha256=YP9PupVSFthfLRG-pQThjVNPkniiTfIJ-gsa2HuAyjM,3699
|
|
453
|
+
endoreg_db/models/medical/finding/finding_classification.py,sha256=DA8H7zGd8a4YMC3LTOPc62epwjWM97vgl8CweK6Ugmo,3722
|
|
454
|
+
endoreg_db/models/medical/finding/finding_intervention.py,sha256=ZBe8eE16c6F1LIdyetKxWpAARUCaam2dnTmcKWAwfU0,1714
|
|
455
|
+
endoreg_db/models/medical/finding/finding_type.py,sha256=h5eK5h0pD-BJ-exZZZ9x0itP6eQrpaGGdUKMt7r99AQ,992
|
|
437
456
|
endoreg_db/models/medical/hardware/__init__.py,sha256=uX2-UpBzX2chpZEeCyqbv2BSrv3OZNG9PrB8sHEWpHQ,178
|
|
438
|
-
endoreg_db/models/medical/hardware/endoscope.py,sha256=
|
|
439
|
-
endoreg_db/models/medical/hardware/endoscopy_processor.py,sha256=
|
|
457
|
+
endoreg_db/models/medical/hardware/endoscope.py,sha256=YurE5tf4QGsy-TN6UZnvOthET5ACsUMLCCFtiHjwerI,1782
|
|
458
|
+
endoreg_db/models/medical/hardware/endoscopy_processor.py,sha256=mZgwJNbwmQ-aRvOxzIbSklHr_ANJEZLf_plQzS773r0,6624
|
|
440
459
|
endoreg_db/models/medical/laboratory/__init__.py,sha256=595XF1ikkwzQWbUsyasU23v1kDRugrgTp3eUfrMd0UQ,62
|
|
441
|
-
endoreg_db/models/medical/laboratory/lab_value.py,sha256=
|
|
460
|
+
endoreg_db/models/medical/laboratory/lab_value.py,sha256=Tj7U-n6_T2KK_sqY_Bj8tE2qSv48oIXbZifsjjnt7zQ,19674
|
|
442
461
|
endoreg_db/models/medical/medication/__init__.py,sha256=BHh6ARvm2uVNswN12EQAEMFPnoGBiVwl7RCjKrW6C2I,761
|
|
443
|
-
endoreg_db/models/medical/medication/medication.py,sha256=
|
|
444
|
-
endoreg_db/models/medical/medication/medication_indication.py,sha256=
|
|
445
|
-
endoreg_db/models/medical/medication/medication_indication_type.py,sha256=
|
|
446
|
-
endoreg_db/models/medical/medication/medication_intake_time.py,sha256=
|
|
447
|
-
endoreg_db/models/medical/medication/medication_schedule.py,sha256=
|
|
448
|
-
endoreg_db/models/medical/organ/__init__.py,sha256=
|
|
462
|
+
endoreg_db/models/medical/medication/medication.py,sha256=Q0hKckzlL6X-hkZiAn34FkzUiAQQr18gprCt20wNd24,1335
|
|
463
|
+
endoreg_db/models/medical/medication/medication_indication.py,sha256=_I_08quBoRSBvhfLSeHF0TwiIF3ZAirTqoTcOlFXhnE,2548
|
|
464
|
+
endoreg_db/models/medical/medication/medication_indication_type.py,sha256=HgPqnFRZwSKK-ywzhFcYPZwjth094xlu9kRwOrFugVk,1669
|
|
465
|
+
endoreg_db/models/medical/medication/medication_intake_time.py,sha256=kL76KrQTr2Oygz8W-aAkD6SEZzkgs-YOQEGg7I89pRo,1676
|
|
466
|
+
endoreg_db/models/medical/medication/medication_schedule.py,sha256=yLIrvXH0avY7X8RfXZAHMmCge0lS7Xadj065wcbmXR0,1812
|
|
467
|
+
endoreg_db/models/medical/organ/__init__.py,sha256=l0taAVfBO62XnEzl3kQCzeTJw9yq9Q65lQS4DL5bbak,992
|
|
449
468
|
endoreg_db/models/medical/patient/__init__.py,sha256=4Jl2od4PimEtl28hZiRarFgd0tssP0_B8iR8LhXolpo,1159
|
|
450
|
-
endoreg_db/models/medical/patient/medication_examples.py,sha256=
|
|
451
|
-
endoreg_db/models/medical/patient/patient_disease.py,sha256=
|
|
452
|
-
endoreg_db/models/medical/patient/patient_event.py,sha256=
|
|
453
|
-
endoreg_db/models/medical/patient/patient_examination.py,sha256=
|
|
454
|
-
endoreg_db/models/medical/patient/patient_examination_indication.py,sha256=
|
|
455
|
-
endoreg_db/models/medical/patient/patient_finding.py,sha256=
|
|
456
|
-
endoreg_db/models/medical/patient/patient_finding_classification.py,sha256=
|
|
457
|
-
endoreg_db/models/medical/patient/patient_finding_intervention.py,sha256=
|
|
458
|
-
endoreg_db/models/medical/patient/patient_lab_sample.py,sha256=
|
|
459
|
-
endoreg_db/models/medical/patient/patient_lab_value.py,sha256=
|
|
460
|
-
endoreg_db/models/medical/patient/patient_medication.py,sha256=
|
|
461
|
-
endoreg_db/models/medical/patient/patient_medication_schedule.py,sha256=
|
|
469
|
+
endoreg_db/models/medical/patient/medication_examples.py,sha256=fZfc8fIPPM_kCvmQuA9DtH4CVaxdh6vJduGJieHndbE,1122
|
|
470
|
+
endoreg_db/models/medical/patient/patient_disease.py,sha256=JuVD9eU-SMFEOc6GKH5UVxBkDzk8hSBc_xCG5qtqpbE,2393
|
|
471
|
+
endoreg_db/models/medical/patient/patient_event.py,sha256=iCsXERH7gMba-tAmU9z__2vQMbIIGYllD3Lpq-5XMGo,2713
|
|
472
|
+
endoreg_db/models/medical/patient/patient_examination.py,sha256=CuxmqZKk7stiKMqQqyIZhLGofByRFLoNQxHuIQbmKnk,9677
|
|
473
|
+
endoreg_db/models/medical/patient/patient_examination_indication.py,sha256=t3IbQL5NAOF6vuiTQgUvbAA-1OFt18ijKrd_qSn1OgU,1618
|
|
474
|
+
endoreg_db/models/medical/patient/patient_finding.py,sha256=HMbogi69qIQP_TFEKVtihZmlYQ9b66nQ-23TEJbF9Jc,14783
|
|
475
|
+
endoreg_db/models/medical/patient/patient_finding_classification.py,sha256=yDBbX74zwEk39DGuOQQ3zA5z4enul2e6fX_r1BJUAK4,8602
|
|
476
|
+
endoreg_db/models/medical/patient/patient_finding_intervention.py,sha256=l-e0g-KeTUGGEuU0Xve3RJ_O9D3SqvkeQ3MmD9_e0Do,1119
|
|
477
|
+
endoreg_db/models/medical/patient/patient_lab_sample.py,sha256=PwXVevvRfkIJp4LgyB5EQp4i02MVV-aUGsMHjpCccfY,5477
|
|
478
|
+
endoreg_db/models/medical/patient/patient_lab_value.py,sha256=RT4sl5CJf2kgOhlG2yey_o2P-iy-rEj7Dqqlz7TPlLY,7779
|
|
479
|
+
endoreg_db/models/medical/patient/patient_medication.py,sha256=GlJ7SackYwSVzWmuzjXFqEbba37Dk-ipompxXTtX1H0,3587
|
|
480
|
+
endoreg_db/models/medical/patient/patient_medication_schedule.py,sha256=jb862mpal6GtU2TyVwivefXWVJ7T2S93YGCmdm42jqc,5368
|
|
462
481
|
endoreg_db/models/medical/risk/__init__.py,sha256=KFU25R1fT7POBj6MINYgigYAWYC8NIM-6jx3e_A-bqo,98
|
|
463
|
-
endoreg_db/models/medical/risk/risk.py,sha256=
|
|
464
|
-
endoreg_db/models/medical/risk/risk_type.py,sha256=
|
|
482
|
+
endoreg_db/models/medical/risk/risk.py,sha256=etH8SuB3uVtAJU8CbJSAHyyBKDcC8rNeWRcyqLqzn9c,1901
|
|
483
|
+
endoreg_db/models/medical/risk/risk_type.py,sha256=BAeD5cNVVKJoAX578p_l0ZqRFHagzwZDtBIgZ65bWTg,1332
|
|
465
484
|
endoreg_db/models/metadata/__init__.py,sha256=8I6oLj3YTmeaPGJpL0AWG5gLwp38QzrEggxSkTisv7c,474
|
|
466
|
-
endoreg_db/models/metadata/
|
|
467
|
-
endoreg_db/models/metadata/
|
|
468
|
-
endoreg_db/models/metadata/
|
|
469
|
-
endoreg_db/models/metadata/
|
|
470
|
-
endoreg_db/models/metadata/
|
|
471
|
-
endoreg_db/models/metadata/
|
|
472
|
-
endoreg_db/models/metadata/
|
|
473
|
-
endoreg_db/models/metadata/
|
|
474
|
-
endoreg_db/models/metadata/video_prediction_meta.py,sha256=EyfctAAAVcW9L0gf76ZBc9-G8MLMcD-tc2kkjaaLH4w,10592
|
|
485
|
+
endoreg_db/models/metadata/model_meta.py,sha256=CTjhvLaUPrGA5ETTCjDBs8Gm34eqh9oMnWMNrPbrXU0,8991
|
|
486
|
+
endoreg_db/models/metadata/model_meta_logic.py,sha256=ZrudnHOGivPqsFLFxSZ4pmnL_Xr_-GmzlTih9L45H70,16655
|
|
487
|
+
endoreg_db/models/metadata/pdf_meta.py,sha256=GRQE6ROQxILMl0uKjEQ2BUv8gIDWjD6z-OE5V_wR6Zk,3331
|
|
488
|
+
endoreg_db/models/metadata/sensitive_meta.py,sha256=XF8y4mqOhIoWWjcJyQXYgxEBaXZgoHFl5gMvadimqwc,13755
|
|
489
|
+
endoreg_db/models/metadata/sensitive_meta_logic.py,sha256=gOkwyyYFN-i4A6u30HvpalOEb_q4gzOLI036m8a8VSc,46009
|
|
490
|
+
endoreg_db/models/metadata/video_meta.py,sha256=qFhk9BwFE0z0urQLCPLXancck-su6ET89-akQPCC7H0,15968
|
|
491
|
+
endoreg_db/models/metadata/video_prediction_logic.py,sha256=kIO4k5sVvMb8ccEJQ561quKGUcVoFDf49mDFHKM-a_Q,7601
|
|
492
|
+
endoreg_db/models/metadata/video_prediction_meta.py,sha256=fnIkLnqxXyOBRBrSUVkI8-8AX286PmrpsLbS9uZfy7s,10795
|
|
475
493
|
endoreg_db/models/other/__init__.py,sha256=CC2sksOcwa6jPzKN_EXXk6B1dni_H1LXV0b79w4mkVE,894
|
|
476
|
-
endoreg_db/models/other/gender.py,sha256=
|
|
477
|
-
endoreg_db/models/other/information_source.py,sha256=
|
|
478
|
-
endoreg_db/models/other/material.py,sha256=
|
|
479
|
-
endoreg_db/models/other/resource.py,sha256=
|
|
480
|
-
endoreg_db/models/other/tag.py,sha256=
|
|
481
|
-
endoreg_db/models/other/transport_route.py,sha256=
|
|
482
|
-
endoreg_db/models/other/unit.py,sha256=
|
|
483
|
-
endoreg_db/models/other/waste.py,sha256=
|
|
494
|
+
endoreg_db/models/other/gender.py,sha256=kXsR5yYFrxbWj5dnz8va_bpzx49OJpRjj7ymqBEUBfA,717
|
|
495
|
+
endoreg_db/models/other/information_source.py,sha256=2Sfv1W2DphmwBUiSY75GyOAZuR4sqH2ZeTE7UzaAK_0,5677
|
|
496
|
+
endoreg_db/models/other/material.py,sha256=sLGyWC874JDDq0YjizgxLLuk--IWGJknZ-0fUQPGytw,889
|
|
497
|
+
endoreg_db/models/other/resource.py,sha256=SRMItQa_NW_Gy1Gtk3aVAj_zOx-1TS_08IN-N36WHto,552
|
|
498
|
+
endoreg_db/models/other/tag.py,sha256=30UkkPUOhyQHGdOyWGyZbJu7qgu0yFN88egdCgXYAXY,661
|
|
499
|
+
endoreg_db/models/other/transport_route.py,sha256=3OVV_X_Vcy3XTmOtsVZOpUcfL3EjKtuGcBpp87sVwoU,1032
|
|
500
|
+
endoreg_db/models/other/unit.py,sha256=yud5lz4mqQNRk5127LnU-19oNiVltajJ2dl9IDb7pgY,1068
|
|
501
|
+
endoreg_db/models/other/waste.py,sha256=uBpMcJvytiy3eR5UimTYFebOwPr9wFC9KVRgTf4T-LU,764
|
|
484
502
|
endoreg_db/models/other/distribution/__init__.py,sha256=CBOt6i1ESZJqscCoKmijo2HWFPkXbeMEakl_v9V4NU8,1419
|
|
485
503
|
endoreg_db/models/other/distribution/base_value_distribution.py,sha256=Y9UOjaVIKU43ltZ6QjWN4Uk-tqATB11Ir63WwIy942Y,514
|
|
486
|
-
endoreg_db/models/other/distribution/date_value_distribution.py,sha256=
|
|
487
|
-
endoreg_db/models/other/distribution/multiple_categorical_value_distribution.py,sha256=
|
|
488
|
-
endoreg_db/models/other/distribution/numeric_value_distribution.py,sha256=
|
|
489
|
-
endoreg_db/models/other/distribution/single_categorical_value_distribution.py,sha256=
|
|
504
|
+
endoreg_db/models/other/distribution/date_value_distribution.py,sha256=apB41LYzC_zB1b-XIhX9LgpRowtMjWcQk3E6vaEtZr8,5244
|
|
505
|
+
endoreg_db/models/other/distribution/multiple_categorical_value_distribution.py,sha256=fY2rH1StDxRyH74ktH9xHrcqR8_M6lWoE_pOb5rF15o,1862
|
|
506
|
+
endoreg_db/models/other/distribution/numeric_value_distribution.py,sha256=8H_UfZ92tzzRpKRHX2eIc19mw8kvDRYALqcyOw4GC1k,7827
|
|
507
|
+
endoreg_db/models/other/distribution/single_categorical_value_distribution.py,sha256=DdkakQA1M1jPRknr1Zkm0cAxvyulF-ZEJKiQ8t2aeeI,734
|
|
490
508
|
endoreg_db/models/other/emission/__init__.py,sha256=rvIQ_cA1Vj--FzQRWOoSy-84iGcjTTAGX1MM6nUjn4w,81
|
|
491
|
-
endoreg_db/models/other/emission/emission_factor.py,sha256=
|
|
509
|
+
endoreg_db/models/other/emission/emission_factor.py,sha256=5ESvNGadi8ocl6BIxtX0TfioBJU9IaILSioR9am9U2w,3106
|
|
510
|
+
endoreg_db/models/report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
511
|
+
endoreg_db/models/report/images.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
512
|
+
endoreg_db/models/report/report.py,sha256=Ztd-e8kcDP7Di_VbFivimzmbQjlCbthKvT_m-J_DypM,120
|
|
492
513
|
endoreg_db/models/requirement/__init__.py,sha256=bGZ-G89vM7o7ofFsCsLiHqqEhtjTRnqZMgTyojXiKNU,304
|
|
493
|
-
endoreg_db/models/requirement/requirement.py,sha256=
|
|
494
|
-
endoreg_db/models/requirement/
|
|
495
|
-
endoreg_db/models/requirement/
|
|
514
|
+
endoreg_db/models/requirement/requirement.py,sha256=6P8jvGcFgEk1giEdA8U0Gky17lNdvu9Am58ozPms8OM,29573
|
|
515
|
+
endoreg_db/models/requirement/requirement_error.py,sha256=AgFOQ3aVAsjPwXYIdLAY09ppLs29WFbqpvtAt5qr3r0,2441
|
|
516
|
+
endoreg_db/models/requirement/requirement_operator.py,sha256=EHPNRFjnlE_-qMcJXq7AofRZ4Tep9tY_JXQ7DSLzYWI,6028
|
|
517
|
+
endoreg_db/models/requirement/requirement_set.py,sha256=Ofh59OyBH6UqnimZiHNJXMXGTaVlSAufbN2-YEAIOKo,11046
|
|
496
518
|
endoreg_db/models/requirement/requirement_evaluation/__init__.py,sha256=vKfJrCoTasRDp-obb8W_Xw723waxxCx_eifWsl76KtU,101
|
|
519
|
+
endoreg_db/models/requirement/requirement_evaluation/evaluate_with_dependencies.py,sha256=kVLwL6stqmCM8iszlGjxLPlpcKK6z70xUHfZJ6oFB24,9347
|
|
497
520
|
endoreg_db/models/requirement/requirement_evaluation/get_values.py,sha256=nTRzQzpsFs3PwfCkjvr51W24U9zYogUGSCF8WKNHVd4,1520
|
|
498
|
-
endoreg_db/models/requirement/requirement_evaluation/operator_evaluation_models.py,sha256=
|
|
499
|
-
endoreg_db/models/requirement/requirement_evaluation/requirement_type_parser.py,sha256=
|
|
500
|
-
endoreg_db/models/
|
|
501
|
-
endoreg_db/models/
|
|
502
|
-
endoreg_db/models/
|
|
503
|
-
endoreg_db/models/
|
|
504
|
-
endoreg_db/models/
|
|
505
|
-
endoreg_db/models/
|
|
506
|
-
endoreg_db/models/state/
|
|
507
|
-
endoreg_db/models/state/
|
|
508
|
-
endoreg_db/
|
|
509
|
-
endoreg_db/models/state/label_video_segment.py,sha256=C7cFyeTum96N1mfBe3obBA97pGmA_ggN4TgjosgQ-FE,675
|
|
510
|
-
endoreg_db/models/state/raw_pdf.py,sha256=APQ3PEdh4EHeC118uFC8ayS4XF6OOm5wOj3P47dHHNs,7417
|
|
511
|
-
endoreg_db/models/state/sensitive_meta.py,sha256=Us_2bB0vM5_-y85wJLLRn1rP7LHgUuBuGm2Bw2m9oQQ,1375
|
|
512
|
-
endoreg_db/models/state/video.py,sha256=dgNjMK5p0lGeUqYEHZJP0lEsPC5auucVe4fkJ218WPw,9841
|
|
513
|
-
endoreg_db/queries/__init__.py,sha256=3yhFtU_yY2L8rK2--8WkjcyI0q94QPpTtv5w_v8rZRY,83
|
|
521
|
+
endoreg_db/models/requirement/requirement_evaluation/operator_evaluation_models.py,sha256=KraxocNZaDf7aXaKYFtcMGMDSEJPFp1RxTlOflkLwv8,135
|
|
522
|
+
endoreg_db/models/requirement/requirement_evaluation/requirement_type_parser.py,sha256=hX667uG1EZ55kUxXYR-mb47f-LZfgeEQ9Qu_epAU-fg,4866
|
|
523
|
+
endoreg_db/models/state/__init__.py,sha256=WsWid5xpQ8KRhlJvcGd9OM2nDaV6XP_v7frna_atV1I,345
|
|
524
|
+
endoreg_db/models/state/abstract.py,sha256=_mxjpzCCDotOGgxtD2ADeopqQvTgdvA0IIPuQKiilL8,264
|
|
525
|
+
endoreg_db/models/state/anonymization.py,sha256=d50YQ-4k_oIOtXICryvsyqPzf486cDFG1BmQ73peuOE,365
|
|
526
|
+
endoreg_db/models/state/audit_ledger.py,sha256=Pt8RIGg-6wb6md1Rlr5VhvIJFgc0uYNk7mJNmASZ6zU,6182
|
|
527
|
+
endoreg_db/models/state/label_video_segment.py,sha256=Hv8cE27yn0GOm0t4PlcamzN47GCbE2LYLLDADr7Vm3A,854
|
|
528
|
+
endoreg_db/models/state/raw_pdf.py,sha256=6U4c6kyLqTh6tfKyrGQSPEQYPgu75-L9LRA55Rm0-QA,8283
|
|
529
|
+
endoreg_db/models/state/sensitive_meta.py,sha256=fzzBehjJ9mcBJHrRM7y1A868qX76UADeh1mc8tLkzL0,1406
|
|
530
|
+
endoreg_db/models/state/video.py,sha256=KziXPTnRrGGpgXtNyDjbzBXldTB3P666t2lSfs9RzeI,9175
|
|
531
|
+
endoreg_db/queries/__init__.py,sha256=7Qp0uKn8VLlerdYABw1p-2xphGyd-hT80O-wNUv043o,117
|
|
514
532
|
endoreg_db/queries/annotations/__init__.py,sha256=76O3dAIzuSye09VNPGSNPnqPEtgXZcBAGXKdh89y0ts,95
|
|
515
533
|
endoreg_db/queries/annotations/legacy.py,sha256=KOHWLDf3CLvIT9GpQi3ps4bUi3JDJUhJXH4gvw9T47E,6418
|
|
516
534
|
endoreg_db/queries/sanity/__init_.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
517
535
|
endoreg_db/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
518
|
-
endoreg_db/schemas/examination_evaluation.py,sha256
|
|
536
|
+
endoreg_db/schemas/examination_evaluation.py,sha256=-Wz6C56xU2dPNUR7BwyMWZ9ipuuuxcB1VTXs5N-HplU,858
|
|
519
537
|
endoreg_db/serializers/Frames_NICE_and_PARIS_classifications.py,sha256=q06UKC0Nt4sOJphwN9lEaY28ZAvtcMAlOwT5Zq_sblI,31384
|
|
520
|
-
endoreg_db/serializers/__init__.py,sha256=
|
|
521
|
-
endoreg_db/serializers/anonymization.py,sha256=
|
|
538
|
+
endoreg_db/serializers/__init__.py,sha256=GzyfV8tLHTnuVhvpieCv0dEbA_Jujv76auw1ON6CdNE,3298
|
|
539
|
+
endoreg_db/serializers/anonymization.py,sha256=Vtvbr_civeXjyqFYk0zUA5BuJv9tW9QQ6WJWxzPps8Y,3101
|
|
522
540
|
endoreg_db/serializers/examination_serializer.py,sha256=JPI9diMup9e-nSCH6UwU9KulnSKreg6pOwjKCLHWJfs,281
|
|
523
541
|
endoreg_db/serializers/sensitive_meta_serializer.py,sha256=zF_0HOrdhi9714DExVD1DTsQqDbRIJevkjLU4vZEgYE,10748
|
|
524
542
|
endoreg_db/serializers/video_examination.py,sha256=jotR5PNTA_xEMpqsqdP3PFaie8TO7SGv2Vp18sj8TlY,6937
|
|
525
|
-
endoreg_db/serializers/_old/raw_pdf_meta_validation.py,sha256=hZaPTY4AA4wO7uAA0-DKLueHwtqnNsJqFR8Apdv6wTk,7608
|
|
526
|
-
endoreg_db/serializers/_old/raw_video_meta_validation.py,sha256=Owku2MmHjEZR_FpgKUdaG9In9IRwur53NmhJdser9Bs,7542
|
|
527
|
-
endoreg_db/serializers/_old/video.py,sha256=O7PIt7uJNP5Xy9R9tbWuptCcsrm1dV0382_ymyVgl5w,2634
|
|
528
543
|
endoreg_db/serializers/administration/__init__.py,sha256=ZwlX3-e3QE_6O96liL_JLRSmkqemQP1SycE0mDOQ660,316
|
|
529
544
|
endoreg_db/serializers/administration/center.py,sha256=poHuiBQwfZlSagBuaw4HeJKaYlzGAwEdQC8I_ESBBV4,276
|
|
530
545
|
endoreg_db/serializers/administration/gender.py,sha256=ZcJv4aWKPAkPO8ON0nWzFTB9Oj4B6YbMrMxqpOxQo_w,306
|
|
@@ -548,19 +563,17 @@ endoreg_db/serializers/label_video_segment/__init__.py,sha256=9_Q7GjKKT_x1MYm7YR
|
|
|
548
563
|
endoreg_db/serializers/label_video_segment/_lvs_create.py,sha256=yUdVIw6yfCOVetuwgzviPL0iPQWqgGoJ7KVpXlMbkYA,5978
|
|
549
564
|
endoreg_db/serializers/label_video_segment/_lvs_update.py,sha256=ZynRbiz83cmBK1EW-AoBsx7ltdMHYRpr765592XpylE,5666
|
|
550
565
|
endoreg_db/serializers/label_video_segment/_lvs_validate.py,sha256=8I9y-ySrbeYu4a_9GuWWC0n7NzrJD4COitK0cKBbeo8,6826
|
|
551
|
-
endoreg_db/serializers/label_video_segment/label_video_segment.py,sha256=
|
|
566
|
+
endoreg_db/serializers/label_video_segment/label_video_segment.py,sha256=2oVArgAA-4cdSL4ifkQqeXjrM_hgEzbKw6fBnrUtV2s,12633
|
|
552
567
|
endoreg_db/serializers/label_video_segment/label_video_segment_annotation.py,sha256=ZcQukf_gj55KKgbrotutZgqxpXnieJcfOcoIpVydVOo,3920
|
|
553
568
|
endoreg_db/serializers/label_video_segment/label_video_segment_update.py,sha256=wZVjzmC3C1vw4d943HRnreqRNJQ7GXZvRSgBr9uWPhI,7671
|
|
554
|
-
endoreg_db/serializers/meta/__init__.py,sha256=
|
|
555
|
-
endoreg_db/serializers/meta/
|
|
556
|
-
endoreg_db/serializers/meta/report_meta.py,sha256=wnpQAasZhr3m3nvH5Q4iTqB7Te25UidQtdif04aVQF8,1966
|
|
557
|
-
endoreg_db/serializers/meta/sensitive_meta_detail.py,sha256=1i-9Osl9vBH7_KObdm8BlNHuKYOXeFeGfAsN6H_ELGM,5481
|
|
569
|
+
endoreg_db/serializers/meta/__init__.py,sha256=DQfSeV4ZIifoaTHNwXxNPDeSRf41UKYf6dPF1iKNIgI,419
|
|
570
|
+
endoreg_db/serializers/meta/sensitive_meta_detail.py,sha256=yOzWgNexT4zGjf0TsC2PbU37cuj-eqq6PIp7q1XUcCo,3943
|
|
558
571
|
endoreg_db/serializers/meta/sensitive_meta_update.py,sha256=qy7cM2MhQUJST9YcEXuyYmL8oX4kkKCIcyiz2nXHo-g,5591
|
|
559
572
|
endoreg_db/serializers/meta/sensitive_meta_verification.py,sha256=gXH2RfJtVPSgnA3Z58FU6kxTZs6vBI14EEZT7lx2NFE,2289
|
|
560
573
|
endoreg_db/serializers/meta/video_meta.py,sha256=g96J4va5_oIg7rbbVqcyBsy8imgmbiHjysuEEtas0cA,1284
|
|
561
574
|
endoreg_db/serializers/misc/__init__.py,sha256=MfG55Bb9sNBajmt-QkTOg1qFNSOEFQ6RWHIA_DVtneE,489
|
|
562
|
-
endoreg_db/serializers/misc/file_overview.py,sha256=
|
|
563
|
-
endoreg_db/serializers/misc/sensitive_patient_data.py,sha256=
|
|
575
|
+
endoreg_db/serializers/misc/file_overview.py,sha256=5dVZ61VIz_A-7Qncc-BBKrZuE6DQlzZ6fmmptDpZpOw,3987
|
|
576
|
+
endoreg_db/serializers/misc/sensitive_patient_data.py,sha256=pAHgBV6FjQ9KlpvthlsMYPgrdnE4YjE9nIdlMXKuDVs,6197
|
|
564
577
|
endoreg_db/serializers/misc/stats.py,sha256=iL8iZseOLeLaoaCDF3MtTQBH3b0yX5ZFkrZbq5MiMGM,1255
|
|
565
578
|
endoreg_db/serializers/misc/translatable_field_mix_in.py,sha256=ZH8ZUE1-No0DLCcIGk445c00jQcX7M6Yldxik-FaGfg,1724
|
|
566
579
|
endoreg_db/serializers/misc/upload_job.py,sha256=e8rXbgs7lkh-NAswLBV2pkEngWdfqHmJcIqS1fM0bJY,2306
|
|
@@ -568,7 +581,7 @@ endoreg_db/serializers/patient/__init__.py,sha256=ogQGq3jGnFP3L7gK9FbcJodhrzdR6_
|
|
|
568
581
|
endoreg_db/serializers/patient/patient.py,sha256=8GlQw9a6zxhrieuzw0qf2Xryiuj64-Pe-jgYFdGlRdk,3072
|
|
569
582
|
endoreg_db/serializers/patient/patient_dropdown.py,sha256=0hijgjMbgrUo78Em6hNqRMv5XdQJ42pTXmOZClSDtuQ,964
|
|
570
583
|
endoreg_db/serializers/patient_examination/__init__.py,sha256=7QMmC9XImY9S_suhGnj4SWeyOk1CkbKzbDRZ_thEWdA,121
|
|
571
|
-
endoreg_db/serializers/patient_examination/patient_examination.py,sha256=
|
|
584
|
+
endoreg_db/serializers/patient_examination/patient_examination.py,sha256=p1O-awTCYLCFACFCVo17zo8vC5wwxlQ_FkwNx2zTrfo,5595
|
|
572
585
|
endoreg_db/serializers/patient_finding/__init__.py,sha256=t28Qc0223ykVWZEbk9XAsZRAZdQDohbTJEUlUvRnlO0,658
|
|
573
586
|
endoreg_db/serializers/patient_finding/patient_finding.py,sha256=o63QZSmcxKsnMKcVXwAf1oXv7D27lwSoHryS7DOCAmE,962
|
|
574
587
|
endoreg_db/serializers/patient_finding/patient_finding_classification.py,sha256=MnFAtmoXyhsw2-wFGzz9l14cQsCOYgS2Y8ds0hny9c4,1608
|
|
@@ -577,61 +590,52 @@ endoreg_db/serializers/patient_finding/patient_finding_intervention.py,sha256=B-
|
|
|
577
590
|
endoreg_db/serializers/patient_finding/patient_finding_list.py,sha256=GfIZ8MKCtW_8adrBdUndfqCeQ2LXVHp7I2scSTWDbUg,1265
|
|
578
591
|
endoreg_db/serializers/patient_finding/patient_finding_write.py,sha256=5F-CsESEvTYgxNYD1mdpwFlUBLH4OkI6MRzjXf0wBXg,5628
|
|
579
592
|
endoreg_db/serializers/pdf/__init__.py,sha256=edYetSYnJX7EJx5GyyBTMbx15maVXowgQWXYLt_JuDo,107
|
|
580
|
-
endoreg_db/serializers/pdf/anony_text_validation.py,sha256=
|
|
581
|
-
endoreg_db/serializers/report/__init__.py,sha256=w7N72hQaeTTSskw2PTWupfhHDEs7y2KycdpXV6zREXU,240
|
|
582
|
-
endoreg_db/serializers/report/mixins.py,sha256=rDQ1v76JDI_UOxd0hOg3CFooWHvYlnT7OkrpPnXSmkc,1626
|
|
583
|
-
endoreg_db/serializers/report/report.py,sha256=x46KNi-mhkffaVvyFq5SriyDSzMU7QUWvOqC05RgdXU,3928
|
|
584
|
-
endoreg_db/serializers/report/report_list.py,sha256=ohcMA5cD0fDRdG0j9LcvhQewBB7RZTrsXIkVylMa7eY,730
|
|
585
|
-
endoreg_db/serializers/report/secure_file_url.py,sha256=zVUYHmosBdsRwqenfOQifnRug7MigHHMyIOgyS94Gpg,1075
|
|
593
|
+
endoreg_db/serializers/pdf/anony_text_validation.py,sha256=xxOHgExcbYOY6nYNpd5MEOzoQDy6xOeKtkwpZSfOdUc,3418
|
|
586
594
|
endoreg_db/serializers/requirements/requirement_schema.py,sha256=ugA5H2bJo_RYAk9TyZO3I4L7QJZalpftts-KHO_o4G0,508
|
|
587
|
-
endoreg_db/serializers/requirements/requirement_sets.py,sha256=
|
|
595
|
+
endoreg_db/serializers/requirements/requirement_sets.py,sha256=VX2ajfAqdW2G32LxEReFueEWBngTXY09LOZ6opEmwds,3525
|
|
588
596
|
endoreg_db/serializers/video/__init__.py,sha256=mSQqoZAf6mDDFZVmSQiz6uhJjwqjHw4NHqpZsWFQTNE,96
|
|
589
|
-
endoreg_db/serializers/video/segmentation.py,sha256
|
|
597
|
+
endoreg_db/serializers/video/segmentation.py,sha256=-5SKw9_gKovXfD1UKVwHXPgpLSWFyQnIpwPYQ9VDKZ4,12006
|
|
590
598
|
endoreg_db/serializers/video/video_file_brief.py,sha256=9g5njY0rI64kLO-Kt8J220M_y5ObYUHaNw9bf3-8lK8,272
|
|
591
599
|
endoreg_db/serializers/video/video_file_detail.py,sha256=NqhziTHtoJM_gTEPEe086eAn5tvEMJknQAKa1zY6ENo,3639
|
|
592
|
-
endoreg_db/serializers/video/video_file_list.py,sha256=
|
|
593
|
-
endoreg_db/serializers/video/
|
|
594
|
-
endoreg_db/serializers/video/video_processing_history.py,sha256=pJD4LltXCKlCQYsG119bhMHEhv7NslG6vlxJgS4Avg4,5281
|
|
600
|
+
endoreg_db/serializers/video/video_file_list.py,sha256=nEfsJM1icQRcYU6dkllKYHB0EuKPu7hQ7reVmJB2HIM,3289
|
|
601
|
+
endoreg_db/serializers/video/video_processing_history.py,sha256=0yAPth_HrINKc3W9YVU5jUvy6pXpNwQAYWz_8oNENHM,5819
|
|
595
602
|
endoreg_db/services/__init__.py,sha256=CMLgpzemgjXvKN5HGFD_UVtRAg9XeMIfXvoSu-aUaRE,136
|
|
596
|
-
endoreg_db/services/anonymization.py,sha256=
|
|
603
|
+
endoreg_db/services/anonymization.py,sha256=XamQeeVd-W3HqaCZ0Zy7yWdfFDh-J1AxVSMVp7Y9vZ8,9473
|
|
597
604
|
endoreg_db/services/examination_evaluation.py,sha256=jx9IL2PIoBzjiITzs00c1XucE7Ab2LAUydNbErRmtTM,5943
|
|
598
605
|
endoreg_db/services/finding_description_service.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
599
|
-
endoreg_db/services/lookup_service.py,sha256=
|
|
600
|
-
endoreg_db/services/lookup_store.py,sha256=
|
|
601
|
-
endoreg_db/services/pdf_import.py,sha256=
|
|
606
|
+
endoreg_db/services/lookup_service.py,sha256=e_groyWlWKpdtShvdtJe_7tv1GMGT60XHJ3dqXtyDdE,16480
|
|
607
|
+
endoreg_db/services/lookup_store.py,sha256=l3AekFLMqoCIVLuRrh7-LwvpJxxYmCJk5G22Os3f6Qo,8965
|
|
608
|
+
endoreg_db/services/pdf_import.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
602
609
|
endoreg_db/services/polling_coordinator.py,sha256=alnPB-kdMyxbYaxQN9fki9dKrwmAsY3s68bUHWDSNeI,10662
|
|
603
610
|
endoreg_db/services/pseudonym_service.py,sha256=CJhbtRa6K6SPbphgCZgEMi8AFQtB18CUoBDttFnxEoM,3126
|
|
604
|
-
endoreg_db/services/
|
|
611
|
+
endoreg_db/services/report_import.py,sha256=H2Fl7gpm5IlamyJYH2J44X-j5uOO2oKX0nFQR2ENvvI,337
|
|
605
612
|
endoreg_db/services/segment_sync.py,sha256=YgHvIHkbW4mqCu0ACf3zjRSZnNfxWwt4gh5syUVXuE0,6400
|
|
606
|
-
endoreg_db/services/
|
|
607
|
-
endoreg_db/services/
|
|
608
|
-
endoreg_db/
|
|
609
|
-
endoreg_db/tasks/
|
|
613
|
+
endoreg_db/services/video_import.py,sha256=crxwQfKFin_q993bkgWvLhdtuVsiA3KSFMTERM2S35o,334
|
|
614
|
+
endoreg_db/services/__old/pdf_import.py,sha256=VTik-8SlY44ebnzIZ9Q9aJYiyrIduR916pqznh11T40,59990
|
|
615
|
+
endoreg_db/services/__old/video_import.py,sha256=3tFC5nLgDExAQDAa4ZZR83awEOWdGGFO36puiAVBV_0,54426
|
|
616
|
+
endoreg_db/tasks/upload_tasks.py,sha256=faE2EFYnSCnjRx3qTIYKqZFhMcibv4Mfrs0V6oOqfyc,7681
|
|
617
|
+
endoreg_db/tasks/video_ingest.py,sha256=i9KJfEh46dK0EXj-qijUxt6EP2PWIop8fH8gdQ4grls,5381
|
|
610
618
|
endoreg_db/tasks/video_processing_tasks.py,sha256=rZ7Kr49bAR4Q-vALO2SURebrhcJ5hSFGwjF4aULrOao,14089
|
|
611
619
|
endoreg_db/templates/timeline.html,sha256=H9VXKOecCzqcWWkpNIZXFI29ztg-oxV5uvxMglgoClk,6167
|
|
612
620
|
endoreg_db/templates/admin/patient_finding_intervention.html,sha256=F3JUKm3HhWIf_xoZZ-SET5d5ZDlm2jMM8g909w1dnYc,10164
|
|
613
621
|
endoreg_db/templates/admin/start_examination.html,sha256=3K4wirul9KNyB5mN9cpfCSCAyAD6ro19GwxFOY5sZ3A,267
|
|
614
|
-
endoreg_db/urls/__init__.py,sha256=
|
|
622
|
+
endoreg_db/urls/__init__.py,sha256=TyWa25lwbYUEtpyzoGTpUCJzodvkOU7Dzt0ni6DYbBA,2124
|
|
623
|
+
endoreg_db/urls/ai.py,sha256=Z634P3tUldbdaSPEA-DvwUY9VGirEPhTjhUxFgp_ERU,694
|
|
615
624
|
endoreg_db/urls/anonymization.py,sha256=zLoOOpu4XSha002nOi0fiJUAT8Dff7u7RQFtdU4A6aw,1853
|
|
616
625
|
endoreg_db/urls/auth.py,sha256=t95D8n3fiOhkUiINVGygrW0jiQiJc_XNmfk2S8pcDxk,440
|
|
617
626
|
endoreg_db/urls/classification.py,sha256=2JdHsCSpLs5bZWiTsDpWvyLE_OJkf7LrCCOob7H8M-k,1802
|
|
618
627
|
endoreg_db/urls/examination.py,sha256=IWNIR-hsWKD3nfL27EzMMazcZnOa_imjgk8RL0mql2U,2344
|
|
619
|
-
endoreg_db/urls/
|
|
620
|
-
endoreg_db/urls/label_video_segment_validate.py,sha256=bGWacxIG4pHnGRbnHL_L91ShKWfKCn5X-YXsHGs6i-I,1044
|
|
621
|
-
endoreg_db/urls/label_video_segments.py,sha256=Xj7Gf-JSq5iB3ubit5aCaLMJcgQXgDmqMSCb-n-CIl8,1144
|
|
622
|
-
endoreg_db/urls/media.py,sha256=VzPx-4XuLQTO73QRWUa3VSw7XzpPN7IXdMOTX3uvFp8,10832
|
|
628
|
+
endoreg_db/urls/media.py,sha256=maCIWaasPnTOmG2nJLfZX9tBy-FP4x5IkNgK4lJqPdM,11105
|
|
623
629
|
endoreg_db/urls/patient.py,sha256=VLKFbEiNgpfYLWFisbHidyoUnoQuEzj1U0SgZDpdPDM,588
|
|
624
|
-
endoreg_db/urls/report.py,sha256=9i3sOSofB7_PHGByr3DMghZFtcbjKf_U5PVSlxu9d4I,1917
|
|
625
630
|
endoreg_db/urls/requirements.py,sha256=5d-SD_7nsTA9YXlBeWdZuh-mXh26BkgH29fFBaTLjU8,455
|
|
626
|
-
endoreg_db/urls/
|
|
631
|
+
endoreg_db/urls/root_urls.py,sha256=d3H6wXeaGWpOjJSVWZ0ymeDm1onevBNPBy53cZONx98,1016
|
|
627
632
|
endoreg_db/urls/stats.py,sha256=2NQotfsHREF3gTOKQ5AT4XM1wvmEChSvDIrKMSFR2-Q,1796
|
|
628
633
|
endoreg_db/urls/upload.py,sha256=H6O8lqvGlyQhwdO1OY1RNInDgh3b_CPkDf6lIYMNApY,365
|
|
629
|
-
endoreg_db/
|
|
630
|
-
endoreg_db/utils/__init__.py,sha256=i4yiPD65rURpbcAoOOoYgV1zT3dMslSjTlZ-GebiOd0,2005
|
|
634
|
+
endoreg_db/utils/__init__.py,sha256=dx2jEcwRS1i5gx7k7XsphCX0SJ25NWRrg2k5Fz5XD6k,2272
|
|
631
635
|
endoreg_db/utils/calc_duration_seconds.py,sha256=AAAmIgVn5eaGpy6uVfWoDk8II7yxzQ0zHzvtusDtts0,693
|
|
632
636
|
endoreg_db/utils/check_video_files.py,sha256=cmiPgjWrFz4DgWjaYis8SNlk_rcnBzYHNs3uDEO3SYQ,6005
|
|
633
637
|
endoreg_db/utils/cropping.py,sha256=wMLo5sCFdZAEVBe3RbCH26eQjRe8q3th4K3ZKDd9fww,1143
|
|
634
|
-
endoreg_db/utils/dataloader.py,sha256=
|
|
638
|
+
endoreg_db/utils/dataloader.py,sha256=Y2mTCrkSGI0zheXzzv4YKQ1G_J07aCdp27XGYY3JoE8,11014
|
|
635
639
|
endoreg_db/utils/dates.py,sha256=5eRzL1cyKJaLip2GTyDm5l9FtXdcYCSXLH46vJV5nEM,1768
|
|
636
640
|
endoreg_db/utils/env.py,sha256=OGqE5Ro8h-uJVmfsgf1u2SZvZgv555sqUCKmMNP4KxM,1278
|
|
637
641
|
endoreg_db/utils/extract_specific_frames.py,sha256=8n6VRtZS24dEwRlCVSe8eHimIwL5FpK7NhKFG0duSyQ,2296
|
|
@@ -640,54 +644,57 @@ endoreg_db/utils/fix_video_path_direct.py,sha256=KoV_OZZdhyExohqhIGeZlU5UgzVBVRw
|
|
|
640
644
|
endoreg_db/utils/frame_anonymization_utils.py,sha256=gEibJBIGdmCeIY75sgHhKIjXOukr6-HS3_9MA7iT1rU,13512
|
|
641
645
|
endoreg_db/utils/hashs.py,sha256=eNDdaoRnBFC39SbhpxLMwG0ltJunNQ54XEW2cuZzU50,4817
|
|
642
646
|
endoreg_db/utils/mime_types.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
643
|
-
endoreg_db/utils/names.py,sha256=
|
|
647
|
+
endoreg_db/utils/names.py,sha256=R-e8963IZRHhWPpa8gX2hbCq6o6agn5u3bd48wZ9FoM,2860
|
|
644
648
|
endoreg_db/utils/ocr.py,sha256=LvyABxX5OZhIeXw2pI6af8_xTj7nHQQoKGh5kNsrv7o,7136
|
|
645
649
|
endoreg_db/utils/parse_and_generate_yaml.py,sha256=k7y0fl9Jbb_LNryeJYd6tebklRlu1-P70dJ-4sxvEZs,1626
|
|
646
|
-
endoreg_db/utils/paths.py,sha256=
|
|
647
|
-
endoreg_db/utils/permissions.py,sha256=
|
|
650
|
+
endoreg_db/utils/paths.py,sha256=mE9Y1R5TRpNKR3CRS8kZV9Y_um9P4bASG7I-RsdhfyU,4972
|
|
651
|
+
endoreg_db/utils/permissions.py,sha256=s7FIglJKwHikq3DX9dGrCBHlosnMlG94sHYIxViici8,5188
|
|
648
652
|
endoreg_db/utils/requirement_helpers.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
649
|
-
endoreg_db/utils/setup_config.py,sha256=
|
|
653
|
+
endoreg_db/utils/setup_config.py,sha256=IsQQb9ZtAVn5vo8JATepe0zoClYb5H8DM8Ed9loeNGo,6852
|
|
654
|
+
endoreg_db/utils/storage.py,sha256=_TNEUX352OrMvoRp5SU4hgPt2ocqea_rmmMKjVAgie8,3315
|
|
650
655
|
endoreg_db/utils/translation.py,sha256=77Xel12pAGo0rQ0NxB7nfejvMb0GBjEmhC3I7mcU91I,1256
|
|
651
656
|
endoreg_db/utils/uuid.py,sha256=T4HXqYtKwXFqE5kPyvlgWHyllBBF6LL6N48nl9TpwBk,53
|
|
652
|
-
endoreg_db/utils/validate_endo_roi.py,sha256=
|
|
657
|
+
endoreg_db/utils/validate_endo_roi.py,sha256=9wvmiJvL3OpmUAGHaqHmEjLK2gf1XkJau_jLlD5O1v0,1031
|
|
653
658
|
endoreg_db/utils/validate_subcategory_dict.py,sha256=zUR2sb5jgr0Ue--nCh-PYGrCTl4IP6j0WaIjkXIdScM,3443
|
|
654
659
|
endoreg_db/utils/validate_video_detailed.py,sha256=ahgNvyY6tewzFrNhyOTcQ3EP1EvMncbeTSMlW9Vq9kk,14069
|
|
655
660
|
endoreg_db/utils/ai/__init__.py,sha256=oIbW3C90gzD9GPSRNJqsgJzFBRx9yzKYXdO0xSiJ3ww,242
|
|
656
661
|
endoreg_db/utils/ai/get.py,sha256=M9_g8-UaymuE7PpvNnIRvySthNRGEuHeddqnP8kUfBA,204
|
|
657
662
|
endoreg_db/utils/ai/inference_dataset.py,sha256=jSE-124Du_w_9KY0DbEmza3faEx-K4E8LuWhkWmtETY,1798
|
|
658
|
-
endoreg_db/utils/ai/multilabel_classification_net.py,sha256=
|
|
663
|
+
endoreg_db/utils/ai/multilabel_classification_net.py,sha256=Av2D_hJ_XRyNlO4cc7Dm-Cwjot8C3ETf7Y-Zeq6hMto,9482
|
|
659
664
|
endoreg_db/utils/ai/postprocess.py,sha256=RhHyICu0Z6oAjqbrmAN_G8Jaon_UDBAHI-3U1DuHM88,2317
|
|
660
665
|
endoreg_db/utils/ai/predict.py,sha256=L23RSiCIu2r9gGf2vhM0x1Bf23n40gsAE2H1NS7RD80,10371
|
|
661
666
|
endoreg_db/utils/ai/preprocess.py,sha256=EnIrOrwqKKwdUPM2Pn7d3H2eMrYcyR0Yky6KSq7ccb0,2303
|
|
662
|
-
endoreg_db/utils/case_generator/__init__.py,sha256=
|
|
663
|
-
endoreg_db/utils/case_generator/case_generator.py,sha256=klrytmkGg8zcQvKoY6JvyAN6iSd41i528I6PF-eHa3Y,5771
|
|
667
|
+
endoreg_db/utils/case_generator/__init__.py,sha256=gFAm9wvVySBnEP3_AOY6WeVMOSb7vGukZbqZak3lHa4,99
|
|
664
668
|
endoreg_db/utils/case_generator/lab_sample_factory.py,sha256=th4dDjLqRMNKw8jc7W2nICY4aMf4uDZ0T-sk2izqdus,905
|
|
665
|
-
endoreg_db/utils/
|
|
669
|
+
endoreg_db/utils/defaults/set_default_center.py,sha256=iJ1bSLHAo1Qe4QBrnpl0cquvAAJBQfx86zS6W2mV_TQ,1058
|
|
666
670
|
endoreg_db/utils/links/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
667
671
|
endoreg_db/utils/links/requirement_link.py,sha256=UgA6KsRtZpoPrZboorrdVyFwnL-NnDIc9zfMW3Rwrb0,9606
|
|
668
|
-
endoreg_db/utils/pipelines/Readme.md,sha256=
|
|
672
|
+
endoreg_db/utils/pipelines/Readme.md,sha256=QhyH472oxANH4C6Z7BAzh-N2Jg2nYBnG5Df8PTnJoEs,8275
|
|
669
673
|
endoreg_db/utils/pipelines/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
670
|
-
endoreg_db/utils/pipelines/process_video_dir.py,sha256=
|
|
674
|
+
endoreg_db/utils/pipelines/process_video_dir.py,sha256=g1YGtOY8pOQ5iAW2gzxngbP30mZ5olDjmb4uJJlScI8,5435
|
|
671
675
|
endoreg_db/utils/product/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
672
676
|
endoreg_db/utils/product/sum_emissions.py,sha256=echFNhc4oyFjxtCcUYYMEV-OVv7NN-XzWNmiTWweNMY,702
|
|
673
677
|
endoreg_db/utils/product/sum_weights.py,sha256=SeNm6L2ZT3RPN6TS2U7h0tMpCYSCYHaANj5ye0dpAYo,559
|
|
674
678
|
endoreg_db/utils/pydantic_models/__init__.py,sha256=qK_92ECIuirWzILReMdz_tOkrQqvxQZzGB7joUOLL8o,96
|
|
675
679
|
endoreg_db/utils/pydantic_models/db_config.py,sha256=Hg0ZlSJt-a1lRawO_jV5viPqnA5B_4Stak0TEBD-L9s,1743
|
|
676
680
|
endoreg_db/utils/requirement_operator_logic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
677
|
-
endoreg_db/utils/requirement_operator_logic/
|
|
678
|
-
endoreg_db/utils/requirement_operator_logic/
|
|
681
|
+
endoreg_db/utils/requirement_operator_logic/new_operator_logic.py,sha256=Qi5gXHRC2KFVC6eTsVsZa6JdWMTd5emm0ImddFc7jcg,3436
|
|
682
|
+
endoreg_db/utils/requirement_operator_logic/_old/lab_value_operators.py,sha256=tL3I0x3oZ46Ir12mKWolcswgoDT0CyBXay95fBMiAIo,24954
|
|
683
|
+
endoreg_db/utils/requirement_operator_logic/_old/model_evaluators.py,sha256=TxLcfYP71nCwFpF5XhVXVAspdl5ydXYJdVSYCoLbLh4,30228
|
|
679
684
|
endoreg_db/utils/video/__init__.py,sha256=EOAcatQ8bI1f3LhkE2E3YOzmm0FHqulk0O-jjZBgZFg,823
|
|
680
685
|
endoreg_db/utils/video/extract_frames.py,sha256=Pj9_pyfiwy-CFWiT4qysXn6VLCC-dQ1HpXOyyGqq0zE,3180
|
|
681
|
-
endoreg_db/utils/video/ffmpeg_wrapper.py,sha256=
|
|
686
|
+
endoreg_db/utils/video/ffmpeg_wrapper.py,sha256=FDA-XIYE3CcfKHptE-rs-3ajIVL4YOTZmNJmNgO_AYA,33191
|
|
682
687
|
endoreg_db/utils/video/names.py,sha256=m268j2Ynt94OYH6dYxeL8gzU5ODtFJD4OmzS7l0nBPU,1449
|
|
683
688
|
endoreg_db/utils/video/streaming_processor.py,sha256=C-39DtxhSnL7B2cObFE5k829VLXl_Fl0KQFrFP368JA,13747
|
|
684
689
|
endoreg_db/utils/video/video_splitter.py,sha256=EZEnhNjaUva_9VxjcjScgRSrxsEuifhBjlwIMLX1qaA,3698
|
|
685
690
|
endoreg_db/views/Frames_NICE_and_PARIS_classifications_views.py,sha256=Lu1JuUD44B6yUAR9pcYLlQ-3g66VTktmzStuO0uGIj4,8752
|
|
686
|
-
endoreg_db/views/__init__.py,sha256=
|
|
691
|
+
endoreg_db/views/__init__.py,sha256=7PEQv2zEoNK6n0egyH-F-Ansz1jnFMPsErF7_EHHOk4,5598
|
|
692
|
+
endoreg_db/views/ai/__init__.py,sha256=qWEMYkXekjmnChXc6XQs4HxrmK9VS-QaSw93HWThUm0,163
|
|
693
|
+
endoreg_db/views/ai/label.py,sha256=Hh9cQC_FDC50PxOk1Yo_4N8i8Ox0J8_beyIGTWKlLaA,4784
|
|
687
694
|
endoreg_db/views/anonymization/__init__.py,sha256=s1_r9j0jPJsKHy1-isjFAlRF3Cw0o8EXxyUP7Xv1Kqo,698
|
|
688
|
-
endoreg_db/views/anonymization/media_management.py,sha256=
|
|
689
|
-
endoreg_db/views/anonymization/overview.py,sha256=
|
|
690
|
-
endoreg_db/views/anonymization/validate.py,sha256=
|
|
695
|
+
endoreg_db/views/anonymization/media_management.py,sha256=4E0wdS2PjOFvV7Swc63kxHPgfy6JjYmS7TAbGfI4BIo,17178
|
|
696
|
+
endoreg_db/views/anonymization/overview.py,sha256=ApLCde_8ENi__CFOdHNXxx-9yteuHESNcDpaEUKGt8Q,8668
|
|
697
|
+
endoreg_db/views/anonymization/validate.py,sha256=p148PRfcQzz0IPjbniVDx_ms7n7kYbTIQqjFYyOV2yI,10569
|
|
691
698
|
endoreg_db/views/auth/__init__.py,sha256=i9KZEEKCb2sn2A1Gg0trTIbWzQ1cPiAIN-o7sBUaMtQ,214
|
|
692
699
|
endoreg_db/views/auth/keycloak.py,sha256=tgjQVfZwdyrbY437oXrOjs1j-2FYcTmUxG7obV_-GW8,4188
|
|
693
700
|
endoreg_db/views/examination/__init__.py,sha256=IBtbzExQB6VYy43AMCG6Fxq2uF5htyHXpYZxiI9C28Q,1206
|
|
@@ -706,41 +713,22 @@ endoreg_db/views/finding_classification/__init__.py,sha256=dxMyjCqXFyOs4p1MrkJrP
|
|
|
706
713
|
endoreg_db/views/finding_classification/base.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
707
714
|
endoreg_db/views/finding_classification/finding_classification.py,sha256=p-kFbZJJPNcxaRKsJR83yIDJxAumEXrXIL7Ikje-WXg,1571
|
|
708
715
|
endoreg_db/views/finding_classification/get_classification_choices.py,sha256=P2KPCtrYMS768MVa-gDtBI3y1K7AsIua2vtTGfbGAMk,1883
|
|
709
|
-
endoreg_db/views/
|
|
710
|
-
endoreg_db/views/
|
|
711
|
-
endoreg_db/views/
|
|
712
|
-
endoreg_db/views/
|
|
713
|
-
endoreg_db/views/
|
|
714
|
-
endoreg_db/views/label_video_segment/label_video_segment.py,sha256=SERQXxrMN7gICBSzt7fbZyfLo-zuBD4GZYtmwlw_EFE,3348
|
|
715
|
-
endoreg_db/views/label_video_segment/label_video_segment_by_label.py,sha256=xxb9gWq_417Bzl2LIaCBYzQvtpf384drZF0kR5NTt5k,7116
|
|
716
|
-
endoreg_db/views/label_video_segment/label_video_segment_detail.py,sha256=gs1llCyrHqzUuH24zq8Db9Aj1xnP8tkBZ64sOKmO5s0,3174
|
|
717
|
-
endoreg_db/views/label_video_segment/update_lvs_from_annotation.py,sha256=an3Bf4Jxap_vZrHW2XZV72fKkQhP3S2fsB3ZjXRjED8,1599
|
|
718
|
-
endoreg_db/views/label_video_segment/validate.py,sha256=1R7Ml-XgzZmzooYbPEnIkjm-u6rlvH-Yu5XGulhZEpI,8951
|
|
719
|
-
endoreg_db/views/media/__init__.py,sha256=JRRICKlyxrVQqN3ORM8WoJzVo2iRq6Mr72d-1REsM0k,1282
|
|
720
|
-
endoreg_db/views/media/pdf_media.py,sha256=0xUszgT7wbMQ5iW4ak4p_Xg78l1CMntsKqtnCLYp-EE,14573
|
|
721
|
-
endoreg_db/views/media/segments.py,sha256=d995_pLD2W6zdrB3bL9bdHrwS22sZXeG19-SLNU38gU,2613
|
|
722
|
-
endoreg_db/views/media/sensitive_metadata.py,sha256=CuIHLVGkjnBtWJHHERQvRApLzjkFbuRu-HBJEPqnhhQ,10456
|
|
723
|
-
endoreg_db/views/media/video_media.py,sha256=rt3DmuxHSH52yWW_r1t5ilq4DJ3w571IpUvyz5ilxz8,9632
|
|
724
|
-
endoreg_db/views/media/video_segments.py,sha256=N1gHYRI4Mdn74Amiv_gcuPessPDtXo65RdLTT70ZOOs,20027
|
|
725
|
-
endoreg_db/views/meta/__init__.py,sha256=cMwPBx55ad5zRX9DILqFm-a_ATc5SRVSMEGyHTC5cOo,470
|
|
726
|
-
endoreg_db/views/meta/available_files_list.py,sha256=CBaYVkj2YKB5n_J0gop0vXHkpgTE9Aamqt4tdCjTN2I,6181
|
|
727
|
-
endoreg_db/views/meta/report_meta.py,sha256=oLFTQ5YCVoCKlcYfbiN89--_9drBhMLeW9Ck_tmq08E,1733
|
|
728
|
-
endoreg_db/views/meta/sensitive_meta_detail.py,sha256=H8RFxYEEA82hip_wBdIW6mLftuwMTeRCdf5vRrNP8gM,5746
|
|
716
|
+
endoreg_db/views/media/__init__.py,sha256=8yoA_ovslolX7jqUROGQV4gI_9VnDQ_fVj3kAvTVMTU,867
|
|
717
|
+
endoreg_db/views/media/pdf_media.py,sha256=mWb06dFUX-EFVSv1lTu_iYrqxlafvL5NqRmCNmDzcZk,14360
|
|
718
|
+
endoreg_db/views/media/sensitive_metadata.py,sha256=Aeok0tQz-1ndKZ0qHpV4nJ75w98qkTvUZhX0wVfvM30,11637
|
|
719
|
+
endoreg_db/views/media/video_media.py,sha256=zStLnvMLLyxo2Nkz7PhGw3rSV6nVXwXyBc7pSl-Foi4,9573
|
|
720
|
+
endoreg_db/views/meta/__init__.py,sha256=gGSLgSBgxaHFTJ5fFphngXIWU3znmbgXL3la2nb51B0,206
|
|
729
721
|
endoreg_db/views/meta/sensitive_meta_list.py,sha256=tVh9sgqYvKWZ8qarLmwERh8a1ZcxZfYTB8vh70C-cRg,3664
|
|
730
722
|
endoreg_db/views/meta/sensitive_meta_verification.py,sha256=yT0N9MU3wye4tZMSKPu8Wy6HeFXSAD4AH5OlbblZqSM,2578
|
|
731
|
-
endoreg_db/views/misc/__init__.py,sha256=
|
|
723
|
+
endoreg_db/views/misc/__init__.py,sha256=0wg0Qfmv2Dst2hUjjg4KgYSnuMxTKBebze_Uh9KoqjA,1304
|
|
732
724
|
endoreg_db/views/misc/center.py,sha256=ogDP0z_Q7FWdWmftkbSbl5ppw7GOPzmG44CinGI5RR0,430
|
|
733
725
|
endoreg_db/views/misc/csrf.py,sha256=Cm30VMzqe7eMzTp-NYO5ZLEEsgx1-fuo20WXhlrko2Y,241
|
|
734
726
|
endoreg_db/views/misc/gender.py,sha256=g2u5bLKDmEsS418wYIUHcE3834V9EzjUcfalZey1soE,491
|
|
735
|
-
endoreg_db/views/misc/secure_file_serving_view.py,sha256=OB3O0nBNmyMavjlMO1s6lmNxroZ2X_fHLgmSS1bc7W0,2797
|
|
736
|
-
endoreg_db/views/misc/secure_file_url_view.py,sha256=3S-VD2h5IZYp4ri-4UHfilfX0LyMd68q5Hk1GmOyS58,2773
|
|
737
|
-
endoreg_db/views/misc/secure_url_validate.py,sha256=IFbjHbqyldm2L4wAg_x5w8xfDu3QjmIOvtqFTH0bPdo,2536
|
|
738
727
|
endoreg_db/views/misc/stats.py,sha256=TS1G8im95BPO6QNmydL8uZvT0r8Pe0ZoZ153U_KCkAA,8598
|
|
739
728
|
endoreg_db/views/misc/translation.py,sha256=v5HtOck7sQ53hj3m-q6Wlyp1zfgF-OkqhxoixH9JCvA,6359
|
|
740
|
-
endoreg_db/views/misc/upload_views.py,sha256=
|
|
729
|
+
endoreg_db/views/misc/upload_views.py,sha256=86o2JoU6tP0OZfd5YeQqAbCEYOzWQY4m3_0YbMldOaI,8456
|
|
741
730
|
endoreg_db/views/patient/__init__.py,sha256=luMjwQCtFQcuGddt_dGjYPNaMspYVphH9jkk4O-q08c,72
|
|
742
|
-
endoreg_db/views/patient/patient.py,sha256=
|
|
743
|
-
endoreg_db/views/patient_examination/DEPRECATED_video_backup.py,sha256=FA67kvKVNKCcgnX09I-B1MhVFs5DeJIQEUmE9k70vEE,9807
|
|
731
|
+
endoreg_db/views/patient/patient.py,sha256=qTFPebsaIJEobH8LTqZ5bDJexdUT2xs28YFCLY7Qy1Y,8913
|
|
744
732
|
endoreg_db/views/patient_examination/__init__.py,sha256=BHnjIbaiUn-fXJEwnKgZ2vaR2Z_ve2qluCJwG1FmmCQ,400
|
|
745
733
|
endoreg_db/views/patient_examination/patient_examination.py,sha256=7BGu06OB0wiob4hAExX_xIwEteeiDNu7gZlmwZiR1s4,5791
|
|
746
734
|
endoreg_db/views/patient_examination/patient_examination_create.py,sha256=kpqA5STL4UbY1Eu1M3_mn8Ydw0Dtiv5DqKU_dQyzKt0,2241
|
|
@@ -753,41 +741,31 @@ endoreg_db/views/patient_finding/patient_finding.py,sha256=J26qMJIZor1_DM66fRffP
|
|
|
753
741
|
endoreg_db/views/patient_finding/patient_finding_optimized.py,sha256=-hHyMWg8Q86xpCqabmqfuxzXtiHeWP-SmTWIMNsaQCQ,10560
|
|
754
742
|
endoreg_db/views/patient_finding_classification/__init__.py,sha256=hS3hSo5T8lRMcY-4IOsqqGU_VUM9bmZ8x-K7hGQ74Uw,121
|
|
755
743
|
endoreg_db/views/patient_finding_classification/pfc_create.py,sha256=SA7KPO-dVrqiVV823wRnWS5guYRhOoj3BVq6NgcZgic,2552
|
|
756
|
-
endoreg_db/views/
|
|
757
|
-
endoreg_db/views/
|
|
758
|
-
endoreg_db/views/
|
|
759
|
-
endoreg_db/views/patient_finding_morphology/pfm_create.py,sha256=-OYTH7iHPuSrYxbUrF7fQ6aAC0ES6UhiQ_Qo7tZi7II,2998
|
|
760
|
-
endoreg_db/views/pdf/__init__.py,sha256=bmDbvDLRmhOYTuPHMMaJMJU67js9t_K6Df987wRs4wU,135
|
|
761
|
-
endoreg_db/views/pdf/pdf_stream.py,sha256=QkF7ggSNk-GZGKT_eOnflMv6Fls-piMmbx1FXrUPy04,7429
|
|
762
|
-
endoreg_db/views/pdf/reimport.py,sha256=9tMIsxZ5R83rC-GBcJt78QBLqmYaEBypFd6ToEeTsfk,6939
|
|
763
|
-
endoreg_db/views/report/__init__.py,sha256=mw1WncSWijE73mSzkZPWsQ66ii9icZMLmEEEx9iV4BA,241
|
|
764
|
-
endoreg_db/views/report/report_list.py,sha256=Ziav43FKYux2dsETaX7zUYs-g7__4laHwXEMZSq1Ahs,3940
|
|
765
|
-
endoreg_db/views/report/report_with_secure_url.py,sha256=vMGgngPGvNkPYxhNjSJG6rZKN0yuSoJNl1vZPiAoh6I,1042
|
|
766
|
-
endoreg_db/views/report/start_examination.py,sha256=iYC_40S4aJEGsel1Y4boZFAR5UQTPKp9TIWW3oJwgTc,224
|
|
744
|
+
endoreg_db/views/report/__init__.py,sha256=PPXKbiawphRvWSXaFYnCrDrTautyD-l8TlpjW82W41s,150
|
|
745
|
+
endoreg_db/views/report/reimport.py,sha256=m2NwA9kcYdUY-7rFWPU687EzlH8AVBWy_bZ5nUTnVfY,7004
|
|
746
|
+
endoreg_db/views/report/report_stream.py,sha256=KJZ9c6jcOO5KA7zaghwW5ivncwDh0Pbxg_DBn29TIs0,7605
|
|
767
747
|
endoreg_db/views/requirement/__init__.py,sha256=dJzmbtO5-fLyzY3hfV3XHi6BbwElv_cF6R0TpsIaRJw,159
|
|
768
|
-
endoreg_db/views/requirement/evaluate.py,sha256=
|
|
769
|
-
endoreg_db/views/requirement/lookup.py,sha256=
|
|
770
|
-
endoreg_db/views/requirement/lookup_store.py,sha256=
|
|
748
|
+
endoreg_db/views/requirement/evaluate.py,sha256=twBRzxDy7w7RvdGiYCDdjUvfT9LeOhRE6n6NfJdRsDk,10041
|
|
749
|
+
endoreg_db/views/requirement/lookup.py,sha256=XSSPf01Q4e7TMuJjItxLX-FT2Uuahrshu7fBRv2lkZU,13135
|
|
750
|
+
endoreg_db/views/requirement/lookup_store.py,sha256=l2g3xKLWf-j-6Lk_CTEpxJlLBp0uhKFXoz6tDsBA5zs,4996
|
|
751
|
+
endoreg_db/views/requirement/requirement_utils.py,sha256=G562bDgto2if548bbLxstk9pCKsNhjok1f6gRodDyZg,2811
|
|
771
752
|
endoreg_db/views/requirement_lookup/lookup.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
772
753
|
endoreg_db/views/requirement_lookup/lookup_store.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
773
754
|
endoreg_db/views/stats/__init__.py,sha256=VHxrW0-RAWYki_89jWWJ0TrD7Nb0D3m-VjYV6bvP2k4,259
|
|
774
755
|
endoreg_db/views/stats/stats_views.py,sha256=v9ue1BKXdcApOgyolgNiT3hazx1xSVVvo26r91IozWY,8656
|
|
775
|
-
endoreg_db/views/video/__init__.py,sha256=
|
|
776
|
-
endoreg_db/views/video/correction.py,sha256=
|
|
777
|
-
endoreg_db/views/video/reimport.py,sha256=
|
|
778
|
-
endoreg_db/views/video/
|
|
779
|
-
endoreg_db/views/video/task_status.py,sha256=PXaesTS4R7Uhu9WBaTL4lscpOschVqyR32zVDUuSbfw,1770
|
|
780
|
-
endoreg_db/views/video/timeline.py,sha256=6jxS2gZh3bYH0eZSc-uHQhJwRDwTL6Um3CvaVkTl_pY,1793
|
|
781
|
-
endoreg_db/views/video/video_analyze.py,sha256=vxQHnXRFH5Y6IaWEmEnE4Svkz6Vjw1O9NEJRafdfOe4,1907
|
|
756
|
+
endoreg_db/views/video/__init__.py,sha256=jHTtpOocVyX8uZcccMKoDIJcsVXx65h6tUfGnQo2Mic,1326
|
|
757
|
+
endoreg_db/views/video/correction.py,sha256=6rW3y1f56UkRb3VUzi1keimIwC5CVvfKr1RoBZQqi_E,19432
|
|
758
|
+
endoreg_db/views/video/reimport.py,sha256=FJF__MAeJWcGFm4CzXuQuJe4wyFtEHe95Akmp5BQq90,8965
|
|
759
|
+
endoreg_db/views/video/segments_crud.py,sha256=_OjIlJgP4-yuI-P7IbVup5g6CUeadUc-FW6GToK-0_Q,21994
|
|
782
760
|
endoreg_db/views/video/video_apply_mask.py,sha256=spGK4oXMAKhVotJuwZGndbKKws6klveKe35mbX7Rv6k,1630
|
|
783
761
|
endoreg_db/views/video/video_correction.py,sha256=9mFICVvRSxp0WhGv7ib4d4M1hJs1iIhYmTl2OUIXQAg,767
|
|
784
762
|
endoreg_db/views/video/video_download_processed.py,sha256=tp5llYJKyQD0WSr4Fvqi-YrgBw2EPPe23E8F8SZbR4w,2000
|
|
785
763
|
endoreg_db/views/video/video_examination_viewset.py,sha256=ej6CUK1JGFN7JmZOj25g1heaIIAwh6cf1HaYFmcR9EE,8331
|
|
786
|
-
endoreg_db/views/video/
|
|
764
|
+
endoreg_db/views/video/video_meta_stats.py,sha256=h8dasBKwTl3havbEz6YciEt3jkt5WzY2vTl4R3sKqNE,1028
|
|
787
765
|
endoreg_db/views/video/video_processing_history.py,sha256=mhFuS8RG5GV8E-lTtuD0qrq-bIpnUFp8vy9aERfC-J8,770
|
|
788
766
|
endoreg_db/views/video/video_remove_frames.py,sha256=2FmvNrSPM0fUXiBxINN6vBUUDCqDlBkNcGR3WsLDgKo,1696
|
|
789
|
-
endoreg_db/views/video/video_stream.py,sha256=
|
|
790
|
-
endoreg_db-0.8.
|
|
791
|
-
endoreg_db-0.8.
|
|
792
|
-
endoreg_db-0.8.
|
|
793
|
-
endoreg_db-0.8.
|
|
767
|
+
endoreg_db/views/video/video_stream.py,sha256=_V1Gc11i6CHtc-PNjGMRPzFml4L8rDVcIHEMSNy5rD4,12162
|
|
768
|
+
endoreg_db-0.8.8.9.dist-info/METADATA,sha256=DaHWSQys6xh9sOtwC20FVK3oNvz9NWTVZY_EcwHEHII,14852
|
|
769
|
+
endoreg_db-0.8.8.9.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
|
|
770
|
+
endoreg_db-0.8.8.9.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
771
|
+
endoreg_db-0.8.8.9.dist-info/RECORD,,
|