biotite 0.39.0__cp312-cp312-win_amd64.whl → 0.41.0__cp312-cp312-win_amd64.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 (121) hide show
  1. biotite/__init__.py +3 -3
  2. biotite/application/dssp/app.py +18 -18
  3. biotite/database/pubchem/download.py +23 -23
  4. biotite/database/pubchem/query.py +7 -7
  5. biotite/database/rcsb/download.py +19 -14
  6. biotite/file.py +17 -9
  7. biotite/sequence/align/banded.c +256 -235
  8. biotite/sequence/align/banded.cp312-win_amd64.pyd +0 -0
  9. biotite/sequence/align/cigar.py +60 -15
  10. biotite/sequence/align/kmeralphabet.c +241 -220
  11. biotite/sequence/align/kmeralphabet.cp312-win_amd64.pyd +0 -0
  12. biotite/sequence/align/kmersimilarity.c +213 -194
  13. biotite/sequence/align/kmersimilarity.cp312-win_amd64.pyd +0 -0
  14. biotite/sequence/align/kmertable.cp312-win_amd64.pyd +0 -0
  15. biotite/sequence/align/kmertable.cpp +231 -203
  16. biotite/sequence/align/localgapped.c +256 -235
  17. biotite/sequence/align/localgapped.cp312-win_amd64.pyd +0 -0
  18. biotite/sequence/align/localungapped.c +233 -212
  19. biotite/sequence/align/localungapped.cp312-win_amd64.pyd +0 -0
  20. biotite/sequence/align/multiple.c +253 -232
  21. biotite/sequence/align/multiple.cp312-win_amd64.pyd +0 -0
  22. biotite/sequence/align/pairwise.c +272 -251
  23. biotite/sequence/align/pairwise.cp312-win_amd64.pyd +0 -0
  24. biotite/sequence/align/permutation.c +213 -194
  25. biotite/sequence/align/permutation.cp312-win_amd64.pyd +0 -0
  26. biotite/sequence/align/selector.c +215 -195
  27. biotite/sequence/align/selector.cp312-win_amd64.pyd +0 -0
  28. biotite/sequence/align/tracetable.c +213 -193
  29. biotite/sequence/align/tracetable.cp312-win_amd64.pyd +0 -0
  30. biotite/sequence/annotation.py +2 -2
  31. biotite/sequence/codec.c +233 -212
  32. biotite/sequence/codec.cp312-win_amd64.pyd +0 -0
  33. biotite/sequence/io/fasta/convert.py +27 -24
  34. biotite/sequence/phylo/nj.c +213 -194
  35. biotite/sequence/phylo/nj.cp312-win_amd64.pyd +0 -0
  36. biotite/sequence/phylo/tree.c +225 -200
  37. biotite/sequence/phylo/tree.cp312-win_amd64.pyd +0 -0
  38. biotite/sequence/phylo/upgma.c +213 -194
  39. biotite/sequence/phylo/upgma.cp312-win_amd64.pyd +0 -0
  40. biotite/structure/__init__.py +2 -0
  41. biotite/structure/basepairs.py +7 -12
  42. biotite/structure/bonds.c +1435 -1277
  43. biotite/structure/bonds.cp312-win_amd64.pyd +0 -0
  44. biotite/structure/celllist.c +215 -195
  45. biotite/structure/celllist.cp312-win_amd64.pyd +0 -0
  46. biotite/structure/charges.c +1050 -1099
  47. biotite/structure/charges.cp312-win_amd64.pyd +0 -0
  48. biotite/structure/dotbracket.py +2 -0
  49. biotite/structure/filter.py +30 -37
  50. biotite/structure/info/__init__.py +5 -8
  51. biotite/structure/info/atoms.py +31 -68
  52. biotite/structure/info/bonds.py +47 -101
  53. biotite/structure/info/ccd/README.rst +8 -0
  54. biotite/structure/info/ccd/amino_acids.txt +1663 -0
  55. biotite/structure/info/ccd/carbohydrates.txt +1135 -0
  56. biotite/structure/info/ccd/components.bcif +0 -0
  57. biotite/structure/info/ccd/nucleotides.txt +798 -0
  58. biotite/structure/info/ccd.py +95 -0
  59. biotite/structure/info/groups.py +90 -0
  60. biotite/structure/info/masses.py +21 -20
  61. biotite/structure/info/misc.py +78 -25
  62. biotite/structure/info/standardize.py +17 -12
  63. biotite/structure/integrity.py +19 -70
  64. biotite/structure/io/__init__.py +2 -4
  65. biotite/structure/io/ctab.py +12 -106
  66. biotite/structure/io/general.py +167 -181
  67. biotite/structure/io/gro/file.py +16 -16
  68. biotite/structure/io/mmtf/__init__.py +3 -0
  69. biotite/structure/io/mmtf/convertarray.c +217 -196
  70. biotite/structure/io/mmtf/convertarray.cp312-win_amd64.pyd +0 -0
  71. biotite/structure/io/mmtf/convertfile.c +215 -195
  72. biotite/structure/io/mmtf/convertfile.cp312-win_amd64.pyd +0 -0
  73. biotite/structure/io/mmtf/decode.c +223 -202
  74. biotite/structure/io/mmtf/decode.cp312-win_amd64.pyd +0 -0
  75. biotite/structure/io/mmtf/encode.c +213 -194
  76. biotite/structure/io/mmtf/encode.cp312-win_amd64.pyd +0 -0
  77. biotite/structure/io/mmtf/file.py +34 -26
  78. biotite/structure/io/mol/__init__.py +4 -2
  79. biotite/structure/io/mol/convert.py +71 -7
  80. biotite/structure/io/mol/ctab.py +414 -0
  81. biotite/structure/io/mol/header.py +116 -0
  82. biotite/structure/io/mol/{file.py → mol.py} +69 -82
  83. biotite/structure/io/mol/sdf.py +909 -0
  84. biotite/structure/io/npz/__init__.py +3 -0
  85. biotite/structure/io/npz/file.py +21 -18
  86. biotite/structure/io/pdb/__init__.py +3 -3
  87. biotite/structure/io/pdb/file.py +89 -34
  88. biotite/structure/io/pdb/hybrid36.c +63 -43
  89. biotite/structure/io/pdb/hybrid36.cp312-win_amd64.pyd +0 -0
  90. biotite/structure/io/pdbqt/file.py +32 -32
  91. biotite/structure/io/pdbx/__init__.py +12 -6
  92. biotite/structure/io/pdbx/bcif.py +648 -0
  93. biotite/structure/io/pdbx/cif.py +1032 -0
  94. biotite/structure/io/pdbx/component.py +246 -0
  95. biotite/structure/io/pdbx/convert.py +858 -386
  96. biotite/structure/io/pdbx/encoding.c +112803 -0
  97. biotite/structure/io/pdbx/encoding.cp312-win_amd64.pyd +0 -0
  98. biotite/structure/io/pdbx/legacy.py +267 -0
  99. biotite/structure/molecules.py +151 -151
  100. biotite/structure/repair.py +253 -0
  101. biotite/structure/sasa.c +213 -194
  102. biotite/structure/sasa.cp312-win_amd64.pyd +0 -0
  103. biotite/structure/sequence.py +112 -0
  104. biotite/structure/superimpose.py +618 -116
  105. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/METADATA +3 -3
  106. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/RECORD +109 -103
  107. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/WHEEL +1 -1
  108. biotite/structure/info/amino_acids.json +0 -1556
  109. biotite/structure/info/amino_acids.py +0 -42
  110. biotite/structure/info/carbohydrates.json +0 -1122
  111. biotite/structure/info/carbohydrates.py +0 -39
  112. biotite/structure/info/intra_bonds.msgpack +0 -0
  113. biotite/structure/info/link_types.msgpack +0 -1
  114. biotite/structure/info/nucleotides.json +0 -772
  115. biotite/structure/info/nucleotides.py +0 -39
  116. biotite/structure/info/residue_masses.msgpack +0 -0
  117. biotite/structure/info/residue_names.msgpack +0 -3
  118. biotite/structure/info/residues.msgpack +0 -0
  119. biotite/structure/io/pdbx/file.py +0 -652
  120. {biotite-0.39.0.dist-info → biotite-0.41.0.dist-info}/LICENSE.rst +0 -0
  121. {biotite-0.39.0.dist-info → biotite-0.41.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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":730
1666
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":731
1675
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":732
1684
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":733
1693
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":737
1702
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":738
1711
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":739
1720
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":740
1729
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":744
1738
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":745
1747
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":754
1756
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":755
1765
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":757
1774
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":758
1783
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":760
1792
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":761
1801
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":763
1810
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":764
1819
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":765
1828
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/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 # <<<<<<<<<<<<<<
@@ -1848,7 +1866,7 @@ struct __pyx_MemviewEnum_obj;
1848
1866
  struct __pyx_memoryview_obj;
1849
1867
  struct __pyx_memoryviewslice_obj;
1850
1868
 
1851
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1869
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":767
1852
1870
  * ctypedef npy_longdouble longdouble_t
1853
1871
  *
1854
1872
  * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<<
@@ -1857,7 +1875,7 @@ struct __pyx_memoryviewslice_obj;
1857
1875
  */
1858
1876
  typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1859
1877
 
1860
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1878
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":768
1861
1879
  *
1862
1880
  * ctypedef npy_cfloat cfloat_t
1863
1881
  * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<<
@@ -1866,7 +1884,7 @@ typedef npy_cfloat __pyx_t_5numpy_cfloat_t;
1866
1884
  */
1867
1885
  typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1868
1886
 
1869
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1887
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":769
1870
1888
  * ctypedef npy_cfloat cfloat_t
1871
1889
  * ctypedef npy_cdouble cdouble_t
1872
1890
  * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<<
@@ -1875,7 +1893,7 @@ typedef npy_cdouble __pyx_t_5numpy_cdouble_t;
1875
1893
  */
1876
1894
  typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t;
1877
1895
 
1878
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1896
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":771
1879
1897
  * ctypedef npy_clongdouble clongdouble_t
1880
1898
  *
1881
1899
  * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<<
@@ -2225,8 +2243,8 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2225
2243
  #define __Pyx_Arg_NewRef_VARARGS(arg) __Pyx_NewRef(arg)
2226
2244
  #define __Pyx_Arg_XDECREF_VARARGS(arg) Py_XDECREF(arg)
2227
2245
  #else
2228
- #define __Pyx_Arg_NewRef_VARARGS(arg) arg // no-op
2229
- #define __Pyx_Arg_XDECREF_VARARGS(arg) // no-op - arg is borrowed
2246
+ #define __Pyx_Arg_NewRef_VARARGS(arg) arg
2247
+ #define __Pyx_Arg_XDECREF_VARARGS(arg)
2230
2248
  #endif
2231
2249
  #define __Pyx_NumKwargs_VARARGS(kwds) PyDict_Size(kwds)
2232
2250
  #define __Pyx_KwValues_VARARGS(args, nargs) NULL
@@ -2242,8 +2260,9 @@ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int
2242
2260
  #else
2243
2261
  #define __Pyx_KwargsAsDict_FASTCALL(kw, kwvalues) _PyStack_AsDict(kwvalues, kw)
2244
2262
  #endif
2245
- #define __Pyx_Arg_NewRef_FASTCALL(arg) arg // no-op, __Pyx_Arg_FASTCALL is direct and this needs
2246
- #define __Pyx_Arg_XDECREF_FASTCALL(arg) // no-op - arg was returned from array
2263
+ #define __Pyx_Arg_NewRef_FASTCALL(arg) arg /* no-op, __Pyx_Arg_FASTCALL is direct and this needs
2264
+ to have the same reference counting */
2265
+ #define __Pyx_Arg_XDECREF_FASTCALL(arg)
2247
2266
  #else
2248
2267
  #define __Pyx_Arg_FASTCALL __Pyx_Arg_VARARGS
2249
2268
  #define __Pyx_NumKwargs_FASTCALL __Pyx_NumKwargs_VARARGS
@@ -2730,22 +2749,22 @@ static int __Pyx_setup_reduce(PyObject* type_obj);
2730
2749
  #endif
2731
2750
 
2732
2751
  /* TypeImport.proto */
2733
- #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_7
2734
- #define __PYX_HAVE_RT_ImportType_proto_3_0_7
2752
+ #ifndef __PYX_HAVE_RT_ImportType_proto_3_0_10
2753
+ #define __PYX_HAVE_RT_ImportType_proto_3_0_10
2735
2754
  #if defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L
2736
2755
  #include <stdalign.h>
2737
2756
  #endif
2738
2757
  #if (defined (__STDC_VERSION__) && __STDC_VERSION__ >= 201112L) || __cplusplus >= 201103L
2739
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) alignof(s)
2758
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) alignof(s)
2740
2759
  #else
