biotite 0.39.0__cp312-cp312-macosx_11_0_arm64.whl → 0.40.0__cp312-cp312-macosx_11_0_arm64.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 biotite might be problematic. Click here for more details.

Files changed (104) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/rcsb/download.py +19 -14
  4. biotite/sequence/align/banded.c +256 -235
  5. biotite/sequence/align/banded.cpython-312-darwin.so +0 -0
  6. biotite/sequence/align/kmeralphabet.c +241 -220
  7. biotite/sequence/align/kmeralphabet.cpython-312-darwin.so +0 -0
  8. biotite/sequence/align/kmersimilarity.c +213 -194
  9. biotite/sequence/align/kmersimilarity.cpython-312-darwin.so +0 -0
  10. biotite/sequence/align/kmertable.cpp +231 -203
  11. biotite/sequence/align/kmertable.cpython-312-darwin.so +0 -0
  12. biotite/sequence/align/localgapped.c +256 -235
  13. biotite/sequence/align/localgapped.cpython-312-darwin.so +0 -0
  14. biotite/sequence/align/localungapped.c +233 -212
  15. biotite/sequence/align/localungapped.cpython-312-darwin.so +0 -0
  16. biotite/sequence/align/multiple.c +253 -232
  17. biotite/sequence/align/multiple.cpython-312-darwin.so +0 -0
  18. biotite/sequence/align/pairwise.c +272 -251
  19. biotite/sequence/align/pairwise.cpython-312-darwin.so +0 -0
  20. biotite/sequence/align/permutation.c +213 -194
  21. biotite/sequence/align/permutation.cpython-312-darwin.so +0 -0
  22. biotite/sequence/align/selector.c +215 -195
  23. biotite/sequence/align/selector.cpython-312-darwin.so +0 -0
  24. biotite/sequence/align/tracetable.c +213 -193
  25. biotite/sequence/align/tracetable.cpython-312-darwin.so +0 -0
  26. biotite/sequence/codec.c +233 -212
  27. biotite/sequence/codec.cpython-312-darwin.so +0 -0
  28. biotite/sequence/phylo/nj.c +213 -194
  29. biotite/sequence/phylo/nj.cpython-312-darwin.so +0 -0
  30. biotite/sequence/phylo/tree.c +225 -200
  31. biotite/sequence/phylo/tree.cpython-312-darwin.so +0 -0
  32. biotite/sequence/phylo/upgma.c +213 -194
  33. biotite/sequence/phylo/upgma.cpython-312-darwin.so +0 -0
  34. biotite/structure/basepairs.py +7 -12
  35. biotite/structure/bonds.c +1173 -1224
  36. biotite/structure/bonds.cpython-312-darwin.so +0 -0
  37. biotite/structure/celllist.c +215 -195
  38. biotite/structure/celllist.cpython-312-darwin.so +0 -0
  39. biotite/structure/charges.c +1050 -1099
  40. biotite/structure/charges.cpython-312-darwin.so +0 -0
  41. biotite/structure/filter.py +30 -37
  42. biotite/structure/info/__init__.py +5 -8
  43. biotite/structure/info/atoms.py +25 -67
  44. biotite/structure/info/bonds.py +46 -100
  45. biotite/structure/info/ccd/README.rst +8 -0
  46. biotite/structure/info/ccd/amino_acids.txt +1646 -0
  47. biotite/structure/info/ccd/carbohydrates.txt +1133 -0
  48. biotite/structure/info/ccd/components.bcif +0 -0
  49. biotite/structure/info/ccd/nucleotides.txt +797 -0
  50. biotite/structure/info/ccd.py +95 -0
  51. biotite/structure/info/groups.py +90 -0
  52. biotite/structure/info/masses.py +21 -20
  53. biotite/structure/info/misc.py +11 -22
  54. biotite/structure/info/standardize.py +17 -12
  55. biotite/structure/io/__init__.py +2 -4
  56. biotite/structure/io/ctab.py +1 -1
  57. biotite/structure/io/general.py +37 -43
  58. biotite/structure/io/mmtf/__init__.py +3 -0
  59. biotite/structure/io/mmtf/convertarray.c +217 -196
  60. biotite/structure/io/mmtf/convertarray.cpython-312-darwin.so +0 -0
  61. biotite/structure/io/mmtf/convertfile.c +215 -195
  62. biotite/structure/io/mmtf/convertfile.cpython-312-darwin.so +0 -0
  63. biotite/structure/io/mmtf/decode.c +223 -202
  64. biotite/structure/io/mmtf/decode.cpython-312-darwin.so +0 -0
  65. biotite/structure/io/mmtf/encode.c +213 -194
  66. biotite/structure/io/mmtf/encode.cpython-312-darwin.so +0 -0
  67. biotite/structure/io/mmtf/file.py +34 -26
  68. biotite/structure/io/npz/__init__.py +3 -0
  69. biotite/structure/io/npz/file.py +21 -18
  70. biotite/structure/io/pdb/__init__.py +3 -3
  71. biotite/structure/io/pdb/file.py +5 -3
  72. biotite/structure/io/pdb/hybrid36.c +63 -43
  73. biotite/structure/io/pdb/hybrid36.cpython-312-darwin.so +0 -0
  74. biotite/structure/io/pdbqt/file.py +32 -32
  75. biotite/structure/io/pdbx/__init__.py +13 -6
  76. biotite/structure/io/pdbx/bcif.py +649 -0
  77. biotite/structure/io/pdbx/cif.py +1028 -0
  78. biotite/structure/io/pdbx/component.py +243 -0
  79. biotite/structure/io/pdbx/convert.py +707 -359
  80. biotite/structure/io/pdbx/encoding.c +112803 -0
  81. biotite/structure/io/pdbx/encoding.cpython-312-darwin.so +0 -0
  82. biotite/structure/io/pdbx/error.py +14 -0
  83. biotite/structure/io/pdbx/legacy.py +267 -0
  84. biotite/structure/molecules.py +151 -151
  85. biotite/structure/sasa.c +213 -194
  86. biotite/structure/sasa.cpython-312-darwin.so +0 -0
  87. biotite/structure/superimpose.py +158 -115
  88. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/METADATA +2 -2
  89. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/RECORD +92 -90
  90. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/WHEEL +1 -1
  91. biotite/structure/info/amino_acids.json +0 -1556
  92. biotite/structure/info/amino_acids.py +0 -42
  93. biotite/structure/info/carbohydrates.json +0 -1122
  94. biotite/structure/info/carbohydrates.py +0 -39
  95. biotite/structure/info/intra_bonds.msgpack +0 -0
  96. biotite/structure/info/link_types.msgpack +0 -1
  97. biotite/structure/info/nucleotides.json +0 -772
  98. biotite/structure/info/nucleotides.py +0 -39
  99. biotite/structure/info/residue_masses.msgpack +0 -0
  100. biotite/structure/info/residue_names.msgpack +0 -3
  101. biotite/structure/info/residues.msgpack +0 -0
  102. biotite/structure/io/pdbx/file.py +0 -652
  103. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/LICENSE.rst +0 -0
  104. {biotite-0.39.0.dist-info → biotite-0.40.0.dist-info}/top_level.txt +0 -0
@@ -1,4 +1,4 @@
1
- /* Generated by Cython 3.0.7 */
1
+ /* Generated by Cython 3.0.10 */
2
2
 
3
3
  /* BEGIN: Cython Metadata
4
4
  {
@@ -37,10 +37,10 @@ END: Cython Metadata */
37
37
  #else
38
38
  #define __PYX_EXTRA_ABI_MODULE_NAME ""
