dlubal.api 2.12.1__py3-none-any.whl → 2.12.3__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.

Files changed (228) hide show
  1. dlubal/api/rfem/__init__.py +8 -6
  2. dlubal/api/rfem/aluminum_design/aluminum_boundary_conditions_pb2.py +51 -0
  3. dlubal/api/rfem/aluminum_design/aluminum_effective_lengths_pb2.py +91 -0
  4. dlubal/api/rfem/aluminum_design/aluminum_member_local_section_reduction_pb2.py +47 -0
  5. dlubal/api/rfem/aluminum_design/aluminum_member_transverse_weld_pb2.py +48 -0
  6. dlubal/api/rfem/application.py +17 -17
  7. dlubal/api/rfem/base_data_objects/terrain_pb2.py +8 -8
  8. dlubal/api/rfem/base_data_objects/terrain_pb2.pyi +6 -2
  9. dlubal/api/rfem/base_data_pb2.py +69 -69
  10. dlubal/api/rfem/base_data_pb2.pyi +8 -2
  11. dlubal/api/rfem/concrete_design_objects/__init__.py +1 -0
  12. dlubal/api/rfem/concrete_design_objects/concrete_effective_lengths_pb2.py +107 -0
  13. dlubal/api/rfem/concrete_foundations/single_foundation_pb2.py +79 -0
  14. dlubal/api/rfem/digital_twins/__init__.py +1 -0
  15. dlubal/api/rfem/digital_twins/digital_twins/__init__.py +2 -0
  16. dlubal/api/rfem/digital_twins/digital_twins/sensor_pb2.py +47 -0
  17. dlubal/api/rfem/digital_twins/digital_twins/sensor_pb2.pyi +126 -0
  18. dlubal/api/rfem/digital_twins/digital_twins/sensor_value_definition_pb2.py +44 -0
  19. dlubal/api/rfem/digital_twins/digital_twins/sensor_value_definition_pb2.pyi +98 -0
  20. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py +1 -1
  21. dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi +2 -2
  22. dlubal/api/rfem/glass_design/glass_composition_model_pb2.py +91 -0
  23. dlubal/api/rfem/guide_objects/visual_object_pb2.py +6 -6
  24. dlubal/api/rfem/guide_objects/visual_object_pb2.pyi +10 -2
  25. dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.py +12 -12
  26. dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.pyi +10 -2
  27. dlubal/api/rfem/layout_and_drawing/cad_line_pb2.py +13 -13
  28. dlubal/api/rfem/layout_and_drawing/cad_line_pb2.pyi +2 -0
  29. dlubal/api/rfem/loading/design_situation_pb2.py +12 -12
  30. dlubal/api/rfem/loading/design_situation_pb2.pyi +28 -2
  31. dlubal/api/rfem/loads/line_load_pb2.py +21 -21
  32. dlubal/api/rfem/loads/line_load_pb2.pyi +10 -2
  33. dlubal/api/rfem/loads/line_set_load_pb2.py +21 -21
  34. dlubal/api/rfem/loads/line_set_load_pb2.pyi +10 -2
  35. dlubal/api/rfem/loads/member_load_pb2.py +41 -41
  36. dlubal/api/rfem/loads/member_load_pb2.pyi +10 -2
  37. dlubal/api/rfem/loads/member_set_load_pb2.py +41 -41
  38. dlubal/api/rfem/loads/member_set_load_pb2.pyi +10 -2
  39. dlubal/api/rfem/loads/surface_load_pb2.py +27 -27
  40. dlubal/api/rfem/loads/surface_load_pb2.pyi +10 -2
  41. dlubal/api/rfem/loads/surface_set_load_pb2.py +27 -27
  42. dlubal/api/rfem/loads/surface_set_load_pb2.pyi +10 -2
  43. dlubal/api/rfem/mesh/mesh_settings_pb2.py +7 -11
  44. dlubal/api/rfem/mesh/mesh_settings_pb2.pyi +18 -76
  45. dlubal/api/rfem/object_type_pb2.py +2 -2
  46. dlubal/api/rfem/object_type_pb2.pyi +8 -0
  47. dlubal/api/rfem/{types_for_concrete_design → reinforcement}/__init__.py +0 -1
  48. dlubal/api/rfem/reinforcement/concrete_durability_pb2.py +68 -0
  49. dlubal/api/rfem/reinforcement/punching_reinforcement_pb2.py +58 -0
  50. dlubal/api/rfem/reinforcement/reinforcement_direction_pb2.py +38 -0
  51. dlubal/api/rfem/reinforcement/surface_reinforcement_pb2.py +84 -0
  52. dlubal/api/rfem/{types_for_concrete_design → reinforcement}/surface_reinforcement_pb2.pyi +183 -165
  53. dlubal/api/rfem/steel_design/steel_boundary_conditions_pb2.py +51 -0
  54. dlubal/api/rfem/steel_design/steel_effective_lengths_pb2.py +117 -0
  55. dlubal/api/rfem/steel_design/steel_member_local_section_reduction_pb2.py +47 -0
  56. dlubal/api/rfem/steel_design/steel_member_transverse_weld_pb2.py +48 -0
  57. dlubal/api/rfem/structure_core/line_pb2.py +17 -17
  58. dlubal/api/rfem/structure_core/line_pb2.pyi +2 -0
  59. dlubal/api/rfem/structure_core/member_pb2.py +192 -190
  60. dlubal/api/rfem/structure_core/member_pb2.pyi +20 -2
  61. dlubal/api/rfem/structure_core/member_representative_pb2.py +288 -286
  62. dlubal/api/rfem/structure_core/member_representative_pb2.pyi +20 -2
  63. dlubal/api/rfem/structure_core/member_set_representative_pb2.py +406 -404
  64. dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi +20 -2
  65. dlubal/api/rfem/structure_core/solid_pb2.py +28 -28
  66. dlubal/api/rfem/structure_core/solid_pb2.pyi +10 -2
  67. dlubal/api/rfem/structure_core/surface_pb2.py +62 -62
  68. dlubal/api/rfem/structure_core/surface_pb2.pyi +14 -2
  69. dlubal/api/rfem/timber_design/timber_effective_lengths_pb2.py +105 -0
  70. dlubal/api/rfem/timber_design/timber_member_local_section_reduction_pb2.py +48 -0
  71. dlubal/api/rfem/timber_design/timber_moisture_class_pb2.py +38 -0
  72. dlubal/api/rfem/timber_design/timber_screw_type_pb2.py +38 -0
  73. dlubal/api/rfem/timber_design/timber_service_class_pb2.py +38 -0
  74. dlubal/api/rfem/timber_design/timber_service_conditions_pb2.py +42 -0
  75. dlubal/api/rfem/types_for_lines/line_support_pb2.py +1 -1
  76. dlubal/api/rfem/types_for_lines/line_support_pb2.pyi +14 -14
  77. dlubal/api/rfem/types_for_wind_simulation/__init__.py +2 -0
  78. dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.py +40 -0
  79. dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.pyi +85 -0
  80. dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.py +40 -0
  81. dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.pyi +59 -0
  82. dlubal/api/rsection/application.py +16 -0
  83. dlubal/api/rstab/__init__.py +7 -5
  84. dlubal/api/rstab/aluminum_design/aluminum_boundary_conditions_pb2.py +51 -0
  85. dlubal/api/rstab/aluminum_design/aluminum_effective_lengths_pb2.py +91 -0
  86. dlubal/api/rstab/aluminum_design/aluminum_member_local_section_reduction_pb2.py +47 -0
  87. dlubal/api/rstab/aluminum_design/aluminum_member_transverse_weld_pb2.py +48 -0
  88. dlubal/api/rstab/application.py +17 -17
  89. dlubal/api/rstab/base_data_objects/terrain_pb2.py +8 -8
  90. dlubal/api/rstab/base_data_objects/terrain_pb2.pyi +6 -2
  91. dlubal/api/rstab/base_data_pb2.py +53 -53
  92. dlubal/api/rstab/base_data_pb2.pyi +8 -2
  93. dlubal/api/rstab/concrete_design_objects/__init__.py +1 -0
  94. dlubal/api/rstab/concrete_design_objects/concrete_effective_lengths_pb2.py +107 -0
  95. dlubal/api/{rfem/types_for_foundations → rstab/concrete_foundations}/single_foundation_pb2.py +12 -12
  96. dlubal/api/rstab/digital_twins/__init__.py +1 -0
  97. dlubal/api/rstab/digital_twins/digital_twins/__init__.py +2 -0
  98. dlubal/api/rstab/digital_twins/digital_twins/sensor_pb2.py +47 -0
  99. dlubal/api/rstab/digital_twins/digital_twins/sensor_pb2.pyi +126 -0
  100. dlubal/api/rstab/digital_twins/digital_twins/sensor_value_definition_pb2.py +44 -0
  101. dlubal/api/rstab/digital_twins/digital_twins/sensor_value_definition_pb2.pyi +98 -0
  102. dlubal/api/rstab/guide_objects/visual_object_pb2.py +6 -6
  103. dlubal/api/rstab/guide_objects/visual_object_pb2.pyi +10 -2
  104. dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.py +12 -12
  105. dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.pyi +10 -2
  106. dlubal/api/rstab/loading/design_situation_pb2.py +12 -12
  107. dlubal/api/rstab/loading/design_situation_pb2.pyi +28 -2
  108. dlubal/api/rstab/loads/member_load_pb2.py +41 -41
  109. dlubal/api/rstab/loads/member_load_pb2.pyi +10 -2
  110. dlubal/api/rstab/loads/member_set_load_pb2.py +41 -41
  111. dlubal/api/rstab/loads/member_set_load_pb2.pyi +10 -2
  112. dlubal/api/rstab/object_type_pb2.py +2 -2
  113. dlubal/api/rstab/object_type_pb2.pyi +8 -0
  114. dlubal/api/rstab/reinforcement/__init__.py +1 -0
  115. dlubal/api/rstab/reinforcement/concrete_durability_pb2.py +68 -0
  116. dlubal/api/rstab/steel_design/steel_boundary_conditions_pb2.py +51 -0
  117. dlubal/api/rstab/steel_design/steel_effective_lengths_pb2.py +117 -0
  118. dlubal/api/rstab/steel_design/steel_member_local_section_reduction_pb2.py +47 -0
  119. dlubal/api/rstab/steel_design/steel_member_transverse_weld_pb2.py +48 -0
  120. dlubal/api/rstab/structure_core/member_pb2.py +180 -178
  121. dlubal/api/rstab/structure_core/member_pb2.pyi +20 -2
  122. dlubal/api/rstab/structure_core/member_representative_pb2.py +276 -274
  123. dlubal/api/rstab/structure_core/member_representative_pb2.pyi +20 -2
  124. dlubal/api/rstab/structure_core/member_set_representative_pb2.py +396 -394
  125. dlubal/api/rstab/structure_core/member_set_representative_pb2.pyi +20 -2
  126. dlubal/api/rstab/timber_design/timber_effective_lengths_pb2.py +105 -0
  127. dlubal/api/rstab/timber_design/timber_member_local_section_reduction_pb2.py +48 -0
  128. dlubal/api/rstab/timber_design/timber_moisture_class_pb2.py +38 -0
  129. dlubal/api/rstab/timber_design/timber_screw_type_pb2.py +38 -0
  130. dlubal/api/rstab/timber_design/timber_service_class_pb2.py +38 -0
  131. dlubal/api/rstab/timber_design/timber_service_conditions_pb2.py +42 -0
  132. dlubal/api/rstab/types_for_wind_simulation/__init__.py +2 -0
  133. dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.py +40 -0
  134. dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.pyi +81 -0
  135. dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.py +40 -0
  136. dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.pyi +55 -0
  137. {dlubal_api-2.12.1.dist-info → dlubal_api-2.12.3.dist-info}/METADATA +2 -2
  138. {dlubal_api-2.12.1.dist-info → dlubal_api-2.12.3.dist-info}/RECORD +190 -168
  139. examples/rfem/column.py +1 -1
  140. examples/rfem/import_from_ifc.py +3 -3
  141. examples/rstab/column.py +7 -7
  142. examples/rstab/import_from_ifc.py +1 -1
  143. dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +0 -51
  144. dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +0 -91
  145. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +0 -47
  146. dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +0 -48
  147. dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py +0 -68
  148. dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py +0 -107
  149. dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py +0 -58
  150. dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py +0 -38
  151. dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py +0 -80
  152. dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.py +0 -91
  153. dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py +0 -51
  154. dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py +0 -117
  155. dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py +0 -47
  156. dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.py +0 -48
  157. dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py +0 -105
  158. dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py +0 -48
  159. dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py +0 -38
  160. dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.py +0 -38
  161. dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py +0 -38
  162. dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py +0 -42
  163. dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py +0 -51
  164. dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.py +0 -91
  165. dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py +0 -47
  166. dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py +0 -48
  167. dlubal/api/rstab/types_for_concrete_design/__init__.py +0 -2
  168. dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.py +0 -68
  169. dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.py +0 -107
  170. dlubal/api/rstab/types_for_foundations/single_foundation_pb2.py +0 -79
  171. dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.py +0 -51
  172. dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.py +0 -117
  173. dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.py +0 -47
  174. dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.py +0 -48
  175. dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.py +0 -105
  176. dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.py +0 -48
  177. dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.py +0 -38
  178. dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.py +0 -38
  179. dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.py +0 -38
  180. dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.py +0 -42
  181. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/__init__.py +0 -0
  182. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/aluminum_boundary_conditions_pb2.pyi +0 -0
  183. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/aluminum_effective_lengths_pb2.pyi +0 -0
  184. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/aluminum_member_local_section_reduction_pb2.pyi +0 -0
  185. /dlubal/api/rfem/{types_for_aluminum_design → aluminum_design}/aluminum_member_transverse_weld_pb2.pyi +0 -0
  186. /dlubal/api/rfem/{types_for_concrete_design → concrete_design_objects}/concrete_effective_lengths_pb2.pyi +0 -0
  187. /dlubal/api/rfem/{types_for_foundations → concrete_foundations}/__init__.py +0 -0
  188. /dlubal/api/rfem/{types_for_foundations → concrete_foundations}/single_foundation_pb2.pyi +0 -0
  189. /dlubal/api/rfem/{types_for_glass_design → glass_design}/__init__.py +0 -0
  190. /dlubal/api/rfem/{types_for_glass_design → glass_design}/glass_composition_model_pb2.pyi +0 -0
  191. /dlubal/api/rfem/{types_for_concrete_design → reinforcement}/concrete_durability_pb2.pyi +0 -0
  192. /dlubal/api/rfem/{types_for_concrete_design → reinforcement}/punching_reinforcement_pb2.pyi +0 -0
  193. /dlubal/api/rfem/{types_for_concrete_design → reinforcement}/reinforcement_direction_pb2.pyi +0 -0
  194. /dlubal/api/rfem/{types_for_steel_design → steel_design}/__init__.py +0 -0
  195. /dlubal/api/rfem/{types_for_steel_design → steel_design}/steel_boundary_conditions_pb2.pyi +0 -0
  196. /dlubal/api/rfem/{types_for_steel_design → steel_design}/steel_effective_lengths_pb2.pyi +0 -0
  197. /dlubal/api/rfem/{types_for_steel_design → steel_design}/steel_member_local_section_reduction_pb2.pyi +0 -0
  198. /dlubal/api/rfem/{types_for_steel_design → steel_design}/steel_member_transverse_weld_pb2.pyi +0 -0
  199. /dlubal/api/rfem/{types_for_timber_design → timber_design}/__init__.py +0 -0
  200. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_effective_lengths_pb2.pyi +0 -0
  201. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_member_local_section_reduction_pb2.pyi +0 -0
  202. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_moisture_class_pb2.pyi +0 -0
  203. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_screw_type_pb2.pyi +0 -0
  204. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_service_class_pb2.pyi +0 -0
  205. /dlubal/api/rfem/{types_for_timber_design → timber_design}/timber_service_conditions_pb2.pyi +0 -0
  206. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/__init__.py +0 -0
  207. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/aluminum_boundary_conditions_pb2.pyi +0 -0
  208. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/aluminum_effective_lengths_pb2.pyi +0 -0
  209. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/aluminum_member_local_section_reduction_pb2.pyi +0 -0
  210. /dlubal/api/rstab/{types_for_aluminum_design → aluminum_design}/aluminum_member_transverse_weld_pb2.pyi +0 -0
  211. /dlubal/api/rstab/{types_for_concrete_design → concrete_design_objects}/concrete_effective_lengths_pb2.pyi +0 -0
  212. /dlubal/api/rstab/{types_for_foundations → concrete_foundations}/__init__.py +0 -0
  213. /dlubal/api/rstab/{types_for_foundations → concrete_foundations}/single_foundation_pb2.pyi +0 -0
  214. /dlubal/api/rstab/{types_for_concrete_design → reinforcement}/concrete_durability_pb2.pyi +0 -0
  215. /dlubal/api/rstab/{types_for_steel_design → steel_design}/__init__.py +0 -0
  216. /dlubal/api/rstab/{types_for_steel_design → steel_design}/steel_boundary_conditions_pb2.pyi +0 -0
  217. /dlubal/api/rstab/{types_for_steel_design → steel_design}/steel_effective_lengths_pb2.pyi +0 -0
  218. /dlubal/api/rstab/{types_for_steel_design → steel_design}/steel_member_local_section_reduction_pb2.pyi +0 -0
  219. /dlubal/api/rstab/{types_for_steel_design → steel_design}/steel_member_transverse_weld_pb2.pyi +0 -0
  220. /dlubal/api/rstab/{types_for_timber_design → timber_design}/__init__.py +0 -0
  221. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_effective_lengths_pb2.pyi +0 -0
  222. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_member_local_section_reduction_pb2.pyi +0 -0
  223. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_moisture_class_pb2.pyi +0 -0
  224. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_screw_type_pb2.pyi +0 -0
  225. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_service_class_pb2.pyi +0 -0
  226. /dlubal/api/rstab/{types_for_timber_design → timber_design}/timber_service_conditions_pb2.pyi +0 -0
  227. {dlubal_api-2.12.1.dist-info → dlubal_api-2.12.3.dist-info}/WHEEL +0 -0
  228. {dlubal_api-2.12.1.dist-info → dlubal_api-2.12.3.dist-info}/top_level.txt +0 -0