2741
- #define __PYX_GET_STRUCT_ALIGNMENT_3_0_7(s) sizeof(void*)
2760
+ #define __PYX_GET_STRUCT_ALIGNMENT_3_0_10(s) sizeof(void*)
2742
2761
  #endif
2743
- enum __Pyx_ImportType_CheckSize_3_0_7 {
2744
- __Pyx_ImportType_CheckSize_Error_3_0_7 = 0,
2745
- __Pyx_ImportType_CheckSize_Warn_3_0_7 = 1,
2746
- __Pyx_ImportType_CheckSize_Ignore_3_0_7 = 2
2762
+ enum __Pyx_ImportType_CheckSize_3_0_10 {
2763
+ __Pyx_ImportType_CheckSize_Error_3_0_10 = 0,
2764
+ __Pyx_ImportType_CheckSize_Warn_3_0_10 = 1,
2765
+ __Pyx_ImportType_CheckSize_Ignore_3_0_10 = 2
2747
2766
  };
2748
- 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);
2767
+ 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);
2749
2768
  #endif
2750
2769
 
2751
2770
  /* CLineInTraceback.proto */
@@ -17798,7 +17817,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
17798
17817
  return __pyx_r;
17799
17818
  }
17800
17819
 
17801
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
17820
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
17802
17821
  *