39
39
  #endif
40
- #define CYTHON_ABI "3_0_7" __PYX_EXTRA_ABI_MODULE_NAME
40
+ #define CYTHON_ABI "3_0_10" __PYX_EXTRA_ABI_MODULE_NAME
41
41
  #define __PYX_ABI_MODULE_NAME "_cython_" CYTHON_ABI
42
42
  #define __PYX_TYPE_MODULE_PREFIX __PYX_ABI_MODULE_NAME "."
43
- #define CYTHON_HEX_VERSION 0x030007F0
43
+ #define CYTHON_HEX_VERSION 0x03000AF0
44
44
  #define CYTHON_FUTURE_DIVISION 1
45
45
  #include <stddef.h>
46
46
  #ifndef offsetof
@@ -132,6 +132,8 @@ END: Cython Metadata */
132
132
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
133
133
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
134
134
  #endif
135
+ #undef CYTHON_USE_FREELISTS
136
+ #define CYTHON_USE_FREELISTS 0
135
137
  #elif defined(PYPY_VERSION)
136
138
  #define CYTHON_COMPILING_IN_PYPY 1
137
139
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -193,6 +195,8 @@ END: Cython Metadata */
193
195
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
194
196
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
195
197
  #endif
198
+ #undef CYTHON_USE_FREELISTS
199
+ #define CYTHON_USE_FREELISTS 0
196
200
  #elif defined(CYTHON_LIMITED_API)
197
201
  #ifdef Py_LIMITED_API
198
202
  #undef __PYX_LIMITED_VERSION_HEX
@@ -254,6 +258,8 @@ END: Cython Metadata */
254
258
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
255
259
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 0
256
260
  #endif
261
+ #undef CYTHON_USE_FREELISTS
262
+ #define CYTHON_USE_FREELISTS 0
257
263
  #elif defined(Py_GIL_DISABLED) || defined(Py_NOGIL)
258
264
  #define CYTHON_COMPILING_IN_PYPY 0
259
265
  #define CYTHON_COMPILING_IN_CPYTHON 0
@@ -263,11 +269,17 @@ END: Cython Metadata */
263
269
  #ifndef CYTHON_USE_TYPE_SLOTS
264
270
  #define CYTHON_USE_TYPE_SLOTS 1
265
271
  #endif
272
+ #ifndef CYTHON_USE_TYPE_SPECS
273
+ #define CYTHON_USE_TYPE_SPECS 0
274
+ #endif
266
275
  #undef CYTHON_USE_PYTYPE_LOOKUP
267
276
  #define CYTHON_USE_PYTYPE_LOOKUP 0
268
277
  #ifndef CYTHON_USE_ASYNC_SLOTS
269
278
  #define CYTHON_USE_ASYNC_SLOTS 1
270
279
  #endif
280
+ #ifndef CYTHON_USE_PYLONG_INTERNALS
281
+ #define CYTHON_USE_PYLONG_INTERNALS 0
282
+ #endif
271
283
  #undef CYTHON_USE_PYLIST_INTERNALS
272
284
  #define CYTHON_USE_PYLIST_INTERNALS 0
273
285
  #ifndef CYTHON_USE_UNICODE_INTERNALS
@@ -275,8 +287,6 @@ END: Cython Metadata */
275
287
  #endif
276
288
  #undef CYTHON_USE_UNICODE_WRITER
277
289
  #define CYTHON_USE_UNICODE_WRITER 0
278
- #undef CYTHON_USE_PYLONG_INTERNALS
279
- #define CYTHON_USE_PYLONG_INTERNALS 0
280
290
  #ifndef CYTHON_AVOID_BORROWED_REFS
281
291
  #define CYTHON_AVOID_BORROWED_REFS 0
282
292
  #endif
@@ -288,11 +298,22 @@ END: Cython Metadata */
288
298
  #endif
289
299
  #undef CYTHON_FAST_THREAD_STATE
290
300
  #define CYTHON_FAST_THREAD_STATE 0
301
+ #undef CYTHON_FAST_GIL
302
+ #define CYTHON_FAST_GIL 0
303
+ #ifndef CYTHON_METH_FASTCALL
304
+ #define CYTHON_METH_FASTCALL 1
305
+ #endif
291
306
  #undef CYTHON_FAST_PYCALL
292
307
  #define CYTHON_FAST_PYCALL 0
308
+ #ifndef CYTHON_PEP487_INIT_SUBCLASS
309
+ #define CYTHON_PEP487_INIT_SUBCLASS 1
310
+ #endif
293
311
  #ifndef CYTHON_PEP489_MULTI_PHASE_INIT
294
312
  #define CYTHON_PEP489_MULTI_PHASE_INIT 1
295
313
  #endif
314
+ #ifndef CYTHON_USE_MODULE_STATE
315
+ #define CYTHON_USE_MODULE_STATE 0
316
+ #endif
296
317
  #ifndef CYTHON_USE_TP_FINALIZE
297
318
  #define CYTHON_USE_TP_FINALIZE 1
298
319
  #endif
@@ -300,6 +321,12 @@ END: Cython Metadata */
300
321
  #define CYTHON_USE_DICT_VERSIONS 0
301
322
  #undef CYTHON_USE_EXC_INFO_STACK
302
323
  #define CYTHON_USE_EXC_INFO_STACK 0
324
+ #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
325
+ #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
326
+ #endif
327
+ #ifndef CYTHON_USE_FREELISTS
328
+ #define CYTHON_USE_FREELISTS 0
329
+ #endif
303
330
  #else
304
331
  #define CYTHON_COMPILING_IN_PYPY 0
305
332
  #define CYTHON_COMPILING_IN_CPYTHON 1
@@ -390,6 +417,9 @@ END: Cython Metadata */
390
417
  #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC
391
418
  #define CYTHON_UPDATE_DESCRIPTOR_DOC 1
392
419
  #endif
420
+ #ifndef CYTHON_USE_FREELISTS
421
+ #define CYTHON_USE_FREELISTS 1
422
+ #endif
393
423
  #endif
394
424
  #if !defined(CYTHON_FAST_PYCCALL)
395
425
  #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1)
@@ -582,14 +612,14 @@ END: Cython Metadata */
582
612
  PyObject *exception_table = NULL;
583
613
  PyObject *types_module=NULL, *code_type=NULL, *result=NULL;
584
614
  #if __PYX_LIMITED_VERSION_HEX < 0x030B0000
585
- PyObject *version_info; // borrowed
615
+ PyObject *version_info;
586
616
  PyObject *py_minor_version = NULL;
587
617
  #endif
588
618
  long minor_version = 0;
589
619
  PyObject *type, *value, *traceback;
590
620
  PyErr_Fetch(&type, &value, &traceback);
591
621
  #if __PYX_LIMITED_VERSION_HEX >= 0x030B0000
592
- minor_version = 11; // we don't yet need to distinguish between versions > 11
622
+ minor_version = 11;
593
623
  #else
594
624
  if (!(version_info = PySys_GetObject("version_info"))) goto end;
595
625
  if (!(py_minor_version = PySequence_GetItem(version_info, 1))) goto end;
@@ -647,7 +677,7 @@ END: Cython Metadata */
647
677
  PyObject *fv, PyObject *cell, PyObject* fn,
648
678
  PyObject *name, int fline, PyObject *lnos) {
649
679
  PyCodeObject *result;
650
- PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0); // we don't have access to __pyx_empty_bytes here
680
+ PyObject *empty_bytes = PyBytes_FromStringAndSize("", 0);
651
681
  if (!empty_bytes) return NULL;