@@ -21,31 +21,40 @@ dlubal/api/common/import_export/export_attributes_pb2.py,sha256=DZM93M-4D90KOAMx
21
21
  dlubal/api/common/import_export/export_attributes_pb2.pyi,sha256=bYBQ3IuA4AYfPk66WPfgdZ9Wbx8LnG3Bc6Q1HXCNVxo,4623
22
22
  dlubal/api/common/import_export/import_attributes_pb2.py,sha256=Bb4Z0FhneeUgY5HN1TMkn_zjjVteN6xsqopYTxLrfpE,1790
23
23
  dlubal/api/common/import_export/import_attributes_pb2.pyi,sha256=hfVWeItWcGnXHiCQlG62nKcKkwzh-Hl6WBQj8r8HFKE,508
24
- dlubal/api/rfem/__init__.py,sha256=Q6FZOVhiIwSi-E9k2NNJhFlLfnmjC8oBntRiYlSJQso,1686
24
+ dlubal/api/rfem/__init__.py,sha256=mKoQn28yVjN0q1glEg4XsKKWPWCMMq8LbWvBugFAViM,1701
25
25
  dlubal/api/rfem/all_pb2.py,sha256=MCCByVcazWHrwdvA4yWDw8ujabPdlFoFF3nU2tEwyaM,1309
26
26
  dlubal/api/rfem/all_pb2.pyi,sha256=B9MEtgw7rc3XQscf2aooQmcxZBvPRFLdNUDa71rSf5I,277
27
- dlubal/api/rfem/application.py,sha256=jSfRiklyicLGvtigJvNJyF7xy9YY3ZQ3dQyhcQ5L2v4,36649
27
+ dlubal/api/rfem/application.py,sha256=J1h8f9ejag2AWnQdPRYfgX_DIK-VotdFAQjP2M_d9QU,36624
28
28
  dlubal/api/rfem/application_pb2.py,sha256=ZXoQQ9vGne3SImI3RLIzuTLgZ2-Ic-yHB_z9j5kj63U,13188
29
29
  dlubal/api/rfem/application_pb2.pyi,sha256=8lFsSJOwrESbaw68OUB5xAOlBOIPcMlKYoNVT3XvIoI,8072
30
30
  dlubal/api/rfem/application_pb2_grpc.py,sha256=SVis27nFEAiCjLEM-TkT6WggmDqVzQNsCdcXjkEbfAg,87263
31
- dlubal/api/rfem/base_data_pb2.py,sha256=u1QhY0bu5tqc25oRZ6CzdHnycbjhRaO_NrGRY1cVRGs,100033
32
- dlubal/api/rfem/base_data_pb2.pyi,sha256=puGMhCmL5rTGogyZRlO5LxqTePWNg1jfSeqD26IFWCU,272456
31
+ dlubal/api/rfem/base_data_pb2.py,sha256=urMgT_1CtibAOneEacwngShEmC3owjl0g5ufw5DrA4I,100274
32
+ dlubal/api/rfem/base_data_pb2.pyi,sha256=28H0ghl4XNthmIvYIXG6yST88c3wDOwIC7BnCrFzMcY,273067
33
33
  dlubal/api/rfem/design_addons_pb2.py,sha256=LUHUetZ9mCQSED4-yi2LzTi9frQtoL8hnVWzBJ9wIXk,1764
34
34
  dlubal/api/rfem/design_addons_pb2.pyi,sha256=bb9rnl4VjlqcZuTd4G1oEZ5_bqqY6naXArlBwFPr5w0,1081
35
35
  dlubal/api/rfem/dynamic_analysis_pb2.py,sha256=7stlZ-xrflA9HMNPFV--VmQrTHEzyIRNn5tAxOMZJmU,2003
36
36
  dlubal/api/rfem/dynamic_analysis_pb2.pyi,sha256=qhnZ5ZC-ZuaXxMGz-KRHjx6_MAN1koj_wjHjsYeBL30,1167
37
37
  dlubal/api/rfem/object_id_pb2.py,sha256=uWLKenTsbYhUhyV1h_DJIup9MO68lSkvIBlyxCNB_vs,1989
38
38
  dlubal/api/rfem/object_id_pb2.pyi,sha256=taj9vs-yqANYW_opllOc_n6G5T0xAoN7ANCGeObET-Y,1362
39
- dlubal/api/rfem/object_type_pb2.py,sha256=Bl5fhydpZbDq3uWgsZkHpf7kbMd8GyKJ0LZwOBmeWRc,11353
40
- dlubal/api/rfem/object_type_pb2.pyi,sha256=Z1C_d7Mo0uZmDIJSVzeXkhP50GSmycdYdwIMzRKoM3k,20730
39
+ dlubal/api/rfem/object_type_pb2.py,sha256=AIl3etRG1Ytvphh3gnh4uqmHegk2uH4RqxDXEgZVUPE,11547
40
+ dlubal/api/rfem/object_type_pb2.pyi,sha256=imUGp00DcDPZGctY5uGtSMF7PAEFn5sxCkoaIy2v0LI,21138
41
+ dlubal/api/rfem/aluminum_design/__init__.py,sha256=mBNo59ISHcQjFvFfApBtsY_s5is8-qDCA_h3kG0yHP0,204
42
+ dlubal/api/rfem/aluminum_design/aluminum_boundary_conditions_pb2.py,sha256=Sa3SXuzZ-ZK1v15zxwP1EUoCXQQkAT-Hak_CgCosg9E,10213
43
+ dlubal/api/rfem/aluminum_design/aluminum_boundary_conditions_pb2.pyi,sha256=ffKavXpgRvcYw6Svh3Bc9FCIMMsjF6734OH_zzFH6zY,14906
44
+ dlubal/api/rfem/aluminum_design/aluminum_effective_lengths_pb2.py,sha256=8T5HXChTz9Fv7l_za59S45vzlwyteL45OCLq6wYMluU,21773
45
+ dlubal/api/rfem/aluminum_design/aluminum_effective_lengths_pb2.pyi,sha256=YF_SBwHgYooYEIDLyk6SfoH7zMqycUv1L8cR4LUw2-o,32855
46
+ dlubal/api/rfem/aluminum_design/aluminum_member_local_section_reduction_pb2.py,sha256=F1AvignjQgLompwKqSCtiaG6dPUj4yEvN4LOfaaBn-0,10740
47
+ dlubal/api/rfem/aluminum_design/aluminum_member_local_section_reduction_pb2.pyi,sha256=pwEGI-3z48BLpn9ZsJDv9YRdxyhDqWI5NIn5a7UTzKk,15808
48
+ dlubal/api/rfem/aluminum_design/aluminum_member_transverse_weld_pb2.py,sha256=8CHipWDXSrEiBYBj6Mf-d_SzePSCDVZYJ13FNrxRa4k,6157
49
+ dlubal/api/rfem/aluminum_design/aluminum_member_transverse_weld_pb2.pyi,sha256=vNduLXZowg-NcJTYFpxBfTbPK61K8WonXJu1E23z35o,8373
41
50
  dlubal/api/rfem/aluminum_design_objects/__init__.py,sha256=6e4pV4SgsJre2SVFo2z5y63iFiyfQi8-K3AKYIJAgS0,106
42
51
  dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py,sha256=MttnuqK2aoI9mVsNn1WEN2ob0KYuHkrV8-2H3Qc0IH8,16739
43
52
  dlubal/api/rfem/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi,sha256=7U5KL9cZM0Fi6oLB6iShfbNZzEaRpDrxPI_cNyz3Dgw,20124
44
53
  dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py,sha256=ZZfn6nw2oJ_95beYKXSMW-8hlVk7E1PxDUVCuTGb314,16739
45
54
  dlubal/api/rfem/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi,sha256=jBCfULpD34lhkbT646zOefpv9kvfOdKckOnzUm2NpAk,20124
46
55
  dlubal/api/rfem/base_data_objects/__init__.py,sha256=M_kTRuni5wQ6C6xoGbTlC_zRPEzh-FKzA1nh4cEpdm8,27
47
- dlubal/api/rfem/base_data_objects/terrain_pb2.py,sha256=IynN5DpGbEbYk4o-p1G6dFSMXphz9D4-Qizudw0_la0,3737
48
- dlubal/api/rfem/base_data_objects/terrain_pb2.pyi,sha256=wkRe_mIaCo8s4VNFU4h65efwHx6kPFkKhkrTPLN6JGY,3825
56
+ dlubal/api/rfem/base_data_objects/terrain_pb2.py,sha256=GN9CweEHKznYlZPV5HlNq597HVuPy2NNsQ-QPkK7hjw,3859
57
+ dlubal/api/rfem/base_data_objects/terrain_pb2.pyi,sha256=bCcRsLylPb9pt4dypq-seji-OJc8BadOnYtR4P97GX0,4046
49
58
  dlubal/api/rfem/beam_panels/__init__.py,sha256=DJHHOtycpBXJZH8u_5jF_Tu26HUqa___8HQvs1_Dkss,159
50
59
  dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.py,sha256=8NQsm50MIzvARYcZo-2dJCsO5I4dxTd1Z-P1f9s7veo,2739
51
60
  dlubal/api/rfem/beam_panels/beam_to_beam_connector_pb2.pyi,sha256=kl9Lx2Fr9bomZKR4AL0gWqocT0cCXhWkvSwcwJT9__U,2429
@@ -72,7 +81,7 @@ dlubal/api/rfem/component_design_objects/component_pb2.py,sha256=Z3naDShBlhIuMoE
72
81
  dlubal/api/rfem/component_design_objects/component_pb2.pyi,sha256=QbCRBymbGza7ckH0oYFMUinILVtIF9M99KpgkQIJsH4,14596
73
82
  dlubal/api/rfem/component_design_objects/component_serie_pb2.py,sha256=KADjIsUZsZnVRYW8tn6CijSge1AhU9PBTOFOSyMmaAg,3679
74
83
  dlubal/api/rfem/component_design_objects/component_serie_pb2.pyi,sha256=9VG3PovN3D56-uJxJIXdQCKU7J26KgB_vsZrnK6QH20,3821
75
- dlubal/api/rfem/concrete_design_objects/__init__.py,sha256=oCfErup27UzO3i_3OvryDWVA3DNXf0lhgNe10EzvFiA,215
84
+ dlubal/api/rfem/concrete_design_objects/__init__.py,sha256=Z_rCBpTlyK6kXZY6k_mTOrDtLcqYy0zsFnSgG0DajJw,261
76
85
  dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.py,sha256=roVpHdn056RrtlMuG2U6xt881SWrFgfVODNhxnzqGRE,22897
77
86
  dlubal/api/rfem/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi,sha256=CNIc-l2mxKPwi6ZvWNanILgcKuXvYyNtdHJiXnb2ApQ,28010
78
87
  dlubal/api/rfem/concrete_design_objects/concrete_design_seismic_configuration_pb2.py,sha256=XEsjtf_4i1WA-0bH6YPLfw9AL0gO7oY8hQJvyFUdDbg,10816
@@ -81,9 +90,20 @@ dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.py
81
90
  dlubal/api/rfem/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi,sha256=RV_kC4oVLa3aaiXsaCIIofYMzZGx9k-euFFJiRb8QUU,14671
82
91
  dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.py,sha256=304s1-mr6j4Dq_rM3sYKouPSXTcMB1-IKw8sVTB3KPc,28393
83
92
  dlubal/api/rfem/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi,sha256=G4-_ShDviE0Eu_UnQs9cYFIACty56R0LevvJRu8K4l8,34687
93
+ dlubal/api/rfem/concrete_design_objects/concrete_effective_lengths_pb2.py,sha256=DmLwuukHC6hCO4_z1VKOCOkpEOXKzBYqX746BWI6jfw,28991
94
+ dlubal/api/rfem/concrete_design_objects/concrete_effective_lengths_pb2.pyi,sha256=23RqWDPiWX_FWgPzMJFJGgdPgXkYONUxJFv32-HJRwQ,44973
95
+ dlubal/api/rfem/concrete_foundations/__init__.py,sha256=yrN7yeKbeJ-xho7pZsDb1PNgiJYKF56OYFvHeFXFt5c,37
96
+ dlubal/api/rfem/concrete_foundations/single_foundation_pb2.py,sha256=W3Et5GYlRs9AY1iiv10be8ZV_5nsDLPEeMizjHmQ-Sk,19034
97
+ dlubal/api/rfem/concrete_foundations/single_foundation_pb2.pyi,sha256=8IMz1D3Su8YQ9F4Te9l8vMl66rgFuXZyjkpTxAng6Rg,26606
84
98
  dlubal/api/rfem/construction_stages/__init__.py,sha256=x0C68lsocoMZhGY0Ovp0tQ3q_Fkp7w1Xdh62BXPVHP4,38
85
99
  dlubal/api/rfem/construction_stages/construction_stage_pb2.py,sha256=_iLTy_BkLBtFYpWiyaHUvmC0DyRS3kLMlNwPRC5acgU,26075
86
100
  dlubal/api/rfem/construction_stages/construction_stage_pb2.pyi,sha256=n6OMPhzXLrPcs9KwM6vlkL8WVNa_4JpCoHA8NL9Clro,48653
101
+ dlubal/api/rfem/digital_twins/__init__.py,sha256=NJVUHO7P0ImhwFt7x65kjWCNd9pmA8IUxff3Ad6rLP8,28
102
+ dlubal/api/rfem/digital_twins/digital_twins/__init__.py,sha256=RqrMJLPjdGv8l01Hmtoh_iJmgrQQv3ow95gmm9tYLLw,69
103
+ dlubal/api/rfem/digital_twins/digital_twins/sensor_pb2.py,sha256=mQAOoGNC2q00m4uEsT4rXjKg1HBwu6BB36VPofo9L4k,6167
104
+ dlubal/api/rfem/digital_twins/digital_twins/sensor_pb2.pyi,sha256=KA2wRjggyhG4Y7v78CSPH3ewyRDSL2kwXsuvOUDIAT0,7016
105
+ dlubal/api/rfem/digital_twins/digital_twins/sensor_value_definition_pb2.py,sha256=KX8v08CGtbf7dKANoP8MKQn14xFd8KO_pOQH4wv_jZI,5529
106
+ dlubal/api/rfem/digital_twins/digital_twins/sensor_value_definition_pb2.pyi,sha256=1BTRIjAgmZeo3oD6FifaALnzZcMmkFCZIX7_6URYjSo,6647
87
107
  dlubal/api/rfem/dynamic_loads/__init__.py,sha256=NTB2H5xkEYsnOkv3EbYXHHCIEQRm7kbiEeLI0gYzEyg,101
88
108
  dlubal/api/rfem/dynamic_loads/accelerogram_pb2.py,sha256=-VFLc6W9A-PyLFV0WZ07w3TKiylLSeEWbs5pGk2GERk,4294
89
109
  dlubal/api/rfem/dynamic_loads/accelerogram_pb2.pyi,sha256=6CkobQjULTiaDXoUjQJsPn3hhbak7j-wVsnFM8cuaRU,4507
@@ -101,8 +121,11 @@ dlubal/api/rfem/geotechnical_analysis/borehole_pb2.py,sha256=nnONuPgxxHnfirW8sIJ
101
121
  dlubal/api/rfem/geotechnical_analysis/borehole_pb2.pyi,sha256=yDCLcii8tOrRSTpMq1dN7rofBjHm_MT18d6X7Icb3J8,4195
102
122
  dlubal/api/rfem/geotechnical_analysis/pile_resistance_pb2.py,sha256=oc6IuxMNejm2UWB-33aVTHSCH4IrPxfiSNLRlSchHLE,4522
103
123
  dlubal/api/rfem/geotechnical_analysis/pile_resistance_pb2.pyi,sha256=3_bK0VYg2dMchjbaQ9gU8VtJBMjFKuSG0shAgN9SARw,4877