17803
17822
  * @property
17804
17823
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -17809,7 +17828,7 @@ static PyObject *__pyx_unpickle_Enum__set_state(struct __pyx_MemviewEnum_obj *__
17809
17828
  static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject *__pyx_v_self) {
17810
17829
  PyObject *__pyx_r;
17811
17830
 
17812
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
17831
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":248
17813
17832
  * """Returns a borrowed reference to the object owning the data/memory.
17814
17833
  * """
17815
17834
  * return PyArray_BASE(self) # <<<<<<<<<<<<<<
@@ -17819,7 +17838,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
17819
17838
  __pyx_r = PyArray_BASE(__pyx_v_self);
17820
17839
  goto __pyx_L0;
17821
17840
 
17822
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
17841
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":245
17823
17842
  *
17824
17843
  * @property
17825
17844
  * cdef inline PyObject* base(self) nogil: # <<<<<<<<<<<<<<
@@ -17832,7 +17851,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_7ndarray_4base_base(PyArrayObject
17832
17851
  return __pyx_r;
17833
17852
  }
17834
17853
 
17835
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
17854
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
17836
17855
  *
17837
17856
  * @property
17838
17857
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -17846,7 +17865,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
17846
17865
  PyArray_Descr *__pyx_t_1;
17847
17866
  __Pyx_RefNannySetupContext("descr", 1);
17848
17867
 
17849
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
17868
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":254
17850
17869
  * """Returns an owned reference to the dtype of the array.
17851
17870
  * """
17852
17871
  * return <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<<
@@ -17859,7 +17878,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
17859
17878
  __pyx_r = ((PyArray_Descr *)__pyx_t_1);
17860
17879
  goto __pyx_L0;
17861
17880
 
17862
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
17881
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":251
17863
17882
  *
17864
17883
  * @property
17865
17884
  * cdef inline dtype descr(self): # <<<<<<<<<<<<<<
@@ -17874,7 +17893,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
17874
17893
  return __pyx_r;
17875
17894
  }
17876
17895
 
17877
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
17896
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
17878
17897
  *
17879
17898
  * @property
17880
17899
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -17885,7 +17904,7 @@ static CYTHON_INLINE PyArray_Descr *__pyx_f_5numpy_7ndarray_5descr_descr(PyArray
17885
17904
  static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx_v_self) {
17886
17905
  int __pyx_r;
17887
17906
 
17888
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
17907
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":260
17889
17908
  * """Returns the number of dimensions in the array.
17890
17909
  * """
17891
17910
  * return PyArray_NDIM(self) # <<<<<<<<<<<<<<
@@ -17895,7 +17914,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
17895
17914
  __pyx_r = PyArray_NDIM(__pyx_v_self);
17896
17915
  goto __pyx_L0;
17897
17916
 
17898
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
17917
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":257
17899
17918
  *
17900
17919
  * @property
17901
17920
  * cdef inline int ndim(self) nogil: # <<<<<<<<<<<<<<
@@ -17908,7 +17927,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
17908
17927
  return __pyx_r;
17909
17928
  }
17910
17929
 
17911
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
17930
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
17912
17931
  *
17913
17932
  * @property
17914
17933
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -17919,7 +17938,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_7ndarray_4ndim_ndim(PyArrayObject *__pyx
17919
17938
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObject *__pyx_v_self) {
17920
17939
  npy_intp *__pyx_r;
17921
17940
 
17922
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
17941
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":268
17923
17942
  * Can return NULL for 0-dimensional arrays.
17924
17943
  * """
17925
17944
  * return PyArray_DIMS(self) # <<<<<<<<<<<<<<
@@ -17929,7 +17948,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
17929
17948
  __pyx_r = PyArray_DIMS(__pyx_v_self);
17930
17949
  goto __pyx_L0;
17931
17950
 
17932
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
17951
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":263
17933
17952
  *
17934
17953
  * @property
17935
17954
  * cdef inline npy_intp *shape(self) nogil: # <<<<<<<<<<<<<<
@@ -17942,7 +17961,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
17942
17961
  return __pyx_r;
17943
17962
  }
17944
17963
 
17945
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
17964
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
17946
17965
  *
17947
17966
  * @property
17948
17967
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -17953,7 +17972,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_5shape_shape(PyArrayObjec
17953
17972
  static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayObject *__pyx_v_self) {
17954
17973
  npy_intp *__pyx_r;
17955
17974
 
17956
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
17975
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":275
17957
17976
  * The number of elements matches the number of dimensions of the array (ndim).
17958
17977
  * """
17959
17978
  * return PyArray_STRIDES(self) # <<<<<<<<<<<<<<
@@ -17963,7 +17982,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
17963
17982
  __pyx_r = PyArray_STRIDES(__pyx_v_self);
17964
17983
  goto __pyx_L0;
17965
17984
 
17966
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
17985
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":271
17967
17986
  *
17968
17987
  * @property
17969
17988
  * cdef inline npy_intp *strides(self) nogil: # <<<<<<<<<<<<<<
@@ -17976,7 +17995,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
17976
17995
  return __pyx_r;
17977
17996
  }