652
682
  result =
653
683
  #if PY_VERSION_HEX >= 0x030C0000
@@ -733,8 +763,13 @@ END: Cython Metadata */
733
763
  typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args,
734
764
  Py_ssize_t nargs, PyObject *kwnames);
735
765
  #else
736
- #define __Pyx_PyCFunctionFast _PyCFunctionFast
737
- #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
766
+ #if PY_VERSION_HEX >= 0x030d00A4
767
+ # define __Pyx_PyCFunctionFast PyCFunctionFast
768
+ # define __Pyx_PyCFunctionFastWithKeywords PyCFunctionFastWithKeywords
769
+ #else
770
+ # define __Pyx_PyCFunctionFast _PyCFunctionFast
771
+ # define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords
772
+ #endif
738
773
  #endif
739
774
  #if CYTHON_METH_FASTCALL
740
775
  #define __Pyx_METH_FASTCALL METH_FASTCALL
@@ -1086,7 +1121,7 @@ static CYTHON_INLINE PyObject * __Pyx_PyDict_GetItemStrWithError(PyObject *dict,
1086
1121
  #define __Pyx_PyBytes_GET_SIZE(o) PyBytes_Size(o)
1087
1122
  #define __Pyx_PyByteArray_GET_SIZE(o) PyByteArray_Size(o)
1088
1123
  #endif
1089
- #if PY_VERSION_HEX >= 0x030d00A1
1124
+ #if __PYX_LIMITED_VERSION_HEX >= 0x030d00A1
1090
1125
  #define __Pyx_PyImport_AddModuleRef(name) PyImport_AddModuleRef(name)
1091
1126
  #else
1092
1127
  static CYTHON_INLINE PyObject *__Pyx_PyImport_AddModuleRef(const char *name) {
@@ -1173,7 +1208,7 @@ static CYTHON_INLINE float __PYX_NAN() {
1173
1208
  #endif
1174
1209
 
1175
1210
  #define __PYX_MARK_ERR_POS(f_index, lineno) \
1176
- { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1211
+ { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; }
1177
1212
  #define __PYX_ERR(f_index, lineno, Ln_error) \
1178
1213
  { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; }
1179
1214
 
@@ -1288,24 +1323,7 @@ static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*);
1288
1323
  #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s)
1289
1324
  #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s)
1290
1325
  #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s)
1291
- #if CYTHON_COMPILING_IN_LIMITED_API
1292
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const wchar_t *u)
1293
- {
1294
- const wchar_t *u_end = u;
1295
- while (*u_end++) ;
1296
- return (size_t)(u_end - u - 1);
1297
- }
1298
- #else
1299
- static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u)
1300
- {
1301
- const Py_UNICODE *u_end = u;
1302
- while (*u_end++) ;
1303
- return (size_t)(u_end - u - 1);
1304
- }
1305
- #endif
1306
1326
  #define __Pyx_PyUnicode_FromOrdinal(o) PyUnicode_FromOrdinal((int)o)
1307
- #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u))
1308
- #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode
1309
1327
  #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode
1310
1328
  #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj)
1311
1329
  #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None)
@@ -1355,7 +1373,7 @@ static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*);
1355
1373
  #endif
1356
1374
  typedef Py_ssize_t __Pyx_compact_pylong;
1357
1375
  typedef size_t __Pyx_compact_upylong;
1358
- #else // Py < 3.12
1376
+ #else
1359
1377
  #define __Pyx_PyLong_IsNeg(x) (Py_SIZE(x) < 0)
1360
1378
  #define __Pyx_PyLong_IsNonNeg(x) (Py_SIZE(x) >= 0)
1361
1379
  #define __Pyx_PyLong_IsZero(x) (Py_SIZE(x) == 0)
