mocap-calibration 2.9.1__py3-none-any.whl → 2.10.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. mocap_calibration/__init__.py +4 -4
  2. mocap_calibration/axengine_1753199798_2895062657.py +246 -0
  3. mocap_calibration/calib_eval/__init__.py +4 -4
  4. mocap_calibration/calib_eval/calib_eval_with_manual_kpts.py +4 -4
  5. mocap_calibration/calibration/__init__.py +4 -4
  6. mocap_calibration/calibration/aruco/__init__.py +4 -4
  7. mocap_calibration/calibration/aruco/aruco_calib.py +4 -4
  8. mocap_calibration/calibration/aruco/main_calib_aruco.py +4 -4
  9. mocap_calibration/calibration/aruco/ppl_calib_aruco.py +4 -4
  10. mocap_calibration/calibration/aruco/quality.py +4 -4
  11. mocap_calibration/calibration/calib_obj/__init__.py +4 -4
  12. mocap_calibration/calibration/calib_obj/calibration_obj.py +4 -4
  13. mocap_calibration/calibration/calib_obj/detect_calib_obj.py +4 -4
  14. mocap_calibration/calibration/calib_obj/pair_calib_obj.py +4 -4
  15. mocap_calibration/calibration/calib_obj/tests/__init__.py +4 -4
  16. mocap_calibration/calibration/calib_obj/tests/aruco_calib.py +4 -4
  17. mocap_calibration/calibration/calib_obj/tests/calib_football_court.py +4 -4
  18. mocap_calibration/calibration/calib_obj/tests/calibration_obj_test.py +4 -4
  19. mocap_calibration/calibration/calib_obj/tests/check_aruco_with_gt.py +4 -4
  20. mocap_calibration/calibration/calib_obj/tests/detect_lines.py +4 -4
  21. mocap_calibration/calibration/calib_obj/tests/manual_calibration.py +4 -4
  22. mocap_calibration/calibration/calib_obj/tests/solvePnP.py +4 -4
  23. mocap_calibration/calibration/calib_obj/tests/vis_aruco_calib.py +4 -4
  24. mocap_calibration/calibration/calib_obj/tests/vis_manual_calib.py +4 -4
  25. mocap_calibration/calibration/calib_obj/utils.py +4 -4
  26. mocap_calibration/calibration/cam_intrinsics/__init__.py +4 -4
  27. mocap_calibration/calibration/cam_intrinsics/calc_intrinsics.py +4 -4
  28. mocap_calibration/calibration/cam_intrinsics/calc_intrinsics_app.py +4 -4
  29. mocap_calibration/calibration/cam_intrinsics/undistort_app.py +4 -4
  30. mocap_calibration/calibration/cam_intrinsics/undistort_img.py +4 -4
  31. mocap_calibration/calibration/cam_intrinsics/undistort_video.py +4 -4
  32. mocap_calibration/calibration/cam_intrinsics/undistort_videos_from_json.py +4 -4
  33. mocap_calibration/calibration/humanCalib/__init__.py +4 -4
  34. mocap_calibration/calibration/humanCalib/ba.py +4 -4
  35. mocap_calibration/calibration/humanCalib/floor_plane.py +4 -4
  36. mocap_calibration/calibration/humanCalib/human_calib.py +4 -4
  37. mocap_calibration/calibration/humanCalib/human_calib_pair.py +4 -4
  38. mocap_calibration/calibration/humanCalib/ppl_calib_human.py +4 -4
  39. mocap_calibration/calibration/humanCalib/quality.py +4 -4
  40. mocap_calibration/calibration/humanCalib/report.py +4 -4
  41. mocap_calibration/calibration/humanCalib/utils/__init__.py +4 -4
  42. mocap_calibration/calibration/humanCalib/utils/ba_utils.py +4 -4
  43. mocap_calibration/calibration/humanCalib/utils/calib_utils.py +4 -4
  44. mocap_calibration/calibration/humanCalib/utils/filtering.py +4 -4
  45. mocap_calibration/calibration/humanCalib/utils/geometry_3d.py +4 -4
  46. mocap_calibration/calibration/humanCalib/utils/refine_calib.py +4 -4
  47. mocap_calibration/calibration/interfaces/__init__.py +4 -4
  48. mocap_calibration/calibration/interfaces/calib_template.py +4 -4
  49. mocap_calibration/calibration/interfaces/pair_calib_template.py +4 -4
  50. mocap_calibration/calibration/interfaces/structures.py +4 -4
  51. mocap_calibration/calibration/tests/__init__.py +4 -4
  52. mocap_calibration/calibration/tests/bias_analysis.py +4 -4
  53. mocap_calibration/calibration/tests/calc_calib_bias.py +4 -4
  54. mocap_calibration/calibration/tests/calib_EA8K_json.py +4 -4
  55. mocap_calibration/calibration/tests/calib_covered_area.py +4 -4
  56. mocap_calibration/calibration/tests/calib_from_json.py +4 -4
  57. mocap_calibration/calibration/tests/calib_from_xml.py +4 -4
  58. mocap_calibration/calibration/tests/calib_spectrum_json.py +4 -4
  59. mocap_calibration/calibration/tests/main_calib_pair.py +4 -4
  60. mocap_calibration/calibration/tests/main_check_calib.py +4 -4
  61. mocap_calibration/calibration/tests/main_fast_calib.py +4 -4
  62. mocap_calibration/calibration/tests/main_floor_plane.py +4 -4
  63. mocap_calibration/calibration/tests/main_multi_calib.py +4 -4
  64. mocap_calibration/calibration/tests/main_recalib_with_homography.py +4 -4
  65. mocap_calibration/calibration/tests/main_recalibrate.py +4 -4
  66. mocap_calibration/calibration/tests/main_report.py +4 -4
  67. mocap_calibration/calibration/tests/main_vis_cameras.py +4 -4
  68. mocap_calibration/calibration/tests/pose_iphone.py +4 -4
  69. mocap_calibration/calibration/utils/__init__.py +4 -4
  70. mocap_calibration/calibration/utils/calib_from_metadata.py +4 -4
  71. mocap_calibration/calibration/utils/homography.py +4 -4
  72. mocap_calibration/calibration/utils/kalman_calib.py +4 -4
  73. mocap_calibration/operations/__init__.py +4 -4
  74. mocap_calibration/operations/opsCalibrate.py +4 -4
  75. mocap_calibration/operations/opsCalibrateAruco.py +4 -4
  76. mocap_calibration/operations/opsCorrectCalib.py +4 -4
  77. mocap_calibration/operations/opsReportCalib.py +4 -4
  78. mocap_calibration/operations/opsVisualization.py +4 -4
  79. {mocap_calibration-2.9.1.dist-info → mocap_calibration-2.10.0.dist-info}/METADATA +1 -1
  80. mocap_calibration-2.10.0.dist-info/RECORD +83 -0
  81. mocap_calibration/axengine_1742311351_2965502968.py +0 -246
  82. mocap_calibration-2.9.1.dist-info/RECORD +0 -83
  83. {mocap_calibration-2.9.1.dist-info → mocap_calibration-2.10.0.dist-info}/WHEEL +0 -0
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(206, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(4, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(209, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(20, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(211, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(30, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(112, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(298, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(116, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(325, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(102, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(343, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(76, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(313, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(124, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(417, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(111, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(334, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(12, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(321, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(93, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(360, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(52, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(361, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(38, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(374, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(25, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(405, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(57, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(392, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(51, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(387, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(61, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(409, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(342, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(31, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(341, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(51, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(327, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(41, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(331, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(35, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(163, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(431, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(168, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(438, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(136, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(455, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(132, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(439, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(173, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(422, globals())
@@ -2,17 +2,17 @@ import os as _os
2
2
  import sys as _sys
3
3
  _axeSearchPath = _os.path.dirname(_os.path.abspath(__file__))
4
4
  while not _os.path.exists(_os.path.join(_axeSearchPath,
5
- 'axengine_1742311351_2965502968.py')):
5
+ 'axengine_1753199798_2895062657.py')):
6
6
  _newAxeSearchPath = _os.path.normpath(_os.path.join(_axeSearchPath, '..'))
7
7
  if _newAxeSearchPath == _axeSearchPath or len(_axeSearchPath) == 0:
8
8
  break
9
9
  _axeSearchPath = _newAxeSearchPath
10
10
  try:
11
11
  _sys.path.append(_axeSearchPath)
12
- import axengine_1742311351_2965502968 as _axengine
12
+ import axengine_1753199798_2895062657 as _axengine
13
13
  except Exception as e:
14
14
  raise Exception('Failed to load AxEngine!') from e
15
15
  finally:
16
16
  _sys.path.pop()
17
- from axengine_1742311351_2965502968 import WupiError, WupiLicenseError, WupiErrorCode
18
- _axengine._axe_run(129, globals())
17
+ from axengine_1753199798_2895062657 import WupiError, WupiLicenseError, WupiErrorCode
18
+ _axengine._axe_run(451, globals())