104
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py,sha256=hZOcL8YoSmwnvNvluHl5-H8a9IIqiVg6x9_2cEN-P9o,9521
105
- dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi,sha256=oHhdNcM15iemN9z_F7EuNLVaTN9kz2KD403diubBhNA,13328
124
+ dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.py,sha256=L3rb_Tjacnpa0q6Z-Joi21Ur7VlzgTQtS0wqSZlS6UQ,9521
125
+ dlubal/api/rfem/geotechnical_analysis/soil_massif_pb2.pyi,sha256=--J89WJx60PN-0c0t2Fd1ov9s5ZEYXetPdRTKGbouHA,13328
126
+ dlubal/api/rfem/glass_design/__init__.py,sha256=3D2xfVYSR6DMtTZnfoP7tT7Pnz4pqCjoNHT1zdvqPgg,43
127
+ dlubal/api/rfem/glass_design/glass_composition_model_pb2.py,sha256=AC3Lq7i1xwzGzKdsPEyj0bXca53Rg1bDDPl2T1JkLUc,24467
128
+ dlubal/api/rfem/glass_design/glass_composition_model_pb2.pyi,sha256=q78tIYbId3aVF62yK51e1wX2pDpSKi6bQYj5LJOgUPs,35102
106
129
  dlubal/api/rfem/glass_design_objects/__init__.py,sha256=KbIiJSQQfdSuX7RW2AXkAFH5s7QNrJnuRDyRXO8lwW4,100
107
130
  dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.py,sha256=WPpHVzh2nX51uC43IU3JojNevj8v03NNEIH0-eoQaf4,13475
108
131
  dlubal/api/rfem/glass_design_objects/glass_design_sls_configuration_pb2.pyi,sha256=Bil8p_5RjmR9MbahoWRmig681RUjL8DSoK62jLKi7Q8,15721
@@ -140,11 +163,11 @@ dlubal/api/rfem/guide_objects/object_snap_pb2.py,sha256=nos9rfti2KhMl3Kh8HNwtIY_
140
163
  dlubal/api/rfem/guide_objects/object_snap_pb2.pyi,sha256=Zugpx0xj4KHrX8c_A-tXYFeQpSBFTJSdYRt2jhg58jY,5780
141
164
  dlubal/api/rfem/guide_objects/texture_pb2.py,sha256=dZPSYQwto-f3blgHIi9IradJOWVwQYKttGcagEt7opM,2870
142
165
  dlubal/api/rfem/guide_objects/texture_pb2.pyi,sha256=xMzvRT-SQmEB8us3A0JDiAP3oOaZ0wGKTjf9yZCXrrk,2532
143
- dlubal/api/rfem/guide_objects/visual_object_pb2.py,sha256=fcmzmcLVXT_IQ-Bg3eujNeDRjhdJKQfrA5-DvQfEZoA,6092
144
- dlubal/api/rfem/guide_objects/visual_object_pb2.pyi,sha256=8g2I7-uwnnyTc5ca5BYBWccs3ogmflKTBaa4JWQ1p3o,8479
166
+ dlubal/api/rfem/guide_objects/visual_object_pb2.py,sha256=x7CoszBLTN1ZK5bub0Nope1dn5tLbMpMSfDEPyOo_1k,6521
167
+ dlubal/api/rfem/guide_objects/visual_object_pb2.pyi,sha256=kQSyGWiZJbZn17314nvZIKmwgDVJubVWe3kkQwrNoeA,9177
145
168
  dlubal/api/rfem/ifc_objects/__init__.py,sha256=zbixdD5bVs6McKbXMlp3ssV9GDmQftK53h3oAHhaAbk,77
146
- dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.py,sha256=boERFNSqTv0tijYDCCsJG_-fhUFJh-mw8TihBRmu2PU,4893
147
- dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.pyi,sha256=8rDBspQyOllRlN8uYcOp74pJyiNx-784mTyQ0rT76hE,5942
169
+ dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.py,sha256=kR2egBQYw9Kc7zAsfUNvTp6Dyw5xD51YGVVvEUo_33A,5411
170
+ dlubal/api/rfem/ifc_objects/ifc_file_model_object_pb2.pyi,sha256=X-6HuCi5RMQ_Nb_2L03IyIAMpkM9W4j9xiUnfGyCLjw,6832
148
171
  dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.py,sha256=t6O1nxe-sOgFpVDTfwjPWYIFe1LttjPuZyC1yyqhK1I,2250
149
172
  dlubal/api/rfem/ifc_objects/ifc_model_object_pb2.pyi,sha256=2WXd6cQmviVKxmiXsKCzIUNZkMse_7kW_0KATPsNDJA,1619
150
173
  dlubal/api/rfem/imperfections/__init__.py,sha256=GT2pw9koN38ojx4x48h3B73RKOm1i3t0AyeQj1Jrwfw,119
@@ -155,8 +178,8 @@ dlubal/api/rfem/imperfections/member_imperfection_pb2.pyi,sha256=U-jqvfvblo9hdhP
155
178
  dlubal/api/rfem/imperfections/member_set_imperfection_pb2.py,sha256=Y9-tNZFAE3x4ipRmfUYjUk7DnQkv6tOvCOmd_Y2u8bE,10051
156
179
  dlubal/api/rfem/imperfections/member_set_imperfection_pb2.pyi,sha256=IUvy9M1VXHl5TYCDH8PjzhfHy3X_zzQbQNrYZshovaY,16718
157
180
  dlubal/api/rfem/layout_and_drawing/__init__.py,sha256=YnItM3qu7Sxtb-l_x6U4vaAAszCSxaCNr879kSo_1oc,62
158
- dlubal/api/rfem/layout_and_drawing/cad_line_pb2.py,sha256=2PRC5vuyqBnSkGXlyA3_MVplrwX7bGRqvz_ViCu74p0,20870
159
- dlubal/api/rfem/layout_and_drawing/cad_line_pb2.pyi,sha256=VIPW-WIRASqfaFGq6e0VUhL18ugxioWHaoflW_J35p0,30587
181
+ dlubal/api/rfem/layout_and_drawing/cad_line_pb2.py,sha256=AGwH4DO5ZYXOeLOpc6Oh7LlaZ_nl9PgtX_ZwqcRwihU,20940
182
+ dlubal/api/rfem/layout_and_drawing/cad_line_pb2.pyi,sha256=EQvQL_NSfvZbTgfD6dRDesYomkPE5KZOOECYIR9gzsc,30786
160
183
  dlubal/api/rfem/layout_and_drawing/cad_line_point_pb2.py,sha256=AvuQ8-iJx27DJkWT83Qey2vfSW5tzPhJbKNDcG9-6_w,2758
161
184
  dlubal/api/rfem/layout_and_drawing/cad_line_point_pb2.pyi,sha256=EUD1MRIbX7qACtkHlQmseCsUGHxBdP4QTGBM9K3HlJI,2132
162
185
  dlubal/api/rfem/load_wizards/__init__.py,sha256=QdSlPUWU_ihfnPw3JKz-Tp-TI4gFRuYp3leQpCTTxyM,271
@@ -181,8 +204,8 @@ dlubal/api/rfem/loading/action_pb2.py,sha256=km8Oz5MogQn4uRIswHILDMhw0Ruv4L1IAiR
181
204
  dlubal/api/rfem/loading/action_pb2.pyi,sha256=LAJ80WryLAuKYa3Xii8jts-CfuP6rFOrM_NY-fvbCn4,62887
182
205
  dlubal/api/rfem/loading/combination_wizard_pb2.py,sha256=P9Y51-RjNNDqYKt86TVLBxXy26eTWz5amC6NeOy1ucY,6957
183
206
  dlubal/api/rfem/loading/combination_wizard_pb2.pyi,sha256=zmtsb0tvuwNX79lV4u1c3f8UF9E-akw0DMqtqaSp7Xs,8962
184
- dlubal/api/rfem/loading/design_situation_pb2.py,sha256=r_hCJ8S42QbeM5pmUDQ3TMkiGExa_dl-XwTRhKCamQk,42734
185
- dlubal/api/rfem/loading/design_situation_pb2.pyi,sha256=ASSeVVvrtjHXeJ5SeoD8lQ03ek5gb9EN06iDHvbkVOM,113069
207
+ dlubal/api/rfem/loading/design_situation_pb2.py,sha256=R-Y_ACv9r0Jg09JTdOyb3-GqU7SivJvlmeFDeBSH-uc,44203
208
+ dlubal/api/rfem/loading/design_situation_pb2.pyi,sha256=Atuj0_j0PO94E2Kx2SllW5FNqx-MoV9LVuJDgTxJ5Qg,115194
186
209
  dlubal/api/rfem/loading/load_case_pb2.py,sha256=Gj5msJHEXy29ZISJQUq_4CSJn_BlPuS3PPlf112uUcw,69490
187
210
  dlubal/api/rfem/loading/load_case_pb2.pyi,sha256=L_b0wTjuE14mT7gxOeGm8l6MVnF9VjnmBpaYkkqmZiE,136550
188
211
  dlubal/api/rfem/loading/load_combination_pb2.py,sha256=ACYRqtqd8ssoIxdnXNclOyRe-h7fZ_oMvJOcCGEWAKo,17928
@@ -226,14 +249,14 @@ dlubal/api/rfem/loads/imposed_line_deformation_pb2.py,sha256=FlFMdyypT1IbSUyQsAd
226
249
  dlubal/api/rfem/loads/imposed_line_deformation_pb2.pyi,sha256=ZsJ1pZMcKliTgKo7YND2a6KjXOCL8jhcjYmaIq_SMhg,3639
227
250
  dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.py,sha256=mMwKmW7-j7nwjazcIVq2ZG5S6X-gwm-V_QGZYYhK1ys,3096
228
251
  dlubal/api/rfem/loads/imposed_nodal_deformation_pb2.pyi,sha256=f1UgMDN6dFL6ugZ2NxYbsGjJc4uQsNjsfWyzamREagk,2892
229
- dlubal/api/rfem/loads/line_load_pb2.py,sha256=RbreNXS8S7BkZbIsT-a4GaxF8xKhCz8H2kPgQATj9rA,13447
230
- dlubal/api/rfem/loads/line_load_pb2.pyi,sha256=OKHDMEM8E6duHnnSVJVA1GFhRg1vrq92g0zTiE2p2FE,21114
231
- dlubal/api/rfem/loads/line_set_load_pb2.py,sha256=K575ZNDPp9TWnWtY5RTxvI4z6A7LTg1Gl1eSH2O8gYk,13580
232
- dlubal/api/rfem/loads/line_set_load_pb2.pyi,sha256=XaRD8zEcOs7T_S9CMzmz4VGScfFD5ca_idd7cGgOtAc,21489
233
- dlubal/api/rfem/loads/member_load_pb2.py,sha256=KTGEBcoY_hMD4dde-BxPXPaOV9OM-Tc2Y4NIKiSZUsU,23667
234
- dlubal/api/rfem/loads/member_load_pb2.pyi,sha256=MFv0GJxvWr3U5q7ukh--OjrXy9tqeIJ_D8aAsbw_fI8,39975
235
- dlubal/api/rfem/loads/member_set_load_pb2.py,sha256=NggpNxLFD0S--MerxmMAC10NgX5NVzUosmA2D31y1H0,23779
236
- dlubal/api/rfem/loads/member_set_load_pb2.pyi,sha256=Hih9GhaxvtgKfUXdhvUeghODJssGBsO0AbSSq-0NVek,40559
252
+ dlubal/api/rfem/loads/line_load_pb2.py,sha256=0D3aPgiI-OhWplKTfikUvNSTBoroV29qY91S-1GjVSk,13802
253
+ dlubal/api/rfem/loads/line_load_pb2.pyi,sha256=ue_yVBC9Qugvp5es1zLXBeEuW6OyFO3KhJDvun30SMc,21690
254
+ dlubal/api/rfem/loads/line_set_load_pb2.py,sha256=Gri3ZgQJ3WhJ66AzgzzyHngCiWwYXBpcqNJX5QxaqwY,13935
255
+ dlubal/api/rfem/loads/line_set_load_pb2.pyi,sha256=RCwm8IpM38le8AMEOfydM6Aefv3bwRBi3Cfiv2Zo9dA,22065
256
+ dlubal/api/rfem/loads/member_load_pb2.py,sha256=cDGoNkDMRA51hl6PZMlkeIRk7SXgnVq3UYqJ6sOf3Jw,24022
257
+ dlubal/api/rfem/loads/member_load_pb2.pyi,sha256=HNJN7gDneb3Tw791U6enhxAO46_yGnhE3nnn_UL1Ibk,40551
258
+ dlubal/api/rfem/loads/member_set_load_pb2.py,sha256=fpaDgIEMErOI32XbA4k9mSz4Xz3ciRkglt-9YbV5rOw,24134
259
+ dlubal/api/rfem/loads/member_set_load_pb2.pyi,sha256=Zqkcz2osOzj0WBqZ1SCvxil-XaxN8P0UM6zq38wDr2I,41135
237
260
  dlubal/api/rfem/loads/nodal_load_pb2.py,sha256=YjaNW7sa2yBsnnga30i7o74OOyATQaH9CeOlSI-zp7Y,11064
238
261
  dlubal/api/rfem/loads/nodal_load_pb2.pyi,sha256=b5nIhenyfK1sUXC9xuUTz_6eKlNQvCWYbmAdRHZdr7k,17229
239
262
  dlubal/api/rfem/loads/opening_load_pb2.py,sha256=OuWn_dwVongMjj5ZQAVjcZ3wB3Yu1pm30wMxWp9FLIc,4526
@@ -242,13 +265,22 @@ dlubal/api/rfem/loads/solid_load_pb2.py,sha256=7EPZXLRLtdiMDipahnMWOmqkCw5vyEVcq
242
265
  dlubal/api/rfem/loads/solid_load_pb2.pyi,sha256=hE2sF35haIZfEWlSVCWjXvJKMqeeQis010q4MCFRYvc,12395
243
266
  dlubal/api/rfem/loads/solid_set_load_pb2.py,sha256=4-PpaIKfr7sgJpxxvA_MHW29nEazljPFfpunv5KNK50,8885
244
267
  dlubal/api/rfem/loads/solid_set_load_pb2.pyi,sha256=poWzkStT63XacjLxaNYy01o13n8pB5qxg4QDeTlGtBE,12630
245
- dlubal/api/rfem/loads/surface_load_pb2.py,sha256=rya4wZt4kgbCb5M_Sxapt_SxeZW6MbBmjd8UElCI2Kc,17217
246
- dlubal/api/rfem/loads/surface_load_pb2.pyi,sha256=_BYeaT8XG87bCRsKycOAfgVS9pfgwyvJBxrxZR3bAa8,26399
247
- dlubal/api/rfem/loads/surface_set_load_pb2.py,sha256=lIFVIk54Tsvk457a1rnAX63655bQ4NS_Q4v0LxWtPDs,17375
248
- dlubal/api/rfem/loads/surface_set_load_pb2.pyi,sha256=HTT1BHx2Za0puUSwNLmTf2SJphrrAp-29wFqqXA9YgE,26760
268
+ dlubal/api/rfem/loads/surface_load_pb2.py,sha256=Hf3U4wc4X7UUvjgD9mlgKC84c9n8v25O-OTBJcgxaHs,17572
269
+ dlubal/api/rfem/loads/surface_load_pb2.pyi,sha256=iAcLkLpCRsH1BUjI3Ce9pqYX0iYw6caZoHDV4Y8vEUk,26975
270
+ dlubal/api/rfem/loads/surface_set_load_pb2.py,sha256=iW5elxkdUF5hWL29ABSP3nGZH_J1CiL7KljcVxQkR3Q,17730
271
+ dlubal/api/rfem/loads/surface_set_load_pb2.pyi,sha256=fOfX6GR14eSqeRXuE9VQWSNG4fmHDMcnUY63cgmGF94,27336
249
272
  dlubal/api/rfem/mesh/__init__.py,sha256=yW9CFt0mNSGkjP7y5tJPHt0Y2hd7Y1zOfmXs_QidH0A,33