@@ -1645,7 +1663,7 @@ typedef struct {
1645
1663
 
1646
1664
  /* #### Code section: numeric_typedefs ### */
1647
1665
 
1648
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1666
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":730
1649
1667
  * # in Cython to enable them only on the right systems.
1650
1668
  *
1651
1669
  * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<<
@@ -1654,7 +1672,7 @@ typedef struct {
1654
1672
  */
1655
1673
  typedef npy_int8 __pyx_t_5numpy_int8_t;
1656
1674
 
1657
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1675
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":731
1658
1676
  *
1659
1677
  * ctypedef npy_int8 int8_t
1660
1678
  * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<<
@@ -1663,7 +1681,7 @@ typedef npy_int8 __pyx_t_5numpy_int8_t;
1663
1681
  */
1664
1682
  typedef npy_int16 __pyx_t_5numpy_int16_t;
1665
1683
 
1666
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1684
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":732
1667
1685
  * ctypedef npy_int8 int8_t
1668
1686
  * ctypedef npy_int16 int16_t
1669
1687
  * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<<
@@ -1672,7 +1690,7 @@ typedef npy_int16 __pyx_t_5numpy_int16_t;
1672
1690
  */
1673
1691
  typedef npy_int32 __pyx_t_5numpy_int32_t;
1674
1692
 
1675
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1693
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":733
1676
1694
  * ctypedef npy_int16 int16_t
1677
1695
  * ctypedef npy_int32 int32_t
1678
1696
  * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<<
@@ -1681,7 +1699,7 @@ typedef npy_int32 __pyx_t_5numpy_int32_t;
1681
1699
  */
1682
1700
  typedef npy_int64 __pyx_t_5numpy_int64_t;
1683
1701
 
1684
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1702
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":737
1685
1703
  * #ctypedef npy_int128 int128_t
1686
1704
  *
1687
1705
  * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<<
@@ -1690,7 +1708,7 @@ typedef npy_int64 __pyx_t_5numpy_int64_t;
1690
1708
  */
1691
1709
  typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1692
1710
 
1693
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1711
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":738
1694
1712
  *
1695
1713
  * ctypedef npy_uint8 uint8_t
1696
1714
  * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<<
@@ -1699,7 +1717,7 @@ typedef npy_uint8 __pyx_t_5numpy_uint8_t;
1699
1717
  */
1700
1718
  typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1701
1719
 
1702
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1720
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":739
1703
1721
  * ctypedef npy_uint8 uint8_t
1704
1722
  * ctypedef npy_uint16 uint16_t
1705
1723
  * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<<
@@ -1708,7 +1726,7 @@ typedef npy_uint16 __pyx_t_5numpy_uint16_t;
1708
1726
  */
1709
1727
  typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1710
1728
 
1711
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1729
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":740
1712
1730
  * ctypedef npy_uint16 uint16_t
1713
1731
  * ctypedef npy_uint32 uint32_t
1714
1732
  * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<<
@@ -1717,7 +1735,7 @@ typedef npy_uint32 __pyx_t_5numpy_uint32_t;
1717
1735
  */
1718
1736
  typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1719
1737
 
1720
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1738
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":744
1721
1739
  * #ctypedef npy_uint128 uint128_t
1722
1740
  *
1723
1741
  * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<<
@@ -1726,7 +1744,7 @@ typedef npy_uint64 __pyx_t_5numpy_uint64_t;
1726
1744
  */
1727
1745
  typedef npy_float32 __pyx_t_5numpy_float32_t;
1728
1746
 
1729
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1747
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":745
1730
1748
  *
1731
1749
  * ctypedef npy_float32 float32_t
1732
1750
  * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<<
@@ -1735,7 +1753,7 @@ typedef npy_float32 __pyx_t_5numpy_float32_t;
1735
1753
  */
1736
1754
  typedef npy_float64 __pyx_t_5numpy_float64_t;
1737
1755
 
1738
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1756
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":754
1739
1757
  * # The int types are mapped a bit surprising --
1740
1758
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1741
1759
  * ctypedef npy_long int_t # <<<<<<<<<<<<<<
@@ -1744,7 +1762,7 @@ typedef npy_float64 __pyx_t_5numpy_float64_t;
1744
1762
  */
1745
1763
  typedef npy_long __pyx_t_5numpy_int_t;
1746
1764
 
1747
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1765
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":755
1748
1766
  * # numpy.int corresponds to 'l' and numpy.long to 'q'
1749
1767
  * ctypedef npy_long int_t
1750
1768
  * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<<
@@ -1753,7 +1771,7 @@ typedef npy_long __pyx_t_5numpy_int_t;
1753
1771
  */
1754
1772
  typedef npy_longlong __pyx_t_5numpy_longlong_t;
1755
1773
 
1756
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":757
1757
1775
  * ctypedef npy_longlong longlong_t
1758
1776
  *
1759
1777
  * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<<
@@ -1762,7 +1780,7 @@ typedef npy_longlong __pyx_t_5numpy_longlong_t;
1762
1780
  */
1763
1781
  typedef npy_ulong __pyx_t_5numpy_uint_t;
1764
1782
 
1765
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1783
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":758
1766
1784
  *
1767
1785
  * ctypedef npy_ulong uint_t
1768
1786
  * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<<
@@ -1771,7 +1789,7 @@ typedef npy_ulong __pyx_t_5numpy_uint_t;
1771
1789
  */
1772
1790
  typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1773
1791
 
1774
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":760
1775
1793
  * ctypedef npy_ulonglong ulonglong_t
1776
1794
  *
1777
1795
  * ctypedef npy_intp intp_t # <<<<<<<<<<<<<<
@@ -1780,7 +1798,7 @@ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t;
1780
1798
  */
1781
1799
  typedef npy_intp __pyx_t_5numpy_intp_t;
1782
1800
 
1783
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":761
1784
1802
  *
1785
1803
  * ctypedef npy_intp intp_t
1786
1804
  * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<<
@@ -1789,7 +1807,7 @@ typedef npy_intp __pyx_t_5numpy_intp_t;
1789
1807
  */
1790
1808
  typedef npy_uintp __pyx_t_5numpy_uintp_t;
1791
1809
 
1792
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":763
1793
1811
  * ctypedef npy_uintp uintp_t
1794
1812
  *
1795
1813
  * ctypedef npy_double float_t # <<<<<<<<<<<<<<
@@ -1798,7 +1816,7 @@ typedef npy_uintp __pyx_t_5numpy_uintp_t;
1798
1816
  */
1799
1817
  typedef npy_double __pyx_t_5numpy_float_t;
1800
1818
 
1801
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":764
1802
1820
  *
1803
1821
  * ctypedef npy_double float_t
1804
1822
  * ctypedef npy_double double_t # <<<<<<<<<<<<<<
@@ -1807,7 +1825,7 @@ typedef npy_double __pyx_t_5numpy_float_t;
1807
1825
  */
1808
1826
  typedef npy_double __pyx_t_5numpy_double_t;
1809
1827
 
1810
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1828
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":765
1811
1829
  * ctypedef npy_double float_t
1812
1830
  * ctypedef npy_double double_t
1813
1831
  * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<<
@@ -1920,7 +1938,7 @@ struct __pyx_MemviewEnum_obj;
1920
1938
  struct __pyx_memoryview_obj;
1921
1939
  struct __pyx_memoryviewslice_obj;
1922
1940
 
1923
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1941
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":767
1924
1942
  * ctypedef npy_longdouble longdouble_t
1925
1943
  *
1926
1944
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1929,7 +1947,7 @@ struct __pyx_memoryviewslice_obj;
1929
1947
  */
1930
1948
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1931
1949
 
1932
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1950
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":768
1933
1951
  *
1934
1952
  * ctypedef npy_cfloat cfloat_t
1935
1953
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1938,7 +1956,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1938
1956
  */
1939
1957
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1940
1958
 
1941
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1959
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":769
1942
1960
  * ctypedef npy_cfloat cfloat_t
1943
1961
  * ctypedef npy_cdouble cdouble_t
1944
1962
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1947,7 +1965,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1947
1965
  */
1948
1966
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1949
1967
 
1950
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1968
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":771
1951
1969
  * ctypedef npy_clongdouble clongdouble_t
1952
1970
  *
1953
1971
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2258,8 +2276,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2258
2276
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2259
2277
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2260
2278
  #else
2261
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2262
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2279
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2280
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2263
2281
  #endif
2264
2282
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2265
2283
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2275,8 +2293,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2275
2293
  #else
2276
2294
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2277
2295
  #endif
2278
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2279
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2296
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2297
+ to have the same reference counting */
2298
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2280
2299
  #else
2281
2300
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2282
2301
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2784,22 +2803,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2784
2803
  #endif
2785
2804
 
2786
2805
  /* TypeImport.proto */
2787
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2788
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2806
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2807
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2789
2808
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2790
2809
  #include <stdalign.h>
2791
2810
  #endif
2792
2811
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2793
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2812
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2794
2813
  #else
2795
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2814
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2796
2815
  #endif
2797
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2798
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2799
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2800
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2816
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2817
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2818
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2819
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2801
2820
  };
2802
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size);
2821
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject* module, const char *module_name, const char *class_name, size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size);
2803
2822
  #endif
2804
2823
 
2805
2824
  /* FetchSharedCythonModule.proto */
@@ -2892,7 +2911,7 @@ typedef struct {
2892
2911
  #endif
2893
2912
  void *defaults;
2894
2913
  int defaults_pyobjects;
2895
- size_t defaults_size; // used by FusedFunction for copying defaults
2914
+ size_t defaults_size;
2896
2915
  int flags;
2897
2916
  PyObject *defaults_tuple;
2898
2917
  PyObject *defaults_kwdict;
@@ -18949,7 +18968,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18949
18968
  return __pyx_r;
18950
18969
  }
18951
18970
 
18952
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18971
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18953
18972
  *
18954
18973
  * @property
18955
18974
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18960,7 +18979,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
18960
18979
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
18961
18980
  PyObject *__pyx_r;
18962
18981
 
18963
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
18982
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":248
18964
18983
  * """Returns a borrowed reference to the object owning the data/memory.
18965
18984
  * """
18966
18985
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -18970,7 +18989,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18970
18989
  __pyx_r = PyArray_BASE(__pyx_v_self);
18971
18990
  goto __pyx_L0;
18972
18991
 
18973
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18992
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":245
18974
18993
  *
18975
18994
  * @property
18976
18995
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -18983,7 +19002,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
18983
19002
  return __pyx_r;
18984
19003
  }
18985
19004
 
18986
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
19005
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
18987
19006
  *
18988
19007
  * @property
18989
19008
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -18997,7 +19016,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
18997
19016
  PyArray_Descr *__pyx_t_1;
18998
19017
  __Pyx_RefNannySetupContext("descr", 1);
18999
19018
 
19000
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
19019
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":254
19001
19020
  * """Returns an owned reference to the dtype of the array.
19002
19021
  * """
19003
19022
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -19010,7 +19029,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19010
19029
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
19011
19030
  goto __pyx_L0;
19012
19031
 
19013
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
19032
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":251
19014
19033
  *
19015
19034
  * @property
19016
19035
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -19025,7 +19044,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19025
19044
  return __pyx_r;
19026
19045
  }
19027
19046
 