17978
17997
 
17979
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
17998
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
17980
17999
  *
17981
18000
  * @property
17982
18001
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -17987,7 +18006,7 @@ static CYTHON_INLINE npy_intp *__pyx_f_5numpy_7ndarray_7strides_strides(PyArrayO
17987
18006
  static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *__pyx_v_self) {
17988
18007
  npy_intp __pyx_r;
17989
18008
 
17990
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
18009
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":281
17991
18010
  * """Returns the total size (in number of elements) of the array.
17992
18011
  * """
17993
18012
  * return PyArray_SIZE(self) # <<<<<<<<<<<<<<
@@ -17997,7 +18016,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
17997
18016
  __pyx_r = PyArray_SIZE(__pyx_v_self);
17998
18017
  goto __pyx_L0;
17999
18018
 
18000
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18019
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":278
18001
18020
  *
18002
18021
  * @property
18003
18022
  * cdef inline npy_intp size(self) nogil: # <<<<<<<<<<<<<<
@@ -18010,7 +18029,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18010
18029
  return __pyx_r;
18011
18030
  }
18012
18031
 
18013
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18032
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18014
18033
  *
18015
18034
  * @property
18016
18035
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18021,7 +18040,7 @@ static CYTHON_INLINE npy_intp __pyx_f_5numpy_7ndarray_4size_size(PyArrayObject *
18021
18040
  static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__pyx_v_self) {
18022
18041
  char *__pyx_r;
18023
18042
 
18024
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18043
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":290
18025
18044
  * of `PyArray_DATA()` instead, which returns a 'void*'.
18026
18045
  * """
18027
18046
  * return PyArray_BYTES(self) # <<<<<<<<<<<<<<
@@ -18031,7 +18050,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18031
18050
  __pyx_r = PyArray_BYTES(__pyx_v_self);
18032
18051
  goto __pyx_L0;
18033
18052
 
18034
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18053
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":284
18035
18054
  *
18036
18055
  * @property
18037
18056
  * cdef inline char* data(self) nogil: # <<<<<<<<<<<<<<
@@ -18044,7 +18063,7 @@ static CYTHON_INLINE char *__pyx_f_5numpy_7ndarray_4data_data(PyArrayObject *__p
18044
18063
  return __pyx_r;
18045
18064
  }
18046
18065
 
18047
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18066
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18048
18067
  * ctypedef npy_cdouble complex_t
18049
18068
  *
18050
18069
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18061,7 +18080,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18061
18080
  int __pyx_clineno = 0;
18062
18081
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 1);
18063
18082
 
18064
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
18083
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":774
18065
18084
  *
18066
18085
  * cdef inline object PyArray_MultiIterNew1(a):
18067
18086
  * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<<
@@ -18075,7 +18094,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18075
18094
  __pyx_t_1 = 0;
18076
18095
  goto __pyx_L0;
18077
18096
 
18078
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18097
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":773
18079
18098
  * ctypedef npy_cdouble complex_t
18080
18099
  *
18081
18100
  * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<<
@@ -18094,7 +18113,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__
18094
18113
  return __pyx_r;
18095
18114
  }
18096
18115
 
18097
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18116
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18098
18117
  * return PyArray_MultiIterNew(1, <void*>a)
18099
18118
  *
18100
18119
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18111,7 +18130,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18111
18130
  int __pyx_clineno = 0;
18112
18131
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 1);
18113
18132
 
18114
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18133
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":777
18115
18134
  *
18116
18135
  * cdef inline object PyArray_MultiIterNew2(a, b):
18117
18136
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<<
@@ -18125,7 +18144,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18125
18144
  __pyx_t_1 = 0;
18126
18145
  goto __pyx_L0;
18127
18146
 
18128
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18147
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":776
18129
18148
  * return PyArray_MultiIterNew(1, <void*>a)
18130
18149
  *
18131
18150
  * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<<
@@ -18144,7 +18163,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__
18144
18163
  return __pyx_r;
18145
18164
  }
18146
18165
 
18147
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18166
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18148
18167
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18149
18168
  *
18150
18169
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18161,7 +18180,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18161
18180
  int __pyx_clineno = 0;
18162
18181
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 1);
18163
18182
 
18164
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18183
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":780
18165
18184
  *
18166
18185
  * cdef inline object PyArray_MultiIterNew3(a, b, c):
18167
18186
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<<
@@ -18175,7 +18194,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18175
18194
  __pyx_t_1 = 0;
18176
18195
  goto __pyx_L0;
18177
18196
 
18178
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18197
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":779
18179
18198
  * return PyArray_MultiIterNew(2, <void*>a, <void*>b)
18180
18199
  *
18181
18200
  * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<<
@@ -18194,7 +18213,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__
18194
18213
  return __pyx_r;
18195
18214
  }
18196
18215
 
18197
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18216
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18198
18217
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18199
18218
  *
18200
18219
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18211,7 +18230,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18211
18230
  int __pyx_clineno = 0;
18212
18231
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 1);
18213
18232
 
18214
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18233
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":783
18215
18234
  *
18216
18235
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d):
18217
18236
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<<
@@ -18225,7 +18244,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18225
18244
  __pyx_t_1 = 0;
18226
18245
  goto __pyx_L0;
18227
18246
 
18228
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18247
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":782
18229
18248
  * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c)
18230
18249
  *
18231
18250
  * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<<
@@ -18244,7 +18263,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__
18244
18263
  return __pyx_r;
18245
18264
  }
18246
18265
 
18247
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18266
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18248
18267
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18249
18268
  *
18250
18269
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18261,7 +18280,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18261
18280
  int __pyx_clineno = 0;
18262
18281
  __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 1);
18263
18282
 
18264
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18283
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":786
18265
18284
  *
18266
18285
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e):
18267
18286
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<<
@@ -18275,7 +18294,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18275
18294
  __pyx_t_1 = 0;
18276
18295
  goto __pyx_L0;
18277
18296
 
18278
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18297
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":785
18279
18298
  * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d)
18280
18299
  *
18281
18300
  * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<<
@@ -18294,7 +18313,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__
18294
18313
  return __pyx_r;
18295
18314
  }
18296
18315
 
18297
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18316
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18298
18317
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18299
18318
  *
18300
18319
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18308,7 +18327,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18308
18327
  int __pyx_t_1;
18309
18328
  __Pyx_RefNannySetupContext("PyDataType_SHAPE", 1);
18310
18329
 
18311
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18330
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18312
18331
  *
18313
18332
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18314
18333
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18318,7 +18337,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18318
18337
  __pyx_t_1 = PyDataType_HASSUBARRAY(__pyx_v_d);
18319
18338
  if (__pyx_t_1) {
18320
18339
 
18321
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
18340
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":790
18322
18341
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18323
18342
  * if PyDataType_HASSUBARRAY(d):
18324
18343
  * return <tuple>d.subarray.shape # <<<<<<<<<<<<<<
@@ -18330,7 +18349,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18330
18349
  __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape);
18331
18350
  goto __pyx_L0;
18332
18351
 
18333
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18352
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":789
18334
18353
  *
18335
18354
  * cdef inline tuple PyDataType_SHAPE(dtype d):
18336
18355
  * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<<
@@ -18339,7 +18358,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18339
18358
  */
18340
18359
  }
18341
18360
 
18342
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18361
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":792
18343
18362
  * return <tuple>d.subarray.shape
18344
18363
  * else:
18345
18364
  * return () # <<<<<<<<<<<<<<
@@ -18353,7 +18372,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18353
18372
  goto __pyx_L0;
18354
18373
  }
18355
18374
 
18356
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18375
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":788
18357
18376
  * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e)
18358
18377
  *
18359
18378
  * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<<
@@ -18368,7 +18387,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__
18368
18387
  return __pyx_r;
18369
18388
  }
18370
18389
 
18371
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
18390
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
18372
18391
  * int _import_umath() except -1
18373
18392
  *
18374
18393
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18382,7 +18401,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18382
18401
  const char *__pyx_filename = NULL;
18383
18402
  int __pyx_clineno = 0;
18384
18403
 
18385
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
18404
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":969
18386
18405
  *
18387
18406
  * cdef inline void set_array_base(ndarray arr, object base):
18388
18407
  * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<<
@@ -18391,7 +18410,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18391
18410
  */
18392
18411
  Py_INCREF(__pyx_v_base);
18393
18412
 
18394
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
18413
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":970
18395
18414
  * cdef inline void set_array_base(ndarray arr, object base):
18396
18415
  * Py_INCREF(base) # important to do this before stealing the reference below!
18397
18416
  * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<<
@@ -18400,7 +18419,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18400
18419
  */
18401
18420
  __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)
18402
18421
 
18403
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
18422
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":968
18404
18423
  * int _import_umath() except -1
18405
18424
  *
18406
18425
  * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<<
@@ -18415,7 +18434,7 @@ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_a
18415
18434
  __pyx_L0:;
18416
18435
  }
18417
18436
 
18418
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18437
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18419
18438
  * PyArray_SetBaseObject(arr, base)
18420
18439
  *
18421
18440
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18430,7 +18449,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18430
18449
  int __pyx_t_1;
18431
18450
  __Pyx_RefNannySetupContext("get_array_base", 1);
18432
18451
 
18433
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
18452
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":973
18434
18453
  *
18435
18454
  * cdef inline object get_array_base(ndarray arr):
18436
18455
  * base = PyArray_BASE(arr) # <<<<<<<<<<<<<<
@@ -18439,7 +18458,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18439
18458
  */
18440
18459
  __pyx_v_base = PyArray_BASE(__pyx_v_arr);
18441
18460
 
18442
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18461
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18443
18462
  * cdef inline object get_array_base(ndarray arr):
18444
18463
  * base = PyArray_BASE(arr)
18445
18464
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18449,7 +18468,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18449
18468
  __pyx_t_1 = (__pyx_v_base == NULL);
18450
18469
  if (__pyx_t_1) {
18451
18470
 
18452
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18471
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":975
18453
18472
  * base = PyArray_BASE(arr)
18454
18473
  * if base is NULL:
18455
18474
  * return None # <<<<<<<<<<<<<<
@@ -18460,7 +18479,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18460
18479
  __pyx_r = Py_None; __Pyx_INCREF(Py_None);
18461
18480
  goto __pyx_L0;
18462
18481
 
18463
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18482
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":974
18464
18483
  * cdef inline object get_array_base(ndarray arr):
18465
18484
  * base = PyArray_BASE(arr)
18466
18485
  * if base is NULL: # <<<<<<<<<<<<<<
@@ -18469,7 +18488,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18469
18488
  */
18470
18489
  }
18471
18490
 
18472
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18491
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":976
18473
18492
  * if base is NULL:
18474
18493
  * return None
18475
18494
  * return <object>base # <<<<<<<<<<<<<<
@@ -18481,7 +18500,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18481
18500
  __pyx_r = ((PyObject *)__pyx_v_base);
18482
18501
  goto __pyx_L0;
18483
18502
 
18484
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18503
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":972
18485
18504
  * PyArray_SetBaseObject(arr, base)
18486
18505
  *
18487
18506
  * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<<
@@ -18496,7 +18515,7 @@ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__py
18496
18515
  return __pyx_r;
18497
18516
  }
18498
18517
 
18499
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
18518
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
18500
18519
  * # Versions of the import_* functions which are more suitable for
18501
18520
  * # Cython code.
18502
18521
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -18520,7 +18539,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18520
18539
  int __pyx_clineno = 0;
18521
18540
  __Pyx_RefNannySetupContext("import_array", 1);
18522
18541
 
18523
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18542
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18524
18543
  * # Cython code.
18525
18544
  * cdef inline int import_array() except -1:
18526
18545
  * try: # <<<<<<<<<<<<<<
@@ -18536,7 +18555,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18536
18555
  __Pyx_XGOTREF(__pyx_t_3);
18537
18556
  /*try:*/ {
18538
18557
 
18539
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
18558
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":982
18540
18559
  * cdef inline int import_array() except -1:
18541
18560
  * try:
18542
18561
  * __pyx_import_array() # <<<<<<<<<<<<<<
@@ -18545,7 +18564,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18545
18564
  */
18546
18565
  __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 982, __pyx_L3_error)
18547
18566
 
18548
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18567
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18549
18568
  * # Cython code.
18550
18569
  * cdef inline int import_array() except -1:
18551
18570
  * try: # <<<<<<<<<<<<<<
@@ -18559,7 +18578,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18559
18578
  goto __pyx_L8_try_end;
18560
18579
  __pyx_L3_error:;
18561
18580
 
18562
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18581
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":983
18563
18582
  * try:
18564
18583
  * __pyx_import_array()
18565
18584
  * except Exception: # <<<<<<<<<<<<<<
@@ -18574,7 +18593,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18574
18593
  __Pyx_XGOTREF(__pyx_t_6);
18575
18594
  __Pyx_XGOTREF(__pyx_t_7);
18576
18595
 
18577
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18596
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
18578
18597
  * __pyx_import_array()
18579
18598
  * except Exception:
18580
18599
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -18589,7 +18608,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18589
18608
  }
18590
18609
  goto __pyx_L5_except_error;
18591
18610
 
18592
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18611
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":981
18593
18612
  * # Cython code.
18594
18613
  * cdef inline int import_array() except -1:
18595
18614
  * try: # <<<<<<<<<<<<<<
@@ -18605,7 +18624,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18605
18624
  __pyx_L8_try_end:;
18606
18625
  }
18607
18626
 
18608
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
18627
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":980
18609
18628
  * # Versions of the import_* functions which are more suitable for
18610
18629
  * # Cython code.
18611
18630
  * cdef inline int import_array() except -1: # <<<<<<<<<<<<<<
@@ -18628,7 +18647,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) {
18628
18647
  return __pyx_r;
18629
18648
  }
18630
18649
 
18631
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
18650
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
18632
18651
  * raise ImportError("numpy.core.multiarray failed to import")
18633
18652
  *
18634
18653
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -18652,7 +18671,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18652
18671
  int __pyx_clineno = 0;
18653
18672
  __Pyx_RefNannySetupContext("import_umath", 1);
18654
18673
 
18655
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
18674
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
18656
18675
  *
18657
18676
  * cdef inline int import_umath() except -1:
18658
18677
  * try: # <<<<<<<<<<<<<<
@@ -18668,7 +18687,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18668
18687
  __Pyx_XGOTREF(__pyx_t_3);
18669
18688
  /*try:*/ {
18670
18689
 
18671
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
18690
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":988
18672
18691
  * cdef inline int import_umath() except -1:
18673
18692
  * try:
18674
18693
  * _import_umath() # <<<<<<<<<<<<<<
@@ -18677,7 +18696,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18677
18696
  */
18678
18697
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 988, __pyx_L3_error)
18679
18698
 
18680
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
18699
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
18681
18700
  *
18682
18701
  * cdef inline int import_umath() except -1:
18683
18702
  * try: # <<<<<<<<<<<<<<
@@ -18691,7 +18710,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18691
18710
  goto __pyx_L8_try_end;
18692
18711
  __pyx_L3_error:;
18693
18712
 
18694
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
18713
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":989
18695
18714
  * try:
18696
18715
  * _import_umath()
18697
18716
  * except Exception: # <<<<<<<<<<<<<<
@@ -18706,7 +18725,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18706
18725
  __Pyx_XGOTREF(__pyx_t_6);
18707
18726
  __Pyx_XGOTREF(__pyx_t_7);
18708
18727
 
18709
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
18728
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
18710
18729
  * _import_umath()
18711
18730
  * except Exception:
18712
18731
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -18721,7 +18740,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18721
18740
  }
18722
18741
  goto __pyx_L5_except_error;
18723
18742
 
18724
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
18743
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":987
18725
18744
  *
18726
18745
  * cdef inline int import_umath() except -1:
18727
18746
  * try: # <<<<<<<<<<<<<<
@@ -18737,7 +18756,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18737
18756
  __pyx_L8_try_end:;
18738
18757
  }
18739
18758
 
18740
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
18759
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":986
18741
18760
  * raise ImportError("numpy.core.multiarray failed to import")
18742
18761
  *
18743
18762
  * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<<
@@ -18760,7 +18779,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) {
18760
18779
  return __pyx_r;
18761
18780
  }
18762
18781
 
18763
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
18782
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
18764
18783
  * raise ImportError("numpy.core.umath failed to import")
18765
18784
  *
18766
18785
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -18784,7 +18803,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18784
18803
  int __pyx_clineno = 0;
18785
18804
  __Pyx_RefNannySetupContext("import_ufunc", 1);
18786
18805
 
18787
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
18806
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
18788
18807
  *
18789
18808
  * cdef inline int import_ufunc() except -1:
18790
18809
  * try: # <<<<<<<<<<<<<<
@@ -18800,7 +18819,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18800
18819
  __Pyx_XGOTREF(__pyx_t_3);
18801
18820
  /*try:*/ {
18802
18821
 
18803
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
18822
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":994
18804
18823
  * cdef inline int import_ufunc() except -1:
18805
18824
  * try:
18806
18825
  * _import_umath() # <<<<<<<<<<<<<<
@@ -18809,7 +18828,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18809
18828
  */
18810
18829
  __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 994, __pyx_L3_error)
18811
18830
 
18812
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
18831
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
18813
18832
  *
18814
18833
  * cdef inline int import_ufunc() except -1:
18815
18834
  * try: # <<<<<<<<<<<<<<
@@ -18823,7 +18842,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18823
18842
  goto __pyx_L8_try_end;
18824
18843
  __pyx_L3_error:;
18825
18844
 
18826
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
18845
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":995
18827
18846
  * try:
18828
18847
  * _import_umath()
18829
18848
  * except Exception: # <<<<<<<<<<<<<<
@@ -18838,7 +18857,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18838
18857
  __Pyx_XGOTREF(__pyx_t_6);
18839
18858
  __Pyx_XGOTREF(__pyx_t_7);
18840
18859
 
18841
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
18860
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":996
18842
18861
  * _import_umath()
18843
18862
  * except Exception:
18844
18863
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -18853,7 +18872,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18853
18872
  }
18854
18873
  goto __pyx_L5_except_error;
18855
18874
 
18856
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
18875
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":993
18857
18876
  *
18858
18877
  * cdef inline int import_ufunc() except -1:
18859
18878
  * try: # <<<<<<<<<<<<<<
@@ -18869,7 +18888,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18869
18888
  __pyx_L8_try_end:;
18870
18889
  }
18871
18890
 
18872
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
18891
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":992
18873
18892
  * raise ImportError("numpy.core.umath failed to import")
18874
18893
  *
18875
18894
  * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<<
@@ -18892,7 +18911,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18892
18911
  return __pyx_r;
18893
18912
  }
18894
18913
 
18895
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
18914
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
18896
18915
  *
18897
18916
  *
18898
18917
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -18903,7 +18922,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) {
18903
18922
  static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) {
18904
18923
  int __pyx_r;
18905
18924
 
18906
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
18925
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1011
18907
18926
  * bool
18908
18927
  * """
18909
18928
  * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<<
@@ -18913,7 +18932,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
18913
18932
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type));
18914
18933
  goto __pyx_L0;
