datalab-platform 0.0.1.dev0__py3-none-any.whl → 1.0.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- datalab/__init__.py +35 -2
- datalab/adapters_metadata/__init__.py +31 -0
- datalab/adapters_metadata/base_adapter.py +316 -0
- datalab/adapters_metadata/common.py +422 -0
- datalab/adapters_metadata/geometry_adapter.py +98 -0
- datalab/adapters_metadata/table_adapter.py +84 -0
- datalab/adapters_plotpy/__init__.py +54 -0
- datalab/adapters_plotpy/annotations.py +124 -0
- datalab/adapters_plotpy/base.py +110 -0
- datalab/adapters_plotpy/converters.py +86 -0
- datalab/adapters_plotpy/factories.py +80 -0
- datalab/adapters_plotpy/objects/__init__.py +0 -0
- datalab/adapters_plotpy/objects/base.py +197 -0
- datalab/adapters_plotpy/objects/image.py +157 -0
- datalab/adapters_plotpy/objects/scalar.py +565 -0
- datalab/adapters_plotpy/objects/signal.py +264 -0
- datalab/adapters_plotpy/roi/__init__.py +0 -0
- datalab/adapters_plotpy/roi/base.py +146 -0
- datalab/adapters_plotpy/roi/factory.py +93 -0
- datalab/adapters_plotpy/roi/image.py +207 -0
- datalab/adapters_plotpy/roi/signal.py +72 -0
- datalab/app.py +98 -0
- datalab/config.py +817 -0
- datalab/control/__init__.py +0 -0
- datalab/control/baseproxy.py +776 -0
- datalab/control/proxy.py +343 -0
- datalab/control/remote.py +1005 -0
- datalab/data/doc/DataLab_en.pdf +0 -0
- datalab/data/doc/DataLab_fr.pdf +0 -0
- datalab/data/icons/analysis/delete_results.svg +109 -0
- datalab/data/icons/analysis/fw1e2.svg +156 -0
- datalab/data/icons/analysis/fwhm.svg +156 -0
- datalab/data/icons/analysis/histogram.svg +49 -0
- datalab/data/icons/analysis/peak_detect.svg +160 -0
- datalab/data/icons/analysis/plot_results.svg +151 -0
- datalab/data/icons/analysis/show_results.svg +83 -0
- datalab/data/icons/analysis/stats.svg +49 -0
- datalab/data/icons/analysis.svg +120 -0
- datalab/data/icons/apply.svg +3 -0
- datalab/data/icons/check_all.svg +15 -0
- datalab/data/icons/collapse.svg +44 -0
- datalab/data/icons/collapse_selection.svg +63 -0
- datalab/data/icons/console.svg +101 -0
- datalab/data/icons/create/1d-normal.svg +8 -0
- datalab/data/icons/create/1d-poisson.svg +9 -0
- datalab/data/icons/create/1d-uniform.svg +8 -0
- datalab/data/icons/create/1d-zero.svg +57 -0
- datalab/data/icons/create/2d-gaussian.svg +56 -0
- datalab/data/icons/create/2d-normal.svg +38 -0
- datalab/data/icons/create/2d-poisson.svg +38 -0
- datalab/data/icons/create/2d-ramp.svg +90 -0
- datalab/data/icons/create/2d-sinc.svg +62 -0
- datalab/data/icons/create/2d-uniform.svg +38 -0
- datalab/data/icons/create/2d-zero.svg +13 -0
- datalab/data/icons/create/checkerboard.svg +39 -0
- datalab/data/icons/create/cosine.svg +12 -0
- datalab/data/icons/create/exponential.svg +55 -0
- datalab/data/icons/create/gaussian.svg +12 -0
- datalab/data/icons/create/grating.svg +29 -0
- datalab/data/icons/create/linear_chirp.svg +7 -0
- datalab/data/icons/create/logistic.svg +7 -0
- datalab/data/icons/create/lorentzian.svg +12 -0
- datalab/data/icons/create/planck.svg +12 -0
- datalab/data/icons/create/polynomial.svg +7 -0
- datalab/data/icons/create/pulse.svg +12 -0
- datalab/data/icons/create/ring.svg +18 -0
- datalab/data/icons/create/sawtooth.svg +7 -0
- datalab/data/icons/create/siemens.svg +35 -0
- datalab/data/icons/create/sinc.svg +12 -0
- datalab/data/icons/create/sine.svg +7 -0
- datalab/data/icons/create/square.svg +7 -0
- datalab/data/icons/create/square_pulse.svg +7 -0
- datalab/data/icons/create/step.svg +7 -0
- datalab/data/icons/create/step_pulse.svg +12 -0
- datalab/data/icons/create/triangle.svg +7 -0
- datalab/data/icons/create/voigt.svg +12 -0
- datalab/data/icons/edit/annotations.svg +72 -0
- datalab/data/icons/edit/annotations_copy.svg +114 -0
- datalab/data/icons/edit/annotations_delete.svg +83 -0
- datalab/data/icons/edit/annotations_edit.svg +98 -0
- datalab/data/icons/edit/annotations_export.svg +85 -0
- datalab/data/icons/edit/annotations_import.svg +85 -0
- datalab/data/icons/edit/annotations_paste.svg +100 -0
- datalab/data/icons/edit/copy_titles.svg +109 -0
- datalab/data/icons/edit/delete.svg +84 -0
- datalab/data/icons/edit/delete_all.svg +214 -0
- datalab/data/icons/edit/duplicate.svg +64 -0
- datalab/data/icons/edit/goto_source.svg +60 -0
- datalab/data/icons/edit/metadata.svg +60 -0
- datalab/data/icons/edit/metadata_add.svg +80 -0
- datalab/data/icons/edit/metadata_copy.svg +96 -0
- datalab/data/icons/edit/metadata_delete.svg +62 -0
- datalab/data/icons/edit/metadata_export.svg +68 -0
- datalab/data/icons/edit/metadata_import.svg +68 -0
- datalab/data/icons/edit/metadata_paste.svg +79 -0
- datalab/data/icons/edit/move_down.svg +55 -0
- datalab/data/icons/edit/move_up.svg +54 -0
- datalab/data/icons/edit/new_group.svg +76 -0
- datalab/data/icons/edit/recompute.svg +60 -0
- datalab/data/icons/edit/rename.svg +49 -0
- datalab/data/icons/edit.svg +16 -0
- datalab/data/icons/expand.svg +44 -0
- datalab/data/icons/expand_selection.svg +63 -0
- datalab/data/icons/fit/cdf_fit.svg +56 -0
- datalab/data/icons/fit/exponential_fit.svg +55 -0
- datalab/data/icons/fit/gaussian_fit.svg +62 -0
- datalab/data/icons/fit/interactive_fit.svg +101 -0
- datalab/data/icons/fit/linear_fit.svg +57 -0
- datalab/data/icons/fit/lorentzian_fit.svg +209 -0
- datalab/data/icons/fit/multigaussian_fit.svg +85 -0
- datalab/data/icons/fit/multilorentzian_fit.svg +85 -0
- datalab/data/icons/fit/piecewiseexponential_fit.svg +209 -0
- datalab/data/icons/fit/planckian_fit.svg +62 -0
- datalab/data/icons/fit/polynomial_fit.svg +59 -0
- datalab/data/icons/fit/sigmoid_fit.svg +56 -0
- datalab/data/icons/fit/sinusoidal_fit.svg +72 -0
- datalab/data/icons/fit/twohalfgaussian_fit.svg +63 -0
- datalab/data/icons/fit/voigt_fit.svg +57 -0
- datalab/data/icons/group.svg +56 -0
- datalab/data/icons/h5/h5array.svg +59 -0
- datalab/data/icons/h5/h5attrs.svg +75 -0
- datalab/data/icons/h5/h5browser.svg +133 -0
- datalab/data/icons/h5/h5file.svg +69 -0
- datalab/data/icons/h5/h5group.svg +49 -0
- datalab/data/icons/h5/h5scalar.svg +1 -0
- datalab/data/icons/help_pdf.svg +46 -0
- datalab/data/icons/history.svg +7 -0
- datalab/data/icons/image.svg +135 -0
- datalab/data/icons/io/fileopen_directory.svg +60 -0
- datalab/data/icons/io/fileopen_h5.svg +84 -0
- datalab/data/icons/io/fileopen_ima.svg +187 -0
- datalab/data/icons/io/fileopen_py.svg +123 -0
- datalab/data/icons/io/fileopen_sig.svg +138 -0
- datalab/data/icons/io/filesave_h5.svg +97 -0
- datalab/data/icons/io/filesave_ima.svg +200 -0
- datalab/data/icons/io/filesave_py.svg +136 -0
- datalab/data/icons/io/filesave_sig.svg +151 -0
- datalab/data/icons/io/import_text.svg +144 -0
- datalab/data/icons/io/save_to_directory.svg +134 -0
- datalab/data/icons/io.svg +84 -0
- datalab/data/icons/libre-camera-flash-off.svg +1 -0
- datalab/data/icons/libre-camera-flash-on.svg +1 -0
- datalab/data/icons/libre-gui-about.svg +1 -0
- datalab/data/icons/libre-gui-action-delete.svg +1 -0
- datalab/data/icons/libre-gui-add.svg +1 -0
- datalab/data/icons/libre-gui-arrow-down.svg +1 -0
- datalab/data/icons/libre-gui-arrow-left.svg +1 -0
- datalab/data/icons/libre-gui-arrow-right.svg +1 -0
- datalab/data/icons/libre-gui-arrow-up.svg +1 -0
- datalab/data/icons/libre-gui-close.svg +40 -0
- datalab/data/icons/libre-gui-cogs.svg +1 -0
- datalab/data/icons/libre-gui-globe.svg +1 -0
- datalab/data/icons/libre-gui-help.svg +1 -0
- datalab/data/icons/libre-gui-link.svg +1 -0
- datalab/data/icons/libre-gui-menu.svg +1 -0
- datalab/data/icons/libre-gui-pencil.svg +1 -0
- datalab/data/icons/libre-gui-plugin.svg +1 -0
- datalab/data/icons/libre-gui-questions.svg +1 -0
- datalab/data/icons/libre-gui-settings.svg +1 -0
- datalab/data/icons/libre-gui-unlink.svg +1 -0
- datalab/data/icons/libre-tech-ram.svg +1 -0
- datalab/data/icons/libre-toolbox.svg +1 -0
- datalab/data/icons/logs.svg +1 -0
- datalab/data/icons/markers.svg +74 -0
- datalab/data/icons/menu.svg +13 -0
- datalab/data/icons/new_ima.svg +148 -0
- datalab/data/icons/new_sig.svg +123 -0
- datalab/data/icons/operations/abs.svg +116 -0
- datalab/data/icons/operations/arithmetic.svg +123 -0
- datalab/data/icons/operations/average.svg +124 -0
- datalab/data/icons/operations/complex_from_magnitude_phase.svg +116 -0
- datalab/data/icons/operations/complex_from_real_imag.svg +124 -0
- datalab/data/icons/operations/constant.svg +116 -0
- datalab/data/icons/operations/constant_add.svg +109 -0
- datalab/data/icons/operations/constant_divide.svg +109 -0
- datalab/data/icons/operations/constant_multiply.svg +109 -0
- datalab/data/icons/operations/constant_subtract.svg +109 -0
- datalab/data/icons/operations/convert_dtype.svg +117 -0
- datalab/data/icons/operations/convolution.svg +46 -0
- datalab/data/icons/operations/deconvolution.svg +57 -0
- datalab/data/icons/operations/derivative.svg +127 -0
- datalab/data/icons/operations/difference.svg +52 -0
- datalab/data/icons/operations/division.svg +139 -0
- datalab/data/icons/operations/exp.svg +116 -0
- datalab/data/icons/operations/flip_horizontally.svg +69 -0
- datalab/data/icons/operations/flip_vertically.svg +74 -0
- datalab/data/icons/operations/im.svg +124 -0
- datalab/data/icons/operations/integral.svg +50 -0
- datalab/data/icons/operations/inverse.svg +143 -0
- datalab/data/icons/operations/log10.svg +109 -0
- datalab/data/icons/operations/phase.svg +116 -0
- datalab/data/icons/operations/power.svg +118 -0
- datalab/data/icons/operations/product.svg +124 -0
- datalab/data/icons/operations/profile.svg +379 -0
- datalab/data/icons/operations/profile_average.svg +399 -0
- datalab/data/icons/operations/profile_radial.svg +261 -0
- datalab/data/icons/operations/profile_segment.svg +262 -0
- datalab/data/icons/operations/quadratic_difference.svg +84 -0
- datalab/data/icons/operations/re.svg +124 -0
- datalab/data/icons/operations/rotate_left.svg +72 -0
- datalab/data/icons/operations/rotate_right.svg +72 -0
- datalab/data/icons/operations/signals_to_image.svg +314 -0
- datalab/data/icons/operations/sqrt.svg +110 -0
- datalab/data/icons/operations/std.svg +124 -0
- datalab/data/icons/operations/sum.svg +102 -0
- datalab/data/icons/play_demo.svg +9 -0
- datalab/data/icons/processing/axis_transform.svg +62 -0
- datalab/data/icons/processing/bandpass.svg +79 -0
- datalab/data/icons/processing/bandstop.svg +71 -0
- datalab/data/icons/processing/binning.svg +126 -0
- datalab/data/icons/processing/clip.svg +119 -0
- datalab/data/icons/processing/detrending.svg +173 -0
- datalab/data/icons/processing/distribute_on_grid.svg +769 -0
- datalab/data/icons/processing/edge_detection.svg +46 -0
- datalab/data/icons/processing/erase.svg +1 -0
- datalab/data/icons/processing/exposure.svg +143 -0
- datalab/data/icons/processing/fourier.svg +104 -0
- datalab/data/icons/processing/highpass.svg +59 -0
- datalab/data/icons/processing/interpolation.svg +71 -0
- datalab/data/icons/processing/level_adjustment.svg +70 -0
- datalab/data/icons/processing/lowpass.svg +60 -0
- datalab/data/icons/processing/morphology.svg +49 -0
- datalab/data/icons/processing/noise_addition.svg +114 -0
- datalab/data/icons/processing/noise_reduction.svg +38 -0
- datalab/data/icons/processing/normalize.svg +84 -0
- datalab/data/icons/processing/offset_correction.svg +131 -0
- datalab/data/icons/processing/resampling1d.svg +101 -0
- datalab/data/icons/processing/resampling2d.svg +240 -0
- datalab/data/icons/processing/reset_positions.svg +185 -0
- datalab/data/icons/processing/resize.svg +9 -0
- datalab/data/icons/processing/reverse_signal_x.svg +171 -0
- datalab/data/icons/processing/stability.svg +11 -0
- datalab/data/icons/processing/swap_x_y.svg +65 -0
- datalab/data/icons/processing/thresholding.svg +63 -0
- datalab/data/icons/processing/windowing.svg +45 -0
- datalab/data/icons/properties.svg +26 -0
- datalab/data/icons/reset.svg +9 -0
- datalab/data/icons/restore.svg +40 -0
- datalab/data/icons/roi/roi.svg +76 -0
- datalab/data/icons/roi/roi_coordinate.svg +78 -0
- datalab/data/icons/roi/roi_copy.svg +112 -0
- datalab/data/icons/roi/roi_delete.svg +81 -0
- datalab/data/icons/roi/roi_export.svg +87 -0
- datalab/data/icons/roi/roi_graphical.svg +78 -0
- datalab/data/icons/roi/roi_grid.svg +67 -0
- datalab/data/icons/roi/roi_ima.svg +188 -0
- datalab/data/icons/roi/roi_import.svg +87 -0
- datalab/data/icons/roi/roi_new.svg +81 -0
- datalab/data/icons/roi/roi_new_circle.svg +95 -0
- datalab/data/icons/roi/roi_new_polygon.svg +110 -0
- datalab/data/icons/roi/roi_new_rectangle.svg +70 -0
- datalab/data/icons/roi/roi_paste.svg +98 -0
- datalab/data/icons/roi/roi_sig.svg +124 -0
- datalab/data/icons/shapes.svg +134 -0
- datalab/data/icons/signal.svg +103 -0
- datalab/data/icons/table.svg +85 -0
- datalab/data/icons/table_unavailable.svg +102 -0
- datalab/data/icons/to_signal.svg +124 -0
- datalab/data/icons/tour/next.svg +44 -0
- datalab/data/icons/tour/previous.svg +44 -0
- datalab/data/icons/tour/rewind.svg +51 -0
- datalab/data/icons/tour/stop.svg +47 -0
- datalab/data/icons/tour/tour.svg +16 -0
- datalab/data/icons/uncheck_all.svg +78 -0
- datalab/data/icons/view/curve_antialiasing.svg +50 -0
- datalab/data/icons/view/new_window.svg +98 -0
- datalab/data/icons/view/refresh-auto.svg +57 -0
- datalab/data/icons/view/refresh-manual.svg +51 -0
- datalab/data/icons/view/reset_curve_styles.svg +96 -0
- datalab/data/icons/view/show_first.svg +55 -0
- datalab/data/icons/view/show_titles.svg +46 -0
- datalab/data/icons/visualization.svg +51 -0
- datalab/data/logo/DataLab-Banner-150.png +0 -0
- datalab/data/logo/DataLab-Banner-200.png +0 -0
- datalab/data/logo/DataLab-Banner2-100.png +0 -0
- datalab/data/logo/DataLab-Splash.png +0 -0
- datalab/data/logo/DataLab-watermark.png +0 -0
- datalab/data/logo/DataLab.svg +83 -0
- datalab/data/tests/reordering_test.h5 +0 -0
- datalab/data/tutorials/fabry_perot/fabry-perot1.jpg +0 -0
- datalab/data/tutorials/fabry_perot/fabry-perot2.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_13.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_18.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_23.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_30.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_35.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_40.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_45.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_50.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_55.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_60.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_65.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_70.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_75.jpg +0 -0
- datalab/data/tutorials/laser_beam/TEM00_z_80.jpg +0 -0
- datalab/env.py +542 -0
- datalab/gui/__init__.py +89 -0
- datalab/gui/actionhandler.py +1701 -0
- datalab/gui/docks.py +473 -0
- datalab/gui/h5io.py +150 -0
- datalab/gui/macroeditor.py +310 -0
- datalab/gui/main.py +2081 -0
- datalab/gui/newobject.py +217 -0
- datalab/gui/objectview.py +766 -0
- datalab/gui/panel/__init__.py +48 -0
- datalab/gui/panel/base.py +3254 -0
- datalab/gui/panel/image.py +157 -0
- datalab/gui/panel/macro.py +607 -0
- datalab/gui/panel/signal.py +164 -0
- datalab/gui/plothandler.py +800 -0
- datalab/gui/processor/__init__.py +84 -0
- datalab/gui/processor/base.py +2456 -0
- datalab/gui/processor/catcher.py +75 -0
- datalab/gui/processor/image.py +1214 -0
- datalab/gui/processor/signal.py +755 -0
- datalab/gui/profiledialog.py +333 -0
- datalab/gui/roieditor.py +633 -0
- datalab/gui/roigrideditor.py +208 -0
- datalab/gui/settings.py +612 -0
- datalab/gui/tour.py +908 -0
- datalab/h5/__init__.py +12 -0
- datalab/h5/common.py +314 -0
- datalab/h5/generic.py +580 -0
- datalab/h5/native.py +39 -0
- datalab/h5/utils.py +95 -0
- datalab/objectmodel.py +640 -0
- datalab/plugins/_readme_.txt +9 -0
- datalab/plugins/datalab_imageformats.py +175 -0
- datalab/plugins/datalab_testdata.py +190 -0
- datalab/plugins.py +355 -0
- datalab/tests/__init__.py +199 -0
- datalab/tests/backbone/__init__.py +1 -0
- datalab/tests/backbone/config_unit_test.py +170 -0
- datalab/tests/backbone/config_versioning_unit_test.py +34 -0
- datalab/tests/backbone/dictlistserial_app_test.py +38 -0
- datalab/tests/backbone/errorcatcher_unit_test.py +69 -0
- datalab/tests/backbone/errormsgbox_unit_test.py +50 -0
- datalab/tests/backbone/execenv_unit.py +262 -0
- datalab/tests/backbone/loadtest_gdi.py +147 -0
- datalab/tests/backbone/long_callback.py +96 -0
- datalab/tests/backbone/main_app_test.py +137 -0
- datalab/tests/backbone/memory_leak.py +43 -0
- datalab/tests/backbone/procisolation1_unit.py +128 -0
- datalab/tests/backbone/procisolation2_unit.py +171 -0
- datalab/tests/backbone/procisolation_unit_test.py +22 -0
- datalab/tests/backbone/profiling_app.py +27 -0
- datalab/tests/backbone/strings_unit_test.py +65 -0
- datalab/tests/backbone/title_formatting_unit_test.py +82 -0
- datalab/tests/conftest.py +131 -0
- datalab/tests/features/__init__.py +1 -0
- datalab/tests/features/applauncher/__init__.py +1 -0
- datalab/tests/features/applauncher/launcher1_app_test.py +28 -0
- datalab/tests/features/applauncher/launcher2_app_test.py +30 -0
- datalab/tests/features/common/__init__.py +1 -0
- datalab/tests/features/common/add_metadata_app_test.py +134 -0
- datalab/tests/features/common/add_metadata_unit_test.py +267 -0
- datalab/tests/features/common/annotations_management_unit_test.py +152 -0
- datalab/tests/features/common/auto_analysis_recompute_unit_test.py +240 -0
- datalab/tests/features/common/createobject_unit_test.py +50 -0
- datalab/tests/features/common/geometry_results_app_test.py +135 -0
- datalab/tests/features/common/interactive_processing_test.py +1109 -0
- datalab/tests/features/common/io_app_test.py +75 -0
- datalab/tests/features/common/large_results_app_test.py +187 -0
- datalab/tests/features/common/metadata_all_patterns_test.py +103 -0
- datalab/tests/features/common/metadata_app_test.py +139 -0
- datalab/tests/features/common/metadata_io_unit_test.py +60 -0
- datalab/tests/features/common/misc_app_test.py +236 -0
- datalab/tests/features/common/multiple_geometry_results_unit_test.py +122 -0
- datalab/tests/features/common/multiple_table_results_unit_test.py +64 -0
- datalab/tests/features/common/operation_modes_app_test.py +392 -0
- datalab/tests/features/common/plot_results_app_test.py +278 -0
- datalab/tests/features/common/reorder_app_test.py +75 -0
- datalab/tests/features/common/result_deletion_unit_test.py +96 -0
- datalab/tests/features/common/result_merged_label_unit_test.py +154 -0
- datalab/tests/features/common/result_shape_settings_unit_test.py +223 -0
- datalab/tests/features/common/roi_plotitem_unit_test.py +64 -0
- datalab/tests/features/common/roieditor_unit_test.py +102 -0
- datalab/tests/features/common/save_to_dir_app_test.py +163 -0
- datalab/tests/features/common/save_to_dir_unit_test.py +474 -0
- datalab/tests/features/common/stat_app_test.py +40 -0
- datalab/tests/features/common/stats_tools_unit_test.py +77 -0
- datalab/tests/features/common/table_results_app_test.py +52 -0
- datalab/tests/features/common/textimport_unit_test.py +131 -0
- datalab/tests/features/common/uuid_preservation_test.py +281 -0
- datalab/tests/features/common/worker_unit_test.py +402 -0
- datalab/tests/features/control/__init__.py +1 -0
- datalab/tests/features/control/connect_dialog.py +28 -0
- datalab/tests/features/control/embedded1_unit_test.py +304 -0
- datalab/tests/features/control/embedded2_unit_test.py +52 -0
- datalab/tests/features/control/remoteclient_app_test.py +219 -0
- datalab/tests/features/control/remoteclient_unit.py +75 -0
- datalab/tests/features/control/simpleclient_unit_test.py +321 -0
- datalab/tests/features/hdf5/__init__.py +1 -0
- datalab/tests/features/hdf5/h5browser1_unit_test.py +31 -0
- datalab/tests/features/hdf5/h5browser2_unit.py +55 -0
- datalab/tests/features/hdf5/h5browser_app_test.py +77 -0
- datalab/tests/features/hdf5/h5import_app_test.py +25 -0
- datalab/tests/features/hdf5/h5importer_app_test.py +34 -0
- datalab/tests/features/image/__init__.py +1 -0
- datalab/tests/features/image/annotations_app_test.py +28 -0
- datalab/tests/features/image/annotations_unit_test.py +80 -0
- datalab/tests/features/image/average_app_test.py +46 -0
- datalab/tests/features/image/background_dialog_test.py +70 -0
- datalab/tests/features/image/blobs_app_test.py +50 -0
- datalab/tests/features/image/contour_app_test.py +42 -0
- datalab/tests/features/image/contour_fabryperot_app_test.py +51 -0
- datalab/tests/features/image/denoise_app_test.py +31 -0
- datalab/tests/features/image/distribute_on_grid_app_test.py +95 -0
- datalab/tests/features/image/edges_app_test.py +31 -0
- datalab/tests/features/image/erase_app_test.py +21 -0
- datalab/tests/features/image/fft2d_app_test.py +27 -0
- datalab/tests/features/image/flatfield_app_test.py +40 -0
- datalab/tests/features/image/geometry_transform_unit_test.py +396 -0
- datalab/tests/features/image/imagetools_app_test.py +51 -0
- datalab/tests/features/image/imagetools_unit_test.py +27 -0
- datalab/tests/features/image/load_app_test.py +73 -0
- datalab/tests/features/image/morph_app_test.py +32 -0
- datalab/tests/features/image/offsetcorrection_app_test.py +30 -0
- datalab/tests/features/image/peak2d_app_test.py +53 -0
- datalab/tests/features/image/profile_app_test.py +73 -0
- datalab/tests/features/image/profile_dialog_test.py +56 -0
- datalab/tests/features/image/roi_app_test.py +98 -0
- datalab/tests/features/image/roi_circ_app_test.py +62 -0
- datalab/tests/features/image/roi_manipulation_app_test.py +268 -0
- datalab/tests/features/image/roigrid_unit_test.py +60 -0
- datalab/tests/features/image/side_by_side_app_test.py +52 -0
- datalab/tests/features/macro/__init__.py +1 -0
- datalab/tests/features/macro/macro_app_test.py +28 -0
- datalab/tests/features/macro/macroeditor_unit_test.py +102 -0
- datalab/tests/features/signal/__init__.py +1 -0
- datalab/tests/features/signal/baseline_dialog_test.py +53 -0
- datalab/tests/features/signal/deltax_dialog_unit_test.py +34 -0
- datalab/tests/features/signal/fft1d_app_test.py +26 -0
- datalab/tests/features/signal/filter_app_test.py +44 -0
- datalab/tests/features/signal/fitdialog_unit_test.py +50 -0
- datalab/tests/features/signal/interpolation_app_test.py +110 -0
- datalab/tests/features/signal/loadbigsignal_app_test.py +80 -0
- datalab/tests/features/signal/multiple_rois_unit_test.py +132 -0
- datalab/tests/features/signal/pulse_features_app_test.py +118 -0
- datalab/tests/features/signal/pulse_features_roi_app_test.py +55 -0
- datalab/tests/features/signal/roi_app_test.py +78 -0
- datalab/tests/features/signal/roi_manipulation_app_test.py +261 -0
- datalab/tests/features/signal/select_xy_cursor_unit_test.py +46 -0
- datalab/tests/features/signal/signalpeakdetection_dialog_test.py +33 -0
- datalab/tests/features/signal/signals_to_image_app_test.py +98 -0
- datalab/tests/features/signal/xarray_compat_app_test.py +128 -0
- datalab/tests/features/tour_unit_test.py +22 -0
- datalab/tests/features/utilities/__init__.py +1 -0
- datalab/tests/features/utilities/installconf_unit_test.py +21 -0
- datalab/tests/features/utilities/logview_app_test.py +21 -0
- datalab/tests/features/utilities/logview_error.py +24 -0
- datalab/tests/features/utilities/logview_unit_test.py +21 -0
- datalab/tests/features/utilities/memstatus_app_test.py +42 -0
- datalab/tests/features/utilities/settings_unit_test.py +88 -0
- datalab/tests/scenarios/__init__.py +1 -0
- datalab/tests/scenarios/beautiful_app.py +121 -0
- datalab/tests/scenarios/common.py +463 -0
- datalab/tests/scenarios/demo.py +212 -0
- datalab/tests/scenarios/example_app_test.py +47 -0
- datalab/tests/scenarios/scenario_h5_app_test.py +75 -0
- datalab/tests/scenarios/scenario_ima1_app_test.py +34 -0
- datalab/tests/scenarios/scenario_ima2_app_test.py +34 -0
- datalab/tests/scenarios/scenario_mac_app_test.py +58 -0
- datalab/tests/scenarios/scenario_sig1_app_test.py +36 -0
- datalab/tests/scenarios/scenario_sig2_app_test.py +35 -0
- datalab/utils/__init__.py +1 -0
- datalab/utils/conf.py +304 -0
- datalab/utils/dephash.py +105 -0
- datalab/utils/qthelpers.py +633 -0
- datalab/utils/strings.py +34 -0
- datalab/utils/tests.py +0 -0
- datalab/widgets/__init__.py +1 -0
- datalab/widgets/connection.py +138 -0
- datalab/widgets/filedialog.py +91 -0
- datalab/widgets/fileviewer.py +84 -0
- datalab/widgets/fitdialog.py +788 -0
- datalab/widgets/h5browser.py +1048 -0
- datalab/widgets/imagebackground.py +111 -0
- datalab/widgets/instconfviewer.py +175 -0
- datalab/widgets/logviewer.py +80 -0
- datalab/widgets/signalbaseline.py +90 -0
- datalab/widgets/signalcursor.py +208 -0
- datalab/widgets/signaldeltax.py +151 -0
- datalab/widgets/signalpeak.py +199 -0
- datalab/widgets/status.py +249 -0
- datalab/widgets/textimport.py +786 -0
- datalab/widgets/warningerror.py +223 -0
- datalab/widgets/wizard.py +286 -0
- datalab_platform-1.0.1.dist-info/METADATA +121 -0
- datalab_platform-1.0.1.dist-info/RECORD +494 -0
- datalab_platform-0.0.1.dev0.dist-info/METADATA +0 -67
- datalab_platform-0.0.1.dev0.dist-info/RECORD +0 -7
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/WHEEL +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/entry_points.txt +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/licenses/LICENSE +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.1.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="roi_new_circle.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#000000"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="1009"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="33.714286"
|
|
47
|
+
inkscape:cx="7.1038135"
|
|
48
|
+
inkscape:cy="3.0105932"
|
|
49
|
+
inkscape:window-x="1912"
|
|
50
|
+
inkscape:window-y="-8"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:showpageshadow="2"
|
|
54
|
+
inkscape:pagecheckerboard="false"
|
|
55
|
+
inkscape:deskcolor="#000000" />
|
|
56
|
+
<circle
|
|
57
|
+
style="fill:none;stroke:#4949ff;stroke-width:0.85;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
58
|
+
id="path2"
|
|
59
|
+
cx="7"
|
|
60
|
+
cy="7"
|
|
61
|
+
r="5.1221833" />
|
|
62
|
+
<circle
|
|
63
|
+
style="fill:#4949ff;fill-opacity:1;stroke:none;stroke-width:0.53125;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
64
|
+
id="path3"
|
|
65
|
+
cx="7"
|
|
66
|
+
cy="1.9491527"
|
|
67
|
+
r="1.25" />
|
|
68
|
+
<circle
|
|
69
|
+
style="fill:#4949ff;fill-opacity:1;stroke:none;stroke-width:0.53125;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
70
|
+
id="path3-6"
|
|
71
|
+
cx="1.9406781"
|
|
72
|
+
cy="7"
|
|
73
|
+
r="1.25" />
|
|
74
|
+
<circle
|
|
75
|
+
style="fill:#4949ff;fill-opacity:1;stroke:none;stroke-width:0.53125;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
76
|
+
id="path3-7"
|
|
77
|
+
cx="12.029662"
|
|
78
|
+
cy="6.9703388"
|
|
79
|
+
r="1.25" />
|
|
80
|
+
<circle
|
|
81
|
+
style="fill:#4949ff;fill-opacity:1;stroke:none;stroke-width:0.53125;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
82
|
+
id="path3-1"
|
|
83
|
+
cx="7"
|
|
84
|
+
cy="11.995762"
|
|
85
|
+
r="1.25" />
|
|
86
|
+
<path
|
|
87
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0252119;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
88
|
+
d="M 5.5037336,11.432041 C 4.1425431,10.975327 3.0480301,9.8833563 2.5678045,8.5029332 2.4535682,8.1745575 2.453717,8.1438335 2.569776,8.0957601 2.6209706,8.0745545 2.734719,7.987045 2.8225502,7.9012944 c 0.4960946,-0.4843433 0.4960946,-1.3182456 0,-1.8025889 C 2.734719,6.0129549 2.6209706,5.9254454 2.569776,5.9042398 2.4536036,5.8561196 2.4535034,5.8251538 2.5684581,5.4970667 2.8152384,4.7927423 3.1716846,4.2246117 3.6911559,3.7076271 4.086159,3.3145148 4.4203409,3.0686769 4.8778102,2.8346757 5.1559216,2.6924182 5.8206349,2.4386924 5.8407285,2.4671229 c 0.00372,0.00526 0.041566,0.070403 0.084101,0.1447527 0.1078656,0.1885463 0.317472,0.3722913 0.5507754,0.4828208 0.1850741,0.08768 0.219615,0.093863 0.5243952,0.093863 0.3047803,0 0.3393212,-0.00618 0.5243953,-0.093863 0.2333034,-0.1105295 0.4429098,-0.2942745 0.5507754,-0.4828208 0.042535,-0.074349 0.08038,-0.1394881 0.084101,-0.1447527 0.020094,-0.028431 0.684807,0.2252953 0.9629182,0.3675528 0.4576191,0.2340779 0.7917691,0.4799293 1.186475,0.8729514 0.499316,0.4971856 0.83809,1.021257 1.073727,1.6610169 0.162872,0.4422016 0.162524,0.4326846 0.01852,0.506149 -0.302988,0.1545727 -0.574654,0.5590888 -0.617071,0.9188297 -0.0623,0.5283568 0.197731,1.0571457 0.628929,1.2789736 l 0.134811,0.069353 -0.100196,0.3050941 C 10.986732,9.8497257 9.8820708,10.967068 8.4962662,11.432041 L 8.1864406,11.535996 8.1165483,11.398502 C 8.0117752,11.192389 7.7590704,10.956354 7.5266188,10.847487 c -0.1863349,-0.08727 -0.2231677,-0.09388 -0.5266189,-0.0946 -0.3065163,-7.22e-4 -0.3384363,0.005 -0.5271898,0.0944 C 6.2397997,10.957659 5.987678,11.193462 5.8834516,11.3985 l -0.069892,0.137494 z"
|
|
89
|
+
id="path4" />
|
|
90
|
+
<path
|
|
91
|
+
style="fill:#ffff00;fill-opacity:1;stroke:#ff6600;stroke-width:0.436794;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
92
|
+
d="M 9.0293733,6.871397 V 9.0704948 H 6.828397 v 2.2412812 h 2.2009763 v 2.199098 h 2.2375217 v -2.199098 h 2.200977 V 9.0704948 H 11.266895 V 6.871397 Z"
|
|
93
|
+
id="rect3031"
|
|
94
|
+
inkscape:connector-curvature="0" />
|
|
95
|
+
</svg>
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="roi_new_polygon.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#000000"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="1009"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="7.118644"
|
|
48
|
+
inkscape:cy="7.029661"
|
|
49
|
+
inkscape:window-x="-8"
|
|
50
|
+
inkscape:window-y="-8"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:showpageshadow="2"
|
|
54
|
+
inkscape:pagecheckerboard="false"
|
|
55
|
+
inkscape:deskcolor="#000000" />
|
|
56
|
+
<g
|
|
57
|
+
id="g1"
|
|
58
|
+
transform="matrix(1,0,0,-1,-4.1745758e-7,13.822034)">
|
|
59
|
+
<circle
|
|
60
|
+
style="fill:#4949ff;fill-opacity:1;stroke:none;stroke-width:0.53125;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
61
|
+
id="path3"
|
|
62
|
+
cx="9.0296612"
|
|
63
|
+
cy="1.3771187"
|
|
64
|
+
r="1.25" />
|
|
65
|
+
<circle
|
|
66
|
+
style="fill:#4949ff;fill-opacity:1;stroke:none;stroke-width:0.53125;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
67
|
+
id="path3-3"
|
|
68
|
+
cx="1.6991526"
|
|
69
|
+
cy="2.7669492"
|
|
70
|
+
r="1.25" />
|
|
71
|
+
<circle
|
|
72
|
+
style="fill:#4949ff;fill-opacity:1;stroke:none;stroke-width:0.53125;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
73
|
+
id="path3-8"
|
|
74
|
+
cx="4.1144066"
|
|
75
|
+
cy="6.8940678"
|
|
76
|
+
r="1.25" />
|
|
77
|
+
<circle
|
|
78
|
+
style="fill:#4949ff;fill-opacity:1;stroke:none;stroke-width:0.53125;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
79
|
+
id="path3-8-5"
|
|
80
|
+
cx="10.665255"
|
|
81
|
+
cy="12.444915"
|
|
82
|
+
r="1.25" />
|
|
83
|
+
<circle
|
|
84
|
+
style="fill:#4949ff;fill-opacity:1;stroke:none;stroke-width:0.53125;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
85
|
+
id="path3-8-9"
|
|
86
|
+
cx="1.9618645"
|
|
87
|
+
cy="11.04661"
|
|
88
|
+
r="1.25" />
|
|
89
|
+
<circle
|
|
90
|
+
style="fill:#4949ff;fill-opacity:1;stroke:none;stroke-width:0.53125;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
91
|
+
id="path3-1"
|
|
92
|
+
cx="12.521187"
|
|
93
|
+
cy="7.8177967"
|
|
94
|
+
r="1.25" />
|
|
95
|
+
<path
|
|
96
|
+
id="rect1"
|
|
97
|
+
style="fill:none;stroke:#4949ff;stroke-width:0.85;stroke-linecap:square;stroke-dashoffset:1.1932"
|
|
98
|
+
d="M 1.601695,2.8474576 9.2542372,1.3050847 12.694915,7.7711864 10.974576,12.754236 C 6.2175633,11.744433 6.1557426,11.666475 2.1949153,10.915253 L 4.2711865,7.118644 Z"
|
|
99
|
+
sodipodi:nodetypes="ccccccc" />
|
|
100
|
+
</g>
|
|
101
|
+
<path
|
|
102
|
+
style="fill:#f9f9f9;stroke:#4949ff;stroke-width:0.0504237;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
103
|
+
d="M 5.476032,11.289458 C 4.144511,11.020817 3.0381962,10.800027 3.0175547,10.798814 2.9969131,10.797602 2.908205,10.649816 2.8204254,10.470401 L 2.6608263,10.144192 3.2732098,9.1653793 3.8855932,8.1865664 4.1525423,8.1852008 C 4.848853,8.1816385 5.3968311,7.6065586 5.3979742,6.8781729 5.3984117,6.5994031 5.1362782,6.0835519 4.9136124,5.9249999 4.815782,5.8553385 4.6147805,5.7550504 4.4669424,5.7021375 4.2016871,5.6071997 4.1904637,5.5919361 3.6150854,4.5436372 3.059476,3.5313557 3.0358734,3.4739007 3.1137614,3.3232819 3.1885671,3.1786235 3.2574488,3.1538259 3.9261386,3.0308243 4.3279912,2.9569058 5.7379237,2.6638354 7.059322,2.3795567 L 9.4618643,1.8626864 9.600548,2.0757148 c 0.2578527,0.3960797 0.769622,0.6391871 1.200515,0.5702844 l 0.219754,-0.03514 0.3547,1.0229602 c 0.195085,0.5626281 0.373705,1.0841575 0.396932,1.1589542 0.03242,0.1043925 0.0079,0.163032 -0.105692,0.2523496 -0.482791,0.3797635 -0.531945,1.3279204 -0.09376,1.8085463 0.108237,0.1187203 0.09234,0.1537332 -1.010332,2.2245764 L 9.4423675,11.182203 9.2204735,11.163659 C 8.8215002,11.130317 8.4327174,11.26457 8.153506,11.532101 l -0.2565267,0.245796 z"
|
|
104
|
+
id="path1" />
|
|
105
|
+
<path
|
|
106
|
+
style="fill:#ffff00;fill-opacity:1;stroke:#ff6600;stroke-width:0.436794;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
107
|
+
d="M 9.029373,6.871397 V 9.070495 H 6.828397 v 2.241281 h 2.200976 v 2.199098 h 2.237521 v -2.199098 h 2.200977 V 9.070495 H 11.266894 V 6.871397 Z"
|
|
108
|
+
id="rect3031"
|
|
109
|
+
inkscape:connector-curvature="0" />
|
|
110
|
+
</svg>
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="roi_new_rectangle.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#000000"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="1009"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="7.088983"
|
|
48
|
+
inkscape:cy="7.029661"
|
|
49
|
+
inkscape:window-x="1912"
|
|
50
|
+
inkscape:window-y="-8"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:showpageshadow="2"
|
|
54
|
+
inkscape:pagecheckerboard="false"
|
|
55
|
+
inkscape:deskcolor="#000000" />
|
|
56
|
+
<path
|
|
57
|
+
d="M 12.853106,8.949807 V 3.7790042 c 0.485809,-0.1730847 0.83616,-0.6321355 0.83616,-1.1773101 0,-0.6923386 -0.561898,-1.2542368 -1.254238,-1.2542368 -0.545174,0 -1.004226,0.3503494 -1.177311,0.8361575 H 2.742282 C 2.5691972,1.6978064 2.1101465,1.3474573 1.5649712,1.3474573 c -0.69233883,0 -1.25423716,0.5618982 -1.25423716,1.2542368 0,0.5451746 0.35035027,1.0042256 0.83615816,1.1773101 V 8.949807 c -0.48580789,0.173085 -0.83615816,0.632136 -0.83615816,1.177311 0,0.69234 0.56189833,1.254238 1.25423716,1.254238 0.5451753,0 1.004226,-0.350351 1.1773108,-0.83616 h 8.515435 c 0.173085,0.48581 0.632137,0.83616 1.177311,0.83616 0.69234,0 1.254238,-0.561898 1.254238,-1.254238 0,-0.545176 -0.350351,-1.004226 -0.83616,-1.177311 z M 11.257717,9.709039 H 2.742282 C 2.6168582,9.3545081 2.3375814,9.0760672 1.9830504,8.949807 V 3.7790042 C 2.3375814,3.6527492 2.6160222,3.3743043 2.742282,3.0197721 h 8.515435 c 0.126256,0.3545322 0.404701,0.6329728 0.759232,0.7592321 V 8.949807 c -0.354531,0.1262549 -0.633808,0.4047011 -0.759232,0.759232 z"
|
|
58
|
+
id="path6"
|
|
59
|
+
inkscape:connector-curvature="0"
|
|
60
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:1.67231" />
|
|
61
|
+
<path
|
|
62
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0118644;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
63
|
+
d="M 2.676311,9.523304 C 2.579,9.3370022 2.3170567,9.0807079 2.1207627,8.9797364 L 1.9872881,8.911079 V 6.3638421 3.8166053 l 0.1631356,-0.08521 C 2.336726,3.6340839 2.5930203,3.3721406 2.6939913,3.1758466 l 0.068658,-0.1334745 h 4.237351 4.2373507 l 0.06866,0.1334745 c 0.100972,0.196294 0.357266,0.4582373 0.543568,0.5555483 l 0.163136,0.08521 v 2.5478006 2.5478007 l -0.163136,0.08521 C 11.663274,9.094728 11.40698,9.356671 11.306008,9.552965 L 11.237348,9.68644 H 6.9994361 2.7615213 Z"
|
|
64
|
+
id="path1" />
|
|
65
|
+
<path
|
|
66
|
+
style="fill:#ffff00;fill-opacity:1;stroke:#ff6600;stroke-width:0.436794;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
67
|
+
d="m 9.0295425,6.8709371 v 2.1990978 h -2.200976 v 2.2412811 h 2.200976 v 2.199098 h 2.2375215 v -2.199098 h 2.200977 V 9.0700349 H 11.267064 V 6.8709371 Z"
|
|
68
|
+
id="rect3031"
|
|
69
|
+
inkscape:connector-curvature="0" />
|
|
70
|
+
</svg>
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="roi_paste.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#000000"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="991"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="7.118644"
|
|
48
|
+
inkscape:cy="7.029661"
|
|
49
|
+
inkscape:window-x="-9"
|
|
50
|
+
inkscape:window-y="-9"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:showpageshadow="2"
|
|
54
|
+
inkscape:pagecheckerboard="false"
|
|
55
|
+
inkscape:deskcolor="#000000" />
|
|
56
|
+
<path
|
|
57
|
+
d="M 11.533192,7.0991553 V 2.5703355 c 0.425492,-0.1515952 0.732345,-0.5536524 0.732345,-1.0311407 0,-0.60638114 -0.492136,-1.09851687 -1.098518,-1.09851687 -0.477487,0 -0.879546,0.30685172 -1.031141,0.73234437 H 2.6776803 C 2.526085,0.7475294 2.1240279,0.44067793 1.646539,0.44067793 c -0.6063812,0 -1.09851684,0.49213573 -1.09851684,1.09851687 0,0.4774883 0.30685233,0.8795456 0.73234464,1.0311407 v 4.5288198 c -0.42549231,0.1515956 -0.73234464,0.553653 -0.73234464,1.0311416 0,0.6063825 0.49213564,1.0985173 1.09851684,1.0985173 0.4774889,0 0.879546,-0.3068529 1.0311413,-0.732346 h 7.4581977 c 0.151595,0.4254943 0.553654,0.732346 1.031141,0.732346 0.606382,0 1.098518,-0.4921348 1.098518,-1.0985173 0,-0.4774895 -0.306853,-0.879546 -0.732345,-1.0311416 z M 10.135878,7.7641246 H 2.6776803 C 2.5678285,7.4536106 2.3232255,7.2097397 2.0127114,7.0991553 V 2.5703355 C 2.3232255,2.4597559 2.5670964,2.2158814 2.6776803,1.9053663 h 7.4581977 c 0.110585,0.3105151 0.354456,0.5543858 0.664969,0.6649692 v 4.5288198 c -0.310513,0.11058 -0.555117,0.3544553 -0.664969,0.6649693 z"
|
|
58
|
+
id="path6"
|
|
59
|
+
inkscape:connector-curvature="0"
|
|
60
|
+
style="fill:#4949ff;fill-opacity:1;stroke-width:1.46469" />
|
|
61
|
+
<path
|
|
62
|
+
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.0103914;stroke-linecap:square;stroke-dasharray:none;stroke-dashoffset:1.1932;stroke-opacity:1"
|
|
63
|
+
d="M 2.6199,7.6014496 C 2.5346707,7.4382782 2.305249,7.2138043 2.133326,7.1253688 L 2.016423,7.0652357 V 4.8342519 2.6032683 L 2.1593045,2.5286376 C 2.3224763,2.443408 2.5469503,2.2139863 2.6353852,2.0420633 L 2.6955189,1.9251599 H 6.40678 10.118041 l 0.06013,0.1169034 c 0.08844,0.171923 0.31291,0.4013447 0.476081,0.4865739 l 0.142882,0.074631 v 2.2314772 2.2314775 l -0.142882,0.074631 c -0.163173,0.08523 -0.387647,0.3146513 -0.476083,0.4865744 l -0.06014,0.1169034 H 6.4062858 2.694531 Z"
|
|
64
|
+
id="path1" />
|
|
65
|
+
<text
|
|
66
|
+
xml:space="preserve"
|
|
67
|
+
style="font-size:5.35456px;line-height:0.85;font-family:'Franklin Gothic Demi Cond';-inkscape-font-specification:'Franklin Gothic Demi Cond';text-align:center;letter-spacing:0px;text-anchor:middle;opacity:1;fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.196217;stroke-linecap:square;stroke-dasharray:none;stroke-opacity:1"
|
|
68
|
+
x="6.4067798"
|
|
69
|
+
y="6.6191649"
|
|
70
|
+
id="text1"><tspan
|
|
71
|
+
sodipodi:role="line"
|
|
72
|
+
id="tspan1"
|
|
73
|
+
x="6.4067798"
|
|
74
|
+
y="6.6191649"
|
|
75
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:5.35456px;font-family:'Franklin Gothic Medium';-inkscape-font-specification:'Franklin Gothic Medium, ';fill:#4d4d4d;fill-opacity:1;stroke:none;stroke-width:0.196217;stroke-dasharray:none;stroke-opacity:1">ROI</tspan></text>
|
|
76
|
+
<g
|
|
77
|
+
id="g1016"
|
|
78
|
+
transform="matrix(0.81634845,0,0,0.81634845,2.9518278,4.0384075)">
|
|
79
|
+
<rect
|
|
80
|
+
style="fill:#aaccff;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
|
81
|
+
id="rect991"
|
|
82
|
+
width="6.7790279"
|
|
83
|
+
height="6.9265242"
|
|
84
|
+
x="4.6328125"
|
|
85
|
+
y="3.4551136" />
|
|
86
|
+
<rect
|
|
87
|
+
style="fill:#aaccff;stroke:#d45500;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none"
|
|
88
|
+
id="rect991-2"
|
|
89
|
+
width="4.4232593"
|
|
90
|
+
height="4.1164284"
|
|
91
|
+
x="7.766736"
|
|
92
|
+
y="6.5655842" />
|
|
93
|
+
<path
|
|
94
|
+
d="M 11.125783,9.6749069 H 8.8175127 V 8.976419 h 2.3082703 z m -7.9e-4,-1.290258 H 8.8174888 V 7.6861608 H 11.124993 Z M 11.422987,4.9411872 H 6.9970833 V 11.367325 H 12.875567 V 6.3924861 Z m 0.521272,5.4948288 H 7.9284152 V 5.8724959 h 2.7960868 v 1.0554847 h 1.219757 z M 6.1687195,9.625 H 4.6328125 V 3.4551137 h 1.4047351 l 0.58013,0.5820774 H 8.555959 L 9.1438464,3.4551137 h 1.3329326 v 0.7410727 h 0.942936 V 2.5276869 h -1.326404 c -0.2116981,0 -0.4147851,-0.083776 -0.5649271,-0.2330081 L 9.021597,1.7904027 H 6.111258 L 5.6044951,2.2946325 C 5.4543609,2.4438888 5.2512902,2.527663 5.0395764,2.527663 H 3.7131486 v 8.040268 h 2.4555709 z"
|
|
95
|
+
id="path2-1"
|
|
96
|
+
style="fill:#0066ff;stroke-width:0.798077" />
|
|
97
|
+
</g>
|
|
98
|
+
</svg>
|
|
@@ -0,0 +1,124 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="roi_sig.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#ffffff"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1284"
|
|
43
|
+
inkscape:window-height="860"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="16.857143"
|
|
47
|
+
inkscape:cx="7.3855932"
|
|
48
|
+
inkscape:cy="7.5042372"
|
|
49
|
+
inkscape:window-x="0"
|
|
50
|
+
inkscape:window-y="0"
|
|
51
|
+
inkscape:window-maximized="0"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:showpageshadow="2"
|
|
54
|
+
inkscape:pagecheckerboard="0"
|
|
55
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
56
|
+
<rect
|
|
57
|
+
style="fill:#e6e6e6;fill-opacity:1;stroke:none;stroke-width:2.16728;stroke-opacity:1"
|
|
58
|
+
id="rect10749-5"
|
|
59
|
+
width="10.776778"
|
|
60
|
+
height="10.788156"
|
|
61
|
+
x="1.9593489"
|
|
62
|
+
y="1.7325294"
|
|
63
|
+
transform="matrix(1,0,-0.04725952,0.99888264,0,0)" />
|
|
64
|
+
<rect
|
|
65
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.554673"
|
|
66
|
+
id="rect28089"
|
|
67
|
+
width="0.65276706"
|
|
68
|
+
height="10.509549"
|
|
69
|
+
x="6.7560167"
|
|
70
|
+
y="1.8318496" />
|
|
71
|
+
<rect
|
|
72
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.554673"
|
|
73
|
+
id="rect28089-7"
|
|
74
|
+
width="0.65276706"
|
|
75
|
+
height="10.509549"
|
|
76
|
+
x="6.5970483"
|
|
77
|
+
y="-12.337177"
|
|
78
|
+
transform="rotate(90)" />
|
|
79
|
+
<path
|
|
80
|
+
style="fill:none;fill-opacity:0.817241;stroke:#ff5dcd;stroke-width:0.554673;stroke-opacity:1"
|
|
81
|
+
d="m 2.2845636,11.231694 c 0,0.130555 2.0888542,-0.78332 2.0888542,-0.78332 L 5.6789515,8.75118 7.1803163,5.2262377 8.8122332,3.5290434 11.488578,2.745723"
|
|
82
|
+
id="path32265" />
|
|
83
|
+
<circle
|
|
84
|
+
cx="8.7988424"
|
|
85
|
+
cy="3.5638263"
|
|
86
|
+
r="0.80419046"
|
|
87
|
+
id="circle20-2"
|
|
88
|
+
style="fill:#0073a7;stroke-width:0.268064;fill-opacity:1" />
|
|
89
|
+
<circle
|
|
90
|
+
cx="7.1573019"
|
|
91
|
+
cy="5.2096577"
|
|
92
|
+
r="0.80419046"
|
|
93
|
+
id="circle22-3"
|
|
94
|
+
style="fill:#0073a7;stroke-width:0.268064;fill-opacity:1" />
|
|
95
|
+
<circle
|
|
96
|
+
cx="5.7115893"
|
|
97
|
+
cy="8.8164558"
|
|
98
|
+
r="0.80419046"
|
|
99
|
+
id="circle24-6"
|
|
100
|
+
style="fill:#0073a7;stroke-width:0.268064;fill-opacity:1" />
|
|
101
|
+
<circle
|
|
102
|
+
cx="4.3311543"
|
|
103
|
+
cy="10.417882"
|
|
104
|
+
r="0.80419046"
|
|
105
|
+
id="circle26-0"
|
|
106
|
+
style="fill:#0073a7;stroke-width:0.268064;fill-opacity:1" />
|
|
107
|
+
<circle
|
|
108
|
+
cx="2.2979538"
|
|
109
|
+
cy="11.248276"
|
|
110
|
+
r="0.80419046"
|
|
111
|
+
id="circle28-1"
|
|
112
|
+
style="fill:#0073a7;stroke-width:0.268064;fill-opacity:1" />
|
|
113
|
+
<circle
|
|
114
|
+
cx="11.423303"
|
|
115
|
+
cy="2.8109994"
|
|
116
|
+
r="0.80419046"
|
|
117
|
+
id="circle28-1-2"
|
|
118
|
+
style="fill:#0073a7;stroke-width:0.268064;fill-opacity:1" />
|
|
119
|
+
<path
|
|
120
|
+
d="M 11.805084,6.1731185 V 3.0811184 c 0.2905,-0.1035 0.5,-0.378 0.5,-0.7039997 0,-0.4139999 -0.336,-0.75 -0.75,-0.75 -0.326,0 -0.6005,0.2094995 -0.704,0.4999998 H 5.7590843 c -0.1035,-0.2905004 -0.378,-0.4999998 -0.704,-0.4999998 -0.414,0 -0.75,0.3360001 -0.75,0.75 0,0.3259997 0.2095,0.6004998 0.5,0.7039997 v 3.0920001 c -0.2905,0.1035 -0.5,0.378 -0.5,0.704 0,0.414 0.336,0.75 0.75,0.75 0.326,0 0.6005,-0.2095 0.704,-0.500001 h 5.0919997 c 0.1035,0.290501 0.378,0.500001 0.704,0.500001 0.414,0 0.75,-0.336 0.75,-0.75 0,-0.326 -0.2095,-0.6005 -0.5,-0.704 z m -0.954,0.454 H 5.7590843 c -0.075,-0.212 -0.242,-0.3785 -0.454,-0.454 V 3.0811184 c 0.212,-0.075497 0.3785,-0.2419997 0.454,-0.4540003 h 5.0919997 c 0.0755,0.2120006 0.242,0.3785006 0.454,0.4540003 v 3.0920001 c -0.212,0.0755 -0.379,0.242 -0.454,0.454 z"
|
|
121
|
+
id="path6"
|
|
122
|
+
inkscape:connector-curvature="0"
|
|
123
|
+
style="fill:#ff0000" />
|
|
124
|
+
</svg>
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
role="img"
|
|
4
|
+
focusable="false"
|
|
5
|
+
aria-hidden="true"
|
|
6
|
+
viewBox="0 0 14 14"
|
|
7
|
+
id="svg2"
|
|
8
|
+
version="1.1"
|
|
9
|
+
inkscape:version="1.4.2 (f4327f4, 2025-05-13)"
|
|
10
|
+
width="100%"
|
|
11
|
+
height="100%"
|
|
12
|
+
sodipodi:docname="shapes.svg"
|
|
13
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
14
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
15
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
16
|
+
xmlns:svg="http://www.w3.org/2000/svg"
|
|
17
|
+
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
|
18
|
+
xmlns:cc="http://creativecommons.org/ns#"
|
|
19
|
+
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
|
20
|
+
<metadata
|
|
21
|
+
id="metadata12">
|
|
22
|
+
<rdf:RDF>
|
|
23
|
+
<cc:Work
|
|
24
|
+
rdf:about="">
|
|
25
|
+
<dc:format>image/svg+xml</dc:format>
|
|
26
|
+
<dc:type
|
|
27
|
+
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
|
28
|
+
</cc:Work>
|
|
29
|
+
</rdf:RDF>
|
|
30
|
+
</metadata>
|
|
31
|
+
<defs
|
|
32
|
+
id="defs10" />
|
|
33
|
+
<sodipodi:namedview
|
|
34
|
+
pagecolor="#ffffff"
|
|
35
|
+
bordercolor="#666666"
|
|
36
|
+
borderopacity="1"
|
|
37
|
+
objecttolerance="10"
|
|
38
|
+
gridtolerance="10"
|
|
39
|
+
guidetolerance="10"
|
|
40
|
+
inkscape:pageopacity="0"
|
|
41
|
+
inkscape:pageshadow="2"
|
|
42
|
+
inkscape:window-width="1920"
|
|
43
|
+
inkscape:window-height="1009"
|
|
44
|
+
id="namedview8"
|
|
45
|
+
showgrid="false"
|
|
46
|
+
inkscape:zoom="23.8396"
|
|
47
|
+
inkscape:cx="-5.5160321"
|
|
48
|
+
inkscape:cy="-1.1115958"
|
|
49
|
+
inkscape:window-x="-8"
|
|
50
|
+
inkscape:window-y="-8"
|
|
51
|
+
inkscape:window-maximized="1"
|
|
52
|
+
inkscape:current-layer="svg2"
|
|
53
|
+
inkscape:pagecheckerboard="0"
|
|
54
|
+
inkscape:showpageshadow="0"
|
|
55
|
+
inkscape:deskcolor="#505050" />
|
|
56
|
+
<g
|
|
57
|
+
id="g1"
|
|
58
|
+
transform="matrix(0.91121529,0,0,0.91121529,-0.43451838,11.875895)">
|
|
59
|
+
<ellipse
|
|
60
|
+
style="fill:#ffeeaa;fill-opacity:1;stroke:#ffcc00;stroke-width:0.6;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
61
|
+
id="path1036"
|
|
62
|
+
cx="5.961864"
|
|
63
|
+
cy="-1.8389833"
|
|
64
|
+
rx="4.4788136"
|
|
65
|
+
ry="3.2923729" />
|
|
66
|
+
<rect
|
|
67
|
+
style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.7;stroke-dasharray:1.63267, 0.816335;stroke-opacity:1"
|
|
68
|
+
id="rect1"
|
|
69
|
+
width="1.5"
|
|
70
|
+
height="1.5"
|
|
71
|
+
x="5.211864"
|
|
72
|
+
y="0.68220341" />
|
|
73
|
+
<rect
|
|
74
|
+
style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.7;stroke-dasharray:1.63267, 0.816335;stroke-opacity:1"
|
|
75
|
+
id="rect1-1"
|
|
76
|
+
width="1.5"
|
|
77
|
+
height="1.5"
|
|
78
|
+
x="5.211864"
|
|
79
|
+
y="-5.8516951" />
|
|
80
|
+
<rect
|
|
81
|
+
style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.7;stroke-dasharray:1.63267, 0.816335;stroke-opacity:1"
|
|
82
|
+
id="rect1-11"
|
|
83
|
+
width="1.5"
|
|
84
|
+
height="1.5"
|
|
85
|
+
x="9.6694918"
|
|
86
|
+
y="-2.5889833" />
|
|
87
|
+
<rect
|
|
88
|
+
style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.7;stroke-dasharray:1.63267, 0.816335;stroke-opacity:1"
|
|
89
|
+
id="rect1-27"
|
|
90
|
+
width="1.5"
|
|
91
|
+
height="1.5"
|
|
92
|
+
x="0.77542382"
|
|
93
|
+
y="-2.5889833" />
|
|
94
|
+
</g>
|
|
95
|
+
<g
|
|
96
|
+
id="g2"
|
|
97
|
+
transform="matrix(0.84122703,0,0,0.84122703,1.7835048,-4.6104105)">
|
|
98
|
+
<rect
|
|
99
|
+
style="fill:#ffeeaa;stroke:#ffcc00;stroke-width:0.6;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
|
100
|
+
id="rect924"
|
|
101
|
+
width="6.4067798"
|
|
102
|
+
height="5.6949153"
|
|
103
|
+
x="6.7033896"
|
|
104
|
+
y="6.9406781" />
|
|
105
|
+
<rect
|
|
106
|
+
style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.7;stroke-dasharray:1.63267, 0.816335;stroke-opacity:1"
|
|
107
|
+
id="rect1-9"
|
|
108
|
+
width="1.5"
|
|
109
|
+
height="1.5"
|
|
110
|
+
x="12.375"
|
|
111
|
+
y="6.1927967" />
|
|
112
|
+
<rect
|
|
113
|
+
style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.7;stroke-dasharray:1.63267, 0.816335;stroke-opacity:1"
|
|
114
|
+
id="rect1-8"
|
|
115
|
+
width="1.5"
|
|
116
|
+
height="1.5"
|
|
117
|
+
x="12.375"
|
|
118
|
+
y="11.905" />
|
|
119
|
+
<rect
|
|
120
|
+
style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.7;stroke-dasharray:1.63267, 0.816335;stroke-opacity:1"
|
|
121
|
+
id="rect1-2"
|
|
122
|
+
width="1.5"
|
|
123
|
+
height="1.5"
|
|
124
|
+
x="5.9491525"
|
|
125
|
+
y="11.905" />
|
|
126
|
+
<rect
|
|
127
|
+
style="fill:#ffcc00;fill-opacity:1;stroke:none;stroke-width:0.7;stroke-dasharray:1.63267, 0.816335;stroke-opacity:1"
|
|
128
|
+
id="rect1-5"
|
|
129
|
+
width="1.5"
|
|
130
|
+
height="1.5"
|
|
131
|
+
x="5.9491525"
|
|
132
|
+
y="6.1927967" />
|
|
133
|
+
</g>
|
|
134
|
+
</svg>
|