19028
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
19047
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
19029
19048
  *
19030
19049
  * @property
19031
19050
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19036,7 +19055,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
19036
19055
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
19037
19056
  int __pyx_r;
19038
19057
 
19039
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
19058
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":260
19040
19059
  * """Returns the number of dimensions in the array.
19041
19060
  * """
19042
19061
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -19046,7 +19065,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19046
19065
  __pyx_r = PyArray_NDIM(__pyx_v_self);
19047
19066
  goto __pyx_L0;
19048
19067
 
19049
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
19068
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":257
19050
19069
  *
19051
19070
  * @property
19052
19071
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -19059,7 +19078,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19059
19078
  return __pyx_r;
19060
19079
  }
19061
19080
 
19062
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
19081
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
19063
19082
  *
19064
19083
  * @property
19065
19084
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19070,7 +19089,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
19070
19089
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
19071
19090
  npy_intp *__pyx_r;
19072
19091
 
19073
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
19092
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":268
19074
19093
  * Can return NULL for 0-dimensional arrays.
19075
19094
  * """
19076
19095
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -19080,7 +19099,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19080
19099
  __pyx_r = PyArray_DIMS(__pyx_v_self);
19081
19100
  goto __pyx_L0;
19082
19101
 
19083
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
19102
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":263
19084
19103
  *
19085
19104
  * @property
19086
19105
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -19093,7 +19112,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19093
19112
  return __pyx_r;
19094
19113
  }
19095
19114
 
19096
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
19115
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
19097
19116
  *
19098
19117
  * @property
19099
19118
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19104,7 +19123,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
19104
19123
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
19105
19124
  npy_intp *__pyx_r;
19106
19125
 
19107
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
19126
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":275
19108
19127
  * The number of elements matches the number of dimensions of the array (ndim).
19109
19128
  * """
19110
19129
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -19114,7 +19133,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19114
19133
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
19115
19134
  goto __pyx_L0;
19116
19135
 
19117
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
19136
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":271
19118
19137
  *
19119
19138
  * @property
19120
19139
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -19127,7 +19146,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19127
19146
  return __pyx_r;
19128
19147
  }
19129
19148
 
19130
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
19149
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
19131
19150
  *
19132
19151
  * @property
19133
19152
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19138,7 +19157,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
19138
19157
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
19139
19158
  npy_intp __pyx_r;
19140
19159
 
19141
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
19160
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":281
19142
19161
  * """Returns the total size (in number of elements) of the array.
19143
19162
  * """
19144
19163
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -19148,7 +19167,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19148
19167
  __pyx_r = PyArray_SIZE(__pyx_v_self);
19149
19168
  goto __pyx_L0;
19150
19169
 
19151
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
19170
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":278
19152
19171
  *
19153
19172
  * @property
19154
19173
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -19161,7 +19180,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19161
19180
  return __pyx_r;
19162
19181
  }
19163
19182
 
19164
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
19183
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
19165
19184
  *
19166
19185
  * @property
19167
19186
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19172,7 +19191,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
19172
19191
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
19173
19192
  char *__pyx_r;
19174
19193
 
19175
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
19194
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":290
19176
19195
  * of `PyArray_DATA()` instead, which returns a 'void*'.
