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,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="svg12"
|
|
9
|
+
sodipodi:docname="voigtfit - Copie.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="defs16">
|
|
17
|
+
</defs>
|
|
18
|
+
<sodipodi:namedview
|
|
19
|
+
id="namedview14"
|
|
20
|
+
pagecolor="#ffffff"
|
|
21
|
+
bordercolor="#000000"
|
|
22
|
+
borderopacity="0.25"
|
|
23
|
+
inkscape:showpageshadow="2"
|
|
24
|
+
inkscape:pageopacity="0.0"
|
|
25
|
+
inkscape:pagecheckerboard="0"
|
|
26
|
+
inkscape:deskcolor="#d1d1d1"
|
|
27
|
+
showgrid="false"
|
|
28
|
+
inkscape:zoom="42.274884"
|
|
29
|
+
inkscape:cx="6.7061095"
|
|
30
|
+
inkscape:cy="9.3790914"
|
|
31
|
+
inkscape:window-width="1920"
|
|
32
|
+
inkscape:window-height="1009"
|
|
33
|
+
inkscape:window-x="-8"
|
|
34
|
+
inkscape:window-y="-8"
|
|
35
|
+
inkscape:window-maximized="1"
|
|
36
|
+
inkscape:current-layer="svg12" />
|
|
37
|
+
<rect
|
|
38
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.547874"
|
|
39
|
+
id="rect28089"
|
|
40
|
+
width="0.53186357"
|
|
41
|
+
height="12.584304"
|
|
42
|
+
x="6.7340684"
|
|
43
|
+
y="0.70784807" />
|
|
44
|
+
<rect
|
|
45
|
+
style="fill:#696969;fill-opacity:0.817241;stroke-width:0.54642"
|
|
46
|
+
id="rect28089-7"
|
|
47
|
+
width="0.53186357"
|
|
48
|
+
height="12.5176"
|
|
49
|
+
x="6.7340684"
|
|
50
|
+
y="-13.258801"
|
|
51
|
+
transform="rotate(90)" />
|
|
52
|
+
<path
|
|
53
|
+
d="m 128.54339,373.5 11.24061,-0.11 13.493,-0.245 8.961,-0.375 6.798,-0.498 5.665,-0.632 4.841,-0.757 4.326,-0.896 3.914,-1.035 3.605,-1.18 3.399,-1.348 3.193,-1.506 2.987,-1.648 2.884,-1.837 2.884,-2.106 2.781,-2.31 2.781,-2.61 2.678,-2.818 2.678,-3.14 2.678,-3.483 2.678,-3.846 2.781,-4.398 2.781,-4.825 2.781,-5.27 2.884,-5.944 2.987,-6.679 3.09,-7.471 3.193,-8.31 3.399,-9.484 3.605,-10.737 3.914,-12.369 4.429,-14.749 5.665,-19.699 14.008,-49.096 4.017,-13.074 3.399,-10.337 2.987,-8.399 2.678,-6.895 2.472,-5.767 2.266,-4.738 2.06,-3.819 1.957,-3.175 1.854,-2.584 1.648,-1.939 1.545,-1.504 1.545,-1.195 1.442,-0.832 1.339,-0.526 1.339,-0.286 1.339,-0.046 1.339,0.194 1.339,0.434 1.339,0.672 1.442,0.989 1.442,1.26 1.545,1.646 1.648,2.088 1.751,2.583 1.854,3.131 2.06,3.938 2.163,4.628 2.369,5.611 2.575,6.688 2.884,8.145 3.193,9.711 3.708,12.021 4.635,15.837 7.828,27.702 7.416,25.93 4.841,16.12 4.12,12.962 3.708,10.954 3.502,9.661 3.296,8.449 3.193,7.573 3.09,6.747 2.987,5.984 2.884,5.284 2.781,4.65 2.781,4.227 2.781,3.825 2.781,3.444 2.781,3.084 2.781,2.75 2.781,2.44 2.884,2.23 2.884,1.949 2.987,1.752 3.09,1.557 3.296,1.407 3.502,1.245 3.708,1.078 4.017,0.932 4.429,0.797 5.047,0.674 5.768,0.54 7.004,0.423 8.858,0.3 12.669,0.189 10.04064,0.082"
|
|
54
|
+
style="fill:none;stroke:#da251d;stroke-width:10.1837;stroke-linecap:square;stroke-linejoin:round;stroke-dasharray:none"
|
|
55
|
+
id="path4"
|
|
56
|
+
transform="matrix(0.03401409,0,0,0.03472684,-3.6403061,-1.5951129)" />
|
|
57
|
+
</svg>
|
|
@@ -0,0 +1,56 @@
|
|
|
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="svg12"
|
|
9
|
+
sodipodi:docname="group.svg"
|
|
10
|
+
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
|
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="defs16" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview14"
|
|
19
|
+
pagecolor="#ffffff"
|
|
20
|
+
bordercolor="#000000"
|
|
21
|
+
borderopacity="0.25"
|
|
22
|
+
inkscape:showpageshadow="2"
|
|
23
|
+
inkscape:pageopacity="0.0"
|
|
24
|
+
inkscape:pagecheckerboard="0"
|
|
25
|
+
inkscape:deskcolor="#d1d1d1"
|
|
26
|
+
showgrid="false"
|
|
27
|
+
inkscape:zoom="42.274884"
|
|
28
|
+
inkscape:cx="6.2330153"
|
|
29
|
+
inkscape:cy="7.2619951"
|
|
30
|
+
inkscape:window-width="1920"
|
|
31
|
+
inkscape:window-height="1017"
|
|
32
|
+
inkscape:window-x="-8"
|
|
33
|
+
inkscape:window-y="-8"
|
|
34
|
+
inkscape:window-maximized="1"
|
|
35
|
+
inkscape:current-layer="svg12" />
|
|
36
|
+
<path
|
|
37
|
+
style="fill:#37474f;fill-opacity:1;stroke-width:0.0283859"
|
|
38
|
+
d="M 6.8296648,6.2443952 C 5.1630385,5.5656538 1.8498204,4.1646697 1.7789376,4.1087109 1.5025462,3.8905091 1.4800142,3.4944286 1.7294168,3.2382259 1.8405063,3.1241066 2.0039025,3.0514944 4.345882,2.0754702 6.5932984,1.1388551 6.8595177,1.0343842 6.9999828,1.0339318 c 0.1415059,-3.633e-4 0.390015,0.09695 2.6541007,1.0402832 2.3522085,0.9800497 2.5048905,1.0479296 2.6164655,1.1632569 0.249319,0.2577033 0.226926,0.6519036 -0.04951,0.871831 -0.05551,0.044159 -1.158863,0.5197575 -2.5669417,1.1064682 C 7.5864819,6.0772998 7.159093,6.2461719 7.0283823,6.253264 6.9425113,6.257924 6.8530974,6.2539906 6.8296786,6.244414 Z"
|
|
39
|
+
id="path468" />
|
|
40
|
+
<path
|
|
41
|
+
style="fill:#e6e6e6;fill-opacity:1;stroke-width:0.0283859"
|
|
42
|
+
d="M 8.6321836,4.3315814 C 9.5064757,3.9681026 10.230488,3.6632333 10.241101,3.6540937 10.251674,3.6449595 9.5273918,3.332242 8.6315001,2.959184 L 7.0026097,2.2808951 5.3619985,2.965448 C 4.4596615,3.3419539 3.7277741,3.6507492 3.73558,3.6516593 c 0.00783,9.084e-4 0.7422977,0.3067549 1.6322008,0.6796531 0.8899054,0.3728999 1.6307817,0.6742049 1.6463938,0.6695669 0.015607,-0.00461 0.7437167,-0.3058214 1.618009,-0.6692979 z"
|
|
43
|
+
id="path470" />
|
|
44
|
+
<path
|
|
45
|
+
style="fill:#37474f;fill-opacity:1;stroke-width:0.0283859"
|
|
46
|
+
d="M 6.8296648,8.555918 C 6.7047945,8.5138635 1.9668561,6.5342623 1.8572542,6.4783472 1.7992771,6.4487701 1.72075,6.3829396 1.682745,6.3320546 1.3828407,5.9304968 1.650263,5.366658 2.1420241,5.3636968 2.2889687,5.3627885 2.4934964,5.4425038 4.6384238,6.3363819 6.122015,6.9546554 6.9974976,7.3052811 7.0370482,7.2970226 7.0713075,7.2898568 8.1340078,6.8517267 9.3986083,6.3233765 11.510477,5.4410359 11.710928,5.3628176 11.85794,5.3637005 c 0.420368,0.0025 0.706337,0.4392481 0.53752,0.8208844 C 12.31933,6.3566469 12.267463,6.4146095 12.123673,6.488199 12.061243,6.520158 10.92436,6.998606 9.5973109,7.5514122 7.1367723,8.5763955 7.0182294,8.6194195 6.8296648,8.555918 Z"
|
|
47
|
+
id="path466" />
|
|
48
|
+
<path
|
|
49
|
+
style="fill:#475b63;fill-opacity:1;stroke-width:0.0283859"
|
|
50
|
+
d="M 6.8012757,10.738642 C 6.2414245,10.520938 1.8794269,8.6854904 1.8017182,8.6349215 1.6736432,8.551578 1.5497412,8.3147523 1.5501286,8.1540355 1.5504917,8.0267197 1.653419,7.7820185 1.7384714,7.7065142 1.8523252,7.6054423 2.0631461,7.5345575 2.200317,7.551231 2.278995,7.560811 3.2500251,7.9502309 4.6555214,8.5359024 6.171646,9.1676718 7.001233,9.4994853 7.0399531,9.4896143 7.0726131,9.4812143 8.1276204,9.0454211 9.3844144,8.521022 10.755609,7.9488883 11.721549,7.5611371 11.799648,7.5514906 c 0.137204,-0.01695 0.347723,0.053715 0.461846,0.1550236 0.08505,0.075507 0.188036,0.3202055 0.188343,0.4475213 3.64e-4,0.1605988 -0.123509,0.3974956 -0.251591,0.4810624 -0.05663,0.036946 -1.213433,0.5299779 -2.5706822,1.0956284 -1.7603477,0.7336367 -2.5048743,1.0310367 -2.5973281,1.0374947 -0.071286,0.0046 -0.1743128,-0.0085 -0.2289567,-0.02957 z"
|
|
51
|
+
id="path464" />
|
|
52
|
+
<path
|
|
53
|
+
style="fill:#576e79;fill-opacity:1;stroke-width:0.0283859"
|
|
54
|
+
d="M 6.8722457,12.954603 C 6.6969628,12.909251 1.8442374,10.871475 1.7585568,10.807248 1.5332822,10.638388 1.4799938,10.238454 1.6505101,9.996368 1.6966271,9.930898 1.7918411,9.846607 1.8620975,9.809066 2.1201858,9.6711498 2.0703906,9.6546621 4.6666067,10.737631 l 2.336137,0.974492 2.3333759,-0.974308 C 11.929153,9.6551011 11.880146,9.6713468 12.137865,9.809066 c 0.07022,0.0375 0.165472,0.121825 0.211588,0.187302 0.170493,0.242052 0.11739,0.64091 -0.108041,0.81153 -0.11818,0.08944 -5.0284225,2.133784 -5.1723701,2.153474 -0.061397,0.0086 -0.1499568,0.0049 -0.196792,-0.0071 z"
|
|
55
|
+
id="path438" />
|
|
56
|
+
</svg>
|
|
@@ -0,0 +1,59 @@
|
|
|
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="svg3"
|
|
9
|
+
sodipodi:docname="h5array.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="defs3" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview3"
|
|
19
|
+
pagecolor="#505050"
|
|
20
|
+
bordercolor="#ffffff"
|
|
21
|
+
borderopacity="1"
|
|
22
|
+
inkscape:showpageshadow="0"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pagecheckerboard="1"
|
|
25
|
+
inkscape:deskcolor="#505050"
|
|
26
|
+
inkscape:zoom="55.5"
|
|
27
|
+
inkscape:cx="6.990991"
|
|
28
|
+
inkscape:cy="6.981982"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="1009"
|
|
31
|
+
inkscape:window-x="1912"
|
|
32
|
+
inkscape:window-y="-8"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg3" />
|
|
35
|
+
<rect
|
|
36
|
+
style="fill:#ffffff;stroke-width:0.6"
|
|
37
|
+
id="rect1"
|
|
38
|
+
width="11.063063"
|
|
39
|
+
height="10.900901"
|
|
40
|
+
x="1.5855856"
|
|
41
|
+
y="1.5855856"
|
|
42
|
+
ry="0" />
|
|
43
|
+
<g
|
|
44
|
+
id="g2"
|
|
45
|
+
transform="matrix(0.85018746,0,0,0.85018746,1.018018,1.0720721)">
|
|
46
|
+
<path
|
|
47
|
+
d="M 0.45591186,0 C 0.20418398,0 0,0.1689063 0,0.3789063 V 13.621094 C 0,13.831194 0.20418398,14 0.45591186,14 H 4.6167432 c 0.2518147,0 0.4542171,-0.168806 0.4542171,-0.378906 V 0.3789063 C 5.0709603,0.1689063 4.8685579,0 4.6167432,0 Z M 1.0508006,1.0585938 H 4.0201597 V 4.2734376 H 1.0508006 Z m 0,4.2832032 H 4.0201597 V 8.5566407 H 1.0508006 Z m 0,4.2832026 H 4.0201597 V 12.841797 H 1.0508006 Z"
|
|
48
|
+
id="path2-79"
|
|
49
|
+
style="fill:#999999;stroke-width:0.931535" />
|
|
50
|
+
<path
|
|
51
|
+
d="M 4.9876524,0 C 4.7359245,0 4.5317405,0.1689063 4.5317405,0.3789063 V 13.621094 C 4.5317405,13.831194 4.7359245,14 4.9876524,14 H 9.1484835 C 9.4002982,14 9.602701,13.831194 9.602701,13.621094 V 0.3789063 C 9.602701,0.1689063 9.4002982,0 9.1484835,0 Z M 5.5825411,1.0585938 H 8.5519002 V 4.2734376 H 5.5825411 Z m 0,4.2832032 H 8.5519002 V 8.5566407 H 5.5825411 Z m 0,4.2832026 H 8.5519002 V 12.841797 H 5.5825411 Z"
|
|
52
|
+
id="path2-7"
|
|
53
|
+
style="fill:#999999;stroke-width:0.931535" />
|
|
54
|
+
<path
|
|
55
|
+
d="M 9.4849749,0 C 9.233247,0 9.0290627,0.1689063 9.0290627,0.3789063 V 13.621094 C 9.0290627,13.831194 9.233247,14 9.4849749,14 h 4.1608311 c 0.251815,0 0.454217,-0.168806 0.454217,-0.378906 V 0.3789063 C 14.100023,0.1689063 13.897621,0 13.645806,0 Z m 0.5948891,1.0585938 h 2.969359 v 3.2148438 h -2.969359 z m 0,4.2832032 h 2.969359 v 3.2148438 h -2.969359 z m 0,4.2832027 h 2.969359 v 3.2167973 h -2.969359 z"
|
|
56
|
+
id="path2-3"
|
|
57
|
+
style="fill:#999999;stroke-width:0.931535" />
|
|
58
|
+
</g>
|
|
59
|
+
</svg>
|
|
@@ -0,0 +1,75 @@
|
|
|
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="svg3"
|
|
9
|
+
sodipodi:docname="h5attrs.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="defs3" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview3"
|
|
19
|
+
pagecolor="#505050"
|
|
20
|
+
bordercolor="#ffffff"
|
|
21
|
+
borderopacity="1"
|
|
22
|
+
inkscape:showpageshadow="0"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pagecheckerboard="1"
|
|
25
|
+
inkscape:deskcolor="#505050"
|
|
26
|
+
inkscape:zoom="45.254834"
|
|
27
|
+
inkscape:cx="6.7838057"
|
|
28
|
+
inkscape:cy="6.3087183"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="991"
|
|
31
|
+
inkscape:window-x="-9"
|
|
32
|
+
inkscape:window-y="-9"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg3" />
|
|
35
|
+
<path
|
|
36
|
+
d="M 1.265625,9.6347656 V 12.408203 H 12.761719 V 9.6347656 Z"
|
|
37
|
+
style="fill:#999999;stroke-width:1.305"
|
|
38
|
+
id="path8" />
|
|
39
|
+
<path
|
|
40
|
+
d="M 1.2382812,3.3945313 V 6.1679687 H 12.734375 V 3.3945313 Z"
|
|
41
|
+
style="fill:#999999;stroke-width:1.305"
|
|
42
|
+
id="path10" />
|
|
43
|
+
<path
|
|
44
|
+
d="M 1.2382812,6.4804687 V 9.2539063 H 12.734375 V 6.4804687 Z"
|
|
45
|
+
style="fill:#cccccc;stroke-width:1.305"
|
|
46
|
+
id="path7" />
|
|
47
|
+
<path
|
|
48
|
+
d="M5.0086942 12.037428V9.93933025c0-.08850747-.021633-.16121228-.0649-.21811601-.043267-.05689532-.098553-.08534232-.16586-.08534232H1.7320144c-.067313 0-.122603.028447-.165869.08534232-.043267.05689531-.0649.12960065-.0649.21811601V12.037428c0 .08851142.021633.1612207.0649.21811601.043267.05689926.098556.08534232.165869.08534232h3.0459198c.067307 0 .1225933-.02844306.16586-.08534232.043267-.05689925.0649-.1296046.0649-.21811601zm0-3.08676884V6.8178927c0-.08850747-.021633-.16121228-.0649-.21811601-.043267-.05689531-.098553-.08534231-.16586-.08534231H1.7320144c-.067313 0-.122603.028447-.165869.0853423-.043267.05689532-.0649.12960066-.0649.21811602v2.13276646c0 .08850747.021633.16121241.0649.21811601.043267.05689531.098556.08534231.165869.08534231h3.0459198c.067307 0 .1225933-.028447.16586-.0853423.043267-.05689532.0649-.12960066.0649-.21811602zm3.69231 3.08676884V9.93933025c0-.08850747-.021633-.16121228-.0649-.21811601-.043267-.05689532-.098553-.08534232-.16586-.08534232H5.5297758c-.067307 0-.1225933.028447-.16586.08534232-.043267.05689531-.0649.12960065-.0649.21811601V12.037428c0 .08851142.021633.1612207.0649.21811601.043267.05689926.098553.08534232.16586.08534232h2.9404684c.067307 0 .1225933-.02844306.16586-.08534232.043267-.05689925.0649-.1296046.0649-.21811601zm-3.69231-6.2082064V3.73112518c0-.08850747-.021633-.16121241-.0649-.21811601-.043267-.05689531-.098553-.08534231-.16586-.08534231H1.7320144c-.067313 0-.122603.028447-.165869.08534231-.043267.05689531-.0649.12960065-.0649.21811601v2.09809644c0 .08850747.021633.16121242.0649.21811601.043267.05689532.098556.08534232.165869.08534232h3.0459198c.067307 0 .1225933-.028447.16586-.08534232.043267-.05689531.0649-.12960065.0649-.21811601zm3.69231 3.12143756V6.8178927c0-.08850747-.021633-.16121228-.0649-.21811601-.043267-.05689531-.098553-.08534231-.16586-.08534231H5.5297758c-.067307 0-.1225933.028447-.16586.0853423-.043267.05689532-.0649.12960066-.0649.21811602v2.13276646c0 .08850747.021633.16121241.0649.21811601.043267.05689531.098553.08534231.16586.08534231h2.9404684c.067307 0 .1225933-.028447.16586-.0853423.043267-.05689532.0649-.12960066.0649-.21811602zM12.498766 12.037428V9.93933025c0-.08850747-.02163-.16121228-.0649-.21811601-.04327-.05689532-.09856-.08534232-.16587-.08534232H9.2220758c-.067307 0-.1225933.028447-.16586.08534232-.043267.05689531-.0649.12960065-.0649.21811601V12.037428c0 .08851142.021633.1612207.0649.21811601.043267.05689926.098553.08534232.16586.08534232h3.0459202c.06731 0 .122603-.02844306.16587-.08534232.04327-.05689925.0649-.1296046.0649-.21811601zM8.7010042 5.8292216V3.73112518c0-.08850747-.021633-.16121241-.0649-.21811601-.043267-.05689531-.098553-.08534231-.16586-.08534231H5.5297758c-.067307 0-.1225933.028447-.16586.08534231-.043267.05689531-.0649.12960065-.0649.21811601v2.09809644c0 .08850747.021633.16121242.0649.21811601.043267.05689532.098553.08534232.16586.08534232h2.9404684c.067307 0 .1225933-.028447.16586-.08534232.043267-.05689531.0649-.12960065.0649-.21811601zm3.7977618 3.12143756V6.8178927c0-.08850747-.02163-.16121228-.0649-.21811601-.04327-.05689531-.09856-.08534231-.16587-.08534231H9.2220758c-.067307 0-.1225933.028447-.16586.0853423-.043267.05689532-.0649.12960066-.0649.21811602v2.13276646c0 .08850747.021633.16121241.0649.21811601.043267.05689531.098553.08534231.16586.08534231h3.0459202c.06731 0 .122603-.028447.16587-.0853423.04327-.05689532.0649-.12960066.0649-.21811602zm0-3.12143755V3.73112517c0-.08850747-.02163-.16121241-.0649-.21811601-.04327-.05689531-.09856-.08534231-.16587-.08534231H9.2220758c-.067307 0-.1225933.028447-.16586.08534231-.043267.05689531-.0649.12960065-.0649.21811601v2.09809644c0 .08850747.021633.16121242.0649.21811601.043267.05689532.098553.08534232.16586.08534232h3.0459202c.06731 0 .122603-.028447.16587-.08534232.04327-.05689531.0649-.12960065.0649-.21811601zM13 2.51729187v8.96541583c0 .41726132-.11298.774459-.33894 1.07159227-.22596.29713326-.497597.4456999-.81491.4456999h-9.6923c-.31731 0-.588946-.14856664-.814908-.4456999C1.1129807 12.2571667 1 11.89996902 1 11.4827077V2.51729187c0-.4172525.1129807-.77444533.338942-1.07157859.225962-.29714208.497598-.44571305.814908-.44571305h9.6923c.317313 0 .58895.14857097.81491.44571305.22596.29713326.33894.65432608.33894 1.07157859z"
|
|
49
|
+
id="path3"
|
|
50
|
+
style="fill:#1a1a1a" />
|
|
51
|
+
<rect
|
|
52
|
+
style="fill:#008080;stroke-width:2.02729;stroke-linecap:round"
|
|
53
|
+
id="rect19"
|
|
54
|
+
width="11.002709"
|
|
55
|
+
height="2.8110001"
|
|
56
|
+
x="1.5082331"
|
|
57
|
+
y="3.3595252"
|
|
58
|
+
ry="0.25537145" />
|
|
59
|
+
<rect
|
|
60
|
+
style="fill:#b3b3b3;stroke-width:2.02729;stroke-linecap:round"
|
|
61
|
+
id="rect19-3"
|
|
62
|
+
width="11.002709"
|
|
63
|
+
height="2.8110001"
|
|
64
|
+
x="1.5082331"
|
|
65
|
+
y="6.4613943"
|
|
66
|
+
ry="0.25537145" />
|
|
67
|
+
<rect
|
|
68
|
+
style="fill:#00ffff;stroke-width:2.02729;stroke-linecap:round"
|
|
69
|
+
id="rect19-6"
|
|
70
|
+
width="11.002709"
|
|
71
|
+
height="2.8110001"
|
|
72
|
+
x="1.5082331"
|
|
73
|
+
y="9.5632639"
|
|
74
|
+
ry="0.25537145" />
|
|
75
|
+
</svg>
|
|
@@ -0,0 +1,133 @@
|
|
|
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="h5browser.svg"
|
|
10
|
+
inkscape:version="1.2.2 (732a01da63, 2022-12-09)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs12">
|
|
18
|
+
<linearGradient
|
|
19
|
+
id="BlueGreen"
|
|
20
|
+
gradientUnits="userSpaceOnUse"
|
|
21
|
+
y1="20"
|
|
22
|
+
x1="0"
|
|
23
|
+
y2="180"
|
|
24
|
+
x2="0"
|
|
25
|
+
xlink:href="#linearGradientStops"
|
|
26
|
+
gradientTransform="matrix(0.0131133,0,0,0.0131133,3.5203036,5.0108875)" />
|
|
27
|
+
<linearGradient
|
|
28
|
+
id="linearGradientStops">
|
|
29
|
+
<stop
|
|
30
|
+
offset="0"
|
|
31
|
+
style="stop-color:#0515fe"
|
|
32
|
+
id="stop2" />
|
|
33
|
+
<stop
|
|
34
|
+
offset="1"
|
|
35
|
+
style="stop-color:#2cab28"
|
|
36
|
+
id="stop4" />
|
|
37
|
+
</linearGradient>
|
|
38
|
+
<linearGradient
|
|
39
|
+
id="linearGradient4689">
|
|
40
|
+
<stop
|
|
41
|
+
style="stop-color:#5a9fd4;stop-opacity:1"
|
|
42
|
+
offset="0"
|
|
43
|
+
id="stop4691" />
|
|
44
|
+
<stop
|
|
45
|
+
style="stop-color:#306998;stop-opacity:1"
|
|
46
|
+
offset="1"
|
|
47
|
+
id="stop4693" />
|
|
48
|
+
</linearGradient>
|
|
49
|
+
<linearGradient
|
|
50
|
+
id="linearGradient4671">
|
|
51
|
+
<stop
|
|
52
|
+
style="stop-color:#ffd43b;stop-opacity:1"
|
|
53
|
+
offset="0"
|
|
54
|
+
id="stop4673" />
|
|
55
|
+
<stop
|
|
56
|
+
style="stop-color:#ffe873;stop-opacity:1"
|
|
57
|
+
offset="1"
|
|
58
|
+
id="stop4675" />
|
|
59
|
+
</linearGradient>
|
|
60
|
+
<linearGradient
|
|
61
|
+
id="linearGradient3310">
|
|
62
|
+
<stop
|
|
63
|
+
id="stop3312"
|
|
64
|
+
offset="0"
|
|
65
|
+
style="stop-color:#9c9ea0;stop-opacity:1;" />
|
|
66
|
+
<stop
|
|
67
|
+
style="stop-color:#9c9ea0;stop-opacity:1;"
|
|
68
|
+
offset="0.125"
|
|
69
|
+
id="stop3816" />
|
|
70
|
+
<stop
|
|
71
|
+
style="stop-color:#9c9ea0;stop-opacity:1;"
|
|
72
|
+
offset="0.25"
|
|
73
|
+
id="stop3814" />
|
|
74
|
+
<stop
|
|
75
|
+
style="stop-color:#264e97;stop-opacity:1;"
|
|
76
|
+
offset="0.5"
|
|
77
|
+
id="stop3812" />
|
|
78
|
+
<stop
|
|
79
|
+
id="stop3314"
|
|
80
|
+
offset="1"
|
|
81
|
+
style="stop-color:#264e97;stop-opacity:1;" />
|
|
82
|
+
</linearGradient>
|
|
83
|
+
</defs>
|
|
84
|
+
<sodipodi:namedview
|
|
85
|
+
id="namedview10"
|
|
86
|
+
pagecolor="#ffffff"
|
|
87
|
+
bordercolor="#666666"
|
|
88
|
+
borderopacity="1.0"
|
|
89
|
+
inkscape:pageshadow="2"
|
|
90
|
+
inkscape:pageopacity="0.0"
|
|
91
|
+
inkscape:pagecheckerboard="0"
|
|
92
|
+
showgrid="false"
|
|
93
|
+
inkscape:zoom="42.022346"
|
|
94
|
+
inkscape:cx="4.081162"
|
|
95
|
+
inkscape:cy="6.234778"
|
|
96
|
+
inkscape:window-width="1920"
|
|
97
|
+
inkscape:window-height="1017"
|
|
98
|
+
inkscape:window-x="-8"
|
|
99
|
+
inkscape:window-y="-8"
|
|
100
|
+
inkscape:window-maximized="1"
|
|
101
|
+
inkscape:current-layer="svg8"
|
|
102
|
+
inkscape:showpageshadow="2"
|
|
103
|
+
inkscape:deskcolor="#d1d1d1" />
|
|
104
|
+
<g
|
|
105
|
+
fill="#4d4d4d"
|
|
106
|
+
id="g202"
|
|
107
|
+
transform="matrix(0.29973,0,0,0.29973,0.77514717,0.79677118)">
|
|
108
|
+
<path
|
|
109
|
+
d="m 29.174899,31.990501 2.828,-2.828 12.019,12.019 -2.828,2.828 z"
|
|
110
|
+
id="path198" />
|
|
111
|
+
<circle
|
|
112
|
+
cx="20"
|
|
113
|
+
cy="20"
|
|
114
|
+
r="16"
|
|
115
|
+
id="circle200" />
|
|
116
|
+
</g>
|
|
117
|
+
<path
|
|
118
|
+
d="m 10.501116,11.389319 0.847636,-0.847637 2.606482,2.606482 -0.847636,0.847637 z"
|
|
119
|
+
id="path204"
|
|
120
|
+
style="stroke-width:0.29973" />
|
|
121
|
+
<circle
|
|
122
|
+
cx="6.7697473"
|
|
123
|
+
cy="6.7913713"
|
|
124
|
+
r="3.8964901"
|
|
125
|
+
id="circle206" fill="#a6d5fa" fill-opacity="1" />
|
|
126
|
+
<path
|
|
127
|
+
d="m 8.8378842,5.0529372 c -0.509541,-0.59946 -1.258866,-0.959136 -2.068137,-0.959136 -0.809271,0 -1.558596,0.359676 -2.068137,0.959136 -0.119892,0.119892 -0.089919,0.329703 0.029973,0.419622 0.119892,0.119892 0.329703,0.089919 0.419622,-0.029973 0.419622,-0.479568 0.989109,-0.749325 1.618542,-0.749325 0.629433,0 1.19892,0.269757 1.618542,0.749325 0.059946,0.059946 0.149865,0.119892 0.239784,0.119892 0.059946,0 0.149865,-0.029973 0.179838,-0.059946 0.119892,-0.119892 0.119892,-0.329703 0.029973,-0.449595 z"
|
|
128
|
+
id="path208" fill="#c3e2fb" fill-opacity="1" />
|
|
129
|
+
<path
|
|
130
|
+
style="fill:url(#BlueGreen);stroke-width:0.0131133"
|
|
131
|
+
d="M 5.6984194,5.0668139 A 0.3147504,0.3147504 0 0 0 5.3884379,5.385989 V 6.5043581 H 4.2145666 V 5.3903943 A 0.3147504,0.3147504 0 0 0 3.8951112,5.0712194 0.3147504,0.3147504 0 0 0 3.5851302,5.3903943 v 2.8763698 a 0.3147504,0.3147504 0 1 0 0.6294364,0 V 7.1337961 H 6.0178742 V 5.7150509 C 6.9739175,5.8053802 7.3455358,6.3535846 7.3411373,6.8519626 7.3362541,7.4016221 6.8776266,8.0015919 5.685176,7.9632892 A 0.3147504,0.3147504 0 1 0 5.664954,8.5923944 c 0.8755614,0.028115 1.5392833,-0.2816442 1.9247859,-0.737623 v 0.4378609 a 0.3147504,0.3147504 0 1 0 0.6294367,0 V 7.1495727 h 1.0484751 a 0.3147504,0.3147504 0 1 0 0,-0.6294376 H 8.2191925 v -0.819427 h 1.472427 a 0.3147504,0.3147504 0 1 0 0,-0.6294378 H 5.7546099 a 0.3147504,0.3147504 0 0 0 -0.056199,-0.00444 z"
|
|
132
|
+
id="path10" />
|
|
133
|
+
</svg>
|
|
@@ -0,0 +1,69 @@
|
|
|
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="svg6"
|
|
9
|
+
sodipodi:docname="h5file.svg"
|
|
10
|
+
inkscape:version="1.1 (c68e22c387, 2021-05-23)"
|
|
11
|
+
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
|
12
|
+
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
|
13
|
+
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
14
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
15
|
+
xmlns:svg="http://www.w3.org/2000/svg">
|
|
16
|
+
<defs
|
|
17
|
+
id="defs10">
|
|
18
|
+
<linearGradient
|
|
19
|
+
id="BlueGreen"
|
|
20
|
+
gradientUnits="userSpaceOnUse"
|
|
21
|
+
y1="20"
|
|
22
|
+
x1="0"
|
|
23
|
+
y2="180"
|
|
24
|
+
x2="0"
|
|
25
|
+
xlink:href="#linearGradientStops"
|
|
26
|
+
gradientTransform="matrix(0.01429484,0,0,0.01429484,3.5279785,5.7303707)" />
|
|
27
|
+
<linearGradient
|
|
28
|
+
id="linearGradientStops">
|
|
29
|
+
<stop
|
|
30
|
+
offset="0"
|
|
31
|
+
style="stop-color:#0515fe"
|
|
32
|
+
id="stop2" />
|
|
33
|
+
<stop
|
|
34
|
+
offset="1"
|
|
35
|
+
style="stop-color:#2cab28"
|
|
36
|
+
id="stop4" />
|
|
37
|
+
</linearGradient>
|
|
38
|
+
</defs>
|
|
39
|
+
<sodipodi:namedview
|
|
40
|
+
id="namedview8"
|
|
41
|
+
pagecolor="#ffffff"
|
|
42
|
+
bordercolor="#666666"
|
|
43
|
+
borderopacity="1.0"
|
|
44
|
+
inkscape:pageshadow="2"
|
|
45
|
+
inkscape:pageopacity="0.0"
|
|
46
|
+
inkscape:pagecheckerboard="0"
|
|
47
|
+
showgrid="false"
|
|
48
|
+
inkscape:zoom="59.428571"
|
|
49
|
+
inkscape:cx="6.9915865"
|
|
50
|
+
inkscape:cy="7.0084135"
|
|
51
|
+
inkscape:window-width="1920"
|
|
52
|
+
inkscape:window-height="1017"
|
|
53
|
+
inkscape:window-x="-8"
|
|
54
|
+
inkscape:window-y="-8"
|
|
55
|
+
inkscape:window-maximized="1"
|
|
56
|
+
inkscape:current-layer="svg6" />
|
|
57
|
+
<path
|
|
58
|
+
fill="#90caf9"
|
|
59
|
+
d="M11.57142864 3.85714281v9.14285728H2.42857136V.99999991h6.28571438z"
|
|
60
|
+
id="path2" />
|
|
61
|
+
<path
|
|
62
|
+
fill="#e1f5fe"
|
|
63
|
+
d="M11.1428572 4.1428571H8.42857145V1.42857135z"
|
|
64
|
+
id="path4" />
|
|
65
|
+
<path
|
|
66
|
+
style="fill:url(#BlueGreen);stroke-width:0.0142949"
|
|
67
|
+
d="M 5.9023474,5.7913361 A 0.3431101,0.3431101 0 0 0 5.5644354,6.1392697 V 7.3584064 H 4.284796 V 6.1440719 A 0.3431101,0.3431101 0 0 0 3.936557,5.7961386 0.3431101,0.3431101 0 0 0 3.5986461,6.1440719 v 3.1355369 a 0.3431101,0.3431101 0 1 0 0.6861499,0 V 8.0445581 H 6.2505854 V 6.4979808 c 1.0421851,0.098469 1.4472871,0.696067 1.4424921,1.23935 -0.0053,0.5991851 -0.505274,1.2532134 -1.8051671,1.2114595 a 0.3431101,0.3431101 0 1 0 -0.02205,0.6857888 C 6.8203105,9.6652271 7.5438355,9.3275582 7.9640725,8.8304948 v 0.4773134 a 0.3431101,0.3431101 0 1 0 0.686151,0 v -1.246052 h 1.142945 a 0.3431101,0.3431101 0 1 0 0,-0.6861513 H 8.6502475 V 6.4823456 h 1.6050965 a 0.3431101,0.3431101 0 1 0 0,-0.6861514 H 5.9636014 a 0.3431101,0.3431101 0 0 0 -0.06127,-0.00485 z"
|
|
68
|
+
id="path10-8" />
|
|
69
|
+
</svg>
|
|
@@ -0,0 +1,49 @@
|
|
|
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="svg3"
|
|
9
|
+
sodipodi:docname="h5group.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="defs3" />
|
|
17
|
+
<sodipodi:namedview
|
|
18
|
+
id="namedview3"
|
|
19
|
+
pagecolor="#505050"
|
|
20
|
+
bordercolor="#ffffff"
|
|
21
|
+
borderopacity="1"
|
|
22
|
+
inkscape:showpageshadow="0"
|
|
23
|
+
inkscape:pageopacity="0"
|
|
24
|
+
inkscape:pagecheckerboard="1"
|
|
25
|
+
inkscape:deskcolor="#505050"
|
|
26
|
+
inkscape:zoom="55.5"
|
|
27
|
+
inkscape:cx="6.990991"
|
|
28
|
+
inkscape:cy="7"
|
|
29
|
+
inkscape:window-width="1920"
|
|
30
|
+
inkscape:window-height="991"
|
|
31
|
+
inkscape:window-x="-9"
|
|
32
|
+
inkscape:window-y="-9"
|
|
33
|
+
inkscape:window-maximized="1"
|
|
34
|
+
inkscape:current-layer="svg3" />
|
|
35
|
+
<path
|
|
36
|
+
fill="#999"
|
|
37
|
+
stroke-width="1.30499995"
|
|
38
|
+
d="M1.2391714 3.39432457h11.495292v2.77359609H1.2391714zm.0263654 6.24058005h11.495292v2.7735961H1.2655368z"
|
|
39
|
+
id="path1" />
|
|
40
|
+
<path
|
|
41
|
+
fill="#ccc"
|
|
42
|
+
stroke-width="1.30499995"
|
|
43
|
+
d="M1.2391715 6.47995595h11.495292v2.7735961H1.2391715z"
|
|
44
|
+
id="path2" />
|
|
45
|
+
<path
|
|
46
|
+
d="M5.0086942 12.037428V9.93933025c0-.08850747-.021633-.16121228-.0649-.21811601-.043267-.05689532-.098553-.08534232-.16586-.08534232H1.7320144c-.067313 0-.122603.028447-.165869.08534232-.043267.05689531-.0649.12960065-.0649.21811601V12.037428c0 .08851142.021633.1612207.0649.21811601.043267.05689926.098556.08534232.165869.08534232h3.0459198c.067307 0 .1225933-.02844306.16586-.08534232.043267-.05689925.0649-.1296046.0649-.21811601zm0-3.08676884V6.8178927c0-.08850747-.021633-.16121228-.0649-.21811601-.043267-.05689531-.098553-.08534231-.16586-.08534231H1.7320144c-.067313 0-.122603.028447-.165869.0853423-.043267.05689532-.0649.12960066-.0649.21811602v2.13276646c0 .08850747.021633.16121241.0649.21811601.043267.05689531.098556.08534231.165869.08534231h3.0459198c.067307 0 .1225933-.028447.16586-.0853423.043267-.05689532.0649-.12960066.0649-.21811602zm3.69231 3.08676884V9.93933025c0-.08850747-.021633-.16121228-.0649-.21811601-.043267-.05689532-.098553-.08534232-.16586-.08534232H5.5297758c-.067307 0-.1225933.028447-.16586.08534232-.043267.05689531-.0649.12960065-.0649.21811601V12.037428c0 .08851142.021633.1612207.0649.21811601.043267.05689926.098553.08534232.16586.08534232h2.9404684c.067307 0 .1225933-.02844306.16586-.08534232.043267-.05689925.0649-.1296046.0649-.21811601zm-3.69231-6.2082064V3.73112518c0-.08850747-.021633-.16121241-.0649-.21811601-.043267-.05689531-.098553-.08534231-.16586-.08534231H1.7320144c-.067313 0-.122603.028447-.165869.08534231-.043267.05689531-.0649.12960065-.0649.21811601v2.09809644c0 .08850747.021633.16121242.0649.21811601.043267.05689532.098556.08534232.165869.08534232h3.0459198c.067307 0 .1225933-.028447.16586-.08534232.043267-.05689531.0649-.12960065.0649-.21811601zm3.69231 3.12143756V6.8178927c0-.08850747-.021633-.16121228-.0649-.21811601-.043267-.05689531-.098553-.08534231-.16586-.08534231H5.5297758c-.067307 0-.1225933.028447-.16586.0853423-.043267.05689532-.0649.12960066-.0649.21811602v2.13276646c0 .08850747.021633.16121241.0649.21811601.043267.05689531.098553.08534231.16586.08534231h2.9404684c.067307 0 .1225933-.028447.16586-.0853423.043267-.05689532.0649-.12960066.0649-.21811602zM12.498766 12.037428V9.93933025c0-.08850747-.02163-.16121228-.0649-.21811601-.04327-.05689532-.09856-.08534232-.16587-.08534232H9.2220758c-.067307 0-.1225933.028447-.16586.08534232-.043267.05689531-.0649.12960065-.0649.21811601V12.037428c0 .08851142.021633.1612207.0649.21811601.043267.05689926.098553.08534232.16586.08534232h3.0459202c.06731 0 .122603-.02844306.16587-.08534232.04327-.05689925.0649-.1296046.0649-.21811601zM8.7010042 5.8292216V3.73112518c0-.08850747-.021633-.16121241-.0649-.21811601-.043267-.05689531-.098553-.08534231-.16586-.08534231H5.5297758c-.067307 0-.1225933.028447-.16586.08534231-.043267.05689531-.0649.12960065-.0649.21811601v2.09809644c0 .08850747.021633.16121242.0649.21811601.043267.05689532.098553.08534232.16586.08534232h2.9404684c.067307 0 .1225933-.028447.16586-.08534232.043267-.05689531.0649-.12960065.0649-.21811601zm3.7977618 3.12143756V6.8178927c0-.08850747-.02163-.16121228-.0649-.21811601-.04327-.05689531-.09856-.08534231-.16587-.08534231H9.2220758c-.067307 0-.1225933.028447-.16586.0853423-.043267.05689532-.0649.12960066-.0649.21811602v2.13276646c0 .08850747.021633.16121241.0649.21811601.043267.05689531.098553.08534231.16586.08534231h3.0459202c.06731 0 .122603-.028447.16587-.0853423.04327-.05689532.0649-.12960066.0649-.21811602zm0-3.12143755V3.73112517c0-.08850747-.02163-.16121241-.0649-.21811601-.04327-.05689531-.09856-.08534231-.16587-.08534231H9.2220758c-.067307 0-.1225933.028447-.16586.08534231-.043267.05689531-.0649.12960065-.0649.21811601v2.09809644c0 .08850747.021633.16121242.0649.21811601.043267.05689532.098553.08534232.16586.08534232h3.0459202c.06731 0 .122603-.028447.16587-.08534232.04327-.05689531.0649-.12960065.0649-.21811601zM13 2.51729187v8.96541583c0 .41726132-.11298.774459-.33894 1.07159227-.22596.29713326-.497597.4456999-.81491.4456999h-9.6923c-.31731 0-.588946-.14856664-.814908-.4456999C1.1129807 12.2571667 1 11.89996902 1 11.4827077V2.51729187c0-.4172525.1129807-.77444533.338942-1.07157859.225962-.29714208.497598-.44571305.814908-.44571305h9.6923c.317313 0 .58895.14857097.81491.44571305.22596.29713326.33894.65432608.33894 1.07157859z"
|
|
47
|
+
id="path3"
|
|
48
|
+
style="fill:#1a1a1a" />
|
|
49
|
+
</svg>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<svg role="img" focusable="false" aria-hidden="true" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 14 14"><path fill="#ffc107" d="M6.2244898 12.67346931L1.3265307 7.7755102c-.43537415-.43537414-.43537415-1.11564624 0-1.55102039l4.8979591-4.89795913c.43537414-.43537414 1.11564624-.43537414 1.55102039 0l4.89795912 4.89795912c.43537414.43537415.43537414 1.11564625 0 1.5510204L7.7755102 12.6734693c-.43537415.43537415-1.14285713.43537415-1.5510204 0z"/><g fill="#37474f" transform="translate(.4557824 .48299328) scale(.2721)"><circle cx="24" cy="24" r="2"/><circle cx="32" cy="24" r="2"/><circle cx="16" cy="24" r="2"/></g></svg>
|
|
@@ -0,0 +1,46 @@
|
|
|
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="svg8"
|
|
9
|
+
sodipodi:docname="help_pdf.svg"
|
|
10
|
+
inkscape:version="1.3 (0e150ed6c4, 2023-07-21)"
|
|
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="namedview8"
|
|
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.2773438"
|
|
24
|
+
inkscape:cx="128.30512"
|
|
25
|
+
inkscape:cy="128"
|
|
26
|
+
inkscape:window-width="1920"
|
|
27
|
+
inkscape:window-height="1017"
|
|
28
|
+
inkscape:window-x="-8"
|
|
29
|
+
inkscape:window-y="-8"
|
|
30
|
+
inkscape:window-maximized="1"
|
|
31
|
+
inkscape:current-layer="svg8" /> <defs
|
|
32
|
+
id="defs1"> </defs> <g
|
|
33
|
+
id="g1"
|
|
34
|
+
transform="translate(-18.588258)"><path
|
|
35
|
+
d="m 197.31402,255.71318 h 46.82875 c 5.61332,0 10.16382,-5.35577 10.16382,-11.96169 V 69.593764 L 195.1788,0 H 49.033748 C 43.420427,0 38.869926,5.3557706 38.869926,11.961694 V 88.931363 52.77636 84.172257 243.75149 c 0,6.60592 4.550501,11.96169 10.163822,11.96169 h 45.70848 z"
|
|
36
|
+
style="fill:#ea5440;fill-rule:nonzero;stroke:none;stroke-width:2.60792;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
37
|
+
stroke-linecap="round"
|
|
38
|
+
id="path1" /><path
|
|
39
|
+
d="m 254.30659,69.593764 h -49.8688 c -5.11303,0 -9.25899,-4.878439 -9.25899,-10.899064 V 0 Z"
|
|
40
|
+
style="fill:#c54837;fill-rule:nonzero;stroke:none;stroke-width:2.60792;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
41
|
+
stroke-linecap="round"
|
|
42
|
+
id="path2" /><path
|
|
43
|
+
d="m 70.51558,227.32049 c -5.504036,0 -9.00273,-3.12322 -10.55154,-4.90669 l -0.597337,-0.69121 -0.379736,-0.82347 c -3.643757,-7.90619 -5.256567,-20.24547 7.718455,-34.17622 10.594202,-11.37501 28.262583,-21.15001 48.290438,-28.57405 6.7627,-12.64649 13.08594,-26.14631 18.19744,-39.07012 -12.78728,-21.299342 -18.06518,-43.725104 -12.67635,-58.534794 3.02509,-8.311516 9.29713,-13.542484 17.66412,-14.728625 l 0.90027,-0.064 c 9.16059,0 15.73984,5.469902 18.05665,15.001693 3.11042,12.812883 -1.30561,33.937295 -9.68966,56.896376 3.17869,4.7275 6.83098,9.455 10.9526,14.05023 3.89123,4.69763 7.85925,8.96006 11.82301,12.79581 21.57668,-2.85868 41.19067,-2.39788 53.42328,2.21869 13.78569,5.2011 16.08971,14.48969 16.23051,19.56706 l 0.005,0.128 c 0.0683,8.14938 -4.01922,14.33182 -11.2214,16.96437 -14.98037,5.48697 -40.01733,-5.24376 -62.62654,-25.35696 -13.87103,2.24428 -28.45459,5.86244 -42.02268,10.54727 -15.04436,27.13191 -32.12392,49.89472 -44.706401,56.38863 -3.349355,1.71948 -6.276308,2.36801 -8.789391,2.36801 z m -0.392536,-12.91101 c 0.47787,0.19626 1.369609,0.16213 3.310955,-0.84054 8.341387,-4.3051 19.810261,-18.70519 31.142601,-37.19704 -11.891277,5.58083 -21.943608,12.03208 -28.505784,19.07639 -8.593123,9.22459 -7.172313,15.85503 -5.947772,18.96119 z M 183.51896,155.88323 c 17.72812,13.32062 33.67702,18.05665 40.74693,15.4625 1.36961,-0.4992 2.82455,-1.32267 2.81175,-4.77443 -0.0427,-1.42081 -0.2688,-4.98777 -7.95311,-7.88912 -8.32433,-3.14455 -21.04761,-3.92109 -35.60557,-2.79895 z m -41.6472,-24.05989 c -2.88855,6.87365 -6.06297,13.80276 -9.42086,20.60387 7.39418,-2.12908 14.92489,-3.94243 22.37028,-5.40164 -2.08215,-2.24428 -4.1259,-4.57389 -6.10991,-6.97177 -2.40215,-2.67522 -4.68483,-5.42724 -6.83951,-8.23046 z m -2.33815,-73.267684 c -2.26561,0.401069 -5.25657,1.60001 -6.99311,6.365908 -3.00802,8.264587 -0.91307,22.464155 6.48111,38.003456 5.2651,-16.298773 7.77391,-30.489807 5.67043,-39.151197 -1.088,-4.501362 -3.03788,-5.154166 -5.15843,-5.218167 z"
|
|
44
|
+
style="fill:#ffffff;fill-rule:nonzero;stroke:none;stroke-width:4.26669;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none"
|
|
45
|
+
stroke-linecap="round"
|
|
46
|
+
id="path2-5" /></g></svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1" width="256" height="256" viewBox="0 0 256 256" xml:space="preserve">
|
|
2
|
+
<g 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;" transform="translate(1.4065934065934016 1.4065934065934016) scale(2.81 2.81)">
|
|
3
|
+
<path d="M 45 90 L 45 90 C 20.147 90 0 69.853 0 45 v 0 C 0 20.147 20.147 0 45 0 h 0 c 24.853 0 45 20.147 45 45 v 0 C 90 69.853 69.853 90 45 90 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(0,159,229); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
|
|
4
|
+
<path d="M 44.616 12.5 c -8.369 0 -16.415 3.286 -22.413 8.979 l -3.812 -3.812 c -1.056 -1.056 -2.861 -0.308 -2.861 1.185 v 11.966 c 0 1.551 1.257 2.808 2.808 2.808 h 11.966 c 1.493 0 2.241 -1.806 1.185 -2.861 l -3.478 -3.478 c 4.566 -4.307 10.593 -6.667 17.046 -6.555 c 12.489 0.217 22.969 10.191 23.779 22.655 c 0.917 14.112 -10.302 25.886 -24.219 25.886 c -9.647 0 -17.997 -5.658 -21.908 -13.83 c -0.867 -1.812 -2.881 -2.766 -4.817 -2.231 l 0 0 c -2.5 0.69 -3.708 3.475 -2.585 5.813 c 5.697 11.861 18.382 19.755 32.687 18.304 C 63.598 75.745 75.98 62.899 77.039 47.25 C 78.322 28.316 63.281 12.5 44.616 12.5 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
|
|
5
|
+
<path d="M 52.576 57.133 c -0.873 0 -1.753 -0.276 -2.498 -0.849 l -8.929 -6.848 c -1.015 -0.778 -1.609 -1.983 -1.609 -3.262 V 32.726 c 0 -2.271 1.84 -4.111 4.111 -4.111 s 4.112 1.84 4.112 4.111 v 11.42 l 7.319 5.614 c 1.802 1.382 2.143 3.962 0.76 5.764 C 55.032 56.579 53.812 57.133 52.576 57.133 z" style="stroke: none; stroke-width: 1; stroke-dasharray: none; stroke-linecap: butt; stroke-linejoin: miter; stroke-miterlimit: 10; fill: rgb(255,255,255); fill-rule: nonzero; opacity: 1;" transform=" matrix(1 0 0 1 0 0) " stroke-linecap="round"/>
|
|
6
|
+
</g>
|
|
7
|
+
</svg>
|