250
- dlubal/api/rfem/mesh/mesh_settings_pb2.py,sha256=y-2mm28ZvcqubdDCStHmaRiPCx7b6KypsLH0KB4DtsM,13727
251
- dlubal/api/rfem/mesh/mesh_settings_pb2.pyi,sha256=dpymyliOOgYSJ5g-w8DnFITYIzxn6X-VG0ZH5HyMWKI,35895
273
+ dlubal/api/rfem/mesh/mesh_settings_pb2.py,sha256=IYU4abGu9KkA4m8E-Il627kIbuq2pxF3bo90I9eVu_0,10345
274
+ dlubal/api/rfem/mesh/mesh_settings_pb2.pyi,sha256=FiAvhxXAmJhZ82lW318j6bLRZBCx-Oy1R8XkEMRUgJ0,26149
275
+ dlubal/api/rfem/reinforcement/__init__.py,sha256=Ih3VGQESoNdj7lfSSEuEjSlNjvk1oB1molCgwmpkLag,165
276
+ dlubal/api/rfem/reinforcement/concrete_durability_pb2.py,sha256=tDvoi_7zzL0bLXnSury4UIjGz04PwgefXj0MdOU5nxs,14896
277
+ dlubal/api/rfem/reinforcement/concrete_durability_pb2.pyi,sha256=PPjSQ8pNrf1UKofUVwWCUydG0YKv2azM4FhDMI0izLE,24525
278
+ dlubal/api/rfem/reinforcement/punching_reinforcement_pb2.py,sha256=RRcs8Zlk-n1DWWbJjwM4k36Aspn611lP_OzxEpirVzc,17415
279
+ dlubal/api/rfem/reinforcement/punching_reinforcement_pb2.pyi,sha256=pAvMdS8XPl_x4by9lgSs36tBGcgVvyu-fH48ouMiSTI,31160
280
+ dlubal/api/rfem/reinforcement/reinforcement_direction_pb2.py,sha256=_PJ8Bcfn5ga5yEBqB7bQy50PXjkfeRnI2KPDgvMzelQ,3327
281
+ dlubal/api/rfem/reinforcement/reinforcement_direction_pb2.pyi,sha256=exaStZ93C0_Yp0_Z3RU3YzViYWZBdLqRoJwoFLTWOW4,3555
282
+ dlubal/api/rfem/reinforcement/surface_reinforcement_pb2.py,sha256=8AaBtlfqeqyuUN5vF2C1LzPzECMLzUHhcWweydANF_c,31904
283
+ dlubal/api/rfem/reinforcement/surface_reinforcement_pb2.pyi,sha256=Lu9bGBVWCJM9GB3jxospzMTQ_7mx1__ie061mby3Sps,67163
252
284
  dlubal/api/rfem/result_objects/__init__.py,sha256=XSflSzNGdIkIuHgFjm2AiK6lFrXPAzlzNMr33XgORVw,66
253
285
  dlubal/api/rfem/result_objects/result_point_pb2.py,sha256=Je7FMO90s9tUr0sMkA83slllILncFlY0-La1fcYG0h0,4638
254
286
  dlubal/api/rfem/result_objects/result_point_pb2.pyi,sha256=FR_xb8kv__Kafe3ObbAWokDmZ4KhaNdnU70DepcRWpM,5439
@@ -267,6 +299,15 @@ dlubal/api/rfem/results/settings/result_settings_pb2.pyi,sha256=zzJ4I6Bd2qIl7y0p
267
299
  dlubal/api/rfem/rsection_stresses/__init__.py,sha256=jgcbIJxyrwMWGaYj_mzGvCqnUFZuHl8EMpnuv2KEopY,40
268
300
  dlubal/api/rfem/rsection_stresses/member_configuration_pb2.py,sha256=cvDNSAbBPg19qFbROAjP50RfEDD4XE_CjfsyMAnnahg,3583
269
301
  dlubal/api/rfem/rsection_stresses/member_configuration_pb2.pyi,sha256=RKqxpbEv6d7DX6pWRY7DuGYEn5cLc44qL-EOl7rexiw,3677
302
+ dlubal/api/rfem/steel_design/__init__.py,sha256=cl9HBInM_-wYAeWJ8d73hnI00MX7QF982WfKgQCO0Fo,192
303
+ dlubal/api/rfem/steel_design/steel_boundary_conditions_pb2.py,sha256=hgXzgGUaT6ZqBdG4GXM5BWmIecGq5a-hDVDU36xXaYA,10100
304
+ dlubal/api/rfem/steel_design/steel_boundary_conditions_pb2.pyi,sha256=iD2w2Kvbym3qSTbez7WJne5lzkwwFRsEcklWdhUXobY,14771
305
+ dlubal/api/rfem/steel_design/steel_effective_lengths_pb2.py,sha256=zKFCnzuACQO8uGl-BL40hGDPKRd-XDhBpAcgQdPB5Pc,30038
306
+ dlubal/api/rfem/steel_design/steel_effective_lengths_pb2.pyi,sha256=dIt7AwjgebIk24UMl5OQjkq40oDHZ-HgcCv0zRpmMN4,47484
307
+ dlubal/api/rfem/steel_design/steel_member_local_section_reduction_pb2.py,sha256=pLq34kpot8WGp9HrxBamdNLM2-0t2SS_ySqliEh61TQ,10647
308
+ dlubal/api/rfem/steel_design/steel_member_local_section_reduction_pb2.pyi,sha256=sc9-Lk2enaLueShMc77fpG1C8uTBWFlnVM6_NkrlGY4,15739
309
+ dlubal/api/rfem/steel_design/steel_member_transverse_weld_pb2.py,sha256=XlaUcnyZtgqXYT2lqp8wb7mU-USd5Wn5HN53yMR95r8,6057
310
+ dlubal/api/rfem/steel_design/steel_member_transverse_weld_pb2.pyi,sha256=6kOhx2vrtLG6w5cTjEtRqvDbwPfiJXVtlfBRbfvixTU,8262
270
311
  dlubal/api/rfem/steel_design_objects/__init__.py,sha256=3q7YlagBBzouO9f_6HdD-ymJUbVDzgX2nlFTrp4xt7g,203
271
312
  dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.py,sha256=a9iW6yZVQEFt9UEEUjBgbSfPDEQR8Jl8p8M_RZjNaZI,9376
272
313
  dlubal/api/rfem/steel_design_objects/steel_design_fr_configuration_pb2.pyi,sha256=UJYi-ETmfsDF0WeCsFQZHUM-yHqK6-oxM9FKJKu7W14,10924
@@ -316,36 +357,49 @@ dlubal/api/rfem/structure_advanced/surface_results_adjustment_pb2.pyi,sha256=HQO
316
357
  dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.py,sha256=_jU26Q0opnG7mi3jdhsyS_FWPYxCaV3wp8Alj7i0MiE,2813
317
358
  dlubal/api/rfem/structure_advanced/surfaces_contact_pb2.pyi,sha256=BTgOcu4_isEUzrEBjV_g8TZNylk9ypQUNtb1mfacNyY,2621
318
359
  dlubal/api/rfem/structure_core/__init__.py,sha256=r3Dy8PNU-btURXEzabd5-N453QZTyo_AJGeu-3jBxHU,441
319
- dlubal/api/rfem/structure_core/line_pb2.py,sha256=0quIZhs2DLw1Xt3soY_alLouxGsHdFUPVuYPIfhr2kw,32120
320
- dlubal/api/rfem/structure_core/line_pb2.pyi,sha256=wAaNjQncwRVZ1xsyTs9wj_MW_M5Ls0wD-qF4YWYUl-g,48650
360
+ dlubal/api/rfem/structure_core/line_pb2.py,sha256=Be2ppwduxz8xrLHLi_17rvsoOqaint-pxbfY04Fc9Yc,32190
361
+ dlubal/api/rfem/structure_core/line_pb2.pyi,sha256=Pkc6dEgfBBk9rEQVMASjt1thVHgnUAL_PE72tNNxHxM,48843
321
362
  dlubal/api/rfem/structure_core/line_set_pb2.py,sha256=sUlw7-jmzS7YPp5hrhN7rVB06Qu8VXNf8I7NRIp_lMs,3823
322
363
  dlubal/api/rfem/structure_core/line_set_pb2.pyi,sha256=Yer0ED3rKpN6q2BCIg3n2XkbDSVJouAX6bH7j0G3k20,4071
323
364
  dlubal/api/rfem/structure_core/material_pb2.py,sha256=YYOqcFHQJIhCj-zXrOee0LArrlg3N4i_3FKU7dZ9jgc,73863
324
365
  dlubal/api/rfem/structure_core/material_pb2.pyi,sha256=FNBAOOenOMJxbr4gQ0xQ8uKq_HT4BOqBoI0Efoe9nME,141435
325
- dlubal/api/rfem/structure_core/member_pb2.py,sha256=n5GfF3jIIcQSUP-GQ0S9tceCTk3I09g2i_IgVwHbAyw,136827
326
- dlubal/api/rfem/structure_core/member_pb2.pyi,sha256=71EdLKnXEvLxPQIPkrOqbFzQ-hznfzywaaHLXP3iQe0,306269
327
- dlubal/api/rfem/structure_core/member_representative_pb2.py,sha256=1HvdAAcUsQ1If0VMq5eqvmiduXe_N1GJ4tDMZiAN1q0,227363
328
- dlubal/api/rfem/structure_core/member_representative_pb2.pyi,sha256=qnB1ZK2vpzrIbcsg_D4N0Cd1P-pIPQOBrNTyUvCOYR8,557638
366
+ dlubal/api/rfem/structure_core/member_pb2.py,sha256=Xhcc_BkWUgTfqL-5tlbkXU2wRLzgTeIKperl6DMVZO0,138053
367
+ dlubal/api/rfem/structure_core/member_pb2.pyi,sha256=kDWUN2y0SLASh1VNfu6lS3bvKQXHmP0wQOhVNPAHWsU,308124
368
+ dlubal/api/rfem/structure_core/member_representative_pb2.py,sha256=dilJc1nl0UWpqoTGg8uFdVogegAZ2W9foOYIRR7MnBA,228634
369
+ dlubal/api/rfem/structure_core/member_representative_pb2.pyi,sha256=3nSLa7opu0zKIoK9gsI2-kfVNLtjA26niNNMjxOcB_Y,559549
329
370
  dlubal/api/rfem/structure_core/member_set_pb2.py,sha256=0wad6gg7crS7o5XVhrzFZsumqHoztPPUZUCzx25rJz4,100119
330
371
  dlubal/api/rfem/structure_core/member_set_pb2.pyi,sha256=2BpT_op0u1Ol0eMhFFPHg6it3JinBSPo6KP5uR-J91g,243583
331
- dlubal/api/rfem/structure_core/member_set_representative_pb2.py,sha256=c81Uqikg3FaydF270tzdWqnHuDkbnVErzZW9cyiHzNM,347218
332
- dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi,sha256=RGF-YAFy5SUfVcpG6Z-Y_i-DmHSIUPaXBqeMyXIoOLo,878200
372
+ dlubal/api/rfem/structure_core/member_set_representative_pb2.py,sha256=dRlctToc4_DKo9pn4ntb8hb3UUZyFoIyGbnOWNiBXdI,348724
373
+ dlubal/api/rfem/structure_core/member_set_representative_pb2.pyi,sha256=nbnuI3US31KDFSRR9bdmpsTVBeIyEWgZoizPAUwQhZo,880568
333
374
  dlubal/api/rfem/structure_core/node_pb2.py,sha256=zhx_1R8eCEO82xwosKCnU0dfKesm-rmLcYvYBiNzxVQ,9858
334
375
  dlubal/api/rfem/structure_core/node_pb2.pyi,sha256=gUuPjJWJT4oz2N6KvXltIUtc9GLsnxjU2afwnOiAqtE,13868
335
376
  dlubal/api/rfem/structure_core/opening_pb2.py,sha256=YveJMGT3fAB0q8PPZwlh9X6cq46C1KiNKGF1QuFnehc,3062
336
377
  dlubal/api/rfem/structure_core/opening_pb2.pyi,sha256=aH-R9p9d-qKYOponLnUMjxrtUFMC-48I8U5RHbRJgPc,3006
337
378
  dlubal/api/rfem/structure_core/section_pb2.py,sha256=3ndRA-XR8ML-ZQoLzUFrMXKd_LjFj75UBk3UxItq4co,89749
338
379
  dlubal/api/rfem/structure_core/section_pb2.pyi,sha256=nvlCvcKNFJb5wvWr-UJkfsYAIcX_guH6Ls9s5Ioifxw,150491
339
- dlubal/api/rfem/structure_core/solid_pb2.py,sha256=2lmln3fnOJLeH2FJ-WIVaKfVZS4iWalOsqcW36pj0EU,14658
340
- dlubal/api/rfem/structure_core/solid_pb2.pyi,sha256=ShUP19Fsi2O6L7BsWepOwJrOyzbQaEL416EC-f1575Q,23012
380
+ dlubal/api/rfem/structure_core/solid_pb2.py,sha256=YOgTxFlDRP-9u7ygHzxHpYyHdAuSWGSDQ1aFv9k4lYc,15077
381
+ dlubal/api/rfem/structure_core/solid_pb2.pyi,sha256=Shk_U7BmNxz9FNlj1ruYJIVpkhTI6arl3pl30R_lO0U,23710
341
382
  dlubal/api/rfem/structure_core/solid_set_pb2.py,sha256=EObfKrdX77pbDQ28EyuQcCnW3YeQteGMxcHjoohnarU,5899
342
383
  dlubal/api/rfem/structure_core/solid_set_pb2.pyi,sha256=DgC8F35QPqDqbjhnd1do_SI6aJX2KXkIE2m4u2YD3is,7485
343
- dlubal/api/rfem/structure_core/surface_pb2.py,sha256=68i-rjakppp0NtjOfgUPxuJ_LsP_syqdlB0-ikS5WSU,34348
344
- dlubal/api/rfem/structure_core/surface_pb2.pyi,sha256=687qRBqTi8_mS19SJiyEaQmtA1CUVE3lVF7PTInJ9PU,53527
384
+ dlubal/api/rfem/structure_core/surface_pb2.py,sha256=-L9mLA4kQf60cG0FcXoI8B0ps0IH2Pe1mrnfq19WoYY,35222
385
+ dlubal/api/rfem/structure_core/surface_pb2.pyi,sha256=TOqJZWj4_FuXSZyHKxx6kM4RlGU-AbN7MFsm1XHJ3UY,54968
345
386
  dlubal/api/rfem/structure_core/surface_set_pb2.py,sha256=iSF76AHA3MoQG8_FT9RCKNesFi4ug-rDuM61_GTB6mk,11283
346
387
  dlubal/api/rfem/structure_core/surface_set_pb2.pyi,sha256=eqNd5CDWQvU9tpq0jtzLmj8XFwe1nCMGuLk7yciakmI,16806
347
388
  dlubal/api/rfem/structure_core/thickness_pb2.py,sha256=NiVzt5GeQEWTIH8a29iES2Dy2abHa6lT2bf82OLewog,27501
348
389
  dlubal/api/rfem/structure_core/thickness_pb2.pyi,sha256=a-A5R87HguU0uqdrSvGzShpCEnrzsBwTlspqKUMIUtE,41426
390
+ dlubal/api/rfem/timber_design/__init__.py,sha256=GsOuECMUqIaNo9VnVvih49QuNRbfwNR9LEsDkTqCUUE,264
391
+ dlubal/api/rfem/timber_design/timber_effective_lengths_pb2.py,sha256=gQtvEaJfgGy5mokFr6JotSeRFFINhYQ-Nj14Pq3rwUQ,27055
392
+ dlubal/api/rfem/timber_design/timber_effective_lengths_pb2.pyi,sha256=otc2gTRuBjN8l_AgZXu4o9i29sJHbLvmADy32_E4Sns,42215
393
+ dlubal/api/rfem/timber_design/timber_member_local_section_reduction_pb2.py,sha256=vurCxERM-kyeu4HzoglqwA01rEkiU08P8rIHExt2p7I,7240
394
+ dlubal/api/rfem/timber_design/timber_member_local_section_reduction_pb2.pyi,sha256=Ue2srHfbikPO7HpMozu24_bsxYwiig6IF6r2_pjs4v0,10030
395
+ dlubal/api/rfem/timber_design/timber_moisture_class_pb2.py,sha256=PXkyOh30KYJzvYVfE-qf6J_0ipr6_882FN6o-V22ll8,2832
396
+ dlubal/api/rfem/timber_design/timber_moisture_class_pb2.pyi,sha256=xNs0sxyR0KT-p497lJN4WBRmEemDMXwWXhYPH-LMS-A,3247
397
+ dlubal/api/rfem/timber_design/timber_screw_type_pb2.py,sha256=2Dk2afqu6C38JeaARfBZr7xHb8JeaJeFuMedhuv4srA,3776
398
+ dlubal/api/rfem/timber_design/timber_screw_type_pb2.pyi,sha256=P6IomsTLQu_Hx-pH12MV_Jx2ezOjzvefuiNiWSW_FnM,3932
399
+ dlubal/api/rfem/timber_design/timber_service_class_pb2.py,sha256=nHpPc3lZzK0hH0MqjB4tJm1ciDegPbkJKc55eHBpQ64,2812
400
+ dlubal/api/rfem/timber_design/timber_service_class_pb2.pyi,sha256=MniKmi6M_o9js9PypAslycXuq_Uj6PYzmpeQxACkvYs,3213
401
+ dlubal/api/rfem/timber_design/timber_service_conditions_pb2.py,sha256=2hHKWyqsfjfevIi4nrPYaSDneY1KFZoZx_v21yysyLE,5743
402
+ dlubal/api/rfem/timber_design/timber_service_conditions_pb2.pyi,sha256=IXfVLEglH0lHtF-wk8fZYodXIWmR9MGEL6Zy4b_4oko,8935
349
403
  dlubal/api/rfem/timber_design_objects/__init__.py,sha256=Llu9wxDagYh6txb6JORuz0xySzXSOe2W8uHmt5B_HRY,152
350
404
  dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.py,sha256=D79NCNzZupK2r2wLaVuIPbeTavXZfSMMZrQ_PLCdfHc,31923
351
405
  dlubal/api/rfem/timber_design_objects/timber_design_fr_configuration_pb2.pyi,sha256=wBDsyD8P8bKmR0SEa7P_3ZSwXdmJXP5tHORPiOppuJM,38757