18915
18934
 
18916
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
18935
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":999
18917
18936
  *
18918
18937
  *
18919
18938
  * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<<
@@ -18926,7 +18945,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
18926
18945
  return __pyx_r;
18927
18946
  }
18928
18947
 
18929
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
18948
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
18930
18949
  *
18931
18950
  *
18932
18951
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -18937,7 +18956,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_
18937
18956
  static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) {
18938
18957
  int __pyx_r;
18939
18958
 
18940
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
18959
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1026
18941
18960
  * bool
18942
18961
  * """
18943
18962
  * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<<
@@ -18947,7 +18966,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
18947
18966
  __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type));
18948
18967
  goto __pyx_L0;
18949
18968
 
18950
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
18969
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1014
18951
18970
  *
18952
18971
  *
18953
18972
  * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<<
@@ -18960,7 +18979,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
18960
18979
  return __pyx_r;
18961
18980
  }
18962
18981
 
18963
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
18982
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
18964
18983
  *
18965
18984
  *
18966
18985
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -18971,7 +18990,7 @@ static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_o
18971
18990
  static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) {
18972
18991
  npy_datetime __pyx_r;
18973
18992
 
18974
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
18993
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1036
18975
18994
  * also needed. That can be found using `get_datetime64_unit`.
18976
18995
  * """
18977
18996
  * return (<PyDatetimeScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -18981,7 +19000,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
18981
19000
  __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval;
18982
19001
  goto __pyx_L0;
18983
19002
 
18984
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
19003
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1029
18985
19004
  *
18986
19005
  *
18987
19006
  * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -18994,7 +19013,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
18994
19013
  return __pyx_r;
18995
19014
  }
18996
19015
 
18997
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19016
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
18998
19017
  *
18999
19018
  *
19000
19019
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19005,7 +19024,7 @@ static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *
19005
19024
  static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) {
19006
19025
  npy_timedelta __pyx_r;
19007
19026
 
19008
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
19027
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1043
19009
19028
  * returns the int64 value underlying scalar numpy timedelta64 object
19010
19029
  * """
19011
19030
  * return (<PyTimedeltaScalarObject*>obj).obval # <<<<<<<<<<<<<<
@@ -19015,7 +19034,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19015
19034
  __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval;
19016
19035
  goto __pyx_L0;
19017
19036
 
19018
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19037
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1039
19019
19038
  *
19020
19039
  *
19021
19040
  * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19028,7 +19047,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19028
19047
  return __pyx_r;
19029
19048
  }
19030
19049
 
19031
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19050
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19032
19051
  *
19033
19052
  *
19034
19053
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -19039,7 +19058,7 @@ static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject
19039
19058
  static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) {
19040
19059
  NPY_DATETIMEUNIT __pyx_r;
19041
19060
 
19042
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
19061
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1050
19043
19062
  * returns the unit part of the dtype for a numpy datetime64 object.
19044
19063
  * """
19045
19064
  * return <NPY_DATETIMEUNIT>(<PyDatetimeScalarObject*>obj).obmeta.base # <<<<<<<<<<<<<<
@@ -19047,7 +19066,7 @@ static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObjec
19047
19066
  __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base);
