dlubal.api 0.1.293714a1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of dlubal.api might be problematic. Click here for more details.
- dlubal/__init__.py +0 -0
- dlubal/api/__init__.py +0 -0
- dlubal/api/common/__init__.py +3 -0
- dlubal/api/common/common_pb2.py +42 -0
- dlubal/api/common/common_pb2.pyi +41 -0
- dlubal/api/common/connection.py +251 -0
- dlubal/api/common/exceptions.py +12 -0
- dlubal/api/common/model_id_pb2.py +38 -0
- dlubal/api/common/model_id_pb2.pyi +17 -0
- dlubal/api/common/table.py +35 -0
- dlubal/api/common/table_data_pb2.py +39 -0
- dlubal/api/common/table_data_pb2.pyi +21 -0
- dlubal/api/rfem/__init__.py +32 -0
- dlubal/api/rfem/aluminum_design_objects/__init__.py +2 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/application.py +290 -0
- dlubal/api/rfem/application_pb2.py +67 -0
- dlubal/api/rfem/application_pb2.pyi +135 -0
- dlubal/api/rfem/application_pb2_grpc.py +973 -0
- dlubal/api/rfem/base_data/__init__.py +1 -0
- dlubal/api/rfem/base_data/terrain_pb2.py +40 -0
- dlubal/api/rfem/base_data/terrain_pb2.pyi +53 -0
- dlubal/api/rfem/building_model/__init__.py +4 -0
- dlubal/api/rfem/building_model/building_story_pb2.py +54 -0
- dlubal/api/rfem/building_model/building_story_pb2.pyi +151 -0
- dlubal/api/rfem/building_model/deep_beam_pb2.py +41 -0
- dlubal/api/rfem/building_model/deep_beam_pb2.pyi +73 -0
- dlubal/api/rfem/building_model/floor_set_pb2.py +39 -0
- dlubal/api/rfem/building_model/floor_set_pb2.pyi +59 -0
- dlubal/api/rfem/building_model/shear_wall_pb2.py +41 -0
- dlubal/api/rfem/building_model/shear_wall_pb2.pyi +73 -0
- dlubal/api/rfem/calculation_diagrams/__init__.py +1 -0
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.py +50 -0
- dlubal/api/rfem/calculation_diagrams/calculation_diagram_pb2.pyi +1694 -0
- dlubal/api/rfem/concrete_design_objects/__init__.py +2 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi +46 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi +46 -0
- dlubal/api/rfem/construction_stages/__init__.py +1 -0
- dlubal/api/rfem/construction_stages/construction_stage_pb2.py +46 -0
- dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi +176 -0
- dlubal/api/rfem/dynamic_loads/__init__.py +2 -0
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py +40 -0
- dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi +51 -0
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.py +42 -0
- dlubal/api/rfem/dynamic_loads/response_spectrum_pb2.pyi +72 -0
- dlubal/api/rfem/geotechnical_analysis/__init__.py +2 -0
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py +41 -0
- dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi +54 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +47 -0
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +119 -0
- dlubal/api/rfem/global_parameters/__init__.py +1 -0
- dlubal/api/rfem/global_parameters/global_parameter_pb2.py +40 -0
- dlubal/api/rfem/global_parameters/global_parameter_pb2.pyi +284 -0
- dlubal/api/rfem/guide_objects/__init__.py +10 -0
- dlubal/api/rfem/guide_objects/building_grid_pb2.py +53 -0
- dlubal/api/rfem/guide_objects/building_grid_pb2.pyi +219 -0
- dlubal/api/rfem/guide_objects/clipping_box_pb2.py +37 -0
- dlubal/api/rfem/guide_objects/clipping_box_pb2.pyi +40 -0
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.py +45 -0
- dlubal/api/rfem/guide_objects/clipping_plane_pb2.pyi +116 -0
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.py +41 -0
- dlubal/api/rfem/guide_objects/coordinate_system_pb2.pyi +93 -0
- dlubal/api/rfem/guide_objects/dimension_pb2.py +61 -0
- dlubal/api/rfem/guide_objects/dimension_pb2.pyi +245 -0
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.py +41 -0
- dlubal/api/rfem/guide_objects/dxf_file_model_object_pb2.pyi +119 -0
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.py +36 -0
- dlubal/api/rfem/guide_objects/dxf_model_object_pb2.pyi +15 -0
- dlubal/api/rfem/guide_objects/note_pb2.py +45 -0
- dlubal/api/rfem/guide_objects/note_pb2.pyi +129 -0
- dlubal/api/rfem/guide_objects/object_snap_pb2.py +38 -0
- dlubal/api/rfem/guide_objects/object_snap_pb2.pyi +85 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.py +43 -0
- dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +129 -0
- dlubal/api/rfem/imperfections/__init__.py +5 -0
- dlubal/api/rfem/imperfections/imperfection_case_pb2.py +50 -0
- dlubal/api/rfem/imperfections/imperfection_case_pb2.pyi +158 -0
- dlubal/api/rfem/imperfections/member_imperfection_pb2.py +48 -0
- dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi +205 -0
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py +48 -0
- dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi +203 -0
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.py +40 -0
- dlubal/api/rfem/imperfections/surface_imperfection_pb2.pyi +55 -0
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.py +40 -0
- dlubal/api/rfem/imperfections/surface_set_imperfection_pb2.pyi +55 -0
- dlubal/api/rfem/load_wizards/__init__.py +2 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.py +44 -0
- dlubal/api/rfem/load_wizards/wind_profile_pb2.pyi +727 -0
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.py +46 -0
- dlubal/api/rfem/load_wizards/wind_simulation_pb2.pyi +84 -0
- dlubal/api/rfem/loading/__init__.py +15 -0
- dlubal/api/rfem/loading/action_combination_pb2.py +40 -0
- dlubal/api/rfem/loading/action_combination_pb2.pyi +58 -0
- dlubal/api/rfem/loading/action_pb2.py +42 -0
- dlubal/api/rfem/loading/action_pb2.pyi +80 -0
- dlubal/api/rfem/loading/combination_wizard_pb2.py +40 -0
- dlubal/api/rfem/loading/combination_wizard_pb2.pyi +65 -0
- dlubal/api/rfem/loading/design_situation_pb2.py +38 -0
- dlubal/api/rfem/loading/design_situation_pb2.pyi +41 -0
- dlubal/api/rfem/loading/load_case_pb2.py +77 -0
- dlubal/api/rfem/loading/load_case_pb2.pyi +489 -0
- dlubal/api/rfem/loading/load_combination_pb2.py +48 -0
- dlubal/api/rfem/loading/load_combination_pb2.pyi +150 -0
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.py +48 -0
- dlubal/api/rfem/loading/modal_analysis_settings_pb2.pyi +115 -0
- dlubal/api/rfem/loading/optimization_settings_pb2.py +42 -0
- dlubal/api/rfem/loading/optimization_settings_pb2.pyi +72 -0
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.py +38 -0
- dlubal/api/rfem/loading/pushover_analysis_settings_pb2.pyi +51 -0
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.py +40 -0
- dlubal/api/rfem/loading/relationship_between_load_cases_pb2.pyi +36 -0
- dlubal/api/rfem/loading/result_combination_pb2.py +42 -0
- dlubal/api/rfem/loading/result_combination_pb2.pyi +74 -0
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.py +46 -0
- dlubal/api/rfem/loading/spectral_analysis_settings_pb2.pyi +91 -0
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.py +44 -0
- dlubal/api/rfem/loading/stability_analysis_settings_pb2.pyi +118 -0
- dlubal/api/rfem/loading/static_analysis_settings_pb2.py +46 -0
- dlubal/api/rfem/loading/static_analysis_settings_pb2.pyi +159 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.py +48 -0
- dlubal/api/rfem/loading/wind_simulation_analysis_settings_pb2.pyi +150 -0
- dlubal/api/rfem/loads/__init__.py +17 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_circular_load_pb2.pyi +100 -0
- dlubal/api/rfem/loads/free_concentrated_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_concentrated_load_pb2.pyi +84 -0
- dlubal/api/rfem/loads/free_line_load_pb2.py +42 -0
- dlubal/api/rfem/loads/free_line_load_pb2.pyi +104 -0
- dlubal/api/rfem/loads/free_polygon_load_pb2.py +44 -0
- dlubal/api/rfem/loads/free_polygon_load_pb2.pyi +112 -0
- dlubal/api/rfem/loads/free_rectangular_load_pb2.py +49 -0
- dlubal/api/rfem/loads/free_rectangular_load_pb2.pyi +166 -0
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.py +37 -0
- dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi +47 -0
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py +37 -0
- dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi +43 -0
- dlubal/api/rfem/loads/line_load_pb2.py +46 -0
- dlubal/api/rfem/loads/line_load_pb2.pyi +155 -0
- dlubal/api/rfem/loads/line_set_load_pb2.py +46 -0
- dlubal/api/rfem/loads/line_set_load_pb2.pyi +155 -0
- dlubal/api/rfem/loads/member_load_pb2.py +67 -0
- dlubal/api/rfem/loads/member_load_pb2.pyi +390 -0
- dlubal/api/rfem/loads/member_set_load_pb2.py +67 -0
- dlubal/api/rfem/loads/member_set_load_pb2.pyi +388 -0
- dlubal/api/rfem/loads/nodal_load_pb2.py +47 -0
- dlubal/api/rfem/loads/nodal_load_pb2.pyi +207 -0
- dlubal/api/rfem/loads/opening_load_pb2.py +42 -0
- dlubal/api/rfem/loads/opening_load_pb2.pyi +84 -0
- dlubal/api/rfem/loads/solid_load_pb2.py +53 -0
- dlubal/api/rfem/loads/solid_load_pb2.pyi +180 -0
- dlubal/api/rfem/loads/solid_set_load_pb2.py +53 -0
- dlubal/api/rfem/loads/solid_set_load_pb2.pyi +180 -0
- dlubal/api/rfem/loads/surface_load_pb2.py +57 -0
- dlubal/api/rfem/loads/surface_load_pb2.pyi +285 -0
- dlubal/api/rfem/loads/surface_set_load_pb2.py +57 -0
- dlubal/api/rfem/loads/surface_set_load_pb2.pyi +285 -0
- dlubal/api/rfem/packing.py +45 -0
- dlubal/api/rfem/result_objects/__init__.py +1 -0
- dlubal/api/rfem/result_objects/result_section_pb2.py +43 -0
- dlubal/api/rfem/result_objects/result_section_pb2.pyi +119 -0
- dlubal/api/rfem/results/__init__.py +2 -0
- dlubal/api/rfem/results/results_id_pb2.py +36 -0
- dlubal/api/rfem/results/results_id_pb2.pyi +14 -0
- dlubal/api/rfem/results/results_query_pb2.py +40 -0
- dlubal/api/rfem/results/results_query_pb2.pyi +26 -0
- dlubal/api/rfem/steel_design_objects/__init__.py +4 -0
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_seismic_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/steel_design_objects/steel_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/structure_advanced/__init__.py +9 -0
- dlubal/api/rfem/structure_advanced/block_pb2.py +51 -0
- dlubal/api/rfem/structure_advanced/block_pb2.pyi +180 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.py +36 -0
- dlubal/api/rfem/structure_advanced/intersection_pb2.pyi +26 -0
- dlubal/api/rfem/structure_advanced/line_release_pb2.py +40 -0
- dlubal/api/rfem/structure_advanced/line_release_pb2.pyi +56 -0
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.py +38 -0
- dlubal/api/rfem/structure_advanced/nodal_release_pb2.pyi +46 -0
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.py +41 -0
- dlubal/api/rfem/structure_advanced/rigid_link_pb2.pyi +104 -0
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.py +56 -0
- dlubal/api/rfem/structure_advanced/structure_modification_pb2.pyi +161 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.py +38 -0
- dlubal/api/rfem/structure_advanced/surface_release_pb2.pyi +50 -0
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.py +55 -0
- dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi +140 -0
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py +36 -0
- dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi +24 -0
- dlubal/api/rfem/structure_core/__init__.py +15 -0
- dlubal/api/rfem/structure_core/line_pb2.py +53 -0
- dlubal/api/rfem/structure_core/line_pb2.pyi +298 -0
- dlubal/api/rfem/structure_core/line_set_pb2.py +39 -0
- dlubal/api/rfem/structure_core/line_set_pb2.pyi +53 -0
- dlubal/api/rfem/structure_core/material_pb2.py +100 -0
- dlubal/api/rfem/structure_core/material_pb2.pyi +955 -0
- dlubal/api/rfem/structure_core/member_pb2.py +79 -0
- dlubal/api/rfem/structure_core/member_pb2.pyi +566 -0
- dlubal/api/rfem/structure_core/member_representative_pb2.py +83 -0
- dlubal/api/rfem/structure_core/member_representative_pb2.pyi +590 -0
- dlubal/api/rfem/structure_core/member_set_pb2.py +53 -0
- dlubal/api/rfem/structure_core/member_set_pb2.pyi +225 -0
- dlubal/api/rfem/structure_core/member_set_representative_pb2.py +99 -0
- dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +811 -0
- dlubal/api/rfem/structure_core/node_pb2.py +43 -0
- dlubal/api/rfem/structure_core/node_pb2.pyi +142 -0
- dlubal/api/rfem/structure_core/opening_pb2.py +37 -0
- dlubal/api/rfem/structure_core/opening_pb2.pyi +41 -0
- dlubal/api/rfem/structure_core/section_pb2.py +66 -0
- dlubal/api/rfem/structure_core/section_pb2.pyi +1939 -0
- dlubal/api/rfem/structure_core/solid_pb2.py +53 -0
- dlubal/api/rfem/structure_core/solid_pb2.pyi +212 -0
- dlubal/api/rfem/structure_core/solid_set_pb2.py +39 -0
- dlubal/api/rfem/structure_core/solid_set_pb2.pyi +55 -0
- dlubal/api/rfem/structure_core/surface_pb2.py +67 -0
- dlubal/api/rfem/structure_core/surface_pb2.pyi +473 -0
- dlubal/api/rfem/structure_core/surface_set_pb2.py +47 -0
- dlubal/api/rfem/structure_core/surface_set_pb2.pyi +164 -0
- dlubal/api/rfem/structure_core/thickness_pb2.py +64 -0
- dlubal/api/rfem/structure_core/thickness_pb2.pyi +479 -0
- dlubal/api/rfem/timber_design_objects/__init__.py +3 -0
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py +36 -0
- dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_aluminum_design/__init__.py +3 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +56 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi +150 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +38 -0
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_concrete_design/__init__.py +5 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +68 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi +269 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +66 -0
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi +186 -0
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +52 -0
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi +196 -0
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +38 -0
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi +48 -0
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +72 -0
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi +560 -0
- dlubal/api/rfem/types_for_lines/__init__.py +4 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.py +103 -0
- dlubal/api/rfem/types_for_lines/line_hinge_pb2.pyi +610 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py +38 -0
- dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi +50 -0
- dlubal/api/rfem/types_for_lines/line_support_pb2.py +127 -0
- dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +883 -0
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py +42 -0
- dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi +93 -0
- dlubal/api/rfem/types_for_members/__init__.py +13 -0
- dlubal/api/rfem/types_for_members/design_support_pb2.py +50 -0
- dlubal/api/rfem/types_for_members/design_support_pb2.pyi +166 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.py +36 -0
- dlubal/api/rfem/types_for_members/member_definable_stiffness_pb2.pyi +52 -0
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.py +49 -0
- dlubal/api/rfem/types_for_members/member_eccentricity_pb2.pyi +117 -0
- dlubal/api/rfem/types_for_members/member_hinge_pb2.py +151 -0
- dlubal/api/rfem/types_for_members/member_hinge_pb2.pyi +1226 -0
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_nonlinearity_pb2.pyi +62 -0
- dlubal/api/rfem/types_for_members/member_openings_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_openings_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_result_intermediate_point_pb2.pyi +40 -0
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.py +48 -0
- dlubal/api/rfem/types_for_members/member_rotational_restraint_pb2.pyi +111 -0
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.py +40 -0
- dlubal/api/rfem/types_for_members/member_shear_panel_pb2.pyi +82 -0
- dlubal/api/rfem/types_for_members/member_spring_pb2.py +50 -0
- dlubal/api/rfem/types_for_members/member_spring_pb2.pyi +139 -0
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.py +46 -0
- dlubal/api/rfem/types_for_members/member_stiffness_modification_pb2.pyi +130 -0
- dlubal/api/rfem/types_for_members/member_support_pb2.py +49 -0
- dlubal/api/rfem/types_for_members/member_support_pb2.pyi +162 -0
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.py +38 -0
- dlubal/api/rfem/types_for_members/member_transverse_stiffener_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_nodes/__init__.py +2 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.py +40 -0
- dlubal/api/rfem/types_for_nodes/nodal_mesh_refinement_pb2.pyi +65 -0
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.py +171 -0
- dlubal/api/rfem/types_for_nodes/nodal_support_pb2.pyi +1202 -0
- dlubal/api/rfem/types_for_solids/__init__.py +3 -0
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.py +40 -0
- dlubal/api/rfem/types_for_solids/solid_contacts_pb2.pyi +61 -0
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.py +36 -0
- dlubal/api/rfem/types_for_solids/solid_gas_pb2.pyi +28 -0
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.py +36 -0
- dlubal/api/rfem/types_for_solids/solid_mesh_refinement_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_special_objects/__init__.py +4 -0
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.py +105 -0
- dlubal/api/rfem/types_for_special_objects/line_release_type_pb2.pyi +661 -0
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.py +110 -0
- dlubal/api/rfem/types_for_special_objects/nodal_release_type_pb2.pyi +732 -0
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py +69 -0
- dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi +306 -0
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py +44 -0
- dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi +81 -0
- dlubal/api/rfem/types_for_steel_design/__init__.py +3 -0
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +42 -0
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi +60 -0
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +90 -0
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi +337 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_surfaces/__init__.py +4 -0
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.py +42 -0
- dlubal/api/rfem/types_for_surfaces/surface_eccentricity_pb2.pyi +74 -0
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.py +36 -0
- dlubal/api/rfem/types_for_surfaces/surface_mesh_refinement_pb2.pyi +30 -0
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py +40 -0
- dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi +157 -0
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py +43 -0
- dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi +83 -0
- dlubal/api/rfem/types_for_timber_design/__init__.py +5 -0
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +56 -0
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi +139 -0
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi +36 -0
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi +46 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +38 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi +46 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +42 -0
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi +110 -0
- dlubal.api-0.1.293714a1.dist-info/METADATA +40 -0
- dlubal.api-0.1.293714a1.dist-info/RECORD +342 -0
- dlubal.api-0.1.293714a1.dist-info/WHEEL +5 -0
- dlubal.api-0.1.293714a1.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/types_for_lines/line_mesh_refinement.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/types_for_lines/line_mesh_refinement.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n:dlubal/api/rfem/types_for_lines/line_mesh_refinement.proto\x12\x1f\x64lubal.api.rfem.types_for_lines\"\xca\x05\n\x12LineMeshRefinement\x12\n\n\x02no\x18\x01 \x01(\x05\x12J\n\x04type\x18\x02 \x01(\x0e\x32\x37.dlubal.api.rfem.types_for_lines.LineMeshRefinementTypeH\x00\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x03 \x01(\tH\x01\x88\x01\x01\x12%\n\x18\x65lements_finite_elements\x18\x04 \x01(\x05H\x02\x88\x01\x01\x12#\n\x16generating_object_info\x18\x05 \x01(\tH\x03\x88\x01\x01\x12\x19\n\x0cgradual_rows\x18\x06 \x01(\x05H\x04\x88\x01\x01\x12\x19\n\x0cis_generated\x18\x07 \x01(\x08H\x05\x88\x01\x01\x12\r\n\x05lines\x18\x08 \x03(\x05\x12\x11\n\x04name\x18\t \x01(\tH\x06\x88\x01\x01\x12\x1d\n\x10number_of_layers\x18\n \x01(\x05H\x07\x88\x01\x01\x12\x1a\n\rtarget_length\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12&\n\x19user_defined_name_enabled\x18\x0c \x01(\x08H\t\x88\x01\x01\x12!\n\x14id_for_export_import\x18\r \x01(\tH\n\x88\x01\x01\x12\'\n\x1ametadata_for_export_import\x18\x0e \x01(\tH\x0b\x88\x01\x01\x42\x07\n\x05_typeB\n\n\x08_commentB\x1b\n\x19_elements_finite_elementsB\x19\n\x17_generating_object_infoB\x0f\n\r_gradual_rowsB\x0f\n\r_is_generatedB\x07\n\x05_nameB\x13\n\x11_number_of_layersB\x10\n\x0e_target_lengthB\x1c\n\x1a_user_defined_name_enabledB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import*\xb4\x01\n\x16LineMeshRefinementType\x12%\n!LINE_MESH_REFINEMENT_TYPE_UNKNOWN\x10\x00\x12&\n\"LINE_MESH_REFINEMENT_TYPE_ELEMENTS\x10\x02\x12%\n!LINE_MESH_REFINEMENT_TYPE_GRADUAL\x10\x03\x12$\n LINE_MESH_REFINEMENT_TYPE_LENGTH\x10\x01\x62\x06proto3')
|
|
28
|
+
|
|
29
|
+
_globals = globals()
|
|
30
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
31
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_lines.line_mesh_refinement_pb2', _globals)
|
|
32
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
33
|
+
DESCRIPTOR._loaded_options = None
|
|
34
|
+
_globals['_LINEMESHREFINEMENTTYPE']._serialized_start=813
|
|
35
|
+
_globals['_LINEMESHREFINEMENTTYPE']._serialized_end=993
|
|
36
|
+
_globals['_LINEMESHREFINEMENT']._serialized_start=96
|
|
37
|
+
_globals['_LINEMESHREFINEMENT']._serialized_end=810
|
|
38
|
+
# @@protoc_insertion_point(module_scope)
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
from google.protobuf.internal import containers as _containers
|
|
2
|
+
from google.protobuf.internal import enum_type_wrapper as _enum_type_wrapper
|
|
3
|
+
from google.protobuf import descriptor as _descriptor
|
|
4
|
+
from google.protobuf import message as _message
|
|
5
|
+
from typing import ClassVar as _ClassVar, Iterable as _Iterable, Optional as _Optional, Union as _Union
|
|
6
|
+
|
|
7
|
+
DESCRIPTOR: _descriptor.FileDescriptor
|
|
8
|
+
|
|
9
|
+
class LineMeshRefinementType(int, metaclass=_enum_type_wrapper.EnumTypeWrapper):
|
|
10
|
+
__slots__ = ()
|
|
11
|
+
LINE_MESH_REFINEMENT_TYPE_UNKNOWN: _ClassVar[LineMeshRefinementType]
|
|
12
|
+
LINE_MESH_REFINEMENT_TYPE_ELEMENTS: _ClassVar[LineMeshRefinementType]
|
|
13
|
+
LINE_MESH_REFINEMENT_TYPE_GRADUAL: _ClassVar[LineMeshRefinementType]
|
|
14
|
+
LINE_MESH_REFINEMENT_TYPE_LENGTH: _ClassVar[LineMeshRefinementType]
|
|
15
|
+
LINE_MESH_REFINEMENT_TYPE_UNKNOWN: LineMeshRefinementType
|
|
16
|
+
LINE_MESH_REFINEMENT_TYPE_ELEMENTS: LineMeshRefinementType
|
|
17
|
+
LINE_MESH_REFINEMENT_TYPE_GRADUAL: LineMeshRefinementType
|
|
18
|
+
LINE_MESH_REFINEMENT_TYPE_LENGTH: LineMeshRefinementType
|
|
19
|
+
|
|
20
|
+
class LineMeshRefinement(_message.Message):
|
|
21
|
+
__slots__ = ("no", "type", "comment", "elements_finite_elements", "generating_object_info", "gradual_rows", "is_generated", "lines", "name", "number_of_layers", "target_length", "user_defined_name_enabled", "id_for_export_import", "metadata_for_export_import")
|
|
22
|
+
NO_FIELD_NUMBER: _ClassVar[int]
|
|
23
|
+
TYPE_FIELD_NUMBER: _ClassVar[int]
|
|
24
|
+
COMMENT_FIELD_NUMBER: _ClassVar[int]
|
|
25
|
+
ELEMENTS_FINITE_ELEMENTS_FIELD_NUMBER: _ClassVar[int]
|
|
26
|
+
GENERATING_OBJECT_INFO_FIELD_NUMBER: _ClassVar[int]
|
|
27
|
+
GRADUAL_ROWS_FIELD_NUMBER: _ClassVar[int]
|
|
28
|
+
IS_GENERATED_FIELD_NUMBER: _ClassVar[int]
|
|
29
|
+
LINES_FIELD_NUMBER: _ClassVar[int]
|
|
30
|
+
NAME_FIELD_NUMBER: _ClassVar[int]
|
|
31
|
+
NUMBER_OF_LAYERS_FIELD_NUMBER: _ClassVar[int]
|
|
32
|
+
TARGET_LENGTH_FIELD_NUMBER: _ClassVar[int]
|
|
33
|
+
USER_DEFINED_NAME_ENABLED_FIELD_NUMBER: _ClassVar[int]
|
|
34
|
+
ID_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
35
|
+
METADATA_FOR_EXPORT_IMPORT_FIELD_NUMBER: _ClassVar[int]
|
|
36
|
+
no: int
|
|
37
|
+
type: LineMeshRefinementType
|
|
38
|
+
comment: str
|
|
39
|
+
elements_finite_elements: int
|
|
40
|
+
generating_object_info: str
|
|
41
|
+
gradual_rows: int
|
|
42
|
+
is_generated: bool
|
|
43
|
+
lines: _containers.RepeatedScalarFieldContainer[int]
|
|
44
|
+
name: str
|
|
45
|
+
number_of_layers: int
|
|
46
|
+
target_length: float
|
|
47
|
+
user_defined_name_enabled: bool
|
|
48
|
+
id_for_export_import: str
|
|
49
|
+
metadata_for_export_import: str
|
|
50
|
+
def __init__(self, no: _Optional[int] = ..., type: _Optional[_Union[LineMeshRefinementType, str]] = ..., comment: _Optional[str] = ..., elements_finite_elements: _Optional[int] = ..., generating_object_info: _Optional[str] = ..., gradual_rows: _Optional[int] = ..., is_generated: bool = ..., lines: _Optional[_Iterable[int]] = ..., name: _Optional[str] = ..., number_of_layers: _Optional[int] = ..., target_length: _Optional[float] = ..., user_defined_name_enabled: bool = ..., id_for_export_import: _Optional[str] = ..., metadata_for_export_import: _Optional[str] = ...) -> None: ...
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
# -*- coding: utf-8 -*-
|
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
|
4
|
+
# source: dlubal/api/rfem/types_for_lines/line_support.proto
|
|
5
|
+
# Protobuf Python Version: 5.28.1
|
|
6
|
+
"""Generated protocol buffer code."""
|
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
|
11
|
+
from google.protobuf.internal import builder as _builder
|
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
|
14
|
+
5,
|
|
15
|
+
28,
|
|
16
|
+
1,
|
|
17
|
+
'',
|
|
18
|
+
'dlubal/api/rfem/types_for_lines/line_support.proto'
|
|
19
|
+
)
|
|
20
|
+
# @@protoc_insertion_point(imports)
|
|
21
|
+
|
|
22
|
+
_sym_db = _symbol_database.Default()
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
from dlubal.api.common import common_pb2 as dlubal_dot_api_dot_common_dot_common__pb2
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n2dlubal/api/rfem/types_for_lines/line_support.proto\x12\x1f\x64lubal.api.rfem.types_for_lines\x1a\x1e\x64lubal/api/common/common.proto\"\xf0\x89\x01\n\x0bLineSupport\x12\n\n\x02no\x18\x01 \x01(\x05\x12&\n\x19user_defined_name_enabled\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x11\n\x04name\x18\x03 \x01(\tH\x01\x88\x01\x01\x12\r\n\x05lines\x18\x04 \x03(\x05\x12\\\n\x11\x63oordinate_system\x18\x05 \x01(\x0e\x32<.dlubal.api.rfem.types_for_lines.LineSupportCoordinateSystemH\x02\x88\x01\x01\x12\x1c\n\x0fx_axis_rotation\x18\x06 \x01(\x01H\x03\x88\x01\x01\x12\x30\n\x06spring\x18\x07 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x04\x88\x01\x01\x12>\n\x14rotational_restraint\x18\x08 \x01(\x0b\x32\x1b.dlubal.api.common.Vector3dH\x05\x88\x01\x01\x12\x15\n\x08spring_x\x18\t \x01(\x01H\x06\x88\x01\x01\x12\x15\n\x08spring_y\x18\n \x01(\x01H\x07\x88\x01\x01\x12\x15\n\x08spring_z\x18\x0b \x01(\x01H\x08\x88\x01\x01\x12#\n\x16rotational_restraint_x\x18\x0c \x01(\x01H\t\x88\x01\x01\x12#\n\x16rotational_restraint_y\x18\r \x01(\x01H\n\x88\x01\x01\x12#\n\x16rotational_restraint_z\x18\x0e \x01(\x01H\x0b\x88\x01\x01\x12\x63\n\x15spring_x_nonlinearity\x18\x0f \x01(\x0e\x32?.dlubal.api.rfem.types_for_lines.LineSupportSpringXNonlinearityH\x0c\x88\x01\x01\x12\x63\n\x15spring_y_nonlinearity\x18\x10 \x01(\x0e\x32?.dlubal.api.rfem.types_for_lines.LineSupportSpringYNonlinearityH\r\x88\x01\x01\x12\x63\n\x15spring_z_nonlinearity\x18\x11 \x01(\x0e\x32?.dlubal.api.rfem.types_for_lines.LineSupportSpringZNonlinearityH\x0e\x88\x01\x01\x12~\n#rotational_restraint_x_nonlinearity\x18\x12 \x01(\x0e\x32L.dlubal.api.rfem.types_for_lines.LineSupportRotationalRestraintXNonlinearityH\x0f\x88\x01\x01\x12~\n#rotational_restraint_y_nonlinearity\x18\x13 \x01(\x0e\x32L.dlubal.api.rfem.types_for_lines.LineSupportRotationalRestraintYNonlinearityH\x10\x88\x01\x01\x12~\n#rotational_restraint_z_nonlinearity\x18\x14 \x01(\x0e\x32L.dlubal.api.rfem.types_for_lines.LineSupportRotationalRestraintZNonlinearityH\x11\x88\x01\x01\x12\x14\n\x07\x63omment\x18\x15 \x01(\tH\x12\x88\x01\x01\x12^\n\x13\x64iagram_along_x_end\x18\x16 \x01(\x0e\x32<.dlubal.api.rfem.types_for_lines.LineSupportDiagramAlongXEndH\x13\x88\x01\x01\x12&\n\x19\x64iagram_along_x_is_sorted\x18\x17 \x01(\x08H\x14\x88\x01\x01\x12&\n\x19\x64iagram_along_x_symmetric\x18\x18 \x01(\x08H\x15\x88\x01\x01\x12\x62\n\x15\x64iagram_along_x_start\x18\x19 \x01(\x0e\x32>.dlubal.api.rfem.types_for_lines.LineSupportDiagramAlongXStartH\x16\x88\x01\x01\x12i\n\x15\x64iagram_along_x_table\x18\x1a \x01(\x0b\x32\x45.dlubal.api.rfem.types_for_lines.ArrayOfLineSupportDiagramAlongXTableH\x17\x88\x01\x01\x12^\n\x13\x64iagram_along_y_end\x18\x1b \x01(\x0e\x32<.dlubal.api.rfem.types_for_lines.LineSupportDiagramAlongYEndH\x18\x88\x01\x01\x12&\n\x19\x64iagram_along_y_is_sorted\x18\x1c \x01(\x08H\x19\x88\x01\x01\x12&\n\x19\x64iagram_along_y_symmetric\x18\x1d \x01(\x08H\x1a\x88\x01\x01\x12\x62\n\x15\x64iagram_along_y_start\x18\x1e \x01(\x0e\x32>.dlubal.api.rfem.types_for_lines.LineSupportDiagramAlongYStartH\x1b\x88\x01\x01\x12i\n\x15\x64iagram_along_y_table\x18\x1f \x01(\x0b\x32\x45.dlubal.api.rfem.types_for_lines.ArrayOfLineSupportDiagramAlongYTableH\x1c\x88\x01\x01\x12^\n\x13\x64iagram_along_z_end\x18 \x01(\x0e\x32<.dlubal.api.rfem.types_for_lines.LineSupportDiagramAlongZEndH\x1d\x88\x01\x01\x12&\n\x19\x64iagram_along_z_is_sorted\x18! \x01(\x08H\x1e\x88\x01\x01\x12&\n\x19\x64iagram_along_z_symmetric\x18\" \x01(\x08H\x1f\x88\x01\x01\x12\x62\n\x15\x64iagram_along_z_start\x18# \x01(\x0e\x32>.dlubal.api.rfem.types_for_lines.LineSupportDiagramAlongZStartH \x88\x01\x01\x12i\n\x15\x64iagram_along_z_table\x18$ \x01(\x0b\x32\x45.dlubal.api.rfem.types_for_lines.ArrayOfLineSupportDiagramAlongZTableH!\x88\x01\x01\x12`\n\x14\x64iagram_around_x_end\x18% \x01(\x0e\x32=.dlubal.api.rfem.types_for_lines.LineSupportDiagramAroundXEndH\"\x88\x01\x01\x12\'\n\x1a\x64iagram_around_x_is_sorted\x18& \x01(\x08H#\x88\x01\x01\x12\'\n\x1a\x64iagram_around_x_symmetric\x18\' \x01(\x08H$\x88\x01\x01\x12\x64\n\x16\x64iagram_around_x_start\x18( \x01(\x0e\x32?.dlubal.api.rfem.types_for_lines.LineSupportDiagramAroundXStartH%\x88\x01\x01\x12k\n\x16\x64iagram_around_x_table\x18) \x01(\x0b\x32\x46.dlubal.api.rfem.types_for_lines.ArrayOfLineSupportDiagramAroundXTableH&\x88\x01\x01\x12`\n\x14\x64iagram_around_y_end\x18* \x01(\x0e\x32=.dlubal.api.rfem.types_for_lines.LineSupportDiagramAroundYEndH\'\x88\x01\x01\x12\'\n\x1a\x64iagram_around_y_is_sorted\x18+ \x01(\x08H(\x88\x01\x01\x12\'\n\x1a\x64iagram_around_y_symmetric\x18, \x01(\x08H)\x88\x01\x01\x12\x64\n\x16\x64iagram_around_y_start\x18- \x01(\x0e\x32?.dlubal.api.rfem.types_for_lines.LineSupportDiagramAroundYStartH*\x88\x01\x01\x12k\n\x16\x64iagram_around_y_table\x18. \x01(\x0b\x32\x46.dlubal.api.rfem.types_for_lines.ArrayOfLineSupportDiagramAroundYTableH+\x88\x01\x01\x12`\n\x14\x64iagram_around_z_end\x18/ \x01(\x0e\x32=.dlubal.api.rfem.types_for_lines.LineSupportDiagramAroundZEndH,\x88\x01\x01\x12\'\n\x1a\x64iagram_around_z_is_sorted\x18\x30 \x01(\x08H-\x88\x01\x01\x12\'\n\x1a\x64iagram_around_z_symmetric\x18\x31 \x01(\x08H.\x88\x01\x01\x12\x64\n\x16\x64iagram_around_z_start\x18\x32 \x01(\x0e\x32?.dlubal.api.rfem.types_for_lines.LineSupportDiagramAroundZStartH/\x88\x01\x01\x12k\n\x16\x64iagram_around_z_table\x18\x33 \x01(\x0b\x32\x46.dlubal.api.rfem.types_for_lines.ArrayOfLineSupportDiagramAroundZTableH0\x88\x01\x01\x12+\n\x1e\x64iagram_along_x_ac_yield_minus\x18\x34 \x01(\x01H1\x88\x01\x01\x12+\n\x1e\x64iagram_along_y_ac_yield_minus\x18\x35 \x01(\x01H2\x88\x01\x01\x12+\n\x1e\x64iagram_along_z_ac_yield_minus\x18\x36 \x01(\x01H3\x88\x01\x01\x12,\n\x1f\x64iagram_around_x_ac_yield_minus\x18\x37 \x01(\x01H4\x88\x01\x01\x12,\n\x1f\x64iagram_around_y_ac_yield_minus\x18\x38 \x01(\x01H5\x88\x01\x01\x12,\n\x1f\x64iagram_around_z_ac_yield_minus\x18\x39 \x01(\x01H6\x88\x01\x01\x12*\n\x1d\x64iagram_along_x_ac_yield_plus\x18: \x01(\x01H7\x88\x01\x01\x12*\n\x1d\x64iagram_along_y_ac_yield_plus\x18; \x01(\x01H8\x88\x01\x01\x12*\n\x1d\x64iagram_along_z_ac_yield_plus\x18< \x01(\x01H9\x88\x01\x01\x12+\n\x1e\x64iagram_around_x_ac_yield_plus\x18= \x01(\x01H:\x88\x01\x01\x12+\n\x1e\x64iagram_around_y_ac_yield_plus\x18> \x01(\x01H;\x88\x01\x01\x12+\n\x1e\x64iagram_around_z_ac_yield_plus\x18? \x01(\x01H<\x88\x01\x01\x12\x37\n*diagram_along_x_acceptance_criteria_active\x18@ \x01(\x08H=\x88\x01\x01\x12\x37\n*diagram_along_y_acceptance_criteria_active\x18\x41 \x01(\x08H>\x88\x01\x01\x12\x37\n*diagram_along_z_acceptance_criteria_active\x18\x42 \x01(\x08H?\x88\x01\x01\x12\x38\n+diagram_around_x_acceptance_criteria_active\x18\x43 \x01(\x08H@\x88\x01\x01\x12\x38\n+diagram_around_y_acceptance_criteria_active\x18\x44 \x01(\x08HA\x88\x01\x01\x12\x38\n+diagram_around_z_acceptance_criteria_active\x18\x45 \x01(\x08HB\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_x_minus_color_one\x18\x46 \x01(\x0b\x32\x18.dlubal.api.common.ColorHC\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_y_minus_color_one\x18G \x01(\x0b\x32\x18.dlubal.api.common.ColorHD\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_z_minus_color_one\x18H \x01(\x0b\x32\x18.dlubal.api.common.ColorHE\x88\x01\x01\x12G\n diagram_around_x_minus_color_one\x18I \x01(\x0b\x32\x18.dlubal.api.common.ColorHF\x88\x01\x01\x12G\n diagram_around_y_minus_color_one\x18J \x01(\x0b\x32\x18.dlubal.api.common.ColorHG\x88\x01\x01\x12G\n diagram_around_z_minus_color_one\x18K \x01(\x0b\x32\x18.dlubal.api.common.ColorHH\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_x_minus_color_two\x18L \x01(\x0b\x32\x18.dlubal.api.common.ColorHI\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_y_minus_color_two\x18M \x01(\x0b\x32\x18.dlubal.api.common.ColorHJ\x88\x01\x01\x12\x46\n\x1f\x64iagram_along_z_minus_color_two\x18N \x01(\x0b\x32\x18.dlubal.api.common.ColorHK\x88\x01\x01\x12G\n diagram_around_x_minus_color_two\x18O \x01(\x0b\x32\x18.dlubal.api.common.ColorHL\x88\x01\x01\x12G\n diagram_around_y_minus_color_two\x18P \x01(\x0b\x32\x18.dlubal.api.common.ColorHM\x88\x01\x01\x12G\n diagram_around_z_minus_color_two\x18Q \x01(\x0b\x32\x18.dlubal.api.common.ColorHN\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_x_plus_color_one\x18R \x01(\x0b\x32\x18.dlubal.api.common.ColorHO\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_y_plus_color_one\x18S \x01(\x0b\x32\x18.dlubal.api.common.ColorHP\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_z_plus_color_one\x18T \x01(\x0b\x32\x18.dlubal.api.common.ColorHQ\x88\x01\x01\x12\x46\n\x1f\x64iagram_around_x_plus_color_one\x18U \x01(\x0b\x32\x18.dlubal.api.common.ColorHR\x88\x01\x01\x12\x46\n\x1f\x64iagram_around_y_plus_color_one\x18V \x01(\x0b\x32\x18.dlubal.api.common.ColorHS\x88\x01\x01\x12\x46\n\x1f\x64iagram_around_z_plus_color_one\x18W \x01(\x0b\x32\x18.dlubal.api.common.ColorHT\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_x_plus_color_two\x18X \x01(\x0b\x32\x18.dlubal.api.common.ColorHU\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_y_plus_color_two\x18Y \x01(\x0b\x32\x18.dlubal.api.common.ColorHV\x88\x01\x01\x12\x45\n\x1e\x64iagram_along_z_plus_color_two\x18Z \x01(\x0b\x32\x18.dlubal.api.common.ColorHW\x88\x01\x01\x12\x46\n\x1f\x64iagram_around_x_plus_color_two\x18[ \x01(\x0b\x32\x18.dlubal.api.common.ColorHX\x88\x01\x01\x12\x46\n\x1f\x64iagram_around_y_plus_color_two\x18\\ \x01(\x0b\x32\x18.dlubal.api.common.ColorHY\x88\x01\x01\x12\x46\n\x1f\x64iagram_around_z_plus_color_two\x18] \x01(\x0b\x32\x18.dlubal.api.common.ColorHZ\x88\x01\x01\x12t\n\x1b\x64iagram_along_x_color_table\x18^ \x01(\x0b\x32J.dlubal.api.rfem.types_for_lines.ArrayOfLineSupportDiagramAlongXColorTableH[\x88\x01\x01\x12t\n\x1b\x64iagram_along_y_color_table\x18_ \x01(\x0b\x32J.dlubal.api.rfem.types_for_lines.ArrayOfLineSupportDiagramAlongYColorTableH\\\x88\x01\x01\x12t\n\x1b\x64iagram_along_z_color_table\x18` \x01(\x0b\x32J.dlubal.api.rfem.types_for_lines.ArrayOfLineSupportDiagramAlongZColorTableH]\x88\x01\x01\x12v\n\x1c\x64iagram_around_x_color_table\x18\x61 \x01(\x0b\x32K.dlubal.api.rfem.types_for_lines.ArrayOfLineSupportDiagramAroundXColorTableH^\x88\x01\x01\x12v\n\x1c\x64iagram_around_y_color_table\x18\x62 \x01(\x0b\x32K.dlubal.api.rfem.types_for_lines.ArrayOfLineSupportDiagramAroundYColorTableH_\x88\x01\x01\x12v\n\x1c\x64iagram_around_z_color_table\x18\x63 \x01(\x0b\x32K.dlubal.api.rfem.types_for_lines.ArrayOfLineSupportDiagramAroundZColorTableH`\x88\x01\x01\x12#\n\x16\x66riction_coefficient_x\x18\x64 \x01(\x01Ha\x88\x01\x01\x12#\n\x16\x66riction_coefficient_y\x18\x65 \x01(\x01Hb\x88\x01\x01\x12#\n\x16\x66riction_coefficient_z\x18\x66 \x01(\x01Hc\x88\x01\x01\x12-\n friction_direction_independent_x\x18g \x01(\x08Hd\x88\x01\x01\x12-\n friction_direction_independent_y\x18h \x01(\x08He\x88\x01\x01\x12-\n friction_direction_independent_z\x18i \x01(\x08Hf\x88\x01\x01\x12;\n.partial_activity_along_x_negative_displacement\x18j \x01(\x01Hg\x88\x01\x01\x12\x34\n\'partial_activity_along_x_negative_force\x18k \x01(\x01Hh\x88\x01\x01\x12\x37\n*partial_activity_along_x_negative_slippage\x18l \x01(\x01Hi\x88\x01\x01\x12\x82\x01\n&partial_activity_along_x_negative_type\x18m \x01(\x0e\x32M.dlubal.api.rfem.types_for_lines.LineSupportPartialActivityAlongXNegativeTypeHj\x88\x01\x01\x12;\n.partial_activity_along_x_positive_displacement\x18n \x01(\x01Hk\x88\x01\x01\x12\x34\n\'partial_activity_along_x_positive_force\x18o \x01(\x01Hl\x88\x01\x01\x12\x37\n*partial_activity_along_x_positive_slippage\x18p \x01(\x01Hm\x88\x01\x01\x12\x82\x01\n&partial_activity_along_x_positive_type\x18q \x01(\x0e\x32M.dlubal.api.rfem.types_for_lines.LineSupportPartialActivityAlongXPositiveTypeHn\x88\x01\x01\x12;\n.partial_activity_along_y_negative_displacement\x18r \x01(\x01Ho\x88\x01\x01\x12\x34\n\'partial_activity_along_y_negative_force\x18s \x01(\x01Hp\x88\x01\x01\x12\x37\n*partial_activity_along_y_negative_slippage\x18t \x01(\x01Hq\x88\x01\x01\x12\x82\x01\n&partial_activity_along_y_negative_type\x18u \x01(\x0e\x32M.dlubal.api.rfem.types_for_lines.LineSupportPartialActivityAlongYNegativeTypeHr\x88\x01\x01\x12;\n.partial_activity_along_y_positive_displacement\x18v \x01(\x01Hs\x88\x01\x01\x12\x34\n\'partial_activity_along_y_positive_force\x18w \x01(\x01Ht\x88\x01\x01\x12\x37\n*partial_activity_along_y_positive_slippage\x18x \x01(\x01Hu\x88\x01\x01\x12\x82\x01\n&partial_activity_along_y_positive_type\x18y \x01(\x0e\x32M.dlubal.api.rfem.types_for_lines.LineSupportPartialActivityAlongYPositiveTypeHv\x88\x01\x01\x12;\n.partial_activity_along_z_negative_displacement\x18z \x01(\x01Hw\x88\x01\x01\x12\x34\n\'partial_activity_along_z_negative_force\x18{ \x01(\x01Hx\x88\x01\x01\x12\x37\n*partial_activity_along_z_negative_slippage\x18| \x01(\x01Hy\x88\x01\x01\x12\x82\x01\n&partial_activity_along_z_negative_type\x18} \x01(\x0e\x32M.dlubal.api.rfem.types_for_lines.LineSupportPartialActivityAlongZNegativeTypeHz\x88\x01\x01\x12;\n.partial_activity_along_z_positive_displacement\x18~ \x01(\x01H{\x88\x01\x01\x12\x34\n\'partial_activity_along_z_positive_force\x18\x7f \x01(\x01H|\x88\x01\x01\x12\x38\n*partial_activity_along_z_positive_slippage\x18\x80\x01 \x01(\x01H}\x88\x01\x01\x12\x83\x01\n&partial_activity_along_z_positive_type\x18\x81\x01 \x01(\x0e\x32M.dlubal.api.rfem.types_for_lines.LineSupportPartialActivityAlongZPositiveTypeH~\x88\x01\x01\x12\x37\n)partial_activity_around_x_negative_moment\x18\x82\x01 \x01(\x01H\x7f\x88\x01\x01\x12:\n+partial_activity_around_x_negative_rotation\x18\x83\x01 \x01(\x01H\x80\x01\x88\x01\x01\x12:\n+partial_activity_around_x_negative_slippage\x18\x84\x01 \x01(\x01H\x81\x01\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_x_negative_type\x18\x85\x01 \x01(\x0e\x32N.dlubal.api.rfem.types_for_lines.LineSupportPartialActivityAroundXNegativeTypeH\x82\x01\x88\x01\x01\x12\x38\n)partial_activity_around_x_positive_moment\x18\x86\x01 \x01(\x01H\x83\x01\x88\x01\x01\x12:\n+partial_activity_around_x_positive_rotation\x18\x87\x01 \x01(\x01H\x84\x01\x88\x01\x01\x12:\n+partial_activity_around_x_positive_slippage\x18\x88\x01 \x01(\x01H\x85\x01\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_x_positive_type\x18\x89\x01 \x01(\x0e\x32N.dlubal.api.rfem.types_for_lines.LineSupportPartialActivityAroundXPositiveTypeH\x86\x01\x88\x01\x01\x12\x38\n)partial_activity_around_y_negative_moment\x18\x8a\x01 \x01(\x01H\x87\x01\x88\x01\x01\x12:\n+partial_activity_around_y_negative_rotation\x18\x8b\x01 \x01(\x01H\x88\x01\x88\x01\x01\x12:\n+partial_activity_around_y_negative_slippage\x18\x8c\x01 \x01(\x01H\x89\x01\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_y_negative_type\x18\x8d\x01 \x01(\x0e\x32N.dlubal.api.rfem.types_for_lines.LineSupportPartialActivityAroundYNegativeTypeH\x8a\x01\x88\x01\x01\x12\x38\n)partial_activity_around_y_positive_moment\x18\x8e\x01 \x01(\x01H\x8b\x01\x88\x01\x01\x12:\n+partial_activity_around_y_positive_rotation\x18\x8f\x01 \x01(\x01H\x8c\x01\x88\x01\x01\x12:\n+partial_activity_around_y_positive_slippage\x18\x90\x01 \x01(\x01H\x8d\x01\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_y_positive_type\x18\x91\x01 \x01(\x0e\x32N.dlubal.api.rfem.types_for_lines.LineSupportPartialActivityAroundYPositiveTypeH\x8e\x01\x88\x01\x01\x12\x38\n)partial_activity_around_z_negative_moment\x18\x92\x01 \x01(\x01H\x8f\x01\x88\x01\x01\x12:\n+partial_activity_around_z_negative_rotation\x18\x93\x01 \x01(\x01H\x90\x01\x88\x01\x01\x12:\n+partial_activity_around_z_negative_slippage\x18\x94\x01 \x01(\x01H\x91\x01\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_z_negative_type\x18\x95\x01 \x01(\x0e\x32N.dlubal.api.rfem.types_for_lines.LineSupportPartialActivityAroundZNegativeTypeH\x92\x01\x88\x01\x01\x12\x38\n)partial_activity_around_z_positive_moment\x18\x96\x01 \x01(\x01H\x93\x01\x88\x01\x01\x12:\n+partial_activity_around_z_positive_rotation\x18\x97\x01 \x01(\x01H\x94\x01\x88\x01\x01\x12:\n+partial_activity_around_z_positive_slippage\x18\x98\x01 \x01(\x01H\x95\x01\x88\x01\x01\x12\x86\x01\n\'partial_activity_around_z_positive_type\x18\x99\x01 \x01(\x0e\x32N.dlubal.api.rfem.types_for_lines.LineSupportPartialActivityAroundZPositiveTypeH\x96\x01\x88\x01\x01\x12\x1b\n\x0cis_generated\x18\x9a\x01 \x01(\x08H\x97\x01\x88\x01\x01\x12%\n\x16generating_object_info\x18\x9b\x01 \x01(\tH\x98\x01\x88\x01\x01\x12&\n\x17\x66ictitious_wall_enabled\x18\x9c\x01 \x01(\x08H\x99\x01\x88\x01\x01\x12$\n\x15\x66ictitious_wall_width\x18\x9d\x01 \x01(\x01H\x9a\x01\x88\x01\x01\x12%\n\x16\x66ictitious_wall_height\x18\x9e\x01 \x01(\x01H\x9b\x01\x88\x01\x01\x12{\n!fictitious_wall_head_support_type\x18\x9f\x01 \x01(\x0e\x32I.dlubal.api.rfem.types_for_lines.LineSupportFictitiousWallHeadSupportTypeH\x9c\x01\x88\x01\x01\x12{\n!fictitious_wall_base_support_type\x18\xa0\x01 \x01(\x0e\x32I.dlubal.api.rfem.types_for_lines.LineSupportFictitiousWallBaseSupportTypeH\x9d\x01\x88\x01\x01\x12+\n\x1c\x66ictitious_wall_base_elastic\x18\xa1\x01 \x01(\x01H\x9e\x01\x88\x01\x01\x12.\n\x1f\x66ictitious_wall_shear_stiffness\x18\xa2\x01 \x01(\x08H\x9f\x01\x88\x01\x01\x12\'\n\x18\x66ictitious_wall_material\x18\xa3\x01 \x01(\x05H\xa0\x01\x88\x01\x01\x12\'\n\x18\x66ictitious_wall_spring_x\x18\xa4\x01 \x01(\x01H\xa1\x01\x88\x01\x01\x12\'\n\x18\x66ictitious_wall_spring_y\x18\xa5\x01 \x01(\x01H\xa2\x01\x88\x01\x01\x12\'\n\x18\x66ictitious_wall_spring_z\x18\xa6\x01 \x01(\x01H\xa3\x01\x88\x01\x01\x12\x43\n4fictitious_wall_rotational_restraint_about_line_axis\x18\xa7\x01 \x01(\x01H\xa4\x01\x88\x01\x01\x12#\n\x14id_for_export_import\x18\xa8\x01 \x01(\tH\xa5\x01\x88\x01\x01\x12)\n\x1ametadata_for_export_import\x18\xa9\x01 \x01(\tH\xa6\x01\x88\x01\x01\x42\x1c\n\x1a_user_defined_name_enabledB\x07\n\x05_nameB\x14\n\x12_coordinate_systemB\x12\n\x10_x_axis_rotationB\t\n\x07_springB\x17\n\x15_rotational_restraintB\x0b\n\t_spring_xB\x0b\n\t_spring_yB\x0b\n\t_spring_zB\x19\n\x17_rotational_restraint_xB\x19\n\x17_rotational_restraint_yB\x19\n\x17_rotational_restraint_zB\x18\n\x16_spring_x_nonlinearityB\x18\n\x16_spring_y_nonlinearityB\x18\n\x16_spring_z_nonlinearityB&\n$_rotational_restraint_x_nonlinearityB&\n$_rotational_restraint_y_nonlinearityB&\n$_rotational_restraint_z_nonlinearityB\n\n\x08_commentB\x16\n\x14_diagram_along_x_endB\x1c\n\x1a_diagram_along_x_is_sortedB\x1c\n\x1a_diagram_along_x_symmetricB\x18\n\x16_diagram_along_x_startB\x18\n\x16_diagram_along_x_tableB\x16\n\x14_diagram_along_y_endB\x1c\n\x1a_diagram_along_y_is_sortedB\x1c\n\x1a_diagram_along_y_symmetricB\x18\n\x16_diagram_along_y_startB\x18\n\x16_diagram_along_y_tableB\x16\n\x14_diagram_along_z_endB\x1c\n\x1a_diagram_along_z_is_sortedB\x1c\n\x1a_diagram_along_z_symmetricB\x18\n\x16_diagram_along_z_startB\x18\n\x16_diagram_along_z_tableB\x17\n\x15_diagram_around_x_endB\x1d\n\x1b_diagram_around_x_is_sortedB\x1d\n\x1b_diagram_around_x_symmetricB\x19\n\x17_diagram_around_x_startB\x19\n\x17_diagram_around_x_tableB\x17\n\x15_diagram_around_y_endB\x1d\n\x1b_diagram_around_y_is_sortedB\x1d\n\x1b_diagram_around_y_symmetricB\x19\n\x17_diagram_around_y_startB\x19\n\x17_diagram_around_y_tableB\x17\n\x15_diagram_around_z_endB\x1d\n\x1b_diagram_around_z_is_sortedB\x1d\n\x1b_diagram_around_z_symmetricB\x19\n\x17_diagram_around_z_startB\x19\n\x17_diagram_around_z_tableB!\n\x1f_diagram_along_x_ac_yield_minusB!\n\x1f_diagram_along_y_ac_yield_minusB!\n\x1f_diagram_along_z_ac_yield_minusB\"\n _diagram_around_x_ac_yield_minusB\"\n _diagram_around_y_ac_yield_minusB\"\n _diagram_around_z_ac_yield_minusB \n\x1e_diagram_along_x_ac_yield_plusB \n\x1e_diagram_along_y_ac_yield_plusB \n\x1e_diagram_along_z_ac_yield_plusB!\n\x1f_diagram_around_x_ac_yield_plusB!\n\x1f_diagram_around_y_ac_yield_plusB!\n\x1f_diagram_around_z_ac_yield_plusB-\n+_diagram_along_x_acceptance_criteria_activeB-\n+_diagram_along_y_acceptance_criteria_activeB-\n+_diagram_along_z_acceptance_criteria_activeB.\n,_diagram_around_x_acceptance_criteria_activeB.\n,_diagram_around_y_acceptance_criteria_activeB.\n,_diagram_around_z_acceptance_criteria_activeB\"\n _diagram_along_x_minus_color_oneB\"\n _diagram_along_y_minus_color_oneB\"\n _diagram_along_z_minus_color_oneB#\n!_diagram_around_x_minus_color_oneB#\n!_diagram_around_y_minus_color_oneB#\n!_diagram_around_z_minus_color_oneB\"\n _diagram_along_x_minus_color_twoB\"\n _diagram_along_y_minus_color_twoB\"\n _diagram_along_z_minus_color_twoB#\n!_diagram_around_x_minus_color_twoB#\n!_diagram_around_y_minus_color_twoB#\n!_diagram_around_z_minus_color_twoB!\n\x1f_diagram_along_x_plus_color_oneB!\n\x1f_diagram_along_y_plus_color_oneB!\n\x1f_diagram_along_z_plus_color_oneB\"\n _diagram_around_x_plus_color_oneB\"\n _diagram_around_y_plus_color_oneB\"\n _diagram_around_z_plus_color_oneB!\n\x1f_diagram_along_x_plus_color_twoB!\n\x1f_diagram_along_y_plus_color_twoB!\n\x1f_diagram_along_z_plus_color_twoB\"\n _diagram_around_x_plus_color_twoB\"\n _diagram_around_y_plus_color_twoB\"\n _diagram_around_z_plus_color_twoB\x1e\n\x1c_diagram_along_x_color_tableB\x1e\n\x1c_diagram_along_y_color_tableB\x1e\n\x1c_diagram_along_z_color_tableB\x1f\n\x1d_diagram_around_x_color_tableB\x1f\n\x1d_diagram_around_y_color_tableB\x1f\n\x1d_diagram_around_z_color_tableB\x19\n\x17_friction_coefficient_xB\x19\n\x17_friction_coefficient_yB\x19\n\x17_friction_coefficient_zB#\n!_friction_direction_independent_xB#\n!_friction_direction_independent_yB#\n!_friction_direction_independent_zB1\n/_partial_activity_along_x_negative_displacementB*\n(_partial_activity_along_x_negative_forceB-\n+_partial_activity_along_x_negative_slippageB)\n\'_partial_activity_along_x_negative_typeB1\n/_partial_activity_along_x_positive_displacementB*\n(_partial_activity_along_x_positive_forceB-\n+_partial_activity_along_x_positive_slippageB)\n\'_partial_activity_along_x_positive_typeB1\n/_partial_activity_along_y_negative_displacementB*\n(_partial_activity_along_y_negative_forceB-\n+_partial_activity_along_y_negative_slippageB)\n\'_partial_activity_along_y_negative_typeB1\n/_partial_activity_along_y_positive_displacementB*\n(_partial_activity_along_y_positive_forceB-\n+_partial_activity_along_y_positive_slippageB)\n\'_partial_activity_along_y_positive_typeB1\n/_partial_activity_along_z_negative_displacementB*\n(_partial_activity_along_z_negative_forceB-\n+_partial_activity_along_z_negative_slippageB)\n\'_partial_activity_along_z_negative_typeB1\n/_partial_activity_along_z_positive_displacementB*\n(_partial_activity_along_z_positive_forceB-\n+_partial_activity_along_z_positive_slippageB)\n\'_partial_activity_along_z_positive_typeB,\n*_partial_activity_around_x_negative_momentB.\n,_partial_activity_around_x_negative_rotationB.\n,_partial_activity_around_x_negative_slippageB*\n(_partial_activity_around_x_negative_typeB,\n*_partial_activity_around_x_positive_momentB.\n,_partial_activity_around_x_positive_rotationB.\n,_partial_activity_around_x_positive_slippageB*\n(_partial_activity_around_x_positive_typeB,\n*_partial_activity_around_y_negative_momentB.\n,_partial_activity_around_y_negative_rotationB.\n,_partial_activity_around_y_negative_slippageB*\n(_partial_activity_around_y_negative_typeB,\n*_partial_activity_around_y_positive_momentB.\n,_partial_activity_around_y_positive_rotationB.\n,_partial_activity_around_y_positive_slippageB*\n(_partial_activity_around_y_positive_typeB,\n*_partial_activity_around_z_negative_momentB.\n,_partial_activity_around_z_negative_rotationB.\n,_partial_activity_around_z_negative_slippageB*\n(_partial_activity_around_z_negative_typeB,\n*_partial_activity_around_z_positive_momentB.\n,_partial_activity_around_z_positive_rotationB.\n,_partial_activity_around_z_positive_slippageB*\n(_partial_activity_around_z_positive_typeB\x0f\n\r_is_generatedB\x19\n\x17_generating_object_infoB\x1a\n\x18_fictitious_wall_enabledB\x18\n\x16_fictitious_wall_widthB\x19\n\x17_fictitious_wall_heightB$\n\"_fictitious_wall_head_support_typeB$\n\"_fictitious_wall_base_support_typeB\x1f\n\x1d_fictitious_wall_base_elasticB\"\n _fictitious_wall_shear_stiffnessB\x1b\n\x19_fictitious_wall_materialB\x1b\n\x19_fictitious_wall_spring_xB\x1b\n\x19_fictitious_wall_spring_yB\x1b\n\x19_fictitious_wall_spring_zB7\n5_fictitious_wall_rotational_restraint_about_line_axisB\x17\n\x15_id_for_export_importB\x1d\n\x1b_metadata_for_export_import\"&\n$ArrayOfLineSupportDiagramAlongXTable\"&\n$ArrayOfLineSupportDiagramAlongYTable\"&\n$ArrayOfLineSupportDiagramAlongZTable\"\'\n%ArrayOfLineSupportDiagramAroundXTable\"\'\n%ArrayOfLineSupportDiagramAroundYTable\"\'\n%ArrayOfLineSupportDiagramAroundZTable\"+\n)ArrayOfLineSupportDiagramAlongXColorTable\"+\n)ArrayOfLineSupportDiagramAlongYColorTable\"+\n)ArrayOfLineSupportDiagramAlongZColorTable\",\n*ArrayOfLineSupportDiagramAroundXColorTable\",\n*ArrayOfLineSupportDiagramAroundYColorTable\",\n*ArrayOfLineSupportDiagramAroundZColorTable*r\n\x1bLineSupportCoordinateSystem\x12(\n$LINE_SUPPORT_COORDINATE_SYSTEM_LOCAL\x10\x00\x12)\n%LINE_SUPPORT_COORDINATE_SYSTEM_GLOBAL\x10\x01*\xe3\x06\n\x1eLineSupportSpringXNonlinearity\x12\x30\n,LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_NONE\x10\x00\x12\x33\n/LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12\x43\n?LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12\x43\n?LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12?\n;LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12?\n;LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12@\n<LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12@\n<LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12\x42\n>LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12G\nCLINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12@\n<LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12<\n8LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12=\n9LINE_SUPPORT_SPRING_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xe3\x06\n\x1eLineSupportSpringYNonlinearity\x12\x30\n,LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_NONE\x10\x00\x12\x33\n/LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12\x43\n?LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12\x43\n?LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12?\n;LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12?\n;LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12@\n<LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12@\n<LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12\x42\n>LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12G\nCLINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12@\n<LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12<\n8LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12=\n9LINE_SUPPORT_SPRING_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xe3\x06\n\x1eLineSupportSpringZNonlinearity\x12\x30\n,LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_NONE\x10\x00\x12\x33\n/LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12\x43\n?LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12\x43\n?LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12?\n;LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12?\n;LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12@\n<LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12@\n<LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12\x42\n>LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12G\nCLINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12@\n<LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12<\n8LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12=\n9LINE_SUPPORT_SPRING_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xa6\x08\n+LineSupportRotationalRestraintXNonlinearity\x12>\n:LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_NONE\x10\x00\x12\x41\n=LINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12Q\nMLINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12Q\nMLINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12M\nILINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12M\nILINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12N\nJLINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12N\nJLINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12P\nLLINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12U\nQLINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12N\nJLINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12J\nFLINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12K\nGLINE_SUPPORT_ROTATIONAL_RESTRAINT_X_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xa6\x08\n+LineSupportRotationalRestraintYNonlinearity\x12>\n:LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_NONE\x10\x00\x12\x41\n=LINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12Q\nMLINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12Q\nMLINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12M\nILINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12M\nILINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12N\nJLINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12N\nJLINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12P\nLLINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12U\nQLINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12N\nJLINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12J\nFLINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12K\nGLINE_SUPPORT_ROTATIONAL_RESTRAINT_Y_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xa6\x08\n+LineSupportRotationalRestraintZNonlinearity\x12>\n:LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_NONE\x10\x00\x12\x41\n=LINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_DIAGRAM\x10\x06\x12Q\nMLINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_NEGATIVE\x10\x03\x12Q\nMLINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_ALL_IF_POSITIVE\x10\x04\x12M\nILINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_IF_NEGATIVE\x10\x01\x12M\nILINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FAILURE_IF_POSITIVE\x10\x02\x12N\nJLINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FORCE_MOMENT_DIAGRAM\x10\x0c\x12N\nJLINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1\x10\x08\x12P\nLLINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_2\x10\n\x12U\nQLINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_1_PLUS_2\x10\x0b\x12N\nJLINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_FRICTION_DIRECTION_2\x10\t\x12J\nFLINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_PARTIAL_ACTIVITY\x10\x05\x12K\nGLINE_SUPPORT_ROTATIONAL_RESTRAINT_Z_NONLINEARITY_TYPE_STIFFNESS_DIAGRAM\x10\x07*\xa6\x02\n\x1bLineSupportDiagramAlongXEnd\x12@\n<LINE_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x43\n?LINE_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12=\n9LINE_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x41\n=LINE_SUPPORT_DIAGRAM_ALONG_X_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xb0\x02\n\x1dLineSupportDiagramAlongXStart\x12\x42\n>LINE_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x45\nALINE_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12?\n;LINE_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x43\n?LINE_SUPPORT_DIAGRAM_ALONG_X_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xa6\x02\n\x1bLineSupportDiagramAlongYEnd\x12@\n<LINE_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x43\n?LINE_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12=\n9LINE_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x41\n=LINE_SUPPORT_DIAGRAM_ALONG_Y_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xb0\x02\n\x1dLineSupportDiagramAlongYStart\x12\x42\n>LINE_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x45\nALINE_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12?\n;LINE_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x43\n?LINE_SUPPORT_DIAGRAM_ALONG_Y_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xa6\x02\n\x1bLineSupportDiagramAlongZEnd\x12@\n<LINE_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x43\n?LINE_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12=\n9LINE_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x41\n=LINE_SUPPORT_DIAGRAM_ALONG_Z_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xb0\x02\n\x1dLineSupportDiagramAlongZStart\x12\x42\n>LINE_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x45\nALINE_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12?\n;LINE_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x43\n?LINE_SUPPORT_DIAGRAM_ALONG_Z_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xab\x02\n\x1cLineSupportDiagramAroundXEnd\x12\x41\n=LINE_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x44\n@LINE_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12>\n:LINE_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x42\n>LINE_SUPPORT_DIAGRAM_AROUND_X_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xb5\x02\n\x1eLineSupportDiagramAroundXStart\x12\x43\n?LINE_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x46\nBLINE_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12@\n<LINE_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x44\n@LINE_SUPPORT_DIAGRAM_AROUND_X_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xab\x02\n\x1cLineSupportDiagramAroundYEnd\x12\x41\n=LINE_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x44\n@LINE_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12>\n:LINE_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x42\n>LINE_SUPPORT_DIAGRAM_AROUND_Y_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xb5\x02\n\x1eLineSupportDiagramAroundYStart\x12\x43\n?LINE_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x46\nBLINE_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12@\n<LINE_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x44\n@LINE_SUPPORT_DIAGRAM_AROUND_Y_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xab\x02\n\x1cLineSupportDiagramAroundZEnd\x12\x41\n=LINE_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x44\n@LINE_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12>\n:LINE_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x42\n>LINE_SUPPORT_DIAGRAM_AROUND_Z_END_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xb5\x02\n\x1eLineSupportDiagramAroundZStart\x12\x43\n?LINE_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_FAILURE\x10\x00\x12\x46\nBLINE_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_CONTINUOUS\x10\x02\x12@\n<LINE_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_STOP\x10\x03\x12\x44\n@LINE_SUPPORT_DIAGRAM_AROUND_Z_START_DIAGRAM_ENDING_TYPE_YIELDING\x10\x01*\xf7\x03\n,LineSupportPartialActivityAlongXNegativeType\x12V\nRLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12U\nQLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12`\n\\LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12S\nOLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x61\n]LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xf7\x03\n,LineSupportPartialActivityAlongXPositiveType\x12V\nRLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12U\nQLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12`\n\\LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12S\nOLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x61\n]LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xf7\x03\n,LineSupportPartialActivityAlongYNegativeType\x12V\nRLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12U\nQLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12`\n\\LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12S\nOLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x61\n]LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xf7\x03\n,LineSupportPartialActivityAlongYPositiveType\x12V\nRLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12U\nQLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12`\n\\LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12S\nOLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x61\n]LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xf7\x03\n,LineSupportPartialActivityAlongZNegativeType\x12V\nRLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12U\nQLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12`\n\\LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12S\nOLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x61\n]LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xf7\x03\n,LineSupportPartialActivityAlongZPositiveType\x12V\nRLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12U\nQLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12`\n\\LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_FORCE\x10\x02\x12S\nOLINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x61\n]LINE_SUPPORT_PARTIAL_ACTIVITY_ALONG_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_FORCE\x10\x03*\xff\x03\n-LineSupportPartialActivityAroundXNegativeType\x12W\nSLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12V\nRLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x62\n^LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12T\nPLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x63\n_LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\xff\x03\n-LineSupportPartialActivityAroundXPositiveType\x12W\nSLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12V\nRLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x62\n^LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12T\nPLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x63\n_LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_X_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\xff\x03\n-LineSupportPartialActivityAroundYNegativeType\x12W\nSLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12V\nRLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x62\n^LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12T\nPLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x63\n_LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\xff\x03\n-LineSupportPartialActivityAroundYPositiveType\x12W\nSLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12V\nRLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x62\n^LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12T\nPLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x63\n_LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Y_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\xff\x03\n-LineSupportPartialActivityAroundZNegativeType\x12W\nSLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12V\nRLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x62\n^LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12T\nPLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x63\n_LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_NEGATIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\xff\x03\n-LineSupportPartialActivityAroundZPositiveType\x12W\nSLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_COMPLETE\x10\x00\x12V\nRLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE\x10\x04\x12\x62\n^LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FAILURE_FROM_MOMENT\x10\x02\x12T\nPLINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_FIXED\x10\x01\x12\x63\n_LINE_SUPPORT_PARTIAL_ACTIVITY_AROUND_Z_POSITIVE_TYPE_PARTIAL_ACTIVITY_TYPE_YIELDING_FROM_MOMENT\x10\x03*\x9f\x01\n(LineSupportFictitiousWallHeadSupportType\x12\x39\n5LINE_SUPPORT_FICTITIOUS_WALL_HEAD_SUPPORT_TYPE_HINGED\x10\x00\x12\x38\n4LINE_SUPPORT_FICTITIOUS_WALL_HEAD_SUPPORT_TYPE_RIGID\x10\x01*\xdb\x01\n(LineSupportFictitiousWallBaseSupportType\x12\x39\n5LINE_SUPPORT_FICTITIOUS_WALL_BASE_SUPPORT_TYPE_HINGED\x10\x00\x12:\n6LINE_SUPPORT_FICTITIOUS_WALL_BASE_SUPPORT_TYPE_ELASTIC\x10\x01\x12\x38\n4LINE_SUPPORT_FICTITIOUS_WALL_BASE_SUPPORT_TYPE_RIGID\x10\x02\x62\x06proto3')
|
|
29
|
+
|
|
30
|
+
_globals = globals()
|
|
31
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
|
32
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'dlubal.api.rfem.types_for_lines.line_support_pb2', _globals)
|
|
33
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
|
34
|
+
DESCRIPTOR._loaded_options = None
|
|
35
|
+
_globals['_LINESUPPORTCOORDINATESYSTEM']._serialized_start=18287
|
|
36
|
+
_globals['_LINESUPPORTCOORDINATESYSTEM']._serialized_end=18401
|
|
37
|
+
_globals['_LINESUPPORTSPRINGXNONLINEARITY']._serialized_start=18404
|
|
38
|
+
_globals['_LINESUPPORTSPRINGXNONLINEARITY']._serialized_end=19271
|
|
39
|
+
_globals['_LINESUPPORTSPRINGYNONLINEARITY']._serialized_start=19274
|
|
40
|
+
_globals['_LINESUPPORTSPRINGYNONLINEARITY']._serialized_end=20141
|
|
41
|
+
_globals['_LINESUPPORTSPRINGZNONLINEARITY']._serialized_start=20144
|
|
42
|
+
_globals['_LINESUPPORTSPRINGZNONLINEARITY']._serialized_end=21011
|
|
43
|
+
_globals['_LINESUPPORTROTATIONALRESTRAINTXNONLINEARITY']._serialized_start=21014
|
|
44
|
+
_globals['_LINESUPPORTROTATIONALRESTRAINTXNONLINEARITY']._serialized_end=22076
|
|
45
|
+
_globals['_LINESUPPORTROTATIONALRESTRAINTYNONLINEARITY']._serialized_start=22079
|
|
46
|
+
_globals['_LINESUPPORTROTATIONALRESTRAINTYNONLINEARITY']._serialized_end=23141
|
|
47
|
+
_globals['_LINESUPPORTROTATIONALRESTRAINTZNONLINEARITY']._serialized_start=23144
|
|
48
|
+
_globals['_LINESUPPORTROTATIONALRESTRAINTZNONLINEARITY']._serialized_end=24206
|
|
49
|
+
_globals['_LINESUPPORTDIAGRAMALONGXEND']._serialized_start=24209
|
|
50
|
+
_globals['_LINESUPPORTDIAGRAMALONGXEND']._serialized_end=24503
|
|
51
|
+
_globals['_LINESUPPORTDIAGRAMALONGXSTART']._serialized_start=24506
|
|
52
|
+
_globals['_LINESUPPORTDIAGRAMALONGXSTART']._serialized_end=24810
|
|
53
|
+
_globals['_LINESUPPORTDIAGRAMALONGYEND']._serialized_start=24813
|
|
54
|
+
_globals['_LINESUPPORTDIAGRAMALONGYEND']._serialized_end=25107
|
|
55
|
+
_globals['_LINESUPPORTDIAGRAMALONGYSTART']._serialized_start=25110
|
|
56
|
+
_globals['_LINESUPPORTDIAGRAMALONGYSTART']._serialized_end=25414
|
|
57
|
+
_globals['_LINESUPPORTDIAGRAMALONGZEND']._serialized_start=25417
|
|
58
|
+
_globals['_LINESUPPORTDIAGRAMALONGZEND']._serialized_end=25711
|
|
59
|
+
_globals['_LINESUPPORTDIAGRAMALONGZSTART']._serialized_start=25714
|
|
60
|
+
_globals['_LINESUPPORTDIAGRAMALONGZSTART']._serialized_end=26018
|
|
61
|
+
_globals['_LINESUPPORTDIAGRAMAROUNDXEND']._serialized_start=26021
|
|
62
|
+
_globals['_LINESUPPORTDIAGRAMAROUNDXEND']._serialized_end=26320
|
|
63
|
+
_globals['_LINESUPPORTDIAGRAMAROUNDXSTART']._serialized_start=26323
|
|
64
|
+
_globals['_LINESUPPORTDIAGRAMAROUNDXSTART']._serialized_end=26632
|
|
65
|
+
_globals['_LINESUPPORTDIAGRAMAROUNDYEND']._serialized_start=26635
|
|
66
|
+
_globals['_LINESUPPORTDIAGRAMAROUNDYEND']._serialized_end=26934
|
|
67
|
+
_globals['_LINESUPPORTDIAGRAMAROUNDYSTART']._serialized_start=26937
|
|
68
|
+
_globals['_LINESUPPORTDIAGRAMAROUNDYSTART']._serialized_end=27246
|
|
69
|
+
_globals['_LINESUPPORTDIAGRAMAROUNDZEND']._serialized_start=27249
|
|
70
|
+
_globals['_LINESUPPORTDIAGRAMAROUNDZEND']._serialized_end=27548
|
|
71
|
+
_globals['_LINESUPPORTDIAGRAMAROUNDZSTART']._serialized_start=27551
|
|
72
|
+
_globals['_LINESUPPORTDIAGRAMAROUNDZSTART']._serialized_end=27860
|
|
73
|
+
_globals['_LINESUPPORTPARTIALACTIVITYALONGXNEGATIVETYPE']._serialized_start=27863
|
|
74
|
+
_globals['_LINESUPPORTPARTIALACTIVITYALONGXNEGATIVETYPE']._serialized_end=28366
|
|
75
|
+
_globals['_LINESUPPORTPARTIALACTIVITYALONGXPOSITIVETYPE']._serialized_start=28369
|
|
76
|
+
_globals['_LINESUPPORTPARTIALACTIVITYALONGXPOSITIVETYPE']._serialized_end=28872
|
|
77
|
+
_globals['_LINESUPPORTPARTIALACTIVITYALONGYNEGATIVETYPE']._serialized_start=28875
|
|
78
|
+
_globals['_LINESUPPORTPARTIALACTIVITYALONGYNEGATIVETYPE']._serialized_end=29378
|
|
79
|
+
_globals['_LINESUPPORTPARTIALACTIVITYALONGYPOSITIVETYPE']._serialized_start=29381
|
|
80
|
+
_globals['_LINESUPPORTPARTIALACTIVITYALONGYPOSITIVETYPE']._serialized_end=29884
|
|
81
|
+
_globals['_LINESUPPORTPARTIALACTIVITYALONGZNEGATIVETYPE']._serialized_start=29887
|
|
82
|
+
_globals['_LINESUPPORTPARTIALACTIVITYALONGZNEGATIVETYPE']._serialized_end=30390
|
|
83
|
+
_globals['_LINESUPPORTPARTIALACTIVITYALONGZPOSITIVETYPE']._serialized_start=30393
|
|
84
|
+
_globals['_LINESUPPORTPARTIALACTIVITYALONGZPOSITIVETYPE']._serialized_end=30896
|
|
85
|
+
_globals['_LINESUPPORTPARTIALACTIVITYAROUNDXNEGATIVETYPE']._serialized_start=30899
|
|
86
|
+
_globals['_LINESUPPORTPARTIALACTIVITYAROUNDXNEGATIVETYPE']._serialized_end=31410
|
|
87
|
+
_globals['_LINESUPPORTPARTIALACTIVITYAROUNDXPOSITIVETYPE']._serialized_start=31413
|
|
88
|
+
_globals['_LINESUPPORTPARTIALACTIVITYAROUNDXPOSITIVETYPE']._serialized_end=31924
|
|
89
|
+
_globals['_LINESUPPORTPARTIALACTIVITYAROUNDYNEGATIVETYPE']._serialized_start=31927
|
|
90
|
+
_globals['_LINESUPPORTPARTIALACTIVITYAROUNDYNEGATIVETYPE']._serialized_end=32438
|
|
91
|
+
_globals['_LINESUPPORTPARTIALACTIVITYAROUNDYPOSITIVETYPE']._serialized_start=32441
|
|
92
|
+
_globals['_LINESUPPORTPARTIALACTIVITYAROUNDYPOSITIVETYPE']._serialized_end=32952
|
|
93
|
+
_globals['_LINESUPPORTPARTIALACTIVITYAROUNDZNEGATIVETYPE']._serialized_start=32955
|
|
94
|
+
_globals['_LINESUPPORTPARTIALACTIVITYAROUNDZNEGATIVETYPE']._serialized_end=33466
|
|
95
|
+
_globals['_LINESUPPORTPARTIALACTIVITYAROUNDZPOSITIVETYPE']._serialized_start=33469
|
|
96
|
+
_globals['_LINESUPPORTPARTIALACTIVITYAROUNDZPOSITIVETYPE']._serialized_end=33980
|
|
97
|
+
_globals['_LINESUPPORTFICTITIOUSWALLHEADSUPPORTTYPE']._serialized_start=33983
|
|
98
|
+
_globals['_LINESUPPORTFICTITIOUSWALLHEADSUPPORTTYPE']._serialized_end=34142
|
|
99
|
+
_globals['_LINESUPPORTFICTITIOUSWALLBASESUPPORTTYPE']._serialized_start=34145
|
|
100
|
+
_globals['_LINESUPPORTFICTITIOUSWALLBASESUPPORTTYPE']._serialized_end=34364
|
|
101
|
+
_globals['_LINESUPPORT']._serialized_start=121
|
|
102
|
+
_globals['_LINESUPPORT']._serialized_end=17769
|
|
103
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMALONGXTABLE']._serialized_start=17771
|
|
104
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMALONGXTABLE']._serialized_end=17809
|
|
105
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMALONGYTABLE']._serialized_start=17811
|
|
106
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMALONGYTABLE']._serialized_end=17849
|
|
107
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMALONGZTABLE']._serialized_start=17851
|
|
108
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMALONGZTABLE']._serialized_end=17889
|
|
109
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMAROUNDXTABLE']._serialized_start=17891
|
|
110
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMAROUNDXTABLE']._serialized_end=17930
|
|
111
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMAROUNDYTABLE']._serialized_start=17932
|
|
112
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMAROUNDYTABLE']._serialized_end=17971
|
|
113
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMAROUNDZTABLE']._serialized_start=17973
|
|
114
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMAROUNDZTABLE']._serialized_end=18012
|
|
115
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMALONGXCOLORTABLE']._serialized_start=18014
|
|
116
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMALONGXCOLORTABLE']._serialized_end=18057
|
|
117
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMALONGYCOLORTABLE']._serialized_start=18059
|
|
118
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMALONGYCOLORTABLE']._serialized_end=18102
|
|
119
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMALONGZCOLORTABLE']._serialized_start=18104
|
|
120
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMALONGZCOLORTABLE']._serialized_end=18147
|
|
121
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMAROUNDXCOLORTABLE']._serialized_start=18149
|
|
122
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMAROUNDXCOLORTABLE']._serialized_end=18193
|
|
123
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMAROUNDYCOLORTABLE']._serialized_start=18195
|
|
124
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMAROUNDYCOLORTABLE']._serialized_end=18239
|
|
125
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMAROUNDZCOLORTABLE']._serialized_start=18241
|
|
126
|
+
_globals['_ARRAYOFLINESUPPORTDIAGRAMAROUNDZCOLORTABLE']._serialized_end=18285
|
|
127
|
+
# @@protoc_insertion_point(module_scope)
|