19177
19196
  * """
19178
19197
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -19182,7 +19201,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19182
19201
  __pyx_r = PyArray_BYTES(__pyx_v_self);
19183
19202
  goto __pyx_L0;
19184
19203
 
19185
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
19204
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":284
19186
19205
  *
19187
19206
  * @property
19188
19207
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -19195,7 +19214,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
19195
19214
  return __pyx_r;
19196
19215
  }
19197
19216
 
19198
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
19217
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
19199
19218
  * ctypedef npy_cdouble complex_t
19200
19219
  *
19201
19220
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19212,7 +19231,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19212
19231
  int __pyx_clineno = 0;
19213
19232
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
19214
19233
 
19215
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
19234
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":774
19216
19235
  *
19217
19236
  * cdef inline object PyArray_MultiIterNew1(a):
19218
19237
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -19226,7 +19245,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19226
19245
  __pyx_t_1 = 0;
19227
19246
  goto __pyx_L0;
19228
19247
 
19229
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
19248
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":773
19230
19249
  * ctypedef npy_cdouble complex_t
19231
19250
  *
19232
19251
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -19245,7 +19264,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
19245
19264
  return __pyx_r;
19246
19265
  }
19247
19266
 
19248
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
19267
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
19249
19268
  * return PyArray_MultiIterNew(1, <void*>a)
19250
19269
  *
19251
19270
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19262,7 +19281,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19262
19281
  int __pyx_clineno = 0;
19263
19282
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
19264
19283
 
19265
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
19284
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":777
19266
19285
  *
19267
19286
  * cdef inline object PyArray_MultiIterNew2(a, b):
19268
19287
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -19276,7 +19295,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19276
19295
  __pyx_t_1 = 0;
19277
19296
  goto __pyx_L0;
19278
19297
 
19279
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
19298
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":776
19280
19299
  * return PyArray_MultiIterNew(1, <void*>a)
19281
19300
  *
19282
19301
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -19295,7 +19314,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
19295
19314
  return __pyx_r;
19296
19315
  }
19297
19316
 
19298
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
19317
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
19299
19318
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19300
19319
  *
19301
19320
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19312,7 +19331,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19312
19331
  int __pyx_clineno = 0;
19313
19332
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
19314
19333
 
19315
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
19334
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":780
19316
19335
  *
19317
19336
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
19318
19337
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -19326,7 +19345,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19326
19345
  __pyx_t_1 = 0;
19327
19346
  goto __pyx_L0;
19328
19347
 
19329
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
19348
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":779
19330
19349
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
19331
19350
  *
19332
19351
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -19345,7 +19364,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
19345
19364
  return __pyx_r;
19346
19365
  }
19347
19366
 
19348
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
19367
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
19349
19368
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19350
19369
  *
19351
19370
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19362,7 +19381,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19362
19381
  int __pyx_clineno = 0;
19363
19382
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
19364
19383
 
19365
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
19384
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":783
19366
19385
  *
19367
19386
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
19368
19387
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -19376,7 +19395,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19376
19395
  __pyx_t_1 = 0;
19377
19396
  goto __pyx_L0;
19378
19397
 
19379
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
19398
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":782
19380
19399
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
19381
19400
  *
19382
19401
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -19395,7 +19414,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
19395
19414
  return __pyx_r;
19396
19415
  }
19397
19416
 
19398
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
19417
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
19399
19418
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19400
19419
  *
19401
19420
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19412,7 +19431,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19412
19431
  int __pyx_clineno = 0;
19413
19432
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
19414
19433
 
19415
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
19434
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":786
19416
19435
  *
19417
19436
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
19418
19437
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -19426,7 +19445,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19426
19445
  __pyx_t_1 = 0;
19427
19446
  goto __pyx_L0;
19428
19447
 
19429
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
19448
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":785
19430
19449
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
19431
19450
  *
19432
19451
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -19445,7 +19464,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
19445
19464
  return __pyx_r;
19446
19465
  }
19447
19466
 
19448
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19467
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19449
19468
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19450
19469
  *
19451
19470
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19459,7 +19478,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19459
19478
  int __pyx_t_1;
19460
19479
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
19461
19480
 
19462
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19481
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19463
19482
  *
19464
19483
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19465
19484
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19469,7 +19488,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19469
19488
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
19470
19489
  if (__pyx_t_1) {
19471
19490
 
19472
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
19491
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":790
19473
19492
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19474
19493
  * if PyDataType_HASSUBARRAY(d):
19475
19494
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -19481,7 +19500,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19481
19500
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
19482
19501
  goto __pyx_L0;
19483
19502
 
19484
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19503
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":789
19485
19504
  *
19486
19505
  * cdef inline tuple PyDataType_SHAPE(dtype d):
19487
19506
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -19490,7 +19509,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19490
19509
  */
19491
19510
  }
19492
19511
 
19493
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
19512
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":792
19494
19513
  * return <tuple>d.subarray.shape
19495
19514
  * else:
19496
19515
  * return () # <<<<<<<<<<<<<<
@@ -19504,7 +19523,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19504
19523
  goto __pyx_L0;
19505
19524
  }
19506
19525
 
19507
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19526
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":788
19508
19527
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
19509
19528
  *
19510
19529
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -19519,7 +19538,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
19519
19538
  return __pyx_r;
19520
19539
  }
19521
19540
 
19522
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19541
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19523
19542
  * int _import_umath() except -1
19524
19543
  *
19525
19544
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19533,7 +19552,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19533
19552
  const char *__pyx_filename = NULL;
19534
19553
  int __pyx_clineno = 0;
19535
19554
 
19536
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
19555
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":969
19537
19556
  *
19538
19557
  * cdef inline void set_array_base(ndarray arr, object base):
19539
19558
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -19542,7 +19561,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19542
19561
  */
19543
19562
  Py_INCREF(__pyx_v_base);
19544
19563
 
19545
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
19564
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":970
19546
19565
  * cdef inline void set_array_base(ndarray arr, object base):
19547
19566
  * Py_INCREF(base) # important to do this before stealing the reference below!
19548
19567
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -19551,7 +19570,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19551
19570
  */
19552
19571
  __pyx_t_1 = PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base); if (unlikely(__pyx_t_1 == ((int)-1))) __PYX_ERR(2, 970, __pyx_L1_error)
19553
19572
 
19554
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19573
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":968
19555
19574
  * int _import_umath() except -1
19556
19575
  *
19557
19576
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -19566,7 +19585,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
19566
19585
  __pyx_L0:;
19567
19586
  }
19568
19587
 
19569
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19588
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19570
19589
  * PyArray_SetBaseObject(arr, base)
19571
19590
  *
19572
19591
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19581,7 +19600,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19581
19600
  int __pyx_t_1;
19582
19601
  __Pyx_RefNannySetupContext("get_array_base", 1);
19583
19602
 
19584
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
19603
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":973
19585
19604
  *
19586
19605
  * cdef inline object get_array_base(ndarray arr):
19587
19606
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -19590,7 +19609,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19590
19609
  */
19591
19610
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
19592
19611
 
19593
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19612
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19594
19613
  * cdef inline object get_array_base(ndarray arr):
19595
19614
  * base = PyArray_BASE(arr)
19596
19615
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19600,7 +19619,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19600
19619
  __pyx_t_1 = (__pyx_v_base == NULL);
19601
19620
  if (__pyx_t_1) {
19602
19621
 
19603
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
19622
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":975
19604
19623
  * base = PyArray_BASE(arr)
19605
19624
  * if base is NULL:
19606
19625
  * return None # <<<<<<<<<<<<<<
@@ -19611,7 +19630,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19611
19630
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
19612
19631
  goto __pyx_L0;
19613
19632
 
19614
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19633
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":974
19615
19634
  * cdef inline object get_array_base(ndarray arr):
19616
19635
  * base = PyArray_BASE(arr)
19617
19636
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -19620,7 +19639,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19620
19639
  */
19621
19640
  }
19622
19641
 
19623
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
19642
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":976
19624
19643
  * if base is NULL:
19625
19644
  * return None
19626
19645
  * return <object>base # <<<<<<<<<<<<<<
@@ -19632,7 +19651,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19632
19651
  __pyx_r = ((PyObject *)__pyx_v_base);
19633
19652
  goto __pyx_L0;
19634
19653
 
19635
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19654
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":972
19636
19655
  * PyArray_SetBaseObject(arr, base)
19637
19656
  *
19638
19657
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -19647,7 +19666,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
19647
19666
  return __pyx_r;
19648
19667
  }
19649
19668
 
19650
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19669
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19651
19670
  * # Versions of the import_* functions which are more suitable for
19652
19671
  * # Cython code.
19653
19672
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19671,7 +19690,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19671
19690
  int __pyx_clineno = 0;
19672
19691
  __Pyx_RefNannySetupContext("import_array", 1);
19673
19692
 
19674
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19693
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19675
19694
  * # Cython code.
19676
19695
  * cdef inline int import_array() except -1:
19677
19696
  * try: # <<<<<<<<<<<<<<
@@ -19687,7 +19706,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19687
19706
  __Pyx_XGOTREF(__pyx_t_3);
19688
19707
  /*try:*/ {
19689
19708
 
19690
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
19709
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":982
19691
19710
  * cdef inline int import_array() except -1:
19692
19711
  * try:
19693
19712
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -19696,7 +19715,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19696
19715
  */
19697
19716
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
19698
19717
 
19699
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19718
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19700
19719
  * # Cython code.
19701
19720
  * cdef inline int import_array() except -1:
19702
19721
  * try: # <<<<<<<<<<<<<<
@@ -19710,7 +19729,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19710
19729
  goto __pyx_L8_try_end;
19711
19730
  __pyx_L3_error:;
19712
19731
 
19713
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
19732
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":983
19714
19733
  * try:
19715
19734
  * __pyx_import_array()
19716
19735
  * except Exception: # <<<<<<<<<<<<<<
@@ -19725,7 +19744,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19725
19744
  __Pyx_XGOTREF(__pyx_t_6);
19726
19745
  __Pyx_XGOTREF(__pyx_t_7);
19727
19746
 
19728
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
19747
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
19729
19748
  * __pyx_import_array()
19730
19749
  * except Exception:
19731
19750
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -19740,7 +19759,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19740
19759
  }
19741
19760
  goto __pyx_L5_except_error;
19742
19761
 
19743
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19762
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":981
19744
19763
  * # Cython code.
19745
19764
  * cdef inline int import_array() except -1:
19746
19765
  * try: # <<<<<<<<<<<<<<
@@ -19756,7 +19775,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19756
19775
  __pyx_L8_try_end:;
19757
19776
  }
19758
19777
 
19759
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19778
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":980
19760
19779
  * # Versions of the import_* functions which are more suitable for
19761
19780
  * # Cython code.
19762
19781
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -19779,7 +19798,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
19779
19798
  return __pyx_r;
19780
19799
  }
19781
19800
 
19782
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19801
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19783
19802
  * raise ImportError("numpy.core.multiarray failed to import")
19784
19803
  *
19785
19804
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19803,7 +19822,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19803
19822
  int __pyx_clineno = 0;
19804
19823
  __Pyx_RefNannySetupContext("import_umath", 1);
19805
19824
 
19806
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19825
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19807
19826
  *
19808
19827
  * cdef inline int import_umath() except -1:
19809
19828
  * try: # <<<<<<<<<<<<<<
@@ -19819,7 +19838,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19819
19838
  __Pyx_XGOTREF(__pyx_t_3);
19820
19839
  /*try:*/ {
19821
19840
 
19822
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
19841
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":988
19823
19842
  * cdef inline int import_umath() except -1:
19824
19843
  * try:
19825
19844
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19828,7 +19847,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19828
19847
  */
19829
19848
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
19830
19849
 
19831
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19850
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19832
19851
  *
19833
19852
  * cdef inline int import_umath() except -1:
19834
19853
  * try: # <<<<<<<<<<<<<<
@@ -19842,7 +19861,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19842
19861
  goto __pyx_L8_try_end;
19843
19862
  __pyx_L3_error:;
19844
19863
 
19845
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
19864
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":989
19846
19865
  * try:
19847
19866
  * _import_umath()
19848
19867
  * except Exception: # <<<<<<<<<<<<<<
@@ -19857,7 +19876,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19857
19876
  __Pyx_XGOTREF(__pyx_t_6);
19858
19877
  __Pyx_XGOTREF(__pyx_t_7);
19859
19878
 
19860
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
19879
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
19861
19880
  * _import_umath()
19862
19881
  * except Exception:
19863
19882
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -19872,7 +19891,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19872
19891
  }
19873
19892
  goto __pyx_L5_except_error;
19874
19893
 
19875
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19894
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":987
19876
19895
  *
19877
19896
  * cdef inline int import_umath() except -1:
19878
19897
  * try: # <<<<<<<<<<<<<<
@@ -19888,7 +19907,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19888
19907
  __pyx_L8_try_end:;
19889
19908
  }
19890
19909
 
19891
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19910
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":986
19892
19911
  * raise ImportError("numpy.core.multiarray failed to import")
19893
19912
  *
19894
19913
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -19911,7 +19930,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
19911
19930
  return __pyx_r;
19912
19931
  }
19913
19932
 
19914
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19933
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
19915
19934
  * raise ImportError("numpy.core.umath failed to import")
19916
19935
  *
19917
19936
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -19935,7 +19954,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19935
19954
  int __pyx_clineno = 0;
19936
19955
  __Pyx_RefNannySetupContext("import_ufunc", 1);
19937
19956
 
19938
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19957
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19939
19958
  *
19940
19959
  * cdef inline int import_ufunc() except -1:
19941
19960
  * try: # <<<<<<<<<<<<<<
@@ -19951,7 +19970,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19951
19970
  __Pyx_XGOTREF(__pyx_t_3);
19952
19971
  /*try:*/ {
19953
19972
 
19954
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
19973
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":994
19955
19974
  * cdef inline int import_ufunc() except -1:
19956
19975
  * try:
19957
19976
  * _import_umath() # <<<<<<<<<<<<<<
@@ -19960,7 +19979,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19960
19979
  */
19961
19980
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
19962
19981
 
19963
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19982
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
19964
19983
  *
19965
19984
  * cdef inline int import_ufunc() except -1:
19966
19985
  * try: # <<<<<<<<<<<<<<
@@ -19974,7 +19993,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19974
19993
  goto __pyx_L8_try_end;
19975
19994
  __pyx_L3_error:;
19976
19995
 
19977
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
19996
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":995
19978
19997
  * try:
19979
19998
  * _import_umath()
19980
19999
  * except Exception: # <<<<<<<<<<<<<<
@@ -19989,7 +20008,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
19989
20008
  __Pyx_XGOTREF(__pyx_t_6);
19990
20009
  __Pyx_XGOTREF(__pyx_t_7);
19991
20010
 
19992
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
20011
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":996
19993
20012
  * _import_umath()
19994
20013
  * except Exception:
19995
20014
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -20004,7 +20023,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20004
20023
  }
20005
20024
  goto __pyx_L5_except_error;
20006
20025
 
20007
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
20026
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":993
20008
20027
  *
20009
20028
  * cdef inline int import_ufunc() except -1:
20010
20029
  * try: # <<<<<<<<<<<<<<
@@ -20020,7 +20039,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20020
20039
  __pyx_L8_try_end:;
20021
20040
  }
20022
20041
 
20023
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
20042
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":992
20024
20043
  * raise ImportError("numpy.core.umath failed to import")
20025
20044
  *
20026
20045
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -20043,7 +20062,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20043
20062
  return __pyx_r;
20044
20063
  }
20045
20064
 
20046
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
20065
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
20047
20066
  *
20048
20067
  *
20049
20068
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20054,7 +20073,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
20054
20073
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
20055
20074
  int __pyx_r;
20056
20075
 
20057
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
20076
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1011
20058
20077
  * bool
20059
20078
  * """