19048
19067
  goto __pyx_L0;
19049
19068
 
19050
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19069
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":1046
19051
19070
  *
19052
19071
  *
19053
19072
  * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<<
@@ -23125,7 +23144,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
23125
23144
  __Pyx_GOTREF(__pyx_tuple__8);
23126
23145
  __Pyx_GIVEREF(__pyx_tuple__8);
23127
23146
 
23128
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
23147
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":984
23129
23148
  * __pyx_import_array()
23130
23149
  * except Exception:
23131
23150
  * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<<
@@ -23136,7 +23155,7 @@ static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) {
23136
23155
  __Pyx_GOTREF(__pyx_tuple__9);
23137
23156
  __Pyx_GIVEREF(__pyx_tuple__9);
23138
23157
 
23139
- /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-sxgpxi8i/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
23158
+ /* "C:/Users/runneradmin/AppData/Local/Temp/pip-build-env-ffpf5z7d/overlay/Lib/site-packages/numpy/__init__.cython-30.pxd":990
23140
23159
  * _import_umath()
23141
23160
  * except Exception:
23142
23161
  * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<<
@@ -23527,33 +23546,33 @@ static int __Pyx_modinit_type_import_code(void) {
23527
23546
  /*--- Type import code ---*/
23528
23547
  __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error)
