datalab-platform 0.0.1.dev0__py3-none-any.whl → 1.0.0__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.0.dist-info/METADATA +121 -0
- datalab_platform-1.0.0.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.0.dist-info}/WHEEL +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/entry_points.txt +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/licenses/LICENSE +0 -0
- {datalab_platform-0.0.1.dev0.dist-info → datalab_platform-1.0.0.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,109 @@
|
|
|
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
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="constant_divide.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12">
|
|
17
|
+
<clipPath
|
|
18
|
+
clipPathUnits="userSpaceOnUse"
|
|
19
|
+
id="clipPath26">
|
|
20
|
+
<g
|
|
21
|
+
id="g27">
|
|
22
|
+
<rect
|
|
23
|
+
x="21.696568"
|
|
24
|
+
y="20.771685"
|
|
25
|
+
width="310.60657"
|
|
26
|
+
height="141.1848"
|
|
27
|
+
id="rect26"
|
|
28
|
+
style="stroke-width:1.76481" />
|
|
29
|
+
</g>
|
|
30
|
+
</clipPath>
|
|
31
|
+
<clipPath
|
|
32
|
+
clipPathUnits="userSpaceOnUse"
|
|
33
|
+
id="clipPath24">
|
|
34
|
+
<g
|
|
35
|
+
id="g25">
|
|
36
|
+
<rect
|
|
37
|
+
x="21.696568"
|
|
38
|
+
y="20.771685"
|
|
39
|
+
width="310.60657"
|
|
40
|
+
height="141.1848"
|
|
41
|
+
id="rect24"
|
|
42
|
+
style="stroke-width:1.76481" />
|
|
43
|
+
</g>
|
|
44
|
+
</clipPath>
|
|
45
|
+
<clipPath
|
|
46
|
+
clipPathUnits="userSpaceOnUse"
|
|
47
|
+
id="clipPath23">
|
|
48
|
+
<g
|
|
49
|
+
id="g24">
|
|
50
|
+
<rect
|
|
51
|
+
x="21.696568"
|
|
52
|
+
y="20.771685"
|
|
53
|
+
width="310.60657"
|
|
54
|
+
height="141.1848"
|
|
55
|
+
id="rect23"
|
|
56
|
+
style="stroke-width:1.76481" />
|
|
57
|
+
</g>
|
|
58
|
+
</clipPath>
|
|
59
|
+
<clipPath
|
|
60
|
+
clipPathUnits="userSpaceOnUse"
|
|
61
|
+
id="clipPath22">
|
|
62
|
+
<g
|
|
63
|
+
id="g23">
|
|
64
|
+
<rect
|
|
65
|
+
x="21.696568"
|
|
66
|
+
y="20.771685"
|
|
67
|
+
width="310.60657"
|
|
68
|
+
height="141.1848"
|
|
69
|
+
id="rect22"
|
|
70
|
+
style="stroke-width:1.76481" />
|
|
71
|
+
</g>
|
|
72
|
+
</clipPath>
|
|
73
|
+
</defs>
|
|
74
|
+
<sodipodi:namedview
|
|
75
|
+
id="namedview10"
|
|
76
|
+
pagecolor="#ffffff"
|
|
77
|
+
bordercolor="#666666"
|
|
78
|
+
borderopacity="1.0"
|
|
79
|
+
inkscape:pageshadow="2"
|
|
80
|
+
inkscape:pageopacity="0.0"
|
|
81
|
+
inkscape:pagecheckerboard="0"
|
|
82
|
+
showgrid="false"
|
|
83
|
+
inkscape:zoom="29.714286"
|
|
84
|
+
inkscape:cx="14.016827"
|
|
85
|
+
inkscape:cy="5.8725961"
|
|
86
|
+
inkscape:window-width="1920"
|
|
87
|
+
inkscape:window-height="1009"
|
|
88
|
+
inkscape:window-x="-8"
|
|
89
|
+
inkscape:window-y="-8"
|
|
90
|
+
inkscape:window-maximized="1"
|
|
91
|
+
inkscape:current-layer="svg8"
|
|
92
|
+
inkscape:showpageshadow="2"
|
|
93
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
94
|
+
<path
|
|
95
|
+
d="m 13.767717,3.2098824 v 7.5802356 c 0,0.52114 -0.716585,0.947529 -1.592407,0.947529 H 1.824687 c -0.87582217,0 -1.59240376,-0.426389 -1.59240376,-0.947529 V 3.2098824 c 0,-0.5211415 0.71658159,-0.9475292 1.59240376,-0.9475292 H 12.17531 c 0.875822,0 1.592407,0.4263877 1.592407,0.9475292 z"
|
|
96
|
+
id="path2-7"
|
|
97
|
+
style="fill:#f99090;fill-opacity:1;stroke-width:1.06389" />
|
|
98
|
+
<text
|
|
99
|
+
xml:space="preserve"
|
|
100
|
+
style="font-size:9.38041px;line-height:1.05;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;fill:none;stroke:#da251d;stroke-width:0.410393"
|
|
101
|
+
x="2.2044485"
|
|
102
|
+
y="9.8672523"
|
|
103
|
+
id="text1"><tspan
|
|
104
|
+
sodipodi:role="line"
|
|
105
|
+
id="tspan1"
|
|
106
|
+
x="2.2044485"
|
|
107
|
+
y="9.8672523"
|
|
108
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.38041px;font-family:Verdana;-inkscape-font-specification:Verdana;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.410393">/c</tspan></text>
|
|
109
|
+
</svg>
|
|
@@ -0,0 +1,109 @@
|
|
|
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
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="constant_multiply.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12">
|
|
17
|
+
<clipPath
|
|
18
|
+
clipPathUnits="userSpaceOnUse"
|
|
19
|
+
id="clipPath26">
|
|
20
|
+
<g
|
|
21
|
+
id="g27">
|
|
22
|
+
<rect
|
|
23
|
+
x="21.696568"
|
|
24
|
+
y="20.771685"
|
|
25
|
+
width="310.60657"
|
|
26
|
+
height="141.1848"
|
|
27
|
+
id="rect26"
|
|
28
|
+
style="stroke-width:1.76481" />
|
|
29
|
+
</g>
|
|
30
|
+
</clipPath>
|
|
31
|
+
<clipPath
|
|
32
|
+
clipPathUnits="userSpaceOnUse"
|
|
33
|
+
id="clipPath24">
|
|
34
|
+
<g
|
|
35
|
+
id="g25">
|
|
36
|
+
<rect
|
|
37
|
+
x="21.696568"
|
|
38
|
+
y="20.771685"
|
|
39
|
+
width="310.60657"
|
|
40
|
+
height="141.1848"
|
|
41
|
+
id="rect24"
|
|
42
|
+
style="stroke-width:1.76481" />
|
|
43
|
+
</g>
|
|
44
|
+
</clipPath>
|
|
45
|
+
<clipPath
|
|
46
|
+
clipPathUnits="userSpaceOnUse"
|
|
47
|
+
id="clipPath23">
|
|
48
|
+
<g
|
|
49
|
+
id="g24">
|
|
50
|
+
<rect
|
|
51
|
+
x="21.696568"
|
|
52
|
+
y="20.771685"
|
|
53
|
+
width="310.60657"
|
|
54
|
+
height="141.1848"
|
|
55
|
+
id="rect23"
|
|
56
|
+
style="stroke-width:1.76481" />
|
|
57
|
+
</g>
|
|
58
|
+
</clipPath>
|
|
59
|
+
<clipPath
|
|
60
|
+
clipPathUnits="userSpaceOnUse"
|
|
61
|
+
id="clipPath22">
|
|
62
|
+
<g
|
|
63
|
+
id="g23">
|
|
64
|
+
<rect
|
|
65
|
+
x="21.696568"
|
|
66
|
+
y="20.771685"
|
|
67
|
+
width="310.60657"
|
|
68
|
+
height="141.1848"
|
|
69
|
+
id="rect22"
|
|
70
|
+
style="stroke-width:1.76481" />
|
|
71
|
+
</g>
|
|
72
|
+
</clipPath>
|
|
73
|
+
</defs>
|
|
74
|
+
<sodipodi:namedview
|
|
75
|
+
id="namedview10"
|
|
76
|
+
pagecolor="#ffffff"
|
|
77
|
+
bordercolor="#666666"
|
|
78
|
+
borderopacity="1.0"
|
|
79
|
+
inkscape:pageshadow="2"
|
|
80
|
+
inkscape:pageopacity="0.0"
|
|
81
|
+
inkscape:pagecheckerboard="0"
|
|
82
|
+
showgrid="false"
|
|
83
|
+
inkscape:zoom="29.714286"
|
|
84
|
+
inkscape:cx="14.016827"
|
|
85
|
+
inkscape:cy="5.8725961"
|
|
86
|
+
inkscape:window-width="1920"
|
|
87
|
+
inkscape:window-height="1009"
|
|
88
|
+
inkscape:window-x="-8"
|
|
89
|
+
inkscape:window-y="-8"
|
|
90
|
+
inkscape:window-maximized="1"
|
|
91
|
+
inkscape:current-layer="svg8"
|
|
92
|
+
inkscape:showpageshadow="2"
|
|
93
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
94
|
+
<path
|
|
95
|
+
d="m 13.767717,3.2098823 v 7.5802357 c 0,0.52114 -0.716585,0.947529 -1.592407,0.947529 H 1.8246868 c -0.8758222,0 -1.5924038,-0.426389 -1.5924038,-0.947529 V 3.2098823 c 0,-0.5211415 0.7165816,-0.9475292 1.5924038,-0.9475292 H 12.17531 c 0.875822,0 1.592407,0.4263877 1.592407,0.9475292 z"
|
|
96
|
+
id="path2-7"
|
|
97
|
+
style="fill:#f99090;fill-opacity:1;stroke-width:1.06389" />
|
|
98
|
+
<text
|
|
99
|
+
xml:space="preserve"
|
|
100
|
+
style="font-size:9.38041px;line-height:1.05;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;fill:none;stroke:#da251d;stroke-width:0.410393"
|
|
101
|
+
x="0.36547065"
|
|
102
|
+
y="9.8672523"
|
|
103
|
+
id="text1"><tspan
|
|
104
|
+
sodipodi:role="line"
|
|
105
|
+
id="tspan1"
|
|
106
|
+
x="0.36547065"
|
|
107
|
+
y="9.8672523"
|
|
108
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.38041px;font-family:Verdana;-inkscape-font-specification:Verdana;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.410393">×c</tspan></text>
|
|
109
|
+
</svg>
|
|
@@ -0,0 +1,109 @@
|
|
|
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
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="constant_substract.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12">
|
|
17
|
+
<clipPath
|
|
18
|
+
clipPathUnits="userSpaceOnUse"
|
|
19
|
+
id="clipPath26">
|
|
20
|
+
<g
|
|
21
|
+
id="g27">
|
|
22
|
+
<rect
|
|
23
|
+
x="21.696568"
|
|
24
|
+
y="20.771685"
|
|
25
|
+
width="310.60657"
|
|
26
|
+
height="141.1848"
|
|
27
|
+
id="rect26"
|
|
28
|
+
style="stroke-width:1.76481" />
|
|
29
|
+
</g>
|
|
30
|
+
</clipPath>
|
|
31
|
+
<clipPath
|
|
32
|
+
clipPathUnits="userSpaceOnUse"
|
|
33
|
+
id="clipPath24">
|
|
34
|
+
<g
|
|
35
|
+
id="g25">
|
|
36
|
+
<rect
|
|
37
|
+
x="21.696568"
|
|
38
|
+
y="20.771685"
|
|
39
|
+
width="310.60657"
|
|
40
|
+
height="141.1848"
|
|
41
|
+
id="rect24"
|
|
42
|
+
style="stroke-width:1.76481" />
|
|
43
|
+
</g>
|
|
44
|
+
</clipPath>
|
|
45
|
+
<clipPath
|
|
46
|
+
clipPathUnits="userSpaceOnUse"
|
|
47
|
+
id="clipPath23">
|
|
48
|
+
<g
|
|
49
|
+
id="g24">
|
|
50
|
+
<rect
|
|
51
|
+
x="21.696568"
|
|
52
|
+
y="20.771685"
|
|
53
|
+
width="310.60657"
|
|
54
|
+
height="141.1848"
|
|
55
|
+
id="rect23"
|
|
56
|
+
style="stroke-width:1.76481" />
|
|
57
|
+
</g>
|
|
58
|
+
</clipPath>
|
|
59
|
+
<clipPath
|
|
60
|
+
clipPathUnits="userSpaceOnUse"
|
|
61
|
+
id="clipPath22">
|
|
62
|
+
<g
|
|
63
|
+
id="g23">
|
|
64
|
+
<rect
|
|
65
|
+
x="21.696568"
|
|
66
|
+
y="20.771685"
|
|
67
|
+
width="310.60657"
|
|
68
|
+
height="141.1848"
|
|
69
|
+
id="rect22"
|
|
70
|
+
style="stroke-width:1.76481" />
|
|
71
|
+
</g>
|
|
72
|
+
</clipPath>
|
|
73
|
+
</defs>
|
|
74
|
+
<sodipodi:namedview
|
|
75
|
+
id="namedview10"
|
|
76
|
+
pagecolor="#ffffff"
|
|
77
|
+
bordercolor="#666666"
|
|
78
|
+
borderopacity="1.0"
|
|
79
|
+
inkscape:pageshadow="2"
|
|
80
|
+
inkscape:pageopacity="0.0"
|
|
81
|
+
inkscape:pagecheckerboard="0"
|
|
82
|
+
showgrid="false"
|
|
83
|
+
inkscape:zoom="29.714286"
|
|
84
|
+
inkscape:cx="14.016827"
|
|
85
|
+
inkscape:cy="5.8725961"
|
|
86
|
+
inkscape:window-width="1920"
|
|
87
|
+
inkscape:window-height="1009"
|
|
88
|
+
inkscape:window-x="-8"
|
|
89
|
+
inkscape:window-y="-8"
|
|
90
|
+
inkscape:window-maximized="1"
|
|
91
|
+
inkscape:current-layer="svg8"
|
|
92
|
+
inkscape:showpageshadow="2"
|
|
93
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
94
|
+
<path
|
|
95
|
+
d="m 13.767717,3.2098823 v 7.5802357 c 0,0.52114 -0.716585,0.947529 -1.592407,0.947529 H 1.8246868 c -0.8758222,0 -1.5924038,-0.426389 -1.5924038,-0.947529 V 3.2098823 c 0,-0.5211415 0.7165816,-0.9475292 1.5924038,-0.9475292 H 12.17531 c 0.875822,0 1.592407,0.4263877 1.592407,0.9475292 z"
|
|
96
|
+
id="path2-7"
|
|
97
|
+
style="fill:#f99090;fill-opacity:1;stroke-width:1.06389" />
|
|
98
|
+
<text
|
|
99
|
+
xml:space="preserve"
|
|
100
|
+
style="font-size:9.38041px;line-height:1.05;font-family:Calibri;-inkscape-font-specification:Calibri;letter-spacing:0px;fill:none;stroke:#da251d;stroke-width:0.410393"
|
|
101
|
+
x="2.2044485"
|
|
102
|
+
y="9.8672523"
|
|
103
|
+
id="text1"><tspan
|
|
104
|
+
sodipodi:role="line"
|
|
105
|
+
id="tspan1"
|
|
106
|
+
x="2.2044485"
|
|
107
|
+
y="9.8672523"
|
|
108
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:9.38041px;font-family:Verdana;-inkscape-font-specification:Verdana;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.410393">-c</tspan></text>
|
|
109
|
+
</svg>
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
version="1.1"
|
|
4
|
+
width="256"
|
|
5
|
+
height="256"
|
|
6
|
+
viewBox="0 0 256 256"
|
|
7
|
+
xml:space="preserve"
|
|
8
|
+
id="svg2"
|
|
9
|
+
sodipodi:docname="convert-3213.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg"><sodipodi:namedview
|
|
15
|
+
id="namedview2"
|
|
16
|
+
pagecolor="#ffffff"
|
|
17
|
+
bordercolor="#000000"
|
|
18
|
+
borderopacity="0.25"
|
|
19
|
+
inkscape:showpageshadow="2"
|
|
20
|
+
inkscape:pageopacity="0.0"
|
|
21
|
+
inkscape:pagecheckerboard="0"
|
|
22
|
+
inkscape:deskcolor="#d1d1d1"
|
|
23
|
+
inkscape:zoom="3.1523438"
|
|
24
|
+
inkscape:cx="128"
|
|
25
|
+
inkscape:cy="128"
|
|
26
|
+
inkscape:window-width="1920"
|
|
27
|
+
inkscape:window-height="1009"
|
|
28
|
+
inkscape:window-x="-8"
|
|
29
|
+
inkscape:window-y="-8"
|
|
30
|
+
inkscape:window-maximized="1"
|
|
31
|
+
inkscape:current-layer="svg2" />
|
|
32
|
+
|
|
33
|
+
<defs
|
|
34
|
+
id="defs1">
|
|
35
|
+
</defs>
|
|
36
|
+
<g
|
|
37
|
+
style="stroke: none; stroke-width: 0; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: none; fill-rule: nonzero; opacity: 1;"
|
|
38
|
+
transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)"
|
|
39
|
+
id="g2">
|
|
40
|
+
<path
|
|
41
|
+
d="M 80.829 28.5 C 74.406 14.581 60.353 5.587 45.028 5.587 c -18.641 0 -34.29 13.013 -38.367 30.428 l -1.097 -1.803 c -0.862 -1.416 -2.707 -1.866 -4.123 -1.003 c -1.415 0.861 -1.865 2.707 -1.003 4.123 l 5.614 9.227 c 0.011 0.018 0.027 0.031 0.038 0.049 c 0.093 0.145 0.2 0.279 0.316 0.406 c 0.027 0.03 0.049 0.064 0.077 0.093 c 0.148 0.149 0.311 0.282 0.488 0.398 c 0.046 0.03 0.097 0.051 0.145 0.079 c 0.135 0.078 0.272 0.15 0.419 0.207 c 0.07 0.027 0.142 0.045 0.214 0.067 c 0.132 0.04 0.264 0.074 0.403 0.096 c 0.036 0.006 0.07 0.021 0.106 0.025 C 8.377 47.993 8.496 48 8.615 48 c 0.2 0 0.398 -0.021 0.592 -0.06 c 0.118 -0.024 0.228 -0.066 0.341 -0.103 c 0.073 -0.024 0.148 -0.039 0.219 -0.068 c 0.128 -0.053 0.246 -0.124 0.364 -0.194 c 0.049 -0.029 0.103 -0.05 0.151 -0.082 c 0.164 -0.11 0.317 -0.235 0.457 -0.375 l 7.672 -7.672 c 1.172 -1.171 1.172 -3.071 0 -4.242 c -1.171 -1.172 -3.071 -1.172 -4.242 0 l -1.513 1.513 c 3.694 -14.43 16.807 -25.13 32.372 -25.13 c 12.993 0 24.908 7.625 30.354 19.427 c 0.693 1.504 2.477 2.16 3.98 1.467 C 80.867 31.787 81.523 30.004 80.829 28.5 z"
|
|
42
|
+
style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(97,170,67); fill-rule: nonzero; opacity: 1;"
|
|
43
|
+
transform=" matrix(1 0 0 1 0 0) "
|
|
44
|
+
stroke-linecap="round"
|
|
45
|
+
id="path1" />
|
|
46
|
+
<path
|
|
47
|
+
d="M 89.562 52.668 l -5.614 -9.227 c -0.01 -0.017 -0.025 -0.03 -0.036 -0.047 c -0.095 -0.149 -0.205 -0.287 -0.324 -0.417 c -0.024 -0.027 -0.044 -0.058 -0.069 -0.084 c -0.148 -0.15 -0.312 -0.283 -0.489 -0.399 c -0.045 -0.03 -0.095 -0.05 -0.142 -0.077 c -0.135 -0.079 -0.274 -0.151 -0.421 -0.208 c -0.07 -0.027 -0.142 -0.044 -0.214 -0.066 c -0.132 -0.04 -0.264 -0.074 -0.403 -0.096 c -0.036 -0.006 -0.07 -0.021 -0.107 -0.025 c -0.052 -0.006 -0.103 0.003 -0.155 -0.001 C 81.52 42.016 81.455 42 81.386 42 c -0.061 0 -0.117 0.014 -0.177 0.018 c -0.093 0.005 -0.184 0.014 -0.276 0.028 c -0.128 0.019 -0.25 0.049 -0.372 0.084 c -0.08 0.023 -0.159 0.044 -0.236 0.073 c -0.135 0.051 -0.262 0.116 -0.387 0.185 c -0.059 0.033 -0.12 0.059 -0.177 0.096 c -0.18 0.116 -0.349 0.247 -0.5 0.398 l -7.672 7.672 c -1.172 1.171 -1.172 3.071 0 4.242 c 1.172 1.172 3.07 1.172 4.242 0 l 1.513 -1.513 c -3.694 14.43 -16.807 25.13 -32.372 25.13 c -13.459 0 -25.544 -8.011 -30.788 -20.408 c -0.646 -1.526 -2.405 -2.243 -3.932 -1.594 c -1.526 0.646 -2.24 2.405 -1.594 3.932 c 6.185 14.622 20.439 24.07 36.314 24.07 c 18.641 0 34.29 -13.013 38.367 -30.429 l 1.097 1.803 c 0.564 0.928 1.553 1.44 2.565 1.44 c 0.531 0 1.069 -0.141 1.557 -0.437 C 89.974 55.929 90.424 54.084 89.562 52.668 z"
|
|
48
|
+
style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(23,137,194); fill-rule: nonzero; opacity: 1;"
|
|
49
|
+
transform=" matrix(1 0 0 1 0 0) "
|
|
50
|
+
stroke-linecap="round"
|
|
51
|
+
id="path2" />
|
|
52
|
+
</g>
|
|
53
|
+
<g
|
|
54
|
+
id="g6"
|
|
55
|
+
transform="matrix(1.3689569,0,0,1.3689569,-47.22648,-8.0550482)"
|
|
56
|
+
style="fill:#999999"><g
|
|
57
|
+
id="g4"
|
|
58
|
+
transform="translate(-11.737403)"
|
|
59
|
+
style="fill:#999999"><path
|
|
60
|
+
d="m 88.998635,86.039717 c -1.55112,0 -2.81,1.25888 -2.81,2.81 v 20.195473 c 0,1.55112 1.25888,2.81 2.81,2.81 1.55112,0 2.81,-1.25888 2.81,-2.81 V 88.849717 c 0,-1.55112 -1.25607,-2.81 -2.81,-2.81 z"
|
|
61
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
62
|
+
stroke-linecap="round"
|
|
63
|
+
id="path7" /><path
|
|
64
|
+
d="m 113.16464,111.85519 h 0.26133 c 5.71273,0 10.36328,-4.64774 10.36328,-10.36047 v -5.094533 c 0,-5.71273 -4.64774,-10.36328 -10.6218,-10.36328 -5.71273,0 -10.36328,4.64774 -10.36328,10.36328 v 5.094533 c -0.003,5.71273 4.64774,10.36047 10.36047,10.36047 z m -4.74328,-15.452193 c 0,-2.61611 2.12717,-4.74328 5.0018,-4.74328 2.61611,0 4.74328,2.12717 4.74328,4.74328 v 5.094533 c 0,2.6133 -2.12717,4.74047 -4.74328,4.74047 h -0.26133 c -2.61611,0 -4.74328,-2.12717 -4.74328,-4.74047 v -5.094533 z"
|
|
65
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
66
|
+
stroke-linecap="round"
|
|
67
|
+
id="path8" /><path
|
|
68
|
+
d="m 137.26039,111.85519 c 1.55393,0 2.81,-1.25888 2.81,-2.81 V 88.849717 c 0,-1.55112 -1.25607,-2.81 -2.81,-2.81 -1.55393,0 -2.81,1.25888 -2.81,2.81 v 20.195473 c 0,1.55112 1.25607,2.81 2.81,2.81 z"
|
|
69
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
70
|
+
stroke-linecap="round"
|
|
71
|
+
id="path9" /><path
|
|
72
|
+
d="m 156.56509,111.85519 c 1.55393,0 2.81,-1.25888 2.81,-2.81 V 88.849717 c 0,-1.55112 -1.25607,-2.81 -2.81,-2.81 -1.55393,0 -2.81,1.25888 -2.81,2.81 v 20.195473 c 0,1.55112 1.25888,2.81 2.81,2.81 z"
|
|
73
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
74
|
+
stroke-linecap="round"
|
|
75
|
+
id="path10" /><path
|
|
76
|
+
d="m 182.66156,111.85519 h 0.26133 c 5.71273,0 10.36328,-4.64774 10.36328,-10.36047 v -5.094533 c 0,-5.71273 -4.64774,-10.36328 -10.6218,-10.36328 -5.71273,0 -10.36328,4.64774 -10.36328,10.36328 v 5.094533 c 0,5.71273 4.64774,10.36047 10.36047,10.36047 z m -4.74047,-15.452193 c 0,-2.61611 2.12717,-4.74328 5.0018,-4.74328 2.61611,0 4.74328,2.12717 4.74328,4.74328 v 5.094533 c 0,2.6133 -2.12717,4.74047 -4.74328,4.74047 h -0.26133 c -2.61611,0 -4.74328,-2.12717 -4.74328,-4.74047 v -5.094533 z"
|
|
77
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
78
|
+
stroke-linecap="round"
|
|
79
|
+
id="path11" /></g><g
|
|
80
|
+
id="g3"
|
|
81
|
+
transform="translate(-6.6760015)"
|
|
82
|
+
style="fill:#999999"><path
|
|
83
|
+
d="m 171.27063,73.383544 v -20.19547 c 0,-1.55112 -1.25607,-2.81 -2.81,-2.81 -1.55393,0 -2.81,1.25888 -2.81,2.81 v 20.19547 c 0,1.55112 1.25607,2.81 2.81,2.81 1.55393,0 2.81,-1.25888 2.81,-2.81 z"
|
|
84
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
85
|
+
stroke-linecap="round"
|
|
86
|
+
id="path12" /><path
|
|
87
|
+
d="m 133.67002,60.741354 v 5.09453 c 0,5.71273 4.64774,10.36047 10.36328,10.36047 h 0.26414 c 5.71273,0 10.36328,-4.64774 10.36328,-10.36047 v -5.09453 c 0,-5.71273 -4.64774,-10.36328 -10.62461,-10.36328 -5.71554,0 -10.36609,4.64774 -10.36609,10.36328 z m 5.62,0 c 0,-2.61611 2.12717,-4.74328 5.00461,-4.74328 2.61611,0 4.74328,2.12717 4.74328,4.74328 v 5.09453 c 0,2.6133 -2.12717,4.74047 -4.74328,4.74047 h -0.26414 c -2.61611,0 -4.74328,-2.12717 -4.74328,-4.74047 v -5.09453 z"
|
|
88
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
89
|
+
stroke-linecap="round"
|
|
90
|
+
id="path13" /><path
|
|
91
|
+
d="m 117.38607,53.188074 v 20.19547 c 0,1.55112 1.25607,2.81 2.81,2.81 1.55393,0 2.81,-1.25888 2.81,-2.81 v -20.19547 c 0,-1.55112 -1.25607,-2.81 -2.81,-2.81 -1.55393,0 -2.81,1.25888 -2.81,2.81 z"
|
|
92
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
93
|
+
stroke-linecap="round"
|
|
94
|
+
id="path14" /><path
|
|
95
|
+
d="m 98.081373,53.188074 v 20.19547 c 0,1.55112 1.25607,2.81 2.809997,2.81 1.55393,0 2.81,-1.25888 2.81,-2.81 v -20.19547 c 0,-1.55112 -1.25607,-2.81 -2.81,-2.81 -1.553927,0 -2.809997,1.25888 -2.809997,2.81 z"
|
|
96
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
97
|
+
stroke-linecap="round"
|
|
98
|
+
id="path15" /></g><g
|
|
99
|
+
id="g5"
|
|
100
|
+
transform="translate(-9.513177)"
|
|
101
|
+
style="fill:#999999"><path
|
|
102
|
+
d="m 148.63094,145.57816 v -20.19547 c 0,-1.55393 -1.25607,-2.81 -2.81,-2.81 -1.55393,0 -2.81,1.25607 -2.81,2.81 v 20.19547 c 0,1.55393 1.25607,2.81 2.81,2.81 1.55393,0 2.81,-1.25607 2.81,-2.81 z"
|
|
103
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
104
|
+
stroke-linecap="round"
|
|
105
|
+
id="path16" /><path
|
|
106
|
+
d="m 132.01822,138.02769 v -5.09453 c 0,-5.71273 -4.64774,-10.36047 -10.62461,-10.36047 -5.71273,0 -10.36328,4.64493 -10.36328,10.36047 v 5.09453 c 0,5.71273 4.64774,10.36328 10.36328,10.36328 h 0.26414 c 5.71273,-0.003 10.36047,-4.65055 10.36047,-10.36328 z m -15.36789,0 v -5.09453 c 0,-2.6133 2.12717,-4.74047 5.00461,-4.74047 2.61611,0 4.74328,2.12717 4.74328,4.74047 v 5.09453 c 0,2.61611 -2.12717,4.74328 -4.74328,4.74328 h -0.26414 c -2.6133,-0.003 -4.74047,-2.12998 -4.74047,-4.74328 z"
|
|
107
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
108
|
+
stroke-linecap="round"
|
|
109
|
+
id="path17" /><path
|
|
110
|
+
d="m 100.36638,145.57816 v -20.19547 c 0,-1.55393 -1.256066,-2.81 -2.809996,-2.81 -1.55393,0 -2.81,1.25607 -2.81,2.81 v 20.19547 c 0,1.55393 1.25607,2.81 2.81,2.81 1.55393,0 2.809996,-1.25607 2.809996,-2.81 z"
|
|
111
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
112
|
+
stroke-linecap="round"
|
|
113
|
+
id="path18" /><path
|
|
114
|
+
d="m 169.65536,122.5755 c -5.71273,0 -10.36328,4.64493 -10.36328,10.36047 v 5.09453 c 0,5.71273 4.64774,10.36328 10.36328,10.36328 h 0.26133 c 5.71273,0 10.36328,-4.64774 10.36328,-10.36328 v -5.09734 c 0,-5.71273 -4.65055,-10.35766 -10.62461,-10.35766 z m 5.00461,15.45219 c 0,2.61611 -2.12717,4.74328 -4.74328,4.74328 h -0.26133 c -2.61611,0 -4.74328,-2.12717 -4.74328,-4.74328 v -5.09453 c 0,-2.6133 2.12717,-4.74047 5.0018,-4.74047 2.61611,0 4.74328,2.12717 4.74328,4.74047 v 5.09453 z"
|
|
115
|
+
style="fill:#999999;fill-rule:nonzero;stroke:none;stroke-width:2.81;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
116
|
+
stroke-linecap="round"
|
|
117
|
+
id="path19" /></g></g></svg>
|
|
@@ -0,0 +1,46 @@
|
|
|
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
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="convolution.svg"
|
|
10
|
+
inkscape:version="1.3.2 (091e20e, 2023-11-25, custom)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview10"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#666666"
|
|
21
|
+
borderopacity="1.0"
|
|
22
|
+
inkscape:pageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
showgrid="false"
|
|
26
|
+
inkscape:zoom="29.714286"
|
|
27
|
+
inkscape:cx="10.71875"
|
|
28
|
+
inkscape:cy="5.8725961"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="1009"
|
|
31
|
+
inkscape:window-x="-8"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg8"
|
|
35
|
+
inkscape:showpageshadow="2"
|
|
36
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
37
|
+
<path
|
|
38
|
+
d="m 12.264847,2.7791132 v 8.4417748 c 0,0.58037 -0.557456,1.05522 -1.238789,1.05522 H 2.9739403 c -0.6813332,0 -1.2387875,-0.47485 -1.2387875,-1.05522 V 2.7791132 c 0,-0.5803721 0.5574543,-1.0552214 1.2387875,-1.0552214 h 8.0521177 c 0.681333,0 1.238789,0.4748493 1.238789,1.0552214 z"
|
|
39
|
+
id="path2-7"
|
|
40
|
+
style="fill:#f99090;fill-opacity:1;stroke-width:0.990238" />
|
|
41
|
+
<path
|
|
42
|
+
d="m 7.0000068,10.993624 q -1.6569999,0 -2.8285506,-1.1650776 -1.1650781,-1.1715507 -1.1650781,-2.8285507 0,-1.6569999 1.1650781,-2.822078 1.1715507,-1.1715508 2.8285506,-1.1715508 1.657,0 2.8220781,1.1715508 1.1715511,1.1650781 1.1715511,2.822078 0,1.657 -1.1715511,2.8285507 -1.1650781,1.1650776 -2.8220781,1.1650776 z m 0,-0.640792 q 1.3916211,0 2.3689922,-0.9838442 0.983844,-0.9838437 0.983844,-2.3689921 0,-1.391621 -0.983844,-2.3689921 -0.9773711,-0.9838437 -2.3689922,-0.9838437 -1.391621,0 -2.3754647,0.9838437 -0.9773711,0.9773711 -0.9773711,2.3689921 0,1.3851484 0.9838437,2.3689921 0.9838438,0.9838442 2.3689921,0.9838442 z M 6.6828467,8.9159019 6.8381904,7.2718473 5.4983506,8.2298004 5.1811905,7.6796246 6.6828467,6.9999957 5.1811905,6.3138942 5.4983506,5.7637184 6.8381904,6.7216715 6.6828467,5.0840895 H 7.3236396 L 7.1618232,6.7216715 8.501663,5.7637184 8.8188232,6.3138942 7.3236396,6.9999957 8.8188232,7.6796246 8.501663,8.2298004 7.1618232,7.2718473 7.3236396,8.9159019 Z"
|
|
43
|
+
id="text1"
|
|
44
|
+
style="font-size:13.256px;line-height:1.05;font-family:Verdana;-inkscape-font-specification:Verdana;letter-spacing:0px;stroke-width:0.869922"
|
|
45
|
+
aria-label="⊛" />
|
|
46
|
+
</svg>
|
|
@@ -0,0 +1,57 @@
|
|
|
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
|
+
version="1.1"
|
|
8
|
+
id="svg8"
|
|
9
|
+
sodipodi:docname="deconvolution.svg"
|
|
10
|
+
inkscape:version="1.4 (86a8ad7, 2024-10-11)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
14
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
15
|
+
<defs
|
|
16
|
+
id="defs12" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview10"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#666666"
|
|
21
|
+
borderopacity="1.0"
|
|
22
|
+
inkscape:pageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
showgrid="false"
|
|
26
|
+
inkscape:zoom="29.714286"
|
|
27
|
+
inkscape:cx="7.5384615"
|
|
28
|
+
inkscape:cy="5.8725961"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="1009"
|
|
31
|
+
inkscape:window-x="-8"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg8"
|
|
35
|
+
inkscape:showpageshadow="2"
|
|
36
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
37
|
+
<path
|
|
38
|
+
d="m 12.701413,2.4291132 v 9.1417748 c 0,0.628495 -0.603681,1.14272 -1.34151,1.14272 H 2.6400955 c -0.73783,0 -1.3415089,-0.514225 -1.3415089,-1.14272 V 2.4291132 c 0,-0.6284971 0.6036789,-1.1427214 1.3415089,-1.1427214 h 8.7198075 c 0.737829,0 1.34151,0.5142243 1.34151,1.1427214 z"
|
|
39
|
+
id="path2-7"
|
|
40
|
+
style="fill:#f99090;fill-opacity:1;stroke-width:1.07235" />
|
|
41
|
+
<path
|
|
42
|
+
d="m 5.9230837,11.902277 q -1.6569999,0 -2.8285506,-1.165077 Q 1.929455,9.5656495 1.929455,7.9086495 q 0,-1.6569999 1.1650781,-2.822078 1.1715507,-1.1715508 2.8285506,-1.1715508 1.657,0 2.8220781,1.1715508 1.1715507,1.1650781 1.1715507,2.822078 0,1.657 -1.1715507,2.8285505 -1.1650781,1.165077 -2.8220781,1.165077 z m 0,-0.640792 q 1.3916211,0 2.3689922,-0.983844 0.983844,-0.9838431 0.983844,-2.3689915 0,-1.391621 -0.983844,-2.3689921 -0.9773711,-0.9838437 -2.3689922,-0.9838437 -1.391621,0 -2.3754647,0.9838437 -0.9773711,0.9773711 -0.9773711,2.3689921 0,1.3851484 0.9838437,2.3689915 0.9838438,0.983844 2.3689921,0.983844 z M 5.6059236,9.8245554 5.7612673,8.1805011 4.4214275,9.1384542 4.1042674,8.5882784 5.6059236,7.9086495 4.1042674,7.222548 4.4214275,6.6723722 5.7612673,7.6303253 5.6059236,5.9927433 H 6.2467165 L 6.0849001,7.6303253 7.4247399,6.6723722 7.7419001,7.222548 6.2467165,7.9086495 7.7419001,8.5882784 7.4247399,9.1384542 6.0849001,8.1805011 6.2467165,9.8245554 Z"
|
|
43
|
+
id="text1"
|
|
44
|
+
style="font-size:13.256px;line-height:1.05;font-family:Verdana;-inkscape-font-specification:Verdana;letter-spacing:0px;stroke-width:0.869922"
|
|
45
|
+
aria-label="⊛" />
|
|
46
|
+
<text
|
|
47
|
+
xml:space="preserve"
|
|
48
|
+
x="7.7064052"
|
|
49
|
+
y="5.366591"
|
|
50
|
+
id="text1-9-1"
|
|
51
|
+
style="font-size:10.3391px;stroke-width:0.861601"><tspan
|
|
52
|
+
sodipodi:role="line"
|
|
53
|
+
id="tspan1-7-8"
|
|
54
|
+
x="7.7064052"
|
|
55
|
+
y="5.366591"
|
|
56
|
+
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.59521px;font-family:Verdana;-inkscape-font-specification:Verdana;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.353595">-1</tspan></text>
|
|
57
|
+
</svg>
|