@@ -353,37 +407,11 @@ dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.py,sha
353
407
  dlubal/api/rfem/timber_design_objects/timber_design_sls_configuration_pb2.pyi,sha256=4QuMlrMEqSEk8n5OULF9XYa5n6i8_rvVJc2-JGFlGBs,38890
354
408
  dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.py,sha256=PEujZ-yX1jXvsB4qrIt1XoZjo5puDuOeOPzWIWs02eQ,45718
355
409
  dlubal/api/rfem/timber_design_objects/timber_design_uls_configuration_pb2.pyi,sha256=9bn_tTALGV6IShyt9q29JcL50hlEkWHSBEIU-6YQAA4,56066
356
- dlubal/api/rfem/types_for_aluminum_design/__init__.py,sha256=mBNo59ISHcQjFvFfApBtsY_s5is8-qDCA_h3kG0yHP0,204
357
- dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py,sha256=V11jwr6rUzb2RLFSESQ5gXdc2vpCa84HzasuKA8PUQQ,10336
358
- dlubal/api/rfem/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi,sha256=ffKavXpgRvcYw6Svh3Bc9FCIMMsjF6734OH_zzFH6zY,14906
359
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.py,sha256=L-L3K_6ysX1KG4uHfsYLfxEwBJpPjfcLpCteXwoLX6A,22137
360
- dlubal/api/rfem/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi,sha256=YF_SBwHgYooYEIDLyk6SfoH7zMqycUv1L8cR4LUw2-o,32855
361
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py,sha256=c2LmAXqsASY-P6PzWQg5wjabqZdwJNrXVqVBVAp8YVo,10842
362
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi,sha256=pwEGI-3z48BLpn9ZsJDv9YRdxyhDqWI5NIn5a7UTzKk,15808
363
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py,sha256=JpvryH0H5uczxOKYmc81ycWwXAs4eMG-k2tZs4gL3u8,6271
364
- dlubal/api/rfem/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi,sha256=vNduLXZowg-NcJTYFpxBfTbPK61K8WonXJu1E23z35o,8373
365
- dlubal/api/rfem/types_for_concrete_design/__init__.py,sha256=0hi4aeOCN5916iLDttoay8WXrJXMPykKldycRejxF-M,211
366
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.py,sha256=BTncjDvViDL5VZkxpoG4knxv7Y9CxO4UEK37WCnnGc4,15173
367
- dlubal/api/rfem/types_for_concrete_design/concrete_durability_pb2.pyi,sha256=PPjSQ8pNrf1UKofUVwWCUydG0YKv2azM4FhDMI0izLE,24525
368
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.py,sha256=TY5W0-hkN8fOFMK04o_yItGZvRqO2ehuiH8f4x3r9_w,29092
369
- dlubal/api/rfem/types_for_concrete_design/concrete_effective_lengths_pb2.pyi,sha256=23RqWDPiWX_FWgPzMJFJGgdPgXkYONUxJFv32-HJRwQ,44973
370
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.py,sha256=cFxA2C5lUZZfyKlZ727C_QkJXf37EDnsVa29e83d83E,17605
371
- dlubal/api/rfem/types_for_concrete_design/punching_reinforcement_pb2.pyi,sha256=pAvMdS8XPl_x4by9lgSs36tBGcgVvyu-fH48ouMiSTI,31160
372
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.py,sha256=Fx4T0NAyEmqbp62viOnddGPSeK1S4XvXiNKAA27oRko,3402
373
- dlubal/api/rfem/types_for_concrete_design/reinforcement_direction_pb2.pyi,sha256=exaStZ93C0_Yp0_Z3RU3YzViYWZBdLqRoJwoFLTWOW4,3555
374
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.py,sha256=NR-I1U2Z7-UdzenfqxznWp-3QFJ9yNQMQGQwjMnobb4,31132
375
- dlubal/api/rfem/types_for_concrete_design/surface_reinforcement_pb2.pyi,sha256=lorkEEQ_oTAffgkohCbyznC-l9X373MwhPjC-mm3TsA,65464
376
410
  dlubal/api/rfem/types_for_craneway_design/__init__.py,sha256=BgbDUd4dQBwYV_rb-0OH26nnO7ffsRwkuC7Ij_aDTD0,53
377
411
  dlubal/api/rfem/types_for_craneway_design/crane_pb2.py,sha256=S-YCVXxDBY-SU1UMKLJwNCU4BJdd8reX8rTAPQ9BPKQ,2025
378
412
  dlubal/api/rfem/types_for_craneway_design/crane_pb2.pyi,sha256=qCzKq70sFCPimnFDsFeQeGUGwcsVDg_cZtpVJp0RL7k,1369
379
413
  dlubal/api/rfem/types_for_craneway_design/craneway_pb2.py,sha256=r6NwuYu-vsYc4-IBie6UOIJp5gY_Ux0kMNfMDemCSgc,6545
380
414
  dlubal/api/rfem/types_for_craneway_design/craneway_pb2.pyi,sha256=djberqyCkVMcNTQtVIzODMsyBIB5XfclyYJG_u4C_cc,8227
381
- dlubal/api/rfem/types_for_foundations/__init__.py,sha256=yrN7yeKbeJ-xho7pZsDb1PNgiJYKF56OYFvHeFXFt5c,37
382
- dlubal/api/rfem/types_for_foundations/single_foundation_pb2.py,sha256=4LjC51YTKANIdxUlRt60s6EqaTqcx6COlYi9C5dCrEg,19068
383
- dlubal/api/rfem/types_for_foundations/single_foundation_pb2.pyi,sha256=8IMz1D3Su8YQ9F4Te9l8vMl66rgFuXZyjkpTxAng6Rg,26606
384
- dlubal/api/rfem/types_for_glass_design/__init__.py,sha256=3D2xfVYSR6DMtTZnfoP7tT7Pnz4pqCjoNHT1zdvqPgg,43
385
- dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.py,sha256=WTVnoAuqdcuUCfZhzgDCK6pP_T7fMQJP560K2k1_nGM,24901
386
- dlubal/api/rfem/types_for_glass_design/glass_composition_model_pb2.pyi,sha256=q78tIYbId3aVF62yK51e1wX2pDpSKi6bQYj5LJOgUPs,35102
387
415
  dlubal/api/rfem/types_for_lines/__init__.py,sha256=RTlBdP6Mkke77od37-HISEIrIOEFhOOM0--72RgJEMQ,208
388
416
  dlubal/api/rfem/types_for_lines/cutting_line_setting_pb2.py,sha256=czW0OY1-uutNXORQdO2p2d3uQRlRE6rV7jTlIzoyQwI,2358
389
417
  dlubal/api/rfem/types_for_lines/cutting_line_setting_pb2.pyi,sha256=MQjp-QcIRa6k6ucLfdV0XG-dWoBfOyR6kKYRiUNk1FY,1631
@@ -393,8 +421,8 @@ dlubal/api/rfem/types_for_lines/line_link_pb2.py,sha256=71mSjEO-mavsDD88H7fU9h5O
393
421
  dlubal/api/rfem/types_for_lines/line_link_pb2.pyi,sha256=JRcLpz74bm4d9REoaItSG4zC-BB2gcp4YSl-HnkGDII,4399
394
422
  dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.py,sha256=GgVjGPW48pVuIBHdTPsp0JPRTkUs2COJQCjqkPxVTI4,2997
395
423
  dlubal/api/rfem/types_for_lines/line_mesh_refinement_pb2.pyi,sha256=74qHwMCAHwyznc83S6hx88UCHzmKtEF5semF5d2P3Zg,2887
396
- dlubal/api/rfem/types_for_lines/line_support_pb2.py,sha256=CboWi_afPa6e7fbivNVyvqLbVtiDUwTYzJPqAfDYeyk,57962
397
- dlubal/api/rfem/types_for_lines/line_support_pb2.pyi,sha256=3nUryUBTPL7JiBZD3Bqw1EDUgkgVq3wUvleEd92n_0E,97896
424
+ dlubal/api/rfem/types_for_lines/line_support_pb2.py,sha256=sAfiPEfWeB8h0X6nFaeGwWm4hZjvqD99uOCJh1_ozbY,57962
425
+ dlubal/api/rfem/types_for_lines/line_support_pb2.pyi,sha256=G-1GCgJVCrPiXm1VM3unLwhLM0Iw04OdQB3Nm0vkzR8,97896
398
426
  dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.py,sha256=pjvilJRv_ZXqH5DY8ddtR5oPxSRVKZzQCRyK_KNGDW0,4991
399
427
  dlubal/api/rfem/types_for_lines/line_welded_joint_pb2.pyi,sha256=MCMvBb4pvT88RMw4elESio4CT7L-Ji8RwZW6BrlgRNY,6465
400
428
  dlubal/api/rfem/types_for_members/__init__.py,sha256=ivQ2MRg2wHS51SIxENjhfLEHWGF0I9fwBJyDI44_I38,559
@@ -449,15 +477,6 @@ dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.py,sha256=6TV
449
477
  dlubal/api/rfem/types_for_special_objects/surface_release_type_pb2.pyi,sha256=vzLk4NEB-ogvCjxW8C25VDymsQ3eYUb21Ftou4T82MQ,33475
450
478
  dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.py,sha256=zzf1iATGS47Q_CVxGaTqPIMTKW9-6ptPtKLcbJwcAYI,4990
451
479
  dlubal/api/rfem/types_for_special_objects/surfaces_contact_type_pb2.pyi,sha256=XlVBbU3kg7cWjszv7vNHtnYpW9P2IQa8IRCQfcf4ORY,6305
452
- dlubal/api/rfem/types_for_steel_design/__init__.py,sha256=cl9HBInM_-wYAeWJ8d73hnI00MX7QF982WfKgQCO0Fo,192
453
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.py,sha256=c7XnUHQ_GzboSE-c7pabXaGQmAcbANUmS_uxcQGprBc,10208
454
- dlubal/api/rfem/types_for_steel_design/steel_boundary_conditions_pb2.pyi,sha256=iD2w2Kvbym3qSTbez7WJne5lzkwwFRsEcklWdhUXobY,14771
455
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.py,sha256=xDQfBMw4NofSg7OHPKBZBEHmVrPHdKEBVLRKHSEU1vw,30516
456
- dlubal/api/rfem/types_for_steel_design/steel_effective_lengths_pb2.pyi,sha256=dIt7AwjgebIk24UMl5OQjkq40oDHZ-HgcCv0zRpmMN4,47484
457
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.py,sha256=Ov2uWUfV7uTBeEzoZ3wVNqVwofs8C791mxPyr8PvHRU,10751
458
- dlubal/api/rfem/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi,sha256=sc9-Lk2enaLueShMc77fpG1C8uTBWFlnVM6_NkrlGY4,15739
459
- dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.py,sha256=KwBGdOFFwvgzZv-mKdTT8OLzUftwmJBNlkaGBmgNHb4,6147
460
- dlubal/api/rfem/types_for_steel_design/steel_member_transverse_weld_pb2.pyi,sha256=6kOhx2vrtLG6w5cTjEtRqvDbwPfiJXVtlfBRbfvixTU,8262
461
480
  dlubal/api/rfem/types_for_steel_joints/__init__.py,sha256=kzj9eQu-LBPs2CorN09FJFFINszHEKt-WWgd6IPIbpU,31
462
481
  dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.py,sha256=JktELeeIhv87SDVtLYw0fUnoEMVmc1L4cLhS3E8DMUE,6914
463
482
  dlubal/api/rfem/types_for_steel_joints/steel_joint_pb2.pyi,sha256=1Ix3NSW3KDl_ZpAMZLhCdvVEdve_p6f3GMVNSRwbEIw,10215
@@ -470,23 +489,15 @@ dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.py,sha256=
470
489
  dlubal/api/rfem/types_for_surfaces/surface_stiffness_modification_pb2.pyi,sha256=ZlRFREd216bcJA_012JiyGg8C5jAvPRSAcaLhHnPKv8,10989
471
490
  dlubal/api/rfem/types_for_surfaces/surface_support_pb2.py,sha256=GKs0iF37s-VWzcEuP8YAIQsc1U72kncx7D03iiLEe1w,5097
472
491
  dlubal/api/rfem/types_for_surfaces/surface_support_pb2.pyi,sha256=CO80zuUrKOixBSw22tR_7IAxmKSXYBwHHeJK4KZmQFg,6303
473
- dlubal/api/rfem/types_for_timber_design/__init__.py,sha256=GsOuECMUqIaNo9VnVvih49QuNRbfwNR9LEsDkTqCUUE,264
474
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.py,sha256=QEEISaKyTHBnUninxQ9sdoa3Utnc3sOajU-Jj6Qbb9o,27525
475
- dlubal/api/rfem/types_for_timber_design/timber_effective_lengths_pb2.pyi,sha256=otc2gTRuBjN8l_AgZXu4o9i29sJHbLvmADy32_E4Sns,42215
476
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.py,sha256=MIYbK8lNsMXwrHcbpWM4Lturmpf7w9jyZhPayhHk-0s,7362
477
- dlubal/api/rfem/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi,sha256=Ue2srHfbikPO7HpMozu24_bsxYwiig6IF6r2_pjs4v0,10030
478
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.py,sha256=GKPBRIj91uBz9ISUczPcuPlegltbAtIMoP5i3LTjdas,2888
479
- dlubal/api/rfem/types_for_timber_design/timber_moisture_class_pb2.pyi,sha256=xNs0sxyR0KT-p497lJN4WBRmEemDMXwWXhYPH-LMS-A,3247
480
- dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.py,sha256=g44pBGPsauSjG8dUBlIZRPVXIs-qWyZRu3iJf-DvwGE,3832
481
- dlubal/api/rfem/types_for_timber_design/timber_screw_type_pb2.pyi,sha256=P6IomsTLQu_Hx-pH12MV_Jx2ezOjzvefuiNiWSW_FnM,3932
482
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.py,sha256=4_3D8jfBSmlG2pulyKC2vK4rPPDyE45Zini4RSHbw8A,2871
483
- dlubal/api/rfem/types_for_timber_design/timber_service_class_pb2.pyi,sha256=MniKmi6M_o9js9PypAslycXuq_Uj6PYzmpeQxACkvYs,3213
484
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.py,sha256=iKuGm8uj2rHnEUxqrEZAakVo-qnZ_4bcjm5uf_2D_d0,5828
485
- dlubal/api/rfem/types_for_timber_design/timber_service_conditions_pb2.pyi,sha256=IXfVLEglH0lHtF-wk8fZYodXIWmR9MGEL6Zy4b_4oko,8935
492
+ dlubal/api/rfem/types_for_wind_simulation/__init__.py,sha256=9oKCU05O-8GXZld25cp1G-7OuGe7LlSV5_UVJ3XQpDo,81
493
+ dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.py,sha256=H-H7sXfOUKh6KnxQmdJknMsjjPwWgpJfDe_VAn8mlAg,4682
494
+ dlubal/api/rfem/types_for_wind_simulation/roughness_and_permeability_pb2.pyi,sha256=OeZ_KxHDwH76c-aZZqIBF6VF_-iSIiDpNX7kfN4yQO8,7489
495
+ dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.py,sha256=51__yHdSBY1QNRGHObl8GKtr8cwmb7ORcwojEhp_ecw,3814
496
+ dlubal/api/rfem/types_for_wind_simulation/shrink_wrapping_pb2.pyi,sha256=O9nZPVEC166gVOuyRkIbzd_9Ftjhhyo9qjGg32UM4so,4599
486
497
  dlubal/api/rsection/__init__.py,sha256=Lujd4QT9kAQ-HVXC4Y3T3CZatp33WEbhGvukfxb6OXU,398
487
498
  dlubal/api/rsection/all_pb2.py,sha256=1EHWU6KY8EZu5iqIPC3Ucv0L0PzOJw36kE43aISosT8,1329
488
499
  dlubal/api/rsection/all_pb2.pyi,sha256=B9MEtgw7rc3XQscf2aooQmcxZBvPRFLdNUDa71rSf5I,277
489
- dlubal/api/rsection/application.py,sha256=aFM6HMSz0LvessuW5OOD1HEpoOckoNOeSfwmPrhw0fY,21109
500
+ dlubal/api/rsection/application.py,sha256=kaW-1gq51Xozo4mH1V-T9BBq6x4nNupehi1ACY1jXEU,21621
490
501
  dlubal/api/rsection/application_pb2.py,sha256=pvP7lgH8v9sMemWjdaLKfA6DqsBPITSoQfprWMqXWl8,6392
491
502
  dlubal/api/rsection/application_pb2.pyi,sha256=SkFlJ61g90yfYWpzIsI63dzdgMYtphGJ-E04k-NRM5E,2100
492
503
  dlubal/api/rsection/application_pb2_grpc.py,sha256=FeKn0onibOllzRlyddoDJRWvsmlO_eLmkrBvrEq5r6g,57630
@@ -563,35 +574,44 @@ dlubal/api/rsection/structure_core/subpanel_pb2.py,sha256=-E64Ft3MbWjLUVpSaZDK-g
563
574
  dlubal/api/rsection/structure_core/subpanel_pb2.pyi,sha256=iRBg8VSZJMN1n8BQ_CepDuIFGm8CIVNjHjgFkzcZ2FM,2879