23529
23548
  __Pyx_GOTREF(__pyx_t_1);
23530
- __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_7(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
23549
+ __pyx_ptype_7cpython_4type_type = __Pyx_ImportType_3_0_10(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type",
23531
23550
  #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000
23532
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
23551
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
23533
23552
  #elif CYTHON_COMPILING_IN_LIMITED_API
23534
- sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyTypeObject),
23553
+ sizeof(PyTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyTypeObject),
23535
23554
  #else
23536
- sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_7(PyHeapTypeObject),
23555
+ sizeof(PyHeapTypeObject), __PYX_GET_STRUCT_ALIGNMENT_3_0_10(PyHeapTypeObject),
23537
23556
  #endif
23538
- __Pyx_ImportType_CheckSize_Warn_3_0_7); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
23557
+ __Pyx_ImportType_CheckSize_Warn_3_0_10); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error)
23539
23558
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
23540
23559
  __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 202, __pyx_L1_error)
23541
23560
  __Pyx_GOTREF(__pyx_t_1);
23542
- __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)
23543
- __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)
23544
- __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)
23545
- __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)
23546
- __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)
23547
- __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)
23548
- __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)
23549
- __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)
23550
- __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)
23551
- __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)
23552
- __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)
23553
- __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)
23554
- __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)
23555
- __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)
23556
- __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)
23561
+ __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)
23562
+ __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)
23563
+ __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)
23564
+ __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)
23565
+ __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)
23566
+ __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)
23567
+ __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)
23568
+ __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)
23569
+ __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)
23570
+ __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)
23571
+ __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)
23572
+ __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)
23573
+ __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)
23574
+ __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)
23575
+ __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)
23557
23576
  __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0;