20060
20079
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -20064,7 +20083,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20064
20083
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
20065
20084
  goto __pyx_L0;
20066
20085
 
20067
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
20086
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":999
20068
20087
  *
20069
20088
  *
20070
20089
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -20077,7 +20096,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20077
20096
  return __pyx_r;
20078
20097
  }
20079
20098
 
20080
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
20099
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
20081
20100
  *
20082
20101
  *
20083
20102
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20088,7 +20107,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
20088
20107
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
20089
20108
  int __pyx_r;
20090
20109
 
20091
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
20110
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1026
20092
20111
  * bool
20093
20112
  * """
20094
20113
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -20098,7 +20117,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20098
20117
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
20099
20118
  goto __pyx_L0;
20100
20119
 
20101
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
20120
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1014
20102
20121
  *
20103
20122
  *
20104
20123
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -20111,7 +20130,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20111
20130
  return __pyx_r;
20112
20131
  }
20113
20132
 
20114
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
20133
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
20115
20134
  *
20116
20135
  *
20117
20136
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20122,7 +20141,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
20122
20141
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
20123
20142
  npy_datetime __pyx_r;
20124
20143
 
20125
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
20144
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1036
20126
20145
  * also needed. That can be found using `get_datetime64_unit`.
20127
20146
  * """
20128
20147
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20132,7 +20151,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20132
20151
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
20133
20152
  goto __pyx_L0;
20134
20153
 
20135
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
20154
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1029
20136
20155
  *
20137
20156
  *
20138
20157
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20145,7 +20164,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20145
20164
  return __pyx_r;
20146
20165
  }
20147
20166
 
20148
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
20167
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
20149
20168
  *
20150
20169
  *
20151
20170
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20156,7 +20175,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
20156
20175
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
20157
20176
  npy_timedelta __pyx_r;
20158
20177
 
20159
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
20178
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1043
20160
20179
  * returns the int64 value underlying scalar numpy timedelta64 object
20161
20180
  * """
20162
20181
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -20166,7 +20185,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20166
20185
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
20167
20186
  goto __pyx_L0;
20168
20187
 
20169
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
20188
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1039
20170
20189
  *
20171
20190
  *
20172
20191
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20179,7 +20198,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20179
20198
  return __pyx_r;
20180
20199
  }
20181
20200
 
20182
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
20201
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
20183
20202
  *
20184
20203
  *
20185
20204
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -20190,7 +20209,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
20190
20209
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
20191
20210
  NPY_DATETIMEUNIT __pyx_r;
20192
20211
 
20193
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
20212
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1050
20194
20213
  * returns the unit part of the dtype for a numpy datetime64 object.
20195
20214
  * """
20196
20215
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -20198,7 +20217,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
20198
20217
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
20199
20218
  goto __pyx_L0;
20200
20219
 
20201
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
20220
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":1046
20202
20221
  *
20203
20222
  *
20204
20223
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -28296,7 +28315,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
28296
28315
  __Pyx_GOTREF(__pyx_tuple__8);
28297
28316
  __Pyx_GIVEREF(__pyx_tuple__8);
28298
28317
 
28299
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
28318
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":984
28300
28319
  * __pyx_import_array()
28301
28320
  * except Exception:
28302
28321
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -28307,7 +28326,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
28307
28326
  __Pyx_GOTREF(__pyx_tuple__9);
28308
28327
  __Pyx_GIVEREF(__pyx_tuple__9);
28309
28328
 