564
575
  dlubal/api/rsection/structure_core/weld_pb2.py,sha256=fh5l5UTqXZ5nbmsJ8VoT8ZROhy70GNQ35F2o-kYOkXQ,3098
565
576
  dlubal/api/rsection/structure_core/weld_pb2.pyi,sha256=03lv5ze1_BpptEUGV_aXLWV_VSC7Z1faoWJWpCNr3OM,2972
566
- dlubal/api/rstab/__init__.py,sha256=SOuBPPD4D5-QlktL9RIf4xKBJkd1TWKDy0nYtPAx3gA,1153
577
+ dlubal/api/rstab/__init__.py,sha256=_J5AUp2P4Go9ZXxCCPBCui2xk-ajMPLOLfV5HIcny6A,1178
567
578
  dlubal/api/rstab/all_pb2.py,sha256=1kVFgbFt_r2C5ZzuOSDX2spprpejHeGT0sZ7lYq1n0c,1314
568
579
  dlubal/api/rstab/all_pb2.pyi,sha256=B9MEtgw7rc3XQscf2aooQmcxZBvPRFLdNUDa71rSf5I,277
569
- dlubal/api/rstab/application.py,sha256=0dVMX_6whkgH8l1_WSSDn9PigRz7VuGgWEt4IVhcnsg,33527
580
+ dlubal/api/rstab/application.py,sha256=cKURDfHYb5dPWV620YTo_errgsunuFfC6PwHa7Xkgio,33515
570
581
  dlubal/api/rstab/application_pb2.py,sha256=0ij5Hcje-ROeZdaQPbJBVJlmg6NIeMXS77RjbkBFKd8,11790
571
582
  dlubal/api/rstab/application_pb2.pyi,sha256=m1azuCrizRMPHWoutaRqo2ow4vd8NbxXB6Csu8PMP-o,7066
572
583
  dlubal/api/rstab/application_pb2_grpc.py,sha256=Stc-3Wjk-MlrpXsODl3lwTDX6WPrXpHv9Zg0KrDzlLo,77568
573
- dlubal/api/rstab/base_data_pb2.py,sha256=x5EAzwN3GL06HbMM6dP-VNmszUr2DRp6jyzVcNTVZRQ,86275
574
- dlubal/api/rstab/base_data_pb2.pyi,sha256=jbcTBGfBP6hUSVlH9khLm4ZfkH4cTsDmb0mLpAfdw24,239529
584
+ dlubal/api/rstab/base_data_pb2.py,sha256=TEo_q73ADkSt_qoURdiqnmX1QRPEZGnxDro4OMl6HEw,86516
585
+ dlubal/api/rstab/base_data_pb2.pyi,sha256=66Pc9iXogkL7HGHevI5EECmu7bMPRCzTHWc-YSpGAJE,240140
575
586
  dlubal/api/rstab/design_addons_pb2.py,sha256=tZBnHM-LvgMP2pTCHVwUBDamwIaw7tIvaJvVJwHsnsI,1662
576
587
  dlubal/api/rstab/design_addons_pb2.pyi,sha256=xDbZQJ9IFR1mR5Yj19gzCNGbZsO5p0de5AgS2SF-ezM,860
577
588
  dlubal/api/rstab/dynamic_analysis_pb2.py,sha256=3Ps3s7FQbspihw9fGYnm6vexL8f_QPRV_ne8GZzpiLE,2009
578
589
  dlubal/api/rstab/dynamic_analysis_pb2.pyi,sha256=qhnZ5ZC-ZuaXxMGz-KRHjx6_MAN1koj_wjHjsYeBL30,1167
579
590
  dlubal/api/rstab/object_id_pb2.py,sha256=SeyB_VMbjG-X81P11v10Y5hF6ZKeAJrSebXNnGqYybY,1995
580
591
  dlubal/api/rstab/object_id_pb2.pyi,sha256=3UiIXyr3QWGp8zlvEHaVXxYuaZuUb-N5BdgL55RXoxM,1363
581
- dlubal/api/rstab/object_type_pb2.py,sha256=LDP-8llb0edRK_ZC6riKcsvIlLNxLpJMkgTVrJRV46s,7544
582
- dlubal/api/rstab/object_type_pb2.pyi,sha256=kGmmxMLOC9epX76TuejPNc8oUBM_FZEFU-xBDu2x4Kg,12903
592
+ dlubal/api/rstab/object_type_pb2.py,sha256=m8DQScRqN4Q5qD5PHJD3RPUjI5zLW2Yd3VRaamVnRVM,7738
593
+ dlubal/api/rstab/object_type_pb2.pyi,sha256=Tek9TczCuiwoBML8xrYIcKvM8jYZ5Ycu9YSM1D47FgE,13311
594
+ dlubal/api/rstab/aluminum_design/__init__.py,sha256=mBNo59ISHcQjFvFfApBtsY_s5is8-qDCA_h3kG0yHP0,204
595
+ dlubal/api/rstab/aluminum_design/aluminum_boundary_conditions_pb2.py,sha256=fTWsRqbduJthuoobIcnUXG_3-QK3vP_KgziDx80b6XY,10135
596
+ dlubal/api/rstab/aluminum_design/aluminum_boundary_conditions_pb2.pyi,sha256=rzSwV2OgzDly5ss619fRk0YD9QAYtT_g1uJTn-9HYC8,14568
597
+ dlubal/api/rstab/aluminum_design/aluminum_effective_lengths_pb2.py,sha256=s1wroXjnDF8IkzKqOieIUHNCuZv_IjVGVd_4Oip58Ok,21786
598
+ dlubal/api/rstab/aluminum_design/aluminum_effective_lengths_pb2.pyi,sha256=8m8e5hbyA0NymdPCZLww8q9aZljkRbA23TENlI9nVuA,32856
599
+ dlubal/api/rstab/aluminum_design/aluminum_member_local_section_reduction_pb2.py,sha256=76Sr7_v0A2EU38p937WbixOEnA2fbO29UzeiS7U3QR0,10669
600
+ dlubal/api/rstab/aluminum_design/aluminum_member_local_section_reduction_pb2.pyi,sha256=VfGna2T9kCEQkPk3iZW9e0_G4w4QbKIAsE2EEBRm6x8,15470
601
+ dlubal/api/rstab/aluminum_design/aluminum_member_transverse_weld_pb2.py,sha256=LwCQTdhXGIrPWeKZ4KkrKLd6wulEj6rVphTIIwmlZKw,6078
602
+ dlubal/api/rstab/aluminum_design/aluminum_member_transverse_weld_pb2.pyi,sha256=aljnoBt0jfWgocl3P6IlEJ9Bq8DBzAKfbymUQFBMPQk,8035
583
603
  dlubal/api/rstab/aluminum_design_objects/__init__.py,sha256=6e4pV4SgsJre2SVFo2z5y63iFiyfQi8-K3AKYIJAgS0,106
584
604
  dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.py,sha256=zM1CdJOILBJmr1Dx_BzR64FfOHW519mZRG6dtrEHHTc,16427
585
605
  dlubal/api/rstab/aluminum_design_objects/aluminum_design_sls_configuration_pb2.pyi,sha256=ZB4n-2qNCYy_qlMXtvn-oepoOqy-hzcozoY2a0HNkp4,19348
586
606
  dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.py,sha256=m4AXbfWwQVeWdAlv9N_oTyAkgK2MK8IsqAGrFD92TYc,16427
587
607
  dlubal/api/rstab/aluminum_design_objects/aluminum_design_uls_configuration_pb2.pyi,sha256=Svdj6NcVoPM7Q4Z2RS35IbMUO1GR6zCns0WLReyCJiY,19348
588
608
  dlubal/api/rstab/base_data_objects/__init__.py,sha256=M_kTRuni5wQ6C6xoGbTlC_zRPEzh-FKzA1nh4cEpdm8,27
589
- dlubal/api/rstab/base_data_objects/terrain_pb2.py,sha256=Dlihem76G8dXaRtXnJut7FRYAvPUGF4VQxXJouI1F_Q,3749
590
- dlubal/api/rstab/base_data_objects/terrain_pb2.pyi,sha256=wkRe_mIaCo8s4VNFU4h65efwHx6kPFkKhkrTPLN6JGY,3825
609
+ dlubal/api/rstab/base_data_objects/terrain_pb2.py,sha256=83ujWEkH4AxWuNEiqwPMZdisg7Le_IFxbrRMLqwM9yQ,3871
610
+ dlubal/api/rstab/base_data_objects/terrain_pb2.pyi,sha256=bCcRsLylPb9pt4dypq-seji-OJc8BadOnYtR4P97GX0,4046
591
611
  dlubal/api/rstab/calculation_diagrams/__init__.py,sha256=r_KHQvs0QC0pmnUn08WXE4oeynafJkr9Py1S3gWVxUk,39
592
612
  dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.py,sha256=COxE38Sh1-lDJ1UEh7k89a7QBqrg620kNnC3sjeAS2Q,73920
593
613
  dlubal/api/rstab/calculation_diagrams/calculation_diagram_pb2.pyi,sha256=oxftw9R72gvckIuYdO3Gwig9HchjCmrCJbDyThMMBXA,194158
594
- dlubal/api/rstab/concrete_design_objects/__init__.py,sha256=oCfErup27UzO3i_3OvryDWVA3DNXf0lhgNe10EzvFiA,215
614
+ dlubal/api/rstab/concrete_design_objects/__init__.py,sha256=Z_rCBpTlyK6kXZY6k_mTOrDtLcqYy0zsFnSgG0DajJw,261
595
615
  dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.py,sha256=XyH30LOB81FlzXrQf07deTic5G4IKQrpR4fJ32qHPdM,22932
596
616
  dlubal/api/rstab/concrete_design_objects/concrete_design_fr_configuration_pb2.pyi,sha256=CNIc-l2mxKPwi6ZvWNanILgcKuXvYyNtdHJiXnb2ApQ,28010
597
617
  dlubal/api/rstab/concrete_design_objects/concrete_design_seismic_configuration_pb2.py,sha256=2mayHpyiiyEKL8hJC7C-yzE24d9lFzpx3lJvzdYdq6Y,10835
@@ -600,6 +620,17 @@ dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.p
600
620
  dlubal/api/rstab/concrete_design_objects/concrete_design_sls_configuration_pb2.pyi,sha256=PGYK-PfyyZoyFVeeZ3U3CFrz9qINWJka15wxKA6wmbs,13559
601
621
  dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.py,sha256=CVpFCo5MpuiKyK7pGxO9ioA3YYvUhNYNM-ic7Gwqu6c,27951
602
622
  dlubal/api/rstab/concrete_design_objects/concrete_design_uls_configuration_pb2.pyi,sha256=t1Xh5_N_4b9yeSl_aPNNlqhGQREmnEWXGS6a5lFTvI8,33575
623
+ dlubal/api/rstab/concrete_design_objects/concrete_effective_lengths_pb2.py,sha256=mmdj219nqGAJZejZyNFS8FA2D_o43ZTppSRn0r7yj5Q,29035
624
+ dlubal/api/rstab/concrete_design_objects/concrete_effective_lengths_pb2.pyi,sha256=pONM0Qw-DNBrgRM_s0Xqka0Zl92yHMOFn7sLbo4cfjI,44974
625
+ dlubal/api/rstab/concrete_foundations/__init__.py,sha256=yrN7yeKbeJ-xho7pZsDb1PNgiJYKF56OYFvHeFXFt5c,37
626
+ dlubal/api/rstab/concrete_foundations/single_foundation_pb2.py,sha256=1bOEwm-yuD0TTTBVm9Lc-t20qoULVRw1GJ9yWm0cQpY,19010
627
+ dlubal/api/rstab/concrete_foundations/single_foundation_pb2.pyi,sha256=SYK58sqmr-cNCetac3pf5zsrCf6h-JQAZ8S30ljs69U,26421
628
+ dlubal/api/rstab/digital_twins/__init__.py,sha256=NJVUHO7P0ImhwFt7x65kjWCNd9pmA8IUxff3Ad6rLP8,28
629
+ dlubal/api/rstab/digital_twins/digital_twins/__init__.py,sha256=RqrMJLPjdGv8l01Hmtoh_iJmgrQQv3ow95gmm9tYLLw,69
630
+ dlubal/api/rstab/digital_twins/digital_twins/sensor_pb2.py,sha256=TKa6rXphmo2ya3K8mBPKFAoZfRivLlytimLQf7rESes,6177
631
+ dlubal/api/rstab/digital_twins/digital_twins/sensor_pb2.pyi,sha256=KA2wRjggyhG4Y7v78CSPH3ewyRDSL2kwXsuvOUDIAT0,7016
632
+ dlubal/api/rstab/digital_twins/digital_twins/sensor_value_definition_pb2.py,sha256=OjIs5xjKRM3_p-f-qURHhZ_PBxbgmAnxffs1Zr9nKdA,5538
633
+ dlubal/api/rstab/digital_twins/digital_twins/sensor_value_definition_pb2.pyi,sha256=1BTRIjAgmZeo3oD6FifaALnzZcMmkFCZIX7_6URYjSo,6647
603
634
  dlubal/api/rstab/dynamic_loads/__init__.py,sha256=NTB2H5xkEYsnOkv3EbYXHHCIEQRm7kbiEeLI0gYzEyg,101
604
635
  dlubal/api/rstab/dynamic_loads/accelerogram_pb2.py,sha256=EVEsbdt6TQ46rFQa2eQasDyvhEFTPIz6aLHF30Kdef0,4299
605
636
  dlubal/api/rstab/dynamic_loads/accelerogram_pb2.pyi,sha256=6CkobQjULTiaDXoUjQJsPn3hhbak7j-wVsnFM8cuaRU,4507
@@ -644,11 +675,11 @@ dlubal/api/rstab/guide_objects/object_snap_pb2.py,sha256=tog9na1nTno_RKphIexWE8M
644
675
  dlubal/api/rstab/guide_objects/object_snap_pb2.pyi,sha256=Zugpx0xj4KHrX8c_A-tXYFeQpSBFTJSdYRt2jhg58jY,5780
645
676
  dlubal/api/rstab/guide_objects/texture_pb2.py,sha256=aWR-5LiSmLNwjKIIeV6ZFc0fDBky8bsKAAoPiRqDe1Y,2875
646
677
  dlubal/api/rstab/guide_objects/texture_pb2.pyi,sha256=xMzvRT-SQmEB8us3A0JDiAP3oOaZ0wGKTjf9yZCXrrk,2532
647
- dlubal/api/rstab/guide_objects/visual_object_pb2.py,sha256=3624L_F7q1v3XzAcaGwUyqnJfLF3OQqnjujlaX7DP-A,6099
648
- dlubal/api/rstab/guide_objects/visual_object_pb2.pyi,sha256=8g2I7-uwnnyTc5ca5BYBWccs3ogmflKTBaa4JWQ1p3o,8479
678
+ dlubal/api/rstab/guide_objects/visual_object_pb2.py,sha256=Scta5ACEi93HxLjHToRu2Yb-aRmc4Ebfwu5WWx2npMg,6528
679
+ dlubal/api/rstab/guide_objects/visual_object_pb2.pyi,sha256=kQSyGWiZJbZn17314nvZIKmwgDVJubVWe3kkQwrNoeA,9177
649
680
  dlubal/api/rstab/ifc_objects/__init__.py,sha256=zbixdD5bVs6McKbXMlp3ssV9GDmQftK53h3oAHhaAbk,77
650
- dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.py,sha256=8U4yhiRw6aLo47ts74T9O5V4aQtZLbBMi64tQBNBjAw,4900
651
- dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.pyi,sha256=8rDBspQyOllRlN8uYcOp74pJyiNx-784mTyQ0rT76hE,5942
681
+ dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.py,sha256=tkhUGiXxlY_o0ayV2e0y8U_C63tL9_Ml0eYRAD1nxFs,5418
682
+ dlubal/api/rstab/ifc_objects/ifc_file_model_object_pb2.pyi,sha256=X-6HuCi5RMQ_Nb_2L03IyIAMpkM9W4j9xiUnfGyCLjw,6832
652
683
  dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.py,sha256=k8st9MPaGaxDWzC5mS-dcEjVI5yKxYn1FX461kwL9dY,2256
653
684
  dlubal/api/rstab/ifc_objects/ifc_model_object_pb2.pyi,sha256=2WXd6cQmviVKxmiXsKCzIUNZkMse_7kW_0KATPsNDJA,1619
654
685
  dlubal/api/rstab/imperfections/__init__.py,sha256=GT2pw9koN38ojx4x48h3B73RKOm1i3t0AyeQj1Jrwfw,119
@@ -680,8 +711,8 @@ dlubal/api/rstab/loading/action_pb2.py,sha256=QzMwJzbK7GvgUlrXnePzZC-gsUrptl3HZh
680
711
  dlubal/api/rstab/loading/action_pb2.pyi,sha256=LAJ80WryLAuKYa3Xii8jts-CfuP6rFOrM_NY-fvbCn4,62887
681
712
  dlubal/api/rstab/loading/combination_wizard_pb2.py,sha256=iEQxXY4lUGwWuIcr5FKWE7rxw5rKIB1PjgTws2FVQnU,6966