23558
23577
  __Pyx_RefNannyFinishContext();
23559
23578
  return 0;
@@ -24856,11 +24875,11 @@ static CYTHON_INLINE PyObject * __Pyx_GetKwValue_FASTCALL(PyObject *kwnames, PyO
24856
24875
  {
24857
24876
  int eq = __Pyx_PyUnicode_Equals(s, PyTuple_GET_ITEM(kwnames, i), Py_EQ);
24858
24877
  if (unlikely(eq != 0)) {
24859
- if (unlikely(eq < 0)) return NULL; // error
24878
+ if (unlikely(eq < 0)) return NULL;
24860
24879
  return kwvalues[i];
24861
24880
  }
24862
24881
  }
24863
- return NULL; // not found (no exception set)
24882
+ return NULL;
24864
24883
  }
24865
24884
  #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030d0000
24866
24885
  CYTHON_UNUSED static PyObject *__Pyx_KwargsAsDict_FASTCALL(PyObject *kwnames, PyObject *const *kwvalues) {
@@ -24973,7 +24992,7 @@ static int __Pyx_ParseOptionalKeywords(
24973
24992
  if (*name) {
24974
24993
  values[name-argnames] = value;
24975
24994
  #if CYTHON_AVOID_BORROWED_REFS
24976
- Py_INCREF(value); // transfer ownership of value to values
24995
+ Py_INCREF(value);
24977
24996
  Py_DECREF(key);
24978
24997
  #endif
24979
24998
  key = NULL;
@@ -24992,7 +25011,7 @@ static int __Pyx_ParseOptionalKeywords(
24992
25011
  && _PyString_Eq(**name, key)) {
24993
25012
  values[name-argnames] = value;
24994
25013
  #if CYTHON_AVOID_BORROWED_REFS
24995
- value = NULL; // ownership transferred to values
25014
+ value = NULL;
24996
25015
  #endif
24997
25016
  break;
24998
25017
  }
@@ -25024,7 +25043,7 @@ static int __Pyx_ParseOptionalKeywords(
25024
25043
  if (cmp == 0) {
25025
25044
  values[name-argnames] = value;
25026
25045
  #if CYTHON_AVOID_BORROWED_REFS
25027
- value = NULL; // ownership transferred to values
25046
+ value = NULL;
25028
25047
  #endif
25029
25048
  break;
25030
25049
  }
@@ -26922,9 +26941,10 @@ static void __Pyx_RaiseBufferIndexError(int axis) {
26922
26941
 
26923
26942
  /* IterFinish */
26924
26943
  static CYTHON_INLINE int __Pyx_IterFinish(void) {
26944
+ PyObject* exc_type;
26925
26945
  __Pyx_PyThreadState_declare
26926
26946
  __Pyx_PyThreadState_assign
26927
- PyObject* exc_type = __Pyx_PyErr_CurrentExceptionType();
26947
+ exc_type = __Pyx_PyErr_CurrentExceptionType();
26928
26948
  if (unlikely(exc_type)) {
26929
26949
  if (unlikely(!__Pyx_PyErr_GivenExceptionMatches(exc_type, PyExc_StopIteration)))
26930
26950
  return -1;
@@ -27634,10 +27654,10 @@ __PYX_GOOD:
27634
27654
  #endif
27635
27655
 
27636
27656
  /* TypeImport */
27637
- #ifndef __PYX_HAVE_RT_ImportType_3_0_7
27638
- #define __PYX_HAVE_RT_ImportType_3_0_7
27639
- static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module_name, const char *class_name,
27640
- size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_7 check_size)
27657
+ #ifndef __PYX_HAVE_RT_ImportType_3_0_10
27658
+ #define __PYX_HAVE_RT_ImportType_3_0_10
27659
+ static PyTypeObject *__Pyx_ImportType_3_0_10(PyObject *module, const char *module_name, const char *class_name,
27660
+ size_t size, size_t alignment, enum __Pyx_ImportType_CheckSize_3_0_10 check_size)
27641
27661
  {
27642
27662
  PyObject *result = 0;
27643
27663
  char warning[200];
@@ -27691,7 +27711,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
27691
27711
  module_name, class_name, size, basicsize+itemsize);
27692
27712
  goto bad;
27693
27713
  }
27694
- if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_7 &&
27714
+ if (check_size == __Pyx_ImportType_CheckSize_Error_3_0_10 &&
27695
27715
  ((size_t)basicsize > size || (size_t)(basicsize + itemsize) < size)) {
27696
27716
  PyErr_Format(PyExc_ValueError,
27697
27717
  "%.200s.%.200s size changed, may indicate binary incompatibility. "
@@ -27699,7 +27719,7 @@ static PyTypeObject *__Pyx_ImportType_3_0_7(PyObject *module, const char *module
27699
27719
  module_name, class_name, size, basicsize, basicsize+itemsize);
27700
27720
  goto bad;
27701
27721
  }
27702
- else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_7 && (size_t)basicsize > size) {
27722
+ else if (check_size == __Pyx_ImportType_CheckSize_Warn_3_0_10 && (size_t)basicsize > size) {
27703
27723
  PyOS_snprintf(warning, sizeof(warning),
27704
27724
  "%s.%s size changed, may indicate binary incompatibility. "
27705
27725
  "Expected %zd from C header, got %zd from PyObject",
@@ -27981,7 +28001,7 @@ static PyCodeObject* __Pyx_CreateCodeObjectForTraceback(
27981
28001
  #else
27982
28002
  py_code = PyCode_NewEmpty(filename, funcname, py_line);
27983
28003
  #endif
27984
- Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline
28004
+ Py_XDECREF(py_funcname);
27985
28005
  return py_code;
27986
28006
  bad:
27987
28007
  Py_XDECREF(py_funcname);