28310
- /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-c6065tb3/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
28329
+ /* "../../../../../private/var/folders/24/8k48jl6d249_n_qfxwsl6xvm0000gn/T/pip-build-env-vdmo8lei/overlay/lib/python3.12/site-packages/numpy/__init__.cython-30.pxd":990
28311
28330
  * _import_umath()
28312
28331
  * except Exception:
28313
28332
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -28825,33 +28844,33 @@ static int __Pyx_modinit_type_import_code(void) {
28825
28844
  /*--- Type import code ---*/
28826
28845
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
28827
28846
  __Pyx_GOTREF(__pyx_t_1);
28828
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
28847
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
28829
28848
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
28830
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
28849
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
28831
28850
  #elif CYTHON_COMPILING_IN_LIMITED_API
28832
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
28851
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
28833
28852
  #else
28834
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
28853
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
28835
28854
  #endif
28836
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
28855
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
28837
28856
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
28838
28857
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
28839
28858
  __Pyx_GOTREF(__pyx_t_1);
28840
- __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
28841
- __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
28842
- __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
28843
- __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
28844
- __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
28845
- __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
28846
- __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
28847
- __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
28848
- __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
28849
- __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
28850
- __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
28851
- __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
28852
- __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
28853
- __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
28854
- __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_7(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_7); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
28859
+ __pyx_ptype_5numpy_dtype = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArray_Descr),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 202, __pyx_L1_error)
28860
+ __pyx_ptype_5numpy_flatiter = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 225, __pyx_L1_error)
28861
+ __pyx_ptype_5numpy_broadcast = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayMultiIterObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 229, __pyx_L1_error)
28862
+ __pyx_ptype_5numpy_ndarray = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyArrayObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 238, __pyx_L1_error)
28863
+ __pyx_ptype_5numpy_generic = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_generic) __PYX_ERR(2, 809, __pyx_L1_error)
28864
+ __pyx_ptype_5numpy_number = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "number", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_number) __PYX_ERR(2, 811, __pyx_L1_error)
28865
+ __pyx_ptype_5numpy_integer = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_integer) __PYX_ERR(2, 813, __pyx_L1_error)
28866
+ __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(2, 815, __pyx_L1_error)
28867
+ __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(2, 817, __pyx_L1_error)
28868
+ __pyx_ptype_5numpy_inexact = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(2, 819, __pyx_L1_error)
28869
+ __pyx_ptype_5numpy_floating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_floating) __PYX_ERR(2, 821, __pyx_L1_error)
28870
+ __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(2, 823, __pyx_L1_error)
28871
+ __pyx_ptype_5numpy_flexible = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(2, 825, __pyx_L1_error)
28872
+ __pyx_ptype_5numpy_character = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "character", sizeof(PyObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyObject),__Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_5numpy_character) __PYX_ERR(2, 827, __pyx_L1_error)
28873
+ __pyx_ptype_5numpy_ufunc = __Pyx_ImportType_3_0_10(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyUFuncObject),__Pyx_ImportType_CheckSize_Ignore_3_0_10); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 866, __pyx_L1_error)
28855
28874
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
28856
28875
  __Pyx_RefNannyFinishContext();
28857
28876
  return 0;
@@ -30425,11 +30444,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
30425
30444
  {
30426
30445
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
30427
30446
  if (unlikely(eq != 0)) {
30428
- if (unlikely(eq < 0)) return NULL; // error
30447
+ if (unlikely(eq < 0)) return NULL;
30429
30448
  return kwvalues[i];
30430
30449
  }
30431
30450
  }
30432
- return NULL; // not found (no exception set)
30451
+ return NULL;
30433
30452
  }
30434
30453
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
30435
30454
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -30542,7 +30561,7 @@ static int __Pyx_ParseOptionalKeywords(
30542
30561
  if (*name) {
30543
30562
  values[name-argnames] = value;
30544
30563
  #if CYTHON_AVOID_BORROWED_REFS
30545
- Py_INCREF(value); // transfer ownership of value to values
30564
+ Py_INCREF(value);
30546
30565
  Py_DECREF(key);
30547
30566
  #endif
30548
30567
  key = NULL;
@@ -30561,7 +30580,7 @@ static int __Pyx_ParseOptionalKeywords(
30561
30580
  && _PyString_Eq(**name, key)) {
30562
30581
  values[name-argnames] = value;
30563
30582
  #if CYTHON_AVOID_BORROWED_REFS
30564
- value = NULL; // ownership transferred to values
30583
+ value = NULL;
30565
30584
  #endif
30566
30585
  break;
30567
30586
  }
@@ -30593,7 +30612,7 @@ static int __Pyx_ParseOptionalKeywords(
30593
30612
  if (cmp == 0) {
30594
30613
  values[name-argnames] = value;
30595
30614
  #if CYTHON_AVOID_BORROWED_REFS
30596
- value = NULL; // ownership transferred to values
30615
+ value = NULL;
30597
30616
  #endif
30598
30617
  break;
30599
30618
  }
@@ -32965,9 +32984,10 @@ static PyObject* __Pyx_PyInt_SubtractObjC(PyObject *op1, PyObject *op2, long int
32965
32984
 
32966
32985
  /* IterFinish */
32967
32986
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
32987
+ PyObject* exc_type;
32968
32988
  __Pyx_PyThreadState_declare
32969
32989
  __Pyx_PyThreadState_assign
32970
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
32990
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
32971
32991
  if (unlikely(exc_type)) {
32972
32992
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
32973
32993
  return -1;
@@ -33611,10 +33631,10 @@ __PYX_GOOD:
33611
33631
  #endif
33612
33632
 
33613
33633
  /* TypeImport */
33614
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
33615
- #define __PYX_HAVE_RT_ImportType_3_0_7
33616
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
33617
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
33634
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
33635
+ #define __PYX_HAVE_RT_ImportType_3_0_10
33636
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
33637
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
33618
33638
  {
33619
33639
  PyObject *result = 0;
33620
33640
  char warning[200];
@@ -33668,7 +33688,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
33668
33688
  module_name, class_name, size, basicsize+itemsize);
33669
33689
  goto bad;
33670
33690
  }
33671
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
33691
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
33672
33692
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
33673
33693
  PyErr_Format(PyExc_ValueError,
33674
33694
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -33676,7 +33696,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
33676
33696
  module_name, class_name, size, basicsize, basicsize+itemsize);
33677
33697
  goto bad;
33678
33698
  }
33679
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
33699
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
33680
33700
  PyOS_snprintf(warning, sizeof(warning),
33681
33701
  "%s.%s size changed, may indicate binary incompatibility. "
33682
33702
  "Expected %zd from C header, got %zd from PyObject",
@@ -34676,7 +34696,7 @@ static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS(PyObject *func,
34676
34696
  default:
34677
34697
  return NULL;
34678
34698
  }
34679
- return ((_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
34699
+ return ((__Pyx_PyCFunctionFastWithKeywords)(void(*)(void))def->ml_meth)(self, args, nargs, kwnames);
34680
34700
  }
34681
34701
  static PyObject * __Pyx_CyFunction_Vectorcall_FASTCALL_KEYWORDS_METHOD(PyObject *func, PyObject *const *args, size_t nargsf, PyObject *kwnames)
34682
34702
  {
@@ -35135,7 +35155,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
35135
35155
  #else
35136
35156
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
35137
35157
  #endif
35138
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
35158
+ Py_XDECREF(py_funcname);
35139
35159
  return py_code;
35140
35160
  bad:
35141
35161
  Py_XDECREF(py_funcname);