682
713
  dlubal/api/rstab/loading/combination_wizard_pb2.pyi,sha256=O2rXqzRgdNYDeSM6rRqxvxUVOSdapqDCdcamHAEUAPM,8963
683
- dlubal/api/rstab/loading/design_situation_pb2.py,sha256=WexGIC73Vo2kNCSUX7_frREyW4RlKpj8X30MyVTjDdM,42745
684
- dlubal/api/rstab/loading/design_situation_pb2.pyi,sha256=tVD0zJf1aVILL0mp9LdoRWbO7tXmWvcJB1SMj4XlTe0,113070
714
+ dlubal/api/rstab/loading/design_situation_pb2.py,sha256=ZOpkYEYwdpeyjncimU1KU_rOtRYYy5X10LrzcBWc8dY,44214
715
+ dlubal/api/rstab/loading/design_situation_pb2.pyi,sha256=e9P-MLtWJgIlH8XtYp3mTIFKxB9OleY1cKYtWziWKJ0,115195
685
716
  dlubal/api/rstab/loading/load_case_pb2.py,sha256=Mq3G9vgTG0plRarHuCuqNt6ruIlsL9rRsW7tVLqb2ZY,68150
686
717
  dlubal/api/rstab/loading/load_case_pb2.pyi,sha256=y4pNYH9R-ObSLq0Sqeyt3kyNVbuGq8yGefIG_NvIzKU,134249
687
718
  dlubal/api/rstab/loading/load_combination_pb2.py,sha256=M19M-XRkKzhw22knZcEofl9s9BZoxJmmxelnkuLRhfw,17601
@@ -711,12 +742,15 @@ dlubal/api/rstab/loads/additional_foundation_load_pb2.py,sha256=iXZYdfi8f27n9w8r
711
742
  dlubal/api/rstab/loads/additional_foundation_load_pb2.pyi,sha256=daoMj8JtHqgFVOuMPVbUdaAyFGhCy_XBgh7OOMmMGNA,5316
712
743
  dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.py,sha256=IpDBL_jdsMRWrZgqKJCT5UfWoQKmph098SqSZODamlU,3101
713
744
  dlubal/api/rstab/loads/imposed_nodal_deformation_pb2.pyi,sha256=f1UgMDN6dFL6ugZ2NxYbsGjJc4uQsNjsfWyzamREagk,2892
714
- dlubal/api/rstab/loads/member_load_pb2.py,sha256=1rDWiPEcEdFmil68vK3zHamH4x-2xMf-G7jvum2B7-I,23690
715
- dlubal/api/rstab/loads/member_load_pb2.pyi,sha256=MFv0GJxvWr3U5q7ukh--OjrXy9tqeIJ_D8aAsbw_fI8,39975
716
- dlubal/api/rstab/loads/member_set_load_pb2.py,sha256=jvGg7a8jueV4rNcEYKJgRRp90u_Ll9d56kxpnQ_KvoU,23799
717
- dlubal/api/rstab/loads/member_set_load_pb2.pyi,sha256=Hih9GhaxvtgKfUXdhvUeghODJssGBsO0AbSSq-0NVek,40559
745
+ dlubal/api/rstab/loads/member_load_pb2.py,sha256=8kEZPx-rpmBQi03zpN5UrjbQaouvarVrUULf7RcH4BE,24045
746
+ dlubal/api/rstab/loads/member_load_pb2.pyi,sha256=HNJN7gDneb3Tw791U6enhxAO46_yGnhE3nnn_UL1Ibk,40551
747
+ dlubal/api/rstab/loads/member_set_load_pb2.py,sha256=J0kWhMy79s_mGF3FL2RdXuljgIz3WC3mlT17xMi4oA8,24154
748
+ dlubal/api/rstab/loads/member_set_load_pb2.pyi,sha256=Zqkcz2osOzj0WBqZ1SCvxil-XaxN8P0UM6zq38wDr2I,41135
718
749
  dlubal/api/rstab/loads/nodal_load_pb2.py,sha256=pbQ_HDDhbpXJQXvgY4gFn62wsYKilTwxWhqxcZND-vk,10921
719
750
  dlubal/api/rstab/loads/nodal_load_pb2.pyi,sha256=NUBqKJ8FZdka-uMWWG-OGWJgdVKGP0s-LJVYqW55Xyo,16906
751
+ dlubal/api/rstab/reinforcement/__init__.py,sha256=LEM0EPojiN4EQW1JGZrXCB4JQyOw_7MdmmW9-XwBDbs,39
752
+ dlubal/api/rstab/reinforcement/concrete_durability_pb2.py,sha256=h9m3IHXIg79Q__xzzdeM92dijnH2W6-2gamRYzArXiY,14800
753
+ dlubal/api/rstab/reinforcement/concrete_durability_pb2.pyi,sha256=-pWXu8p_HGX0_qZWd1823W9huOkX9u-xvY90niudnFM,24028
720
754
  dlubal/api/rstab/results/__init__.py,sha256=vSud83-J1sb2JeIFZeCxbBM4OG3-_nG6FZFEFfGAT_0,120
721
755
  dlubal/api/rstab/results/result_table_pb2.py,sha256=Iki5NhsTCpcuczS2Zmco0ncp_Q02kh3Hpr5X5IeP8zU,21424
722
756
  dlubal/api/rstab/results/result_table_pb2.pyi,sha256=36f-qqhLQPmMWFKauk1x6bI2-Gv0tfWokOpaWYI4aRM,41406
@@ -730,6 +764,15 @@ dlubal/api/rstab/results/settings/result_settings_pb2.pyi,sha256=zzJ4I6Bd2qIl7y0
730
764
  dlubal/api/rstab/rsection_stresses/__init__.py,sha256=jgcbIJxyrwMWGaYj_mzGvCqnUFZuHl8EMpnuv2KEopY,40
731
765
  dlubal/api/rstab/rsection_stresses/member_configuration_pb2.py,sha256=3e9OMTLm07sVd6hnSbrqoK35GsivVAgsFi398VVkdCA,3599
732
766
  dlubal/api/rstab/rsection_stresses/member_configuration_pb2.pyi,sha256=RKqxpbEv6d7DX6pWRY7DuGYEn5cLc44qL-EOl7rexiw,3677
767
+ dlubal/api/rstab/steel_design/__init__.py,sha256=cl9HBInM_-wYAeWJ8d73hnI00MX7QF982WfKgQCO0Fo,192
768
+ dlubal/api/rstab/steel_design/steel_boundary_conditions_pb2.py,sha256=nl2zMtDY3myD67BSGmdFRvart_1WK0NVzclPO9gsHTo,10027
769
+ dlubal/api/rstab/steel_design/steel_boundary_conditions_pb2.pyi,sha256=cksrXgEtaCw5EUPjLOnqJNsI2F5l79UgTn5mWxWqtDM,14433
770
+ dlubal/api/rstab/steel_design/steel_effective_lengths_pb2.py,sha256=2k-s7iQ6IYIoJBOeIXj7YNNFl5ENOizPjEpjzw03qro,30088
771
+ dlubal/api/rstab/steel_design/steel_effective_lengths_pb2.pyi,sha256=v5HL3grTUunzirCYCmM2kFU8RAn6TY2aWIkbh_MFwZE,47485
772
+ dlubal/api/rstab/steel_design/steel_member_local_section_reduction_pb2.py,sha256=D6NigLY4T2-Xsi4qhYHuUEMjG87YrAaJxy7K6H9eJ3g,10576
773
+ dlubal/api/rstab/steel_design/steel_member_local_section_reduction_pb2.pyi,sha256=QH46RwX_nxgFZ8Rw-EX0JhotlCkAB4JNqvSaSLugvvc,15401
774
+ dlubal/api/rstab/steel_design/steel_member_transverse_weld_pb2.py,sha256=XjHqA6ydmvs88-FmGIxvQlbQ-vGvu4mXygpoFaIrljA,5982
775
+ dlubal/api/rstab/steel_design/steel_member_transverse_weld_pb2.pyi,sha256=9yVj7UNhI6hcADGgmbh_fpYhWzVcI2Qez_YHIRs03Us,7924
733
776
  dlubal/api/rstab/steel_design_objects/__init__.py,sha256=3q7YlagBBzouO9f_6HdD-ymJUbVDzgX2nlFTrp4xt7g,203
734
777
  dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.py,sha256=abCSOyU4sYu_3BfcH0P8mQZeZzV1Zbb84ZXPFbWzmiY,9051
735
778
  dlubal/api/rstab/steel_design_objects/steel_design_fr_configuration_pb2.pyi,sha256=90fyN3eQuUK-QrIVNYzhi7EGHMTCDyjG2riiTRSRrkk,10148
@@ -751,18 +794,31 @@ dlubal/api/rstab/structure_advanced/structure_modification_pb2.pyi,sha256=V7aL3f
751
794
  dlubal/api/rstab/structure_core/__init__.py,sha256=m2ZbwNditbqld92J5mhH7j9jyEl5mpOVTEIZHDxSogk,221
752
795
  dlubal/api/rstab/structure_core/material_pb2.py,sha256=IIjK9_q7BtXf2q4EMywhv0deuDVVcF_omBAtuC3FIXo,45850
753
796
  dlubal/api/rstab/structure_core/material_pb2.pyi,sha256=1LUJcHJ-QoMlD9pc6_0V30SvjzzGrLwMb0asr3E2HDQ,87867
754
- dlubal/api/rstab/structure_core/member_pb2.py,sha256=xeniKo3F8TOzET7uo4cuPR4Dm4-_nNKJ_5nD3OmbnLM,129785
755
- dlubal/api/rstab/structure_core/member_pb2.pyi,sha256=wxynvBpGeo7O5PxtnZfAWcBvytruuLSdpQksY7jOBaM,293651
756
- dlubal/api/rstab/structure_core/member_representative_pb2.py,sha256=aSu-jzaecb6T7w2sb2nodrxJ9WjMTbEXosO0mPOTKmE,220084
757
- dlubal/api/rstab/structure_core/member_representative_pb2.pyi,sha256=tMMnBKo0HezWzPRFGzQhLAQIzK50B0K6lPPIWEGtESE,543900
797
+ dlubal/api/rstab/structure_core/member_pb2.py,sha256=16kgE6hjMXbOpkiFr5K-uKEytNHRjMv5o1AEai7HD5c,131013
798
+ dlubal/api/rstab/structure_core/member_pb2.pyi,sha256=WiG-5c1CjfjGAw4pdL3G-mA55ty1BaiJHxgtMg6X-ZM,295506
799
+ dlubal/api/rstab/structure_core/member_representative_pb2.py,sha256=3pGiS7-Kf7MjNvNclBgeulHZjCw0LnBSfygjUzylEmE,221356
800
+ dlubal/api/rstab/structure_core/member_representative_pb2.pyi,sha256=XyEa1mAYWFKztDHZK8Em0on6IM7KMqyFbEEipOvkIWw,545811
758
801
  dlubal/api/rstab/structure_core/member_set_pb2.py,sha256=0A0aawmJP78CdXrXdJYDdl2hSlMeJ9jpohY0ID4ptdo,100181
759
802
  dlubal/api/rstab/structure_core/member_set_pb2.pyi,sha256=8eH8YtYE45F7M57cDZJNGGkbWjyfGHe7nOmazU3XjlI,243584
760
- dlubal/api/rstab/structure_core/member_set_representative_pb2.py,sha256=rmr7hC8Q7Ni5ilxO63pWT57yLIdMT-lc4uclt5AXg2E,341360
761
- dlubal/api/rstab/structure_core/member_set_representative_pb2.pyi,sha256=zaS6w0_hGg9gYS58uK-SFB3prpMPv0bzYlogJ5HpB_s,866546
803
+ dlubal/api/rstab/structure_core/member_set_representative_pb2.py,sha256=r4oCMnR2cUB2M_whr3WWQpKJZcJxJzFWg9KeAveETB4,342867
804
+ dlubal/api/rstab/structure_core/member_set_representative_pb2.pyi,sha256=htO24Hhn7fZCfU7f9AKz15Jps6ci6sdX-SAXeGlk6W8,868914
762
805
  dlubal/api/rstab/structure_core/node_pb2.py,sha256=oKj5RtLq3_dscNH45C0vGUIrec4AUi4Sw0mMqeZTa9g,9538
763
806
  dlubal/api/rstab/structure_core/node_pb2.pyi,sha256=hL2hIkiJn94Iljs66XajmtfCeZrSeg85kDWSG7nJk-E,13337
764
807
  dlubal/api/rstab/structure_core/section_pb2.py,sha256=BkUlNBb-5ElDC98HdlWITWUvT3mppQafCBxsXDkD_dU,89773
765
808
  dlubal/api/rstab/structure_core/section_pb2.pyi,sha256=nvlCvcKNFJb5wvWr-UJkfsYAIcX_guH6Ls9s5Ioifxw,150491
809
+ dlubal/api/rstab/timber_design/__init__.py,sha256=GsOuECMUqIaNo9VnVvih49QuNRbfwNR9LEsDkTqCUUE,264
810
+ dlubal/api/rstab/timber_design/timber_effective_lengths_pb2.py,sha256=unaxX9IofaTN8em1a-knI3evUoWprBZlsvjI9mg5g18,27108
811
+ dlubal/api/rstab/timber_design/timber_effective_lengths_pb2.pyi,sha256=mXgfnUXWv0PJPwvTJYnc5KgC0r96MWwe5Dx4SsJKPQM,42216
812
+ dlubal/api/rstab/timber_design/timber_member_local_section_reduction_pb2.py,sha256=kyrdMcfxnrK38alugVysFigNpwXYbU1TiSF9Qcl19BI,7168
813
+ dlubal/api/rstab/timber_design/timber_member_local_section_reduction_pb2.pyi,sha256=6zEJ63pUrU-aFVMTUGwZOGkRsons26YEL32cgHt2Lc4,9692
814
+ dlubal/api/rstab/timber_design/timber_moisture_class_pb2.py,sha256=hRkXnDZRvIR5-ImRyyvwMrRidKPWBgmlqFiBEcdcbHI,2676
815
+ dlubal/api/rstab/timber_design/timber_moisture_class_pb2.pyi,sha256=974TnjHN9IzXvPcmdYqEw7cMtaSsoSZ5Q_6hKFfYh7o,2575
816
+ dlubal/api/rstab/timber_design/timber_screw_type_pb2.py,sha256=OkrL28T-Ig4yny0cNWcdWlSPr_UosGP_oamneUErrUw,3782
817
+ dlubal/api/rstab/timber_design/timber_screw_type_pb2.pyi,sha256=P6IomsTLQu_Hx-pH12MV_Jx2ezOjzvefuiNiWSW_FnM,3932
818
+ dlubal/api/rstab/timber_design/timber_service_class_pb2.py,sha256=FwbFJUljLw0js3ph9rRXGfFpNWnlWa2cM85E4pf05OE,2653
819
+ dlubal/api/rstab/timber_design/timber_service_class_pb2.pyi,sha256=HW6iEmQmPgEeQuA_kFVzpN42HCH_i-R7hniGeXsXkRs,2541
820
+ dlubal/api/rstab/timber_design/timber_service_conditions_pb2.py,sha256=SkdLYaTacfnY_Aa3mk9SXZi1gn-8vicDIq5lFJURlE8,5586
821
+ dlubal/api/rstab/timber_design/timber_service_conditions_pb2.pyi,sha256=xJG5UtjSyRmkeBS9391lOjxt1ZKmXdVhV3-jITGDIlQ,8263
766
822
  dlubal/api/rstab/timber_design_objects/__init__.py,sha256=Llu9wxDagYh6txb6JORuz0xySzXSOe2W8uHmt5B_HRY,152
767
823
  dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.py,sha256=RrXm7icC6bFyTAS88BsEg_J14ETzicjWd8oIPmkbVGg,31663
768
824
  dlubal/api/rstab/timber_design_objects/timber_design_fr_configuration_pb2.pyi,sha256=cl2fHulVamTX38NQp6UH2SWDDygnG3h5FBcrqaZG7m8,37981
@@ -770,28 +826,11 @@ dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.py,sh
770
826
  dlubal/api/rstab/timber_design_objects/timber_design_sls_configuration_pb2.pyi,sha256=dLBzunP2OF3xbrUjuFXlEVI6VZRNA60af4QYTcsg9e4,38114
771
827
  dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.py,sha256=cjnoEqOI093BMuOPe7b9TFFdc548Fjic6acICaU3w0s,45537
772
828
  dlubal/api/rstab/timber_design_objects/timber_design_uls_configuration_pb2.pyi,sha256=X7jltv-43-6SeBoQQC9cazSnnZVt-tJKv82l9dotVcw,55290
773
- dlubal/api/rstab/types_for_aluminum_design/__init__.py,sha256=mBNo59ISHcQjFvFfApBtsY_s5is8-qDCA_h3kG0yHP0,204
774
- dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.py,sha256=227URzf0yYQWADi-ayC0y2mh6WudLAnZ-jbKtO9Cmk8,10265
775
- dlubal/api/rstab/types_for_aluminum_design/aluminum_boundary_conditions_pb2.pyi,sha256=rzSwV2OgzDly5ss619fRk0YD9QAYtT_g1uJTn-9HYC8,14568
776
- dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.py,sha256=JAxa00gZvSpECDVzrufbwH_FaMHP5aLfbrwEcpe6E1s,22167
777
- dlubal/api/rstab/types_for_aluminum_design/aluminum_effective_lengths_pb2.pyi,sha256=8m8e5hbyA0NymdPCZLww8q9aZljkRbA23TENlI9nVuA,32856
778
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.py,sha256=wmFgHfLRBNM6Qlnl26YbxPDZCoU1ogaeJXK2sU1RuHQ,10770
779
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_local_section_reduction_pb2.pyi,sha256=VfGna2T9kCEQkPk3iZW9e0_G4w4QbKIAsE2EEBRm6x8,15470
780
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.py,sha256=jeud_0citzDVvNHi2P5IDSp6HmmD1-10X6gTAJqsr2s,6201
781
- dlubal/api/rstab/types_for_aluminum_design/aluminum_member_transverse_weld_pb2.pyi,sha256=aljnoBt0jfWgocl3P6IlEJ9Bq8DBzAKfbymUQFBMPQk,8035
782
- dlubal/api/rstab/types_for_concrete_design/__init__.py,sha256=Lt5rNyrL8k2KHRh-SA9vSdJYL4s4qMn__SnF7JWYhj8,85
783
- dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.py,sha256=EZO-BGQI8RDi_H3ju5u9dePtHSfnOaMhDllmjcu-HZk,15075
784
- dlubal/api/rstab/types_for_concrete_design/concrete_durability_pb2.pyi,sha256=-pWXu8p_HGX0_qZWd1823W9huOkX9u-xvY90niudnFM,24028
785
- dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.py,sha256=xhABuJyInGumuShgjMVWuWiApHtqfeUnSa4nvIgROQU,29126
786
- dlubal/api/rstab/types_for_concrete_design/concrete_effective_lengths_pb2.pyi,sha256=pONM0Qw-DNBrgRM_s0Xqka0Zl92yHMOFn7sLbo4cfjI,44974
787
829
  dlubal/api/rstab/types_for_craneway_design/__init__.py,sha256=BgbDUd4dQBwYV_rb-0OH26nnO7ffsRwkuC7Ij_aDTD0,53
788
830
  dlubal/api/rstab/types_for_craneway_design/crane_pb2.py,sha256=GULc7UFY_G3NRw_xQyhBFJ5L_nUJs2whuyTWcBszHG8,2030
789
831
  dlubal/api/rstab/types_for_craneway_design/crane_pb2.pyi,sha256=qCzKq70sFCPimnFDsFeQeGUGwcsVDg_cZtpVJp0RL7k,1369
790
832
  dlubal/api/rstab/types_for_craneway_design/craneway_pb2.py,sha256=RqoLoXe7teojq_wb4eqtnBiGeXQIS-SqvaHOgAjW7h8,6555
791
833
  dlubal/api/rstab/types_for_craneway_design/craneway_pb2.pyi,sha256=djberqyCkVMcNTQtVIzODMsyBIB5XfclyYJG_u4C_cc,8227
792
- dlubal/api/rstab/types_for_foundations/__init__.py,sha256=yrN7yeKbeJ-xho7pZsDb1PNgiJYKF56OYFvHeFXFt5c,37
793
- dlubal/api/rstab/types_for_foundations/single_foundation_pb2.py,sha256=hnGJ0YbmQtBv3UKS6OHcCjaMwWXg08xhB2txgFqagYg,19048
794
- dlubal/api/rstab/types_for_foundations/single_foundation_pb2.pyi,sha256=SYK58sqmr-cNCetac3pf5zsrCf6h-JQAZ8S30ljs69U,26421
795
834
  dlubal/api/rstab/types_for_members/__init__.py,sha256=QPP1b7CKZ_aeOaJVj3RUJO59tS2rnn1RwSG-1JR6hXc,524
796
835
  dlubal/api/rstab/types_for_members/design_support_pb2.py,sha256=OB2DnuzNUNPzwQU4gAoqI3uCcGQjD3FvPlCB4B-aYFA,15280
797
836
  dlubal/api/rstab/types_for_members/design_support_pb2.pyi,sha256=-L91J1Ju_fVlFZ9CpSoS4-gQ8FmQqaCou2UghsEUOB8,23375
@@ -827,33 +866,16 @@ dlubal/api/rstab/types_for_nodes/nodal_support_pb2.pyi,sha256=tjEMSiOoz95J4kwtJu
827
866
  dlubal/api/rstab/types_for_special_objects/__init__.py,sha256=XuDbkmYDiinnN9is3WL1-O-_cV9mnxDvuesZCAnlDRM,38
828
867
  dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.py,sha256=fMTAKFoTbtjBYBGdAdsL6rfE96G8adVpycWOGyrCAas,83238
829
868
  dlubal/api/rstab/types_for_special_objects/nodal_release_type_pb2.pyi,sha256=___EVhKI4j-nhDtxfTsmgX7BEUpor0ihLrVwjX1W6so,133763
830
- dlubal/api/rstab/types_for_steel_design/__init__.py,sha256=cl9HBInM_-wYAeWJ8d73hnI00MX7QF982WfKgQCO0Fo,192
831
- dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.py,sha256=6xe871zIwasszJzSwMUe0ronXb6x4aLSEB3Wklp-xrs,10136
832
- dlubal/api/rstab/types_for_steel_design/steel_boundary_conditions_pb2.pyi,sha256=cksrXgEtaCw5EUPjLOnqJNsI2F5l79UgTn5mWxWqtDM,14433
833
- dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.py,sha256=ZF2JUlIb49jeLp-MnEYvQYMnaveQhqohan1d9WN7_aI,30570
834
- dlubal/api/rstab/types_for_steel_design/steel_effective_lengths_pb2.pyi,sha256=v5HL3grTUunzirCYCmM2kFU8RAn6TY2aWIkbh_MFwZE,47485
835
- dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.py,sha256=LSLBJjXdiq2eu2VA7DDHZ1fBc9Z_2tS3pSSvVET72WE,10681
836
- dlubal/api/rstab/types_for_steel_design/steel_member_local_section_reduction_pb2.pyi,sha256=QH46RwX_nxgFZ8Rw-EX0JhotlCkAB4JNqvSaSLugvvc,15401
837
- dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.py,sha256=koxVToIg9_i0jZHqWk19wVWgM1ByA3J7gDV_lc89I3Y,6078
838
- dlubal/api/rstab/types_for_steel_design/steel_member_transverse_weld_pb2.pyi,sha256=9yVj7UNhI6hcADGgmbh_fpYhWzVcI2Qez_YHIRs03Us,7924
839
- dlubal/api/rstab/types_for_timber_design/__init__.py,sha256=GsOuECMUqIaNo9VnVvih49QuNRbfwNR9LEsDkTqCUUE,264
840
- dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.py,sha256=pUp_E9UamBMSNQwusAqB-0XSOAQfuBcbPVtIR0-A-r8,27562
841
- dlubal/api/rstab/types_for_timber_design/timber_effective_lengths_pb2.pyi,sha256=mXgfnUXWv0PJPwvTJYnc5KgC0r96MWwe5Dx4SsJKPQM,42216
842
- dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.py,sha256=zKnZNkTms2jyxSVfkG2QB4Ab0hNdhu13X1ePfsqK7TM,7288
843
- dlubal/api/rstab/types_for_timber_design/timber_member_local_section_reduction_pb2.pyi,sha256=6zEJ63pUrU-aFVMTUGwZOGkRsons26YEL32cgHt2Lc4,9692
844
- dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.py,sha256=CjviKTvj2DImv2cuNJZ2peJDhXR6DWL_j1xjLc3kCD0,2728
845
- dlubal/api/rstab/types_for_timber_design/timber_moisture_class_pb2.pyi,sha256=974TnjHN9IzXvPcmdYqEw7cMtaSsoSZ5Q_6hKFfYh7o,2575
846
- dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.py,sha256=oMbCRT-zFjcEun_ucpBEaIz3DeHm88HwlkGA-vaZwnE,3838
847
- dlubal/api/rstab/types_for_timber_design/timber_screw_type_pb2.pyi,sha256=P6IomsTLQu_Hx-pH12MV_Jx2ezOjzvefuiNiWSW_FnM,3932
848
- dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.py,sha256=cS5UFu8RrmV0GAZ7NhvTrPrckdF1o6zCZ5D72rwZsoA,2711
849
- dlubal/api/rstab/types_for_timber_design/timber_service_class_pb2.pyi,sha256=HW6iEmQmPgEeQuA_kFVzpN42HCH_i-R7hniGeXsXkRs,2541
850
- dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.py,sha256=q_QJqkHf1gZvvr0c1azGBfn4m-N7-Q075L9nWc2TakE,5665
851
- dlubal/api/rstab/types_for_timber_design/timber_service_conditions_pb2.pyi,sha256=xJG5UtjSyRmkeBS9391lOjxt1ZKmXdVhV3-jITGDIlQ,8263
869
+ dlubal/api/rstab/types_for_wind_simulation/__init__.py,sha256=9oKCU05O-8GXZld25cp1G-7OuGe7LlSV5_UVJ3XQpDo,81
870
+ dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.py,sha256=NLHW0MtCwV5F_3q6gv2Mi5N2yNNwvwyoGARDlykgYAg,4588
871
+ dlubal/api/rstab/types_for_wind_simulation/roughness_and_permeability_pb2.pyi,sha256=LCHRq9ycnLR8PIFj597_oq-H21-lByyOQOmnm5WfJqw,7107
872
+ dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.py,sha256=J8TfhRBUz83oEVf7SLe81HztRj6DnVOvd-nQbZhwnuE,3719
873
+ dlubal/api/rstab/types_for_wind_simulation/shrink_wrapping_pb2.pyi,sha256=-ac1qpLRpbN9XpAIWA_uBVvggk5_IwFC5B8r0UqESes,4217
852
874
  examples/rfem/base_data.py,sha256=VmB7h0FuSTA_KsftEjyxBy6_ySxE6eG7seve4ke2dVM,1397
853
875
  examples/rfem/block.py,sha256=4QQserE9H5ckcDmCdyx7w7_5UhzSYEu6yrndOJH8Ph4,1063
854
876
  examples/rfem/bus_station.py,sha256=WH6gzvMU2sPTGd0MnKoVnlQNJ_kqCfbDAXfLtBIDb4Q,11562
855
877
  examples/rfem/cantilever.py,sha256=dtbZScZ4tcLDCLvGO2HWQeufxyzMzbFbKhoBtyOQBZ0,5220
856
- examples/rfem/column.py,sha256=J9uDHFXYOa7mxhoFcYr7pSqPQ_b24MH5xjKg9lKcenI,6705
878
+ examples/rfem/column.py,sha256=myxg1wCw7mKGak8hSIfkyJxp90KlLpS2e0PtwFsiMuk,6695
857
879
  examples/rfem/component_design.py,sha256=dqVazY0jjxLcattznwfU3Nc-ofDVHYKgCdKoPc8dAuk,6164
858
880
  examples/rfem/demo_limits.py,sha256=Lum5ILjSt4bTJZYclhG14_yKAT7dn4vmBR1__P3ByKc,9576
859
881
  examples/rfem/design_configuration.py,sha256=ssaaFDTWxlEHe2as0az05OsWiAtMwSkKJ9A7cd6Xqg0,2409
@@ -861,7 +883,7 @@ examples/rfem/design_settings.py,sha256=wQXLLjq8R4l-fNLGsz1CfMTeYAyKACo4nUh37mps
861
883
  examples/rfem/excel.py,sha256=wdVkiWXeQvFly3g9I2W-D8paNsC4xYH54wasmkFHkEY,2305
862
884
  examples/rfem/export_model_to.py,sha256=CUAd03rud3owaKC2aYJd0-4AuxnNUecM9D3IJkhRgRo,4430
863
885
  examples/rfem/frame.py,sha256=8RUTvcmux-o4WnMoVmNvZBBQJ0Bl9ROEvG3T9nEdNtw,9585
864
- examples/rfem/import_from_ifc.py,sha256=W_SwgBcDXTu2ofWYDuq6qvGJFez18t2OYm69CrnX__8,1922
886
+ examples/rfem/import_from_ifc.py,sha256=uio345Yx6iFWLk4zW0U7-srBdG5ghFcPgOVGwZR2I7k,1913
865
887
  examples/rfem/import_from_rsection.py,sha256=ZNdxMUZA8gjoeWRdlP9cC0_Qe3Yyra28OkXo0NOF_pU,4874
866
888
  examples/rfem/import_from_xml.py,sha256=MNblmO9Bft5rPuVfYqVqNDOhiDz-idNNqyd_jrqkAX8,913
867
889
  examples/rfem/material_user_defined.py,sha256=TTltkTOhc6UOCe1hQvu3v7mZtQKfCkWOovTVBw-K_h0,482
@@ -886,13 +908,13 @@ examples/rsection/base_data.py,sha256=oqJzANpPG_ukpAU85FURyFG6YjL-MMEWOD2ESYUFKo
886
908
  examples/rsection/steel_section.py,sha256=skTm_0DgHllbbChfGDZHoL4JrDnkcPDgIURAkIUXHKI,5075
887
909
  examples/rstab/base_data.py,sha256=1RSb9CYn-XP3IWd5RgFy4LkBbvyZM59chppkSOL6Y5I,1352
888
910
  examples/rstab/cantilever.py,sha256=i1EGNE1gHyxYfIUetB9VcBLy62wHeeEPRZC7JGXe6Tc,5142
889
- examples/rstab/column.py,sha256=MMm-NqD6rPegK9wEHSSvVqV3f4I7fcpAAirUBJQvfEM,6739
911
+ examples/rstab/column.py,sha256=Tfe6RNemwUbjQZMxGl53HxHUlGzASdJi8Py-lCXBdMg,6717
890
912
  examples/rstab/dataframe.py,sha256=6L9Fuc8Ek5QzwcWBDmMHOMCstSuxtXMFHrHW_aQj3Ow,607
891
913
  examples/rstab/design_settings.py,sha256=l4xt9Y25wdlHJRjdNJIH32wlyTu0-35zbappDRkbD_s,1239
892
914
  examples/rstab/excel.py,sha256=8N5LABld3VTuB7geovEsR1N-hB8EIKOBTbA3TQ1ZA2E,2318
893
915
  examples/rstab/export_model_to.py,sha256=3vhDO6ZeIKisLgUdK9P9e3QWCDNZdx5cei8U1ytWT88,4369
894
916
  examples/rstab/frame.py,sha256=cTzYYAsD1pIXgcW_8ZKoHvrtue9F2HhwPXBAHXiXCeA,9540
895
- examples/rstab/import_from_ifc.py,sha256=N5syzco1RX4yPZraWCsNJ8v5wFqGcvXDlqSUH3UAmU4,1369
917
+ examples/rstab/import_from_ifc.py,sha256=UKwkR0UNX_g6C-0jH3I3T14oBY4GX9K3Z2hn7gtk0OQ,1366
896
918
  examples/rstab/import_from_rsection.py,sha256=7KbVp30W7gyx-jrtzYCU06UZ5lz6Bn6U4sAtiU5Fe5Q,4801
897
919
  examples/rstab/import_from_xml.py,sha256=rfVUqIkLQpHugBLlX9IgTUVqxgNIC3owO1mOqcZlpbw,924
898
920
  examples/rstab/multiple_models.py,sha256=Na_iQim0hYGbDvU5dDQ1PAcf5XokHCrcWV727NrpJ38,39449
@@ -911,7 +933,7 @@ google/protobuf/empty_pb2.py,sha256=DMg9DR9bEU4vnR7daGsVrcp3GjCaxYMep1pFAv-GXQA,
911
933
  google/protobuf/empty_pb2.pyi,sha256=pra-Zqb8TfSmOE8R3TaET8RJKIiLuznwQb65BDvD2wI,279
912
934
  google/protobuf/wrappers_pb2.py,sha256=Ep-ZNv9reqNUau7XMJeJ7-oabILTSPGYk0TKDZkKRvM,3008
913
935
  google/protobuf/wrappers_pb2.pyi,sha256=RvxFl4kAP_pGFBEyTqaypzqaSUYpK3bbCIMb15YYujo,1918
914
- dlubal_api-2.12.1.dist-info/METADATA,sha256=IvZ4zce40EAsDsnuVS_qUrx54cjTdhxzkZzmlEtTdjE,2530
915
- dlubal_api-2.12.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
916
- dlubal_api-2.12.1.dist-info/top_level.txt,sha256=B9-9ee1pQJwtiMyeNWOcyocIngJBBMxosWGysTMYJ8c,23
917
- dlubal_api-2.12.1.dist-info/RECORD,,
936
+ dlubal_api-2.12.3.dist-info/METADATA,sha256=2sPcXugk30TQ5xp7RFs9LQTZSJzguTmfRftrMfWfkg8,2530
937
+ dlubal_api-2.12.3.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
938
+ dlubal_api-2.12.3.dist-info/top_level.txt,sha256=B9-9ee1pQJwtiMyeNWOcyocIngJBBMxosWGysTMYJ8c,23
939
+ dlubal_api-2.12.3.dist-info/RECORD,,