diff --git a/contrib/Retinaface/config/aipp.cfg b/contrib/Retinaface/config/aipp.cfg new file mode 100644 index 0000000000000000000000000000000000000000..47339dd2827dc08f914e6d5ded8cb74eaa1b9630 --- /dev/null +++ b/contrib/Retinaface/config/aipp.cfg @@ -0,0 +1,15 @@ +aipp_op { +aipp_mode: static + +input_format :RGB888_U8 +src_image_size_w :1000 +src_image_size_h :1000 + +mean_chn_0 :104 +mean_chn_1 :117 +mean_chn_2 :123 + +var_reci_chn_0 :1 +var_reci_chn_1 :1 +var_reci_chn_2 :1 +} diff --git a/contrib/Retinaface/evaluate/box_overlaps.c b/contrib/Retinaface/evaluate/box_overlaps.c new file mode 100644 index 0000000000000000000000000000000000000000..812d5dcb6469ac68fdb7cf55db6c46e37d407124 --- /dev/null +++ b/contrib/Retinaface/evaluate/box_overlaps.c @@ -0,0 +1,7081 @@ +/* Generated by Cython 0.29.32 */ + +/* BEGIN: Cython Metadata +{ + "distutils": { + "depends": [ + "/usr/local/lib/python3.9/site-packages/numpy/core/include/numpy/arrayobject.h", + "/usr/local/lib/python3.9/site-packages/numpy/core/include/numpy/arrayscalars.h", + "/usr/local/lib/python3.9/site-packages/numpy/core/include/numpy/ndarrayobject.h", + "/usr/local/lib/python3.9/site-packages/numpy/core/include/numpy/ndarraytypes.h", + "/usr/local/lib/python3.9/site-packages/numpy/core/include/numpy/ufuncobject.h" + ], + "include_dirs": [ + "/usr/local/lib/python3.9/site-packages/numpy/core/include" + ], + "name": "bbox", + "sources": [ + "box_overlaps.pyx" + ] + }, + "module_name": "bbox" +} +END: Cython Metadata */ + +#ifndef PY_SSIZE_T_CLEAN +#define PY_SSIZE_T_CLEAN +#endif /* PY_SSIZE_T_CLEAN */ +#include "Python.h" +#ifndef Py_PYTHON_H + #error Python headers needed to compile C extensions, please install development version of Python. +#elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) + #error Cython requires Python 2.6+ or Python 3.3+. +#else +#define CYTHON_ABI "0_29_32" +#define CYTHON_HEX_VERSION 0x001D20F0 +#define CYTHON_FUTURE_DIVISION 0 +#include +#ifndef offsetof + #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) +#endif +#if !defined(WIN32) && !defined(MS_WINDOWS) + #ifndef __stdcall + #define __stdcall + #endif + #ifndef __cdecl + #define __cdecl + #endif + #ifndef __fastcall + #define __fastcall + #endif +#endif +#ifndef DL_IMPORT + #define DL_IMPORT(t) t +#endif +#ifndef DL_EXPORT + #define DL_EXPORT(t) t +#endif +#define __PYX_COMMA , +#ifndef HAVE_LONG_LONG + #if PY_VERSION_HEX >= 0x02070000 + #define HAVE_LONG_LONG + #endif +#endif +#ifndef PY_LONG_LONG + #define PY_LONG_LONG LONG_LONG +#endif +#ifndef Py_HUGE_VAL + #define Py_HUGE_VAL HUGE_VAL +#endif +#ifdef PYPY_VERSION + #define CYTHON_COMPILING_IN_PYPY 1 + #define CYTHON_COMPILING_IN_PYSTON 0 + #define CYTHON_COMPILING_IN_CPYTHON 0 + #define CYTHON_COMPILING_IN_NOGIL 0 + #undef CYTHON_USE_TYPE_SLOTS + #define CYTHON_USE_TYPE_SLOTS 0 + #undef CYTHON_USE_PYTYPE_LOOKUP + #define CYTHON_USE_PYTYPE_LOOKUP 0 + #if PY_VERSION_HEX < 0x03050000 + #undef CYTHON_USE_ASYNC_SLOTS + #define CYTHON_USE_ASYNC_SLOTS 0 + #elif !defined(CYTHON_USE_ASYNC_SLOTS) + #define CYTHON_USE_ASYNC_SLOTS 1 + #endif + #undef CYTHON_USE_PYLIST_INTERNALS + #define CYTHON_USE_PYLIST_INTERNALS 0 + #undef CYTHON_USE_UNICODE_INTERNALS + #define CYTHON_USE_UNICODE_INTERNALS 0 + #undef CYTHON_USE_UNICODE_WRITER + #define CYTHON_USE_UNICODE_WRITER 0 + #undef CYTHON_USE_PYLONG_INTERNALS + #define CYTHON_USE_PYLONG_INTERNALS 0 + #undef CYTHON_AVOID_BORROWED_REFS + #define CYTHON_AVOID_BORROWED_REFS 1 + #undef CYTHON_ASSUME_SAFE_MACROS + #define CYTHON_ASSUME_SAFE_MACROS 0 + #undef CYTHON_UNPACK_METHODS + #define CYTHON_UNPACK_METHODS 0 + #undef CYTHON_FAST_THREAD_STATE + #define CYTHON_FAST_THREAD_STATE 0 + #undef CYTHON_FAST_PYCALL + #define CYTHON_FAST_PYCALL 0 + #undef CYTHON_PEP489_MULTI_PHASE_INIT + #define CYTHON_PEP489_MULTI_PHASE_INIT 0 + #undef CYTHON_USE_TP_FINALIZE + #define CYTHON_USE_TP_FINALIZE 0 + #undef CYTHON_USE_DICT_VERSIONS + #define CYTHON_USE_DICT_VERSIONS 0 + #undef CYTHON_USE_EXC_INFO_STACK + #define CYTHON_USE_EXC_INFO_STACK 0 + #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC + #define CYTHON_UPDATE_DESCRIPTOR_DOC (PYPY_VERSION_HEX >= 0x07030900) + #endif +#elif defined(PYSTON_VERSION) + #define CYTHON_COMPILING_IN_PYPY 0 + #define CYTHON_COMPILING_IN_PYSTON 1 + #define CYTHON_COMPILING_IN_CPYTHON 0 + #define CYTHON_COMPILING_IN_NOGIL 0 + #ifndef CYTHON_USE_TYPE_SLOTS + #define CYTHON_USE_TYPE_SLOTS 1 + #endif + #undef CYTHON_USE_PYTYPE_LOOKUP + #define CYTHON_USE_PYTYPE_LOOKUP 0 + #undef CYTHON_USE_ASYNC_SLOTS + #define CYTHON_USE_ASYNC_SLOTS 0 + #undef CYTHON_USE_PYLIST_INTERNALS + #define CYTHON_USE_PYLIST_INTERNALS 0 + #ifndef CYTHON_USE_UNICODE_INTERNALS + #define CYTHON_USE_UNICODE_INTERNALS 1 + #endif + #undef CYTHON_USE_UNICODE_WRITER + #define CYTHON_USE_UNICODE_WRITER 0 + #undef CYTHON_USE_PYLONG_INTERNALS + #define CYTHON_USE_PYLONG_INTERNALS 0 + #ifndef CYTHON_AVOID_BORROWED_REFS + #define CYTHON_AVOID_BORROWED_REFS 0 + #endif + #ifndef CYTHON_ASSUME_SAFE_MACROS + #define CYTHON_ASSUME_SAFE_MACROS 1 + #endif + #ifndef CYTHON_UNPACK_METHODS + #define CYTHON_UNPACK_METHODS 1 + #endif + #undef CYTHON_FAST_THREAD_STATE + #define CYTHON_FAST_THREAD_STATE 0 + #undef CYTHON_FAST_PYCALL + #define CYTHON_FAST_PYCALL 0 + #undef CYTHON_PEP489_MULTI_PHASE_INIT + #define CYTHON_PEP489_MULTI_PHASE_INIT 0 + #undef CYTHON_USE_TP_FINALIZE + #define CYTHON_USE_TP_FINALIZE 0 + #undef CYTHON_USE_DICT_VERSIONS + #define CYTHON_USE_DICT_VERSIONS 0 + #undef CYTHON_USE_EXC_INFO_STACK + #define CYTHON_USE_EXC_INFO_STACK 0 + #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC + #define CYTHON_UPDATE_DESCRIPTOR_DOC 0 + #endif +#elif defined(PY_NOGIL) + #define CYTHON_COMPILING_IN_PYPY 0 + #define CYTHON_COMPILING_IN_PYSTON 0 + #define CYTHON_COMPILING_IN_CPYTHON 0 + #define CYTHON_COMPILING_IN_NOGIL 1 + #ifndef CYTHON_USE_TYPE_SLOTS + #define CYTHON_USE_TYPE_SLOTS 1 + #endif + #undef CYTHON_USE_PYTYPE_LOOKUP + #define CYTHON_USE_PYTYPE_LOOKUP 0 + #ifndef CYTHON_USE_ASYNC_SLOTS + #define CYTHON_USE_ASYNC_SLOTS 1 + #endif + #undef CYTHON_USE_PYLIST_INTERNALS + #define CYTHON_USE_PYLIST_INTERNALS 0 + #ifndef CYTHON_USE_UNICODE_INTERNALS + #define CYTHON_USE_UNICODE_INTERNALS 1 + #endif + #undef CYTHON_USE_UNICODE_WRITER + #define CYTHON_USE_UNICODE_WRITER 0 + #undef CYTHON_USE_PYLONG_INTERNALS + #define CYTHON_USE_PYLONG_INTERNALS 0 + #ifndef CYTHON_AVOID_BORROWED_REFS + #define CYTHON_AVOID_BORROWED_REFS 0 + #endif + #ifndef CYTHON_ASSUME_SAFE_MACROS + #define CYTHON_ASSUME_SAFE_MACROS 1 + #endif + #ifndef CYTHON_UNPACK_METHODS + #define CYTHON_UNPACK_METHODS 1 + #endif + #undef CYTHON_FAST_THREAD_STATE + #define CYTHON_FAST_THREAD_STATE 0 + #undef CYTHON_FAST_PYCALL + #define CYTHON_FAST_PYCALL 0 + #ifndef CYTHON_PEP489_MULTI_PHASE_INIT + #define CYTHON_PEP489_MULTI_PHASE_INIT 1 + #endif + #ifndef CYTHON_USE_TP_FINALIZE + #define CYTHON_USE_TP_FINALIZE 1 + #endif + #undef CYTHON_USE_DICT_VERSIONS + #define CYTHON_USE_DICT_VERSIONS 0 + #undef CYTHON_USE_EXC_INFO_STACK + #define CYTHON_USE_EXC_INFO_STACK 0 +#else + #define CYTHON_COMPILING_IN_PYPY 0 + #define CYTHON_COMPILING_IN_PYSTON 0 + #define CYTHON_COMPILING_IN_CPYTHON 1 + #define CYTHON_COMPILING_IN_NOGIL 0 + #ifndef CYTHON_USE_TYPE_SLOTS + #define CYTHON_USE_TYPE_SLOTS 1 + #endif + #if PY_VERSION_HEX < 0x02070000 + #undef CYTHON_USE_PYTYPE_LOOKUP + #define CYTHON_USE_PYTYPE_LOOKUP 0 + #elif !defined(CYTHON_USE_PYTYPE_LOOKUP) + #define CYTHON_USE_PYTYPE_LOOKUP 1 + #endif + #if PY_MAJOR_VERSION < 3 + #undef CYTHON_USE_ASYNC_SLOTS + #define CYTHON_USE_ASYNC_SLOTS 0 + #elif !defined(CYTHON_USE_ASYNC_SLOTS) + #define CYTHON_USE_ASYNC_SLOTS 1 + #endif + #if PY_VERSION_HEX < 0x02070000 + #undef CYTHON_USE_PYLONG_INTERNALS + #define CYTHON_USE_PYLONG_INTERNALS 0 + #elif !defined(CYTHON_USE_PYLONG_INTERNALS) + #define CYTHON_USE_PYLONG_INTERNALS 1 + #endif + #ifndef CYTHON_USE_PYLIST_INTERNALS + #define CYTHON_USE_PYLIST_INTERNALS 1 + #endif + #ifndef CYTHON_USE_UNICODE_INTERNALS + #define CYTHON_USE_UNICODE_INTERNALS 1 + #endif + #if PY_VERSION_HEX < 0x030300F0 || PY_VERSION_HEX >= 0x030B00A2 + #undef CYTHON_USE_UNICODE_WRITER + #define CYTHON_USE_UNICODE_WRITER 0 + #elif !defined(CYTHON_USE_UNICODE_WRITER) + #define CYTHON_USE_UNICODE_WRITER 1 + #endif + #ifndef CYTHON_AVOID_BORROWED_REFS + #define CYTHON_AVOID_BORROWED_REFS 0 + #endif + #ifndef CYTHON_ASSUME_SAFE_MACROS + #define CYTHON_ASSUME_SAFE_MACROS 1 + #endif + #ifndef CYTHON_UNPACK_METHODS + #define CYTHON_UNPACK_METHODS 1 + #endif + #if PY_VERSION_HEX >= 0x030B00A4 + #undef CYTHON_FAST_THREAD_STATE + #define CYTHON_FAST_THREAD_STATE 0 + #elif !defined(CYTHON_FAST_THREAD_STATE) + #define CYTHON_FAST_THREAD_STATE 1 + #endif + #ifndef CYTHON_FAST_PYCALL + #define CYTHON_FAST_PYCALL (PY_VERSION_HEX < 0x030A0000) + #endif + #ifndef CYTHON_PEP489_MULTI_PHASE_INIT + #define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000) + #endif + #ifndef CYTHON_USE_TP_FINALIZE + #define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1) + #endif + #ifndef CYTHON_USE_DICT_VERSIONS + #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1) + #endif + #if PY_VERSION_HEX >= 0x030B00A4 + #undef CYTHON_USE_EXC_INFO_STACK + #define CYTHON_USE_EXC_INFO_STACK 0 + #elif !defined(CYTHON_USE_EXC_INFO_STACK) + #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3) + #endif + #ifndef CYTHON_UPDATE_DESCRIPTOR_DOC + #define CYTHON_UPDATE_DESCRIPTOR_DOC 1 + #endif +#endif +#if !defined(CYTHON_FAST_PYCCALL) +#define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1) +#endif +#if CYTHON_USE_PYLONG_INTERNALS + #if PY_MAJOR_VERSION < 3 + #include "longintrepr.h" + #endif + #undef SHIFT + #undef BASE + #undef MASK + #ifdef SIZEOF_VOID_P + enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) }; + #endif +#endif +#ifndef __has_attribute + #define __has_attribute(x) 0 +#endif +#ifndef __has_cpp_attribute + #define __has_cpp_attribute(x) 0 +#endif +#ifndef CYTHON_RESTRICT + #if defined(__GNUC__) + #define CYTHON_RESTRICT __restrict__ + #elif defined(_MSC_VER) && _MSC_VER >= 1400 + #define CYTHON_RESTRICT __restrict + #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L + #define CYTHON_RESTRICT restrict + #else + #define CYTHON_RESTRICT + #endif +#endif +#ifndef CYTHON_UNUSED +# if defined(__GNUC__) +# if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) +# define CYTHON_UNUSED __attribute__ ((__unused__)) +# else +# define CYTHON_UNUSED +# endif +# elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) +# define CYTHON_UNUSED __attribute__ ((__unused__)) +# else +# define CYTHON_UNUSED +# endif +#endif +#ifndef CYTHON_MAYBE_UNUSED_VAR +# if defined(__cplusplus) + template void CYTHON_MAYBE_UNUSED_VAR( const T& ) { } +# else +# define CYTHON_MAYBE_UNUSED_VAR(x) (void)(x) +# endif +#endif +#ifndef CYTHON_NCP_UNUSED +# if CYTHON_COMPILING_IN_CPYTHON +# define CYTHON_NCP_UNUSED +# else +# define CYTHON_NCP_UNUSED CYTHON_UNUSED +# endif +#endif +#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None) +#ifdef _MSC_VER + #ifndef _MSC_STDINT_H_ + #if _MSC_VER < 1300 + typedef unsigned char uint8_t; + typedef unsigned int uint32_t; + #else + typedef unsigned __int8 uint8_t; + typedef unsigned __int32 uint32_t; + #endif + #endif +#else + #include +#endif +#ifndef CYTHON_FALLTHROUGH + #if defined(__cplusplus) && __cplusplus >= 201103L + #if __has_cpp_attribute(fallthrough) + #define CYTHON_FALLTHROUGH [[fallthrough]] + #elif __has_cpp_attribute(clang::fallthrough) + #define CYTHON_FALLTHROUGH [[clang::fallthrough]] + #elif __has_cpp_attribute(gnu::fallthrough) + #define CYTHON_FALLTHROUGH [[gnu::fallthrough]] + #endif + #endif + #ifndef CYTHON_FALLTHROUGH + #if __has_attribute(fallthrough) + #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) + #else + #define CYTHON_FALLTHROUGH + #endif + #endif + #if defined(__clang__ ) && defined(__apple_build_version__) + #if __apple_build_version__ < 7000000 + #undef CYTHON_FALLTHROUGH + #define CYTHON_FALLTHROUGH + #endif + #endif +#endif + +#ifndef CYTHON_INLINE + #if defined(__clang__) + #define CYTHON_INLINE __inline__ __attribute__ ((__unused__)) + #elif defined(__GNUC__) + #define CYTHON_INLINE __inline__ + #elif defined(_MSC_VER) + #define CYTHON_INLINE __inline + #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L + #define CYTHON_INLINE inline + #else + #define CYTHON_INLINE + #endif +#endif + +#if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag) + #define Py_OptimizeFlag 0 +#endif +#define __PYX_BUILD_PY_SSIZE_T "n" +#define CYTHON_FORMAT_SSIZE_T "z" +#if PY_MAJOR_VERSION < 3 + #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" + #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ + PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) + #define __Pyx_DefaultClassType PyClass_Type +#else + #define __Pyx_BUILTIN_MODULE_NAME "builtins" + #define __Pyx_DefaultClassType PyType_Type +#if PY_VERSION_HEX >= 0x030B00A1 + static CYTHON_INLINE PyCodeObject* __Pyx_PyCode_New(int a, int k, int l, int s, int f, + PyObject *code, PyObject *c, PyObject* n, PyObject *v, + PyObject *fv, PyObject *cell, PyObject* fn, + PyObject *name, int fline, PyObject *lnos) { + PyObject *kwds=NULL, *argcount=NULL, *posonlyargcount=NULL, *kwonlyargcount=NULL; + PyObject *nlocals=NULL, *stacksize=NULL, *flags=NULL, *replace=NULL, *call_result=NULL, *empty=NULL; + const char *fn_cstr=NULL; + const char *name_cstr=NULL; + PyCodeObject* co=NULL; + PyObject *type, *value, *traceback; + PyErr_Fetch(&type, &value, &traceback); + if (!(kwds=PyDict_New())) goto end; + if (!(argcount=PyLong_FromLong(a))) goto end; + if (PyDict_SetItemString(kwds, "co_argcount", argcount) != 0) goto end; + if (!(posonlyargcount=PyLong_FromLong(0))) goto end; + if (PyDict_SetItemString(kwds, "co_posonlyargcount", posonlyargcount) != 0) goto end; + if (!(kwonlyargcount=PyLong_FromLong(k))) goto end; + if (PyDict_SetItemString(kwds, "co_kwonlyargcount", kwonlyargcount) != 0) goto end; + if (!(nlocals=PyLong_FromLong(l))) goto end; + if (PyDict_SetItemString(kwds, "co_nlocals", nlocals) != 0) goto end; + if (!(stacksize=PyLong_FromLong(s))) goto end; + if (PyDict_SetItemString(kwds, "co_stacksize", stacksize) != 0) goto end; + if (!(flags=PyLong_FromLong(f))) goto end; + if (PyDict_SetItemString(kwds, "co_flags", flags) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_code", code) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_consts", c) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_names", n) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_varnames", v) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_freevars", fv) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_cellvars", cell) != 0) goto end; + if (PyDict_SetItemString(kwds, "co_linetable", lnos) != 0) goto end; + if (!(fn_cstr=PyUnicode_AsUTF8AndSize(fn, NULL))) goto end; + if (!(name_cstr=PyUnicode_AsUTF8AndSize(name, NULL))) goto end; + if (!(co = PyCode_NewEmpty(fn_cstr, name_cstr, fline))) goto end; + if (!(replace = PyObject_GetAttrString((PyObject*)co, "replace"))) goto cleanup_code_too; + if (!(empty = PyTuple_New(0))) goto cleanup_code_too; // unfortunately __pyx_empty_tuple isn't available here + if (!(call_result = PyObject_Call(replace, empty, kwds))) goto cleanup_code_too; + Py_XDECREF((PyObject*)co); + co = (PyCodeObject*)call_result; + call_result = NULL; + if (0) { + cleanup_code_too: + Py_XDECREF((PyObject*)co); + co = NULL; + } + end: + Py_XDECREF(kwds); + Py_XDECREF(argcount); + Py_XDECREF(posonlyargcount); + Py_XDECREF(kwonlyargcount); + Py_XDECREF(nlocals); + Py_XDECREF(stacksize); + Py_XDECREF(replace); + Py_XDECREF(call_result); + Py_XDECREF(empty); + if (type) { + PyErr_Restore(type, value, traceback); + } + return co; + } +#else + #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ + PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) +#endif + #define __Pyx_DefaultClassType PyType_Type +#endif +#ifndef Py_TPFLAGS_CHECKTYPES + #define Py_TPFLAGS_CHECKTYPES 0 +#endif +#ifndef Py_TPFLAGS_HAVE_INDEX + #define Py_TPFLAGS_HAVE_INDEX 0 +#endif +#ifndef Py_TPFLAGS_HAVE_NEWBUFFER + #define Py_TPFLAGS_HAVE_NEWBUFFER 0 +#endif +#ifndef Py_TPFLAGS_HAVE_FINALIZE + #define Py_TPFLAGS_HAVE_FINALIZE 0 +#endif +#ifndef METH_STACKLESS + #define METH_STACKLESS 0 +#endif +#if PY_VERSION_HEX <= 0x030700A3 || !defined(METH_FASTCALL) + #ifndef METH_FASTCALL + #define METH_FASTCALL 0x80 + #endif + typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject *const *args, Py_ssize_t nargs); + typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args, + Py_ssize_t nargs, PyObject *kwnames); +#else + #define __Pyx_PyCFunctionFast _PyCFunctionFast + #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords +#endif +#if CYTHON_FAST_PYCCALL +#define __Pyx_PyFastCFunction_Check(func)\ + ((PyCFunction_Check(func) && (METH_FASTCALL == (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))))) +#else +#define __Pyx_PyFastCFunction_Check(func) 0 +#endif +#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc) + #define PyObject_Malloc(s) PyMem_Malloc(s) + #define PyObject_Free(p) PyMem_Free(p) + #define PyObject_Realloc(p) PyMem_Realloc(p) +#endif +#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030400A1 + #define PyMem_RawMalloc(n) PyMem_Malloc(n) + #define PyMem_RawRealloc(p, n) PyMem_Realloc(p, n) + #define PyMem_RawFree(p) PyMem_Free(p) +#endif +#if CYTHON_COMPILING_IN_PYSTON + #define __Pyx_PyCode_HasFreeVars(co) PyCode_HasFreeVars(co) + #define __Pyx_PyFrame_SetLineNumber(frame, lineno) PyFrame_SetLineNumber(frame, lineno) +#else + #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) + #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno) +#endif +#if !CYTHON_FAST_THREAD_STATE || PY_VERSION_HEX < 0x02070000 + #define __Pyx_PyThreadState_Current PyThreadState_GET() +#elif PY_VERSION_HEX >= 0x03060000 + #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() +#elif PY_VERSION_HEX >= 0x03000000 + #define __Pyx_PyThreadState_Current PyThreadState_GET() +#else + #define __Pyx_PyThreadState_Current _PyThreadState_Current +#endif +#if PY_VERSION_HEX < 0x030700A2 && !defined(PyThread_tss_create) && !defined(Py_tss_NEEDS_INIT) +#include "pythread.h" +#define Py_tss_NEEDS_INIT 0 +typedef int Py_tss_t; +static CYTHON_INLINE int PyThread_tss_create(Py_tss_t *key) { + *key = PyThread_create_key(); + return 0; +} +static CYTHON_INLINE Py_tss_t * PyThread_tss_alloc(void) { + Py_tss_t *key = (Py_tss_t *)PyObject_Malloc(sizeof(Py_tss_t)); + *key = Py_tss_NEEDS_INIT; + return key; +} +static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { + PyObject_Free(key); +} +static CYTHON_INLINE int PyThread_tss_is_created(Py_tss_t *key) { + return *key != Py_tss_NEEDS_INIT; +} +static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) { + PyThread_delete_key(*key); + *key = Py_tss_NEEDS_INIT; +} +static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) { + return PyThread_set_key_value(*key, value); +} +static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { + return PyThread_get_key_value(*key); +} +#endif +#if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) +#define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) +#else +#define __Pyx_PyDict_NewPresized(n) PyDict_New() +#endif +#if PY_MAJOR_VERSION >= 3 || CYTHON_FUTURE_DIVISION + #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) + #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) +#else + #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) + #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) +#endif +#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 && CYTHON_USE_UNICODE_INTERNALS +#define __Pyx_PyDict_GetItemStr(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash) +#else +#define __Pyx_PyDict_GetItemStr(dict, name) PyDict_GetItem(dict, name) +#endif +#if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) + #define CYTHON_PEP393_ENABLED 1 + #if defined(PyUnicode_IS_READY) + #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\ + 0 : _PyUnicode_Ready((PyObject *)(op))) + #else + #define __Pyx_PyUnicode_READY(op) (0) + #endif + #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u) + #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) + #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u) + #define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u) + #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u) + #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) + #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, ch) + #if defined(PyUnicode_IS_READY) && defined(PyUnicode_GET_SIZE) + #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x03090000 + #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : ((PyCompactUnicodeObject *)(u))->wstr_length)) + #else + #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u))) + #endif + #else + #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_LENGTH(u)) + #endif +#else + #define CYTHON_PEP393_ENABLED 0 + #define PyUnicode_1BYTE_KIND 1 + #define PyUnicode_2BYTE_KIND 2 + #define PyUnicode_4BYTE_KIND 4 + #define __Pyx_PyUnicode_READY(op) (0) + #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u) + #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i])) + #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((sizeof(Py_UNICODE) == 2) ? 65535 : 1114111) + #define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE)) + #define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u)) + #define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i])) + #define __Pyx_PyUnicode_WRITE(k, d, i, ch) (((void)(k)), ((Py_UNICODE*)d)[i] = ch) + #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_SIZE(u)) +#endif +#if CYTHON_COMPILING_IN_PYPY + #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b) + #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b) +#else + #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b) + #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\ + PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b)) +#endif +#if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains) + #define PyUnicode_Contains(u, s) PySequence_Contains(u, s) +#endif +#if CYTHON_COMPILING_IN_PYPY && !defined(PyByteArray_Check) + #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type) +#endif +#if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Format) + #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt) +#endif +#define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyString_Check(b) && !PyString_CheckExact(b)))) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b)) +#define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyUnicode_Check(b) && !PyUnicode_CheckExact(b)))) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b)) +#if PY_MAJOR_VERSION >= 3 + #define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b) +#else + #define __Pyx_PyString_Format(a, b) PyString_Format(a, b) +#endif +#if PY_MAJOR_VERSION < 3 && !defined(PyObject_ASCII) + #define PyObject_ASCII(o) PyObject_Repr(o) +#endif +#if PY_MAJOR_VERSION >= 3 + #define PyBaseString_Type PyUnicode_Type + #define PyStringObject PyUnicodeObject + #define PyString_Type PyUnicode_Type + #define PyString_Check PyUnicode_Check + #define PyString_CheckExact PyUnicode_CheckExact +#ifndef PyObject_Unicode + #define PyObject_Unicode PyObject_Str +#endif +#endif +#if PY_MAJOR_VERSION >= 3 + #define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj) + #define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj) +#else + #define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj)) + #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj)) +#endif +#ifndef PySet_CheckExact + #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) +#endif +#if PY_VERSION_HEX >= 0x030900A4 + #define __Pyx_SET_REFCNT(obj, refcnt) Py_SET_REFCNT(obj, refcnt) + #define __Pyx_SET_SIZE(obj, size) Py_SET_SIZE(obj, size) +#else + #define __Pyx_SET_REFCNT(obj, refcnt) Py_REFCNT(obj) = (refcnt) + #define __Pyx_SET_SIZE(obj, size) Py_SIZE(obj) = (size) +#endif +#if CYTHON_ASSUME_SAFE_MACROS + #define __Pyx_PySequence_SIZE(seq) Py_SIZE(seq) +#else + #define __Pyx_PySequence_SIZE(seq) PySequence_Size(seq) +#endif +#if PY_MAJOR_VERSION >= 3 + #define PyIntObject PyLongObject + #define PyInt_Type PyLong_Type + #define PyInt_Check(op) PyLong_Check(op) + #define PyInt_CheckExact(op) PyLong_CheckExact(op) + #define PyInt_FromString PyLong_FromString + #define PyInt_FromUnicode PyLong_FromUnicode + #define PyInt_FromLong PyLong_FromLong + #define PyInt_FromSize_t PyLong_FromSize_t + #define PyInt_FromSsize_t PyLong_FromSsize_t + #define PyInt_AsLong PyLong_AsLong + #define PyInt_AS_LONG PyLong_AS_LONG + #define PyInt_AsSsize_t PyLong_AsSsize_t + #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask + #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask + #define PyNumber_Int PyNumber_Long +#endif +#if PY_MAJOR_VERSION >= 3 + #define PyBoolObject PyLongObject +#endif +#if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY + #ifndef PyUnicode_InternFromString + #define PyUnicode_InternFromString(s) PyUnicode_FromString(s) + #endif +#endif +#if PY_VERSION_HEX < 0x030200A4 + typedef long Py_hash_t; + #define __Pyx_PyInt_FromHash_t PyInt_FromLong + #define __Pyx_PyInt_AsHash_t __Pyx_PyIndex_AsHash_t +#else + #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t + #define __Pyx_PyInt_AsHash_t __Pyx_PyIndex_AsSsize_t +#endif +#if PY_MAJOR_VERSION >= 3 + #define __Pyx_PyMethod_New(func, self, klass) ((self) ? ((void)(klass), PyMethod_New(func, self)) : __Pyx_NewRef(func)) +#else + #define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass) +#endif +#if CYTHON_USE_ASYNC_SLOTS + #if PY_VERSION_HEX >= 0x030500B1 + #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods + #define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async) + #else + #define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved)) + #endif +#else + #define __Pyx_PyType_AsAsync(obj) NULL +#endif +#ifndef __Pyx_PyAsyncMethodsStruct + typedef struct { + unaryfunc am_await; + unaryfunc am_aiter; + unaryfunc am_anext; + } __Pyx_PyAsyncMethodsStruct; +#endif + +#if defined(_WIN32) || defined(WIN32) || defined(MS_WINDOWS) + #if !defined(_USE_MATH_DEFINES) + #define _USE_MATH_DEFINES + #endif +#endif +#include +#ifdef NAN +#define __PYX_NAN() ((float) NAN) +#else +static CYTHON_INLINE float __PYX_NAN() { + float value; + memset(&value, 0xFF, sizeof(value)); + return value; +} +#endif +#if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL) +#define __Pyx_truncl trunc +#else +#define __Pyx_truncl truncl +#endif + +#define __PYX_MARK_ERR_POS(f_index, lineno) \ + { __pyx_filename = __pyx_f[f_index]; (void)__pyx_filename; __pyx_lineno = lineno; (void)__pyx_lineno; __pyx_clineno = __LINE__; (void)__pyx_clineno; } +#define __PYX_ERR(f_index, lineno, Ln_error) \ + { __PYX_MARK_ERR_POS(f_index, lineno) goto Ln_error; } + +#ifndef __PYX_EXTERN_C + #ifdef __cplusplus + #define __PYX_EXTERN_C extern "C" + #else + #define __PYX_EXTERN_C extern + #endif +#endif + +#define __PYX_HAVE__bbox +#define __PYX_HAVE_API__bbox +/* Early includes */ +#include +#include +#include "numpy/arrayobject.h" +#include "numpy/ndarrayobject.h" +#include "numpy/ndarraytypes.h" +#include "numpy/arrayscalars.h" +#include "numpy/ufuncobject.h" + + /* NumPy API declarations from "numpy/__init__.pxd" */ + +#ifdef _OPENMP +#include +#endif /* _OPENMP */ + +#if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS) +#define CYTHON_WITHOUT_ASSERTIONS +#endif + +typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding; + const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; + +#define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0 +#define __PYX_DEFAULT_STRING_ENCODING_IS_UTF8 0 +#define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT (PY_MAJOR_VERSION >= 3 && __PYX_DEFAULT_STRING_ENCODING_IS_UTF8) +#define __PYX_DEFAULT_STRING_ENCODING "" +#define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString +#define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize +#define __Pyx_uchar_cast(c) ((unsigned char)c) +#define __Pyx_long_cast(x) ((long)x) +#define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\ + (sizeof(type) < sizeof(Py_ssize_t)) ||\ + (sizeof(type) > sizeof(Py_ssize_t) &&\ + likely(v < (type)PY_SSIZE_T_MAX ||\ + v == (type)PY_SSIZE_T_MAX) &&\ + (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\ + v == (type)PY_SSIZE_T_MIN))) ||\ + (sizeof(type) == sizeof(Py_ssize_t) &&\ + (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\ + v == (type)PY_SSIZE_T_MAX))) ) +static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) { + return (size_t) i < (size_t) limit; +} +#if defined (__cplusplus) && __cplusplus >= 201103L + #include + #define __Pyx_sst_abs(value) std::abs(value) +#elif SIZEOF_INT >= SIZEOF_SIZE_T + #define __Pyx_sst_abs(value) abs(value) +#elif SIZEOF_LONG >= SIZEOF_SIZE_T + #define __Pyx_sst_abs(value) labs(value) +#elif defined (_MSC_VER) + #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value)) +#elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L + #define __Pyx_sst_abs(value) llabs(value) +#elif defined (__GNUC__) + #define __Pyx_sst_abs(value) __builtin_llabs(value) +#else + #define __Pyx_sst_abs(value) ((value<0) ? -value : value) +#endif +static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*); +static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length); +#define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s)) +#define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l) +#define __Pyx_PyBytes_FromString PyBytes_FromString +#define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize +static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*); +#if PY_MAJOR_VERSION < 3 + #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString + #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize +#else + #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString + #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize +#endif +#define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s)) +#define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s)) +#define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s)) +#define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s)) +#define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s)) +#define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s)) +#define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s)) +#define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s)) +#define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s)) +#define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s)) +#define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s)) +#define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s) +#define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s) +#define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s) +#define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s) +#define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) +static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) { + const Py_UNICODE *u_end = u; + while (*u_end++) ; + return (size_t)(u_end - u - 1); +} +#define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u)) +#define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode +#define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode +#define __Pyx_NewRef(obj) (Py_INCREF(obj), obj) +#define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None) +static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b); +static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); +static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject*); +static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x); +#define __Pyx_PySequence_Tuple(obj)\ + (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) +static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); +static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); +static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject*); +#if CYTHON_ASSUME_SAFE_MACROS +#define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) +#else +#define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) +#endif +#define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x)) +#if PY_MAJOR_VERSION >= 3 +#define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x)) +#else +#define __Pyx_PyNumber_Int(x) (PyInt_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Int(x)) +#endif +#define __Pyx_PyNumber_Float(x) (PyFloat_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Float(x)) +#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII +static int __Pyx_sys_getdefaultencoding_not_ascii; +static int __Pyx_init_sys_getdefaultencoding_params(void) { + PyObject* sys; + PyObject* default_encoding = NULL; + PyObject* ascii_chars_u = NULL; + PyObject* ascii_chars_b = NULL; + const char* default_encoding_c; + sys = PyImport_ImportModule("sys"); + if (!sys) goto bad; + default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL); + Py_DECREF(sys); + if (!default_encoding) goto bad; + default_encoding_c = PyBytes_AsString(default_encoding); + if (!default_encoding_c) goto bad; + if (strcmp(default_encoding_c, "ascii") == 0) { + __Pyx_sys_getdefaultencoding_not_ascii = 0; + } else { + char ascii_chars[128]; + int c; + for (c = 0; c < 128; c++) { + ascii_chars[c] = c; + } + __Pyx_sys_getdefaultencoding_not_ascii = 1; + ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL); + if (!ascii_chars_u) goto bad; + ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL); + if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) { + PyErr_Format( + PyExc_ValueError, + "This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.", + default_encoding_c); + goto bad; + } + Py_DECREF(ascii_chars_u); + Py_DECREF(ascii_chars_b); + } + Py_DECREF(default_encoding); + return 0; +bad: + Py_XDECREF(default_encoding); + Py_XDECREF(ascii_chars_u); + Py_XDECREF(ascii_chars_b); + return -1; +} +#endif +#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3 +#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL) +#else +#define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL) +#if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT +static char* __PYX_DEFAULT_STRING_ENCODING; +static int __Pyx_init_sys_getdefaultencoding_params(void) { + PyObject* sys; + PyObject* default_encoding = NULL; + char* default_encoding_c; + sys = PyImport_ImportModule("sys"); + if (!sys) goto bad; + default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL); + Py_DECREF(sys); + if (!default_encoding) goto bad; + default_encoding_c = PyBytes_AsString(default_encoding); + if (!default_encoding_c) goto bad; + __PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c) + 1); + if (!__PYX_DEFAULT_STRING_ENCODING) goto bad; + strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c); + Py_DECREF(default_encoding); + return 0; +bad: + Py_XDECREF(default_encoding); + return -1; +} +#endif +#endif + + +/* Test for GCC > 2.95 */ +#if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))) + #define likely(x) __builtin_expect(!!(x), 1) + #define unlikely(x) __builtin_expect(!!(x), 0) +#else /* !__GNUC__ or GCC < 2.95 */ + #define likely(x) (x) + #define unlikely(x) (x) +#endif /* __GNUC__ */ +static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; } + +static PyObject *__pyx_m = NULL; +static PyObject *__pyx_d; +static PyObject *__pyx_b; +static PyObject *__pyx_cython_runtime = NULL; +static PyObject *__pyx_empty_tuple; +static PyObject *__pyx_empty_bytes; +static PyObject *__pyx_empty_unicode; +static int __pyx_lineno; +static int __pyx_clineno = 0; +static const char * __pyx_cfilenm= __FILE__; +static const char *__pyx_filename; + +/* Header.proto */ +#if !defined(CYTHON_CCOMPLEX) + #if defined(__cplusplus) + #define CYTHON_CCOMPLEX 1 + #elif defined(_Complex_I) + #define CYTHON_CCOMPLEX 1 + #else + #define CYTHON_CCOMPLEX 0 + #endif +#endif +#if CYTHON_CCOMPLEX + #ifdef __cplusplus + #include + #else + #include + #endif +#endif +#if CYTHON_CCOMPLEX && !defined(__cplusplus) && defined(__sun__) && defined(__GNUC__) + #undef _Complex_I + #define _Complex_I 1.0fj +#endif + + +static const char *__pyx_f[] = { + "box_overlaps.pyx", + "__init__.pxd", + "type.pxd", +}; +/* BufferFormatStructs.proto */ +#define IS_UNSIGNED(type) (((type) -1) > 0) +struct __Pyx_StructField_; +#define __PYX_BUF_FLAGS_PACKED_STRUCT (1 << 0) +typedef struct { + const char* name; + struct __Pyx_StructField_* fields; + size_t size; + size_t arraysize[8]; + int ndim; + char typegroup; + char is_unsigned; + int flags; +} __Pyx_TypeInfo; +typedef struct __Pyx_StructField_ { + __Pyx_TypeInfo* type; + const char* name; + size_t offset; +} __Pyx_StructField; +typedef struct { + __Pyx_StructField* field; + size_t parent_offset; +} __Pyx_BufFmt_StackElem; +typedef struct { + __Pyx_StructField root; + __Pyx_BufFmt_StackElem* head; + size_t fmt_offset; + size_t new_count, enc_count; + size_t struct_alignment; + int is_complex; + char enc_type; + char new_packmode; + char enc_packmode; + char is_valid_array; +} __Pyx_BufFmt_Context; + + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":690 + * # in Cython to enable them only on the right systems. + * + * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<< + * ctypedef npy_int16 int16_t + * ctypedef npy_int32 int32_t + */ +typedef npy_int8 __pyx_t_5numpy_int8_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":691 + * + * ctypedef npy_int8 int8_t + * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<< + * ctypedef npy_int32 int32_t + * ctypedef npy_int64 int64_t + */ +typedef npy_int16 __pyx_t_5numpy_int16_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":692 + * ctypedef npy_int8 int8_t + * ctypedef npy_int16 int16_t + * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<< + * ctypedef npy_int64 int64_t + * #ctypedef npy_int96 int96_t + */ +typedef npy_int32 __pyx_t_5numpy_int32_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":693 + * ctypedef npy_int16 int16_t + * ctypedef npy_int32 int32_t + * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<< + * #ctypedef npy_int96 int96_t + * #ctypedef npy_int128 int128_t + */ +typedef npy_int64 __pyx_t_5numpy_int64_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":697 + * #ctypedef npy_int128 int128_t + * + * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<< + * ctypedef npy_uint16 uint16_t + * ctypedef npy_uint32 uint32_t + */ +typedef npy_uint8 __pyx_t_5numpy_uint8_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":698 + * + * ctypedef npy_uint8 uint8_t + * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<< + * ctypedef npy_uint32 uint32_t + * ctypedef npy_uint64 uint64_t + */ +typedef npy_uint16 __pyx_t_5numpy_uint16_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":699 + * ctypedef npy_uint8 uint8_t + * ctypedef npy_uint16 uint16_t + * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<< + * ctypedef npy_uint64 uint64_t + * #ctypedef npy_uint96 uint96_t + */ +typedef npy_uint32 __pyx_t_5numpy_uint32_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":700 + * ctypedef npy_uint16 uint16_t + * ctypedef npy_uint32 uint32_t + * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<< + * #ctypedef npy_uint96 uint96_t + * #ctypedef npy_uint128 uint128_t + */ +typedef npy_uint64 __pyx_t_5numpy_uint64_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":704 + * #ctypedef npy_uint128 uint128_t + * + * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<< + * ctypedef npy_float64 float64_t + * #ctypedef npy_float80 float80_t + */ +typedef npy_float32 __pyx_t_5numpy_float32_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":705 + * + * ctypedef npy_float32 float32_t + * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<< + * #ctypedef npy_float80 float80_t + * #ctypedef npy_float128 float128_t + */ +typedef npy_float64 __pyx_t_5numpy_float64_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":714 + * # The int types are mapped a bit surprising -- + * # numpy.int corresponds to 'l' and numpy.long to 'q' + * ctypedef npy_long int_t # <<<<<<<<<<<<<< + * ctypedef npy_longlong long_t + * ctypedef npy_longlong longlong_t + */ +typedef npy_long __pyx_t_5numpy_int_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":715 + * # numpy.int corresponds to 'l' and numpy.long to 'q' + * ctypedef npy_long int_t + * ctypedef npy_longlong long_t # <<<<<<<<<<<<<< + * ctypedef npy_longlong longlong_t + * + */ +typedef npy_longlong __pyx_t_5numpy_long_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":716 + * ctypedef npy_long int_t + * ctypedef npy_longlong long_t + * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<< + * + * ctypedef npy_ulong uint_t + */ +typedef npy_longlong __pyx_t_5numpy_longlong_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":718 + * ctypedef npy_longlong longlong_t + * + * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<< + * ctypedef npy_ulonglong ulong_t + * ctypedef npy_ulonglong ulonglong_t + */ +typedef npy_ulong __pyx_t_5numpy_uint_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":719 + * + * ctypedef npy_ulong uint_t + * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<< + * ctypedef npy_ulonglong ulonglong_t + * + */ +typedef npy_ulonglong __pyx_t_5numpy_ulong_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":720 + * ctypedef npy_ulong uint_t + * ctypedef npy_ulonglong ulong_t + * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<< + * + * ctypedef npy_intp intp_t + */ +typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":722 + * ctypedef npy_ulonglong ulonglong_t + * + * ctypedef npy_intp intp_t # <<<<<<<<<<<<<< + * ctypedef npy_uintp uintp_t + * + */ +typedef npy_intp __pyx_t_5numpy_intp_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":723 + * + * ctypedef npy_intp intp_t + * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<< + * + * ctypedef npy_double float_t + */ +typedef npy_uintp __pyx_t_5numpy_uintp_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":725 + * ctypedef npy_uintp uintp_t + * + * ctypedef npy_double float_t # <<<<<<<<<<<<<< + * ctypedef npy_double double_t + * ctypedef npy_longdouble longdouble_t + */ +typedef npy_double __pyx_t_5numpy_float_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":726 + * + * ctypedef npy_double float_t + * ctypedef npy_double double_t # <<<<<<<<<<<<<< + * ctypedef npy_longdouble longdouble_t + * + */ +typedef npy_double __pyx_t_5numpy_double_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":727 + * ctypedef npy_double float_t + * ctypedef npy_double double_t + * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<< + * + * ctypedef npy_cfloat cfloat_t + */ +typedef npy_longdouble __pyx_t_5numpy_longdouble_t; + +/* "box_overlaps.pyx":13 + * + * DTYPE = np.float + * ctypedef np.float_t DTYPE_t # <<<<<<<<<<<<<< + * + * def bbox_overlaps( + */ +typedef __pyx_t_5numpy_float_t __pyx_t_4bbox_DTYPE_t; +/* Declarations.proto */ +#if CYTHON_CCOMPLEX + #ifdef __cplusplus + typedef ::std::complex< float > __pyx_t_float_complex; + #else + typedef float _Complex __pyx_t_float_complex; + #endif +#else + typedef struct { float real, imag; } __pyx_t_float_complex; +#endif +static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float, float); + +/* Declarations.proto */ +#if CYTHON_CCOMPLEX + #ifdef __cplusplus + typedef ::std::complex< double > __pyx_t_double_complex; + #else + typedef double _Complex __pyx_t_double_complex; + #endif +#else + typedef struct { double real, imag; } __pyx_t_double_complex; +#endif +static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double, double); + + +/*--- Type declarations ---*/ + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":729 + * ctypedef npy_longdouble longdouble_t + * + * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<< + * ctypedef npy_cdouble cdouble_t + * ctypedef npy_clongdouble clongdouble_t + */ +typedef npy_cfloat __pyx_t_5numpy_cfloat_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":730 + * + * ctypedef npy_cfloat cfloat_t + * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<< + * ctypedef npy_clongdouble clongdouble_t + * + */ +typedef npy_cdouble __pyx_t_5numpy_cdouble_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":731 + * ctypedef npy_cfloat cfloat_t + * ctypedef npy_cdouble cdouble_t + * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<< + * + * ctypedef npy_cdouble complex_t + */ +typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t; + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":733 + * ctypedef npy_clongdouble clongdouble_t + * + * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<< + * + * cdef inline object PyArray_MultiIterNew1(a): + */ +typedef npy_cdouble __pyx_t_5numpy_complex_t; + +/* --- Runtime support code (head) --- */ +/* Refnanny.proto */ +#ifndef CYTHON_REFNANNY + #define CYTHON_REFNANNY 0 +#endif +#if CYTHON_REFNANNY + typedef struct { + void (*INCREF)(void*, PyObject*, int); + void (*DECREF)(void*, PyObject*, int); + void (*GOTREF)(void*, PyObject*, int); + void (*GIVEREF)(void*, PyObject*, int); + void* (*SetupContext)(const char*, int, const char*); + void (*FinishContext)(void**); + } __Pyx_RefNannyAPIStruct; + static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; + static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); + #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; +#ifdef WITH_THREAD + #define __Pyx_RefNannySetupContext(name, acquire_gil)\ + if (acquire_gil) {\ + PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ + __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ + PyGILState_Release(__pyx_gilstate_save);\ + } else {\ + __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ + } +#else + #define __Pyx_RefNannySetupContext(name, acquire_gil)\ + __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) +#endif + #define __Pyx_RefNannyFinishContext()\ + __Pyx_RefNanny->FinishContext(&__pyx_refnanny) + #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) + #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) + #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) + #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) + #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) + #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) + #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) + #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) +#else + #define __Pyx_RefNannyDeclarations + #define __Pyx_RefNannySetupContext(name, acquire_gil) + #define __Pyx_RefNannyFinishContext() + #define __Pyx_INCREF(r) Py_INCREF(r) + #define __Pyx_DECREF(r) Py_DECREF(r) + #define __Pyx_GOTREF(r) + #define __Pyx_GIVEREF(r) + #define __Pyx_XINCREF(r) Py_XINCREF(r) + #define __Pyx_XDECREF(r) Py_XDECREF(r) + #define __Pyx_XGOTREF(r) + #define __Pyx_XGIVEREF(r) +#endif +#define __Pyx_XDECREF_SET(r, v) do {\ + PyObject *tmp = (PyObject *) r;\ + r = v; __Pyx_XDECREF(tmp);\ + } while (0) +#define __Pyx_DECREF_SET(r, v) do {\ + PyObject *tmp = (PyObject *) r;\ + r = v; __Pyx_DECREF(tmp);\ + } while (0) +#define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) +#define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) + +/* PyObjectGetAttrStr.proto */ +#if CYTHON_USE_TYPE_SLOTS +static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name); +#else +#define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n) +#endif + +/* GetBuiltinName.proto */ +static PyObject *__Pyx_GetBuiltinName(PyObject *name); + +/* RaiseArgTupleInvalid.proto */ +static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, + Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); + +/* RaiseDoubleKeywords.proto */ +static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); + +/* ParseKeywords.proto */ +static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\ + PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\ + const char* function_name); + +/* ArgTypeTest.proto */ +#define __Pyx_ArgTypeTest(obj, type, none_allowed, name, exact)\ + ((likely((Py_TYPE(obj) == type) | (none_allowed && (obj == Py_None)))) ? 1 :\ + __Pyx__ArgTypeTest(obj, type, name, exact)) +static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact); + +/* IsLittleEndian.proto */ +static CYTHON_INLINE int __Pyx_Is_Little_Endian(void); + +/* BufferFormatCheck.proto */ +static const char* __Pyx_BufFmt_CheckString(__Pyx_BufFmt_Context* ctx, const char* ts); +static void __Pyx_BufFmt_Init(__Pyx_BufFmt_Context* ctx, + __Pyx_BufFmt_StackElem* stack, + __Pyx_TypeInfo* type); + +/* BufferGetAndValidate.proto */ +#define __Pyx_GetBufferAndValidate(buf, obj, dtype, flags, nd, cast, stack)\ + ((obj == Py_None || obj == NULL) ?\ + (__Pyx_ZeroBuffer(buf), 0) :\ + __Pyx__GetBufferAndValidate(buf, obj, dtype, flags, nd, cast, stack)) +static int __Pyx__GetBufferAndValidate(Py_buffer* buf, PyObject* obj, + __Pyx_TypeInfo* dtype, int flags, int nd, int cast, __Pyx_BufFmt_StackElem* stack); +static void __Pyx_ZeroBuffer(Py_buffer* buf); +static CYTHON_INLINE void __Pyx_SafeReleaseBuffer(Py_buffer* info); +static Py_ssize_t __Pyx_minusones[] = { -1, -1, -1, -1, -1, -1, -1, -1 }; +static Py_ssize_t __Pyx_zeros[] = { 0, 0, 0, 0, 0, 0, 0, 0 }; + +/* PyDictVersioning.proto */ +#if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS +#define __PYX_DICT_VERSION_INIT ((PY_UINT64_T) -1) +#define __PYX_GET_DICT_VERSION(dict) (((PyDictObject*)(dict))->ma_version_tag) +#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var)\ + (version_var) = __PYX_GET_DICT_VERSION(dict);\ + (cache_var) = (value); +#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) {\ + static PY_UINT64_T __pyx_dict_version = 0;\ + static PyObject *__pyx_dict_cached_value = NULL;\ + if (likely(__PYX_GET_DICT_VERSION(DICT) == __pyx_dict_version)) {\ + (VAR) = __pyx_dict_cached_value;\ + } else {\ + (VAR) = __pyx_dict_cached_value = (LOOKUP);\ + __pyx_dict_version = __PYX_GET_DICT_VERSION(DICT);\ + }\ +} +static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj); +static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj); +static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version); +#else +#define __PYX_GET_DICT_VERSION(dict) (0) +#define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var) +#define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) (VAR) = (LOOKUP); +#endif + +/* GetModuleGlobalName.proto */ +#if CYTHON_USE_DICT_VERSIONS +#define __Pyx_GetModuleGlobalName(var, name) {\ + static PY_UINT64_T __pyx_dict_version = 0;\ + static PyObject *__pyx_dict_cached_value = NULL;\ + (var) = (likely(__pyx_dict_version == __PYX_GET_DICT_VERSION(__pyx_d))) ?\ + (likely(__pyx_dict_cached_value) ? __Pyx_NewRef(__pyx_dict_cached_value) : __Pyx_GetBuiltinName(name)) :\ + __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ +} +#define __Pyx_GetModuleGlobalNameUncached(var, name) {\ + PY_UINT64_T __pyx_dict_version;\ + PyObject *__pyx_dict_cached_value;\ + (var) = __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ +} +static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value); +#else +#define __Pyx_GetModuleGlobalName(var, name) (var) = __Pyx__GetModuleGlobalName(name) +#define __Pyx_GetModuleGlobalNameUncached(var, name) (var) = __Pyx__GetModuleGlobalName(name) +static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name); +#endif + +/* PyObjectCall.proto */ +#if CYTHON_COMPILING_IN_CPYTHON +static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw); +#else +#define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw) +#endif + +/* ExtTypeTest.proto */ +static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type); + +/* BufferIndexError.proto */ +static void __Pyx_RaiseBufferIndexError(int axis); + +#define __Pyx_BufPtrStrided2d(type, buf, i0, s0, i1, s1) (type)((char*)buf + i0 * s0 + i1 * s1) +/* PyThreadStateGet.proto */ +#if CYTHON_FAST_THREAD_STATE +#define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate; +#define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current; +#define __Pyx_PyErr_Occurred() __pyx_tstate->curexc_type +#else +#define __Pyx_PyThreadState_declare +#define __Pyx_PyThreadState_assign +#define __Pyx_PyErr_Occurred() PyErr_Occurred() +#endif + +/* PyErrFetchRestore.proto */ +#if CYTHON_FAST_THREAD_STATE +#define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL) +#define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb) +#define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb) +#define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb) +#define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb) +static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); +static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); +#if CYTHON_COMPILING_IN_CPYTHON +#define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL)) +#else +#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) +#endif +#else +#define __Pyx_PyErr_Clear() PyErr_Clear() +#define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) +#define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb) +#define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb) +#define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb) +#define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb) +#define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb) +#define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb) +#endif + +/* GetTopmostException.proto */ +#if CYTHON_USE_EXC_INFO_STACK +static _PyErr_StackItem * __Pyx_PyErr_GetTopmostException(PyThreadState *tstate); +#endif + +/* SaveResetException.proto */ +#if CYTHON_FAST_THREAD_STATE +#define __Pyx_ExceptionSave(type, value, tb) __Pyx__ExceptionSave(__pyx_tstate, type, value, tb) +static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); +#define __Pyx_ExceptionReset(type, value, tb) __Pyx__ExceptionReset(__pyx_tstate, type, value, tb) +static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); +#else +#define __Pyx_ExceptionSave(type, value, tb) PyErr_GetExcInfo(type, value, tb) +#define __Pyx_ExceptionReset(type, value, tb) PyErr_SetExcInfo(type, value, tb) +#endif + +/* PyErrExceptionMatches.proto */ +#if CYTHON_FAST_THREAD_STATE +#define __Pyx_PyErr_ExceptionMatches(err) __Pyx_PyErr_ExceptionMatchesInState(__pyx_tstate, err) +static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err); +#else +#define __Pyx_PyErr_ExceptionMatches(err) PyErr_ExceptionMatches(err) +#endif + +/* GetException.proto */ +#if CYTHON_FAST_THREAD_STATE +#define __Pyx_GetException(type, value, tb) __Pyx__GetException(__pyx_tstate, type, value, tb) +static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); +#else +static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb); +#endif + +/* RaiseException.proto */ +static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); + +/* TypeImport.proto */ +#ifndef __PYX_HAVE_RT_ImportType_proto +#define __PYX_HAVE_RT_ImportType_proto +enum __Pyx_ImportType_CheckSize { + __Pyx_ImportType_CheckSize_Error = 0, + __Pyx_ImportType_CheckSize_Warn = 1, + __Pyx_ImportType_CheckSize_Ignore = 2 +}; +static PyTypeObject *__Pyx_ImportType(PyObject* module, const char *module_name, const char *class_name, size_t size, enum __Pyx_ImportType_CheckSize check_size); +#endif + +/* Import.proto */ +static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level); + +/* CLineInTraceback.proto */ +#ifdef CYTHON_CLINE_IN_TRACEBACK +#define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0) +#else +static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line); +#endif + +/* CodeObjectCache.proto */ +typedef struct { + PyCodeObject* code_object; + int code_line; +} __Pyx_CodeObjectCacheEntry; +struct __Pyx_CodeObjectCache { + int count; + int max_count; + __Pyx_CodeObjectCacheEntry* entries; +}; +static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; +static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); +static PyCodeObject *__pyx_find_code_object(int code_line); +static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object); + +/* AddTraceback.proto */ +static void __Pyx_AddTraceback(const char *funcname, int c_line, + int py_line, const char *filename); + +/* BufferStructDeclare.proto */ +typedef struct { + Py_ssize_t shape, strides, suboffsets; +} __Pyx_Buf_DimInfo; +typedef struct { + size_t refcount; + Py_buffer pybuffer; +} __Pyx_Buffer; +typedef struct { + __Pyx_Buffer *rcbuffer; + char *data; + __Pyx_Buf_DimInfo diminfo[8]; +} __Pyx_LocalBuf_ND; + +#if PY_MAJOR_VERSION < 3 + static int __Pyx_GetBuffer(PyObject *obj, Py_buffer *view, int flags); + static void __Pyx_ReleaseBuffer(Py_buffer *view); +#else + #define __Pyx_GetBuffer PyObject_GetBuffer + #define __Pyx_ReleaseBuffer PyBuffer_Release +#endif + + +/* GCCDiagnostics.proto */ +#if defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) +#define __Pyx_HAS_GCC_DIAGNOSTIC +#endif + +/* RealImag.proto */ +#if CYTHON_CCOMPLEX + #ifdef __cplusplus + #define __Pyx_CREAL(z) ((z).real()) + #define __Pyx_CIMAG(z) ((z).imag()) + #else + #define __Pyx_CREAL(z) (__real__(z)) + #define __Pyx_CIMAG(z) (__imag__(z)) + #endif +#else + #define __Pyx_CREAL(z) ((z).real) + #define __Pyx_CIMAG(z) ((z).imag) +#endif +#if defined(__cplusplus) && CYTHON_CCOMPLEX\ + && (defined(_WIN32) || defined(__clang__) || (defined(__GNUC__) && (__GNUC__ >= 5 || __GNUC__ == 4 && __GNUC_MINOR__ >= 4 )) || __cplusplus >= 201103) + #define __Pyx_SET_CREAL(z,x) ((z).real(x)) + #define __Pyx_SET_CIMAG(z,y) ((z).imag(y)) +#else + #define __Pyx_SET_CREAL(z,x) __Pyx_CREAL(z) = (x) + #define __Pyx_SET_CIMAG(z,y) __Pyx_CIMAG(z) = (y) +#endif + +/* Arithmetic.proto */ +#if CYTHON_CCOMPLEX + #define __Pyx_c_eq_float(a, b) ((a)==(b)) + #define __Pyx_c_sum_float(a, b) ((a)+(b)) + #define __Pyx_c_diff_float(a, b) ((a)-(b)) + #define __Pyx_c_prod_float(a, b) ((a)*(b)) + #define __Pyx_c_quot_float(a, b) ((a)/(b)) + #define __Pyx_c_neg_float(a) (-(a)) + #ifdef __cplusplus + #define __Pyx_c_is_zero_float(z) ((z)==(float)0) + #define __Pyx_c_conj_float(z) (::std::conj(z)) + #if 1 + #define __Pyx_c_abs_float(z) (::std::abs(z)) + #define __Pyx_c_pow_float(a, b) (::std::pow(a, b)) + #endif + #else + #define __Pyx_c_is_zero_float(z) ((z)==0) + #define __Pyx_c_conj_float(z) (conjf(z)) + #if 1 + #define __Pyx_c_abs_float(z) (cabsf(z)) + #define __Pyx_c_pow_float(a, b) (cpowf(a, b)) + #endif + #endif +#else + static CYTHON_INLINE int __Pyx_c_eq_float(__pyx_t_float_complex, __pyx_t_float_complex); + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_sum_float(__pyx_t_float_complex, __pyx_t_float_complex); + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_diff_float(__pyx_t_float_complex, __pyx_t_float_complex); + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_prod_float(__pyx_t_float_complex, __pyx_t_float_complex); + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quot_float(__pyx_t_float_complex, __pyx_t_float_complex); + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_neg_float(__pyx_t_float_complex); + static CYTHON_INLINE int __Pyx_c_is_zero_float(__pyx_t_float_complex); + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_conj_float(__pyx_t_float_complex); + #if 1 + static CYTHON_INLINE float __Pyx_c_abs_float(__pyx_t_float_complex); + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_pow_float(__pyx_t_float_complex, __pyx_t_float_complex); + #endif +#endif + +/* Arithmetic.proto */ +#if CYTHON_CCOMPLEX + #define __Pyx_c_eq_double(a, b) ((a)==(b)) + #define __Pyx_c_sum_double(a, b) ((a)+(b)) + #define __Pyx_c_diff_double(a, b) ((a)-(b)) + #define __Pyx_c_prod_double(a, b) ((a)*(b)) + #define __Pyx_c_quot_double(a, b) ((a)/(b)) + #define __Pyx_c_neg_double(a) (-(a)) + #ifdef __cplusplus + #define __Pyx_c_is_zero_double(z) ((z)==(double)0) + #define __Pyx_c_conj_double(z) (::std::conj(z)) + #if 1 + #define __Pyx_c_abs_double(z) (::std::abs(z)) + #define __Pyx_c_pow_double(a, b) (::std::pow(a, b)) + #endif + #else + #define __Pyx_c_is_zero_double(z) ((z)==0) + #define __Pyx_c_conj_double(z) (conj(z)) + #if 1 + #define __Pyx_c_abs_double(z) (cabs(z)) + #define __Pyx_c_pow_double(a, b) (cpow(a, b)) + #endif + #endif +#else + static CYTHON_INLINE int __Pyx_c_eq_double(__pyx_t_double_complex, __pyx_t_double_complex); + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_sum_double(__pyx_t_double_complex, __pyx_t_double_complex); + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_diff_double(__pyx_t_double_complex, __pyx_t_double_complex); + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_prod_double(__pyx_t_double_complex, __pyx_t_double_complex); + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_quot_double(__pyx_t_double_complex, __pyx_t_double_complex); + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_neg_double(__pyx_t_double_complex); + static CYTHON_INLINE int __Pyx_c_is_zero_double(__pyx_t_double_complex); + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_conj_double(__pyx_t_double_complex); + #if 1 + static CYTHON_INLINE double __Pyx_c_abs_double(__pyx_t_double_complex); + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_pow_double(__pyx_t_double_complex, __pyx_t_double_complex); + #endif +#endif + +/* CIntToPy.proto */ +static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value); + +/* CIntFromPy.proto */ +static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *); + +/* CIntToPy.proto */ +static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value); + +/* CIntFromPy.proto */ +static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *); + +/* CIntFromPy.proto */ +static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *); + +/* FastTypeChecks.proto */ +#if CYTHON_COMPILING_IN_CPYTHON +#define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type) +static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b); +static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type); +static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2); +#else +#define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) +#define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type) +#define __Pyx_PyErr_GivenExceptionMatches2(err, type1, type2) (PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2)) +#endif +#define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception) + +/* CheckBinaryVersion.proto */ +static int __Pyx_check_binary_version(void); + +/* InitStrings.proto */ +static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); + + +/* Module declarations from 'cython' */ + +/* Module declarations from 'cpython.buffer' */ + +/* Module declarations from 'libc.string' */ + +/* Module declarations from 'libc.stdio' */ + +/* Module declarations from '__builtin__' */ + +/* Module declarations from 'cpython.type' */ +static PyTypeObject *__pyx_ptype_7cpython_4type_type = 0; + +/* Module declarations from 'cpython' */ + +/* Module declarations from 'cpython.object' */ + +/* Module declarations from 'cpython.ref' */ + +/* Module declarations from 'cpython.mem' */ + +/* Module declarations from 'numpy' */ + +/* Module declarations from 'numpy' */ +static PyTypeObject *__pyx_ptype_5numpy_dtype = 0; +static PyTypeObject *__pyx_ptype_5numpy_flatiter = 0; +static PyTypeObject *__pyx_ptype_5numpy_broadcast = 0; +static PyTypeObject *__pyx_ptype_5numpy_ndarray = 0; +static PyTypeObject *__pyx_ptype_5numpy_generic = 0; +static PyTypeObject *__pyx_ptype_5numpy_number = 0; +static PyTypeObject *__pyx_ptype_5numpy_integer = 0; +static PyTypeObject *__pyx_ptype_5numpy_signedinteger = 0; +static PyTypeObject *__pyx_ptype_5numpy_unsignedinteger = 0; +static PyTypeObject *__pyx_ptype_5numpy_inexact = 0; +static PyTypeObject *__pyx_ptype_5numpy_floating = 0; +static PyTypeObject *__pyx_ptype_5numpy_complexfloating = 0; +static PyTypeObject *__pyx_ptype_5numpy_flexible = 0; +static PyTypeObject *__pyx_ptype_5numpy_character = 0; +static PyTypeObject *__pyx_ptype_5numpy_ufunc = 0; + +/* Module declarations from 'bbox' */ +static __Pyx_TypeInfo __Pyx_TypeInfo_nn___pyx_t_4bbox_DTYPE_t = { "DTYPE_t", NULL, sizeof(__pyx_t_4bbox_DTYPE_t), { 0 }, 0, 'R', 0, 0 }; +#define __Pyx_MODULE_NAME "bbox" +extern int __pyx_module_is_main_bbox; +int __pyx_module_is_main_bbox = 0; + +/* Implementation of 'bbox' */ +static PyObject *__pyx_builtin_range; +static PyObject *__pyx_builtin_ImportError; +static const char __pyx_k_K[] = "K"; +static const char __pyx_k_N[] = "N"; +static const char __pyx_k_k[] = "k"; +static const char __pyx_k_n[] = "n"; +static const char __pyx_k_ih[] = "ih"; +static const char __pyx_k_iw[] = "iw"; +static const char __pyx_k_np[] = "np"; +static const char __pyx_k_ua[] = "ua"; +static const char __pyx_k_bbox[] = "bbox"; +static const char __pyx_k_main[] = "__main__"; +static const char __pyx_k_name[] = "__name__"; +static const char __pyx_k_test[] = "__test__"; +static const char __pyx_k_DTYPE[] = "DTYPE"; +static const char __pyx_k_boxes[] = "boxes"; +static const char __pyx_k_dtype[] = "dtype"; +static const char __pyx_k_float[] = "float"; +static const char __pyx_k_numpy[] = "numpy"; +static const char __pyx_k_range[] = "range"; +static const char __pyx_k_zeros[] = "zeros"; +static const char __pyx_k_import[] = "__import__"; +static const char __pyx_k_box_area[] = "box_area"; +static const char __pyx_k_overlaps[] = "overlaps"; +static const char __pyx_k_ImportError[] = "ImportError"; +static const char __pyx_k_query_boxes[] = "query_boxes"; +static const char __pyx_k_bbox_overlaps[] = "bbox_overlaps"; +static const char __pyx_k_box_overlaps_pyx[] = "box_overlaps.pyx"; +static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback"; +static const char __pyx_k_numpy_core_multiarray_failed_to[] = "numpy.core.multiarray failed to import"; +static const char __pyx_k_numpy_core_umath_failed_to_impor[] = "numpy.core.umath failed to import"; +static PyObject *__pyx_n_s_DTYPE; +static PyObject *__pyx_n_s_ImportError; +static PyObject *__pyx_n_s_K; +static PyObject *__pyx_n_s_N; +static PyObject *__pyx_n_s_bbox; +static PyObject *__pyx_n_s_bbox_overlaps; +static PyObject *__pyx_n_s_box_area; +static PyObject *__pyx_kp_s_box_overlaps_pyx; +static PyObject *__pyx_n_s_boxes; +static PyObject *__pyx_n_s_cline_in_traceback; +static PyObject *__pyx_n_s_dtype; +static PyObject *__pyx_n_s_float; +static PyObject *__pyx_n_s_ih; +static PyObject *__pyx_n_s_import; +static PyObject *__pyx_n_s_iw; +static PyObject *__pyx_n_s_k; +static PyObject *__pyx_n_s_main; +static PyObject *__pyx_n_s_n; +static PyObject *__pyx_n_s_name; +static PyObject *__pyx_n_s_np; +static PyObject *__pyx_n_s_numpy; +static PyObject *__pyx_kp_s_numpy_core_multiarray_failed_to; +static PyObject *__pyx_kp_s_numpy_core_umath_failed_to_impor; +static PyObject *__pyx_n_s_overlaps; +static PyObject *__pyx_n_s_query_boxes; +static PyObject *__pyx_n_s_range; +static PyObject *__pyx_n_s_test; +static PyObject *__pyx_n_s_ua; +static PyObject *__pyx_n_s_zeros; +static PyObject *__pyx_pf_4bbox_bbox_overlaps(CYTHON_UNUSED PyObject *__pyx_self, PyArrayObject *__pyx_v_boxes, PyArrayObject *__pyx_v_query_boxes); /* proto */ +static PyObject *__pyx_tuple_; +static PyObject *__pyx_tuple__2; +static PyObject *__pyx_tuple__3; +static PyObject *__pyx_codeobj__4; +/* Late includes */ + +/* "box_overlaps.pyx":15 + * ctypedef np.float_t DTYPE_t + * + * def bbox_overlaps( # <<<<<<<<<<<<<< + * np.ndarray[DTYPE_t, ndim=2] boxes, + * np.ndarray[DTYPE_t, ndim=2] query_boxes): + */ + +/* Python wrapper */ +static PyObject *__pyx_pw_4bbox_1bbox_overlaps(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ +static char __pyx_doc_4bbox_bbox_overlaps[] = "\n Parameters\n ----------\n boxes: (N, 4) ndarray of float\n query_boxes: (K, 4) ndarray of float\n Returns\n -------\n overlaps: (N, K) ndarray of overlap between boxes and query_boxes\n "; +static PyMethodDef __pyx_mdef_4bbox_1bbox_overlaps = {"bbox_overlaps", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_4bbox_1bbox_overlaps, METH_VARARGS|METH_KEYWORDS, __pyx_doc_4bbox_bbox_overlaps}; +static PyObject *__pyx_pw_4bbox_1bbox_overlaps(PyObject *__pyx_self, PyObject *__pyx_args, PyObject *__pyx_kwds) { + PyArrayObject *__pyx_v_boxes = 0; + PyArrayObject *__pyx_v_query_boxes = 0; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; + PyObject *__pyx_r = 0; + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("bbox_overlaps (wrapper)", 0); + { + static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_boxes,&__pyx_n_s_query_boxes,0}; + PyObject* values[2] = {0,0}; + if (unlikely(__pyx_kwds)) { + Py_ssize_t kw_args; + const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); + switch (pos_args) { + case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); + CYTHON_FALLTHROUGH; + case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); + CYTHON_FALLTHROUGH; + case 0: break; + default: goto __pyx_L5_argtuple_error; + } + kw_args = PyDict_Size(__pyx_kwds); + switch (pos_args) { + case 0: + if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_boxes)) != 0)) kw_args--; + else goto __pyx_L5_argtuple_error; + CYTHON_FALLTHROUGH; + case 1: + if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_query_boxes)) != 0)) kw_args--; + else { + __Pyx_RaiseArgtupleInvalid("bbox_overlaps", 1, 2, 2, 1); __PYX_ERR(0, 15, __pyx_L3_error) + } + } + if (unlikely(kw_args > 0)) { + if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "bbox_overlaps") < 0)) __PYX_ERR(0, 15, __pyx_L3_error) + } + } else if (PyTuple_GET_SIZE(__pyx_args) != 2) { + goto __pyx_L5_argtuple_error; + } else { + values[0] = PyTuple_GET_ITEM(__pyx_args, 0); + values[1] = PyTuple_GET_ITEM(__pyx_args, 1); + } + __pyx_v_boxes = ((PyArrayObject *)values[0]); + __pyx_v_query_boxes = ((PyArrayObject *)values[1]); + } + goto __pyx_L4_argument_unpacking_done; + __pyx_L5_argtuple_error:; + __Pyx_RaiseArgtupleInvalid("bbox_overlaps", 1, 2, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 15, __pyx_L3_error) + __pyx_L3_error:; + __Pyx_AddTraceback("bbox.bbox_overlaps", __pyx_clineno, __pyx_lineno, __pyx_filename); + __Pyx_RefNannyFinishContext(); + return NULL; + __pyx_L4_argument_unpacking_done:; + if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_boxes), __pyx_ptype_5numpy_ndarray, 1, "boxes", 0))) __PYX_ERR(0, 16, __pyx_L1_error) + if (unlikely(!__Pyx_ArgTypeTest(((PyObject *)__pyx_v_query_boxes), __pyx_ptype_5numpy_ndarray, 1, "query_boxes", 0))) __PYX_ERR(0, 17, __pyx_L1_error) + __pyx_r = __pyx_pf_4bbox_bbox_overlaps(__pyx_self, __pyx_v_boxes, __pyx_v_query_boxes); + + /* function exit code */ + goto __pyx_L0; + __pyx_L1_error:; + __pyx_r = NULL; + __pyx_L0:; + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +static PyObject *__pyx_pf_4bbox_bbox_overlaps(CYTHON_UNUSED PyObject *__pyx_self, PyArrayObject *__pyx_v_boxes, PyArrayObject *__pyx_v_query_boxes) { + unsigned int __pyx_v_N; + unsigned int __pyx_v_K; + PyArrayObject *__pyx_v_overlaps = 0; + __pyx_t_4bbox_DTYPE_t __pyx_v_iw; + __pyx_t_4bbox_DTYPE_t __pyx_v_ih; + __pyx_t_4bbox_DTYPE_t __pyx_v_box_area; + __pyx_t_4bbox_DTYPE_t __pyx_v_ua; + unsigned int __pyx_v_k; + unsigned int __pyx_v_n; + __Pyx_LocalBuf_ND __pyx_pybuffernd_boxes; + __Pyx_Buffer __pyx_pybuffer_boxes; + __Pyx_LocalBuf_ND __pyx_pybuffernd_overlaps; + __Pyx_Buffer __pyx_pybuffer_overlaps; + __Pyx_LocalBuf_ND __pyx_pybuffernd_query_boxes; + __Pyx_Buffer __pyx_pybuffer_query_boxes; + PyObject *__pyx_r = NULL; + __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + PyObject *__pyx_t_2 = NULL; + PyObject *__pyx_t_3 = NULL; + PyObject *__pyx_t_4 = NULL; + PyArrayObject *__pyx_t_5 = NULL; + unsigned int __pyx_t_6; + unsigned int __pyx_t_7; + unsigned int __pyx_t_8; + size_t __pyx_t_9; + Py_ssize_t __pyx_t_10; + int __pyx_t_11; + size_t __pyx_t_12; + Py_ssize_t __pyx_t_13; + size_t __pyx_t_14; + Py_ssize_t __pyx_t_15; + size_t __pyx_t_16; + Py_ssize_t __pyx_t_17; + unsigned int __pyx_t_18; + unsigned int __pyx_t_19; + unsigned int __pyx_t_20; + __pyx_t_4bbox_DTYPE_t __pyx_t_21; + __pyx_t_4bbox_DTYPE_t __pyx_t_22; + __pyx_t_4bbox_DTYPE_t __pyx_t_23; + __pyx_t_4bbox_DTYPE_t __pyx_t_24; + int __pyx_t_25; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; + __Pyx_RefNannySetupContext("bbox_overlaps", 0); + __pyx_pybuffer_overlaps.pybuffer.buf = NULL; + __pyx_pybuffer_overlaps.refcount = 0; + __pyx_pybuffernd_overlaps.data = NULL; + __pyx_pybuffernd_overlaps.rcbuffer = &__pyx_pybuffer_overlaps; + __pyx_pybuffer_boxes.pybuffer.buf = NULL; + __pyx_pybuffer_boxes.refcount = 0; + __pyx_pybuffernd_boxes.data = NULL; + __pyx_pybuffernd_boxes.rcbuffer = &__pyx_pybuffer_boxes; + __pyx_pybuffer_query_boxes.pybuffer.buf = NULL; + __pyx_pybuffer_query_boxes.refcount = 0; + __pyx_pybuffernd_query_boxes.data = NULL; + __pyx_pybuffernd_query_boxes.rcbuffer = &__pyx_pybuffer_query_boxes; + { + __Pyx_BufFmt_StackElem __pyx_stack[1]; + if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_boxes.rcbuffer->pybuffer, (PyObject*)__pyx_v_boxes, &__Pyx_TypeInfo_nn___pyx_t_4bbox_DTYPE_t, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0, 15, __pyx_L1_error) + } + __pyx_pybuffernd_boxes.diminfo[0].strides = __pyx_pybuffernd_boxes.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_boxes.diminfo[0].shape = __pyx_pybuffernd_boxes.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_boxes.diminfo[1].strides = __pyx_pybuffernd_boxes.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_boxes.diminfo[1].shape = __pyx_pybuffernd_boxes.rcbuffer->pybuffer.shape[1]; + { + __Pyx_BufFmt_StackElem __pyx_stack[1]; + if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_query_boxes.rcbuffer->pybuffer, (PyObject*)__pyx_v_query_boxes, &__Pyx_TypeInfo_nn___pyx_t_4bbox_DTYPE_t, PyBUF_FORMAT| PyBUF_STRIDES, 2, 0, __pyx_stack) == -1)) __PYX_ERR(0, 15, __pyx_L1_error) + } + __pyx_pybuffernd_query_boxes.diminfo[0].strides = __pyx_pybuffernd_query_boxes.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_query_boxes.diminfo[0].shape = __pyx_pybuffernd_query_boxes.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_query_boxes.diminfo[1].strides = __pyx_pybuffernd_query_boxes.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_query_boxes.diminfo[1].shape = __pyx_pybuffernd_query_boxes.rcbuffer->pybuffer.shape[1]; + + /* "box_overlaps.pyx":27 + * overlaps: (N, K) ndarray of overlap between boxes and query_boxes + * """ + * cdef unsigned int N = boxes.shape[0] # <<<<<<<<<<<<<< + * cdef unsigned int K = query_boxes.shape[0] + * cdef np.ndarray[DTYPE_t, ndim=2] overlaps = np.zeros((N, K), dtype=DTYPE) + */ + __pyx_v_N = (__pyx_v_boxes->dimensions[0]); + + /* "box_overlaps.pyx":28 + * """ + * cdef unsigned int N = boxes.shape[0] + * cdef unsigned int K = query_boxes.shape[0] # <<<<<<<<<<<<<< + * cdef np.ndarray[DTYPE_t, ndim=2] overlaps = np.zeros((N, K), dtype=DTYPE) + * cdef DTYPE_t iw, ih, box_area + */ + __pyx_v_K = (__pyx_v_query_boxes->dimensions[0]); + + /* "box_overlaps.pyx":29 + * cdef unsigned int N = boxes.shape[0] + * cdef unsigned int K = query_boxes.shape[0] + * cdef np.ndarray[DTYPE_t, ndim=2] overlaps = np.zeros((N, K), dtype=DTYPE) # <<<<<<<<<<<<<< + * cdef DTYPE_t iw, ih, box_area + * cdef DTYPE_t ua + */ + __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 29, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_zeros); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 29, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_2); + __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; + __pyx_t_1 = __Pyx_PyInt_From_unsigned_int(__pyx_v_N); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 29, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + __pyx_t_3 = __Pyx_PyInt_From_unsigned_int(__pyx_v_K); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 29, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_3); + __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 29, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_4); + __Pyx_GIVEREF(__pyx_t_1); + PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_1); + __Pyx_GIVEREF(__pyx_t_3); + PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_3); + __pyx_t_1 = 0; + __pyx_t_3 = 0; + __pyx_t_3 = PyTuple_New(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 29, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_3); + __Pyx_GIVEREF(__pyx_t_4); + PyTuple_SET_ITEM(__pyx_t_3, 0, __pyx_t_4); + __pyx_t_4 = 0; + __pyx_t_4 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 29, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_4); + __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_DTYPE); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 29, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + if (PyDict_SetItem(__pyx_t_4, __pyx_n_s_dtype, __pyx_t_1) < 0) __PYX_ERR(0, 29, __pyx_L1_error) + __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; + __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_3, __pyx_t_4); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 29, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; + __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; + __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; + if (!(likely(((__pyx_t_1) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_1, __pyx_ptype_5numpy_ndarray))))) __PYX_ERR(0, 29, __pyx_L1_error) + __pyx_t_5 = ((PyArrayObject *)__pyx_t_1); + { + __Pyx_BufFmt_StackElem __pyx_stack[1]; + if (unlikely(__Pyx_GetBufferAndValidate(&__pyx_pybuffernd_overlaps.rcbuffer->pybuffer, (PyObject*)__pyx_t_5, &__Pyx_TypeInfo_nn___pyx_t_4bbox_DTYPE_t, PyBUF_FORMAT| PyBUF_STRIDES| PyBUF_WRITABLE, 2, 0, __pyx_stack) == -1)) { + __pyx_v_overlaps = ((PyArrayObject *)Py_None); __Pyx_INCREF(Py_None); __pyx_pybuffernd_overlaps.rcbuffer->pybuffer.buf = NULL; + __PYX_ERR(0, 29, __pyx_L1_error) + } else {__pyx_pybuffernd_overlaps.diminfo[0].strides = __pyx_pybuffernd_overlaps.rcbuffer->pybuffer.strides[0]; __pyx_pybuffernd_overlaps.diminfo[0].shape = __pyx_pybuffernd_overlaps.rcbuffer->pybuffer.shape[0]; __pyx_pybuffernd_overlaps.diminfo[1].strides = __pyx_pybuffernd_overlaps.rcbuffer->pybuffer.strides[1]; __pyx_pybuffernd_overlaps.diminfo[1].shape = __pyx_pybuffernd_overlaps.rcbuffer->pybuffer.shape[1]; + } + } + __pyx_t_5 = 0; + __pyx_v_overlaps = ((PyArrayObject *)__pyx_t_1); + __pyx_t_1 = 0; + + /* "box_overlaps.pyx":33 + * cdef DTYPE_t ua + * cdef unsigned int k, n + * for k in range(K): # <<<<<<<<<<<<<< + * box_area = ( + * (query_boxes[k, 2] - query_boxes[k, 0] + 1) * + */ + __pyx_t_6 = __pyx_v_K; + __pyx_t_7 = __pyx_t_6; + for (__pyx_t_8 = 0; __pyx_t_8 < __pyx_t_7; __pyx_t_8+=1) { + __pyx_v_k = __pyx_t_8; + + /* "box_overlaps.pyx":35 + * for k in range(K): + * box_area = ( + * (query_boxes[k, 2] - query_boxes[k, 0] + 1) * # <<<<<<<<<<<<<< + * (query_boxes[k, 3] - query_boxes[k, 1] + 1) + * ) + */ + __pyx_t_9 = __pyx_v_k; + __pyx_t_10 = 2; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_9 >= (size_t)__pyx_pybuffernd_query_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_10 < 0) { + __pyx_t_10 += __pyx_pybuffernd_query_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_10 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_10 >= __pyx_pybuffernd_query_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 35, __pyx_L1_error) + } + __pyx_t_12 = __pyx_v_k; + __pyx_t_13 = 0; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_12 >= (size_t)__pyx_pybuffernd_query_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_13 < 0) { + __pyx_t_13 += __pyx_pybuffernd_query_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_13 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_13 >= __pyx_pybuffernd_query_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 35, __pyx_L1_error) + } + + /* "box_overlaps.pyx":36 + * box_area = ( + * (query_boxes[k, 2] - query_boxes[k, 0] + 1) * + * (query_boxes[k, 3] - query_boxes[k, 1] + 1) # <<<<<<<<<<<<<< + * ) + * for n in range(N): + */ + __pyx_t_14 = __pyx_v_k; + __pyx_t_15 = 3; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_14 >= (size_t)__pyx_pybuffernd_query_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_15 < 0) { + __pyx_t_15 += __pyx_pybuffernd_query_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_15 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_15 >= __pyx_pybuffernd_query_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 36, __pyx_L1_error) + } + __pyx_t_16 = __pyx_v_k; + __pyx_t_17 = 1; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_16 >= (size_t)__pyx_pybuffernd_query_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_17 < 0) { + __pyx_t_17 += __pyx_pybuffernd_query_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_17 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_17 >= __pyx_pybuffernd_query_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 36, __pyx_L1_error) + } + + /* "box_overlaps.pyx":35 + * for k in range(K): + * box_area = ( + * (query_boxes[k, 2] - query_boxes[k, 0] + 1) * # <<<<<<<<<<<<<< + * (query_boxes[k, 3] - query_boxes[k, 1] + 1) + * ) + */ + __pyx_v_box_area = ((((*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_query_boxes.rcbuffer->pybuffer.buf, __pyx_t_9, __pyx_pybuffernd_query_boxes.diminfo[0].strides, __pyx_t_10, __pyx_pybuffernd_query_boxes.diminfo[1].strides)) - (*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_query_boxes.rcbuffer->pybuffer.buf, __pyx_t_12, __pyx_pybuffernd_query_boxes.diminfo[0].strides, __pyx_t_13, __pyx_pybuffernd_query_boxes.diminfo[1].strides))) + 1.0) * (((*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_query_boxes.rcbuffer->pybuffer.buf, __pyx_t_14, __pyx_pybuffernd_query_boxes.diminfo[0].strides, __pyx_t_15, __pyx_pybuffernd_query_boxes.diminfo[1].strides)) - (*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_query_boxes.rcbuffer->pybuffer.buf, __pyx_t_16, __pyx_pybuffernd_query_boxes.diminfo[0].strides, __pyx_t_17, __pyx_pybuffernd_query_boxes.diminfo[1].strides))) + 1.0)); + + /* "box_overlaps.pyx":38 + * (query_boxes[k, 3] - query_boxes[k, 1] + 1) + * ) + * for n in range(N): # <<<<<<<<<<<<<< + * iw = ( + * min(boxes[n, 2], query_boxes[k, 2]) - + */ + __pyx_t_18 = __pyx_v_N; + __pyx_t_19 = __pyx_t_18; + for (__pyx_t_20 = 0; __pyx_t_20 < __pyx_t_19; __pyx_t_20+=1) { + __pyx_v_n = __pyx_t_20; + + /* "box_overlaps.pyx":40 + * for n in range(N): + * iw = ( + * min(boxes[n, 2], query_boxes[k, 2]) - # <<<<<<<<<<<<<< + * max(boxes[n, 0], query_boxes[k, 0]) + 1 + * ) + */ + __pyx_t_16 = __pyx_v_k; + __pyx_t_17 = 2; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_16 >= (size_t)__pyx_pybuffernd_query_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_17 < 0) { + __pyx_t_17 += __pyx_pybuffernd_query_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_17 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_17 >= __pyx_pybuffernd_query_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 40, __pyx_L1_error) + } + __pyx_t_21 = (*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_query_boxes.rcbuffer->pybuffer.buf, __pyx_t_16, __pyx_pybuffernd_query_boxes.diminfo[0].strides, __pyx_t_17, __pyx_pybuffernd_query_boxes.diminfo[1].strides)); + __pyx_t_16 = __pyx_v_n; + __pyx_t_17 = 2; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_16 >= (size_t)__pyx_pybuffernd_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_17 < 0) { + __pyx_t_17 += __pyx_pybuffernd_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_17 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_17 >= __pyx_pybuffernd_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 40, __pyx_L1_error) + } + __pyx_t_22 = (*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_boxes.rcbuffer->pybuffer.buf, __pyx_t_16, __pyx_pybuffernd_boxes.diminfo[0].strides, __pyx_t_17, __pyx_pybuffernd_boxes.diminfo[1].strides)); + if (((__pyx_t_21 < __pyx_t_22) != 0)) { + __pyx_t_23 = __pyx_t_21; + } else { + __pyx_t_23 = __pyx_t_22; + } + + /* "box_overlaps.pyx":41 + * iw = ( + * min(boxes[n, 2], query_boxes[k, 2]) - + * max(boxes[n, 0], query_boxes[k, 0]) + 1 # <<<<<<<<<<<<<< + * ) + * if iw > 0: + */ + __pyx_t_16 = __pyx_v_k; + __pyx_t_17 = 0; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_16 >= (size_t)__pyx_pybuffernd_query_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_17 < 0) { + __pyx_t_17 += __pyx_pybuffernd_query_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_17 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_17 >= __pyx_pybuffernd_query_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 41, __pyx_L1_error) + } + __pyx_t_21 = (*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_query_boxes.rcbuffer->pybuffer.buf, __pyx_t_16, __pyx_pybuffernd_query_boxes.diminfo[0].strides, __pyx_t_17, __pyx_pybuffernd_query_boxes.diminfo[1].strides)); + __pyx_t_16 = __pyx_v_n; + __pyx_t_17 = 0; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_16 >= (size_t)__pyx_pybuffernd_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_17 < 0) { + __pyx_t_17 += __pyx_pybuffernd_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_17 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_17 >= __pyx_pybuffernd_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 41, __pyx_L1_error) + } + __pyx_t_22 = (*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_boxes.rcbuffer->pybuffer.buf, __pyx_t_16, __pyx_pybuffernd_boxes.diminfo[0].strides, __pyx_t_17, __pyx_pybuffernd_boxes.diminfo[1].strides)); + if (((__pyx_t_21 > __pyx_t_22) != 0)) { + __pyx_t_24 = __pyx_t_21; + } else { + __pyx_t_24 = __pyx_t_22; + } + + /* "box_overlaps.pyx":40 + * for n in range(N): + * iw = ( + * min(boxes[n, 2], query_boxes[k, 2]) - # <<<<<<<<<<<<<< + * max(boxes[n, 0], query_boxes[k, 0]) + 1 + * ) + */ + __pyx_v_iw = ((__pyx_t_23 - __pyx_t_24) + 1.0); + + /* "box_overlaps.pyx":43 + * max(boxes[n, 0], query_boxes[k, 0]) + 1 + * ) + * if iw > 0: # <<<<<<<<<<<<<< + * ih = ( + * min(boxes[n, 3], query_boxes[k, 3]) - + */ + __pyx_t_25 = ((__pyx_v_iw > 0.0) != 0); + if (__pyx_t_25) { + + /* "box_overlaps.pyx":45 + * if iw > 0: + * ih = ( + * min(boxes[n, 3], query_boxes[k, 3]) - # <<<<<<<<<<<<<< + * max(boxes[n, 1], query_boxes[k, 1]) + 1 + * ) + */ + __pyx_t_16 = __pyx_v_k; + __pyx_t_17 = 3; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_16 >= (size_t)__pyx_pybuffernd_query_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_17 < 0) { + __pyx_t_17 += __pyx_pybuffernd_query_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_17 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_17 >= __pyx_pybuffernd_query_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 45, __pyx_L1_error) + } + __pyx_t_24 = (*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_query_boxes.rcbuffer->pybuffer.buf, __pyx_t_16, __pyx_pybuffernd_query_boxes.diminfo[0].strides, __pyx_t_17, __pyx_pybuffernd_query_boxes.diminfo[1].strides)); + __pyx_t_16 = __pyx_v_n; + __pyx_t_17 = 3; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_16 >= (size_t)__pyx_pybuffernd_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_17 < 0) { + __pyx_t_17 += __pyx_pybuffernd_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_17 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_17 >= __pyx_pybuffernd_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 45, __pyx_L1_error) + } + __pyx_t_23 = (*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_boxes.rcbuffer->pybuffer.buf, __pyx_t_16, __pyx_pybuffernd_boxes.diminfo[0].strides, __pyx_t_17, __pyx_pybuffernd_boxes.diminfo[1].strides)); + if (((__pyx_t_24 < __pyx_t_23) != 0)) { + __pyx_t_21 = __pyx_t_24; + } else { + __pyx_t_21 = __pyx_t_23; + } + + /* "box_overlaps.pyx":46 + * ih = ( + * min(boxes[n, 3], query_boxes[k, 3]) - + * max(boxes[n, 1], query_boxes[k, 1]) + 1 # <<<<<<<<<<<<<< + * ) + * if ih > 0: + */ + __pyx_t_16 = __pyx_v_k; + __pyx_t_17 = 1; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_16 >= (size_t)__pyx_pybuffernd_query_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_17 < 0) { + __pyx_t_17 += __pyx_pybuffernd_query_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_17 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_17 >= __pyx_pybuffernd_query_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 46, __pyx_L1_error) + } + __pyx_t_24 = (*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_query_boxes.rcbuffer->pybuffer.buf, __pyx_t_16, __pyx_pybuffernd_query_boxes.diminfo[0].strides, __pyx_t_17, __pyx_pybuffernd_query_boxes.diminfo[1].strides)); + __pyx_t_16 = __pyx_v_n; + __pyx_t_17 = 1; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_16 >= (size_t)__pyx_pybuffernd_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_17 < 0) { + __pyx_t_17 += __pyx_pybuffernd_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_17 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_17 >= __pyx_pybuffernd_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 46, __pyx_L1_error) + } + __pyx_t_23 = (*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_boxes.rcbuffer->pybuffer.buf, __pyx_t_16, __pyx_pybuffernd_boxes.diminfo[0].strides, __pyx_t_17, __pyx_pybuffernd_boxes.diminfo[1].strides)); + if (((__pyx_t_24 > __pyx_t_23) != 0)) { + __pyx_t_22 = __pyx_t_24; + } else { + __pyx_t_22 = __pyx_t_23; + } + + /* "box_overlaps.pyx":45 + * if iw > 0: + * ih = ( + * min(boxes[n, 3], query_boxes[k, 3]) - # <<<<<<<<<<<<<< + * max(boxes[n, 1], query_boxes[k, 1]) + 1 + * ) + */ + __pyx_v_ih = ((__pyx_t_21 - __pyx_t_22) + 1.0); + + /* "box_overlaps.pyx":48 + * max(boxes[n, 1], query_boxes[k, 1]) + 1 + * ) + * if ih > 0: # <<<<<<<<<<<<<< + * ua = float( + * (boxes[n, 2] - boxes[n, 0] + 1) * + */ + __pyx_t_25 = ((__pyx_v_ih > 0.0) != 0); + if (__pyx_t_25) { + + /* "box_overlaps.pyx":50 + * if ih > 0: + * ua = float( + * (boxes[n, 2] - boxes[n, 0] + 1) * # <<<<<<<<<<<<<< + * (boxes[n, 3] - boxes[n, 1] + 1) + + * box_area - iw * ih + */ + __pyx_t_16 = __pyx_v_n; + __pyx_t_17 = 2; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_16 >= (size_t)__pyx_pybuffernd_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_17 < 0) { + __pyx_t_17 += __pyx_pybuffernd_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_17 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_17 >= __pyx_pybuffernd_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 50, __pyx_L1_error) + } + __pyx_t_14 = __pyx_v_n; + __pyx_t_15 = 0; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_14 >= (size_t)__pyx_pybuffernd_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_15 < 0) { + __pyx_t_15 += __pyx_pybuffernd_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_15 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_15 >= __pyx_pybuffernd_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 50, __pyx_L1_error) + } + + /* "box_overlaps.pyx":51 + * ua = float( + * (boxes[n, 2] - boxes[n, 0] + 1) * + * (boxes[n, 3] - boxes[n, 1] + 1) + # <<<<<<<<<<<<<< + * box_area - iw * ih + * ) + */ + __pyx_t_12 = __pyx_v_n; + __pyx_t_13 = 3; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_12 >= (size_t)__pyx_pybuffernd_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_13 < 0) { + __pyx_t_13 += __pyx_pybuffernd_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_13 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_13 >= __pyx_pybuffernd_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 51, __pyx_L1_error) + } + __pyx_t_9 = __pyx_v_n; + __pyx_t_10 = 1; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_9 >= (size_t)__pyx_pybuffernd_boxes.diminfo[0].shape)) __pyx_t_11 = 0; + if (__pyx_t_10 < 0) { + __pyx_t_10 += __pyx_pybuffernd_boxes.diminfo[1].shape; + if (unlikely(__pyx_t_10 < 0)) __pyx_t_11 = 1; + } else if (unlikely(__pyx_t_10 >= __pyx_pybuffernd_boxes.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 51, __pyx_L1_error) + } + + /* "box_overlaps.pyx":49 + * ) + * if ih > 0: + * ua = float( # <<<<<<<<<<<<<< + * (boxes[n, 2] - boxes[n, 0] + 1) * + * (boxes[n, 3] - boxes[n, 1] + 1) + + */ + __pyx_v_ua = ((double)((((((*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_boxes.rcbuffer->pybuffer.buf, __pyx_t_16, __pyx_pybuffernd_boxes.diminfo[0].strides, __pyx_t_17, __pyx_pybuffernd_boxes.diminfo[1].strides)) - (*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_boxes.rcbuffer->pybuffer.buf, __pyx_t_14, __pyx_pybuffernd_boxes.diminfo[0].strides, __pyx_t_15, __pyx_pybuffernd_boxes.diminfo[1].strides))) + 1.0) * (((*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_boxes.rcbuffer->pybuffer.buf, __pyx_t_12, __pyx_pybuffernd_boxes.diminfo[0].strides, __pyx_t_13, __pyx_pybuffernd_boxes.diminfo[1].strides)) - (*__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_boxes.rcbuffer->pybuffer.buf, __pyx_t_9, __pyx_pybuffernd_boxes.diminfo[0].strides, __pyx_t_10, __pyx_pybuffernd_boxes.diminfo[1].strides))) + 1.0)) + __pyx_v_box_area) - (__pyx_v_iw * __pyx_v_ih))); + + /* "box_overlaps.pyx":54 + * box_area - iw * ih + * ) + * overlaps[n, k] = iw * ih / ua # <<<<<<<<<<<<<< + * return overlaps + */ + __pyx_t_22 = (__pyx_v_iw * __pyx_v_ih); + if (unlikely(__pyx_v_ua == 0)) { + PyErr_SetString(PyExc_ZeroDivisionError, "float division"); + __PYX_ERR(0, 54, __pyx_L1_error) + } + __pyx_t_9 = __pyx_v_n; + __pyx_t_12 = __pyx_v_k; + __pyx_t_11 = -1; + if (unlikely(__pyx_t_9 >= (size_t)__pyx_pybuffernd_overlaps.diminfo[0].shape)) __pyx_t_11 = 0; + if (unlikely(__pyx_t_12 >= (size_t)__pyx_pybuffernd_overlaps.diminfo[1].shape)) __pyx_t_11 = 1; + if (unlikely(__pyx_t_11 != -1)) { + __Pyx_RaiseBufferIndexError(__pyx_t_11); + __PYX_ERR(0, 54, __pyx_L1_error) + } + *__Pyx_BufPtrStrided2d(__pyx_t_4bbox_DTYPE_t *, __pyx_pybuffernd_overlaps.rcbuffer->pybuffer.buf, __pyx_t_9, __pyx_pybuffernd_overlaps.diminfo[0].strides, __pyx_t_12, __pyx_pybuffernd_overlaps.diminfo[1].strides) = (__pyx_t_22 / __pyx_v_ua); + + /* "box_overlaps.pyx":48 + * max(boxes[n, 1], query_boxes[k, 1]) + 1 + * ) + * if ih > 0: # <<<<<<<<<<<<<< + * ua = float( + * (boxes[n, 2] - boxes[n, 0] + 1) * + */ + } + + /* "box_overlaps.pyx":43 + * max(boxes[n, 0], query_boxes[k, 0]) + 1 + * ) + * if iw > 0: # <<<<<<<<<<<<<< + * ih = ( + * min(boxes[n, 3], query_boxes[k, 3]) - + */ + } + } + } + + /* "box_overlaps.pyx":55 + * ) + * overlaps[n, k] = iw * ih / ua + * return overlaps # <<<<<<<<<<<<<< + */ + __Pyx_XDECREF(__pyx_r); + __Pyx_INCREF(((PyObject *)__pyx_v_overlaps)); + __pyx_r = ((PyObject *)__pyx_v_overlaps); + goto __pyx_L0; + + /* "box_overlaps.pyx":15 + * ctypedef np.float_t DTYPE_t + * + * def bbox_overlaps( # <<<<<<<<<<<<<< + * np.ndarray[DTYPE_t, ndim=2] boxes, + * np.ndarray[DTYPE_t, ndim=2] query_boxes): + */ + + /* function exit code */ + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_XDECREF(__pyx_t_2); + __Pyx_XDECREF(__pyx_t_3); + __Pyx_XDECREF(__pyx_t_4); + { PyObject *__pyx_type, *__pyx_value, *__pyx_tb; + __Pyx_PyThreadState_declare + __Pyx_PyThreadState_assign + __Pyx_ErrFetch(&__pyx_type, &__pyx_value, &__pyx_tb); + __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_boxes.rcbuffer->pybuffer); + __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_overlaps.rcbuffer->pybuffer); + __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_query_boxes.rcbuffer->pybuffer); + __Pyx_ErrRestore(__pyx_type, __pyx_value, __pyx_tb);} + __Pyx_AddTraceback("bbox.bbox_overlaps", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = NULL; + goto __pyx_L2; + __pyx_L0:; + __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_boxes.rcbuffer->pybuffer); + __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_overlaps.rcbuffer->pybuffer); + __Pyx_SafeReleaseBuffer(&__pyx_pybuffernd_query_boxes.rcbuffer->pybuffer); + __pyx_L2:; + __Pyx_XDECREF((PyObject *)__pyx_v_overlaps); + __Pyx_XGIVEREF(__pyx_r); + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":735 + * ctypedef npy_cdouble complex_t + * + * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<< + * return PyArray_MultiIterNew(1, a) + * + */ + +static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__pyx_v_a) { + PyObject *__pyx_r = NULL; + __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; + __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":736 + * + * cdef inline object PyArray_MultiIterNew1(a): + * return PyArray_MultiIterNew(1, a) # <<<<<<<<<<<<<< + * + * cdef inline object PyArray_MultiIterNew2(a, b): + */ + __Pyx_XDECREF(__pyx_r); + __pyx_t_1 = PyArray_MultiIterNew(1, ((void *)__pyx_v_a)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 736, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + __pyx_r = __pyx_t_1; + __pyx_t_1 = 0; + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":735 + * ctypedef npy_cdouble complex_t + * + * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<< + * return PyArray_MultiIterNew(1, a) + * + */ + + /* function exit code */ + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("numpy.PyArray_MultiIterNew1", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = 0; + __pyx_L0:; + __Pyx_XGIVEREF(__pyx_r); + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":738 + * return PyArray_MultiIterNew(1, a) + * + * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<< + * return PyArray_MultiIterNew(2, a, b) + * + */ + +static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__pyx_v_a, PyObject *__pyx_v_b) { + PyObject *__pyx_r = NULL; + __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; + __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":739 + * + * cdef inline object PyArray_MultiIterNew2(a, b): + * return PyArray_MultiIterNew(2, a, b) # <<<<<<<<<<<<<< + * + * cdef inline object PyArray_MultiIterNew3(a, b, c): + */ + __Pyx_XDECREF(__pyx_r); + __pyx_t_1 = PyArray_MultiIterNew(2, ((void *)__pyx_v_a), ((void *)__pyx_v_b)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 739, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + __pyx_r = __pyx_t_1; + __pyx_t_1 = 0; + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":738 + * return PyArray_MultiIterNew(1, a) + * + * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<< + * return PyArray_MultiIterNew(2, a, b) + * + */ + + /* function exit code */ + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("numpy.PyArray_MultiIterNew2", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = 0; + __pyx_L0:; + __Pyx_XGIVEREF(__pyx_r); + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":741 + * return PyArray_MultiIterNew(2, a, b) + * + * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<< + * return PyArray_MultiIterNew(3, a, b, c) + * + */ + +static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c) { + PyObject *__pyx_r = NULL; + __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; + __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":742 + * + * cdef inline object PyArray_MultiIterNew3(a, b, c): + * return PyArray_MultiIterNew(3, a, b, c) # <<<<<<<<<<<<<< + * + * cdef inline object PyArray_MultiIterNew4(a, b, c, d): + */ + __Pyx_XDECREF(__pyx_r); + __pyx_t_1 = PyArray_MultiIterNew(3, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 742, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + __pyx_r = __pyx_t_1; + __pyx_t_1 = 0; + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":741 + * return PyArray_MultiIterNew(2, a, b) + * + * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<< + * return PyArray_MultiIterNew(3, a, b, c) + * + */ + + /* function exit code */ + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("numpy.PyArray_MultiIterNew3", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = 0; + __pyx_L0:; + __Pyx_XGIVEREF(__pyx_r); + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":744 + * return PyArray_MultiIterNew(3, a, b, c) + * + * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<< + * return PyArray_MultiIterNew(4, a, b, c, d) + * + */ + +static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c, PyObject *__pyx_v_d) { + PyObject *__pyx_r = NULL; + __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; + __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":745 + * + * cdef inline object PyArray_MultiIterNew4(a, b, c, d): + * return PyArray_MultiIterNew(4, a, b, c, d) # <<<<<<<<<<<<<< + * + * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): + */ + __Pyx_XDECREF(__pyx_r); + __pyx_t_1 = PyArray_MultiIterNew(4, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c), ((void *)__pyx_v_d)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 745, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + __pyx_r = __pyx_t_1; + __pyx_t_1 = 0; + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":744 + * return PyArray_MultiIterNew(3, a, b, c) + * + * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<< + * return PyArray_MultiIterNew(4, a, b, c, d) + * + */ + + /* function exit code */ + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("numpy.PyArray_MultiIterNew4", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = 0; + __pyx_L0:; + __Pyx_XGIVEREF(__pyx_r); + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":747 + * return PyArray_MultiIterNew(4, a, b, c, d) + * + * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<< + * return PyArray_MultiIterNew(5, a, b, c, d, e) + * + */ + +static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c, PyObject *__pyx_v_d, PyObject *__pyx_v_e) { + PyObject *__pyx_r = NULL; + __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; + __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":748 + * + * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): + * return PyArray_MultiIterNew(5, a, b, c, d, e) # <<<<<<<<<<<<<< + * + * cdef inline tuple PyDataType_SHAPE(dtype d): + */ + __Pyx_XDECREF(__pyx_r); + __pyx_t_1 = PyArray_MultiIterNew(5, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c), ((void *)__pyx_v_d), ((void *)__pyx_v_e)); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 748, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + __pyx_r = __pyx_t_1; + __pyx_t_1 = 0; + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":747 + * return PyArray_MultiIterNew(4, a, b, c, d) + * + * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<< + * return PyArray_MultiIterNew(5, a, b, c, d, e) + * + */ + + /* function exit code */ + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_AddTraceback("numpy.PyArray_MultiIterNew5", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = 0; + __pyx_L0:; + __Pyx_XGIVEREF(__pyx_r); + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":750 + * return PyArray_MultiIterNew(5, a, b, c, d, e) + * + * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<< + * if PyDataType_HASSUBARRAY(d): + * return d.subarray.shape + */ + +static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__pyx_v_d) { + PyObject *__pyx_r = NULL; + __Pyx_RefNannyDeclarations + int __pyx_t_1; + __Pyx_RefNannySetupContext("PyDataType_SHAPE", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":751 + * + * cdef inline tuple PyDataType_SHAPE(dtype d): + * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<< + * return d.subarray.shape + * else: + */ + __pyx_t_1 = (PyDataType_HASSUBARRAY(__pyx_v_d) != 0); + if (__pyx_t_1) { + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":752 + * cdef inline tuple PyDataType_SHAPE(dtype d): + * if PyDataType_HASSUBARRAY(d): + * return d.subarray.shape # <<<<<<<<<<<<<< + * else: + * return () + */ + __Pyx_XDECREF(__pyx_r); + __Pyx_INCREF(((PyObject*)__pyx_v_d->subarray->shape)); + __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape); + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":751 + * + * cdef inline tuple PyDataType_SHAPE(dtype d): + * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<< + * return d.subarray.shape + * else: + */ + } + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":754 + * return d.subarray.shape + * else: + * return () # <<<<<<<<<<<<<< + * + * + */ + /*else*/ { + __Pyx_XDECREF(__pyx_r); + __Pyx_INCREF(__pyx_empty_tuple); + __pyx_r = __pyx_empty_tuple; + goto __pyx_L0; + } + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":750 + * return PyArray_MultiIterNew(5, a, b, c, d, e) + * + * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<< + * if PyDataType_HASSUBARRAY(d): + * return d.subarray.shape + */ + + /* function exit code */ + __pyx_L0:; + __Pyx_XGIVEREF(__pyx_r); + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":929 + * int _import_umath() except -1 + * + * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<< + * Py_INCREF(base) # important to do this before stealing the reference below! + * PyArray_SetBaseObject(arr, base) + */ + +static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) { + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("set_array_base", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":930 + * + * cdef inline void set_array_base(ndarray arr, object base): + * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<< + * PyArray_SetBaseObject(arr, base) + * + */ + Py_INCREF(__pyx_v_base); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":931 + * cdef inline void set_array_base(ndarray arr, object base): + * Py_INCREF(base) # important to do this before stealing the reference below! + * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<< + * + * cdef inline object get_array_base(ndarray arr): + */ + (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base)); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":929 + * int _import_umath() except -1 + * + * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<< + * Py_INCREF(base) # important to do this before stealing the reference below! + * PyArray_SetBaseObject(arr, base) + */ + + /* function exit code */ + __Pyx_RefNannyFinishContext(); +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":933 + * PyArray_SetBaseObject(arr, base) + * + * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<< + * base = PyArray_BASE(arr) + * if base is NULL: + */ + +static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__pyx_v_arr) { + PyObject *__pyx_v_base; + PyObject *__pyx_r = NULL; + __Pyx_RefNannyDeclarations + int __pyx_t_1; + __Pyx_RefNannySetupContext("get_array_base", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":934 + * + * cdef inline object get_array_base(ndarray arr): + * base = PyArray_BASE(arr) # <<<<<<<<<<<<<< + * if base is NULL: + * return None + */ + __pyx_v_base = PyArray_BASE(__pyx_v_arr); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":935 + * cdef inline object get_array_base(ndarray arr): + * base = PyArray_BASE(arr) + * if base is NULL: # <<<<<<<<<<<<<< + * return None + * return base + */ + __pyx_t_1 = ((__pyx_v_base == NULL) != 0); + if (__pyx_t_1) { + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":936 + * base = PyArray_BASE(arr) + * if base is NULL: + * return None # <<<<<<<<<<<<<< + * return base + * + */ + __Pyx_XDECREF(__pyx_r); + __pyx_r = Py_None; __Pyx_INCREF(Py_None); + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":935 + * cdef inline object get_array_base(ndarray arr): + * base = PyArray_BASE(arr) + * if base is NULL: # <<<<<<<<<<<<<< + * return None + * return base + */ + } + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":937 + * if base is NULL: + * return None + * return base # <<<<<<<<<<<<<< + * + * # Versions of the import_* functions which are more suitable for + */ + __Pyx_XDECREF(__pyx_r); + __Pyx_INCREF(((PyObject *)__pyx_v_base)); + __pyx_r = ((PyObject *)__pyx_v_base); + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":933 + * PyArray_SetBaseObject(arr, base) + * + * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<< + * base = PyArray_BASE(arr) + * if base is NULL: + */ + + /* function exit code */ + __pyx_L0:; + __Pyx_XGIVEREF(__pyx_r); + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":941 + * # Versions of the import_* functions which are more suitable for + * # Cython code. + * cdef inline int import_array() except -1: # <<<<<<<<<<<<<< + * try: + * __pyx_import_array() + */ + +static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) { + int __pyx_r; + __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + PyObject *__pyx_t_2 = NULL; + PyObject *__pyx_t_3 = NULL; + int __pyx_t_4; + PyObject *__pyx_t_5 = NULL; + PyObject *__pyx_t_6 = NULL; + PyObject *__pyx_t_7 = NULL; + PyObject *__pyx_t_8 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; + __Pyx_RefNannySetupContext("import_array", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":942 + * # Cython code. + * cdef inline int import_array() except -1: + * try: # <<<<<<<<<<<<<< + * __pyx_import_array() + * except Exception: + */ + { + __Pyx_PyThreadState_declare + __Pyx_PyThreadState_assign + __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3); + __Pyx_XGOTREF(__pyx_t_1); + __Pyx_XGOTREF(__pyx_t_2); + __Pyx_XGOTREF(__pyx_t_3); + /*try:*/ { + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":943 + * cdef inline int import_array() except -1: + * try: + * __pyx_import_array() # <<<<<<<<<<<<<< + * except Exception: + * raise ImportError("numpy.core.multiarray failed to import") + */ + __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 943, __pyx_L3_error) + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":942 + * # Cython code. + * cdef inline int import_array() except -1: + * try: # <<<<<<<<<<<<<< + * __pyx_import_array() + * except Exception: + */ + } + __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; + __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; + __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; + goto __pyx_L8_try_end; + __pyx_L3_error:; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":944 + * try: + * __pyx_import_array() + * except Exception: # <<<<<<<<<<<<<< + * raise ImportError("numpy.core.multiarray failed to import") + * + */ + __pyx_t_4 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(&((PyTypeObject*)PyExc_Exception)[0]))); + if (__pyx_t_4) { + __Pyx_AddTraceback("numpy.import_array", __pyx_clineno, __pyx_lineno, __pyx_filename); + if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(1, 944, __pyx_L5_except_error) + __Pyx_GOTREF(__pyx_t_5); + __Pyx_GOTREF(__pyx_t_6); + __Pyx_GOTREF(__pyx_t_7); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":945 + * __pyx_import_array() + * except Exception: + * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<< + * + * cdef inline int import_umath() except -1: + */ + __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple_, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 945, __pyx_L5_except_error) + __Pyx_GOTREF(__pyx_t_8); + __Pyx_Raise(__pyx_t_8, 0, 0, 0); + __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; + __PYX_ERR(1, 945, __pyx_L5_except_error) + } + goto __pyx_L5_except_error; + __pyx_L5_except_error:; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":942 + * # Cython code. + * cdef inline int import_array() except -1: + * try: # <<<<<<<<<<<<<< + * __pyx_import_array() + * except Exception: + */ + __Pyx_XGIVEREF(__pyx_t_1); + __Pyx_XGIVEREF(__pyx_t_2); + __Pyx_XGIVEREF(__pyx_t_3); + __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); + goto __pyx_L1_error; + __pyx_L8_try_end:; + } + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":941 + * # Versions of the import_* functions which are more suitable for + * # Cython code. + * cdef inline int import_array() except -1: # <<<<<<<<<<<<<< + * try: + * __pyx_import_array() + */ + + /* function exit code */ + __pyx_r = 0; + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_5); + __Pyx_XDECREF(__pyx_t_6); + __Pyx_XDECREF(__pyx_t_7); + __Pyx_XDECREF(__pyx_t_8); + __Pyx_AddTraceback("numpy.import_array", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = -1; + __pyx_L0:; + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":947 + * raise ImportError("numpy.core.multiarray failed to import") + * + * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<< + * try: + * _import_umath() + */ + +static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) { + int __pyx_r; + __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + PyObject *__pyx_t_2 = NULL; + PyObject *__pyx_t_3 = NULL; + int __pyx_t_4; + PyObject *__pyx_t_5 = NULL; + PyObject *__pyx_t_6 = NULL; + PyObject *__pyx_t_7 = NULL; + PyObject *__pyx_t_8 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; + __Pyx_RefNannySetupContext("import_umath", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":948 + * + * cdef inline int import_umath() except -1: + * try: # <<<<<<<<<<<<<< + * _import_umath() + * except Exception: + */ + { + __Pyx_PyThreadState_declare + __Pyx_PyThreadState_assign + __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3); + __Pyx_XGOTREF(__pyx_t_1); + __Pyx_XGOTREF(__pyx_t_2); + __Pyx_XGOTREF(__pyx_t_3); + /*try:*/ { + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":949 + * cdef inline int import_umath() except -1: + * try: + * _import_umath() # <<<<<<<<<<<<<< + * except Exception: + * raise ImportError("numpy.core.umath failed to import") + */ + __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 949, __pyx_L3_error) + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":948 + * + * cdef inline int import_umath() except -1: + * try: # <<<<<<<<<<<<<< + * _import_umath() + * except Exception: + */ + } + __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; + __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; + __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; + goto __pyx_L8_try_end; + __pyx_L3_error:; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":950 + * try: + * _import_umath() + * except Exception: # <<<<<<<<<<<<<< + * raise ImportError("numpy.core.umath failed to import") + * + */ + __pyx_t_4 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(&((PyTypeObject*)PyExc_Exception)[0]))); + if (__pyx_t_4) { + __Pyx_AddTraceback("numpy.import_umath", __pyx_clineno, __pyx_lineno, __pyx_filename); + if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(1, 950, __pyx_L5_except_error) + __Pyx_GOTREF(__pyx_t_5); + __Pyx_GOTREF(__pyx_t_6); + __Pyx_GOTREF(__pyx_t_7); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":951 + * _import_umath() + * except Exception: + * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<< + * + * cdef inline int import_ufunc() except -1: + */ + __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__2, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 951, __pyx_L5_except_error) + __Pyx_GOTREF(__pyx_t_8); + __Pyx_Raise(__pyx_t_8, 0, 0, 0); + __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; + __PYX_ERR(1, 951, __pyx_L5_except_error) + } + goto __pyx_L5_except_error; + __pyx_L5_except_error:; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":948 + * + * cdef inline int import_umath() except -1: + * try: # <<<<<<<<<<<<<< + * _import_umath() + * except Exception: + */ + __Pyx_XGIVEREF(__pyx_t_1); + __Pyx_XGIVEREF(__pyx_t_2); + __Pyx_XGIVEREF(__pyx_t_3); + __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); + goto __pyx_L1_error; + __pyx_L8_try_end:; + } + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":947 + * raise ImportError("numpy.core.multiarray failed to import") + * + * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<< + * try: + * _import_umath() + */ + + /* function exit code */ + __pyx_r = 0; + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_5); + __Pyx_XDECREF(__pyx_t_6); + __Pyx_XDECREF(__pyx_t_7); + __Pyx_XDECREF(__pyx_t_8); + __Pyx_AddTraceback("numpy.import_umath", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = -1; + __pyx_L0:; + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":953 + * raise ImportError("numpy.core.umath failed to import") + * + * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<< + * try: + * _import_umath() + */ + +static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) { + int __pyx_r; + __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + PyObject *__pyx_t_2 = NULL; + PyObject *__pyx_t_3 = NULL; + int __pyx_t_4; + PyObject *__pyx_t_5 = NULL; + PyObject *__pyx_t_6 = NULL; + PyObject *__pyx_t_7 = NULL; + PyObject *__pyx_t_8 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; + __Pyx_RefNannySetupContext("import_ufunc", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":954 + * + * cdef inline int import_ufunc() except -1: + * try: # <<<<<<<<<<<<<< + * _import_umath() + * except Exception: + */ + { + __Pyx_PyThreadState_declare + __Pyx_PyThreadState_assign + __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3); + __Pyx_XGOTREF(__pyx_t_1); + __Pyx_XGOTREF(__pyx_t_2); + __Pyx_XGOTREF(__pyx_t_3); + /*try:*/ { + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":955 + * cdef inline int import_ufunc() except -1: + * try: + * _import_umath() # <<<<<<<<<<<<<< + * except Exception: + * raise ImportError("numpy.core.umath failed to import") + */ + __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(1, 955, __pyx_L3_error) + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":954 + * + * cdef inline int import_ufunc() except -1: + * try: # <<<<<<<<<<<<<< + * _import_umath() + * except Exception: + */ + } + __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; + __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; + __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; + goto __pyx_L8_try_end; + __pyx_L3_error:; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":956 + * try: + * _import_umath() + * except Exception: # <<<<<<<<<<<<<< + * raise ImportError("numpy.core.umath failed to import") + * + */ + __pyx_t_4 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(&((PyTypeObject*)PyExc_Exception)[0]))); + if (__pyx_t_4) { + __Pyx_AddTraceback("numpy.import_ufunc", __pyx_clineno, __pyx_lineno, __pyx_filename); + if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(1, 956, __pyx_L5_except_error) + __Pyx_GOTREF(__pyx_t_5); + __Pyx_GOTREF(__pyx_t_6); + __Pyx_GOTREF(__pyx_t_7); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":957 + * _import_umath() + * except Exception: + * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<< + * + * cdef extern from *: + */ + __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__2, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(1, 957, __pyx_L5_except_error) + __Pyx_GOTREF(__pyx_t_8); + __Pyx_Raise(__pyx_t_8, 0, 0, 0); + __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; + __PYX_ERR(1, 957, __pyx_L5_except_error) + } + goto __pyx_L5_except_error; + __pyx_L5_except_error:; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":954 + * + * cdef inline int import_ufunc() except -1: + * try: # <<<<<<<<<<<<<< + * _import_umath() + * except Exception: + */ + __Pyx_XGIVEREF(__pyx_t_1); + __Pyx_XGIVEREF(__pyx_t_2); + __Pyx_XGIVEREF(__pyx_t_3); + __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); + goto __pyx_L1_error; + __pyx_L8_try_end:; + } + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":953 + * raise ImportError("numpy.core.umath failed to import") + * + * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<< + * try: + * _import_umath() + */ + + /* function exit code */ + __pyx_r = 0; + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_5); + __Pyx_XDECREF(__pyx_t_6); + __Pyx_XDECREF(__pyx_t_7); + __Pyx_XDECREF(__pyx_t_8); + __Pyx_AddTraceback("numpy.import_ufunc", __pyx_clineno, __pyx_lineno, __pyx_filename); + __pyx_r = -1; + __pyx_L0:; + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":967 + * + * + * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<< + * """ + * Cython equivalent of `isinstance(obj, np.timedelta64)` + */ + +static CYTHON_INLINE int __pyx_f_5numpy_is_timedelta64_object(PyObject *__pyx_v_obj) { + int __pyx_r; + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("is_timedelta64_object", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":979 + * bool + * """ + * return PyObject_TypeCheck(obj, &PyTimedeltaArrType_Type) # <<<<<<<<<<<<<< + * + * + */ + __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyTimedeltaArrType_Type)); + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":967 + * + * + * cdef inline bint is_timedelta64_object(object obj): # <<<<<<<<<<<<<< + * """ + * Cython equivalent of `isinstance(obj, np.timedelta64)` + */ + + /* function exit code */ + __pyx_L0:; + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":982 + * + * + * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<< + * """ + * Cython equivalent of `isinstance(obj, np.datetime64)` + */ + +static CYTHON_INLINE int __pyx_f_5numpy_is_datetime64_object(PyObject *__pyx_v_obj) { + int __pyx_r; + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("is_datetime64_object", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":994 + * bool + * """ + * return PyObject_TypeCheck(obj, &PyDatetimeArrType_Type) # <<<<<<<<<<<<<< + * + * + */ + __pyx_r = PyObject_TypeCheck(__pyx_v_obj, (&PyDatetimeArrType_Type)); + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":982 + * + * + * cdef inline bint is_datetime64_object(object obj): # <<<<<<<<<<<<<< + * """ + * Cython equivalent of `isinstance(obj, np.datetime64)` + */ + + /* function exit code */ + __pyx_L0:; + __Pyx_RefNannyFinishContext(); + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":997 + * + * + * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the int64 value underlying scalar numpy datetime64 object + */ + +static CYTHON_INLINE npy_datetime __pyx_f_5numpy_get_datetime64_value(PyObject *__pyx_v_obj) { + npy_datetime __pyx_r; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":1004 + * also needed. That can be found using `get_datetime64_unit`. + * """ + * return (obj).obval # <<<<<<<<<<<<<< + * + * + */ + __pyx_r = ((PyDatetimeScalarObject *)__pyx_v_obj)->obval; + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":997 + * + * + * cdef inline npy_datetime get_datetime64_value(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the int64 value underlying scalar numpy datetime64 object + */ + + /* function exit code */ + __pyx_L0:; + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":1007 + * + * + * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the int64 value underlying scalar numpy timedelta64 object + */ + +static CYTHON_INLINE npy_timedelta __pyx_f_5numpy_get_timedelta64_value(PyObject *__pyx_v_obj) { + npy_timedelta __pyx_r; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":1011 + * returns the int64 value underlying scalar numpy timedelta64 object + * """ + * return (obj).obval # <<<<<<<<<<<<<< + * + * + */ + __pyx_r = ((PyTimedeltaScalarObject *)__pyx_v_obj)->obval; + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":1007 + * + * + * cdef inline npy_timedelta get_timedelta64_value(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the int64 value underlying scalar numpy timedelta64 object + */ + + /* function exit code */ + __pyx_L0:; + return __pyx_r; +} + +/* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":1014 + * + * + * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the unit part of the dtype for a numpy datetime64 object. + */ + +static CYTHON_INLINE NPY_DATETIMEUNIT __pyx_f_5numpy_get_datetime64_unit(PyObject *__pyx_v_obj) { + NPY_DATETIMEUNIT __pyx_r; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":1018 + * returns the unit part of the dtype for a numpy datetime64 object. + * """ + * return (obj).obmeta.base # <<<<<<<<<<<<<< + */ + __pyx_r = ((NPY_DATETIMEUNIT)((PyDatetimeScalarObject *)__pyx_v_obj)->obmeta.base); + goto __pyx_L0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":1014 + * + * + * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the unit part of the dtype for a numpy datetime64 object. + */ + + /* function exit code */ + __pyx_L0:; + return __pyx_r; +} + +static PyMethodDef __pyx_methods[] = { + {0, 0, 0, 0} +}; + +#if PY_MAJOR_VERSION >= 3 +#if CYTHON_PEP489_MULTI_PHASE_INIT +static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/ +static int __pyx_pymod_exec_bbox(PyObject* module); /*proto*/ +static PyModuleDef_Slot __pyx_moduledef_slots[] = { + {Py_mod_create, (void*)__pyx_pymod_create}, + {Py_mod_exec, (void*)__pyx_pymod_exec_bbox}, + {0, NULL} +}; +#endif + +static struct PyModuleDef __pyx_moduledef = { + PyModuleDef_HEAD_INIT, + "bbox", + 0, /* m_doc */ + #if CYTHON_PEP489_MULTI_PHASE_INIT + 0, /* m_size */ + #else + -1, /* m_size */ + #endif + __pyx_methods /* m_methods */, + #if CYTHON_PEP489_MULTI_PHASE_INIT + __pyx_moduledef_slots, /* m_slots */ + #else + NULL, /* m_reload */ + #endif + NULL, /* m_traverse */ + NULL, /* m_clear */ + NULL /* m_free */ +}; +#endif +#ifndef CYTHON_SMALL_CODE +#if defined(__clang__) + #define CYTHON_SMALL_CODE +#elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) + #define CYTHON_SMALL_CODE __attribute__((cold)) +#else + #define CYTHON_SMALL_CODE +#endif +#endif + +static __Pyx_StringTabEntry __pyx_string_tab[] = { + {&__pyx_n_s_DTYPE, __pyx_k_DTYPE, sizeof(__pyx_k_DTYPE), 0, 0, 1, 1}, + {&__pyx_n_s_ImportError, __pyx_k_ImportError, sizeof(__pyx_k_ImportError), 0, 0, 1, 1}, + {&__pyx_n_s_K, __pyx_k_K, sizeof(__pyx_k_K), 0, 0, 1, 1}, + {&__pyx_n_s_N, __pyx_k_N, sizeof(__pyx_k_N), 0, 0, 1, 1}, + {&__pyx_n_s_bbox, __pyx_k_bbox, sizeof(__pyx_k_bbox), 0, 0, 1, 1}, + {&__pyx_n_s_bbox_overlaps, __pyx_k_bbox_overlaps, sizeof(__pyx_k_bbox_overlaps), 0, 0, 1, 1}, + {&__pyx_n_s_box_area, __pyx_k_box_area, sizeof(__pyx_k_box_area), 0, 0, 1, 1}, + {&__pyx_kp_s_box_overlaps_pyx, __pyx_k_box_overlaps_pyx, sizeof(__pyx_k_box_overlaps_pyx), 0, 0, 1, 0}, + {&__pyx_n_s_boxes, __pyx_k_boxes, sizeof(__pyx_k_boxes), 0, 0, 1, 1}, + {&__pyx_n_s_cline_in_traceback, __pyx_k_cline_in_traceback, sizeof(__pyx_k_cline_in_traceback), 0, 0, 1, 1}, + {&__pyx_n_s_dtype, __pyx_k_dtype, sizeof(__pyx_k_dtype), 0, 0, 1, 1}, + {&__pyx_n_s_float, __pyx_k_float, sizeof(__pyx_k_float), 0, 0, 1, 1}, + {&__pyx_n_s_ih, __pyx_k_ih, sizeof(__pyx_k_ih), 0, 0, 1, 1}, + {&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1}, + {&__pyx_n_s_iw, __pyx_k_iw, sizeof(__pyx_k_iw), 0, 0, 1, 1}, + {&__pyx_n_s_k, __pyx_k_k, sizeof(__pyx_k_k), 0, 0, 1, 1}, + {&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1}, + {&__pyx_n_s_n, __pyx_k_n, sizeof(__pyx_k_n), 0, 0, 1, 1}, + {&__pyx_n_s_name, __pyx_k_name, sizeof(__pyx_k_name), 0, 0, 1, 1}, + {&__pyx_n_s_np, __pyx_k_np, sizeof(__pyx_k_np), 0, 0, 1, 1}, + {&__pyx_n_s_numpy, __pyx_k_numpy, sizeof(__pyx_k_numpy), 0, 0, 1, 1}, + {&__pyx_kp_s_numpy_core_multiarray_failed_to, __pyx_k_numpy_core_multiarray_failed_to, sizeof(__pyx_k_numpy_core_multiarray_failed_to), 0, 0, 1, 0}, + {&__pyx_kp_s_numpy_core_umath_failed_to_impor, __pyx_k_numpy_core_umath_failed_to_impor, sizeof(__pyx_k_numpy_core_umath_failed_to_impor), 0, 0, 1, 0}, + {&__pyx_n_s_overlaps, __pyx_k_overlaps, sizeof(__pyx_k_overlaps), 0, 0, 1, 1}, + {&__pyx_n_s_query_boxes, __pyx_k_query_boxes, sizeof(__pyx_k_query_boxes), 0, 0, 1, 1}, + {&__pyx_n_s_range, __pyx_k_range, sizeof(__pyx_k_range), 0, 0, 1, 1}, + {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1}, + {&__pyx_n_s_ua, __pyx_k_ua, sizeof(__pyx_k_ua), 0, 0, 1, 1}, + {&__pyx_n_s_zeros, __pyx_k_zeros, sizeof(__pyx_k_zeros), 0, 0, 1, 1}, + {0, 0, 0, 0, 0, 0, 0} +}; +static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(void) { + __pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_n_s_range); if (!__pyx_builtin_range) __PYX_ERR(0, 33, __pyx_L1_error) + __pyx_builtin_ImportError = __Pyx_GetBuiltinName(__pyx_n_s_ImportError); if (!__pyx_builtin_ImportError) __PYX_ERR(1, 945, __pyx_L1_error) + return 0; + __pyx_L1_error:; + return -1; +} + +static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":945 + * __pyx_import_array() + * except Exception: + * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<< + * + * cdef inline int import_umath() except -1: + */ + __pyx_tuple_ = PyTuple_Pack(1, __pyx_kp_s_numpy_core_multiarray_failed_to); if (unlikely(!__pyx_tuple_)) __PYX_ERR(1, 945, __pyx_L1_error) + __Pyx_GOTREF(__pyx_tuple_); + __Pyx_GIVEREF(__pyx_tuple_); + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":951 + * _import_umath() + * except Exception: + * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<< + * + * cdef inline int import_ufunc() except -1: + */ + __pyx_tuple__2 = PyTuple_Pack(1, __pyx_kp_s_numpy_core_umath_failed_to_impor); if (unlikely(!__pyx_tuple__2)) __PYX_ERR(1, 951, __pyx_L1_error) + __Pyx_GOTREF(__pyx_tuple__2); + __Pyx_GIVEREF(__pyx_tuple__2); + + /* "box_overlaps.pyx":15 + * ctypedef np.float_t DTYPE_t + * + * def bbox_overlaps( # <<<<<<<<<<<<<< + * np.ndarray[DTYPE_t, ndim=2] boxes, + * np.ndarray[DTYPE_t, ndim=2] query_boxes): + */ + __pyx_tuple__3 = PyTuple_Pack(11, __pyx_n_s_boxes, __pyx_n_s_query_boxes, __pyx_n_s_N, __pyx_n_s_K, __pyx_n_s_overlaps, __pyx_n_s_iw, __pyx_n_s_ih, __pyx_n_s_box_area, __pyx_n_s_ua, __pyx_n_s_k, __pyx_n_s_n); if (unlikely(!__pyx_tuple__3)) __PYX_ERR(0, 15, __pyx_L1_error) + __Pyx_GOTREF(__pyx_tuple__3); + __Pyx_GIVEREF(__pyx_tuple__3); + __pyx_codeobj__4 = (PyObject*)__Pyx_PyCode_New(2, 0, 11, 0, CO_OPTIMIZED|CO_NEWLOCALS, __pyx_empty_bytes, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_tuple__3, __pyx_empty_tuple, __pyx_empty_tuple, __pyx_kp_s_box_overlaps_pyx, __pyx_n_s_bbox_overlaps, 15, __pyx_empty_bytes); if (unlikely(!__pyx_codeobj__4)) __PYX_ERR(0, 15, __pyx_L1_error) + __Pyx_RefNannyFinishContext(); + return 0; + __pyx_L1_error:; + __Pyx_RefNannyFinishContext(); + return -1; +} + +static CYTHON_SMALL_CODE int __Pyx_InitGlobals(void) { + if (__Pyx_InitStrings(__pyx_string_tab) < 0) __PYX_ERR(0, 1, __pyx_L1_error); + return 0; + __pyx_L1_error:; + return -1; +} + +static CYTHON_SMALL_CODE int __Pyx_modinit_global_init_code(void); /*proto*/ +static CYTHON_SMALL_CODE int __Pyx_modinit_variable_export_code(void); /*proto*/ +static CYTHON_SMALL_CODE int __Pyx_modinit_function_export_code(void); /*proto*/ +static CYTHON_SMALL_CODE int __Pyx_modinit_type_init_code(void); /*proto*/ +static CYTHON_SMALL_CODE int __Pyx_modinit_type_import_code(void); /*proto*/ +static CYTHON_SMALL_CODE int __Pyx_modinit_variable_import_code(void); /*proto*/ +static CYTHON_SMALL_CODE int __Pyx_modinit_function_import_code(void); /*proto*/ + +static int __Pyx_modinit_global_init_code(void) { + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("__Pyx_modinit_global_init_code", 0); + /*--- Global init code ---*/ + __Pyx_RefNannyFinishContext(); + return 0; +} + +static int __Pyx_modinit_variable_export_code(void) { + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("__Pyx_modinit_variable_export_code", 0); + /*--- Variable export code ---*/ + __Pyx_RefNannyFinishContext(); + return 0; +} + +static int __Pyx_modinit_function_export_code(void) { + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("__Pyx_modinit_function_export_code", 0); + /*--- Function export code ---*/ + __Pyx_RefNannyFinishContext(); + return 0; +} + +static int __Pyx_modinit_type_init_code(void) { + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("__Pyx_modinit_type_init_code", 0); + /*--- Type init code ---*/ + __Pyx_RefNannyFinishContext(); + return 0; +} + +static int __Pyx_modinit_type_import_code(void) { + __Pyx_RefNannyDeclarations + PyObject *__pyx_t_1 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; + __Pyx_RefNannySetupContext("__Pyx_modinit_type_import_code", 0); + /*--- Type import code ---*/ + __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 9, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + __pyx_ptype_7cpython_4type_type = __Pyx_ImportType(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type", + #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000 + sizeof(PyTypeObject), + #else + sizeof(PyHeapTypeObject), + #endif + __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(2, 9, __pyx_L1_error) + __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; + __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 200, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + __pyx_ptype_5numpy_dtype = __Pyx_ImportType(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __Pyx_ImportType_CheckSize_Ignore); + if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(1, 200, __pyx_L1_error) + __pyx_ptype_5numpy_flatiter = __Pyx_ImportType(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __Pyx_ImportType_CheckSize_Ignore); + if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(1, 223, __pyx_L1_error) + __pyx_ptype_5numpy_broadcast = __Pyx_ImportType(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __Pyx_ImportType_CheckSize_Ignore); + if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(1, 227, __pyx_L1_error) + __pyx_ptype_5numpy_ndarray = __Pyx_ImportType(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __Pyx_ImportType_CheckSize_Ignore); + if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(1, 239, __pyx_L1_error) + __pyx_ptype_5numpy_generic = __Pyx_ImportType(__pyx_t_1, "numpy", "generic", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_generic) __PYX_ERR(1, 771, __pyx_L1_error) + __pyx_ptype_5numpy_number = __Pyx_ImportType(__pyx_t_1, "numpy", "number", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_number) __PYX_ERR(1, 773, __pyx_L1_error) + __pyx_ptype_5numpy_integer = __Pyx_ImportType(__pyx_t_1, "numpy", "integer", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_integer) __PYX_ERR(1, 775, __pyx_L1_error) + __pyx_ptype_5numpy_signedinteger = __Pyx_ImportType(__pyx_t_1, "numpy", "signedinteger", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_signedinteger) __PYX_ERR(1, 777, __pyx_L1_error) + __pyx_ptype_5numpy_unsignedinteger = __Pyx_ImportType(__pyx_t_1, "numpy", "unsignedinteger", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_unsignedinteger) __PYX_ERR(1, 779, __pyx_L1_error) + __pyx_ptype_5numpy_inexact = __Pyx_ImportType(__pyx_t_1, "numpy", "inexact", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_inexact) __PYX_ERR(1, 781, __pyx_L1_error) + __pyx_ptype_5numpy_floating = __Pyx_ImportType(__pyx_t_1, "numpy", "floating", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_floating) __PYX_ERR(1, 783, __pyx_L1_error) + __pyx_ptype_5numpy_complexfloating = __Pyx_ImportType(__pyx_t_1, "numpy", "complexfloating", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_complexfloating) __PYX_ERR(1, 785, __pyx_L1_error) + __pyx_ptype_5numpy_flexible = __Pyx_ImportType(__pyx_t_1, "numpy", "flexible", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_flexible) __PYX_ERR(1, 787, __pyx_L1_error) + __pyx_ptype_5numpy_character = __Pyx_ImportType(__pyx_t_1, "numpy", "character", sizeof(PyObject), __Pyx_ImportType_CheckSize_Warn); + if (!__pyx_ptype_5numpy_character) __PYX_ERR(1, 789, __pyx_L1_error) + __pyx_ptype_5numpy_ufunc = __Pyx_ImportType(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __Pyx_ImportType_CheckSize_Ignore); + if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(1, 827, __pyx_L1_error) + __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; + __Pyx_RefNannyFinishContext(); + return 0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_RefNannyFinishContext(); + return -1; +} + +static int __Pyx_modinit_variable_import_code(void) { + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("__Pyx_modinit_variable_import_code", 0); + /*--- Variable import code ---*/ + __Pyx_RefNannyFinishContext(); + return 0; +} + +static int __Pyx_modinit_function_import_code(void) { + __Pyx_RefNannyDeclarations + __Pyx_RefNannySetupContext("__Pyx_modinit_function_import_code", 0); + /*--- Function import code ---*/ + __Pyx_RefNannyFinishContext(); + return 0; +} + + +#ifndef CYTHON_NO_PYINIT_EXPORT +#define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC +#elif PY_MAJOR_VERSION < 3 +#ifdef __cplusplus +#define __Pyx_PyMODINIT_FUNC extern "C" void +#else +#define __Pyx_PyMODINIT_FUNC void +#endif +#else +#ifdef __cplusplus +#define __Pyx_PyMODINIT_FUNC extern "C" PyObject * +#else +#define __Pyx_PyMODINIT_FUNC PyObject * +#endif +#endif + + +#if PY_MAJOR_VERSION < 3 +__Pyx_PyMODINIT_FUNC initbbox(void) CYTHON_SMALL_CODE; /*proto*/ +__Pyx_PyMODINIT_FUNC initbbox(void) +#else +__Pyx_PyMODINIT_FUNC PyInit_bbox(void) CYTHON_SMALL_CODE; /*proto*/ +__Pyx_PyMODINIT_FUNC PyInit_bbox(void) +#if CYTHON_PEP489_MULTI_PHASE_INIT +{ + return PyModuleDef_Init(&__pyx_moduledef); +} +static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) { + #if PY_VERSION_HEX >= 0x030700A1 + static PY_INT64_T main_interpreter_id = -1; + PY_INT64_T current_id = PyInterpreterState_GetID(PyThreadState_Get()->interp); + if (main_interpreter_id == -1) { + main_interpreter_id = current_id; + return (unlikely(current_id == -1)) ? -1 : 0; + } else if (unlikely(main_interpreter_id != current_id)) + #else + static PyInterpreterState *main_interpreter = NULL; + PyInterpreterState *current_interpreter = PyThreadState_Get()->interp; + if (!main_interpreter) { + main_interpreter = current_interpreter; + } else if (unlikely(main_interpreter != current_interpreter)) + #endif + { + PyErr_SetString( + PyExc_ImportError, + "Interpreter change detected - this module can only be loaded into one interpreter per process."); + return -1; + } + return 0; +} +static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) { + PyObject *value = PyObject_GetAttrString(spec, from_name); + int result = 0; + if (likely(value)) { + if (allow_none || value != Py_None) { + result = PyDict_SetItemString(moddict, to_name, value); + } + Py_DECREF(value); + } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) { + PyErr_Clear(); + } else { + result = -1; + } + return result; +} +static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNUSED PyModuleDef *def) { + PyObject *module = NULL, *moddict, *modname; + if (__Pyx_check_single_interpreter()) + return NULL; + if (__pyx_m) + return __Pyx_NewRef(__pyx_m); + modname = PyObject_GetAttrString(spec, "name"); + if (unlikely(!modname)) goto bad; + module = PyModule_NewObject(modname); + Py_DECREF(modname); + if (unlikely(!module)) goto bad; + moddict = PyModule_GetDict(module); + if (unlikely(!moddict)) goto bad; + if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad; + if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad; + if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad; + if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad; + return module; +bad: + Py_XDECREF(module); + return NULL; +} + + +static CYTHON_SMALL_CODE int __pyx_pymod_exec_bbox(PyObject *__pyx_pyinit_module) +#endif +#endif +{ + PyObject *__pyx_t_1 = NULL; + PyObject *__pyx_t_2 = NULL; + int __pyx_lineno = 0; + const char *__pyx_filename = NULL; + int __pyx_clineno = 0; + __Pyx_RefNannyDeclarations + #if CYTHON_PEP489_MULTI_PHASE_INIT + if (__pyx_m) { + if (__pyx_m == __pyx_pyinit_module) return 0; + PyErr_SetString(PyExc_RuntimeError, "Module 'bbox' has already been imported. Re-initialisation is not supported."); + return -1; + } + #elif PY_MAJOR_VERSION >= 3 + if (__pyx_m) return __Pyx_NewRef(__pyx_m); + #endif + #if CYTHON_REFNANNY +__Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); +if (!__Pyx_RefNanny) { + PyErr_Clear(); + __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); + if (!__Pyx_RefNanny) + Py_FatalError("failed to import 'refnanny' module"); +} +#endif + __Pyx_RefNannySetupContext("__Pyx_PyMODINIT_FUNC PyInit_bbox(void)", 0); + if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error) + #ifdef __Pxy_PyFrame_Initialize_Offsets + __Pxy_PyFrame_Initialize_Offsets(); + #endif + __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error) + __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error) + __pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error) + #ifdef __Pyx_CyFunction_USED + if (__pyx_CyFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) + #endif + #ifdef __Pyx_FusedFunction_USED + if (__pyx_FusedFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) + #endif + #ifdef __Pyx_Coroutine_USED + if (__pyx_Coroutine_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) + #endif + #ifdef __Pyx_Generator_USED + if (__pyx_Generator_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) + #endif + #ifdef __Pyx_AsyncGen_USED + if (__pyx_AsyncGen_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) + #endif + #ifdef __Pyx_StopAsyncIteration_USED + if (__pyx_StopAsyncIteration_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) + #endif + /*--- Library function declarations ---*/ + /*--- Threads initialization code ---*/ + #if defined(WITH_THREAD) && PY_VERSION_HEX < 0x030700F0 && defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS + PyEval_InitThreads(); + #endif + /*--- Module creation code ---*/ + #if CYTHON_PEP489_MULTI_PHASE_INIT + __pyx_m = __pyx_pyinit_module; + Py_INCREF(__pyx_m); + #else + #if PY_MAJOR_VERSION < 3 + __pyx_m = Py_InitModule4("bbox", __pyx_methods, 0, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m); + #else + __pyx_m = PyModule_Create(&__pyx_moduledef); + #endif + if (unlikely(!__pyx_m)) __PYX_ERR(0, 1, __pyx_L1_error) + #endif + __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error) + Py_INCREF(__pyx_d); + __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error) + Py_INCREF(__pyx_b); + __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error) + Py_INCREF(__pyx_cython_runtime); + if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error); + /*--- Initialize various global constants etc. ---*/ + if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error) + #if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT) + if (__Pyx_init_sys_getdefaultencoding_params() < 0) __PYX_ERR(0, 1, __pyx_L1_error) + #endif + if (__pyx_module_is_main_bbox) { + if (PyObject_SetAttr(__pyx_m, __pyx_n_s_name, __pyx_n_s_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error) + } + #if PY_MAJOR_VERSION >= 3 + { + PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error) + if (!PyDict_GetItemString(modules, "bbox")) { + if (unlikely(PyDict_SetItemString(modules, "bbox", __pyx_m) < 0)) __PYX_ERR(0, 1, __pyx_L1_error) + } + } + #endif + /*--- Builtin init code ---*/ + if (__Pyx_InitCachedBuiltins() < 0) __PYX_ERR(0, 1, __pyx_L1_error) + /*--- Constants init code ---*/ + if (__Pyx_InitCachedConstants() < 0) __PYX_ERR(0, 1, __pyx_L1_error) + /*--- Global type/function init code ---*/ + (void)__Pyx_modinit_global_init_code(); + (void)__Pyx_modinit_variable_export_code(); + (void)__Pyx_modinit_function_export_code(); + (void)__Pyx_modinit_type_init_code(); + if (unlikely(__Pyx_modinit_type_import_code() < 0)) __PYX_ERR(0, 1, __pyx_L1_error) + (void)__Pyx_modinit_variable_import_code(); + (void)__Pyx_modinit_function_import_code(); + /*--- Execution code ---*/ + #if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED) + if (__Pyx_patch_abc() < 0) __PYX_ERR(0, 1, __pyx_L1_error) + #endif + + /* "box_overlaps.pyx":9 + * + * cimport cython + * import numpy as np # <<<<<<<<<<<<<< + * cimport numpy as np + * + */ + __pyx_t_1 = __Pyx_Import(__pyx_n_s_numpy, 0, -1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 9, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + if (PyDict_SetItem(__pyx_d, __pyx_n_s_np, __pyx_t_1) < 0) __PYX_ERR(0, 9, __pyx_L1_error) + __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; + + /* "box_overlaps.pyx":12 + * cimport numpy as np + * + * DTYPE = np.float # <<<<<<<<<<<<<< + * ctypedef np.float_t DTYPE_t + * + */ + __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_np); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_1); + __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_1, __pyx_n_s_float); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_2); + __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; + if (PyDict_SetItem(__pyx_d, __pyx_n_s_DTYPE, __pyx_t_2) < 0) __PYX_ERR(0, 12, __pyx_L1_error) + __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; + + /* "box_overlaps.pyx":15 + * ctypedef np.float_t DTYPE_t + * + * def bbox_overlaps( # <<<<<<<<<<<<<< + * np.ndarray[DTYPE_t, ndim=2] boxes, + * np.ndarray[DTYPE_t, ndim=2] query_boxes): + */ + __pyx_t_2 = PyCFunction_NewEx(&__pyx_mdef_4bbox_1bbox_overlaps, NULL, __pyx_n_s_bbox); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_2); + if (PyDict_SetItem(__pyx_d, __pyx_n_s_bbox_overlaps, __pyx_t_2) < 0) __PYX_ERR(0, 15, __pyx_L1_error) + __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; + + /* "box_overlaps.pyx":1 + * # -------------------------------------------------------- # <<<<<<<<<<<<<< + * # Fast R-CNN + * # Copyright (c) 2015 Microsoft + */ + __pyx_t_2 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 1, __pyx_L1_error) + __Pyx_GOTREF(__pyx_t_2); + if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_2) < 0) __PYX_ERR(0, 1, __pyx_L1_error) + __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; + + /* "../../../../../../usr/local/lib/python3.9/site-packages/numpy/__init__.pxd":1014 + * + * + * cdef inline NPY_DATETIMEUNIT get_datetime64_unit(object obj) nogil: # <<<<<<<<<<<<<< + * """ + * returns the unit part of the dtype for a numpy datetime64 object. + */ + + /*--- Wrapped vars code ---*/ + + goto __pyx_L0; + __pyx_L1_error:; + __Pyx_XDECREF(__pyx_t_1); + __Pyx_XDECREF(__pyx_t_2); + if (__pyx_m) { + if (__pyx_d) { + __Pyx_AddTraceback("init bbox", __pyx_clineno, __pyx_lineno, __pyx_filename); + } + Py_CLEAR(__pyx_m); + } else if (!PyErr_Occurred()) { + PyErr_SetString(PyExc_ImportError, "init bbox"); + } + __pyx_L0:; + __Pyx_RefNannyFinishContext(); + #if CYTHON_PEP489_MULTI_PHASE_INIT + return (__pyx_m != NULL) ? 0 : -1; + #elif PY_MAJOR_VERSION >= 3 + return __pyx_m; + #else + return; + #endif +} + +/* --- Runtime support code --- */ +/* Refnanny */ +#if CYTHON_REFNANNY +static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { + PyObject *m = NULL, *p = NULL; + void *r = NULL; + m = PyImport_ImportModule(modname); + if (!m) goto end; + p = PyObject_GetAttrString(m, "RefNannyAPI"); + if (!p) goto end; + r = PyLong_AsVoidPtr(p); +end: + Py_XDECREF(p); + Py_XDECREF(m); + return (__Pyx_RefNannyAPIStruct *)r; +} +#endif + +/* PyObjectGetAttrStr */ +#if CYTHON_USE_TYPE_SLOTS +static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) { + PyTypeObject* tp = Py_TYPE(obj); + if (likely(tp->tp_getattro)) + return tp->tp_getattro(obj, attr_name); +#if PY_MAJOR_VERSION < 3 + if (likely(tp->tp_getattr)) + return tp->tp_getattr(obj, PyString_AS_STRING(attr_name)); +#endif + return PyObject_GetAttr(obj, attr_name); +} +#endif + +/* GetBuiltinName */ +static PyObject *__Pyx_GetBuiltinName(PyObject *name) { + PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name); + if (unlikely(!result)) { + PyErr_Format(PyExc_NameError, +#if PY_MAJOR_VERSION >= 3 + "name '%U' is not defined", name); +#else + "name '%.200s' is not defined", PyString_AS_STRING(name)); +#endif + } + return result; +} + +/* RaiseArgTupleInvalid */ +static void __Pyx_RaiseArgtupleInvalid( + const char* func_name, + int exact, + Py_ssize_t num_min, + Py_ssize_t num_max, + Py_ssize_t num_found) +{ + Py_ssize_t num_expected; + const char *more_or_less; + if (num_found < num_min) { + num_expected = num_min; + more_or_less = "at least"; + } else { + num_expected = num_max; + more_or_less = "at most"; + } + if (exact) { + more_or_less = "exactly"; + } + PyErr_Format(PyExc_TypeError, + "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)", + func_name, more_or_less, num_expected, + (num_expected == 1) ? "" : "s", num_found); +} + +/* RaiseDoubleKeywords */ +static void __Pyx_RaiseDoubleKeywordsError( + const char* func_name, + PyObject* kw_name) +{ + PyErr_Format(PyExc_TypeError, + #if PY_MAJOR_VERSION >= 3 + "%s() got multiple values for keyword argument '%U'", func_name, kw_name); + #else + "%s() got multiple values for keyword argument '%s'", func_name, + PyString_AsString(kw_name)); + #endif +} + +/* ParseKeywords */ +static int __Pyx_ParseOptionalKeywords( + PyObject *kwds, + PyObject **argnames[], + PyObject *kwds2, + PyObject *values[], + Py_ssize_t num_pos_args, + const char* function_name) +{ + PyObject *key = 0, *value = 0; + Py_ssize_t pos = 0; + PyObject*** name; + PyObject*** first_kw_arg = argnames + num_pos_args; + while (PyDict_Next(kwds, &pos, &key, &value)) { + name = first_kw_arg; + while (*name && (**name != key)) name++; + if (*name) { + values[name-argnames] = value; + continue; + } + name = first_kw_arg; + #if PY_MAJOR_VERSION < 3 + if (likely(PyString_Check(key))) { + while (*name) { + if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key)) + && _PyString_Eq(**name, key)) { + values[name-argnames] = value; + break; + } + name++; + } + if (*name) continue; + else { + PyObject*** argname = argnames; + while (argname != first_kw_arg) { + if ((**argname == key) || ( + (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key)) + && _PyString_Eq(**argname, key))) { + goto arg_passed_twice; + } + argname++; + } + } + } else + #endif + if (likely(PyUnicode_Check(key))) { + while (*name) { + int cmp = (**name == key) ? 0 : + #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 + (__Pyx_PyUnicode_GET_LENGTH(**name) != __Pyx_PyUnicode_GET_LENGTH(key)) ? 1 : + #endif + PyUnicode_Compare(**name, key); + if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; + if (cmp == 0) { + values[name-argnames] = value; + break; + } + name++; + } + if (*name) continue; + else { + PyObject*** argname = argnames; + while (argname != first_kw_arg) { + int cmp = (**argname == key) ? 0 : + #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 + (__Pyx_PyUnicode_GET_LENGTH(**argname) != __Pyx_PyUnicode_GET_LENGTH(key)) ? 1 : + #endif + PyUnicode_Compare(**argname, key); + if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; + if (cmp == 0) goto arg_passed_twice; + argname++; + } + } + } else + goto invalid_keyword_type; + if (kwds2) { + if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; + } else { + goto invalid_keyword; + } + } + return 0; +arg_passed_twice: + __Pyx_RaiseDoubleKeywordsError(function_name, key); + goto bad; +invalid_keyword_type: + PyErr_Format(PyExc_TypeError, + "%.200s() keywords must be strings", function_name); + goto bad; +invalid_keyword: + PyErr_Format(PyExc_TypeError, + #if PY_MAJOR_VERSION < 3 + "%.200s() got an unexpected keyword argument '%.200s'", + function_name, PyString_AsString(key)); + #else + "%s() got an unexpected keyword argument '%U'", + function_name, key); + #endif +bad: + return -1; +} + +/* ArgTypeTest */ +static int __Pyx__ArgTypeTest(PyObject *obj, PyTypeObject *type, const char *name, int exact) +{ + if (unlikely(!type)) { + PyErr_SetString(PyExc_SystemError, "Missing type object"); + return 0; + } + else if (exact) { + #if PY_MAJOR_VERSION == 2 + if ((type == &PyBaseString_Type) && likely(__Pyx_PyBaseString_CheckExact(obj))) return 1; + #endif + } + else { + if (likely(__Pyx_TypeCheck(obj, type))) return 1; + } + PyErr_Format(PyExc_TypeError, + "Argument '%.200s' has incorrect type (expected %.200s, got %.200s)", + name, type->tp_name, Py_TYPE(obj)->tp_name); + return 0; +} + +/* IsLittleEndian */ +static CYTHON_INLINE int __Pyx_Is_Little_Endian(void) +{ + union { + uint32_t u32; + uint8_t u8[4]; + } S; + S.u32 = 0x01020304; + return S.u8[0] == 4; +} + +/* BufferFormatCheck */ +static void __Pyx_BufFmt_Init(__Pyx_BufFmt_Context* ctx, + __Pyx_BufFmt_StackElem* stack, + __Pyx_TypeInfo* type) { + stack[0].field = &ctx->root; + stack[0].parent_offset = 0; + ctx->root.type = type; + ctx->root.name = "buffer dtype"; + ctx->root.offset = 0; + ctx->head = stack; + ctx->head->field = &ctx->root; + ctx->fmt_offset = 0; + ctx->head->parent_offset = 0; + ctx->new_packmode = '@'; + ctx->enc_packmode = '@'; + ctx->new_count = 1; + ctx->enc_count = 0; + ctx->enc_type = 0; + ctx->is_complex = 0; + ctx->is_valid_array = 0; + ctx->struct_alignment = 0; + while (type->typegroup == 'S') { + ++ctx->head; + ctx->head->field = type->fields; + ctx->head->parent_offset = 0; + type = type->fields->type; + } +} +static int __Pyx_BufFmt_ParseNumber(const char** ts) { + int count; + const char* t = *ts; + if (*t < '0' || *t > '9') { + return -1; + } else { + count = *t++ - '0'; + while (*t >= '0' && *t <= '9') { + count *= 10; + count += *t++ - '0'; + } + } + *ts = t; + return count; +} +static int __Pyx_BufFmt_ExpectNumber(const char **ts) { + int number = __Pyx_BufFmt_ParseNumber(ts); + if (number == -1) + PyErr_Format(PyExc_ValueError,\ + "Does not understand character buffer dtype format string ('%c')", **ts); + return number; +} +static void __Pyx_BufFmt_RaiseUnexpectedChar(char ch) { + PyErr_Format(PyExc_ValueError, + "Unexpected format string character: '%c'", ch); +} +static const char* __Pyx_BufFmt_DescribeTypeChar(char ch, int is_complex) { + switch (ch) { + case '?': return "'bool'"; + case 'c': return "'char'"; + case 'b': return "'signed char'"; + case 'B': return "'unsigned char'"; + case 'h': return "'short'"; + case 'H': return "'unsigned short'"; + case 'i': return "'int'"; + case 'I': return "'unsigned int'"; + case 'l': return "'long'"; + case 'L': return "'unsigned long'"; + case 'q': return "'long long'"; + case 'Q': return "'unsigned long long'"; + case 'f': return (is_complex ? "'complex float'" : "'float'"); + case 'd': return (is_complex ? "'complex double'" : "'double'"); + case 'g': return (is_complex ? "'complex long double'" : "'long double'"); + case 'T': return "a struct"; + case 'O': return "Python object"; + case 'P': return "a pointer"; + case 's': case 'p': return "a string"; + case 0: return "end"; + default: return "unparseable format string"; + } +} +static size_t __Pyx_BufFmt_TypeCharToStandardSize(char ch, int is_complex) { + switch (ch) { + case '?': case 'c': case 'b': case 'B': case 's': case 'p': return 1; + case 'h': case 'H': return 2; + case 'i': case 'I': case 'l': case 'L': return 4; + case 'q': case 'Q': return 8; + case 'f': return (is_complex ? 8 : 4); + case 'd': return (is_complex ? 16 : 8); + case 'g': { + PyErr_SetString(PyExc_ValueError, "Python does not define a standard format string size for long double ('g').."); + return 0; + } + case 'O': case 'P': return sizeof(void*); + default: + __Pyx_BufFmt_RaiseUnexpectedChar(ch); + return 0; + } +} +static size_t __Pyx_BufFmt_TypeCharToNativeSize(char ch, int is_complex) { + switch (ch) { + case '?': case 'c': case 'b': case 'B': case 's': case 'p': return 1; + case 'h': case 'H': return sizeof(short); + case 'i': case 'I': return sizeof(int); + case 'l': case 'L': return sizeof(long); + #ifdef HAVE_LONG_LONG + case 'q': case 'Q': return sizeof(PY_LONG_LONG); + #endif + case 'f': return sizeof(float) * (is_complex ? 2 : 1); + case 'd': return sizeof(double) * (is_complex ? 2 : 1); + case 'g': return sizeof(long double) * (is_complex ? 2 : 1); + case 'O': case 'P': return sizeof(void*); + default: { + __Pyx_BufFmt_RaiseUnexpectedChar(ch); + return 0; + } + } +} +typedef struct { char c; short x; } __Pyx_st_short; +typedef struct { char c; int x; } __Pyx_st_int; +typedef struct { char c; long x; } __Pyx_st_long; +typedef struct { char c; float x; } __Pyx_st_float; +typedef struct { char c; double x; } __Pyx_st_double; +typedef struct { char c; long double x; } __Pyx_st_longdouble; +typedef struct { char c; void *x; } __Pyx_st_void_p; +#ifdef HAVE_LONG_LONG +typedef struct { char c; PY_LONG_LONG x; } __Pyx_st_longlong; +#endif +static size_t __Pyx_BufFmt_TypeCharToAlignment(char ch, CYTHON_UNUSED int is_complex) { + switch (ch) { + case '?': case 'c': case 'b': case 'B': case 's': case 'p': return 1; + case 'h': case 'H': return sizeof(__Pyx_st_short) - sizeof(short); + case 'i': case 'I': return sizeof(__Pyx_st_int) - sizeof(int); + case 'l': case 'L': return sizeof(__Pyx_st_long) - sizeof(long); +#ifdef HAVE_LONG_LONG + case 'q': case 'Q': return sizeof(__Pyx_st_longlong) - sizeof(PY_LONG_LONG); +#endif + case 'f': return sizeof(__Pyx_st_float) - sizeof(float); + case 'd': return sizeof(__Pyx_st_double) - sizeof(double); + case 'g': return sizeof(__Pyx_st_longdouble) - sizeof(long double); + case 'P': case 'O': return sizeof(__Pyx_st_void_p) - sizeof(void*); + default: + __Pyx_BufFmt_RaiseUnexpectedChar(ch); + return 0; + } +} +/* These are for computing the padding at the end of the struct to align + on the first member of the struct. This will probably the same as above, + but we don't have any guarantees. + */ +typedef struct { short x; char c; } __Pyx_pad_short; +typedef struct { int x; char c; } __Pyx_pad_int; +typedef struct { long x; char c; } __Pyx_pad_long; +typedef struct { float x; char c; } __Pyx_pad_float; +typedef struct { double x; char c; } __Pyx_pad_double; +typedef struct { long double x; char c; } __Pyx_pad_longdouble; +typedef struct { void *x; char c; } __Pyx_pad_void_p; +#ifdef HAVE_LONG_LONG +typedef struct { PY_LONG_LONG x; char c; } __Pyx_pad_longlong; +#endif +static size_t __Pyx_BufFmt_TypeCharToPadding(char ch, CYTHON_UNUSED int is_complex) { + switch (ch) { + case '?': case 'c': case 'b': case 'B': case 's': case 'p': return 1; + case 'h': case 'H': return sizeof(__Pyx_pad_short) - sizeof(short); + case 'i': case 'I': return sizeof(__Pyx_pad_int) - sizeof(int); + case 'l': case 'L': return sizeof(__Pyx_pad_long) - sizeof(long); +#ifdef HAVE_LONG_LONG + case 'q': case 'Q': return sizeof(__Pyx_pad_longlong) - sizeof(PY_LONG_LONG); +#endif + case 'f': return sizeof(__Pyx_pad_float) - sizeof(float); + case 'd': return sizeof(__Pyx_pad_double) - sizeof(double); + case 'g': return sizeof(__Pyx_pad_longdouble) - sizeof(long double); + case 'P': case 'O': return sizeof(__Pyx_pad_void_p) - sizeof(void*); + default: + __Pyx_BufFmt_RaiseUnexpectedChar(ch); + return 0; + } +} +static char __Pyx_BufFmt_TypeCharToGroup(char ch, int is_complex) { + switch (ch) { + case 'c': + return 'H'; + case 'b': case 'h': case 'i': + case 'l': case 'q': case 's': case 'p': + return 'I'; + case '?': case 'B': case 'H': case 'I': case 'L': case 'Q': + return 'U'; + case 'f': case 'd': case 'g': + return (is_complex ? 'C' : 'R'); + case 'O': + return 'O'; + case 'P': + return 'P'; + default: { + __Pyx_BufFmt_RaiseUnexpectedChar(ch); + return 0; + } + } +} +static void __Pyx_BufFmt_RaiseExpected(__Pyx_BufFmt_Context* ctx) { + if (ctx->head == NULL || ctx->head->field == &ctx->root) { + const char* expected; + const char* quote; + if (ctx->head == NULL) { + expected = "end"; + quote = ""; + } else { + expected = ctx->head->field->type->name; + quote = "'"; + } + PyErr_Format(PyExc_ValueError, + "Buffer dtype mismatch, expected %s%s%s but got %s", + quote, expected, quote, + __Pyx_BufFmt_DescribeTypeChar(ctx->enc_type, ctx->is_complex)); + } else { + __Pyx_StructField* field = ctx->head->field; + __Pyx_StructField* parent = (ctx->head - 1)->field; + PyErr_Format(PyExc_ValueError, + "Buffer dtype mismatch, expected '%s' but got %s in '%s.%s'", + field->type->name, __Pyx_BufFmt_DescribeTypeChar(ctx->enc_type, ctx->is_complex), + parent->type->name, field->name); + } +} +static int __Pyx_BufFmt_ProcessTypeChunk(__Pyx_BufFmt_Context* ctx) { + char group; + size_t size, offset, arraysize = 1; + if (ctx->enc_type == 0) return 0; + if (ctx->head->field->type->arraysize[0]) { + int i, ndim = 0; + if (ctx->enc_type == 's' || ctx->enc_type == 'p') { + ctx->is_valid_array = ctx->head->field->type->ndim == 1; + ndim = 1; + if (ctx->enc_count != ctx->head->field->type->arraysize[0]) { + PyErr_Format(PyExc_ValueError, + "Expected a dimension of size %zu, got %zu", + ctx->head->field->type->arraysize[0], ctx->enc_count); + return -1; + } + } + if (!ctx->is_valid_array) { + PyErr_Format(PyExc_ValueError, "Expected %d dimensions, got %d", + ctx->head->field->type->ndim, ndim); + return -1; + } + for (i = 0; i < ctx->head->field->type->ndim; i++) { + arraysize *= ctx->head->field->type->arraysize[i]; + } + ctx->is_valid_array = 0; + ctx->enc_count = 1; + } + group = __Pyx_BufFmt_TypeCharToGroup(ctx->enc_type, ctx->is_complex); + do { + __Pyx_StructField* field = ctx->head->field; + __Pyx_TypeInfo* type = field->type; + if (ctx->enc_packmode == '@' || ctx->enc_packmode == '^') { + size = __Pyx_BufFmt_TypeCharToNativeSize(ctx->enc_type, ctx->is_complex); + } else { + size = __Pyx_BufFmt_TypeCharToStandardSize(ctx->enc_type, ctx->is_complex); + } + if (ctx->enc_packmode == '@') { + size_t align_at = __Pyx_BufFmt_TypeCharToAlignment(ctx->enc_type, ctx->is_complex); + size_t align_mod_offset; + if (align_at == 0) return -1; + align_mod_offset = ctx->fmt_offset % align_at; + if (align_mod_offset > 0) ctx->fmt_offset += align_at - align_mod_offset; + if (ctx->struct_alignment == 0) + ctx->struct_alignment = __Pyx_BufFmt_TypeCharToPadding(ctx->enc_type, + ctx->is_complex); + } + if (type->size != size || type->typegroup != group) { + if (type->typegroup == 'C' && type->fields != NULL) { + size_t parent_offset = ctx->head->parent_offset + field->offset; + ++ctx->head; + ctx->head->field = type->fields; + ctx->head->parent_offset = parent_offset; + continue; + } + if ((type->typegroup == 'H' || group == 'H') && type->size == size) { + } else { + __Pyx_BufFmt_RaiseExpected(ctx); + return -1; + } + } + offset = ctx->head->parent_offset + field->offset; + if (ctx->fmt_offset != offset) { + PyErr_Format(PyExc_ValueError, + "Buffer dtype mismatch; next field is at offset %" CYTHON_FORMAT_SSIZE_T "d but %" CYTHON_FORMAT_SSIZE_T "d expected", + (Py_ssize_t)ctx->fmt_offset, (Py_ssize_t)offset); + return -1; + } + ctx->fmt_offset += size; + if (arraysize) + ctx->fmt_offset += (arraysize - 1) * size; + --ctx->enc_count; + while (1) { + if (field == &ctx->root) { + ctx->head = NULL; + if (ctx->enc_count != 0) { + __Pyx_BufFmt_RaiseExpected(ctx); + return -1; + } + break; + } + ctx->head->field = ++field; + if (field->type == NULL) { + --ctx->head; + field = ctx->head->field; + continue; + } else if (field->type->typegroup == 'S') { + size_t parent_offset = ctx->head->parent_offset + field->offset; + if (field->type->fields->type == NULL) continue; + field = field->type->fields; + ++ctx->head; + ctx->head->field = field; + ctx->head->parent_offset = parent_offset; + break; + } else { + break; + } + } + } while (ctx->enc_count); + ctx->enc_type = 0; + ctx->is_complex = 0; + return 0; +} +static PyObject * +__pyx_buffmt_parse_array(__Pyx_BufFmt_Context* ctx, const char** tsp) +{ + const char *ts = *tsp; + int i = 0, number, ndim; + ++ts; + if (ctx->new_count != 1) { + PyErr_SetString(PyExc_ValueError, + "Cannot handle repeated arrays in format string"); + return NULL; + } + if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL; + ndim = ctx->head->field->type->ndim; + while (*ts && *ts != ')') { + switch (*ts) { + case ' ': case '\f': case '\r': case '\n': case '\t': case '\v': continue; + default: break; + } + number = __Pyx_BufFmt_ExpectNumber(&ts); + if (number == -1) return NULL; + if (i < ndim && (size_t) number != ctx->head->field->type->arraysize[i]) + return PyErr_Format(PyExc_ValueError, + "Expected a dimension of size %zu, got %d", + ctx->head->field->type->arraysize[i], number); + if (*ts != ',' && *ts != ')') + return PyErr_Format(PyExc_ValueError, + "Expected a comma in format string, got '%c'", *ts); + if (*ts == ',') ts++; + i++; + } + if (i != ndim) + return PyErr_Format(PyExc_ValueError, "Expected %d dimension(s), got %d", + ctx->head->field->type->ndim, i); + if (!*ts) { + PyErr_SetString(PyExc_ValueError, + "Unexpected end of format string, expected ')'"); + return NULL; + } + ctx->is_valid_array = 1; + ctx->new_count = 1; + *tsp = ++ts; + return Py_None; +} +static const char* __Pyx_BufFmt_CheckString(__Pyx_BufFmt_Context* ctx, const char* ts) { + int got_Z = 0; + while (1) { + switch(*ts) { + case 0: + if (ctx->enc_type != 0 && ctx->head == NULL) { + __Pyx_BufFmt_RaiseExpected(ctx); + return NULL; + } + if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL; + if (ctx->head != NULL) { + __Pyx_BufFmt_RaiseExpected(ctx); + return NULL; + } + return ts; + case ' ': + case '\r': + case '\n': + ++ts; + break; + case '<': + if (!__Pyx_Is_Little_Endian()) { + PyErr_SetString(PyExc_ValueError, "Little-endian buffer not supported on big-endian compiler"); + return NULL; + } + ctx->new_packmode = '='; + ++ts; + break; + case '>': + case '!': + if (__Pyx_Is_Little_Endian()) { + PyErr_SetString(PyExc_ValueError, "Big-endian buffer not supported on little-endian compiler"); + return NULL; + } + ctx->new_packmode = '='; + ++ts; + break; + case '=': + case '@': + case '^': + ctx->new_packmode = *ts++; + break; + case 'T': + { + const char* ts_after_sub; + size_t i, struct_count = ctx->new_count; + size_t struct_alignment = ctx->struct_alignment; + ctx->new_count = 1; + ++ts; + if (*ts != '{') { + PyErr_SetString(PyExc_ValueError, "Buffer acquisition: Expected '{' after 'T'"); + return NULL; + } + if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL; + ctx->enc_type = 0; + ctx->enc_count = 0; + ctx->struct_alignment = 0; + ++ts; + ts_after_sub = ts; + for (i = 0; i != struct_count; ++i) { + ts_after_sub = __Pyx_BufFmt_CheckString(ctx, ts); + if (!ts_after_sub) return NULL; + } + ts = ts_after_sub; + if (struct_alignment) ctx->struct_alignment = struct_alignment; + } + break; + case '}': + { + size_t alignment = ctx->struct_alignment; + ++ts; + if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL; + ctx->enc_type = 0; + if (alignment && ctx->fmt_offset % alignment) { + ctx->fmt_offset += alignment - (ctx->fmt_offset % alignment); + } + } + return ts; + case 'x': + if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL; + ctx->fmt_offset += ctx->new_count; + ctx->new_count = 1; + ctx->enc_count = 0; + ctx->enc_type = 0; + ctx->enc_packmode = ctx->new_packmode; + ++ts; + break; + case 'Z': + got_Z = 1; + ++ts; + if (*ts != 'f' && *ts != 'd' && *ts != 'g') { + __Pyx_BufFmt_RaiseUnexpectedChar('Z'); + return NULL; + } + CYTHON_FALLTHROUGH; + case '?': case 'c': case 'b': case 'B': case 'h': case 'H': case 'i': case 'I': + case 'l': case 'L': case 'q': case 'Q': + case 'f': case 'd': case 'g': + case 'O': case 'p': + if ((ctx->enc_type == *ts) && (got_Z == ctx->is_complex) && + (ctx->enc_packmode == ctx->new_packmode) && (!ctx->is_valid_array)) { + ctx->enc_count += ctx->new_count; + ctx->new_count = 1; + got_Z = 0; + ++ts; + break; + } + CYTHON_FALLTHROUGH; + case 's': + if (__Pyx_BufFmt_ProcessTypeChunk(ctx) == -1) return NULL; + ctx->enc_count = ctx->new_count; + ctx->enc_packmode = ctx->new_packmode; + ctx->enc_type = *ts; + ctx->is_complex = got_Z; + ++ts; + ctx->new_count = 1; + got_Z = 0; + break; + case ':': + ++ts; + while(*ts != ':') ++ts; + ++ts; + break; + case '(': + if (!__pyx_buffmt_parse_array(ctx, &ts)) return NULL; + break; + default: + { + int number = __Pyx_BufFmt_ExpectNumber(&ts); + if (number == -1) return NULL; + ctx->new_count = (size_t)number; + } + } + } +} + +/* BufferGetAndValidate */ + static CYTHON_INLINE void __Pyx_SafeReleaseBuffer(Py_buffer* info) { + if (unlikely(info->buf == NULL)) return; + if (info->suboffsets == __Pyx_minusones) info->suboffsets = NULL; + __Pyx_ReleaseBuffer(info); +} +static void __Pyx_ZeroBuffer(Py_buffer* buf) { + buf->buf = NULL; + buf->obj = NULL; + buf->strides = __Pyx_zeros; + buf->shape = __Pyx_zeros; + buf->suboffsets = __Pyx_minusones; +} +static int __Pyx__GetBufferAndValidate( + Py_buffer* buf, PyObject* obj, __Pyx_TypeInfo* dtype, int flags, + int nd, int cast, __Pyx_BufFmt_StackElem* stack) +{ + buf->buf = NULL; + if (unlikely(__Pyx_GetBuffer(obj, buf, flags) == -1)) { + __Pyx_ZeroBuffer(buf); + return -1; + } + if (unlikely(buf->ndim != nd)) { + PyErr_Format(PyExc_ValueError, + "Buffer has wrong number of dimensions (expected %d, got %d)", + nd, buf->ndim); + goto fail; + } + if (!cast) { + __Pyx_BufFmt_Context ctx; + __Pyx_BufFmt_Init(&ctx, stack, dtype); + if (!__Pyx_BufFmt_CheckString(&ctx, buf->format)) goto fail; + } + if (unlikely((size_t)buf->itemsize != dtype->size)) { + PyErr_Format(PyExc_ValueError, + "Item size of buffer (%" CYTHON_FORMAT_SSIZE_T "d byte%s) does not match size of '%s' (%" CYTHON_FORMAT_SSIZE_T "d byte%s)", + buf->itemsize, (buf->itemsize > 1) ? "s" : "", + dtype->name, (Py_ssize_t)dtype->size, (dtype->size > 1) ? "s" : ""); + goto fail; + } + if (buf->suboffsets == NULL) buf->suboffsets = __Pyx_minusones; + return 0; +fail:; + __Pyx_SafeReleaseBuffer(buf); + return -1; +} + +/* PyDictVersioning */ + #if CYTHON_USE_DICT_VERSIONS && CYTHON_USE_TYPE_SLOTS +static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj) { + PyObject *dict = Py_TYPE(obj)->tp_dict; + return likely(dict) ? __PYX_GET_DICT_VERSION(dict) : 0; +} +static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj) { + PyObject **dictptr = NULL; + Py_ssize_t offset = Py_TYPE(obj)->tp_dictoffset; + if (offset) { +#if CYTHON_COMPILING_IN_CPYTHON + dictptr = (likely(offset > 0)) ? (PyObject **) ((char *)obj + offset) : _PyObject_GetDictPtr(obj); +#else + dictptr = _PyObject_GetDictPtr(obj); +#endif + } + return (dictptr && *dictptr) ? __PYX_GET_DICT_VERSION(*dictptr) : 0; +} +static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version) { + PyObject *dict = Py_TYPE(obj)->tp_dict; + if (unlikely(!dict) || unlikely(tp_dict_version != __PYX_GET_DICT_VERSION(dict))) + return 0; + return obj_dict_version == __Pyx_get_object_dict_version(obj); +} +#endif + +/* GetModuleGlobalName */ + #if CYTHON_USE_DICT_VERSIONS +static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value) +#else +static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name) +#endif +{ + PyObject *result; +#if !CYTHON_AVOID_BORROWED_REFS +#if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 + result = _PyDict_GetItem_KnownHash(__pyx_d, name, ((PyASCIIObject *) name)->hash); + __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) + if (likely(result)) { + return __Pyx_NewRef(result); + } else if (unlikely(PyErr_Occurred())) { + return NULL; + } +#else + result = PyDict_GetItem(__pyx_d, name); + __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) + if (likely(result)) { + return __Pyx_NewRef(result); + } +#endif +#else + result = PyObject_GetItem(__pyx_d, name); + __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) + if (likely(result)) { + return __Pyx_NewRef(result); + } + PyErr_Clear(); +#endif + return __Pyx_GetBuiltinName(name); +} + +/* PyObjectCall */ + #if CYTHON_COMPILING_IN_CPYTHON +static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) { + PyObject *result; + ternaryfunc call = Py_TYPE(func)->tp_call; + if (unlikely(!call)) + return PyObject_Call(func, arg, kw); + if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) + return NULL; + result = (*call)(func, arg, kw); + Py_LeaveRecursiveCall(); + if (unlikely(!result) && unlikely(!PyErr_Occurred())) { + PyErr_SetString( + PyExc_SystemError, + "NULL result without error in PyObject_Call"); + } + return result; +} +#endif + +/* ExtTypeTest */ + static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type) { + if (unlikely(!type)) { + PyErr_SetString(PyExc_SystemError, "Missing type object"); + return 0; + } + if (likely(__Pyx_TypeCheck(obj, type))) + return 1; + PyErr_Format(PyExc_TypeError, "Cannot convert %.200s to %.200s", + Py_TYPE(obj)->tp_name, type->tp_name); + return 0; +} + +/* BufferIndexError */ + static void __Pyx_RaiseBufferIndexError(int axis) { + PyErr_Format(PyExc_IndexError, + "Out of bounds on buffer access (axis %d)", axis); +} + +/* PyErrFetchRestore */ + #if CYTHON_FAST_THREAD_STATE +static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { + PyObject *tmp_type, *tmp_value, *tmp_tb; + tmp_type = tstate->curexc_type; + tmp_value = tstate->curexc_value; + tmp_tb = tstate->curexc_traceback; + tstate->curexc_type = type; + tstate->curexc_value = value; + tstate->curexc_traceback = tb; + Py_XDECREF(tmp_type); + Py_XDECREF(tmp_value); + Py_XDECREF(tmp_tb); +} +static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { + *type = tstate->curexc_type; + *value = tstate->curexc_value; + *tb = tstate->curexc_traceback; + tstate->curexc_type = 0; + tstate->curexc_value = 0; + tstate->curexc_traceback = 0; +} +#endif + +/* GetTopmostException */ + #if CYTHON_USE_EXC_INFO_STACK +static _PyErr_StackItem * +__Pyx_PyErr_GetTopmostException(PyThreadState *tstate) +{ + _PyErr_StackItem *exc_info = tstate->exc_info; + while ((exc_info->exc_type == NULL || exc_info->exc_type == Py_None) && + exc_info->previous_item != NULL) + { + exc_info = exc_info->previous_item; + } + return exc_info; +} +#endif + +/* SaveResetException */ + #if CYTHON_FAST_THREAD_STATE +static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { + #if CYTHON_USE_EXC_INFO_STACK + _PyErr_StackItem *exc_info = __Pyx_PyErr_GetTopmostException(tstate); + *type = exc_info->exc_type; + *value = exc_info->exc_value; + *tb = exc_info->exc_traceback; + #else + *type = tstate->exc_type; + *value = tstate->exc_value; + *tb = tstate->exc_traceback; + #endif + Py_XINCREF(*type); + Py_XINCREF(*value); + Py_XINCREF(*tb); +} +static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { + PyObject *tmp_type, *tmp_value, *tmp_tb; + #if CYTHON_USE_EXC_INFO_STACK + _PyErr_StackItem *exc_info = tstate->exc_info; + tmp_type = exc_info->exc_type; + tmp_value = exc_info->exc_value; + tmp_tb = exc_info->exc_traceback; + exc_info->exc_type = type; + exc_info->exc_value = value; + exc_info->exc_traceback = tb; + #else + tmp_type = tstate->exc_type; + tmp_value = tstate->exc_value; + tmp_tb = tstate->exc_traceback; + tstate->exc_type = type; + tstate->exc_value = value; + tstate->exc_traceback = tb; + #endif + Py_XDECREF(tmp_type); + Py_XDECREF(tmp_value); + Py_XDECREF(tmp_tb); +} +#endif + +/* PyErrExceptionMatches */ + #if CYTHON_FAST_THREAD_STATE +static int __Pyx_PyErr_ExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { + Py_ssize_t i, n; + n = PyTuple_GET_SIZE(tuple); +#if PY_MAJOR_VERSION >= 3 + for (i=0; icurexc_type; + if (exc_type == err) return 1; + if (unlikely(!exc_type)) return 0; + if (unlikely(PyTuple_Check(err))) + return __Pyx_PyErr_ExceptionMatchesTuple(exc_type, err); + return __Pyx_PyErr_GivenExceptionMatches(exc_type, err); +} +#endif + +/* GetException */ + #if CYTHON_FAST_THREAD_STATE +static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) +#else +static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb) +#endif +{ + PyObject *local_type, *local_value, *local_tb; +#if CYTHON_FAST_THREAD_STATE + PyObject *tmp_type, *tmp_value, *tmp_tb; + local_type = tstate->curexc_type; + local_value = tstate->curexc_value; + local_tb = tstate->curexc_traceback; + tstate->curexc_type = 0; + tstate->curexc_value = 0; + tstate->curexc_traceback = 0; +#else + PyErr_Fetch(&local_type, &local_value, &local_tb); +#endif + PyErr_NormalizeException(&local_type, &local_value, &local_tb); +#if CYTHON_FAST_THREAD_STATE + if (unlikely(tstate->curexc_type)) +#else + if (unlikely(PyErr_Occurred())) +#endif + goto bad; + #if PY_MAJOR_VERSION >= 3 + if (local_tb) { + if (unlikely(PyException_SetTraceback(local_value, local_tb) < 0)) + goto bad; + } + #endif + Py_XINCREF(local_tb); + Py_XINCREF(local_type); + Py_XINCREF(local_value); + *type = local_type; + *value = local_value; + *tb = local_tb; +#if CYTHON_FAST_THREAD_STATE + #if CYTHON_USE_EXC_INFO_STACK + { + _PyErr_StackItem *exc_info = tstate->exc_info; + tmp_type = exc_info->exc_type; + tmp_value = exc_info->exc_value; + tmp_tb = exc_info->exc_traceback; + exc_info->exc_type = local_type; + exc_info->exc_value = local_value; + exc_info->exc_traceback = local_tb; + } + #else + tmp_type = tstate->exc_type; + tmp_value = tstate->exc_value; + tmp_tb = tstate->exc_traceback; + tstate->exc_type = local_type; + tstate->exc_value = local_value; + tstate->exc_traceback = local_tb; + #endif + Py_XDECREF(tmp_type); + Py_XDECREF(tmp_value); + Py_XDECREF(tmp_tb); +#else + PyErr_SetExcInfo(local_type, local_value, local_tb); +#endif + return 0; +bad: + *type = 0; + *value = 0; + *tb = 0; + Py_XDECREF(local_type); + Py_XDECREF(local_value); + Py_XDECREF(local_tb); + return -1; +} + +/* RaiseException */ + #if PY_MAJOR_VERSION < 3 +static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, + CYTHON_UNUSED PyObject *cause) { + __Pyx_PyThreadState_declare + Py_XINCREF(type); + if (!value || value == Py_None) + value = NULL; + else + Py_INCREF(value); + if (!tb || tb == Py_None) + tb = NULL; + else { + Py_INCREF(tb); + if (!PyTraceBack_Check(tb)) { + PyErr_SetString(PyExc_TypeError, + "raise: arg 3 must be a traceback or None"); + goto raise_error; + } + } + if (PyType_Check(type)) { +#if CYTHON_COMPILING_IN_PYPY + if (!value) { + Py_INCREF(Py_None); + value = Py_None; + } +#endif + PyErr_NormalizeException(&type, &value, &tb); + } else { + if (value) { + PyErr_SetString(PyExc_TypeError, + "instance exception may not have a separate value"); + goto raise_error; + } + value = type; + type = (PyObject*) Py_TYPE(type); + Py_INCREF(type); + if (!PyType_IsSubtype((PyTypeObject *)type, (PyTypeObject *)PyExc_BaseException)) { + PyErr_SetString(PyExc_TypeError, + "raise: exception class must be a subclass of BaseException"); + goto raise_error; + } + } + __Pyx_PyThreadState_assign + __Pyx_ErrRestore(type, value, tb); + return; +raise_error: + Py_XDECREF(value); + Py_XDECREF(type); + Py_XDECREF(tb); + return; +} +#else +static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { + PyObject* owned_instance = NULL; + if (tb == Py_None) { + tb = 0; + } else if (tb && !PyTraceBack_Check(tb)) { + PyErr_SetString(PyExc_TypeError, + "raise: arg 3 must be a traceback or None"); + goto bad; + } + if (value == Py_None) + value = 0; + if (PyExceptionInstance_Check(type)) { + if (value) { + PyErr_SetString(PyExc_TypeError, + "instance exception may not have a separate value"); + goto bad; + } + value = type; + type = (PyObject*) Py_TYPE(value); + } else if (PyExceptionClass_Check(type)) { + PyObject *instance_class = NULL; + if (value && PyExceptionInstance_Check(value)) { + instance_class = (PyObject*) Py_TYPE(value); + if (instance_class != type) { + int is_subclass = PyObject_IsSubclass(instance_class, type); + if (!is_subclass) { + instance_class = NULL; + } else if (unlikely(is_subclass == -1)) { + goto bad; + } else { + type = instance_class; + } + } + } + if (!instance_class) { + PyObject *args; + if (!value) + args = PyTuple_New(0); + else if (PyTuple_Check(value)) { + Py_INCREF(value); + args = value; + } else + args = PyTuple_Pack(1, value); + if (!args) + goto bad; + owned_instance = PyObject_Call(type, args, NULL); + Py_DECREF(args); + if (!owned_instance) + goto bad; + value = owned_instance; + if (!PyExceptionInstance_Check(value)) { + PyErr_Format(PyExc_TypeError, + "calling %R should have returned an instance of " + "BaseException, not %R", + type, Py_TYPE(value)); + goto bad; + } + } + } else { + PyErr_SetString(PyExc_TypeError, + "raise: exception class must be a subclass of BaseException"); + goto bad; + } + if (cause) { + PyObject *fixed_cause; + if (cause == Py_None) { + fixed_cause = NULL; + } else if (PyExceptionClass_Check(cause)) { + fixed_cause = PyObject_CallObject(cause, NULL); + if (fixed_cause == NULL) + goto bad; + } else if (PyExceptionInstance_Check(cause)) { + fixed_cause = cause; + Py_INCREF(fixed_cause); + } else { + PyErr_SetString(PyExc_TypeError, + "exception causes must derive from " + "BaseException"); + goto bad; + } + PyException_SetCause(value, fixed_cause); + } + PyErr_SetObject(type, value); + if (tb) { +#if CYTHON_COMPILING_IN_PYPY + PyObject *tmp_type, *tmp_value, *tmp_tb; + PyErr_Fetch(&tmp_type, &tmp_value, &tmp_tb); + Py_INCREF(tb); + PyErr_Restore(tmp_type, tmp_value, tb); + Py_XDECREF(tmp_tb); +#else + PyThreadState *tstate = __Pyx_PyThreadState_Current; + PyObject* tmp_tb = tstate->curexc_traceback; + if (tb != tmp_tb) { + Py_INCREF(tb); + tstate->curexc_traceback = tb; + Py_XDECREF(tmp_tb); + } +#endif + } +bad: + Py_XDECREF(owned_instance); + return; +} +#endif + +/* TypeImport */ + #ifndef __PYX_HAVE_RT_ImportType +#define __PYX_HAVE_RT_ImportType +static PyTypeObject *__Pyx_ImportType(PyObject *module, const char *module_name, const char *class_name, + size_t size, enum __Pyx_ImportType_CheckSize check_size) +{ + PyObject *result = 0; + char warning[200]; + Py_ssize_t basicsize; +#ifdef Py_LIMITED_API + PyObject *py_basicsize; +#endif + result = PyObject_GetAttrString(module, class_name); + if (!result) + goto bad; + if (!PyType_Check(result)) { + PyErr_Format(PyExc_TypeError, + "%.200s.%.200s is not a type object", + module_name, class_name); + goto bad; + } +#ifndef Py_LIMITED_API + basicsize = ((PyTypeObject *)result)->tp_basicsize; +#else + py_basicsize = PyObject_GetAttrString(result, "__basicsize__"); + if (!py_basicsize) + goto bad; + basicsize = PyLong_AsSsize_t(py_basicsize); + Py_DECREF(py_basicsize); + py_basicsize = 0; + if (basicsize == (Py_ssize_t)-1 && PyErr_Occurred()) + goto bad; +#endif + if ((size_t)basicsize < size) { + PyErr_Format(PyExc_ValueError, + "%.200s.%.200s size changed, may indicate binary incompatibility. " + "Expected %zd from C header, got %zd from PyObject", + module_name, class_name, size, basicsize); + goto bad; + } + if (check_size == __Pyx_ImportType_CheckSize_Error && (size_t)basicsize != size) { + PyErr_Format(PyExc_ValueError, + "%.200s.%.200s size changed, may indicate binary incompatibility. " + "Expected %zd from C header, got %zd from PyObject", + module_name, class_name, size, basicsize); + goto bad; + } + else if (check_size == __Pyx_ImportType_CheckSize_Warn && (size_t)basicsize > size) { + PyOS_snprintf(warning, sizeof(warning), + "%s.%s size changed, may indicate binary incompatibility. " + "Expected %zd from C header, got %zd from PyObject", + module_name, class_name, size, basicsize); + if (PyErr_WarnEx(NULL, warning, 0) < 0) goto bad; + } + return (PyTypeObject *)result; +bad: + Py_XDECREF(result); + return NULL; +} +#endif + +/* Import */ + static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) { + PyObject *empty_list = 0; + PyObject *module = 0; + PyObject *global_dict = 0; + PyObject *empty_dict = 0; + PyObject *list; + #if PY_MAJOR_VERSION < 3 + PyObject *py_import; + py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import); + if (!py_import) + goto bad; + #endif + if (from_list) + list = from_list; + else { + empty_list = PyList_New(0); + if (!empty_list) + goto bad; + list = empty_list; + } + global_dict = PyModule_GetDict(__pyx_m); + if (!global_dict) + goto bad; + empty_dict = PyDict_New(); + if (!empty_dict) + goto bad; + { + #if PY_MAJOR_VERSION >= 3 + if (level == -1) { + if ((1) && (strchr(__Pyx_MODULE_NAME, '.'))) { + module = PyImport_ImportModuleLevelObject( + name, global_dict, empty_dict, list, 1); + if (!module) { + if (!PyErr_ExceptionMatches(PyExc_ImportError)) + goto bad; + PyErr_Clear(); + } + } + level = 0; + } + #endif + if (!module) { + #if PY_MAJOR_VERSION < 3 + PyObject *py_level = PyInt_FromLong(level); + if (!py_level) + goto bad; + module = PyObject_CallFunctionObjArgs(py_import, + name, global_dict, empty_dict, list, py_level, (PyObject *)NULL); + Py_DECREF(py_level); + #else + module = PyImport_ImportModuleLevelObject( + name, global_dict, empty_dict, list, level); + #endif + } + } +bad: + #if PY_MAJOR_VERSION < 3 + Py_XDECREF(py_import); + #endif + Py_XDECREF(empty_list); + Py_XDECREF(empty_dict); + return module; +} + +/* CLineInTraceback */ + #ifndef CYTHON_CLINE_IN_TRACEBACK +static int __Pyx_CLineForTraceback(CYTHON_NCP_UNUSED PyThreadState *tstate, int c_line) { + PyObject *use_cline; + PyObject *ptype, *pvalue, *ptraceback; +#if CYTHON_COMPILING_IN_CPYTHON + PyObject **cython_runtime_dict; +#endif + if (unlikely(!__pyx_cython_runtime)) { + return c_line; + } + __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); +#if CYTHON_COMPILING_IN_CPYTHON + cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime); + if (likely(cython_runtime_dict)) { + __PYX_PY_DICT_LOOKUP_IF_MODIFIED( + use_cline, *cython_runtime_dict, + __Pyx_PyDict_GetItemStr(*cython_runtime_dict, __pyx_n_s_cline_in_traceback)) + } else +#endif + { + PyObject *use_cline_obj = __Pyx_PyObject_GetAttrStr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback); + if (use_cline_obj) { + use_cline = PyObject_Not(use_cline_obj) ? Py_False : Py_True; + Py_DECREF(use_cline_obj); + } else { + PyErr_Clear(); + use_cline = NULL; + } + } + if (!use_cline) { + c_line = 0; + (void) PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); + } + else if (use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { + c_line = 0; + } + __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); + return c_line; +} +#endif + +/* CodeObjectCache */ + static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { + int start = 0, mid = 0, end = count - 1; + if (end >= 0 && code_line > entries[end].code_line) { + return count; + } + while (start < end) { + mid = start + (end - start) / 2; + if (code_line < entries[mid].code_line) { + end = mid; + } else if (code_line > entries[mid].code_line) { + start = mid + 1; + } else { + return mid; + } + } + if (code_line <= entries[mid].code_line) { + return mid; + } else { + return mid + 1; + } +} +static PyCodeObject *__pyx_find_code_object(int code_line) { + PyCodeObject* code_object; + int pos; + if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) { + return NULL; + } + pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); + if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) { + return NULL; + } + code_object = __pyx_code_cache.entries[pos].code_object; + Py_INCREF(code_object); + return code_object; +} +static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { + int pos, i; + __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries; + if (unlikely(!code_line)) { + return; + } + if (unlikely(!entries)) { + entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); + if (likely(entries)) { + __pyx_code_cache.entries = entries; + __pyx_code_cache.max_count = 64; + __pyx_code_cache.count = 1; + entries[0].code_line = code_line; + entries[0].code_object = code_object; + Py_INCREF(code_object); + } + return; + } + pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); + if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) { + PyCodeObject* tmp = entries[pos].code_object; + entries[pos].code_object = code_object; + Py_DECREF(tmp); + return; + } + if (__pyx_code_cache.count == __pyx_code_cache.max_count) { + int new_max = __pyx_code_cache.max_count + 64; + entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( + __pyx_code_cache.entries, ((size_t)new_max) * sizeof(__Pyx_CodeObjectCacheEntry)); + if (unlikely(!entries)) { + return; + } + __pyx_code_cache.entries = entries; + __pyx_code_cache.max_count = new_max; + } + for (i=__pyx_code_cache.count; i>pos; i--) { + entries[i] = entries[i-1]; + } + entries[pos].code_line = code_line; + entries[pos].code_object = code_object; + __pyx_code_cache.count++; + Py_INCREF(code_object); +} + +/* AddTraceback */ + #include "compile.h" +#include "frameobject.h" +#include "traceback.h" +#if PY_VERSION_HEX >= 0x030b00a6 + #ifndef Py_BUILD_CORE + #define Py_BUILD_CORE 1 + #endif + #include "internal/pycore_frame.h" +#endif +static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( + const char *funcname, int c_line, + int py_line, const char *filename) { + PyCodeObject *py_code = NULL; + PyObject *py_funcname = NULL; + #if PY_MAJOR_VERSION < 3 + PyObject *py_srcfile = NULL; + py_srcfile = PyString_FromString(filename); + if (!py_srcfile) goto bad; + #endif + if (c_line) { + #if PY_MAJOR_VERSION < 3 + py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); + if (!py_funcname) goto bad; + #else + py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); + if (!py_funcname) goto bad; + funcname = PyUnicode_AsUTF8(py_funcname); + if (!funcname) goto bad; + #endif + } + else { + #if PY_MAJOR_VERSION < 3 + py_funcname = PyString_FromString(funcname); + if (!py_funcname) goto bad; + #endif + } + #if PY_MAJOR_VERSION < 3 + py_code = __Pyx_PyCode_New( + 0, + 0, + 0, + 0, + 0, + __pyx_empty_bytes, /*PyObject *code,*/ + __pyx_empty_tuple, /*PyObject *consts,*/ + __pyx_empty_tuple, /*PyObject *names,*/ + __pyx_empty_tuple, /*PyObject *varnames,*/ + __pyx_empty_tuple, /*PyObject *freevars,*/ + __pyx_empty_tuple, /*PyObject *cellvars,*/ + py_srcfile, /*PyObject *filename,*/ + py_funcname, /*PyObject *name,*/ + py_line, + __pyx_empty_bytes /*PyObject *lnotab*/ + ); + Py_DECREF(py_srcfile); + #else + py_code = PyCode_NewEmpty(filename, funcname, py_line); + #endif + Py_XDECREF(py_funcname); // XDECREF since it's only set on Py3 if cline + return py_code; +bad: + Py_XDECREF(py_funcname); + #if PY_MAJOR_VERSION < 3 + Py_XDECREF(py_srcfile); + #endif + return NULL; +} +static void __Pyx_AddTraceback(const char *funcname, int c_line, + int py_line, const char *filename) { + PyCodeObject *py_code = 0; + PyFrameObject *py_frame = 0; + PyThreadState *tstate = __Pyx_PyThreadState_Current; + PyObject *ptype, *pvalue, *ptraceback; + if (c_line) { + c_line = __Pyx_CLineForTraceback(tstate, c_line); + } + py_code = __pyx_find_code_object(c_line ? -c_line : py_line); + if (!py_code) { + __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); + py_code = __Pyx_CreateCodeObjectForTraceback( + funcname, c_line, py_line, filename); + if (!py_code) { + /* If the code object creation fails, then we should clear the + fetched exception references and propagate the new exception */ + Py_XDECREF(ptype); + Py_XDECREF(pvalue); + Py_XDECREF(ptraceback); + goto bad; + } + __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); + __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); + } + py_frame = PyFrame_New( + tstate, /*PyThreadState *tstate,*/ + py_code, /*PyCodeObject *code,*/ + __pyx_d, /*PyObject *globals,*/ + 0 /*PyObject *locals*/ + ); + if (!py_frame) goto bad; + __Pyx_PyFrame_SetLineNumber(py_frame, py_line); + PyTraceBack_Here(py_frame); +bad: + Py_XDECREF(py_code); + Py_XDECREF(py_frame); +} + +#if PY_MAJOR_VERSION < 3 +static int __Pyx_GetBuffer(PyObject *obj, Py_buffer *view, int flags) { + if (PyObject_CheckBuffer(obj)) return PyObject_GetBuffer(obj, view, flags); + PyErr_Format(PyExc_TypeError, "'%.200s' does not have the buffer interface", Py_TYPE(obj)->tp_name); + return -1; +} +static void __Pyx_ReleaseBuffer(Py_buffer *view) { + PyObject *obj = view->obj; + if (!obj) return; + if (PyObject_CheckBuffer(obj)) { + PyBuffer_Release(view); + return; + } + if ((0)) {} + view->obj = NULL; + Py_DECREF(obj); +} +#endif + + + /* CIntFromPyVerify */ + #define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\ + __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0) +#define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\ + __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1) +#define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\ + {\ + func_type value = func_value;\ + if (sizeof(target_type) < sizeof(func_type)) {\ + if (unlikely(value != (func_type) (target_type) value)) {\ + func_type zero = 0;\ + if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\ + return (target_type) -1;\ + if (is_unsigned && unlikely(value < zero))\ + goto raise_neg_overflow;\ + else\ + goto raise_overflow;\ + }\ + }\ + return (target_type) value;\ + } + +/* Declarations */ + #if CYTHON_CCOMPLEX + #ifdef __cplusplus + static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) { + return ::std::complex< float >(x, y); + } + #else + static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) { + return x + y*(__pyx_t_float_complex)_Complex_I; + } + #endif +#else + static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) { + __pyx_t_float_complex z; + z.real = x; + z.imag = y; + return z; + } +#endif + +/* Arithmetic */ + #if CYTHON_CCOMPLEX +#else + static CYTHON_INLINE int __Pyx_c_eq_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { + return (a.real == b.real) && (a.imag == b.imag); + } + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_sum_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { + __pyx_t_float_complex z; + z.real = a.real + b.real; + z.imag = a.imag + b.imag; + return z; + } + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_diff_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { + __pyx_t_float_complex z; + z.real = a.real - b.real; + z.imag = a.imag - b.imag; + return z; + } + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_prod_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { + __pyx_t_float_complex z; + z.real = a.real * b.real - a.imag * b.imag; + z.imag = a.real * b.imag + a.imag * b.real; + return z; + } + #if 1 + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quot_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { + if (b.imag == 0) { + return __pyx_t_float_complex_from_parts(a.real / b.real, a.imag / b.real); + } else if (fabsf(b.real) >= fabsf(b.imag)) { + if (b.real == 0 && b.imag == 0) { + return __pyx_t_float_complex_from_parts(a.real / b.real, a.imag / b.imag); + } else { + float r = b.imag / b.real; + float s = (float)(1.0) / (b.real + b.imag * r); + return __pyx_t_float_complex_from_parts( + (a.real + a.imag * r) * s, (a.imag - a.real * r) * s); + } + } else { + float r = b.real / b.imag; + float s = (float)(1.0) / (b.imag + b.real * r); + return __pyx_t_float_complex_from_parts( + (a.real * r + a.imag) * s, (a.imag * r - a.real) * s); + } + } + #else + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quot_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { + if (b.imag == 0) { + return __pyx_t_float_complex_from_parts(a.real / b.real, a.imag / b.real); + } else { + float denom = b.real * b.real + b.imag * b.imag; + return __pyx_t_float_complex_from_parts( + (a.real * b.real + a.imag * b.imag) / denom, + (a.imag * b.real - a.real * b.imag) / denom); + } + } + #endif + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_neg_float(__pyx_t_float_complex a) { + __pyx_t_float_complex z; + z.real = -a.real; + z.imag = -a.imag; + return z; + } + static CYTHON_INLINE int __Pyx_c_is_zero_float(__pyx_t_float_complex a) { + return (a.real == 0) && (a.imag == 0); + } + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_conj_float(__pyx_t_float_complex a) { + __pyx_t_float_complex z; + z.real = a.real; + z.imag = -a.imag; + return z; + } + #if 1 + static CYTHON_INLINE float __Pyx_c_abs_float(__pyx_t_float_complex z) { + #if !defined(HAVE_HYPOT) || defined(_MSC_VER) + return sqrtf(z.real*z.real + z.imag*z.imag); + #else + return hypotf(z.real, z.imag); + #endif + } + static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_pow_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { + __pyx_t_float_complex z; + float r, lnr, theta, z_r, z_theta; + if (b.imag == 0 && b.real == (int)b.real) { + if (b.real < 0) { + float denom = a.real * a.real + a.imag * a.imag; + a.real = a.real / denom; + a.imag = -a.imag / denom; + b.real = -b.real; + } + switch ((int)b.real) { + case 0: + z.real = 1; + z.imag = 0; + return z; + case 1: + return a; + case 2: + return __Pyx_c_prod_float(a, a); + case 3: + z = __Pyx_c_prod_float(a, a); + return __Pyx_c_prod_float(z, a); + case 4: + z = __Pyx_c_prod_float(a, a); + return __Pyx_c_prod_float(z, z); + } + } + if (a.imag == 0) { + if (a.real == 0) { + return a; + } else if (b.imag == 0) { + z.real = powf(a.real, b.real); + z.imag = 0; + return z; + } else if (a.real > 0) { + r = a.real; + theta = 0; + } else { + r = -a.real; + theta = atan2f(0.0, -1.0); + } + } else { + r = __Pyx_c_abs_float(a); + theta = atan2f(a.imag, a.real); + } + lnr = logf(r); + z_r = expf(lnr * b.real - theta * b.imag); + z_theta = theta * b.real + lnr * b.imag; + z.real = z_r * cosf(z_theta); + z.imag = z_r * sinf(z_theta); + return z; + } + #endif +#endif + +/* Declarations */ + #if CYTHON_CCOMPLEX + #ifdef __cplusplus + static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) { + return ::std::complex< double >(x, y); + } + #else + static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) { + return x + y*(__pyx_t_double_complex)_Complex_I; + } + #endif +#else + static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) { + __pyx_t_double_complex z; + z.real = x; + z.imag = y; + return z; + } +#endif + +/* Arithmetic */ + #if CYTHON_CCOMPLEX +#else + static CYTHON_INLINE int __Pyx_c_eq_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { + return (a.real == b.real) && (a.imag == b.imag); + } + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_sum_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { + __pyx_t_double_complex z; + z.real = a.real + b.real; + z.imag = a.imag + b.imag; + return z; + } + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_diff_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { + __pyx_t_double_complex z; + z.real = a.real - b.real; + z.imag = a.imag - b.imag; + return z; + } + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_prod_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { + __pyx_t_double_complex z; + z.real = a.real * b.real - a.imag * b.imag; + z.imag = a.real * b.imag + a.imag * b.real; + return z; + } + #if 1 + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_quot_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { + if (b.imag == 0) { + return __pyx_t_double_complex_from_parts(a.real / b.real, a.imag / b.real); + } else if (fabs(b.real) >= fabs(b.imag)) { + if (b.real == 0 && b.imag == 0) { + return __pyx_t_double_complex_from_parts(a.real / b.real, a.imag / b.imag); + } else { + double r = b.imag / b.real; + double s = (double)(1.0) / (b.real + b.imag * r); + return __pyx_t_double_complex_from_parts( + (a.real + a.imag * r) * s, (a.imag - a.real * r) * s); + } + } else { + double r = b.real / b.imag; + double s = (double)(1.0) / (b.imag + b.real * r); + return __pyx_t_double_complex_from_parts( + (a.real * r + a.imag) * s, (a.imag * r - a.real) * s); + } + } + #else + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_quot_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { + if (b.imag == 0) { + return __pyx_t_double_complex_from_parts(a.real / b.real, a.imag / b.real); + } else { + double denom = b.real * b.real + b.imag * b.imag; + return __pyx_t_double_complex_from_parts( + (a.real * b.real + a.imag * b.imag) / denom, + (a.imag * b.real - a.real * b.imag) / denom); + } + } + #endif + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_neg_double(__pyx_t_double_complex a) { + __pyx_t_double_complex z; + z.real = -a.real; + z.imag = -a.imag; + return z; + } + static CYTHON_INLINE int __Pyx_c_is_zero_double(__pyx_t_double_complex a) { + return (a.real == 0) && (a.imag == 0); + } + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_conj_double(__pyx_t_double_complex a) { + __pyx_t_double_complex z; + z.real = a.real; + z.imag = -a.imag; + return z; + } + #if 1 + static CYTHON_INLINE double __Pyx_c_abs_double(__pyx_t_double_complex z) { + #if !defined(HAVE_HYPOT) || defined(_MSC_VER) + return sqrt(z.real*z.real + z.imag*z.imag); + #else + return hypot(z.real, z.imag); + #endif + } + static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_pow_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { + __pyx_t_double_complex z; + double r, lnr, theta, z_r, z_theta; + if (b.imag == 0 && b.real == (int)b.real) { + if (b.real < 0) { + double denom = a.real * a.real + a.imag * a.imag; + a.real = a.real / denom; + a.imag = -a.imag / denom; + b.real = -b.real; + } + switch ((int)b.real) { + case 0: + z.real = 1; + z.imag = 0; + return z; + case 1: + return a; + case 2: + return __Pyx_c_prod_double(a, a); + case 3: + z = __Pyx_c_prod_double(a, a); + return __Pyx_c_prod_double(z, a); + case 4: + z = __Pyx_c_prod_double(a, a); + return __Pyx_c_prod_double(z, z); + } + } + if (a.imag == 0) { + if (a.real == 0) { + return a; + } else if (b.imag == 0) { + z.real = pow(a.real, b.real); + z.imag = 0; + return z; + } else if (a.real > 0) { + r = a.real; + theta = 0; + } else { + r = -a.real; + theta = atan2(0.0, -1.0); + } + } else { + r = __Pyx_c_abs_double(a); + theta = atan2(a.imag, a.real); + } + lnr = log(r); + z_r = exp(lnr * b.real - theta * b.imag); + z_theta = theta * b.real + lnr * b.imag; + z.real = z_r * cos(z_theta); + z.imag = z_r * sin(z_theta); + return z; + } + #endif +#endif + +/* CIntToPy */ + static CYTHON_INLINE PyObject* __Pyx_PyInt_From_unsigned_int(unsigned int value) { +#ifdef __Pyx_HAS_GCC_DIAGNOSTIC +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wconversion" +#endif + const unsigned int neg_one = (unsigned int) -1, const_zero = (unsigned int) 0; +#ifdef __Pyx_HAS_GCC_DIAGNOSTIC +#pragma GCC diagnostic pop +#endif + const int is_unsigned = neg_one > const_zero; + if (is_unsigned) { + if (sizeof(unsigned int) < sizeof(long)) { + return PyInt_FromLong((long) value); + } else if (sizeof(unsigned int) <= sizeof(unsigned long)) { + return PyLong_FromUnsignedLong((unsigned long) value); +#ifdef HAVE_LONG_LONG + } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { + return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); +#endif + } + } else { + if (sizeof(unsigned int) <= sizeof(long)) { + return PyInt_FromLong((long) value); +#ifdef HAVE_LONG_LONG + } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { + return PyLong_FromLongLong((PY_LONG_LONG) value); +#endif + } + } + { + int one = 1; int little = (int)*(unsigned char *)&one; + unsigned char *bytes = (unsigned char *)&value; + return _PyLong_FromByteArray(bytes, sizeof(unsigned int), + little, !is_unsigned); + } +} + +/* CIntFromPy */ + static CYTHON_INLINE unsigned int __Pyx_PyInt_As_unsigned_int(PyObject *x) { +#ifdef __Pyx_HAS_GCC_DIAGNOSTIC +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wconversion" +#endif + const unsigned int neg_one = (unsigned int) -1, const_zero = (unsigned int) 0; +#ifdef __Pyx_HAS_GCC_DIAGNOSTIC +#pragma GCC diagnostic pop +#endif + const int is_unsigned = neg_one > const_zero; +#if PY_MAJOR_VERSION < 3 + if (likely(PyInt_Check(x))) { + if (sizeof(unsigned int) < sizeof(long)) { + __PYX_VERIFY_RETURN_INT(unsigned int, long, PyInt_AS_LONG(x)) + } else { + long val = PyInt_AS_LONG(x); + if (is_unsigned && unlikely(val < 0)) { + goto raise_neg_overflow; + } + return (unsigned int) val; + } + } else +#endif + if (likely(PyLong_Check(x))) { + if (is_unsigned) { +#if CYTHON_USE_PYLONG_INTERNALS + const digit* digits = ((PyLongObject*)x)->ob_digit; + switch (Py_SIZE(x)) { + case 0: return (unsigned int) 0; + case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, digits[0]) + case 2: + if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(unsigned int) >= 2 * PyLong_SHIFT) { + return (unsigned int) (((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); + } + } + break; + case 3: + if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(unsigned int) >= 3 * PyLong_SHIFT) { + return (unsigned int) (((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); + } + } + break; + case 4: + if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(unsigned int) >= 4 * PyLong_SHIFT) { + return (unsigned int) (((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0])); + } + } + break; + } +#endif +#if CYTHON_COMPILING_IN_CPYTHON + if (unlikely(Py_SIZE(x) < 0)) { + goto raise_neg_overflow; + } +#else + { + int result = PyObject_RichCompareBool(x, Py_False, Py_LT); + if (unlikely(result < 0)) + return (unsigned int) -1; + if (unlikely(result == 1)) + goto raise_neg_overflow; + } +#endif + if (sizeof(unsigned int) <= sizeof(unsigned long)) { + __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned long, PyLong_AsUnsignedLong(x)) +#ifdef HAVE_LONG_LONG + } else if (sizeof(unsigned int) <= sizeof(unsigned PY_LONG_LONG)) { + __PYX_VERIFY_RETURN_INT_EXC(unsigned int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) +#endif + } + } else { +#if CYTHON_USE_PYLONG_INTERNALS + const digit* digits = ((PyLongObject*)x)->ob_digit; + switch (Py_SIZE(x)) { + case 0: return (unsigned int) 0; + case -1: __PYX_VERIFY_RETURN_INT(unsigned int, sdigit, (sdigit) (-(sdigit)digits[0])) + case 1: __PYX_VERIFY_RETURN_INT(unsigned int, digit, +digits[0]) + case -2: + if (8 * sizeof(unsigned int) - 1 > 1 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { + return (unsigned int) (((unsigned int)-1)*(((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); + } + } + break; + case 2: + if (8 * sizeof(unsigned int) > 1 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { + return (unsigned int) ((((((unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); + } + } + break; + case -3: + if (8 * sizeof(unsigned int) - 1 > 2 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { + return (unsigned int) (((unsigned int)-1)*(((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); + } + } + break; + case 3: + if (8 * sizeof(unsigned int) > 2 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { + return (unsigned int) ((((((((unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); + } + } + break; + case -4: + if (8 * sizeof(unsigned int) - 1 > 3 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(unsigned int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { + return (unsigned int) (((unsigned int)-1)*(((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); + } + } + break; + case 4: + if (8 * sizeof(unsigned int) > 3 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(unsigned int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(unsigned int) - 1 > 4 * PyLong_SHIFT) { + return (unsigned int) ((((((((((unsigned int)digits[3]) << PyLong_SHIFT) | (unsigned int)digits[2]) << PyLong_SHIFT) | (unsigned int)digits[1]) << PyLong_SHIFT) | (unsigned int)digits[0]))); + } + } + break; + } +#endif + if (sizeof(unsigned int) <= sizeof(long)) { + __PYX_VERIFY_RETURN_INT_EXC(unsigned int, long, PyLong_AsLong(x)) +#ifdef HAVE_LONG_LONG + } else if (sizeof(unsigned int) <= sizeof(PY_LONG_LONG)) { + __PYX_VERIFY_RETURN_INT_EXC(unsigned int, PY_LONG_LONG, PyLong_AsLongLong(x)) +#endif + } + } + { +#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) + PyErr_SetString(PyExc_RuntimeError, + "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); +#else + unsigned int val; + PyObject *v = __Pyx_PyNumber_IntOrLong(x); + #if PY_MAJOR_VERSION < 3 + if (likely(v) && !PyLong_Check(v)) { + PyObject *tmp = v; + v = PyNumber_Long(tmp); + Py_DECREF(tmp); + } + #endif + if (likely(v)) { + int one = 1; int is_little = (int)*(unsigned char *)&one; + unsigned char *bytes = (unsigned char *)&val; + int ret = _PyLong_AsByteArray((PyLongObject *)v, + bytes, sizeof(val), + is_little, !is_unsigned); + Py_DECREF(v); + if (likely(!ret)) + return val; + } +#endif + return (unsigned int) -1; + } + } else { + unsigned int val; + PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); + if (!tmp) return (unsigned int) -1; + val = __Pyx_PyInt_As_unsigned_int(tmp); + Py_DECREF(tmp); + return val; + } +raise_overflow: + PyErr_SetString(PyExc_OverflowError, + "value too large to convert to unsigned int"); + return (unsigned int) -1; +raise_neg_overflow: + PyErr_SetString(PyExc_OverflowError, + "can't convert negative value to unsigned int"); + return (unsigned int) -1; +} + +/* CIntToPy */ + static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) { +#ifdef __Pyx_HAS_GCC_DIAGNOSTIC +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wconversion" +#endif + const long neg_one = (long) -1, const_zero = (long) 0; +#ifdef __Pyx_HAS_GCC_DIAGNOSTIC +#pragma GCC diagnostic pop +#endif + const int is_unsigned = neg_one > const_zero; + if (is_unsigned) { + if (sizeof(long) < sizeof(long)) { + return PyInt_FromLong((long) value); + } else if (sizeof(long) <= sizeof(unsigned long)) { + return PyLong_FromUnsignedLong((unsigned long) value); +#ifdef HAVE_LONG_LONG + } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { + return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); +#endif + } + } else { + if (sizeof(long) <= sizeof(long)) { + return PyInt_FromLong((long) value); +#ifdef HAVE_LONG_LONG + } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { + return PyLong_FromLongLong((PY_LONG_LONG) value); +#endif + } + } + { + int one = 1; int little = (int)*(unsigned char *)&one; + unsigned char *bytes = (unsigned char *)&value; + return _PyLong_FromByteArray(bytes, sizeof(long), + little, !is_unsigned); + } +} + +/* CIntFromPy */ + static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) { +#ifdef __Pyx_HAS_GCC_DIAGNOSTIC +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wconversion" +#endif + const long neg_one = (long) -1, const_zero = (long) 0; +#ifdef __Pyx_HAS_GCC_DIAGNOSTIC +#pragma GCC diagnostic pop +#endif + const int is_unsigned = neg_one > const_zero; +#if PY_MAJOR_VERSION < 3 + if (likely(PyInt_Check(x))) { + if (sizeof(long) < sizeof(long)) { + __PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x)) + } else { + long val = PyInt_AS_LONG(x); + if (is_unsigned && unlikely(val < 0)) { + goto raise_neg_overflow; + } + return (long) val; + } + } else +#endif + if (likely(PyLong_Check(x))) { + if (is_unsigned) { +#if CYTHON_USE_PYLONG_INTERNALS + const digit* digits = ((PyLongObject*)x)->ob_digit; + switch (Py_SIZE(x)) { + case 0: return (long) 0; + case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0]) + case 2: + if (8 * sizeof(long) > 1 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) { + return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); + } + } + break; + case 3: + if (8 * sizeof(long) > 2 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) { + return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); + } + } + break; + case 4: + if (8 * sizeof(long) > 3 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) { + return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); + } + } + break; + } +#endif +#if CYTHON_COMPILING_IN_CPYTHON + if (unlikely(Py_SIZE(x) < 0)) { + goto raise_neg_overflow; + } +#else + { + int result = PyObject_RichCompareBool(x, Py_False, Py_LT); + if (unlikely(result < 0)) + return (long) -1; + if (unlikely(result == 1)) + goto raise_neg_overflow; + } +#endif + if (sizeof(long) <= sizeof(unsigned long)) { + __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x)) +#ifdef HAVE_LONG_LONG + } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { + __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) +#endif + } + } else { +#if CYTHON_USE_PYLONG_INTERNALS + const digit* digits = ((PyLongObject*)x)->ob_digit; + switch (Py_SIZE(x)) { + case 0: return (long) 0; + case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, (sdigit) (-(sdigit)digits[0])) + case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0]) + case -2: + if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { + return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); + } + } + break; + case 2: + if (8 * sizeof(long) > 1 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { + return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); + } + } + break; + case -3: + if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { + return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); + } + } + break; + case 3: + if (8 * sizeof(long) > 2 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { + return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); + } + } + break; + case -4: + if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { + return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); + } + } + break; + case 4: + if (8 * sizeof(long) > 3 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { + return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); + } + } + break; + } +#endif + if (sizeof(long) <= sizeof(long)) { + __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x)) +#ifdef HAVE_LONG_LONG + } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { + __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x)) +#endif + } + } + { +#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) + PyErr_SetString(PyExc_RuntimeError, + "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); +#else + long val; + PyObject *v = __Pyx_PyNumber_IntOrLong(x); + #if PY_MAJOR_VERSION < 3 + if (likely(v) && !PyLong_Check(v)) { + PyObject *tmp = v; + v = PyNumber_Long(tmp); + Py_DECREF(tmp); + } + #endif + if (likely(v)) { + int one = 1; int is_little = (int)*(unsigned char *)&one; + unsigned char *bytes = (unsigned char *)&val; + int ret = _PyLong_AsByteArray((PyLongObject *)v, + bytes, sizeof(val), + is_little, !is_unsigned); + Py_DECREF(v); + if (likely(!ret)) + return val; + } +#endif + return (long) -1; + } + } else { + long val; + PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); + if (!tmp) return (long) -1; + val = __Pyx_PyInt_As_long(tmp); + Py_DECREF(tmp); + return val; + } +raise_overflow: + PyErr_SetString(PyExc_OverflowError, + "value too large to convert to long"); + return (long) -1; +raise_neg_overflow: + PyErr_SetString(PyExc_OverflowError, + "can't convert negative value to long"); + return (long) -1; +} + +/* CIntFromPy */ + static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) { +#ifdef __Pyx_HAS_GCC_DIAGNOSTIC +#pragma GCC diagnostic push +#pragma GCC diagnostic ignored "-Wconversion" +#endif + const int neg_one = (int) -1, const_zero = (int) 0; +#ifdef __Pyx_HAS_GCC_DIAGNOSTIC +#pragma GCC diagnostic pop +#endif + const int is_unsigned = neg_one > const_zero; +#if PY_MAJOR_VERSION < 3 + if (likely(PyInt_Check(x))) { + if (sizeof(int) < sizeof(long)) { + __PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x)) + } else { + long val = PyInt_AS_LONG(x); + if (is_unsigned && unlikely(val < 0)) { + goto raise_neg_overflow; + } + return (int) val; + } + } else +#endif + if (likely(PyLong_Check(x))) { + if (is_unsigned) { +#if CYTHON_USE_PYLONG_INTERNALS + const digit* digits = ((PyLongObject*)x)->ob_digit; + switch (Py_SIZE(x)) { + case 0: return (int) 0; + case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0]) + case 2: + if (8 * sizeof(int) > 1 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) { + return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); + } + } + break; + case 3: + if (8 * sizeof(int) > 2 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) { + return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); + } + } + break; + case 4: + if (8 * sizeof(int) > 3 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) { + return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); + } + } + break; + } +#endif +#if CYTHON_COMPILING_IN_CPYTHON + if (unlikely(Py_SIZE(x) < 0)) { + goto raise_neg_overflow; + } +#else + { + int result = PyObject_RichCompareBool(x, Py_False, Py_LT); + if (unlikely(result < 0)) + return (int) -1; + if (unlikely(result == 1)) + goto raise_neg_overflow; + } +#endif + if (sizeof(int) <= sizeof(unsigned long)) { + __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x)) +#ifdef HAVE_LONG_LONG + } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { + __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) +#endif + } + } else { +#if CYTHON_USE_PYLONG_INTERNALS + const digit* digits = ((PyLongObject*)x)->ob_digit; + switch (Py_SIZE(x)) { + case 0: return (int) 0; + case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, (sdigit) (-(sdigit)digits[0])) + case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0]) + case -2: + if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { + return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); + } + } + break; + case 2: + if (8 * sizeof(int) > 1 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { + return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); + } + } + break; + case -3: + if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { + return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); + } + } + break; + case 3: + if (8 * sizeof(int) > 2 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { + return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); + } + } + break; + case -4: + if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { + return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); + } + } + break; + case 4: + if (8 * sizeof(int) > 3 * PyLong_SHIFT) { + if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { + __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) + } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { + return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); + } + } + break; + } +#endif + if (sizeof(int) <= sizeof(long)) { + __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x)) +#ifdef HAVE_LONG_LONG + } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { + __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x)) +#endif + } + } + { +#if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) + PyErr_SetString(PyExc_RuntimeError, + "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); +#else + int val; + PyObject *v = __Pyx_PyNumber_IntOrLong(x); + #if PY_MAJOR_VERSION < 3 + if (likely(v) && !PyLong_Check(v)) { + PyObject *tmp = v; + v = PyNumber_Long(tmp); + Py_DECREF(tmp); + } + #endif + if (likely(v)) { + int one = 1; int is_little = (int)*(unsigned char *)&one; + unsigned char *bytes = (unsigned char *)&val; + int ret = _PyLong_AsByteArray((PyLongObject *)v, + bytes, sizeof(val), + is_little, !is_unsigned); + Py_DECREF(v); + if (likely(!ret)) + return val; + } +#endif + return (int) -1; + } + } else { + int val; + PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); + if (!tmp) return (int) -1; + val = __Pyx_PyInt_As_int(tmp); + Py_DECREF(tmp); + return val; + } +raise_overflow: + PyErr_SetString(PyExc_OverflowError, + "value too large to convert to int"); + return (int) -1; +raise_neg_overflow: + PyErr_SetString(PyExc_OverflowError, + "can't convert negative value to int"); + return (int) -1; +} + +/* FastTypeChecks */ + #if CYTHON_COMPILING_IN_CPYTHON +static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) { + while (a) { + a = a->tp_base; + if (a == b) + return 1; + } + return b == &PyBaseObject_Type; +} +static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) { + PyObject *mro; + if (a == b) return 1; + mro = a->tp_mro; + if (likely(mro)) { + Py_ssize_t i, n; + n = PyTuple_GET_SIZE(mro); + for (i = 0; i < n; i++) { + if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b) + return 1; + } + return 0; + } + return __Pyx_InBases(a, b); +} +#if PY_MAJOR_VERSION == 2 +static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) { + PyObject *exception, *value, *tb; + int res; + __Pyx_PyThreadState_declare + __Pyx_PyThreadState_assign + __Pyx_ErrFetch(&exception, &value, &tb); + res = exc_type1 ? PyObject_IsSubclass(err, exc_type1) : 0; + if (unlikely(res == -1)) { + PyErr_WriteUnraisable(err); + res = 0; + } + if (!res) { + res = PyObject_IsSubclass(err, exc_type2); + if (unlikely(res == -1)) { + PyErr_WriteUnraisable(err); + res = 0; + } + } + __Pyx_ErrRestore(exception, value, tb); + return res; +} +#else +static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) { + int res = exc_type1 ? __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type1) : 0; + if (!res) { + res = __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2); + } + return res; +} +#endif +static int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { + Py_ssize_t i, n; + assert(PyExceptionClass_Check(exc_type)); + n = PyTuple_GET_SIZE(tuple); +#if PY_MAJOR_VERSION >= 3 + for (i=0; i '9'); + break; + } + if (rt_from_call[i] != ctversion[i]) { + same = 0; + break; + } + } + if (!same) { + char rtversion[5] = {'\0'}; + char message[200]; + for (i=0; i<4; ++i) { + if (rt_from_call[i] == '.') { + if (found_dot) break; + found_dot = 1; + } else if (rt_from_call[i] < '0' || rt_from_call[i] > '9') { + break; + } + rtversion[i] = rt_from_call[i]; + } + PyOS_snprintf(message, sizeof(message), + "compiletime version %s of module '%.100s' " + "does not match runtime version %s", + ctversion, __Pyx_MODULE_NAME, rtversion); + return PyErr_WarnEx(NULL, message, 1); + } + return 0; +} + +/* InitStrings */ + static int __Pyx_InitStrings(__Pyx_StringTabEntry *t) { + while (t->p) { + #if PY_MAJOR_VERSION < 3 + if (t->is_unicode) { + *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); + } else if (t->intern) { + *t->p = PyString_InternFromString(t->s); + } else { + *t->p = PyString_FromStringAndSize(t->s, t->n - 1); + } + #else + if (t->is_unicode | t->is_str) { + if (t->intern) { + *t->p = PyUnicode_InternFromString(t->s); + } else if (t->encoding) { + *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); + } else { + *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); + } + } else { + *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); + } + #endif + if (!*t->p) + return -1; + if (PyObject_Hash(*t->p) == -1) + return -1; + ++t; + } + return 0; +} + +static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) { + return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str)); +} +static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) { + Py_ssize_t ignore; + return __Pyx_PyObject_AsStringAndSize(o, &ignore); +} +#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT +#if !CYTHON_PEP393_ENABLED +static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { + char* defenc_c; + PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL); + if (!defenc) return NULL; + defenc_c = PyBytes_AS_STRING(defenc); +#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII + { + char* end = defenc_c + PyBytes_GET_SIZE(defenc); + char* c; + for (c = defenc_c; c < end; c++) { + if ((unsigned char) (*c) >= 128) { + PyUnicode_AsASCIIString(o); + return NULL; + } + } + } +#endif + *length = PyBytes_GET_SIZE(defenc); + return defenc_c; +} +#else +static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { + if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL; +#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII + if (likely(PyUnicode_IS_ASCII(o))) { + *length = PyUnicode_GET_LENGTH(o); + return PyUnicode_AsUTF8(o); + } else { + PyUnicode_AsASCIIString(o); + return NULL; + } +#else + return PyUnicode_AsUTF8AndSize(o, length); +#endif +} +#endif +#endif +static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) { +#if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT + if ( +#if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII + __Pyx_sys_getdefaultencoding_not_ascii && +#endif + PyUnicode_Check(o)) { + return __Pyx_PyUnicode_AsStringAndSize(o, length); + } else +#endif +#if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE)) + if (PyByteArray_Check(o)) { + *length = PyByteArray_GET_SIZE(o); + return PyByteArray_AS_STRING(o); + } else +#endif + { + char* result; + int r = PyBytes_AsStringAndSize(o, &result, length); + if (unlikely(r < 0)) { + return NULL; + } else { + return result; + } + } +} +static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { + int is_true = x == Py_True; + if (is_true | (x == Py_False) | (x == Py_None)) return is_true; + else return PyObject_IsTrue(x); +} +static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { + int retval; + if (unlikely(!x)) return -1; + retval = __Pyx_PyObject_IsTrue(x); + Py_DECREF(x); + return retval; +} +static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) { +#if PY_MAJOR_VERSION >= 3 + if (PyLong_Check(result)) { + if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1, + "__int__ returned non-int (type %.200s). " + "The ability to return an instance of a strict subclass of int " + "is deprecated, and may be removed in a future version of Python.", + Py_TYPE(result)->tp_name)) { + Py_DECREF(result); + return NULL; + } + return result; + } +#endif + PyErr_Format(PyExc_TypeError, + "__%.4s__ returned non-%.4s (type %.200s)", + type_name, type_name, Py_TYPE(result)->tp_name); + Py_DECREF(result); + return NULL; +} +static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) { +#if CYTHON_USE_TYPE_SLOTS + PyNumberMethods *m; +#endif + const char *name = NULL; + PyObject *res = NULL; +#if PY_MAJOR_VERSION < 3 + if (likely(PyInt_Check(x) || PyLong_Check(x))) +#else + if (likely(PyLong_Check(x))) +#endif + return __Pyx_NewRef(x); +#if CYTHON_USE_TYPE_SLOTS + m = Py_TYPE(x)->tp_as_number; + #if PY_MAJOR_VERSION < 3 + if (m && m->nb_int) { + name = "int"; + res = m->nb_int(x); + } + else if (m && m->nb_long) { + name = "long"; + res = m->nb_long(x); + } + #else + if (likely(m && m->nb_int)) { + name = "int"; + res = m->nb_int(x); + } + #endif +#else + if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) { + res = PyNumber_Int(x); + } +#endif + if (likely(res)) { +#if PY_MAJOR_VERSION < 3 + if (unlikely(!PyInt_Check(res) && !PyLong_Check(res))) { +#else + if (unlikely(!PyLong_CheckExact(res))) { +#endif + return __Pyx_PyNumber_IntOrLongWrongResultType(res, name); + } + } + else if (!PyErr_Occurred()) { + PyErr_SetString(PyExc_TypeError, + "an integer is required"); + } + return res; +} +static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { + Py_ssize_t ival; + PyObject *x; +#if PY_MAJOR_VERSION < 3 + if (likely(PyInt_CheckExact(b))) { + if (sizeof(Py_ssize_t) >= sizeof(long)) + return PyInt_AS_LONG(b); + else + return PyInt_AsSsize_t(b); + } +#endif + if (likely(PyLong_CheckExact(b))) { + #if CYTHON_USE_PYLONG_INTERNALS + const digit* digits = ((PyLongObject*)b)->ob_digit; + const Py_ssize_t size = Py_SIZE(b); + if (likely(__Pyx_sst_abs(size) <= 1)) { + ival = likely(size) ? digits[0] : 0; + if (size == -1) ival = -ival; + return ival; + } else { + switch (size) { + case 2: + if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { + return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); + } + break; + case -2: + if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { + return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); + } + break; + case 3: + if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { + return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); + } + break; + case -3: + if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { + return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); + } + break; + case 4: + if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { + return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); + } + break; + case -4: + if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { + return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); + } + break; + } + } + #endif + return PyLong_AsSsize_t(b); + } + x = PyNumber_Index(b); + if (!x) return -1; + ival = PyInt_AsSsize_t(x); + Py_DECREF(x); + return ival; +} +static CYTHON_INLINE Py_hash_t __Pyx_PyIndex_AsHash_t(PyObject* o) { + if (sizeof(Py_hash_t) == sizeof(Py_ssize_t)) { + return (Py_hash_t) __Pyx_PyIndex_AsSsize_t(o); +#if PY_MAJOR_VERSION < 3 + } else if (likely(PyInt_CheckExact(o))) { + return PyInt_AS_LONG(o); +#endif + } else { + Py_ssize_t ival; + PyObject *x; + x = PyNumber_Index(o); + if (!x) return -1; + ival = PyInt_AsLong(x); + Py_DECREF(x); + return ival; + } +} +static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { + return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False); +} +static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { + return PyInt_FromSize_t(ival); +} + + +#endif /* Py_PYTHON_H */ diff --git a/contrib/Retinaface/evaluate/box_overlaps.pyx b/contrib/Retinaface/evaluate/box_overlaps.pyx new file mode 100644 index 0000000000000000000000000000000000000000..ad326ba1df99100255b9c2c1812f7d351d8fdb4c --- /dev/null +++ b/contrib/Retinaface/evaluate/box_overlaps.pyx @@ -0,0 +1,55 @@ +# -------------------------------------------------------- +# Fast R-CNN +# Copyright (c) 2015 Microsoft +# Licensed under The MIT License [see LICENSE for details] +# Written by Sergey Karayev +# -------------------------------------------------------- + +cimport cython +import numpy as np +cimport numpy as np + +DTYPE = np.float +ctypedef np.float_t DTYPE_t + +def bbox_overlaps( + np.ndarray[DTYPE_t, ndim=2] boxes, + np.ndarray[DTYPE_t, ndim=2] query_boxes): + """ + Parameters + ---------- + boxes: (N, 4) ndarray of float + query_boxes: (K, 4) ndarray of float + Returns + ------- + overlaps: (N, K) ndarray of overlap between boxes and query_boxes + """ + cdef unsigned int N = boxes.shape[0] + cdef unsigned int K = query_boxes.shape[0] + cdef np.ndarray[DTYPE_t, ndim=2] overlaps = np.zeros((N, K), dtype=DTYPE) + cdef DTYPE_t iw, ih, box_area + cdef DTYPE_t ua + cdef unsigned int k, n + for k in range(K): + box_area = ( + (query_boxes[k, 2] - query_boxes[k, 0] + 1) * + (query_boxes[k, 3] - query_boxes[k, 1] + 1) + ) + for n in range(N): + iw = ( + min(boxes[n, 2], query_boxes[k, 2]) - + max(boxes[n, 0], query_boxes[k, 0]) + 1 + ) + if iw > 0: + ih = ( + min(boxes[n, 3], query_boxes[k, 3]) - + max(boxes[n, 1], query_boxes[k, 1]) + 1 + ) + if ih > 0: + ua = float( + (boxes[n, 2] - boxes[n, 0] + 1) * + (boxes[n, 3] - boxes[n, 1] + 1) + + box_area - iw * ih + ) + overlaps[n, k] = iw * ih / ua + return overlaps \ No newline at end of file diff --git a/contrib/Retinaface/evaluate/evaluation.py b/contrib/Retinaface/evaluate/evaluation.py new file mode 100644 index 0000000000000000000000000000000000000000..1fd2ffe12605d6bacd8663802ace91f65c0acd8e --- /dev/null +++ b/contrib/Retinaface/evaluate/evaluation.py @@ -0,0 +1,357 @@ +#-*-coding:utf-8-*- +from __future__ import division +""" +WiderFace evaluation code +author: wondervictor +mail: tianhengcheng@gmail.com +copyright@wondervictor +""" +import os +import tqdm +import pickle +import argparse +import numpy as np +from scipy.io import loadmat +from bbox import bbox_overlaps +from IPython import embed + + +def get_gt_boxes(gt_dir): + """ gt dir: (wider_face_val.mat, wider_easy_val.mat, wider_medium_val.mat, wider_hard_val.mat)""" + + gt_mat = loadmat(os.path.join(gt_dir, 'wider_face_val.mat')) + hard_mat = loadmat(os.path.join(gt_dir, 'wider_hard_val.mat')) + medium_mat = loadmat(os.path.join(gt_dir, 'wider_medium_val.mat')) + easy_mat = loadmat(os.path.join(gt_dir, 'wider_easy_val.mat')) + + facebox_list = gt_mat['face_bbx_list'] + event_list = gt_mat['event_list'] + file_list = gt_mat['file_list'] + + hard_gt_list = hard_mat['gt_list'] + medium_gt_list = medium_mat['gt_list'] + easy_gt_list = easy_mat['gt_list'] + + return facebox_list, event_list, file_list, hard_gt_list, medium_gt_list, easy_gt_list + + +def get_gt_boxes_from_txt(gt_path, cache_dir): + + cache_file = os.path.join(cache_dir, 'gt_cache.pkl') + if os.path.exists(cache_file): + f = open(cache_file, 'rb') + boxes = pickle.load(f) + f.close() + return boxes + + f = open(gt_path, 'r') + state = 0 + lines = f.readlines() + lines = list(map(lambda x: x.rstrip('\r\n'), lines)) + boxes = {} + f.close() + current_boxes = [] + current_name = None + for line in lines: + if state == 0 and '--' in line: + state = 1 + current_name = line + continue + if state == 1: + state = 2 + continue + + if state == 2 and '--' in line: + state = 1 + boxes[current_name] = np.array(current_boxes).astype('float32') + current_name = line + current_boxes = [] + continue + + if state == 2: + box = [float(x) for x in line.split(' ')[:4]] + current_boxes.append(box) + continue + + f = open(cache_file, 'wb') + pickle.dump(boxes, f) + f.close() + return boxes + + +def read_pred_file(filepath): + + with open(filepath, 'r') as f: + lines = f.readlines() + img_file = lines[0].rstrip('\n\r') + lines = lines[2:] + + boxes = np.array(list(map(lambda x: [float(a) for a in x.rstrip('\r\n').split(' ')], lines))).astype('float') + return img_file.split('/')[-1], boxes + + +def get_preds(pred_dir): + events = os.listdir(pred_dir) + boxes = dict() + pbar = tqdm.tqdm(events) + + for event in pbar: + pbar.set_description('Reading Predictions ') + event_dir = os.path.join(pred_dir, event) + event_images = os.listdir(event_dir) + current_event = dict() + for imgtxt in event_images: + imgname, _boxes = read_pred_file(os.path.join(event_dir, imgtxt)) + current_event[imgname.rstrip('.jpg')] = _boxes + boxes[event] = current_event + return boxes + + +def norm_score(pred): + """ norm score + pred {key: [[x1,y1,x2,y2,s]]} + """ + + max_score = 0 + min_score = 1 + + for _, k in pred.items(): + for _, v in k.items(): + if len(v) == 0: + continue + _min = np.min(v[:, -1]) + _max = np.max(v[:, -1]) + max_score = max(_max, max_score) + min_score = min(_min, min_score) + + diff = max_score - min_score + for _, k in pred.items(): + for _, v in k.items(): + if len(v) == 0: + continue + v[:, -1] = (v[:, -1] - min_score)/diff + + +def image_eval(pred, gt, ignore, iou_thresh): + """ single image evaluation + pred: Nx5 + gt: Nx4 + ignore: + """ + _pred = pred.copy() + _gt = gt.copy() + pred_recall = np.zeros(_pred.shape[0]) + recall_list = np.zeros(_gt.shape[0]) + proposal_list = np.ones(_pred.shape[0]) + + _pred[:, 2] = _pred[:, 2] + _pred[:, 0] + _pred[:, 3] = _pred[:, 3] + _pred[:, 1] + _gt[:, 2] = _gt[:, 2] + _gt[:, 0] + _gt[:, 3] = _gt[:, 3] + _gt[:, 1] + + overlaps = bbox_overlaps(_pred[:, :4], _gt) + + for h in range(_pred.shape[0]): + + gt_overlap = overlaps[h] + max_overlap, max_idx = gt_overlap.max(), gt_overlap.argmax() + if max_overlap >= iou_thresh: + if ignore[max_idx] == 0: + recall_list[max_idx] = -1 + proposal_list[h] = -1 + elif recall_list[max_idx] == 0: + recall_list[max_idx] = 1 + + r_keep_index = np.where(recall_list == 1)[0] + pred_recall[h] = len(r_keep_index) + return pred_recall, proposal_list + + +def img_pr_info(thresh_num, pred_info, proposal_list, pred_recall): + pr_info = np.zeros((thresh_num, 2)).astype('float') + for t in range(thresh_num): + + thresh = 1 - (t+1)/thresh_num + r_index = np.where(pred_info[:, 4] >= thresh)[0] + if len(r_index) == 0: + pr_info[t, 0] = 0 + pr_info[t, 1] = 0 + else: + r_index = r_index[-1] + p_index = np.where(proposal_list[:r_index+1] == 1)[0] + pr_info[t, 0] = len(p_index) + pr_info[t, 1] = pred_recall[r_index] + return pr_info + + +def dataset_pr_info(thresh_num, pr_curve, count_face): + _pr_curve = np.zeros((thresh_num, 2)) + for i in range(thresh_num): + _pr_curve[i, 0] = pr_curve[i, 1] / pr_curve[i, 0] + _pr_curve[i, 1] = pr_curve[i, 1] / count_face + return _pr_curve + + +def voc_ap(rec, prec): + + # correct AP calculation + # first append sentinel values at the end + mrec = np.concatenate(([0.], rec, [1.])) + mpre = np.concatenate(([0.], prec, [0.])) + + # compute the precision envelope + for i in range(mpre.size - 1, 0, -1): + mpre[i - 1] = np.maximum(mpre[i - 1], mpre[i]) + + # to calculate area under PR curve, look for points + # where X axis (recall) changes value + i = np.where(mrec[1:] != mrec[:-1])[0] + + # and sum (\Delta recall) * prec + ap = np.sum((mrec[i + 1] - mrec[i]) * mpre[i + 1]) + return ap + + +def evaluation(pred, gt_path, all, iou_thresh=0.5): + pred = get_preds(pred) + norm_score(pred) + facebox_list, event_list, file_list, hard_gt_list, medium_gt_list, easy_gt_list = get_gt_boxes(gt_path) + event_num = len(event_list) + thresh_num = 1000 + settings = ['easy', 'medium', 'hard'] + setting_gts = [easy_gt_list, medium_gt_list, hard_gt_list] + + if not all: + aps = [] + for setting_id in range(3): + # different setting + gt_list = setting_gts[setting_id] + count_face = 0 + pr_curve = np.zeros((thresh_num, 2)).astype('float') + # [hard, medium, easy] + pbar = tqdm.tqdm(range(event_num)) # 61 + error_count = 0 + for i in pbar: + pbar.set_description('Processing {}'.format(settings[setting_id])) + event_name = str(event_list[i][0][0]) + img_list = file_list[i][0] + pred_list = pred[event_name] + sub_gt_list = gt_list[i][0] + print("shape of sub_gt_list is: ",sub_gt_list.shape) + gt_bbx_list = facebox_list[i][0] + + for j in range(len(img_list)): + try: + pred_info = pred_list[str(img_list[j][0][0])] + except: + error_count+=1 + continue + + gt_boxes = gt_bbx_list[j][0].astype('float') + keep_index = sub_gt_list[j][0] + count_face += len(keep_index) + if len(gt_boxes) == 0 or len(pred_info) == 0: + continue + ignore = np.zeros(gt_boxes.shape[0]) + if len(keep_index) != 0: + ignore[keep_index-1] = 1 + pred_recall, proposal_list = image_eval(pred_info, gt_boxes, ignore, iou_thresh) + + _img_pr_info = img_pr_info(thresh_num, pred_info, proposal_list, pred_recall) + + pr_curve += _img_pr_info + print("error_count is: ",error_count) + pr_curve = dataset_pr_info(thresh_num, pr_curve, count_face) + + propose = pr_curve[:, 0] + recall = pr_curve[:, 1] + + ap = voc_ap(recall, propose) + aps.append(ap) + + print("==================== Results ====================") + print("Easy Val AP: {}".format(aps[0])) + print("Medium Val AP: {}".format(aps[1])) + print("Hard Val AP: {}".format(aps[2])) + print("=================================================") + else: + aps = [] + # different setting + count_face = 0 + pr_curve = np.zeros((thresh_num, 2)).astype('float') # control calcultate how many samples + # [hard, medium, easy] + pbar = tqdm.tqdm(range(event_num)) + error_count = 0 + for i in pbar: + pbar.set_description('Processing {}'.format("all")) + # print("event_list is: ",event_list) + event_name = str(event_list[i][0][0]) # '0--Parade', '1--Handshaking' + img_list = file_list[i][0] + pred_list = pred[event_name] # 每个文件夹的所有检测结果 + sub_gt_list = [ setting_gts[0][i][0], setting_gts[1][i][0], setting_gts[2][i][0] ] + + gt_bbx_list = facebox_list[i][0] + for j in range(len(img_list)): + try: + pred_info = pred_list[str(img_list[j][0][0])] # # str(img_list[j][0][0] 是每个folder下面的图片名字 + except: + error_count+=1 + continue + + gt_boxes = gt_bbx_list[j][0].astype('float') + temp_i = [] + for ii in range(3): + if len(sub_gt_list[ii][j][0])!=0: + temp_i.append(ii) + if len(temp_i)!=0: + keep_index = np.concatenate(tuple([sub_gt_list[xx][j][0] for xx in temp_i])) + else: + keep_index = [] + count_face += len(keep_index) + + if len(gt_boxes) == 0 or len(pred_info) == 0: + continue + ignore = np.zeros(gt_boxes.shape[0]) # # no ignore + if len(keep_index) != 0: + ignore[keep_index-1] = 1 + pred_recall, proposal_list = image_eval(pred_info, gt_boxes, ignore, iou_thresh) + + _img_pr_info = img_pr_info(thresh_num, pred_info, proposal_list, pred_recall) + + pr_curve += _img_pr_info + + pr_curve = dataset_pr_info(thresh_num, pr_curve, count_face) + + propose = pr_curve[:, 0] + recall = pr_curve[:, 1] + + ap = voc_ap(recall, propose) + aps.append(ap) + + print("==================== Results ====================") + print("All Val AP: {}".format(aps[0])) + print("=================================================") + + + +if __name__ == '__main__': + + parser = argparse.ArgumentParser() + parser.add_argument('-p', '--pred') + parser.add_argument('-g', '--gt', default='./ground_truth') + parser.add_argument('--all', help='if test all together', action='store_true') + + args = parser.parse_args() + evaluation(args.pred, args.gt, args.all) + + + + + + + + + + + + diff --git a/contrib/Retinaface/evaluate/ground_truth/wider_easy_val.mat b/contrib/Retinaface/evaluate/ground_truth/wider_easy_val.mat new file mode 100644 index 0000000000000000000000000000000000000000..5b78df7c006982ab1a2038149f1f5168b2237f07 Binary files /dev/null and b/contrib/Retinaface/evaluate/ground_truth/wider_easy_val.mat differ diff --git a/contrib/Retinaface/evaluate/ground_truth/wider_face_val.mat b/contrib/Retinaface/evaluate/ground_truth/wider_face_val.mat new file mode 100644 index 0000000000000000000000000000000000000000..7ac47e55b72d04c5fa237321509b2d2319f8ded2 Binary files /dev/null and b/contrib/Retinaface/evaluate/ground_truth/wider_face_val.mat differ diff --git a/contrib/Retinaface/evaluate/ground_truth/wider_hard_val.mat b/contrib/Retinaface/evaluate/ground_truth/wider_hard_val.mat new file mode 100644 index 0000000000000000000000000000000000000000..061fcab0761d4fb6a0574756ae5c3d4591aecfc7 Binary files /dev/null and b/contrib/Retinaface/evaluate/ground_truth/wider_hard_val.mat differ diff --git a/contrib/Retinaface/evaluate/ground_truth/wider_medium_val.mat b/contrib/Retinaface/evaluate/ground_truth/wider_medium_val.mat new file mode 100644 index 0000000000000000000000000000000000000000..9670c7a96d8af29c59d6b08cab7765b8bc427182 Binary files /dev/null and b/contrib/Retinaface/evaluate/ground_truth/wider_medium_val.mat differ diff --git a/contrib/Retinaface/evaluate/setup.py b/contrib/Retinaface/evaluate/setup.py new file mode 100644 index 0000000000000000000000000000000000000000..74dba05b3809f76de0db678342d5c94520c5066c --- /dev/null +++ b/contrib/Retinaface/evaluate/setup.py @@ -0,0 +1,13 @@ +""" +WiderFace evaluation code +author: wondervictor +mail: tianhengcheng@gmail.com +copyright@wondervictor +""" + +from distutils.core import setup, Extension +from Cython.Build import cythonize +import numpy + +package = Extension('bbox', ['box_overlaps.pyx'], include_dirs=[numpy.get_include()]) +setup(ext_modules=cythonize([package])) diff --git a/contrib/Retinaface/evaluate/wider_val.txt b/contrib/Retinaface/evaluate/wider_val.txt new file mode 100644 index 0000000000000000000000000000000000000000..ea13560f0a190eb55a050aafe1694ea4fb5eebd3 --- /dev/null +++ b/contrib/Retinaface/evaluate/wider_val.txt @@ -0,0 +1,3226 @@ +0--Parade/0_Parade_marchingband_1_465.jpg +0--Parade/0_Parade_Parade_0_628.jpg +0--Parade/0_Parade_marchingband_1_765.jpg +0--Parade/0_Parade_Parade_0_194.jpg +0--Parade/0_Parade_marchingband_1_379.jpg +0--Parade/0_Parade_Parade_0_814.jpg +0--Parade/0_Parade_Parade_0_470.jpg +0--Parade/0_Parade_marchingband_1_1045.jpg +0--Parade/0_Parade_marchingband_1_556.jpg +0--Parade/0_Parade_Parade_0_829.jpg +0--Parade/0_Parade_marchingband_1_593.jpg +0--Parade/0_Parade_Parade_0_29.jpg +0--Parade/0_Parade_Parade_0_72.jpg +0--Parade/0_Parade_Parade_0_205.jpg +0--Parade/0_Parade_marchingband_1_881.jpg +0--Parade/0_Parade_marchingband_1_490.jpg +0--Parade/0_Parade_Parade_0_125.jpg +0--Parade/0_Parade_Parade_0_120.jpg +0--Parade/0_Parade_marchingband_1_476.jpg +0--Parade/0_Parade_marchingband_1_620.jpg +0--Parade/0_Parade_Parade_0_960.jpg +0--Parade/0_Parade_marchingband_1_488.jpg +0--Parade/0_Parade_Parade_0_901.jpg +0--Parade/0_Parade_marchingband_1_822.jpg +0--Parade/0_Parade_marchingband_1_353.jpg +0--Parade/0_Parade_marchingband_1_74.jpg +0--Parade/0_Parade_marchingband_1_234.jpg +0--Parade/0_Parade_marchingband_1_359.jpg +0--Parade/0_Parade_Parade_0_266.jpg +0--Parade/0_Parade_Parade_0_275.jpg +0--Parade/0_Parade_Parade_0_478.jpg +0--Parade/0_Parade_Parade_0_913.jpg +0--Parade/0_Parade_marchingband_1_172.jpg +0--Parade/0_Parade_marchingband_1_309.jpg +0--Parade/0_Parade_marchingband_1_360.jpg +0--Parade/0_Parade_Parade_0_472.jpg +0--Parade/0_Parade_marchingband_1_517.jpg +0--Parade/0_Parade_marchingband_1_188.jpg +0--Parade/0_Parade_Parade_0_917.jpg +0--Parade/0_Parade_Parade_0_353.jpg +0--Parade/0_Parade_marchingband_1_20.jpg +0--Parade/0_Parade_marchingband_1_818.jpg +0--Parade/0_Parade_Parade_0_854.jpg +0--Parade/0_Parade_marchingband_1_355.jpg +0--Parade/0_Parade_marchingband_1_869.jpg +0--Parade/0_Parade_Parade_0_611.jpg +0--Parade/0_Parade_Parade_0_443.jpg +0--Parade/0_Parade_Parade_0_102.jpg +0--Parade/0_Parade_Parade_0_218.jpg +0--Parade/0_Parade_Parade_0_639.jpg +0--Parade/0_Parade_marchingband_1_78.jpg +0--Parade/0_Parade_Parade_0_247.jpg +0--Parade/0_Parade_marchingband_1_404.jpg +0--Parade/0_Parade_marchingband_1_606.jpg +0--Parade/0_Parade_Parade_0_664.jpg +0--Parade/0_Parade_marchingband_1_382.jpg +0--Parade/0_Parade_Parade_0_616.jpg +0--Parade/0_Parade_marchingband_1_149.jpg +0--Parade/0_Parade_Parade_0_873.jpg +0--Parade/0_Parade_marchingband_1_156.jpg +0--Parade/0_Parade_Parade_0_545.jpg +0--Parade/0_Parade_Parade_0_850.jpg +0--Parade/0_Parade_marchingband_1_445.jpg +0--Parade/0_Parade_marchingband_1_710.jpg +0--Parade/0_Parade_Parade_0_137.jpg +0--Parade/0_Parade_marchingband_1_410.jpg +0--Parade/0_Parade_Parade_0_906.jpg +0--Parade/0_Parade_marchingband_1_1004.jpg +0--Parade/0_Parade_Parade_0_377.jpg +0--Parade/0_Parade_Parade_0_559.jpg +0--Parade/0_Parade_Parade_0_246.jpg +0--Parade/0_Parade_marchingband_1_552.jpg +0--Parade/0_Parade_Parade_0_12.jpg +0--Parade/0_Parade_Parade_0_429.jpg +0--Parade/0_Parade_Parade_0_286.jpg +0--Parade/0_Parade_Parade_0_317.jpg +0--Parade/0_Parade_Parade_0_239.jpg +0--Parade/0_Parade_Parade_0_459.jpg +0--Parade/0_Parade_Parade_0_376.jpg +0--Parade/0_Parade_marchingband_1_695.jpg +0--Parade/0_Parade_marchingband_1_910.jpg +0--Parade/0_Parade_marchingband_1_356.jpg +0--Parade/0_Parade_Parade_0_382.jpg +0--Parade/0_Parade_marchingband_1_439.jpg +0--Parade/0_Parade_marchingband_1_329.jpg +0--Parade/0_Parade_Parade_0_887.jpg +0--Parade/0_Parade_Parade_0_468.jpg +0--Parade/0_Parade_marchingband_1_139.jpg +0--Parade/0_Parade_marchingband_1_746.jpg +0--Parade/0_Parade_Parade_0_164.jpg +0--Parade/0_Parade_Parade_0_461.jpg +0--Parade/0_Parade_Parade_0_757.jpg +0--Parade/0_Parade_marchingband_1_759.jpg +0--Parade/0_Parade_Parade_0_53.jpg +0--Parade/0_Parade_marchingband_1_653.jpg +0--Parade/0_Parade_marchingband_1_227.jpg +0--Parade/0_Parade_marchingband_1_649.jpg +0--Parade/0_Parade_Parade_0_43.jpg +0--Parade/0_Parade_marchingband_1_561.jpg +0--Parade/0_Parade_Parade_0_490.jpg +0--Parade/0_Parade_Parade_0_519.jpg +0--Parade/0_Parade_Parade_0_465.jpg +0--Parade/0_Parade_marchingband_1_629.jpg +0--Parade/0_Parade_marchingband_1_768.jpg +0--Parade/0_Parade_Parade_0_688.jpg +0--Parade/0_Parade_Parade_0_288.jpg +0--Parade/0_Parade_Parade_0_502.jpg +0--Parade/0_Parade_Parade_0_364.jpg +0--Parade/0_Parade_marchingband_1_267.jpg +0--Parade/0_Parade_Parade_0_68.jpg +0--Parade/0_Parade_marchingband_1_525.jpg +0--Parade/0_Parade_marchingband_1_147.jpg +0--Parade/0_Parade_marchingband_1_104.jpg +0--Parade/0_Parade_marchingband_1_932.jpg +0--Parade/0_Parade_marchingband_1_311.jpg +1--Handshaking/1_Handshaking_Handshaking_1_664.jpg +1--Handshaking/1_Handshaking_Handshaking_1_762.jpg +1--Handshaking/1_Handshaking_Handshaking_1_766.jpg +1--Handshaking/1_Handshaking_Handshaking_1_134.jpg +1--Handshaking/1_Handshaking_Handshaking_1_362.jpg +1--Handshaking/1_Handshaking_Handshaking_1_522.jpg +1--Handshaking/1_Handshaking_Handshaking_1_453.jpg +1--Handshaking/1_Handshaking_Handshaking_1_314.jpg +1--Handshaking/1_Handshaking_Handshaking_1_343.jpg +1--Handshaking/1_Handshaking_Handshaking_1_733.jpg +1--Handshaking/1_Handshaking_Handshaking_1_801.jpg +1--Handshaking/1_Handshaking_Handshaking_1_465.jpg +1--Handshaking/1_Handshaking_Handshaking_1_94.jpg +1--Handshaking/1_Handshaking_Handshaking_1_602.jpg +1--Handshaking/1_Handshaking_Handshaking_1_781.jpg +1--Handshaking/1_Handshaking_Handshaking_1_380.jpg +1--Handshaking/1_Handshaking_Handshaking_1_357.jpg +1--Handshaking/1_Handshaking_Handshaking_1_236.jpg +1--Handshaking/1_Handshaking_Handshaking_1_107.jpg +1--Handshaking/1_Handshaking_Handshaking_1_827.jpg +1--Handshaking/1_Handshaking_Handshaking_1_579.jpg +1--Handshaking/1_Handshaking_Handshaking_1_275.jpg +1--Handshaking/1_Handshaking_Handshaking_1_35.jpg +1--Handshaking/1_Handshaking_Handshaking_1_411.jpg +1--Handshaking/1_Handshaking_Handshaking_1_158.jpg +1--Handshaking/1_Handshaking_Handshaking_1_209.jpg +1--Handshaking/1_Handshaking_Handshaking_1_313.jpg +1--Handshaking/1_Handshaking_Handshaking_1_457.jpg +1--Handshaking/1_Handshaking_Handshaking_1_567.jpg +1--Handshaking/1_Handshaking_Handshaking_1_356.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_674.jpg +10--People_Marching/10_People_Marching_People_Marching_2_430.jpg +10--People_Marching/10_People_Marching_People_Marching_2_822.jpg +10--People_Marching/10_People_Marching_People_Marching_2_944.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_162.jpg +10--People_Marching/10_People_Marching_People_Marching_2_269.jpg +10--People_Marching/10_People_Marching_People_Marching_2_307.jpg +10--People_Marching/10_People_Marching_People_Marching_2_40.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_938.jpg +10--People_Marching/10_People_Marching_People_Marching_2_191.jpg +10--People_Marching/10_People_Marching_People_Marching_2_678.jpg +10--People_Marching/10_People_Marching_People_Marching_2_1046.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_524.jpg +10--People_Marching/10_People_Marching_People_Marching_2_316.jpg +10--People_Marching/10_People_Marching_People_Marching_2_277.jpg +10--People_Marching/10_People_Marching_People_Marching_2_256.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_368.jpg +10--People_Marching/10_People_Marching_People_Marching_2_373.jpg +10--People_Marching/10_People_Marching_People_Marching_2_934.jpg +10--People_Marching/10_People_Marching_People_Marching_2_668.jpg +10--People_Marching/10_People_Marching_People_Marching_2_404.jpg +10--People_Marching/10_People_Marching_People_Marching_2_34.jpg +10--People_Marching/10_People_Marching_People_Marching_2_60.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_716.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_69.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_933.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_1024.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_499.jpg +10--People_Marching/10_People_Marching_People_Marching_2_259.jpg +10--People_Marching/10_People_Marching_People_Marching_2_591.jpg +10--People_Marching/10_People_Marching_People_Marching_2_433.jpg +10--People_Marching/10_People_Marching_People_Marching_2_2.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_1020.jpg +10--People_Marching/10_People_Marching_People_Marching_2_496.jpg +10--People_Marching/10_People_Marching_People_Marching_2_638.jpg +10--People_Marching/10_People_Marching_People_Marching_2_401.jpg +10--People_Marching/10_People_Marching_People_Marching_2_173.jpg +10--People_Marching/10_People_Marching_People_Marching_2_793.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_619.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_848.jpg +10--People_Marching/10_People_Marching_People_Marching_2_36.jpg +10--People_Marching/10_People_Marching_People_Marching_2_236.jpg +10--People_Marching/10_People_Marching_People_Marching_2_514.jpg +10--People_Marching/10_People_Marching_People_Marching_2_498.jpg +10--People_Marching/10_People_Marching_People_Marching_2_131.jpg +10--People_Marching/10_People_Marching_People_Marching_2_823.jpg +10--People_Marching/10_People_Marching_People_Marching_2_171.jpg +10--People_Marching/10_People_Marching_People_Marching_2_27.jpg +10--People_Marching/10_People_Marching_People_Marching_2_577.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_552.jpg +10--People_Marching/10_People_Marching_People_Marching_2_898.jpg +10--People_Marching/10_People_Marching_People_Marching_2_395.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_240.jpg +10--People_Marching/10_People_Marching_People_Marching_2_239.jpg +10--People_Marching/10_People_Marching_People_Marching_2_935.jpg +10--People_Marching/10_People_Marching_People_Marching_10_People_Marching_People_Marching_10_447.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_529.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_441.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_774.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_865.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_102.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_507.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_644.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_587.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_189.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_807.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_468.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_639.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_176.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_574.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_702.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_385.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_375.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_560.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_663.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_339.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_206.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_26.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_406.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_71.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_108.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_349.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_573.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_223.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_633.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_250.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_320.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_287.jpg +11--Meeting/11_Meeting_Meeting_11_Meeting_Meeting_11_295.jpg +12--Group/12_Group_Group_12_Group_Group_12_912.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_536.jpg +12--Group/12_Group_Group_12_Group_Group_12_28.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_103.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_354.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_789.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_575.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_602.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_213.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_403.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_101.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_244.jpg +12--Group/12_Group_Group_12_Group_Group_12_367.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_527.jpg +12--Group/12_Group_Group_12_Group_Group_12_101.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_849.jpg +12--Group/12_Group_Group_12_Group_Group_12_843.jpg +12--Group/12_Group_Group_12_Group_Group_12_198.jpg +12--Group/12_Group_Group_12_Group_Group_12_84.jpg +12--Group/12_Group_Group_12_Group_Group_12_519.jpg +12--Group/12_Group_Group_12_Group_Group_12_10.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_448.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_889.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_64.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_353.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_313.jpg +12--Group/12_Group_Group_12_Group_Group_12_935.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_650.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_1007.jpg +12--Group/12_Group_Group_12_Group_Group_12_59.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_171.jpg +12--Group/12_Group_Group_12_Group_Group_12_247.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_283.jpg +12--Group/12_Group_Group_12_Group_Group_12_268.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_107.jpg +12--Group/12_Group_Group_12_Group_Group_12_759.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_644.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_186.jpg +12--Group/12_Group_Group_12_Group_Group_12_62.jpg +12--Group/12_Group_Group_12_Group_Group_12_407.jpg +12--Group/12_Group_Group_12_Group_Group_12_578.jpg +12--Group/12_Group_Group_12_Group_Group_12_794.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_551.jpg +12--Group/12_Group_Group_12_Group_Group_12_29.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_707.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_211.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_771.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_855.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_412.jpg +12--Group/12_Group_Group_12_Group_Group_12_522.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_759.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_653.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_162.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_67.jpg +12--Group/12_Group_Group_12_Group_Group_12_379.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_504.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_228.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_330.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_685.jpg +12--Group/12_Group_Group_12_Group_Group_12_735.jpg +12--Group/12_Group_Group_12_Group_Group_12_434.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_442.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_212.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_551.jpg +12--Group/12_Group_Group_12_Group_Group_12_331.jpg +12--Group/12_Group_Group_12_Group_Group_12_823.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_778.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_550.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_458.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_500.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_662.jpg +12--Group/12_Group_Group_12_Group_Group_12_179.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_196.jpg +12--Group/12_Group_Group_12_Group_Group_12_218.jpg +12--Group/12_Group_Group_12_Group_Group_12_182.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_55.jpg +12--Group/12_Group_Group_12_Group_Group_12_38.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_503.jpg +12--Group/12_Group_Group_12_Group_Group_12_478.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_322.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_143.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_295.jpg +12--Group/12_Group_Group_12_Group_Group_12_144.jpg +12--Group/12_Group_Group_12_Group_Group_12_249.jpg +12--Group/12_Group_Group_12_Group_Group_12_732.jpg +12--Group/12_Group_Group_12_Group_Group_12_411.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_853.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_583.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_852.jpg +12--Group/12_Group_Group_12_Group_Group_12_123.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_60.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_495.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_15.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_94.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_379.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_120.jpg +12--Group/12_Group_Group_12_Group_Group_12_301.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_736.jpg +12--Group/12_Group_Group_12_Group_Group_12_315.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_43.jpg +12--Group/12_Group_Group_12_Group_Group_12_165.jpg +12--Group/12_Group_Group_12_Group_Group_12_354.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_235.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_315.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_942.jpg +12--Group/12_Group_Group_12_Group_Group_12_227.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_927.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_86.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_286.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_607.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_115.jpg +12--Group/12_Group_Group_12_Group_Group_12_80.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_868.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_461.jpg +12--Group/12_Group_Group_12_Group_Group_12_728.jpg +12--Group/12_Group_Group_12_Group_Group_12_253.jpg +12--Group/12_Group_Group_12_Group_Group_12_293.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_461.jpg +12--Group/12_Group_Group_12_Group_Group_12_417.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_162.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_270.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_276.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_418.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_319.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_13.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_28.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_274.jpg +12--Group/12_Group_Group_12_Group_Group_12_112.jpg +12--Group/12_Group_Group_12_Group_Group_12_772.jpg +12--Group/12_Group_Group_12_Group_Group_12_610.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_850.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_996.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_364.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_557.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_253.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_340.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_617.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_138.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_21.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_50.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_83.jpg +12--Group/12_Group_Team_Organized_Group_12_Group_Team_Organized_Group_12_126.jpg +12--Group/12_Group_Group_12_Group_Group_12_153.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_72.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_613.jpg +12--Group/12_Group_Large_Group_12_Group_Large_Group_12_112.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_36.jpg +13--Interview/13_Interview_Interview_Sequences_13_209.jpg +13--Interview/13_Interview_Interview_On_Location_13_186.jpg +13--Interview/13_Interview_Interview_Sequences_13_103.jpg +13--Interview/13_Interview_Interview_On_Location_13_940.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_285.jpg +13--Interview/13_Interview_Interview_Sequences_13_778.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_420.jpg +13--Interview/13_Interview_Interview_Sequences_13_92.jpg +13--Interview/13_Interview_Interview_On_Location_13_537.jpg +13--Interview/13_Interview_Interview_Sequences_13_609.jpg +13--Interview/13_Interview_Interview_Sequences_13_929.jpg +13--Interview/13_Interview_Interview_Sequences_13_31.jpg +13--Interview/13_Interview_Interview_Sequences_13_108.jpg +13--Interview/13_Interview_Interview_On_Location_13_334.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_241.jpg +13--Interview/13_Interview_Interview_On_Location_13_3.jpg +13--Interview/13_Interview_Interview_On_Location_13_512.jpg +13--Interview/13_Interview_Interview_Sequences_13_884.jpg +13--Interview/13_Interview_Interview_On_Location_13_287.jpg +13--Interview/13_Interview_Interview_Sequences_13_636.jpg +13--Interview/13_Interview_Interview_On_Location_13_56.jpg +13--Interview/13_Interview_Interview_On_Location_13_569.jpg +13--Interview/13_Interview_Interview_Sequences_13_973.jpg +13--Interview/13_Interview_Interview_Sequences_13_187.jpg +13--Interview/13_Interview_Interview_On_Location_13_791.jpg +13--Interview/13_Interview_Interview_Sequences_13_477.jpg +13--Interview/13_Interview_Interview_On_Location_13_921.jpg +13--Interview/13_Interview_Interview_Sequences_13_268.jpg +13--Interview/13_Interview_Interview_Sequences_13_134.jpg +13--Interview/13_Interview_Interview_On_Location_13_736.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_223.jpg +13--Interview/13_Interview_Interview_On_Location_13_401.jpg +13--Interview/13_Interview_Interview_Sequences_13_35.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_425.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_409.jpg +13--Interview/13_Interview_Interview_On_Location_13_166.jpg +13--Interview/13_Interview_Interview_Sequences_13_859.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_442.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_374.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_381.jpg +13--Interview/13_Interview_Interview_Sequences_13_937.jpg +13--Interview/13_Interview_Interview_Sequences_13_807.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_327.jpg +13--Interview/13_Interview_Interview_On_Location_13_74.jpg +13--Interview/13_Interview_Interview_On_Location_13_605.jpg +13--Interview/13_Interview_Interview_On_Location_13_238.jpg +13--Interview/13_Interview_Interview_Sequences_13_11.jpg +13--Interview/13_Interview_Interview_On_Location_13_539.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_461.jpg +13--Interview/13_Interview_Interview_On_Location_13_478.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_204.jpg +13--Interview/13_Interview_Interview_On_Location_13_313.jpg +13--Interview/13_Interview_Interview_Sequences_13_513.jpg +13--Interview/13_Interview_Interview_Sequences_13_111.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_325.jpg +13--Interview/13_Interview_Interview_Sequences_13_7.jpg +13--Interview/13_Interview_Interview_On_Location_13_129.jpg +13--Interview/13_Interview_Interview_Sequences_13_3.jpg +13--Interview/13_Interview_Interview_Sequences_13_717.jpg +13--Interview/13_Interview_Interview_On_Location_13_610.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_406.jpg +13--Interview/13_Interview_Interview_Sequences_13_135.jpg +13--Interview/13_Interview_Interview_Sequences_13_718.jpg +13--Interview/13_Interview_Interview_Sequences_13_2.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_155.jpg +13--Interview/13_Interview_Interview_Sequences_13_15.jpg +13--Interview/13_Interview_Interview_On_Location_13_433.jpg +13--Interview/13_Interview_Interview_Sequences_13_586.jpg +13--Interview/13_Interview_Interview_On_Location_13_861.jpg +13--Interview/13_Interview_Interview_Sequences_13_864.jpg +13--Interview/13_Interview_Interview_Sequences_13_152.jpg +13--Interview/13_Interview_Interview_On_Location_13_554.jpg +13--Interview/13_Interview_Interview_On_Location_13_491.jpg +13--Interview/13_Interview_Interview_On_Location_13_933.jpg +13--Interview/13_Interview_Interview_On_Location_13_208.jpg +13--Interview/13_Interview_Interview_On_Location_13_728.jpg +13--Interview/13_Interview_Interview_On_Location_13_542.jpg +13--Interview/13_Interview_Interview_On_Location_13_505.jpg +13--Interview/13_Interview_Interview_On_Location_13_849.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_475.jpg +13--Interview/13_Interview_Interview_On_Location_13_394.jpg +13--Interview/13_Interview_Interview_Sequences_13_557.jpg +13--Interview/13_Interview_Interview_Sequences_13_237.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_107.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_260.jpg +13--Interview/13_Interview_Interview_On_Location_13_225.jpg +13--Interview/13_Interview_Interview_Sequences_13_759.jpg +13--Interview/13_Interview_Interview_Sequences_13_793.jpg +13--Interview/13_Interview_Interview_Sequences_13_189.jpg +13--Interview/13_Interview_Interview_On_Location_13_301.jpg +13--Interview/13_Interview_Interview_Sequences_13_779.jpg +13--Interview/13_Interview_Interview_On_Location_13_187.jpg +13--Interview/13_Interview_Interview_On_Location_13_912.jpg +13--Interview/13_Interview_Interview_Sequences_13_1032.jpg +13--Interview/13_Interview_Interview_On_Location_13_246.jpg +13--Interview/13_Interview_Interview_Sequences_13_89.jpg +13--Interview/13_Interview_Interview_On_Location_13_852.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_237.jpg +13--Interview/13_Interview_Interview_On_Location_13_521.jpg +13--Interview/13_Interview_Interview_On_Location_13_510.jpg +13--Interview/13_Interview_Interview_On_Location_13_284.jpg +13--Interview/13_Interview_Interview_Sequences_13_55.jpg +13--Interview/13_Interview_Interview_On_Location_13_636.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_189.jpg +13--Interview/13_Interview_Interview_On_Location_13_865.jpg +13--Interview/13_Interview_Interview_On_Location_13_559.jpg +13--Interview/13_Interview_Interview_Sequences_13_541.jpg +13--Interview/13_Interview_Interview_On_Location_13_282.jpg +13--Interview/13_Interview_Interview_Sequences_13_813.jpg +13--Interview/13_Interview_Interview_On_Location_13_138.jpg +13--Interview/13_Interview_Interview_Sequences_13_691.jpg +13--Interview/13_Interview_Interview_Sequences_13_270.jpg +13--Interview/13_Interview_Interview_On_Location_13_190.jpg +13--Interview/13_Interview_Interview_Sequences_13_495.jpg +13--Interview/13_Interview_Interview_On_Location_13_773.jpg +13--Interview/13_Interview_Interview_On_Location_13_513.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_239.jpg +13--Interview/13_Interview_Interview_Sequences_13_33.jpg +13--Interview/13_Interview_Interview_On_Location_13_33.jpg +13--Interview/13_Interview_Interview_Sequences_13_867.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_245.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_743.jpg +13--Interview/13_Interview_Interview_On_Location_13_179.jpg +13--Interview/13_Interview_Interview_Sequences_13_764.jpg +13--Interview/13_Interview_Interview_Sequences_13_121.jpg +13--Interview/13_Interview_Interview_Sequences_13_5.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_668.jpg +13--Interview/13_Interview_Interview_Sequences_13_347.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_254.jpg +13--Interview/13_Interview_Interview_Sequences_13_373.jpg +13--Interview/13_Interview_Interview_Sequences_13_37.jpg +13--Interview/13_Interview_Interview_On_Location_13_847.jpg +13--Interview/13_Interview_Interview_Sequences_13_868.jpg +13--Interview/13_Interview_Interview_On_Location_13_426.jpg +13--Interview/13_Interview_Interview_Sequences_13_936.jpg +13--Interview/13_Interview_Interview_Sequences_13_40.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_1001.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_217.jpg +13--Interview/13_Interview_Interview_Sequences_13_456.jpg +13--Interview/13_Interview_Interview_On_Location_13_247.jpg +13--Interview/13_Interview_Interview_2_People_Visible_13_252.jpg +14--Traffic/14_Traffic_Traffic_14_834.jpg +14--Traffic/14_Traffic_Traffic_14_380.jpg +14--Traffic/14_Traffic_Traffic_14_361.jpg +14--Traffic/14_Traffic_Traffic_14_722.jpg +14--Traffic/14_Traffic_Traffic_14_170.jpg +14--Traffic/14_Traffic_Traffic_14_654.jpg +14--Traffic/14_Traffic_Traffic_14_675.jpg +14--Traffic/14_Traffic_Traffic_14_840.jpg +14--Traffic/14_Traffic_Traffic_14_728.jpg +14--Traffic/14_Traffic_Traffic_14_713.jpg +14--Traffic/14_Traffic_Traffic_14_850.jpg +14--Traffic/14_Traffic_Traffic_14_55.jpg +14--Traffic/14_Traffic_Traffic_14_677.jpg +14--Traffic/14_Traffic_Traffic_14_443.jpg +14--Traffic/14_Traffic_Traffic_14_504.jpg +14--Traffic/14_Traffic_Traffic_14_644.jpg +14--Traffic/14_Traffic_Traffic_14_253.jpg +14--Traffic/14_Traffic_Traffic_14_505.jpg +14--Traffic/14_Traffic_Traffic_14_267.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_569.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_460.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_542.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_286.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_731.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_706.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_483.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_241.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_303.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_676.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_102.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_846.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_781.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_554.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_382.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_751.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_313.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_526.jpg +15--Stock_Market/15_Stock_Market_Stock_Market_15_301.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_752.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_239.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_195.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_25.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_589.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_305.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_84.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_422.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_474.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_467.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_361.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_569.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_94.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_392.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_482.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_4.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_134.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_512.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_495.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_85.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_750.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_56.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_309.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_124.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_226.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_135.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_490.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_317.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_231.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_143.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_338.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_116.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_346.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_447.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_591.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_637.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_141.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_64.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_524.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_59.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_270.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_311.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_566.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_73.jpg +16--Award_Ceremony/16_Award_Ceremony_Awards_Ceremony_16_546.jpg +17--Ceremony/17_Ceremony_Ceremony_17_1007.jpg +17--Ceremony/17_Ceremony_Ceremony_17_469.jpg +17--Ceremony/17_Ceremony_Ceremony_17_592.jpg +17--Ceremony/17_Ceremony_Ceremony_17_368.jpg +17--Ceremony/17_Ceremony_Ceremony_17_765.jpg +17--Ceremony/17_Ceremony_Ceremony_17_344.jpg +17--Ceremony/17_Ceremony_Ceremony_17_253.jpg +17--Ceremony/17_Ceremony_Ceremony_17_234.jpg +17--Ceremony/17_Ceremony_Ceremony_17_588.jpg +17--Ceremony/17_Ceremony_Ceremony_17_211.jpg +17--Ceremony/17_Ceremony_Ceremony_17_1048.jpg +17--Ceremony/17_Ceremony_Ceremony_17_444.jpg +17--Ceremony/17_Ceremony_Ceremony_17_452.jpg +17--Ceremony/17_Ceremony_Ceremony_17_57.jpg +17--Ceremony/17_Ceremony_Ceremony_17_944.jpg +17--Ceremony/17_Ceremony_Ceremony_17_1037.jpg +17--Ceremony/17_Ceremony_Ceremony_17_271.jpg +17--Ceremony/17_Ceremony_Ceremony_17_735.jpg +17--Ceremony/17_Ceremony_Ceremony_17_300.jpg +17--Ceremony/17_Ceremony_Ceremony_17_490.jpg +17--Ceremony/17_Ceremony_Ceremony_17_972.jpg +17--Ceremony/17_Ceremony_Ceremony_17_415.jpg +17--Ceremony/17_Ceremony_Ceremony_17_406.jpg +17--Ceremony/17_Ceremony_Ceremony_17_668.jpg +17--Ceremony/17_Ceremony_Ceremony_17_218.jpg +17--Ceremony/17_Ceremony_Ceremony_17_1005.jpg +17--Ceremony/17_Ceremony_Ceremony_17_113.jpg +17--Ceremony/17_Ceremony_Ceremony_17_171.jpg +17--Ceremony/17_Ceremony_Ceremony_17_1009.jpg +17--Ceremony/17_Ceremony_Ceremony_17_227.jpg +17--Ceremony/17_Ceremony_Ceremony_17_852.jpg +17--Ceremony/17_Ceremony_Ceremony_17_470.jpg +17--Ceremony/17_Ceremony_Ceremony_17_418.jpg +17--Ceremony/17_Ceremony_Ceremony_17_46.jpg +17--Ceremony/17_Ceremony_Ceremony_17_818.jpg +17--Ceremony/17_Ceremony_Ceremony_17_782.jpg +17--Ceremony/17_Ceremony_Ceremony_17_220.jpg +17--Ceremony/17_Ceremony_Ceremony_17_803.jpg +18--Concerts/18_Concerts_Concerts_18_602.jpg +18--Concerts/18_Concerts_Concerts_18_381.jpg +18--Concerts/18_Concerts_Concerts_18_27.jpg +18--Concerts/18_Concerts_Concerts_18_1038.jpg +18--Concerts/18_Concerts_Concerts_18_313.jpg +18--Concerts/18_Concerts_Concerts_18_151.jpg +18--Concerts/18_Concerts_Concerts_18_528.jpg +18--Concerts/18_Concerts_Concerts_18_104.jpg +18--Concerts/18_Concerts_Concerts_18_855.jpg +18--Concerts/18_Concerts_Concerts_18_670.jpg +18--Concerts/18_Concerts_Concerts_18_469.jpg +18--Concerts/18_Concerts_Concerts_18_349.jpg +18--Concerts/18_Concerts_Concerts_18_522.jpg +18--Concerts/18_Concerts_Concerts_18_612.jpg +18--Concerts/18_Concerts_Concerts_18_60.jpg +18--Concerts/18_Concerts_Concerts_18_815.jpg +18--Concerts/18_Concerts_Concerts_18_252.jpg +18--Concerts/18_Concerts_Concerts_18_1013.jpg +18--Concerts/18_Concerts_Concerts_18_38.jpg +18--Concerts/18_Concerts_Concerts_18_257.jpg +18--Concerts/18_Concerts_Concerts_18_258.jpg +18--Concerts/18_Concerts_Concerts_18_486.jpg +18--Concerts/18_Concerts_Concerts_18_1016.jpg +18--Concerts/18_Concerts_Concerts_18_706.jpg +18--Concerts/18_Concerts_Concerts_18_447.jpg +18--Concerts/18_Concerts_Concerts_18_536.jpg +18--Concerts/18_Concerts_Concerts_18_872.jpg +18--Concerts/18_Concerts_Concerts_18_665.jpg +18--Concerts/18_Concerts_Concerts_18_251.jpg +18--Concerts/18_Concerts_Concerts_18_910.jpg +18--Concerts/18_Concerts_Concerts_18_1015.jpg +18--Concerts/18_Concerts_Concerts_18_657.jpg +18--Concerts/18_Concerts_Concerts_18_853.jpg +18--Concerts/18_Concerts_Concerts_18_555.jpg +18--Concerts/18_Concerts_Concerts_18_1004.jpg +18--Concerts/18_Concerts_Concerts_18_127.jpg +18--Concerts/18_Concerts_Concerts_18_655.jpg +18--Concerts/18_Concerts_Concerts_18_504.jpg +18--Concerts/18_Concerts_Concerts_18_402.jpg +18--Concerts/18_Concerts_Concerts_18_433.jpg +18--Concerts/18_Concerts_Concerts_18_66.jpg +18--Concerts/18_Concerts_Concerts_18_389.jpg +18--Concerts/18_Concerts_Concerts_18_828.jpg +18--Concerts/18_Concerts_Concerts_18_102.jpg +18--Concerts/18_Concerts_Concerts_18_366.jpg +18--Concerts/18_Concerts_Concerts_18_693.jpg +18--Concerts/18_Concerts_Concerts_18_920.jpg +18--Concerts/18_Concerts_Concerts_18_656.jpg +18--Concerts/18_Concerts_Concerts_18_554.jpg +18--Concerts/18_Concerts_Concerts_18_784.jpg +18--Concerts/18_Concerts_Concerts_18_350.jpg +18--Concerts/18_Concerts_Concerts_18_403.jpg +18--Concerts/18_Concerts_Concerts_18_133.jpg +19--Couple/19_Couple_Couple_19_156.jpg +19--Couple/19_Couple_Couple_19_881.jpg +19--Couple/19_Couple_Couple_19_1014.jpg +19--Couple/19_Couple_Couple_19_88.jpg +19--Couple/19_Couple_Couple_19_631.jpg +19--Couple/19_Couple_Couple_19_810.jpg +19--Couple/19_Couple_Couple_19_836.jpg +19--Couple/19_Couple_Couple_19_325.jpg +19--Couple/19_Couple_Couple_19_106.jpg +19--Couple/19_Couple_Couple_19_90.jpg +19--Couple/19_Couple_Couple_19_910.jpg +19--Couple/19_Couple_Couple_19_688.jpg +19--Couple/19_Couple_Couple_19_936.jpg +19--Couple/19_Couple_Couple_19_24.jpg +19--Couple/19_Couple_Couple_19_319.jpg +19--Couple/19_Couple_Couple_19_254.jpg +19--Couple/19_Couple_Couple_19_86.jpg +19--Couple/19_Couple_Couple_19_847.jpg +19--Couple/19_Couple_Couple_19_873.jpg +19--Couple/19_Couple_Couple_19_349.jpg +19--Couple/19_Couple_Couple_19_770.jpg +19--Couple/19_Couple_Couple_19_50.jpg +19--Couple/19_Couple_Couple_19_125.jpg +19--Couple/19_Couple_Couple_19_301.jpg +19--Couple/19_Couple_Couple_19_743.jpg +19--Couple/19_Couple_Couple_19_548.jpg +19--Couple/19_Couple_Couple_19_509.jpg +19--Couple/19_Couple_Couple_19_139.jpg +19--Couple/19_Couple_Couple_19_317.jpg +19--Couple/19_Couple_Couple_19_514.jpg +19--Couple/19_Couple_Couple_19_667.jpg +19--Couple/19_Couple_Couple_19_110.jpg +19--Couple/19_Couple_Couple_19_822.jpg +19--Couple/19_Couple_Couple_19_31.jpg +19--Couple/19_Couple_Couple_19_835.jpg +19--Couple/19_Couple_Couple_19_832.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_413.jpg +2--Demonstration/2_Demonstration_Protesters_2_905.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_219.jpg +2--Demonstration/2_Demonstration_Protesters_2_46.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_712.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_181.jpg +2--Demonstration/2_Demonstration_Protesters_2_131.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_35.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_700.jpg +2--Demonstration/2_Demonstration_Protesters_2_748.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_486.jpg +2--Demonstration/2_Demonstration_Protesters_2_260.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_188.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_689.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_641.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_18.jpg +2--Demonstration/2_Demonstration_Protesters_2_486.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_795.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_107.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_120.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_83.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_666.jpg +2--Demonstration/2_Demonstration_Protesters_2_884.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_173.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_611.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_329.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_414.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_567.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_741.jpg +2--Demonstration/2_Demonstration_Protesters_2_618.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_135.jpg +2--Demonstration/2_Demonstration_Protesters_2_811.jpg +2--Demonstration/2_Demonstration_Protesters_2_351.jpg +2--Demonstration/2_Demonstration_Protesters_2_531.jpg +2--Demonstration/2_Demonstration_Protesters_2_370.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_187.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_307.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_617.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_615.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_499.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_183.jpg +2--Demonstration/2_Demonstration_Protesters_2_57.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_763.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_438.jpg +2--Demonstration/2_Demonstration_Protesters_2_163.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_306.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_781.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_28.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_5.jpg +2--Demonstration/2_Demonstration_Protesters_2_912.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_314.jpg +2--Demonstration/2_Demonstration_Protesters_2_56.jpg +2--Demonstration/2_Demonstration_Protesters_2_901.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_713.jpg +2--Demonstration/2_Demonstration_Protesters_2_12.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_176.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_225.jpg +2--Demonstration/2_Demonstration_Protesters_2_213.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_471.jpg +2--Demonstration/2_Demonstration_Protesters_2_228.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_665.jpg +2--Demonstration/2_Demonstration_Protesters_2_826.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_382.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_365.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_341.jpg +2--Demonstration/2_Demonstration_Protesters_2_369.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_114.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_195.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_22.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_450.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_425.jpg +2--Demonstration/2_Demonstration_Protesters_2_345.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_267.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_566.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_117.jpg +2--Demonstration/2_Demonstration_Protesters_2_817.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_867.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_791.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_419.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_619.jpg +2--Demonstration/2_Demonstration_Protesters_2_86.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_637.jpg +2--Demonstration/2_Demonstration_Protesters_2_525.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_290.jpg +2--Demonstration/2_Demonstration_Protesters_2_24.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_306.jpg +2--Demonstration/2_Demonstration_Protesters_2_204.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_924.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_816.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_800.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_64.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_896.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_30.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_162.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_98.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_517.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_451.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_476.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_224.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_364.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_771.jpg +2--Demonstration/2_Demonstration_Protesters_2_796.jpg +2--Demonstration/2_Demonstration_Protesters_2_589.jpg +2--Demonstration/2_Demonstration_Protesters_2_1033.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_159.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_914.jpg +2--Demonstration/2_Demonstration_Protesters_2_156.jpg +2--Demonstration/2_Demonstration_Protesters_2_646.jpg +2--Demonstration/2_Demonstration_Protesters_2_92.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_329.jpg +2--Demonstration/2_Demonstration_Protesters_2_508.jpg +2--Demonstration/2_Demonstration_Protesters_2_881.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_606.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_700.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_242.jpg +2--Demonstration/2_Demonstration_Protesters_2_65.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_942.jpg +2--Demonstration/2_Demonstration_Protesters_2_822.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_204.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_842.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_545.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_430.jpg +2--Demonstration/2_Demonstration_Protesters_2_738.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_335.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_655.jpg +2--Demonstration/2_Demonstration_Protesters_2_268.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_58.jpg +2--Demonstration/2_Demonstration_Protesters_2_179.jpg +2--Demonstration/2_Demonstration_Protesters_2_293.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_420.jpg +2--Demonstration/2_Demonstration_Protesters_2_258.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_456.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_378.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_286.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_512.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_402.jpg +2--Demonstration/2_Demonstration_Protesters_2_779.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_644.jpg +2--Demonstration/2_Demonstration_Protesters_2_221.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_687.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_100.jpg +2--Demonstration/2_Demonstration_Protesters_2_476.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_1.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_309.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_453.jpg +2--Demonstration/2_Demonstration_Protesters_2_16.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_470.jpg +2--Demonstration/2_Demonstration_Protesters_2_54.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_807.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_54.jpg +2--Demonstration/2_Demonstration_Protesters_2_460.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_915.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_158.jpg +2--Demonstration/2_Demonstration_Protesters_2_178.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_163.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_304.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_137.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_799.jpg +2--Demonstration/2_Demonstration_Protesters_2_561.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_367.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_547.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_196.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_41.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_282.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_659.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_90.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_690.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_604.jpg +2--Demonstration/2_Demonstration_Protesters_2_559.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_494.jpg +2--Demonstration/2_Demonstration_Protesters_2_362.jpg +2--Demonstration/2_Demonstration_Protesters_2_840.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_441.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_314.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_488.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_813.jpg +2--Demonstration/2_Demonstration_Protesters_2_800.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_487.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_600.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_319.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_410.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_244.jpg +2--Demonstration/2_Demonstration_Protesters_2_684.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_170.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_301.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_140.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_518.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_264.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_654.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_940.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_586.jpg +2--Demonstration/2_Demonstration_Protesters_2_577.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_695.jpg +2--Demonstration/2_Demonstration_Protesters_2_91.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_895.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_102.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_406.jpg +2--Demonstration/2_Demonstration_Protesters_2_519.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_171.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_985.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_584.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_114.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_726.jpg +2--Demonstration/2_Demonstration_Protesters_2_117.jpg +2--Demonstration/2_Demonstration_Protesters_2_456.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_162.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_395.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_231.jpg +2--Demonstration/2_Demonstration_Protesters_2_542.jpg +2--Demonstration/2_Demonstration_Protesters_2_563.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_200.jpg +2--Demonstration/2_Demonstration_Protesters_2_148.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_595.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_884.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_339.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_12.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_456.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_491.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_496.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_578.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_117.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_368.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_546.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_672.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_32.jpg +2--Demonstration/2_Demonstration_Protesters_2_493.jpg +2--Demonstration/2_Demonstration_Protesters_2_583.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_746.jpg +2--Demonstration/2_Demonstration_Protesters_2_352.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_79.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_577.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_816.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_385.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_752.jpg +2--Demonstration/2_Demonstration_Protesters_2_174.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_891.jpg +2--Demonstration/2_Demonstration_Protesters_2_291.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_360.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_57.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_330.jpg +2--Demonstration/2_Demonstration_Demonstration_Or_Protest_2_76.jpg +2--Demonstration/2_Demonstration_Demonstrators_2_268.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_823.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_545.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_609.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_172.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_391.jpg +2--Demonstration/2_Demonstration_Protesters_2_714.jpg +2--Demonstration/2_Demonstration_Political_Rally_2_960.jpg +20--Family_Group/20_Family_Group_Family_Group_20_108.jpg +20--Family_Group/20_Family_Group_Family_Group_20_360.jpg +20--Family_Group/20_Family_Group_Family_Group_20_326.jpg +20--Family_Group/20_Family_Group_Family_Group_20_1003.jpg +20--Family_Group/20_Family_Group_Family_Group_20_760.jpg +20--Family_Group/20_Family_Group_Family_Group_20_579.jpg +20--Family_Group/20_Family_Group_Family_Group_20_483.jpg +20--Family_Group/20_Family_Group_Family_Group_20_1037.jpg +20--Family_Group/20_Family_Group_Family_Group_20_672.jpg +20--Family_Group/20_Family_Group_Family_Group_20_72.jpg +20--Family_Group/20_Family_Group_Family_Group_20_282.jpg +20--Family_Group/20_Family_Group_Family_Group_20_648.jpg +20--Family_Group/20_Family_Group_Family_Group_20_843.jpg +20--Family_Group/20_Family_Group_Family_Group_20_696.jpg +20--Family_Group/20_Family_Group_Family_Group_20_739.jpg +20--Family_Group/20_Family_Group_Family_Group_20_339.jpg +20--Family_Group/20_Family_Group_Family_Group_20_227.jpg +20--Family_Group/20_Family_Group_Family_Group_20_427.jpg +20--Family_Group/20_Family_Group_Family_Group_20_33.jpg +20--Family_Group/20_Family_Group_Family_Group_20_101.jpg +20--Family_Group/20_Family_Group_Family_Group_20_90.jpg +20--Family_Group/20_Family_Group_Family_Group_20_453.jpg +20--Family_Group/20_Family_Group_Family_Group_20_775.jpg +20--Family_Group/20_Family_Group_Family_Group_20_636.jpg +20--Family_Group/20_Family_Group_Family_Group_20_193.jpg +20--Family_Group/20_Family_Group_Family_Group_20_277.jpg +20--Family_Group/20_Family_Group_Family_Group_20_849.jpg +20--Family_Group/20_Family_Group_Family_Group_20_411.jpg +20--Family_Group/20_Family_Group_Family_Group_20_22.jpg +20--Family_Group/20_Family_Group_Family_Group_20_750.jpg +20--Family_Group/20_Family_Group_Family_Group_20_599.jpg +20--Family_Group/20_Family_Group_Family_Group_20_412.jpg +20--Family_Group/20_Family_Group_Family_Group_20_100.jpg +20--Family_Group/20_Family_Group_Family_Group_20_540.jpg +20--Family_Group/20_Family_Group_Family_Group_20_64.jpg +20--Family_Group/20_Family_Group_Family_Group_20_255.jpg +20--Family_Group/20_Family_Group_Family_Group_20_87.jpg +20--Family_Group/20_Family_Group_Family_Group_20_799.jpg +20--Family_Group/20_Family_Group_Family_Group_20_663.jpg +20--Family_Group/20_Family_Group_Family_Group_20_272.jpg +20--Family_Group/20_Family_Group_Family_Group_20_730.jpg +20--Family_Group/20_Family_Group_Family_Group_20_374.jpg +20--Family_Group/20_Family_Group_Family_Group_20_1026.jpg +20--Family_Group/20_Family_Group_Family_Group_20_387.jpg +20--Family_Group/20_Family_Group_Family_Group_20_556.jpg +20--Family_Group/20_Family_Group_Family_Group_20_294.jpg +20--Family_Group/20_Family_Group_Family_Group_20_914.jpg +20--Family_Group/20_Family_Group_Family_Group_20_835.jpg +20--Family_Group/20_Family_Group_Family_Group_20_447.jpg +20--Family_Group/20_Family_Group_Family_Group_20_318.jpg +20--Family_Group/20_Family_Group_Family_Group_20_493.jpg +20--Family_Group/20_Family_Group_Family_Group_20_109.jpg +20--Family_Group/20_Family_Group_Family_Group_20_27.jpg +20--Family_Group/20_Family_Group_Family_Group_20_759.jpg +20--Family_Group/20_Family_Group_Family_Group_20_1015.jpg +20--Family_Group/20_Family_Group_Family_Group_20_544.jpg +20--Family_Group/20_Family_Group_Family_Group_20_702.jpg +20--Family_Group/20_Family_Group_Family_Group_20_62.jpg +21--Festival/21_Festival_Festival_21_491.jpg +21--Festival/21_Festival_Festival_21_943.jpg +21--Festival/21_Festival_Festival_21_22.jpg +21--Festival/21_Festival_Festival_21_193.jpg +21--Festival/21_Festival_Festival_21_785.jpg +21--Festival/21_Festival_Festival_21_225.jpg +21--Festival/21_Festival_Festival_21_601.jpg +21--Festival/21_Festival_Festival_21_741.jpg +21--Festival/21_Festival_Festival_21_777.jpg +21--Festival/21_Festival_Festival_21_664.jpg +21--Festival/21_Festival_Festival_21_373.jpg +21--Festival/21_Festival_Festival_21_100.jpg +21--Festival/21_Festival_Festival_21_797.jpg +21--Festival/21_Festival_Festival_21_513.jpg +21--Festival/21_Festival_Festival_21_811.jpg +21--Festival/21_Festival_Festival_21_340.jpg +21--Festival/21_Festival_Festival_21_354.jpg +21--Festival/21_Festival_Festival_21_881.jpg +21--Festival/21_Festival_Festival_21_201.jpg +21--Festival/21_Festival_Festival_21_395.jpg +21--Festival/21_Festival_Festival_21_414.jpg +21--Festival/21_Festival_Festival_21_604.jpg +21--Festival/21_Festival_Festival_21_462.jpg +21--Festival/21_Festival_Festival_21_378.jpg +21--Festival/21_Festival_Festival_21_42.jpg +21--Festival/21_Festival_Festival_21_275.jpg +21--Festival/21_Festival_Festival_21_97.jpg +21--Festival/21_Festival_Festival_21_218.jpg +21--Festival/21_Festival_Festival_21_290.jpg +21--Festival/21_Festival_Festival_21_107.jpg +21--Festival/21_Festival_Festival_21_727.jpg +21--Festival/21_Festival_Festival_21_254.jpg +21--Festival/21_Festival_Festival_21_936.jpg +21--Festival/21_Festival_Festival_21_605.jpg +21--Festival/21_Festival_Festival_21_585.jpg +21--Festival/21_Festival_Festival_21_219.jpg +21--Festival/21_Festival_Festival_21_830.jpg +21--Festival/21_Festival_Festival_21_526.jpg +21--Festival/21_Festival_Festival_21_976.jpg +21--Festival/21_Festival_Festival_21_640.jpg +21--Festival/21_Festival_Festival_21_660.jpg +21--Festival/21_Festival_Festival_21_210.jpg +21--Festival/21_Festival_Festival_21_331.jpg +21--Festival/21_Festival_Festival_21_140.jpg +21--Festival/21_Festival_Festival_21_562.jpg +22--Picnic/22_Picnic_Picnic_22_541.jpg +22--Picnic/22_Picnic_Picnic_22_152.jpg +22--Picnic/22_Picnic_Picnic_22_313.jpg +22--Picnic/22_Picnic_Picnic_22_564.jpg +22--Picnic/22_Picnic_Picnic_22_290.jpg +22--Picnic/22_Picnic_Picnic_22_928.jpg +22--Picnic/22_Picnic_Picnic_22_140.jpg +22--Picnic/22_Picnic_Picnic_22_732.jpg +22--Picnic/22_Picnic_Picnic_22_654.jpg +22--Picnic/22_Picnic_Picnic_22_308.jpg +22--Picnic/22_Picnic_Picnic_22_933.jpg +22--Picnic/22_Picnic_Picnic_22_36.jpg +22--Picnic/22_Picnic_Picnic_22_208.jpg +22--Picnic/22_Picnic_Picnic_22_354.jpg +22--Picnic/22_Picnic_Picnic_22_537.jpg +22--Picnic/22_Picnic_Picnic_22_357.jpg +22--Picnic/22_Picnic_Picnic_22_483.jpg +22--Picnic/22_Picnic_Picnic_22_561.jpg +22--Picnic/22_Picnic_Picnic_22_10.jpg +22--Picnic/22_Picnic_Picnic_22_688.jpg +22--Picnic/22_Picnic_Picnic_22_444.jpg +22--Picnic/22_Picnic_Picnic_22_241.jpg +22--Picnic/22_Picnic_Picnic_22_594.jpg +22--Picnic/22_Picnic_Picnic_22_310.jpg +23--Shoppers/23_Shoppers_Shoppers_23_640.jpg +23--Shoppers/23_Shoppers_Shoppers_23_854.jpg +23--Shoppers/23_Shoppers_Shoppers_23_271.jpg +23--Shoppers/23_Shoppers_Shoppers_23_812.jpg +23--Shoppers/23_Shoppers_Shoppers_23_122.jpg +23--Shoppers/23_Shoppers_Shoppers_23_514.jpg +23--Shoppers/23_Shoppers_Shoppers_23_302.jpg +23--Shoppers/23_Shoppers_Shoppers_23_708.jpg +23--Shoppers/23_Shoppers_Shoppers_23_823.jpg +23--Shoppers/23_Shoppers_Shoppers_23_243.jpg +23--Shoppers/23_Shoppers_Shoppers_23_328.jpg +23--Shoppers/23_Shoppers_Shoppers_23_599.jpg +23--Shoppers/23_Shoppers_Shoppers_23_25.jpg +23--Shoppers/23_Shoppers_Shoppers_23_232.jpg +23--Shoppers/23_Shoppers_Shoppers_23_500.jpg +23--Shoppers/23_Shoppers_Shoppers_23_10.jpg +23--Shoppers/23_Shoppers_Shoppers_23_801.jpg +23--Shoppers/23_Shoppers_Shoppers_23_167.jpg +23--Shoppers/23_Shoppers_Shoppers_23_65.jpg +23--Shoppers/23_Shoppers_Shoppers_23_223.jpg +23--Shoppers/23_Shoppers_Shoppers_23_817.jpg +23--Shoppers/23_Shoppers_Shoppers_23_91.jpg +23--Shoppers/23_Shoppers_Shoppers_23_777.jpg +23--Shoppers/23_Shoppers_Shoppers_23_259.jpg +23--Shoppers/23_Shoppers_Shoppers_23_364.jpg +23--Shoppers/23_Shoppers_Shoppers_23_665.jpg +23--Shoppers/23_Shoppers_Shoppers_23_60.jpg +23--Shoppers/23_Shoppers_Shoppers_23_571.jpg +23--Shoppers/23_Shoppers_Shoppers_23_461.jpg +23--Shoppers/23_Shoppers_Shoppers_23_485.jpg +23--Shoppers/23_Shoppers_Shoppers_23_607.jpg +23--Shoppers/23_Shoppers_Shoppers_23_802.jpg +23--Shoppers/23_Shoppers_Shoppers_23_459.jpg +23--Shoppers/23_Shoppers_Shoppers_23_561.jpg +23--Shoppers/23_Shoppers_Shoppers_23_880.jpg +23--Shoppers/23_Shoppers_Shoppers_23_511.jpg +23--Shoppers/23_Shoppers_Shoppers_23_450.jpg +23--Shoppers/23_Shoppers_Shoppers_23_543.jpg +23--Shoppers/23_Shoppers_Shoppers_23_43.jpg +23--Shoppers/23_Shoppers_Shoppers_23_197.jpg +23--Shoppers/23_Shoppers_Shoppers_23_294.jpg +23--Shoppers/23_Shoppers_Shoppers_23_22.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_268.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_703.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_633.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_372.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_329.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_405.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_887.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_702.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_67.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_254.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_264.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_281.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_95.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_691.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_890.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_129.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_315.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_824.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_1037.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_644.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_601.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_931.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_10.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_523.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_368.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_15.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_431.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_812.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_901.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_763.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_115.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_133.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_904.jpg +24--Soldier_Firing/24_Soldier_Firing_Soldier_Firing_24_540.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_734.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_467.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_563.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_527.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_640.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_463.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_1045.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_700.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_761.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_882.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_440.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_469.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_728.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_883.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_419.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_936.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_437.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_271.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_121.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_873.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_1026.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_912.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_1046.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_16.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_683.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_614.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_173.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_374.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_869.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_986.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_324.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_585.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_59.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_747.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_325.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_707.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_18.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_515.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_174.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_436.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_513.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_343.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_169.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_1029.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_9.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_679.jpg +25--Soldier_Patrol/25_Soldier_Patrol_Soldier_Patrol_25_993.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_750.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_336.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_567.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_764.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_719.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_85.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_942.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_64.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_886.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_307.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_710.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_520.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_262.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_529.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_259.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_204.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_1022.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_178.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_832.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_223.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_405.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_345.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_606.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_192.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_393.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_689.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_390.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_236.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_893.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_184.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_359.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_991.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_934.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_149.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_9.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_619.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_610.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_245.jpg +26--Soldier_Drilling/26_Soldier_Drilling_Soldiers_Drilling_26_31.jpg +27--Spa/27_Spa_Spa_27_420.jpg +27--Spa/27_Spa_Spa_27_212.jpg +27--Spa/27_Spa_Spa_27_360.jpg +27--Spa/27_Spa_Spa_27_691.jpg +27--Spa/27_Spa_Spa_27_728.jpg +27--Spa/27_Spa_Spa_27_782.jpg +27--Spa/27_Spa_Spa_27_329.jpg +27--Spa/27_Spa_Spa_27_121.jpg +27--Spa/27_Spa_Spa_27_168.jpg +27--Spa/27_Spa_Spa_27_851.jpg +27--Spa/27_Spa_Spa_27_656.jpg +27--Spa/27_Spa_Spa_27_716.jpg +27--Spa/27_Spa_Spa_27_157.jpg +27--Spa/27_Spa_Spa_27_393.jpg +27--Spa/27_Spa_Spa_27_225.jpg +27--Spa/27_Spa_Spa_27_768.jpg +27--Spa/27_Spa_Spa_27_38.jpg +27--Spa/27_Spa_Spa_27_512.jpg +27--Spa/27_Spa_Spa_27_486.jpg +27--Spa/27_Spa_Spa_27_322.jpg +27--Spa/27_Spa_Spa_27_109.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_868.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_590.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_656.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_989.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_327.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_90.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_683.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_643.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_751.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_357.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_866.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_959.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_118.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_862.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_535.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_826.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_877.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_124.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_244.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_86.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_480.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_448.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_7.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_1018.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_663.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_557.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_770.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_487.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_198.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_130.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_144.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_835.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_165.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_126.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_711.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_22.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_782.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_792.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_880.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_265.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_282.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_2.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_267.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_723.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_507.jpg +28--Sports_Fan/28_Sports_Fan_Sports_Fan_28_697.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_221.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_463.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_363.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_374.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_311.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_158.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_316.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_211.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_130.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_10.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_222.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_251.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_524.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_161.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_432.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_84.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_632.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_941.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_358.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_312.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_590.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_66.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_451.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_74.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_250.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_626.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_21.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_585.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_132.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_761.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_822.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_902.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_42.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_491.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_494.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_81.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_146.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_380.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_208.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_436.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_900.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_525.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_489.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_126.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_684.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_477.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_624.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_310.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_506.jpg +29--Students_Schoolkids/29_Students_Schoolkids_Students_Schoolkids_29_148.jpg +3--Riot/3_Riot_Riot_3_521.jpg +3--Riot/3_Riot_Riot_3_604.jpg +3--Riot/3_Riot_Riot_3_522.jpg +3--Riot/3_Riot_Riot_3_415.jpg +3--Riot/3_Riot_Riot_3_318.jpg +3--Riot/3_Riot_Riot_3_199.jpg +3--Riot/3_Riot_Riot_3_488.jpg +3--Riot/3_Riot_Riot_3_354.jpg +3--Riot/3_Riot_Riot_3_101.jpg +3--Riot/3_Riot_Riot_3_666.jpg +3--Riot/3_Riot_Riot_3_263.jpg +3--Riot/3_Riot_Riot_3_506.jpg +3--Riot/3_Riot_Riot_3_772.jpg +3--Riot/3_Riot_Riot_3_186.jpg +3--Riot/3_Riot_Riot_3_542.jpg +3--Riot/3_Riot_Riot_3_436.jpg +3--Riot/3_Riot_Riot_3_306.jpg +3--Riot/3_Riot_Riot_3_716.jpg +3--Riot/3_Riot_Riot_3_790.jpg +3--Riot/3_Riot_Riot_3_689.jpg +3--Riot/3_Riot_Riot_3_710.jpg +3--Riot/3_Riot_Riot_3_393.jpg +3--Riot/3_Riot_Riot_3_725.jpg +3--Riot/3_Riot_Riot_3_123.jpg +3--Riot/3_Riot_Riot_3_963.jpg +3--Riot/3_Riot_Riot_3_993.jpg +3--Riot/3_Riot_Riot_3_958.jpg +3--Riot/3_Riot_Riot_3_1037.jpg +3--Riot/3_Riot_Riot_3_273.jpg +3--Riot/3_Riot_Riot_3_750.jpg +3--Riot/3_Riot_Riot_3_166.jpg +3--Riot/3_Riot_Riot_3_405.jpg +3--Riot/3_Riot_Riot_3_137.jpg +3--Riot/3_Riot_Riot_3_26.jpg +3--Riot/3_Riot_Riot_3_184.jpg +3--Riot/3_Riot_Riot_3_438.jpg +3--Riot/3_Riot_Riot_3_765.jpg +3--Riot/3_Riot_Riot_3_480.jpg +3--Riot/3_Riot_Riot_3_322.jpg +3--Riot/3_Riot_Riot_3_106.jpg +30--Surgeons/30_Surgeons_Surgeons_30_107.jpg +30--Surgeons/30_Surgeons_Surgeons_30_491.jpg +30--Surgeons/30_Surgeons_Surgeons_30_862.jpg +30--Surgeons/30_Surgeons_Surgeons_30_819.jpg +30--Surgeons/30_Surgeons_Surgeons_30_256.jpg +30--Surgeons/30_Surgeons_Surgeons_30_708.jpg +30--Surgeons/30_Surgeons_Surgeons_30_533.jpg +30--Surgeons/30_Surgeons_Surgeons_30_988.jpg +30--Surgeons/30_Surgeons_Surgeons_30_77.jpg +30--Surgeons/30_Surgeons_Surgeons_30_63.jpg +30--Surgeons/30_Surgeons_Surgeons_30_95.jpg +30--Surgeons/30_Surgeons_Surgeons_30_554.jpg +30--Surgeons/30_Surgeons_Surgeons_30_264.jpg +30--Surgeons/30_Surgeons_Surgeons_30_8.jpg +30--Surgeons/30_Surgeons_Surgeons_30_749.jpg +30--Surgeons/30_Surgeons_Surgeons_30_932.jpg +30--Surgeons/30_Surgeons_Surgeons_30_115.jpg +30--Surgeons/30_Surgeons_Surgeons_30_40.jpg +30--Surgeons/30_Surgeons_Surgeons_30_43.jpg +30--Surgeons/30_Surgeons_Surgeons_30_696.jpg +30--Surgeons/30_Surgeons_Surgeons_30_746.jpg +30--Surgeons/30_Surgeons_Surgeons_30_397.jpg +30--Surgeons/30_Surgeons_Surgeons_30_914.jpg +30--Surgeons/30_Surgeons_Surgeons_30_525.jpg +30--Surgeons/30_Surgeons_Surgeons_30_482.jpg +30--Surgeons/30_Surgeons_Surgeons_30_122.jpg +30--Surgeons/30_Surgeons_Surgeons_30_555.jpg +30--Surgeons/30_Surgeons_Surgeons_30_486.jpg +30--Surgeons/30_Surgeons_Surgeons_30_552.jpg +30--Surgeons/30_Surgeons_Surgeons_30_705.jpg +30--Surgeons/30_Surgeons_Surgeons_30_490.jpg +30--Surgeons/30_Surgeons_Surgeons_30_343.jpg +30--Surgeons/30_Surgeons_Surgeons_30_722.jpg +30--Surgeons/30_Surgeons_Surgeons_30_861.jpg +30--Surgeons/30_Surgeons_Surgeons_30_840.jpg +30--Surgeons/30_Surgeons_Surgeons_30_778.jpg +30--Surgeons/30_Surgeons_Surgeons_30_979.jpg +30--Surgeons/30_Surgeons_Surgeons_30_160.jpg +30--Surgeons/30_Surgeons_Surgeons_30_911.jpg +30--Surgeons/30_Surgeons_Surgeons_30_823.jpg +30--Surgeons/30_Surgeons_Surgeons_30_865.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_932.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_304.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_667.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_769.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_740.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_162.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_21.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_93.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_613.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_484.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_339.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_818.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_788.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_227.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_43.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_200.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_327.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_215.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_212.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_34.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_230.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_927.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_118.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_225.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_220.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_465.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_276.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_742.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_420.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_572.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_726.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_214.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_858.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_410.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_683.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_847.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_685.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_722.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_267.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_188.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_195.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_517.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_842.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_176.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_111.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_358.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_888.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_373.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_720.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_351.jpg +31--Waiter_Waitress/31_Waiter_Waitress_Waiter_Waitress_31_915.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_812.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_529.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_932.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_987.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_101.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_723.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_135.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_357.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_658.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_944.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_624.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_42.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_692.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_530.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_44.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_870.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_494.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_169.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_786.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_468.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_788.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_594.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_516.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_1039.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_134.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_512.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_209.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_1038.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_462.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_860.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_400.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_443.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_170.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_110.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_262.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_26.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_204.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_408.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_116.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_738.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_68.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_434.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_90.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_595.jpg +32--Worker_Laborer/32_Worker_Laborer_Worker_Laborer_32_566.jpg +33--Running/33_Running_Running_33_547.jpg +33--Running/33_Running_Running_33_332.jpg +33--Running/33_Running_Running_33_17.jpg +33--Running/33_Running_Running_33_107.jpg +33--Running/33_Running_Running_33_760.jpg +33--Running/33_Running_Running_33_490.jpg +33--Running/33_Running_Running_33_786.jpg +33--Running/33_Running_Running_33_119.jpg +33--Running/33_Running_Running_33_771.jpg +33--Running/33_Running_Running_33_316.jpg +33--Running/33_Running_Running_33_569.jpg +33--Running/33_Running_Running_33_341.jpg +33--Running/33_Running_Running_33_286.jpg +33--Running/33_Running_Running_33_891.jpg +33--Running/33_Running_Running_33_475.jpg +33--Running/33_Running_Running_33_577.jpg +33--Running/33_Running_Running_33_209.jpg +33--Running/33_Running_Running_33_35.jpg +33--Running/33_Running_Running_33_538.jpg +33--Running/33_Running_Running_33_747.jpg +33--Running/33_Running_Running_33_517.jpg +33--Running/33_Running_Running_33_44.jpg +33--Running/33_Running_Running_33_586.jpg +33--Running/33_Running_Running_33_266.jpg +33--Running/33_Running_Running_33_411.jpg +33--Running/33_Running_Running_33_203.jpg +34--Baseball/34_Baseball_Baseball_34_756.jpg +34--Baseball/34_Baseball_Baseball_34_560.jpg +34--Baseball/34_Baseball_Baseball_34_608.jpg +34--Baseball/34_Baseball_Baseball_34_350.jpg +34--Baseball/34_Baseball_Baseball_34_600.jpg +34--Baseball/34_Baseball_Baseball_34_667.jpg +34--Baseball/34_Baseball_Baseball_34_585.jpg +34--Baseball/34_Baseball_Baseball_34_391.jpg +34--Baseball/34_Baseball_Baseball_34_436.jpg +34--Baseball/34_Baseball_Baseball_34_867.jpg +34--Baseball/34_Baseball_Baseball_34_164.jpg +34--Baseball/34_Baseball_Baseball_34_895.jpg +34--Baseball/34_Baseball_Baseball_34_828.jpg +34--Baseball/34_Baseball_Baseball_34_886.jpg +34--Baseball/34_Baseball_Baseball_34_580.jpg +34--Baseball/34_Baseball_Baseball_34_171.jpg +34--Baseball/34_Baseball_Baseball_34_143.jpg +34--Baseball/34_Baseball_Baseball_34_66.jpg +34--Baseball/34_Baseball_Baseball_34_356.jpg +34--Baseball/34_Baseball_Baseball_34_127.jpg +34--Baseball/34_Baseball_Baseball_34_829.jpg +34--Baseball/34_Baseball_Baseball_34_622.jpg +34--Baseball/34_Baseball_Baseball_34_73.jpg +34--Baseball/34_Baseball_Baseball_34_16.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_124.jpg +35--Basketball/35_Basketball_playingbasketball_35_36.jpg +35--Basketball/35_Basketball_playingbasketball_35_134.jpg +35--Basketball/35_Basketball_Basketball_35_635.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_391.jpg +35--Basketball/35_Basketball_playingbasketball_35_730.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_662.jpg +35--Basketball/35_Basketball_playingbasketball_35_350.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_133.jpg +35--Basketball/35_Basketball_playingbasketball_35_585.jpg +35--Basketball/35_Basketball_Basketball_35_185.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_858.jpg +35--Basketball/35_Basketball_playingbasketball_35_431.jpg +35--Basketball/35_Basketball_playingbasketball_35_794.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_565.jpg +35--Basketball/35_Basketball_playingbasketball_35_78.jpg +35--Basketball/35_Basketball_playingbasketball_35_476.jpg +35--Basketball/35_Basketball_Basketball_35_180.jpg +35--Basketball/35_Basketball_playingbasketball_35_127.jpg +35--Basketball/35_Basketball_Basketball_35_209.jpg +35--Basketball/35_Basketball_playingbasketball_35_682.jpg +35--Basketball/35_Basketball_playingbasketball_35_523.jpg +35--Basketball/35_Basketball_playingbasketball_35_362.jpg +35--Basketball/35_Basketball_playingbasketball_35_582.jpg +35--Basketball/35_Basketball_Basketball_35_529.jpg +35--Basketball/35_Basketball_playingbasketball_35_612.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_937.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_290.jpg +35--Basketball/35_Basketball_playingbasketball_35_199.jpg +35--Basketball/35_Basketball_playingbasketball_35_495.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_197.jpg +35--Basketball/35_Basketball_playingbasketball_35_556.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_256.jpg +35--Basketball/35_Basketball_playingbasketball_35_823.jpg +35--Basketball/35_Basketball_Basketball_35_754.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_82.jpg +35--Basketball/35_Basketball_playingbasketball_35_606.jpg +35--Basketball/35_Basketball_playingbasketball_35_651.jpg +35--Basketball/35_Basketball_playingbasketball_35_209.jpg +35--Basketball/35_Basketball_playingbasketball_35_156.jpg +35--Basketball/35_Basketball_playingbasketball_35_644.jpg +35--Basketball/35_Basketball_playingbasketball_35_73.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_80.jpg +35--Basketball/35_Basketball_playingbasketball_35_276.jpg +35--Basketball/35_Basketball_Basketball_35_361.jpg +35--Basketball/35_Basketball_playingbasketball_35_764.jpg +35--Basketball/35_Basketball_Basketball_35_664.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_64.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_412.jpg +35--Basketball/35_Basketball_Basketball_35_737.jpg +35--Basketball/35_Basketball_playingbasketball_35_566.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_208.jpg +35--Basketball/35_Basketball_playingbasketball_35_377.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_287.jpg +35--Basketball/35_Basketball_playingbasketball_35_491.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_389.jpg +35--Basketball/35_Basketball_Basketball_35_712.jpg +35--Basketball/35_Basketball_playingbasketball_35_588.jpg +35--Basketball/35_Basketball_playingbasketball_35_3.jpg +35--Basketball/35_Basketball_playingbasketball_35_279.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_904.jpg +35--Basketball/35_Basketball_playingbasketball_35_782.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_393.jpg +35--Basketball/35_Basketball_Basketball_35_684.jpg +35--Basketball/35_Basketball_Basketball_35_549.jpg +35--Basketball/35_Basketball_playingbasketball_35_632.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_446.jpg +35--Basketball/35_Basketball_playingbasketball_35_283.jpg +35--Basketball/35_Basketball_Basketball_35_449.jpg +35--Basketball/35_Basketball_Basketball_35_327.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_827.jpg +35--Basketball/35_Basketball_playingbasketball_35_113.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_513.jpg +35--Basketball/35_Basketball_playingbasketball_35_11.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_681.jpg +35--Basketball/35_Basketball_playingbasketball_35_248.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_736.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_153.jpg +35--Basketball/35_Basketball_playingbasketball_35_19.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_542.jpg +35--Basketball/35_Basketball_playingbasketball_35_795.jpg +35--Basketball/35_Basketball_playingbasketball_35_252.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_423.jpg +35--Basketball/35_Basketball_playingbasketball_35_195.jpg +35--Basketball/35_Basketball_playingbasketball_35_555.jpg +35--Basketball/35_Basketball_Basketball_35_653.jpg +35--Basketball/35_Basketball_Basketball_35_107.jpg +35--Basketball/35_Basketball_playingbasketball_35_251.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_276.jpg +35--Basketball/35_Basketball_playingbasketball_35_619.jpg +35--Basketball/35_Basketball_Basketball_35_304.jpg +35--Basketball/35_Basketball_Basketball_35_457.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_341.jpg +35--Basketball/35_Basketball_playingbasketball_35_405.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_375.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_479.jpg +35--Basketball/35_Basketball_Basketball_35_158.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_254.jpg +35--Basketball/35_Basketball_playingbasketball_35_219.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_460.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_709.jpg +35--Basketball/35_Basketball_playingbasketball_35_732.jpg +35--Basketball/35_Basketball_playingbasketball_35_13.jpg +35--Basketball/35_Basketball_playingbasketball_35_433.jpg +35--Basketball/35_Basketball_Basketball_35_393.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_178.jpg +35--Basketball/35_Basketball_playingbasketball_35_366.jpg +35--Basketball/35_Basketball_playingbasketball_35_65.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_309.jpg +35--Basketball/35_Basketball_playingbasketball_35_636.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_192.jpg +35--Basketball/35_Basketball_playingbasketball_35_511.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_216.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_998.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_689.jpg +35--Basketball/35_Basketball_playingbasketball_35_91.jpg +35--Basketball/35_Basketball_playingbasketball_35_449.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_50.jpg +35--Basketball/35_Basketball_playingbasketball_35_135.jpg +35--Basketball/35_Basketball_playingbasketball_35_674.jpg +35--Basketball/35_Basketball_playingbasketball_35_876.jpg +35--Basketball/35_Basketball_Basketball_35_801.jpg +35--Basketball/35_Basketball_playingbasketball_35_2.jpg +35--Basketball/35_Basketball_playingbasketball_35_417.jpg +35--Basketball/35_Basketball_Basketball_35_579.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_429.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_478.jpg +35--Basketball/35_Basketball_Basketball_35_458.jpg +35--Basketball/35_Basketball_playingbasketball_35_818.jpg +35--Basketball/35_Basketball_Basketball_35_791.jpg +35--Basketball/35_Basketball_basketballgame_ball_35_201.jpg +36--Football/36_Football_americanfootball_ball_36_81.jpg +36--Football/36_Football_americanfootball_ball_36_234.jpg +36--Football/36_Football_americanfootball_ball_36_162.jpg +36--Football/36_Football_americanfootball_ball_36_257.jpg +36--Football/36_Football_americanfootball_ball_36_301.jpg +36--Football/36_Football_americanfootball_ball_36_279.jpg +36--Football/36_Football_americanfootball_ball_36_510.jpg +36--Football/36_Football_americanfootball_ball_36_16.jpg +36--Football/36_Football_americanfootball_ball_36_396.jpg +36--Football/36_Football_Football_36_157.jpg +36--Football/36_Football_americanfootball_ball_36_526.jpg +36--Football/36_Football_americanfootball_ball_36_132.jpg +36--Football/36_Football_americanfootball_ball_36_358.jpg +36--Football/36_Football_Football_36_62.jpg +36--Football/36_Football_americanfootball_ball_36_853.jpg +36--Football/36_Football_americanfootball_ball_36_25.jpg +36--Football/36_Football_americanfootball_ball_36_615.jpg +36--Football/36_Football_americanfootball_ball_36_487.jpg +36--Football/36_Football_americanfootball_ball_36_693.jpg +36--Football/36_Football_Football_36_138.jpg +36--Football/36_Football_americanfootball_ball_36_114.jpg +36--Football/36_Football_americanfootball_ball_36_126.jpg +36--Football/36_Football_americanfootball_ball_36_265.jpg +36--Football/36_Football_americanfootball_ball_36_456.jpg +36--Football/36_Football_Football_36_80.jpg +36--Football/36_Football_Football_36_108.jpg +36--Football/36_Football_americanfootball_ball_36_38.jpg +36--Football/36_Football_americanfootball_ball_36_327.jpg +36--Football/36_Football_Football_36_110.jpg +36--Football/36_Football_americanfootball_ball_36_373.jpg +36--Football/36_Football_americanfootball_ball_36_631.jpg +36--Football/36_Football_Football_36_202.jpg +36--Football/36_Football_americanfootball_ball_36_647.jpg +36--Football/36_Football_americanfootball_ball_36_321.jpg +36--Football/36_Football_americanfootball_ball_36_681.jpg +36--Football/36_Football_Football_36_23.jpg +36--Football/36_Football_americanfootball_ball_36_273.jpg +36--Football/36_Football_Football_36_194.jpg +36--Football/36_Football_americanfootball_ball_36_6.jpg +36--Football/36_Football_americanfootball_ball_36_27.jpg +36--Football/36_Football_americanfootball_ball_36_111.jpg +36--Football/36_Football_americanfootball_ball_36_1021.jpg +37--Soccer/37_Soccer_soccer_ball_37_113.jpg +37--Soccer/37_Soccer_Soccer_37_263.jpg +37--Soccer/37_Soccer_soccer_ball_37_150.jpg +37--Soccer/37_Soccer_Soccer_37_394.jpg +37--Soccer/37_Soccer_soccer_ball_37_994.jpg +37--Soccer/37_Soccer_Soccer_37_3.jpg +37--Soccer/37_Soccer_soccer_ball_37_720.jpg +37--Soccer/37_Soccer_soccer_ball_37_114.jpg +37--Soccer/37_Soccer_Soccer_37_170.jpg +37--Soccer/37_Soccer_soccer_ball_37_643.jpg +37--Soccer/37_Soccer_soccer_ball_37_32.jpg +37--Soccer/37_Soccer_Soccer_37_469.jpg +37--Soccer/37_Soccer_soccer_ball_37_583.jpg +37--Soccer/37_Soccer_soccer_ball_37_345.jpg +37--Soccer/37_Soccer_soccer_ball_37_233.jpg +37--Soccer/37_Soccer_soccer_ball_37_803.jpg +37--Soccer/37_Soccer_soccer_ball_37_238.jpg +37--Soccer/37_Soccer_soccer_ball_37_867.jpg +37--Soccer/37_Soccer_soccer_ball_37_926.jpg +37--Soccer/37_Soccer_soccer_ball_37_841.jpg +37--Soccer/37_Soccer_soccer_ball_37_1001.jpg +37--Soccer/37_Soccer_soccer_ball_37_506.jpg +37--Soccer/37_Soccer_soccer_ball_37_698.jpg +37--Soccer/37_Soccer_Soccer_37_415.jpg +37--Soccer/37_Soccer_soccer_ball_37_483.jpg +37--Soccer/37_Soccer_soccer_ball_37_254.jpg +37--Soccer/37_Soccer_soccer_ball_37_1011.jpg +37--Soccer/37_Soccer_soccer_ball_37_832.jpg +37--Soccer/37_Soccer_soccer_ball_37_512.jpg +37--Soccer/37_Soccer_Soccer_37_655.jpg +37--Soccer/37_Soccer_Soccer_37_74.jpg +37--Soccer/37_Soccer_soccer_ball_37_886.jpg +37--Soccer/37_Soccer_soccer_ball_37_74.jpg +37--Soccer/37_Soccer_Soccer_37_618.jpg +37--Soccer/37_Soccer_soccer_ball_37_479.jpg +37--Soccer/37_Soccer_Soccer_37_52.jpg +37--Soccer/37_Soccer_soccer_ball_37_171.jpg +37--Soccer/37_Soccer_soccer_ball_37_269.jpg +37--Soccer/37_Soccer_Soccer_37_114.jpg +37--Soccer/37_Soccer_Soccer_37_565.jpg +37--Soccer/37_Soccer_soccer_ball_37_341.jpg +37--Soccer/37_Soccer_soccer_ball_37_281.jpg +37--Soccer/37_Soccer_soccer_ball_37_685.jpg +37--Soccer/37_Soccer_soccer_ball_37_28.jpg +37--Soccer/37_Soccer_soccer_ball_37_88.jpg +37--Soccer/37_Soccer_soccer_ball_37_8.jpg +37--Soccer/37_Soccer_soccer_ball_37_60.jpg +37--Soccer/37_Soccer_soccer_ball_37_818.jpg +37--Soccer/37_Soccer_soccer_ball_37_692.jpg +37--Soccer/37_Soccer_Soccer_37_50.jpg +37--Soccer/37_Soccer_Soccer_37_651.jpg +37--Soccer/37_Soccer_soccer_ball_37_851.jpg +37--Soccer/37_Soccer_Soccer_37_393.jpg +37--Soccer/37_Soccer_soccer_ball_37_815.jpg +37--Soccer/37_Soccer_soccer_ball_37_907.jpg +38--Tennis/38_Tennis_Tennis_38_507.jpg +38--Tennis/38_Tennis_Tennis_38_558.jpg +38--Tennis/38_Tennis_Tennis_38_40.jpg +38--Tennis/38_Tennis_Tennis_38_142.jpg +38--Tennis/38_Tennis_Tennis_38_81.jpg +38--Tennis/38_Tennis_Tennis_38_323.jpg +38--Tennis/38_Tennis_Tennis_38_497.jpg +38--Tennis/38_Tennis_Tennis_38_592.jpg +38--Tennis/38_Tennis_Tennis_38_717.jpg +38--Tennis/38_Tennis_Tennis_38_300.jpg +38--Tennis/38_Tennis_Tennis_38_131.jpg +38--Tennis/38_Tennis_Tennis_38_683.jpg +38--Tennis/38_Tennis_Tennis_38_332.jpg +38--Tennis/38_Tennis_Tennis_38_23.jpg +38--Tennis/38_Tennis_Tennis_38_531.jpg +38--Tennis/38_Tennis_Tennis_38_604.jpg +38--Tennis/38_Tennis_Tennis_38_535.jpg +38--Tennis/38_Tennis_Tennis_38_94.jpg +38--Tennis/38_Tennis_Tennis_38_580.jpg +38--Tennis/38_Tennis_Tennis_38_485.jpg +38--Tennis/38_Tennis_Tennis_38_319.jpg +38--Tennis/38_Tennis_Tennis_38_371.jpg +38--Tennis/38_Tennis_Tennis_38_232.jpg +38--Tennis/38_Tennis_Tennis_38_420.jpg +38--Tennis/38_Tennis_Tennis_38_182.jpg +38--Tennis/38_Tennis_Tennis_38_758.jpg +38--Tennis/38_Tennis_Tennis_38_501.jpg +38--Tennis/38_Tennis_Tennis_38_230.jpg +38--Tennis/38_Tennis_Tennis_38_240.jpg +38--Tennis/38_Tennis_Tennis_38_666.jpg +38--Tennis/38_Tennis_Tennis_38_18.jpg +38--Tennis/38_Tennis_Tennis_38_128.jpg +38--Tennis/38_Tennis_Tennis_38_692.jpg +38--Tennis/38_Tennis_Tennis_38_452.jpg +38--Tennis/38_Tennis_Tennis_38_754.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_901.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_855.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_200.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_417.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_121.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_176.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_103.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_825.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_583.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_276.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_388.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_541.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_487.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_416.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_992.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_438.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_349.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_793.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_1026.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_252.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_794.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_1047.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_529.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_1029.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_495.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_382.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_661.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_362.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_616.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_163.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_504.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_348.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_272.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_156.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_908.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_342.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_668.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_1000.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_777.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_275.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_611.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_87.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_119.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_765.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_696.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_389.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_354.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_682.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_495.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_203.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_595.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_943.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_486.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_819.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_463.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_568.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_458.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_869.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_941.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_778.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_310.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_270.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_283.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_169.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_359.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_44.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_249.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_591.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_81.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_751.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_817.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_546.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_440.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_344.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_77.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_658.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_351.jpg +39--Ice_Skating/39_Ice_Skating_Ice_Skating_39_875.jpg +39--Ice_Skating/39_Ice_Skating_iceskiing_39_138.jpg +4--Dancing/4_Dancing_Dancing_4_1000.jpg +4--Dancing/4_Dancing_Dancing_4_1043.jpg +4--Dancing/4_Dancing_Dancing_4_84.jpg +4--Dancing/4_Dancing_Dancing_4_327.jpg +4--Dancing/4_Dancing_Dancing_4_1036.jpg +4--Dancing/4_Dancing_Dancing_4_41.jpg +4--Dancing/4_Dancing_Dancing_4_384.jpg +4--Dancing/4_Dancing_Dancing_4_422.jpg +4--Dancing/4_Dancing_Dancing_4_289.jpg +4--Dancing/4_Dancing_Dancing_4_156.jpg +4--Dancing/4_Dancing_Dancing_4_715.jpg +4--Dancing/4_Dancing_Dancing_4_194.jpg +4--Dancing/4_Dancing_Dancing_4_718.jpg +4--Dancing/4_Dancing_Dancing_4_319.jpg +4--Dancing/4_Dancing_Dancing_4_253.jpg +4--Dancing/4_Dancing_Dancing_4_489.jpg +4--Dancing/4_Dancing_Dancing_4_224.jpg +4--Dancing/4_Dancing_Dancing_4_162.jpg +4--Dancing/4_Dancing_Dancing_4_514.jpg +4--Dancing/4_Dancing_Dancing_4_57.jpg +4--Dancing/4_Dancing_Dancing_4_915.jpg +4--Dancing/4_Dancing_Dancing_4_240.jpg +4--Dancing/4_Dancing_Dancing_4_228.jpg +4--Dancing/4_Dancing_Dancing_4_517.jpg +4--Dancing/4_Dancing_Dancing_4_922.jpg +4--Dancing/4_Dancing_Dancing_4_21.jpg +4--Dancing/4_Dancing_Dancing_4_97.jpg +4--Dancing/4_Dancing_Dancing_4_769.jpg +4--Dancing/4_Dancing_Dancing_4_189.jpg +4--Dancing/4_Dancing_Dancing_4_885.jpg +4--Dancing/4_Dancing_Dancing_4_960.jpg +4--Dancing/4_Dancing_Dancing_4_375.jpg +4--Dancing/4_Dancing_Dancing_4_813.jpg +4--Dancing/4_Dancing_Dancing_4_1026.jpg +4--Dancing/4_Dancing_Dancing_4_854.jpg +4--Dancing/4_Dancing_Dancing_4_983.jpg +4--Dancing/4_Dancing_Dancing_4_878.jpg +4--Dancing/4_Dancing_Dancing_4_53.jpg +4--Dancing/4_Dancing_Dancing_4_124.jpg +4--Dancing/4_Dancing_Dancing_4_494.jpg +4--Dancing/4_Dancing_Dancing_4_378.jpg +4--Dancing/4_Dancing_Dancing_4_1029.jpg +4--Dancing/4_Dancing_Dancing_4_1028.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_460.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_521.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_57.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_1022.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_161.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_980.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_361.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_771.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_668.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_869.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_740.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_273.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_1035.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_950.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_642.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_197.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_698.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_255.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_646.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_596.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_171.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_593.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_845.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_627.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_894.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_488.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_260.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_285.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_47.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_492.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_48.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_762.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_887.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_776.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_175.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_659.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_920.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_749.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_138.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_401.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_945.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_242.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_274.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_24.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_364.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_389.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_783.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_609.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_612.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_911.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_891.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_422.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_108.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_727.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_156.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_1043.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_115.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_484.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_331.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_420.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_1044.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_580.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_566.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_638.jpg +40--Gymnastics/40_Gymnastics_Gymnastics_40_805.jpg +41--Swimming/41_Swimming_Swimming_41_580.jpg +41--Swimming/41_Swimming_Swimmer_41_35.jpg +41--Swimming/41_Swimming_Swimmer_41_308.jpg +41--Swimming/41_Swimming_Swimmer_41_369.jpg +41--Swimming/41_Swimming_Swimmer_41_935.jpg +41--Swimming/41_Swimming_Swimmer_41_449.jpg +41--Swimming/41_Swimming_Swimmer_41_170.jpg +41--Swimming/41_Swimming_Swimming_41_379.jpg +41--Swimming/41_Swimming_Swimming_41_641.jpg +41--Swimming/41_Swimming_Swimmer_41_831.jpg +41--Swimming/41_Swimming_Swimmer_41_883.jpg +41--Swimming/41_Swimming_Swimmer_41_538.jpg +41--Swimming/41_Swimming_Swimming_41_283.jpg +41--Swimming/41_Swimming_Swimming_41_271.jpg +41--Swimming/41_Swimming_Swimmer_41_288.jpg +41--Swimming/41_Swimming_Swimmer_41_68.jpg +41--Swimming/41_Swimming_Swimmer_41_701.jpg +41--Swimming/41_Swimming_Swimmer_41_976.jpg +41--Swimming/41_Swimming_Swimmer_41_610.jpg +41--Swimming/41_Swimming_Swimming_41_74.jpg +41--Swimming/41_Swimming_Swimmer_41_772.jpg +41--Swimming/41_Swimming_Swimmer_41_56.jpg +41--Swimming/41_Swimming_Swimmer_41_773.jpg +41--Swimming/41_Swimming_Swimming_41_161.jpg +41--Swimming/41_Swimming_Swimming_41_521.jpg +41--Swimming/41_Swimming_Swimming_41_535.jpg +41--Swimming/41_Swimming_Swimming_41_73.jpg +41--Swimming/41_Swimming_Swimming_41_412.jpg +41--Swimming/41_Swimming_Swimming_41_243.jpg +41--Swimming/41_Swimming_Swimmer_41_843.jpg +41--Swimming/41_Swimming_Swimmer_41_792.jpg +41--Swimming/41_Swimming_Swimmer_41_358.jpg +41--Swimming/41_Swimming_Swimmer_41_148.jpg +41--Swimming/41_Swimming_Swimming_41_52.jpg +41--Swimming/41_Swimming_Swimmer_41_483.jpg +41--Swimming/41_Swimming_Swimmer_41_262.jpg +41--Swimming/41_Swimming_Swimming_41_26.jpg +41--Swimming/41_Swimming_Swimming_41_106.jpg +41--Swimming/41_Swimming_Swimmer_41_718.jpg +41--Swimming/41_Swimming_Swimmer_41_704.jpg +41--Swimming/41_Swimming_Swimming_41_275.jpg +41--Swimming/41_Swimming_Swimmer_41_232.jpg +41--Swimming/41_Swimming_Swimmer_41_401.jpg +41--Swimming/41_Swimming_Swimmer_41_564.jpg +41--Swimming/41_Swimming_Swimmer_41_19.jpg +41--Swimming/41_Swimming_Swimmer_41_26.jpg +41--Swimming/41_Swimming_Swimmer_41_399.jpg +41--Swimming/41_Swimming_Swimmer_41_488.jpg +41--Swimming/41_Swimming_Swimming_41_730.jpg +41--Swimming/41_Swimming_Swimmer_41_1001.jpg +41--Swimming/41_Swimming_Swimmer_41_1028.jpg +41--Swimming/41_Swimming_Swimming_41_238.jpg +41--Swimming/41_Swimming_Swimmer_41_688.jpg +41--Swimming/41_Swimming_Swimming_41_472.jpg +41--Swimming/41_Swimming_Swimming_41_822.jpg +41--Swimming/41_Swimming_Swimmer_41_943.jpg +41--Swimming/41_Swimming_Swimmer_41_376.jpg +41--Swimming/41_Swimming_Swimmer_41_471.jpg +41--Swimming/41_Swimming_Swimmer_41_607.jpg +41--Swimming/41_Swimming_Swimming_41_172.jpg +41--Swimming/41_Swimming_Swimmer_41_275.jpg +41--Swimming/41_Swimming_Swimmer_41_113.jpg +41--Swimming/41_Swimming_Swimmer_41_885.jpg +41--Swimming/41_Swimming_Swimmer_41_931.jpg +41--Swimming/41_Swimming_Swimmer_41_55.jpg +41--Swimming/41_Swimming_Swimming_41_380.jpg +41--Swimming/41_Swimming_Swimmer_41_927.jpg +41--Swimming/41_Swimming_Swimming_41_699.jpg +41--Swimming/41_Swimming_Swimmer_41_507.jpg +41--Swimming/41_Swimming_Swimmer_41_755.jpg +41--Swimming/41_Swimming_Swimmer_41_440.jpg +41--Swimming/41_Swimming_Swimmer_41_659.jpg +41--Swimming/41_Swimming_Swimmer_41_711.jpg +41--Swimming/41_Swimming_Swimming_41_714.jpg +41--Swimming/41_Swimming_Swimmer_41_1002.jpg +41--Swimming/41_Swimming_Swimming_41_466.jpg +41--Swimming/41_Swimming_Swimmer_41_380.jpg +41--Swimming/41_Swimming_Swimmer_41_293.jpg +41--Swimming/41_Swimming_Swimming_41_128.jpg +41--Swimming/41_Swimming_Swimming_41_240.jpg +41--Swimming/41_Swimming_Swimmer_41_43.jpg +42--Car_Racing/42_Car_Racing_Nascar_42_922.jpg +42--Car_Racing/42_Car_Racing_Car_Racing_42_939.jpg +42--Car_Racing/42_Car_Racing_Car_Racing_42_600.jpg +42--Car_Racing/42_Car_Racing_Car_Racing_42_906.jpg +42--Car_Racing/42_Car_Racing_Nascar_42_661.jpg +42--Car_Racing/42_Car_Racing_Nascar_42_482.jpg +42--Car_Racing/42_Car_Racing_Car_Racing_42_1045.jpg +42--Car_Racing/42_Car_Racing_Car_Racing_42_602.jpg +42--Car_Racing/42_Car_Racing_Nascar_42_440.jpg +42--Car_Racing/42_Car_Racing_Nascar_42_442.jpg +42--Car_Racing/42_Car_Racing_Nascar_42_462.jpg +42--Car_Racing/42_Car_Racing_Nascar_42_911.jpg +42--Car_Racing/42_Car_Racing_Nascar_42_828.jpg +42--Car_Racing/42_Car_Racing_Car_Racing_42_263.jpg +42--Car_Racing/42_Car_Racing_Nascar_42_468.jpg +42--Car_Racing/42_Car_Racing_Nascar_42_900.jpg +42--Car_Racing/42_Car_Racing_Car_Racing_42_743.jpg +42--Car_Racing/42_Car_Racing_Nascar_42_650.jpg +42--Car_Racing/42_Car_Racing_Car_Racing_42_857.jpg +42--Car_Racing/42_Car_Racing_Nascar_42_823.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_842.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_757.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_688.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_797.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_881.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_784.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_563.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_1048.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_341.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_907.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_125.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_726.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_301.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_547.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_942.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_106.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_13.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_758.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_956.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_839.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_940.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_81.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_51.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_251.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_538.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_458.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_93.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_438.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_325.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_133.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_234.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_227.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_341.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_1047.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_1.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_372.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_1024.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_429.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_500.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_276.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_287.jpg +43--Row_Boat/43_Row_Boat_Canoe_43_565.jpg +43--Row_Boat/43_Row_Boat_Rowboat_43_717.jpg +44--Aerobics/44_Aerobics_Aerobics_44_337.jpg +44--Aerobics/44_Aerobics_Aerobics_44_659.jpg +44--Aerobics/44_Aerobics_Aerobics_44_916.jpg +44--Aerobics/44_Aerobics_Aerobics_44_407.jpg +44--Aerobics/44_Aerobics_Aerobics_44_370.jpg +44--Aerobics/44_Aerobics_Aerobics_44_809.jpg +44--Aerobics/44_Aerobics_Aerobics_44_3.jpg +44--Aerobics/44_Aerobics_Aerobics_44_433.jpg +44--Aerobics/44_Aerobics_Aerobics_44_240.jpg +44--Aerobics/44_Aerobics_Aerobics_44_852.jpg +44--Aerobics/44_Aerobics_Aerobics_44_1032.jpg +44--Aerobics/44_Aerobics_Aerobics_44_597.jpg +44--Aerobics/44_Aerobics_Aerobics_44_216.jpg +44--Aerobics/44_Aerobics_Aerobics_44_76.jpg +44--Aerobics/44_Aerobics_Aerobics_44_173.jpg +44--Aerobics/44_Aerobics_Aerobics_44_17.jpg +44--Aerobics/44_Aerobics_Aerobics_44_194.jpg +44--Aerobics/44_Aerobics_Aerobics_44_549.jpg +44--Aerobics/44_Aerobics_Aerobics_44_610.jpg +44--Aerobics/44_Aerobics_Aerobics_44_755.jpg +44--Aerobics/44_Aerobics_Aerobics_44_184.jpg +44--Aerobics/44_Aerobics_Aerobics_44_237.jpg +44--Aerobics/44_Aerobics_Aerobics_44_379.jpg +44--Aerobics/44_Aerobics_Aerobics_44_794.jpg +44--Aerobics/44_Aerobics_Aerobics_44_343.jpg +44--Aerobics/44_Aerobics_Aerobics_44_430.jpg +44--Aerobics/44_Aerobics_Aerobics_44_332.jpg +44--Aerobics/44_Aerobics_Aerobics_44_936.jpg +44--Aerobics/44_Aerobics_Aerobics_44_246.jpg +44--Aerobics/44_Aerobics_Aerobics_44_231.jpg +44--Aerobics/44_Aerobics_Aerobics_44_585.jpg +44--Aerobics/44_Aerobics_Aerobics_44_400.jpg +44--Aerobics/44_Aerobics_Aerobics_44_652.jpg +44--Aerobics/44_Aerobics_Aerobics_44_127.jpg +44--Aerobics/44_Aerobics_Aerobics_44_71.jpg +44--Aerobics/44_Aerobics_Aerobics_44_640.jpg +44--Aerobics/44_Aerobics_Aerobics_44_339.jpg +44--Aerobics/44_Aerobics_Aerobics_44_742.jpg +44--Aerobics/44_Aerobics_Aerobics_44_443.jpg +44--Aerobics/44_Aerobics_Aerobics_44_769.jpg +44--Aerobics/44_Aerobics_Aerobics_44_650.jpg +44--Aerobics/44_Aerobics_Aerobics_44_66.jpg +44--Aerobics/44_Aerobics_Aerobics_44_937.jpg +44--Aerobics/44_Aerobics_Aerobics_44_707.jpg +44--Aerobics/44_Aerobics_Aerobics_44_329.jpg +44--Aerobics/44_Aerobics_Aerobics_44_578.jpg +44--Aerobics/44_Aerobics_Aerobics_44_167.jpg +44--Aerobics/44_Aerobics_Aerobics_44_96.jpg +44--Aerobics/44_Aerobics_Aerobics_44_120.jpg +44--Aerobics/44_Aerobics_Aerobics_44_35.jpg +44--Aerobics/44_Aerobics_Aerobics_44_688.jpg +44--Aerobics/44_Aerobics_Aerobics_44_629.jpg +44--Aerobics/44_Aerobics_Aerobics_44_919.jpg +44--Aerobics/44_Aerobics_Aerobics_44_583.jpg +44--Aerobics/44_Aerobics_Aerobics_44_762.jpg +45--Balloonist/45_Balloonist_Balloonist_45_615.jpg +45--Balloonist/45_Balloonist_Balloonist_45_186.jpg +45--Balloonist/45_Balloonist_Balloonist_45_531.jpg +45--Balloonist/45_Balloonist_Balloonist_45_692.jpg +45--Balloonist/45_Balloonist_Balloonist_45_277.jpg +45--Balloonist/45_Balloonist_Balloonist_45_838.jpg +45--Balloonist/45_Balloonist_Balloonist_45_211.jpg +45--Balloonist/45_Balloonist_Balloonist_45_217.jpg +45--Balloonist/45_Balloonist_Balloonist_45_369.jpg +45--Balloonist/45_Balloonist_Balloonist_45_416.jpg +45--Balloonist/45_Balloonist_Balloonist_45_207.jpg +45--Balloonist/45_Balloonist_Balloonist_45_402.jpg +45--Balloonist/45_Balloonist_Balloonist_45_1028.jpg +45--Balloonist/45_Balloonist_Balloonist_45_936.jpg +45--Balloonist/45_Balloonist_Balloonist_45_160.jpg +45--Balloonist/45_Balloonist_Balloonist_45_107.jpg +45--Balloonist/45_Balloonist_Balloonist_45_685.jpg +45--Balloonist/45_Balloonist_Balloonist_45_225.jpg +45--Balloonist/45_Balloonist_Balloonist_45_434.jpg +45--Balloonist/45_Balloonist_Balloonist_45_142.jpg +45--Balloonist/45_Balloonist_Balloonist_45_86.jpg +45--Balloonist/45_Balloonist_Balloonist_45_518.jpg +45--Balloonist/45_Balloonist_Balloonist_45_733.jpg +45--Balloonist/45_Balloonist_Balloonist_45_974.jpg +45--Balloonist/45_Balloonist_Balloonist_45_508.jpg +45--Balloonist/45_Balloonist_Balloonist_45_118.jpg +45--Balloonist/45_Balloonist_Balloonist_45_769.jpg +45--Balloonist/45_Balloonist_Balloonist_45_939.jpg +45--Balloonist/45_Balloonist_Balloonist_45_550.jpg +45--Balloonist/45_Balloonist_Balloonist_45_149.jpg +45--Balloonist/45_Balloonist_Balloonist_45_273.jpg +45--Balloonist/45_Balloonist_Balloonist_45_134.jpg +45--Balloonist/45_Balloonist_Balloonist_45_857.jpg +46--Jockey/46_Jockey_Jockey_46_569.jpg +46--Jockey/46_Jockey_Jockey_46_172.jpg +46--Jockey/46_Jockey_Jockey_46_537.jpg +46--Jockey/46_Jockey_Jockey_46_166.jpg +46--Jockey/46_Jockey_Jockey_46_44.jpg +46--Jockey/46_Jockey_Jockey_46_497.jpg +46--Jockey/46_Jockey_Jockey_46_823.jpg +46--Jockey/46_Jockey_Jockey_46_106.jpg +46--Jockey/46_Jockey_Jockey_46_130.jpg +46--Jockey/46_Jockey_Jockey_46_923.jpg +46--Jockey/46_Jockey_Jockey_46_308.jpg +46--Jockey/46_Jockey_Jockey_46_188.jpg +46--Jockey/46_Jockey_Jockey_46_909.jpg +46--Jockey/46_Jockey_Jockey_46_79.jpg +46--Jockey/46_Jockey_Jockey_46_933.jpg +46--Jockey/46_Jockey_Jockey_46_444.jpg +46--Jockey/46_Jockey_Jockey_46_508.jpg +46--Jockey/46_Jockey_Jockey_46_728.jpg +46--Jockey/46_Jockey_Jockey_46_393.jpg +46--Jockey/46_Jockey_Jockey_46_652.jpg +46--Jockey/46_Jockey_Jockey_46_202.jpg +46--Jockey/46_Jockey_Jockey_46_259.jpg +46--Jockey/46_Jockey_Jockey_46_51.jpg +46--Jockey/46_Jockey_Jockey_46_352.jpg +46--Jockey/46_Jockey_Jockey_46_254.jpg +46--Jockey/46_Jockey_Jockey_46_718.jpg +46--Jockey/46_Jockey_Jockey_46_409.jpg +46--Jockey/46_Jockey_Jockey_46_758.jpg +46--Jockey/46_Jockey_Jockey_46_779.jpg +46--Jockey/46_Jockey_Jockey_46_76.jpg +46--Jockey/46_Jockey_Jockey_46_54.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_468.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_195.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_575.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_254.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_715.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_746.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_617.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_912.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_785.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_588.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_845.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_193.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_561.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_42.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_405.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_385.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_812.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_300.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_641.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_777.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_703.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_660.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_432.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_72.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_636.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_610.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_443.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_207.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_583.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_827.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_179.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_236.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_511.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_354.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_631.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_761.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_177.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_38.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_874.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_491.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_240.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_657.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_779.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_196.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_645.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_936.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_266.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_338.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_782.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_354.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_171.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_566.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_19.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_731.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_778.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_152.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_572.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_837.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_Matador_Bullfighter_47_567.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_536.jpg +47--Matador_Bullfighter/47_Matador_Bullfighter_matadorbullfighting_47_710.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_122.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_439.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_814.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_1015.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_321.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_678.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_75.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_656.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_205.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_695.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_892.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_72.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_652.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_841.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_164.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_596.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_537.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_357.jpg +48--Parachutist_Paratrooper/48_Parachutist_Paratrooper_Parachutist_Paratrooper_48_785.jpg +49--Greeting/49_Greeting_peoplegreeting_49_59.jpg +49--Greeting/49_Greeting_peoplegreeting_49_456.jpg +49--Greeting/49_Greeting_peoplegreeting_49_203.jpg +49--Greeting/49_Greeting_peoplegreeting_49_266.jpg +49--Greeting/49_Greeting_peoplegreeting_49_589.jpg +49--Greeting/49_Greeting_peoplegreeting_49_759.jpg +49--Greeting/49_Greeting_peoplegreeting_49_73.jpg +49--Greeting/49_Greeting_peoplegreeting_49_56.jpg +49--Greeting/49_Greeting_peoplegreeting_49_564.jpg +49--Greeting/49_Greeting_peoplegreeting_49_920.jpg +49--Greeting/49_Greeting_peoplegreeting_49_787.jpg +49--Greeting/49_Greeting_peoplegreeting_49_353.jpg +49--Greeting/49_Greeting_peoplegreeting_49_140.jpg +49--Greeting/49_Greeting_peoplegreeting_49_923.jpg +49--Greeting/49_Greeting_peoplegreeting_49_656.jpg +49--Greeting/49_Greeting_peoplegreeting_49_302.jpg +49--Greeting/49_Greeting_peoplegreeting_49_124.jpg +49--Greeting/49_Greeting_peoplegreeting_49_894.jpg +49--Greeting/49_Greeting_peoplegreeting_49_98.jpg +49--Greeting/49_Greeting_peoplegreeting_49_948.jpg +49--Greeting/49_Greeting_peoplegreeting_49_218.jpg +49--Greeting/49_Greeting_peoplegreeting_49_387.jpg +49--Greeting/49_Greeting_peoplegreeting_49_991.jpg +49--Greeting/49_Greeting_peoplegreeting_49_486.jpg +49--Greeting/49_Greeting_peoplegreeting_49_903.jpg +49--Greeting/49_Greeting_peoplegreeting_49_896.jpg +49--Greeting/49_Greeting_peoplegreeting_49_53.jpg +49--Greeting/49_Greeting_peoplegreeting_49_207.jpg +49--Greeting/49_Greeting_peoplegreeting_49_153.jpg +49--Greeting/49_Greeting_peoplegreeting_49_162.jpg +49--Greeting/49_Greeting_peoplegreeting_49_344.jpg +49--Greeting/49_Greeting_peoplegreeting_49_890.jpg +49--Greeting/49_Greeting_peoplegreeting_49_307.jpg +49--Greeting/49_Greeting_peoplegreeting_49_337.jpg +49--Greeting/49_Greeting_peoplegreeting_49_50.jpg +49--Greeting/49_Greeting_peoplegreeting_49_943.jpg +49--Greeting/49_Greeting_peoplegreeting_49_48.jpg +49--Greeting/49_Greeting_peoplegreeting_49_810.jpg +49--Greeting/49_Greeting_peoplegreeting_49_192.jpg +49--Greeting/49_Greeting_peoplegreeting_49_10.jpg +49--Greeting/49_Greeting_peoplegreeting_49_783.jpg +5--Car_Accident/5_Car_Accident_Accident_5_234.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_51.jpg +5--Car_Accident/5_Car_Accident_Accident_5_448.jpg +5--Car_Accident/5_Car_Accident_Accident_5_633.jpg +5--Car_Accident/5_Car_Accident_Accident_5_869.jpg +5--Car_Accident/5_Car_Accident_Accident_5_460.jpg +5--Car_Accident/5_Car_Accident_Accident_5_243.jpg +5--Car_Accident/5_Car_Accident_Accident_5_982.jpg +5--Car_Accident/5_Car_Accident_Accident_5_77.jpg +5--Car_Accident/5_Car_Accident_Accident_5_641.jpg +5--Car_Accident/5_Car_Accident_Accident_5_203.jpg +5--Car_Accident/5_Car_Accident_Accident_5_735.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_94.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_574.jpg +5--Car_Accident/5_Car_Accident_Accident_5_202.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_133.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_544.jpg +5--Car_Accident/5_Car_Accident_Accident_5_948.jpg +5--Car_Accident/5_Car_Accident_Accident_5_177.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_492.jpg +5--Car_Accident/5_Car_Accident_Accident_5_244.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_279.jpg +5--Car_Accident/5_Car_Accident_Accident_5_576.jpg +5--Car_Accident/5_Car_Accident_Accident_5_510.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_868.jpg +5--Car_Accident/5_Car_Accident_Accident_5_287.jpg +5--Car_Accident/5_Car_Accident_Accident_5_66.jpg +5--Car_Accident/5_Car_Accident_Accident_5_340.jpg +5--Car_Accident/5_Car_Accident_Accident_5_642.jpg +5--Car_Accident/5_Car_Accident_Accident_5_34.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_610.jpg +5--Car_Accident/5_Car_Accident_Accident_5_925.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_451.jpg +5--Car_Accident/5_Car_Accident_Accident_5_628.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_365.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_644.jpg +5--Car_Accident/5_Car_Accident_Accident_5_388.jpg +5--Car_Accident/5_Car_Accident_Accident_5_937.jpg +5--Car_Accident/5_Car_Accident_Accident_5_607.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_457.jpg +5--Car_Accident/5_Car_Accident_Accident_5_796.jpg +5--Car_Accident/5_Car_Accident_Accident_5_515.jpg +5--Car_Accident/5_Car_Accident_Accident_5_668.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_475.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_38.jpg +5--Car_Accident/5_Car_Accident_Accident_5_474.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_773.jpg +5--Car_Accident/5_Car_Accident_Car_Crash_5_866.jpg +5--Car_Accident/5_Car_Accident_Accident_5_777.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_19.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_641.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_410.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_323.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_715.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_283.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_33.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_827.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_374.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_17.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_609.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_303.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_647.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_752.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_788.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_790.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_493.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_282.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_173.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_170.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_134.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_449.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_396.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_654.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_75.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_764.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_43.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_345.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_645.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_249.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_189.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_326.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_479.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_595.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_144.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_408.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_432.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_196.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_165.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_749.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_180.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_213.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_649.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_720.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_464.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_488.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_679.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_birthdayparty_50_18.jpg +50--Celebration_Or_Party/50_Celebration_Or_Party_houseparty_50_735.jpg +51--Dresses/51_Dresses_wearingdress_51_280.jpg +51--Dresses/51_Dresses_wearingdress_51_692.jpg +51--Dresses/51_Dresses_wearingdress_51_1041.jpg +51--Dresses/51_Dresses_wearingdress_51_789.jpg +51--Dresses/51_Dresses_wearingdress_51_105.jpg +51--Dresses/51_Dresses_wearingdress_51_727.jpg +51--Dresses/51_Dresses_wearingdress_51_869.jpg +51--Dresses/51_Dresses_wearingdress_51_606.jpg +51--Dresses/51_Dresses_wearingdress_51_815.jpg +51--Dresses/51_Dresses_wearingdress_51_633.jpg +51--Dresses/51_Dresses_wearingdress_51_221.jpg +51--Dresses/51_Dresses_wearingdress_51_599.jpg +51--Dresses/51_Dresses_wearingdress_51_689.jpg +51--Dresses/51_Dresses_wearingdress_51_465.jpg +51--Dresses/51_Dresses_wearingdress_51_150.jpg +51--Dresses/51_Dresses_wearingdress_51_610.jpg +51--Dresses/51_Dresses_wearingdress_51_13.jpg +51--Dresses/51_Dresses_wearingdress_51_161.jpg +51--Dresses/51_Dresses_wearingdress_51_7.jpg +51--Dresses/51_Dresses_wearingdress_51_306.jpg +51--Dresses/51_Dresses_wearingdress_51_464.jpg +51--Dresses/51_Dresses_wearingdress_51_492.jpg +51--Dresses/51_Dresses_wearingdress_51_106.jpg +51--Dresses/51_Dresses_wearingdress_51_685.jpg +51--Dresses/51_Dresses_wearingdress_51_1031.jpg +51--Dresses/51_Dresses_wearingdress_51_904.jpg +51--Dresses/51_Dresses_wearingdress_51_612.jpg +51--Dresses/51_Dresses_wearingdress_51_536.jpg +51--Dresses/51_Dresses_wearingdress_51_445.jpg +51--Dresses/51_Dresses_wearingdress_51_830.jpg +51--Dresses/51_Dresses_wearingdress_51_386.jpg +51--Dresses/51_Dresses_wearingdress_51_1012.jpg +51--Dresses/51_Dresses_wearingdress_51_377.jpg +51--Dresses/51_Dresses_wearingdress_51_327.jpg +51--Dresses/51_Dresses_wearingdress_51_388.jpg +51--Dresses/51_Dresses_wearingdress_51_763.jpg +51--Dresses/51_Dresses_wearingdress_51_837.jpg +51--Dresses/51_Dresses_wearingdress_51_183.jpg +51--Dresses/51_Dresses_wearingdress_51_139.jpg +51--Dresses/51_Dresses_wearingdress_51_348.jpg +51--Dresses/51_Dresses_wearingdress_51_883.jpg +51--Dresses/51_Dresses_wearingdress_51_96.jpg +51--Dresses/51_Dresses_wearingdress_51_340.jpg +51--Dresses/51_Dresses_wearingdress_51_737.jpg +51--Dresses/51_Dresses_wearingdress_51_736.jpg +51--Dresses/51_Dresses_wearingdress_51_339.jpg +51--Dresses/51_Dresses_wearingdress_51_691.jpg +51--Dresses/51_Dresses_wearingdress_51_398.jpg +51--Dresses/51_Dresses_wearingdress_51_113.jpg +51--Dresses/51_Dresses_wearingdress_51_654.jpg +51--Dresses/51_Dresses_wearingdress_51_748.jpg +51--Dresses/51_Dresses_wearingdress_51_588.jpg +51--Dresses/51_Dresses_wearingdress_51_335.jpg +51--Dresses/51_Dresses_wearingdress_51_670.jpg +51--Dresses/51_Dresses_wearingdress_51_549.jpg +51--Dresses/51_Dresses_wearingdress_51_226.jpg +51--Dresses/51_Dresses_wearingdress_51_178.jpg +51--Dresses/51_Dresses_wearingdress_51_17.jpg +51--Dresses/51_Dresses_wearingdress_51_580.jpg +51--Dresses/51_Dresses_wearingdress_51_233.jpg +51--Dresses/51_Dresses_wearingdress_51_451.jpg +51--Dresses/51_Dresses_wearingdress_51_414.jpg +51--Dresses/51_Dresses_wearingdress_51_512.jpg +51--Dresses/51_Dresses_wearingdress_51_77.jpg +51--Dresses/51_Dresses_wearingdress_51_268.jpg +51--Dresses/51_Dresses_wearingdress_51_741.jpg +51--Dresses/51_Dresses_wearingdress_51_94.jpg +51--Dresses/51_Dresses_wearingdress_51_140.jpg +51--Dresses/51_Dresses_wearingdress_51_672.jpg +51--Dresses/51_Dresses_wearingdress_51_914.jpg +51--Dresses/51_Dresses_wearingdress_51_739.jpg +51--Dresses/51_Dresses_wearingdress_51_874.jpg +51--Dresses/51_Dresses_wearingdress_51_1035.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_721.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_359.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_30.jpg +52--Photographers/52_Photographers_taketouristphotos_52_80.jpg +52--Photographers/52_Photographers_taketouristphotos_52_661.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_358.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_695.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_125.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_228.jpg +52--Photographers/52_Photographers_taketouristphotos_52_97.jpg +52--Photographers/52_Photographers_taketouristphotos_52_281.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_316.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_61.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_653.jpg +52--Photographers/52_Photographers_taketouristphotos_52_328.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_666.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_456.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_506.jpg +52--Photographers/52_Photographers_taketouristphotos_52_487.jpg +52--Photographers/52_Photographers_taketouristphotos_52_266.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_780.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_76.jpg +52--Photographers/52_Photographers_taketouristphotos_52_51.jpg +52--Photographers/52_Photographers_taketouristphotos_52_3.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_90.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_416.jpg +52--Photographers/52_Photographers_taketouristphotos_52_331.jpg +52--Photographers/52_Photographers_taketouristphotos_52_536.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_815.jpg +52--Photographers/52_Photographers_taketouristphotos_52_141.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_219.jpg +52--Photographers/52_Photographers_taketouristphotos_52_659.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_84.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_743.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_113.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_263.jpg +52--Photographers/52_Photographers_taketouristphotos_52_86.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_315.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_635.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_759.jpg +52--Photographers/52_Photographers_taketouristphotos_52_15.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_578.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_776.jpg +52--Photographers/52_Photographers_taketouristphotos_52_123.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_310.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_428.jpg +52--Photographers/52_Photographers_taketouristphotos_52_288.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_568.jpg +52--Photographers/52_Photographers_taketouristphotos_52_159.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_303.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_96.jpg +52--Photographers/52_Photographers_taketouristphotos_52_208.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_755.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_701.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_809.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_807.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_479.jpg +52--Photographers/52_Photographers_photographertakingphoto_52_130.jpg +53--Raid/53_Raid_policeraid_53_47.jpg +53--Raid/53_Raid_policeraid_53_674.jpg +53--Raid/53_Raid_policeraid_53_770.jpg +53--Raid/53_Raid_policeraid_53_171.jpg +53--Raid/53_Raid_policeraid_53_458.jpg +53--Raid/53_Raid_policeraid_53_574.jpg +53--Raid/53_Raid_policeraid_53_649.jpg +53--Raid/53_Raid_policeraid_53_445.jpg +53--Raid/53_Raid_policeraid_53_364.jpg +53--Raid/53_Raid_policeraid_53_208.jpg +53--Raid/53_Raid_policeraid_53_6.jpg +53--Raid/53_Raid_policeraid_53_280.jpg +53--Raid/53_Raid_policeraid_53_854.jpg +53--Raid/53_Raid_policeraid_53_686.jpg +53--Raid/53_Raid_policeraid_53_827.jpg +53--Raid/53_Raid_policeraid_53_438.jpg +53--Raid/53_Raid_policeraid_53_178.jpg +53--Raid/53_Raid_policeraid_53_736.jpg +53--Raid/53_Raid_policeraid_53_54.jpg +53--Raid/53_Raid_policeraid_53_619.jpg +53--Raid/53_Raid_policeraid_53_256.jpg +53--Raid/53_Raid_policeraid_53_599.jpg +53--Raid/53_Raid_policeraid_53_92.jpg +53--Raid/53_Raid_policeraid_53_489.jpg +53--Raid/53_Raid_policeraid_53_858.jpg +53--Raid/53_Raid_policeraid_53_272.jpg +53--Raid/53_Raid_policeraid_53_543.jpg +53--Raid/53_Raid_policeraid_53_396.jpg +53--Raid/53_Raid_policeraid_53_14.jpg +53--Raid/53_Raid_policeraid_53_385.jpg +53--Raid/53_Raid_policeraid_53_805.jpg +53--Raid/53_Raid_policeraid_53_928.jpg +53--Raid/53_Raid_policeraid_53_555.jpg +53--Raid/53_Raid_policeraid_53_696.jpg +53--Raid/53_Raid_policeraid_53_107.jpg +53--Raid/53_Raid_policeraid_53_212.jpg +53--Raid/53_Raid_policeraid_53_207.jpg +53--Raid/53_Raid_policeraid_53_597.jpg +53--Raid/53_Raid_policeraid_53_829.jpg +53--Raid/53_Raid_policeraid_53_471.jpg +53--Raid/53_Raid_policeraid_53_43.jpg +53--Raid/53_Raid_policeraid_53_860.jpg +53--Raid/53_Raid_policeraid_53_340.jpg +53--Raid/53_Raid_policeraid_53_368.jpg +53--Raid/53_Raid_policeraid_53_951.jpg +54--Rescue/54_Rescue_rescuepeople_54_254.jpg +54--Rescue/54_Rescue_rescuepeople_54_135.jpg +54--Rescue/54_Rescue_rescuepeople_54_711.jpg +54--Rescue/54_Rescue_rescuepeople_54_581.jpg +54--Rescue/54_Rescue_rescuepeople_54_222.jpg +54--Rescue/54_Rescue_firemanrescue_54_724.jpg +54--Rescue/54_Rescue_rescuepeople_54_589.jpg +54--Rescue/54_Rescue_rescuepeople_54_845.jpg +54--Rescue/54_Rescue_rescuepeople_54_8.jpg +54--Rescue/54_Rescue_firemanrescue_54_789.jpg +54--Rescue/54_Rescue_rescuepeople_54_143.jpg +54--Rescue/54_Rescue_firemanrescue_54_458.jpg +54--Rescue/54_Rescue_firemanrescue_54_153.jpg +54--Rescue/54_Rescue_rescuepeople_54_526.jpg +54--Rescue/54_Rescue_rescuepeople_54_328.jpg +54--Rescue/54_Rescue_rescuepeople_54_102.jpg +54--Rescue/54_Rescue_rescuepeople_54_191.jpg +54--Rescue/54_Rescue_rescuepeople_54_108.jpg +54--Rescue/54_Rescue_rescuepeople_54_1035.jpg +54--Rescue/54_Rescue_firemanrescue_54_420.jpg +54--Rescue/54_Rescue_firemanrescue_54_103.jpg +54--Rescue/54_Rescue_rescuepeople_54_774.jpg +54--Rescue/54_Rescue_firemanrescue_54_939.jpg +54--Rescue/54_Rescue_rescuepeople_54_924.jpg +54--Rescue/54_Rescue_rescuepeople_54_493.jpg +54--Rescue/54_Rescue_firemanrescue_54_814.jpg +54--Rescue/54_Rescue_rescuepeople_54_158.jpg +54--Rescue/54_Rescue_firemanrescue_54_327.jpg +54--Rescue/54_Rescue_rescuepeople_54_855.jpg +54--Rescue/54_Rescue_rescuepeople_54_431.jpg +54--Rescue/54_Rescue_rescuepeople_54_325.jpg +54--Rescue/54_Rescue_rescuepeople_54_557.jpg +54--Rescue/54_Rescue_rescuepeople_54_406.jpg +54--Rescue/54_Rescue_rescuepeople_54_335.jpg +54--Rescue/54_Rescue_rescuepeople_54_54.jpg +54--Rescue/54_Rescue_rescuepeople_54_860.jpg +54--Rescue/54_Rescue_firemanrescue_54_969.jpg +54--Rescue/54_Rescue_rescuepeople_54_529.jpg +54--Rescue/54_Rescue_rescuepeople_54_602.jpg +54--Rescue/54_Rescue_rescuepeople_54_840.jpg +54--Rescue/54_Rescue_rescuepeople_54_159.jpg +54--Rescue/54_Rescue_rescuepeople_54_208.jpg +54--Rescue/54_Rescue_firemanrescue_54_617.jpg +54--Rescue/54_Rescue_rescuepeople_54_777.jpg +54--Rescue/54_Rescue_rescuepeople_54_1049.jpg +54--Rescue/54_Rescue_rescuepeople_54_531.jpg +54--Rescue/54_Rescue_rescuepeople_54_188.jpg +54--Rescue/54_Rescue_firemanrescue_54_660.jpg +54--Rescue/54_Rescue_rescuepeople_54_817.jpg +54--Rescue/54_Rescue_rescuepeople_54_1006.jpg +54--Rescue/54_Rescue_firemanrescue_54_478.jpg +54--Rescue/54_Rescue_rescuepeople_54_926.jpg +54--Rescue/54_Rescue_firemanrescue_54_908.jpg +54--Rescue/54_Rescue_rescuepeople_54_738.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_325.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_196.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_620.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_686.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_786.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_708.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_867.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_188.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_466.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_1027.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_179.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_859.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_499.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_414.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_50.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_181.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_648.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_711.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_298.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_643.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_569.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_640.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_365.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_773.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_801.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_245.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_122.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_838.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_1015.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_154.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_894.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_305.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_531.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_343.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_637.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_1013.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_932.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_130.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_523.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_809.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_380.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_951.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_263.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_789.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_588.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_12.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_183.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_721.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_774.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_764.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_155.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_726.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_424.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_770.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_208.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_45.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_516.jpg +55--Sports_Coach_Trainer/55_Sports_Coach_Trainer_sportcoaching_55_218.jpg +56--Voter/56_Voter_peoplevoting_56_796.jpg +56--Voter/56_Voter_peoplevoting_56_819.jpg +56--Voter/56_Voter_peoplevoting_56_777.jpg +56--Voter/56_Voter_peoplevoting_56_346.jpg +56--Voter/56_Voter_peoplevoting_56_13.jpg +56--Voter/56_Voter_peoplevoting_56_459.jpg +56--Voter/56_Voter_peoplevoting_56_714.jpg +56--Voter/56_Voter_peoplevoting_56_531.jpg +56--Voter/56_Voter_peoplevoting_56_1011.jpg +56--Voter/56_Voter_peoplevoting_56_764.jpg +56--Voter/56_Voter_peoplevoting_56_887.jpg +56--Voter/56_Voter_peoplevoting_56_103.jpg +56--Voter/56_Voter_peoplevoting_56_712.jpg +56--Voter/56_Voter_peoplevoting_56_260.jpg +56--Voter/56_Voter_peoplevoting_56_21.jpg +56--Voter/56_Voter_peoplevoting_56_641.jpg +56--Voter/56_Voter_peoplevoting_56_350.jpg +56--Voter/56_Voter_peoplevoting_56_842.jpg +56--Voter/56_Voter_peoplevoting_56_747.jpg +56--Voter/56_Voter_peoplevoting_56_110.jpg +56--Voter/56_Voter_peoplevoting_56_344.jpg +56--Voter/56_Voter_peoplevoting_56_873.jpg +56--Voter/56_Voter_peoplevoting_56_378.jpg +56--Voter/56_Voter_peoplevoting_56_717.jpg +56--Voter/56_Voter_peoplevoting_56_268.jpg +56--Voter/56_Voter_peoplevoting_56_228.jpg +56--Voter/56_Voter_peoplevoting_56_902.jpg +56--Voter/56_Voter_peoplevoting_56_644.jpg +56--Voter/56_Voter_peoplevoting_56_579.jpg +56--Voter/56_Voter_peoplevoting_56_305.jpg +56--Voter/56_Voter_peoplevoting_56_620.jpg +56--Voter/56_Voter_peoplevoting_56_723.jpg +56--Voter/56_Voter_peoplevoting_56_370.jpg +56--Voter/56_Voter_peoplevoting_56_874.jpg +56--Voter/56_Voter_peoplevoting_56_663.jpg +56--Voter/56_Voter_peoplevoting_56_140.jpg +56--Voter/56_Voter_peoplevoting_56_460.jpg +56--Voter/56_Voter_peoplevoting_56_410.jpg +56--Voter/56_Voter_peoplevoting_56_441.jpg +56--Voter/56_Voter_peoplevoting_56_339.jpg +56--Voter/56_Voter_peoplevoting_56_953.jpg +56--Voter/56_Voter_peoplevoting_56_323.jpg +56--Voter/56_Voter_peoplevoting_56_782.jpg +56--Voter/56_Voter_peoplevoting_56_118.jpg +56--Voter/56_Voter_peoplevoting_56_1046.jpg +56--Voter/56_Voter_peoplevoting_56_946.jpg +56--Voter/56_Voter_peoplevoting_56_781.jpg +56--Voter/56_Voter_peoplevoting_56_528.jpg +56--Voter/56_Voter_peoplevoting_56_558.jpg +56--Voter/56_Voter_peoplevoting_56_122.jpg +57--Angler/57_Angler_peoplefishing_57_926.jpg +57--Angler/57_Angler_peoplefishing_57_153.jpg +57--Angler/57_Angler_peoplefishing_57_251.jpg +57--Angler/57_Angler_peoplefishing_57_250.jpg +57--Angler/57_Angler_peoplefishing_57_51.jpg +57--Angler/57_Angler_peoplefishing_57_515.jpg +57--Angler/57_Angler_peoplefishing_57_924.jpg +57--Angler/57_Angler_peoplefishing_57_110.jpg +57--Angler/57_Angler_peoplefishing_57_1009.jpg +57--Angler/57_Angler_peoplefishing_57_206.jpg +57--Angler/57_Angler_peoplefishing_57_589.jpg +57--Angler/57_Angler_peoplefishing_57_661.jpg +57--Angler/57_Angler_peoplefishing_57_880.jpg +57--Angler/57_Angler_peoplefishing_57_566.jpg +57--Angler/57_Angler_peoplefishing_57_17.jpg +57--Angler/57_Angler_peoplefishing_57_394.jpg +57--Angler/57_Angler_peoplefishing_57_868.jpg +57--Angler/57_Angler_peoplefishing_57_900.jpg +57--Angler/57_Angler_peoplefishing_57_104.jpg +57--Angler/57_Angler_peoplefishing_57_402.jpg +57--Angler/57_Angler_peoplefishing_57_254.jpg +57--Angler/57_Angler_peoplefishing_57_401.jpg +57--Angler/57_Angler_peoplefishing_57_796.jpg +57--Angler/57_Angler_peoplefishing_57_430.jpg +57--Angler/57_Angler_peoplefishing_57_20.jpg +57--Angler/57_Angler_peoplefishing_57_15.jpg +57--Angler/57_Angler_peoplefishing_57_803.jpg +57--Angler/57_Angler_peoplefishing_57_120.jpg +57--Angler/57_Angler_peoplefishing_57_559.jpg +57--Angler/57_Angler_peoplefishing_57_182.jpg +57--Angler/57_Angler_peoplefishing_57_870.jpg +57--Angler/57_Angler_peoplefishing_57_53.jpg +57--Angler/57_Angler_peoplefishing_57_139.jpg +57--Angler/57_Angler_peoplefishing_57_933.jpg +57--Angler/57_Angler_peoplefishing_57_411.jpg +57--Angler/57_Angler_peoplefishing_57_600.jpg +57--Angler/57_Angler_peoplefishing_57_764.jpg +57--Angler/57_Angler_peoplefishing_57_866.jpg +57--Angler/57_Angler_peoplefishing_57_442.jpg +57--Angler/57_Angler_peoplefishing_57_1012.jpg +58--Hockey/58_Hockey_icehockey_puck_58_507.jpg +58--Hockey/58_Hockey_icehockey_puck_58_653.jpg +58--Hockey/58_Hockey_icehockey_puck_58_895.jpg +58--Hockey/58_Hockey_icehockey_puck_58_431.jpg +58--Hockey/58_Hockey_icehockey_puck_58_17.jpg +58--Hockey/58_Hockey_icehockey_puck_58_493.jpg +58--Hockey/58_Hockey_icehockey_puck_58_94.jpg +58--Hockey/58_Hockey_icehockey_puck_58_290.jpg +58--Hockey/58_Hockey_icehockey_puck_58_680.jpg +58--Hockey/58_Hockey_icehockey_puck_58_475.jpg +58--Hockey/58_Hockey_icehockey_puck_58_244.jpg +58--Hockey/58_Hockey_icehockey_puck_58_785.jpg +58--Hockey/58_Hockey_icehockey_puck_58_592.jpg +58--Hockey/58_Hockey_icehockey_puck_58_880.jpg +58--Hockey/58_Hockey_icehockey_puck_58_50.jpg +58--Hockey/58_Hockey_icehockey_puck_58_365.jpg +58--Hockey/58_Hockey_icehockey_puck_58_262.jpg +58--Hockey/58_Hockey_icehockey_puck_58_285.jpg +58--Hockey/58_Hockey_icehockey_puck_58_835.jpg +58--Hockey/58_Hockey_icehockey_puck_58_182.jpg +58--Hockey/58_Hockey_icehockey_puck_58_113.jpg +58--Hockey/58_Hockey_icehockey_puck_58_184.jpg +58--Hockey/58_Hockey_icehockey_puck_58_692.jpg +58--Hockey/58_Hockey_icehockey_puck_58_940.jpg +58--Hockey/58_Hockey_icehockey_puck_58_455.jpg +58--Hockey/58_Hockey_icehockey_puck_58_248.jpg +58--Hockey/58_Hockey_icehockey_puck_58_655.jpg +58--Hockey/58_Hockey_icehockey_puck_58_469.jpg +58--Hockey/58_Hockey_icehockey_puck_58_221.jpg +58--Hockey/58_Hockey_icehockey_puck_58_384.jpg +58--Hockey/58_Hockey_icehockey_puck_58_245.jpg +58--Hockey/58_Hockey_icehockey_puck_58_330.jpg +58--Hockey/58_Hockey_icehockey_puck_58_403.jpg +58--Hockey/58_Hockey_icehockey_puck_58_753.jpg +58--Hockey/58_Hockey_icehockey_puck_58_926.jpg +58--Hockey/58_Hockey_icehockey_puck_58_715.jpg +58--Hockey/58_Hockey_icehockey_puck_58_118.jpg +58--Hockey/58_Hockey_icehockey_puck_58_212.jpg +58--Hockey/58_Hockey_icehockey_puck_58_553.jpg +58--Hockey/58_Hockey_icehockey_puck_58_671.jpg +58--Hockey/58_Hockey_icehockey_puck_58_404.jpg +58--Hockey/58_Hockey_icehockey_puck_58_531.jpg +58--Hockey/58_Hockey_icehockey_puck_58_467.jpg +58--Hockey/58_Hockey_icehockey_puck_58_697.jpg +58--Hockey/58_Hockey_icehockey_puck_58_825.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_592.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_856.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_978.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_201.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_401.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_906.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_789.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_244.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_200.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_27.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_1014.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_95.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_229.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_763.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_34.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_1020.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_404.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_690.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_1019.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_85.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_117.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_202.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_1038.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_357.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_659.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_725.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_704.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_172.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_283.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_64.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_532.jpg +59--people--driving--car/59_peopledrivingcar_peopledrivingcar_59_928.jpg +6--Funeral/6_Funeral_Funeral_6_109.jpg +6--Funeral/6_Funeral_Funeral_6_987.jpg +6--Funeral/6_Funeral_Funeral_6_364.jpg +6--Funeral/6_Funeral_Funeral_6_909.jpg +6--Funeral/6_Funeral_Funeral_6_618.jpg +6--Funeral/6_Funeral_Funeral_6_483.jpg +6--Funeral/6_Funeral_Funeral_6_745.jpg +6--Funeral/6_Funeral_Funeral_6_160.jpg +6--Funeral/6_Funeral_Funeral_6_870.jpg +6--Funeral/6_Funeral_Funeral_6_280.jpg +6--Funeral/6_Funeral_Funeral_6_432.jpg +6--Funeral/6_Funeral_Funeral_6_211.jpg +6--Funeral/6_Funeral_Funeral_6_444.jpg +6--Funeral/6_Funeral_Funeral_6_252.jpg +6--Funeral/6_Funeral_Funeral_6_572.jpg +6--Funeral/6_Funeral_Funeral_6_292.jpg +6--Funeral/6_Funeral_Funeral_6_696.jpg +6--Funeral/6_Funeral_Funeral_6_140.jpg +6--Funeral/6_Funeral_Funeral_6_937.jpg +6--Funeral/6_Funeral_Funeral_6_77.jpg +6--Funeral/6_Funeral_Funeral_6_759.jpg +6--Funeral/6_Funeral_Funeral_6_177.jpg +6--Funeral/6_Funeral_Funeral_6_760.jpg +6--Funeral/6_Funeral_Funeral_6_690.jpg +6--Funeral/6_Funeral_Funeral_6_128.jpg +6--Funeral/6_Funeral_Funeral_6_676.jpg +6--Funeral/6_Funeral_Funeral_6_941.jpg +6--Funeral/6_Funeral_Funeral_6_610.jpg +6--Funeral/6_Funeral_Funeral_6_1029.jpg +6--Funeral/6_Funeral_Funeral_6_485.jpg +6--Funeral/6_Funeral_Funeral_6_1005.jpg +6--Funeral/6_Funeral_Funeral_6_779.jpg +6--Funeral/6_Funeral_Funeral_6_733.jpg +6--Funeral/6_Funeral_Funeral_6_315.jpg +6--Funeral/6_Funeral_Funeral_6_790.jpg +6--Funeral/6_Funeral_Funeral_6_461.jpg +6--Funeral/6_Funeral_Funeral_6_627.jpg +6--Funeral/6_Funeral_Funeral_6_241.jpg +6--Funeral/6_Funeral_Funeral_6_1006.jpg +6--Funeral/6_Funeral_Funeral_6_861.jpg +6--Funeral/6_Funeral_Funeral_6_531.jpg +6--Funeral/6_Funeral_Funeral_6_537.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_276.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_179.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_907.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_606.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_123.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_640.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_936.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_767.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_282.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_50.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_521.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_22.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_162.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_432.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_211.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_344.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_375.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_155.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_395.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_703.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_815.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_212.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_913.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_12.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_407.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_430.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_4.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_558.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_158.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_665.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_350.jpg +61--Street_Battle/61_Street_Battle_streetfight_61_546.jpg +7--Cheering/7_Cheering_Cheering_7_134.jpg +7--Cheering/7_Cheering_Cheering_7_655.jpg +7--Cheering/7_Cheering_Cheering_7_313.jpg +7--Cheering/7_Cheering_Cheering_7_542.jpg +7--Cheering/7_Cheering_Cheering_7_404.jpg +7--Cheering/7_Cheering_Cheering_7_413.jpg +7--Cheering/7_Cheering_Cheering_7_334.jpg +7--Cheering/7_Cheering_Cheering_7_29.jpg +7--Cheering/7_Cheering_Cheering_7_408.jpg +7--Cheering/7_Cheering_Cheering_7_530.jpg +7--Cheering/7_Cheering_Cheering_7_195.jpg +7--Cheering/7_Cheering_Cheering_7_426.jpg +7--Cheering/7_Cheering_Cheering_7_500.jpg +7--Cheering/7_Cheering_Cheering_7_558.jpg +7--Cheering/7_Cheering_Cheering_7_373.jpg +7--Cheering/7_Cheering_Cheering_7_870.jpg +7--Cheering/7_Cheering_Cheering_7_462.jpg +7--Cheering/7_Cheering_Cheering_7_427.jpg +7--Cheering/7_Cheering_Cheering_7_293.jpg +7--Cheering/7_Cheering_Cheering_7_138.jpg +7--Cheering/7_Cheering_Cheering_7_473.jpg +7--Cheering/7_Cheering_Cheering_7_209.jpg +7--Cheering/7_Cheering_Cheering_7_536.jpg +7--Cheering/7_Cheering_Cheering_7_391.jpg +7--Cheering/7_Cheering_Cheering_7_884.jpg +7--Cheering/7_Cheering_Cheering_7_57.jpg +7--Cheering/7_Cheering_Cheering_7_469.jpg +7--Cheering/7_Cheering_Cheering_7_239.jpg +7--Cheering/7_Cheering_Cheering_7_835.jpg +7--Cheering/7_Cheering_Cheering_7_724.jpg +7--Cheering/7_Cheering_Cheering_7_692.jpg +7--Cheering/7_Cheering_Cheering_7_687.jpg +7--Cheering/7_Cheering_Cheering_7_631.jpg +7--Cheering/7_Cheering_Cheering_7_386.jpg +7--Cheering/7_Cheering_Cheering_7_345.jpg +7--Cheering/7_Cheering_Cheering_7_125.jpg +7--Cheering/7_Cheering_Cheering_7_118.jpg +7--Cheering/7_Cheering_Cheering_7_60.jpg +7--Cheering/7_Cheering_Cheering_7_802.jpg +7--Cheering/7_Cheering_Cheering_7_171.jpg +7--Cheering/7_Cheering_Cheering_7_739.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_157.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_412.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_433.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_173.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_269.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_244.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_266.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_553.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_300.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_620.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_148.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_84.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_236.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_174.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_451.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_69.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_437.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_498.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_118.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_86.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_252.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_218.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_297.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_357.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_529.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_32.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_120.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_76.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_25.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_113.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_347.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_452.jpg +8--Election_Campain/8_Election_Campain_Election_Campaign_8_133.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_907.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_784.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_518.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_352.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_214.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_492.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_141.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_35.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_655.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_357.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_571.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_165.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_344.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_849.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_31.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_520.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_297.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_66.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_332.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_325.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_41.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_432.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_40.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_257.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_924.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_209.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_636.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_346.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_397.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_252.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_615.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_933.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_945.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_648.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_748.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_12.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_105.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_607.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_34.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_258.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_431.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_872.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_883.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_161.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_343.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_710.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_74.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_658.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_632.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_375.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_693.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_196.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_767.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_552.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_100.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_595.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_43.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_828.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_424.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_563.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_278.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_391.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_345.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_757.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_930.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_328.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_114.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_60.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_182.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_147.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_45.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_89.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_594.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_613.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_521.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_129.jpg +9--Press_Conference/9_Press_Conference_Press_Conference_9_183.jpg diff --git a/contrib/Retinaface/evaluate/widerface_txt/.keep b/contrib/Retinaface/evaluate/widerface_txt/.keep new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/contrib/Retinaface/include/box_utils.py b/contrib/Retinaface/include/box_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..c1d12bc612ae3ba3ea9d138bfc5997a2b15d8dd9 --- /dev/null +++ b/contrib/Retinaface/include/box_utils.py @@ -0,0 +1,330 @@ +import torch +import numpy as np + + +def point_form(boxes): + """ Convert prior_boxes to (xmin, ymin, xmax, ymax) + representation for comparison to point form ground truth data. + Args: + boxes: (tensor) center-size default boxes from priorbox layers. + Return: + boxes: (tensor) Converted xmin, ymin, xmax, ymax form of boxes. + """ + return torch.cat((boxes[:, :2] - boxes[:, 2:]/2, # xmin, ymin + boxes[:, :2] + boxes[:, 2:]/2), 1) # xmax, ymax + + +def center_size(boxes): + """ Convert prior_boxes to (cx, cy, w, h) + representation for comparison to center-size form ground truth data. + Args: + boxes: (tensor) point_form boxes + Return: + boxes: (tensor) Converted xmin, ymin, xmax, ymax form of boxes. + """ + return torch.cat((boxes[:, 2:] + boxes[:, :2])/2, # cx, cy + boxes[:, 2:] - boxes[:, :2], 1) # w, h + + +def intersect(box_a, box_b): + """ We resize both tensors to [A,B,2] without new malloc: + [A,2] -> [A,1,2] -> [A,B,2] + [B,2] -> [1,B,2] -> [A,B,2] + Then we compute the area of intersect between box_a and box_b. + Args: + box_a: (tensor) bounding boxes, Shape: [A,4]. + box_b: (tensor) bounding boxes, Shape: [B,4]. + Return: + (tensor) intersection area, Shape: [A,B]. + """ + A = box_a.size(0) + B = box_b.size(0) + max_xy = torch.min(box_a[:, 2:].unsqueeze(1).expand(A, B, 2), + box_b[:, 2:].unsqueeze(0).expand(A, B, 2)) + min_xy = torch.max(box_a[:, :2].unsqueeze(1).expand(A, B, 2), + box_b[:, :2].unsqueeze(0).expand(A, B, 2)) + inter = torch.clamp((max_xy - min_xy), min=0) + return inter[:, :, 0] * inter[:, :, 1] + + +def jaccard(box_a, box_b): + """Compute the jaccard overlap of two sets of boxes. The jaccard overlap + is simply the intersection over union of two boxes. Here we operate on + ground truth boxes and default boxes. + E.g.: + A ∩ B / A ∪ B = A ∩ B / (area(A) + area(B) - A ∩ B) + Args: + box_a: (tensor) Ground truth bounding boxes, Shape: [num_objects,4] + box_b: (tensor) Prior boxes from priorbox layers, Shape: [num_priors,4] + Return: + jaccard overlap: (tensor) Shape: [box_a.size(0), box_b.size(0)] + """ + inter = intersect(box_a, box_b) + area_a = ((box_a[:, 2]-box_a[:, 0]) * + (box_a[:, 3]-box_a[:, 1])).unsqueeze(1).expand_as(inter) # [A,B] + area_b = ((box_b[:, 2]-box_b[:, 0]) * + (box_b[:, 3]-box_b[:, 1])).unsqueeze(0).expand_as(inter) # [A,B] + union = area_a + area_b - inter + return inter / union # [A,B] + + +def matrix_iou(a, b): + """ + return iou of a and b, numpy version for data augenmentation + """ + lt = np.maximum(a[:, np.newaxis, :2], b[:, :2]) + rb = np.minimum(a[:, np.newaxis, 2:], b[:, 2:]) + + area_i = np.prod(rb - lt, axis=2) * (lt < rb).all(axis=2) + area_a = np.prod(a[:, 2:] - a[:, :2], axis=1) + area_b = np.prod(b[:, 2:] - b[:, :2], axis=1) + return area_i / (area_a[:, np.newaxis] + area_b - area_i) + + +def matrix_iof(a, b): + """ + return iof of a and b, numpy version for data augenmentation + """ + lt = np.maximum(a[:, np.newaxis, :2], b[:, :2]) + rb = np.minimum(a[:, np.newaxis, 2:], b[:, 2:]) + + area_i = np.prod(rb - lt, axis=2) * (lt < rb).all(axis=2) + area_a = np.prod(a[:, 2:] - a[:, :2], axis=1) + return area_i / np.maximum(area_a[:, np.newaxis], 1) + + +def match(threshold, truths, priors, variances, labels, landms, loc_t, conf_t, landm_t, idx): + """Match each prior box with the ground truth box of the highest jaccard + overlap, encode the bounding boxes, then return the matched indices + corresponding to both confidence and location preds. + Args: + threshold: (float) The overlap threshold used when mathing boxes. + truths: (tensor) Ground truth boxes, Shape: [num_obj, 4]. + priors: (tensor) Prior boxes from priorbox layers, Shape: [n_priors,4]. + variances: (tensor) Variances corresponding to each prior coord, + Shape: [num_priors, 4]. + labels: (tensor) All the class labels for the image, Shape: [num_obj]. + landms: (tensor) Ground truth landms, Shape [num_obj, 10]. + loc_t: (tensor) Tensor to be filled w/ endcoded location targets. + conf_t: (tensor) Tensor to be filled w/ matched indices for conf preds. + landm_t: (tensor) Tensor to be filled w/ endcoded landm targets. + idx: (int) current batch index + Return: + The matched indices corresponding to 1)location 2)confidence 3)landm preds. + """ + # jaccard index + overlaps = jaccard( + truths, + point_form(priors) + ) + # (Bipartite Matching) + # [1,num_objects] best prior for each ground truth + best_prior_overlap, best_prior_idx = overlaps.max(1, keepdim=True) + + # ignore hard gt + valid_gt_idx = best_prior_overlap[:, 0] >= 0.2 + best_prior_idx_filter = best_prior_idx[valid_gt_idx, :] + if best_prior_idx_filter.shape[0] <= 0: + loc_t[idx] = 0 + conf_t[idx] = 0 + return + + # [1,num_priors] best ground truth for each prior + best_truth_overlap, best_truth_idx = overlaps.max(0, keepdim=True) + best_truth_idx.squeeze_(0) + best_truth_overlap.squeeze_(0) + best_prior_idx.squeeze_(1) + best_prior_idx_filter.squeeze_(1) + best_prior_overlap.squeeze_(1) + best_truth_overlap.index_fill_(0, best_prior_idx_filter, 2) # ensure best prior + # TODO refactor: index best_prior_idx with long tensor + # ensure every gt matches with its prior of max overlap + for j in range(best_prior_idx.size(0)): # 判别此anchor是预测哪一个boxes + best_truth_idx[best_prior_idx[j]] = j + matches = truths[best_truth_idx] # Shape: [num_priors,4] 此处为每一个anchor对应的bbox取出来 + conf = labels[best_truth_idx] # Shape: [num_priors] 此处为每一个anchor对应的label取出来 + conf[best_truth_overlap < threshold] = 0 # label as background overlap<0.35的全部作为负样本 + loc = encode(matches, priors, variances) + + matches_landm = landms[best_truth_idx] + landm = encode_landm(matches_landm, priors, variances) + loc_t[idx] = loc # [num_priors,4] encoded offsets to learn + conf_t[idx] = conf # [num_priors] top class label for each prior + landm_t[idx] = landm + + +def encode(matched, priors, variances): + """Encode the variances from the priorbox layers into the ground truth boxes + we have matched (based on jaccard overlap) with the prior boxes. + Args: + matched: (tensor) Coords of ground truth for each prior in point-form + Shape: [num_priors, 4]. + priors: (tensor) Prior boxes in center-offset form + Shape: [num_priors,4]. + variances: (list[float]) Variances of priorboxes + Return: + encoded boxes (tensor), Shape: [num_priors, 4] + """ + + # dist b/t match center and prior's center + g_cxcy = (matched[:, :2] + matched[:, 2:])/2 - priors[:, :2] + # encode variance + g_cxcy /= (variances[0] * priors[:, 2:]) + # match wh / prior wh + g_wh = (matched[:, 2:] - matched[:, :2]) / priors[:, 2:] + g_wh = torch.log(g_wh) / variances[1] + # return target for smooth_l1_loss + return torch.cat([g_cxcy, g_wh], 1) # [num_priors,4] + +def encode_landm(matched, priors, variances): + """Encode the variances from the priorbox layers into the ground truth boxes + we have matched (based on jaccard overlap) with the prior boxes. + Args: + matched: (tensor) Coords of ground truth for each prior in point-form + Shape: [num_priors, 10]. + priors: (tensor) Prior boxes in center-offset form + Shape: [num_priors,4]. + variances: (list[float]) Variances of priorboxes + Return: + encoded landm (tensor), Shape: [num_priors, 10] + """ + + # dist b/t match center and prior's center + matched = torch.reshape(matched, (matched.size(0), 5, 2)) + priors_cx = priors[:, 0].unsqueeze(1).expand(matched.size(0), 5).unsqueeze(2) + priors_cy = priors[:, 1].unsqueeze(1).expand(matched.size(0), 5).unsqueeze(2) + priors_w = priors[:, 2].unsqueeze(1).expand(matched.size(0), 5).unsqueeze(2) + priors_h = priors[:, 3].unsqueeze(1).expand(matched.size(0), 5).unsqueeze(2) + priors = torch.cat([priors_cx, priors_cy, priors_w, priors_h], dim=2) + g_cxcy = matched[:, :, :2] - priors[:, :, :2] + # encode variance + g_cxcy /= (variances[0] * priors[:, :, 2:]) + # g_cxcy /= priors[:, :, 2:] + g_cxcy = g_cxcy.reshape(g_cxcy.size(0), -1) + # return target for smooth_l1_loss + return g_cxcy + + +# Adapted from https://github.com/Hakuyume/chainer-ssd +def decode(loc, priors, variances): + """Decode locations from predictions using priors to undo + the encoding we did for offset regression at train time. + Args: + loc (tensor): location predictions for loc layers, + Shape: [num_priors,4] + priors (tensor): Prior boxes in center-offset form. + Shape: [num_priors,4]. + variances: (list[float]) Variances of priorboxes + Return: + decoded bounding box predictions + """ + + boxes = torch.cat(( + priors[:, :2] + loc[:, :2] * variances[0] * priors[:, 2:], + priors[:, 2:] * torch.exp(loc[:, 2:] * variances[1])), 1) + boxes[:, :2] -= boxes[:, 2:] / 2 + boxes[:, 2:] += boxes[:, :2] + return boxes + +def decode_landm(pre, priors, variances): + """Decode landm from predictions using priors to undo + the encoding we did for offset regression at train time. + Args: + pre (tensor): landm predictions for loc layers, + Shape: [num_priors,10] + priors (tensor): Prior boxes in center-offset form. + Shape: [num_priors,4]. + variances: (list[float]) Variances of priorboxes + Return: + decoded landm predictions + """ + landms = torch.cat((priors[:, :2] + pre[:, :2] * variances[0] * priors[:, 2:], + priors[:, :2] + pre[:, 2:4] * variances[0] * priors[:, 2:], + priors[:, :2] + pre[:, 4:6] * variances[0] * priors[:, 2:], + priors[:, :2] + pre[:, 6:8] * variances[0] * priors[:, 2:], + priors[:, :2] + pre[:, 8:10] * variances[0] * priors[:, 2:], + ), dim=1) + return landms + + +def log_sum_exp(x): + """Utility function for computing log_sum_exp while determining + This will be used to determine unaveraged confidence loss across + all examples in a batch. + Args: + x (Variable(tensor)): conf_preds from conf layers + """ + x_max = x.data.max() + return torch.log(torch.sum(torch.exp(x-x_max), 1, keepdim=True)) + x_max + + +# Original author: Francisco Massa: +# https://github.com/fmassa/object-detection.torch +# Ported to PyTorch by Max deGroot (02/01/2017) +def nms(boxes, scores, overlap=0.5, top_k=200): + """Apply non-maximum suppression at test time to avoid detecting too many + overlapping bounding boxes for a given object. + Args: + boxes: (tensor) The location preds for the img, Shape: [num_priors,4]. + scores: (tensor) The class predscores for the img, Shape:[num_priors]. + overlap: (float) The overlap thresh for suppressing unnecessary boxes. + top_k: (int) The Maximum number of box preds to consider. + Return: + The indices of the kept boxes with respect to num_priors. + """ + + keep = torch.Tensor(scores.size(0)).fill_(0).long() + if boxes.numel() == 0: + return keep + x1 = boxes[:, 0] + y1 = boxes[:, 1] + x2 = boxes[:, 2] + y2 = boxes[:, 3] + area = torch.mul(x2 - x1, y2 - y1) + v, idx = scores.sort(0) # sort in ascending order + # I = I[v >= 0.01] + idx = idx[-top_k:] # indices of the top-k largest vals + xx1 = boxes.new() + yy1 = boxes.new() + xx2 = boxes.new() + yy2 = boxes.new() + w = boxes.new() + h = boxes.new() + + # keep = torch.Tensor() + count = 0 + while idx.numel() > 0: + i = idx[-1] # index of current largest val + # keep.append(i) + keep[count] = i + count += 1 + if idx.size(0) == 1: + break + idx = idx[:-1] # remove kept element from view + # load bboxes of next highest vals + torch.index_select(x1, 0, idx, out=xx1) + torch.index_select(y1, 0, idx, out=yy1) + torch.index_select(x2, 0, idx, out=xx2) + torch.index_select(y2, 0, idx, out=yy2) + # store element-wise max with next highest score + xx1 = torch.clamp(xx1, min=x1[i]) + yy1 = torch.clamp(yy1, min=y1[i]) + xx2 = torch.clamp(xx2, max=x2[i]) + yy2 = torch.clamp(yy2, max=y2[i]) + w.resize_as_(xx2) + h.resize_as_(yy2) + w = xx2 - xx1 + h = yy2 - yy1 + # check sizes of xx1 and xx2.. after each iteration + w = torch.clamp(w, min=0.0) + h = torch.clamp(h, min=0.0) + inter = w*h + # IoU = i / (area(a) + area(b) - i) + rem_areas = torch.index_select(area, 0, idx) # load remaining areas) + union = (rem_areas - inter) + area[i] + IoU = inter/union # store result in iou + # keep only elements with an IoU <= overlap + idx = idx[IoU.le(overlap)] + return keep, count + + diff --git a/contrib/Retinaface/include/prior_box.py b/contrib/Retinaface/include/prior_box.py new file mode 100644 index 0000000000000000000000000000000000000000..80c7f858371ed71f39ed609eb44b423d8693bf61 --- /dev/null +++ b/contrib/Retinaface/include/prior_box.py @@ -0,0 +1,34 @@ +import torch +from itertools import product as product +import numpy as np +from math import ceil + + +class PriorBox(object): + def __init__(self, cfg, image_size=None, phase='train'): + super(PriorBox, self).__init__() + self.min_sizes = cfg['min_sizes'] + self.steps = cfg['steps'] + self.clip = cfg['clip'] + self.image_size = image_size + self.feature_maps = [[ceil(self.image_size[0]/step), ceil(self.image_size[1]/step)] for step in self.steps] + self.name = "s" + + def forward(self): + anchors = [] + for k, f in enumerate(self.feature_maps): + min_sizes = self.min_sizes[k] + for i, j in product(range(f[0]), range(f[1])): + for min_size in min_sizes: + s_kx = min_size / self.image_size[1] + s_ky = min_size / self.image_size[0] + dense_cx = [x * self.steps[k] / self.image_size[1] for x in [j + 0.5]] + dense_cy = [y * self.steps[k] / self.image_size[0] for y in [i + 0.5]] + for cy, cx in product(dense_cy, dense_cx): + anchors += [cx, cy, s_kx, s_ky] + + # back to torch land + output = torch.Tensor(anchors).view(-1, 4) + if self.clip: + output.clamp_(max=1, min=0) + return output diff --git a/contrib/Retinaface/include/py_cpu_nms.py b/contrib/Retinaface/include/py_cpu_nms.py new file mode 100644 index 0000000000000000000000000000000000000000..54e7b25fef72b518df6dcf8d6fb78b986796c6e3 --- /dev/null +++ b/contrib/Retinaface/include/py_cpu_nms.py @@ -0,0 +1,38 @@ +# -------------------------------------------------------- +# Fast R-CNN +# Copyright (c) 2015 Microsoft +# Licensed under The MIT License [see LICENSE for details] +# Written by Ross Girshick +# -------------------------------------------------------- + +import numpy as np + +def py_cpu_nms(dets, thresh): + """Pure Python NMS baseline.""" + x1 = dets[:, 0] + y1 = dets[:, 1] + x2 = dets[:, 2] + y2 = dets[:, 3] + scores = dets[:, 4] + + areas = (x2 - x1 + 1) * (y2 - y1 + 1) + order = scores.argsort()[::-1] + + keep = [] + while order.size > 0: + i = order[0] + keep.append(i) + xx1 = np.maximum(x1[i], x1[order[1:]]) + yy1 = np.maximum(y1[i], y1[order[1:]]) + xx2 = np.minimum(x2[i], x2[order[1:]]) + yy2 = np.minimum(y2[i], y2[order[1:]]) + + w = np.maximum(0.0, xx2 - xx1 + 1) + h = np.maximum(0.0, yy2 - yy1 + 1) + inter = w * h + ovr = inter / (areas[i] + areas[order[1:]] - inter) + + inds = np.where(ovr <= thresh)[0] + order = order[inds + 1] + + return keep diff --git a/contrib/Retinaface/main.py b/contrib/Retinaface/main.py new file mode 100644 index 0000000000000000000000000000000000000000..73a6aff2cb56a747a4d3fd35a525b15102e15672 --- /dev/null +++ b/contrib/Retinaface/main.py @@ -0,0 +1,188 @@ +#!/usr/bin/env python +# coding=utf-8 + +""" +Copyright(C) 2021. Huawei Technologies Co.,Ltd. All rights reserved. + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + +http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +See the License for the specific language governing permissions and +limitations under the License. +""" + +from StreamManagerApi import StreamManagerApi, MxDataInput, StringVector +from StreamManagerApi import StreamManagerApi, MxProtobufIn, InProtobufVector, StringVector +import numpy as np +import MxpiDataType_pb2 as MxpiDataType +import cv2 +import os +import argparse +from PIL import Image +from utils import preprocess , postprocess +# from preprocess import preprocess +import json +import tqdm +import shutil +if __name__ == '__main__': + # init stream manager + streamManagerApi = StreamManagerApi() + ret = streamManagerApi.InitManager() + if ret != 0: + print("Failed to init Stream manager, ret=%s" % str(ret)) + exit() + + # create streams by pipeline config file + # create streams by pipeline config file + pipeline = { + "Retinaface": { + "stream_config": { + "deviceId": "3" + }, + "appsrc0": { + "props": { + "blocksize": "409600" + }, + "factory": "appsrc", + "next": "mxpi_tensorinfer0" + }, + "mxpi_tensorinfer0": { + "props": { + "singleBatchInfer": "1", + "dataSource": "appsrc0", + "modelPath": "/home/dongyu1/MindX_SDK/mxVision-2.0.4/Retinaface/model/newRetinaface.om" + }, + "factory": "mxpi_tensorinfer", + "next": "mxpi_objectpostprocessor0" + }, + "mxpi_objectpostprocessor0": { + "props": { + "dataSource": "mxpi_tensorinfer0", + "postProcessConfigPath": "/home/dongyu1/MindX_SDK/mxVision-2.0.4/Retinaface/config/face_Retina.cfg", + "postProcessLibPath": "libtotalyunetpostprocess.so" + }, + "factory": "mxpi_objectpostprocessor", + "next": "appsink0" + }, + "appsink0": { + "props": { + "blocksize": "409600" + }, + "factory": "appsink" + } + } + } + pipelineStr = json.dumps(pipeline).encode() + ret = streamManagerApi.CreateMultipleStreams(pipelineStr) + if ret != 0: + print("Failed to create Stream, ret=%s" % str(ret)) + exit() + + tensor_data , return_img = preprocess() + tensor = tensor_data[None, :] + print(tensor.shape) + + STREAMNAME = b"Retinaface" + INPLUGINID = 0 + visionList = MxpiDataType.MxpiVisionList() + visionVec = visionList.visionVec.add() + visionInfo = visionVec.visionInfo + # The standard input size of model is 1000 + visionInfo.width = 1000 + visionInfo.height = 1000 + visionInfo.widthAligned = 1000 + visionInfo.heightAligned = 1000 + visionData = visionVec.visionData + visionData.dataStr = tensor.tobytes() + visionData.deviceId = 0 + visionData.memType = 0 + visionData.dataSize = len(tensor) + + KEY_VALUE = b"appsrc0" + protobufVec = InProtobufVector() + + protobuf = MxProtobufIn() + protobuf.key = KEY_VALUE + protobuf.type = b"MxTools.MxpiVisionList" + protobuf.protobuf = visionList.SerializeToString() + protobufVec.push_back(protobuf) + + uniqueId = streamManagerApi.SendProtobuf(STREAMNAME, INPLUGINID, protobufVec) + + # get plugin output data + # KEY_VALUE = b"mxpi_tensorinfer0" + # keyVec = StringVector() + # keyVec.push_back(KEY_VALUE) + # inferResult = streamManagerApi.GetProtobuf(STREAMNAME, 0, keyVec) + # if inferResult.size() == 0: + # print("inferResult is null") + # exit() + # if inferResult[0].errorCode != 0: + # print("GetProtobuf error. errorCode=%d, errorMsg=%s" % ( + # inferResult[0].errorCode, inferResult[0].messageName.decode())) + # exit() + # + # # get the infer result + # infer_list = MxpiDataType.MxpiTensorPackageList() + # infer_list.ParseFromString(inferResult[0].messageBuf) + # infer_data0 = infer_list.tensorPackageVec[0].tensorVec[0].dataStr + # loc = np.frombuffer(infer_data0, dtype=np.float32) + # # print(loc.shape) + # infer_data1 = infer_list.tensorPackageVec[0].tensorVec[1].dataStr + # conf = np.frombuffer(infer_data1, dtype=np.float32) + # # print(conf.shape) + # infer_data2 = infer_list.tensorPackageVec[0].tensorVec[2].dataStr + # landms = np.frombuffer(infer_data2, dtype=np.float32) + # # print(landms.shape) + # loc = postprocess(loc , conf , landms) + # print(loc.shape) + keys = [b'mxpi_objectpostprocessor0'] + keyVec = StringVector() + for key in keys: + keyVec.push_back(key) + infer_result = streamManagerApi.GetProtobuf(STREAMNAME, 0, keyVec) + if infer_result.size() == 0: + print("infer_result is null") + exit() + + if infer_result[0].errorCode != 0: + print("GetProtobuf error. errorCode=%d" % (infer_result[0].errorCode)) + exit() + objectList = MxpiDataType.MxpiObjectList() + objectList.ParseFromString(infer_result[0].messageBuf) + # print(objectList) + + img = cv2.imread('test.jpg') + result = objectList.objectVec + print(result) + resize , left, top, right, bottom = return_img + for x in result: + new_x0 = max(int((x.x0-left)/resize), 0) + new_x1 = max(int((x.x1-left)/resize), 0) + new_y0 = max(int((x.y0-top)/resize), 0) + new_y1 = max(int((x.y1-top)/resize), 0) + # if () + # newconfidence=x.classVec[1] + confidence = x.classVec[0] + print(new_x0) + print(new_y0) + print(new_x1) + print(new_y1) + print(x.classVec[0].confidence) + + + # print("#######") + # print(result[0].x0) + # print(result[0].x1) + # print(result[0].y0) + # print(result[0].y1) + cv2.rectangle(img, (new_x0, new_y0), (new_x1, new_y1), (255, 0, 0), 2) + # break + cv2.imwrite("./result.jpg", img) + streamManagerApi.DestroyAllStreams() diff --git a/contrib/Retinaface/model/run.sh b/contrib/Retinaface/model/run.sh new file mode 100644 index 0000000000000000000000000000000000000000..4525be50651b8fbb2a6045de280e18921f13f2bd --- /dev/null +++ b/contrib/Retinaface/model/run.sh @@ -0,0 +1,18 @@ +#!/bin/bash + + +# 设置环境变量(请确认install_path路径是否正确) +# Set environment PATH (Please confirm that the install_path is correct). + +export install_path=/usr/local/Ascend/ascend-toolkit/latest +export PATH=/usr/local/python3/bin:${install_path}/atc/ccec_compiler/bin:${install_path}/atc/bin:$PATH +export PYTHONPATH=${install_path}/atc/python/site-packages:${install_path}/atc/python/site-packages/auto_tune.egg/auto_tune:${install_path}/atc/python/site-packages/schedule_search.egg +export LD_LIBRARY_PATH=${install_path}/atc/lib64:$LD_LIBRARY_PATH +export ASCEND_OPP_PATH=${install_path}/opp + + +# 执行,转换Retinaface模型 +# Execute, transform Retinaface model. + +atc --framework=5 --model=retinaface.onnx --output=retinaface --input_format=NCHW --input_shape="image:1,3,1000,1000" --log=debug --soc_version=Ascend310 --insert_op_conf=../config/aipp.cfg +# 说明:out_nodes制定了输出节点的顺序,需要与模型后处理适配。 diff --git a/contrib/Retinaface/plugin/CMakeLists.txt b/contrib/Retinaface/plugin/CMakeLists.txt new file mode 100644 index 0000000000000000000000000000000000000000..d2c110169faea1f9c424101e28a30859d978ccfa --- /dev/null +++ b/contrib/Retinaface/plugin/CMakeLists.txt @@ -0,0 +1,31 @@ +cmake_minimum_required(VERSION 3.5.2) +project(totalyunetpostprocess) + +add_definitions(-D_GLIBCXX_USE_CXX11_ABI=0) +add_definitions(-Dgoogle=mindxsdk_private) + +set(PLUGIN_NAME "totalyunetpostprocess") +set(TARGET_LIBRARY ${PLUGIN_NAME}) +set(MX_SDK_HOME "/home/dongyu1/MindX_SDK/mxVision-2.0.4") + +include_directories(${MX_SDK_HOME}/include) +include_directories(${MX_SDK_HOME}/opensource/include) +include_directories(${MX_SDK_HOME}/opensource/include/gstreamer-1.0) +include_directories(${MX_SDK_HOME}/opensource/include/glib-2.0) +include_directories(${MX_SDK_HOME}/opensource/lib/glib-2.0/include) +include_directories(${MX_SDK_HOME}/opensource/include/opencv4) + +link_directories(${MX_SDK_HOME}/opensource/lib/) +link_directories(${MX_SDK_HOME}/lib) + +add_compile_options(-std=c++11 -fPIC -fstack-protector-all -pie -Wno-deprecated-declarations) +add_compile_options("-DPLUGIN_NAME=${PLUGIN_NAME}") + +add_definitions(-DENABLE_DVPP_INTERFACE) +add_library(${TARGET_LIBRARY} SHARED TotalYunetPostProcess.cpp) + +target_link_libraries(${TARGET_LIBRARY} glib-2.0 gstreamer-1.0 gobject-2.0 gstbase-1.0 gmodule-2.0) +target_link_libraries(${TARGET_LIBRARY} plugintoolkit mxpidatatype mxbase opencv_world) +target_link_libraries(${TARGET_LIBRARY} -Wl,-z,relro,-z,now,-z,noexecstack -s) + +install(TARGETS ${TARGET_LIBRARY} LIBRARY DESTINATION ${MX_SDK_HOME}/lib/modelpostprocessors) diff --git a/contrib/Retinaface/plugin/TotalYunetPostProcess.cpp b/contrib/Retinaface/plugin/TotalYunetPostProcess.cpp new file mode 100644 index 0000000000000000000000000000000000000000..2295658abd40e5de939db81163b336add6fd11fb --- /dev/null +++ b/contrib/Retinaface/plugin/TotalYunetPostProcess.cpp @@ -0,0 +1,321 @@ +/* + * Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#include "TotalYunetPostProcess.h" +#include "MxBase/Log/Log.h" +#include +namespace { + const uint32_t LEFTTOPX = 0; + const uint32_t LEFTTOPY = 1; + const uint32_t RIGHTTOPX = 2; + const uint32_t RIGHTTOPY = 3; + const int PRIOR_PARAMETERS[3][2] = {{16, 32}, {64, 128}, {256, 512}}; + const int PRIOR_PARAMETERS_COUNT = 2; + const float IMAGE_WIDTH = 1000.0; + const float IMAGE_HEIGHT = 1000.0; + const float STEPS[3] = {8.0, 16.0, 32.0}; + const float VARIANCE[2] = {0.1, 0.2}; + const uint32_t RECTANGLEPOINT = 4; + const uint32_t KEYPOINTNUM = 5; + const uint32_t POINT_SIZE = 1; + const uint32_t DIM = 2; + const uint32_t RECTANGLE_COLOR = 1; + const uint32_t KEYPOINT_COLOR = 2; + const uint32_t DIV_TWO = 2; +} +namespace MxBase { + TotalYunetPostProcess& TotalYunetPostProcess::operator=(const TotalYunetPostProcess& other) + { + if (this == &other) { + return *this; + } + ObjectPostProcessBase::operator=(other); + return *this; + } + + APP_ERROR TotalYunetPostProcess::Init(const std::map >& postConfig) + { + LogInfo << "Start to Init TotalYunetPostProcess."; + APP_ERROR ret = ObjectPostProcessBase::Init(postConfig); + if (ret != APP_ERR_OK) { + LogError << GetError(ret) << "Fail to superInit in ObjectPostProcessBase."; + return ret; + } + LogInfo << "End to Init TotalYunetPostProcess."; + return APP_ERR_OK; + } + + APP_ERROR TotalYunetPostProcess::DeInit() + { + return APP_ERR_OK; + } + + void TotalYunetPostProcess::ObjectDetectionOutput(const std::vector & tensors, + std::vector >& objectInfos, + const std::vector & resizedImageInfos) + { + LogInfo << "TotalYunetPostProcess start to write results."; + + for (auto num : { objectInfoTensor_, objectConfTensor_ }) { +// LogInfo << "1111111111111111111111111"; + if ((num >= tensors.size()) || (num < 0)) { + LogError << GetError(APP_ERR_INVALID_PARAM) << "TENSOR(" << num + << ") must ben less than tensors'size(" << tensors.size() << ") and larger than 0."; + } + } + auto loc = tensors[0].GetBuffer(); + auto conf = tensors[1].GetBuffer(); + auto shape = tensors[0].GetShape(); + auto keyshape = tensors[2].GetShape(); + auto key = tensors[2].GetBuffer(); +// LogInfo << shape[0]; +// LogInfo << shape[1]; +// LogInfo << shape[2]; +// LogInfo << keyshape[0]; +// LogInfo << keyshape[1]; +// LogInfo << keyshape[2]; + cv::Mat PriorBox; + cv::Mat location = cv::Mat(shape[1], shape[2], CV_32FC1, tensors[0].GetBuffer()); + cv::Mat keylocation = cv::Mat(keyshape[1], keyshape[2], CV_32FC1, tensors[2].GetBuffer()); +// LogInfo << "1111111111111111111111111225@@"; + GeneratePriorBox(PriorBox); +// LogInfo << "1111111111111111111111111225##"; + float width_resize = resizedImageInfos[0].widthResize; + float height_resize = resizedImageInfos[0].heightResize; + float width_original = resizedImageInfos[0].widthOriginal; + float height_original = resizedImageInfos[0].heightOriginal; + float width_resize_scale = width_resize / width_original; + float height_resize_scale = height_resize / height_original; + float resize_scale_factor = 1.0; + if (width_resize_scale >= height_resize_scale) { + resize_scale_factor = height_resize_scale; + } else { + resize_scale_factor = width_resize_scale; + } + // LogInfo << "1111111111111111111111111@@"; + cv::Mat res = decode_for_loc(location, PriorBox, keylocation ,resize_scale_factor); + // LogInfo << "1111111111111111111111111@@"; + // LogInfo << "1111111111111111111111111##"; + uint32_t batchSize = shape[0]; + uint32_t VectorNum = shape[1]; + + std::map match; + for (uint32_t i = 0; i < batchSize; i++) { + //LogInfo << "222222222222222222222222"; + std::vector objectInfo; + std::vector objectInfoSorted; + std::vector keypointInfo; + std::vector keypointInfoSorted; + auto dataPtr_Conf = (float *) tensors[1].GetBuffer() + i * tensors[1].GetByteSize() / batchSize; + // LogInfo << batchSize ; + // LogInfo << tensors[1].GetBuffer() ; + // LogInfo << tensors[1].GetByteSize() / batchSize ; + // LogInfo << dataPtr_Conf; + // LogInfo < 0.01) { + ObjectInfo objInfo; + // LogInfo << conf ; + objInfo.confidence = j; + objInfo.x0 = res.at(j, LEFTTOPX) * IMAGE_WIDTH / width_resize_scale; + objInfo.y0 = res.at(j, LEFTTOPY) * IMAGE_HEIGHT / height_resize_scale; + objInfo.x1 = res.at(j, RIGHTTOPX) * IMAGE_WIDTH / width_resize_scale; + objInfo.y1 = res.at(j, RIGHTTOPY) * IMAGE_HEIGHT / height_resize_scale; + objInfo.classId = RECTANGLE_COLOR; + // LogInfo<(keypoint_Pos, RECTANGLEPOINT + k * DIM) * IMAGE_WIDTH / width_resize_scale; + float y = res.at(keypoint_Pos, RECTANGLEPOINT + k * DIM + 1) * IMAGE_HEIGHT / height_resize_scale; + ObjectInfo objInfo; + + // use [(x-2,y-2),(x+2,y+2)] object rectangle to draw keypoints + objInfo.x0= x - POINT_SIZE; + objInfo.x1= x + POINT_SIZE; + objInfo.y0= y - POINT_SIZE; + objInfo.y1= y + POINT_SIZE; + objInfo.confidence = 0; + objInfo.classId = KEYPOINT_COLOR; + objectInfoSorted.push_back(objInfo); + } + } + + objectInfos.push_back(objectInfoSorted); + } + LogInfo << "TotalYunetPostProcess write results successed."; + } + APP_ERROR TotalYunetPostProcess::Process(const std::vector &tensors, + std::vector> &objectInfos, + const std::vector &resizedImageInfos, + const std::map> &configParamMap) + { + LogInfo << "Start to Process TotalYunetPostProcess."; + APP_ERROR ret = APP_ERR_OK; + auto inputs = tensors; + ret = CheckAndMoveTensors(inputs); + if (ret != APP_ERR_OK) { + LogError << "CheckAndMoveTensors failed. ret=" << ret; + return ret; + } + ObjectDetectionOutput(inputs, objectInfos, resizedImageInfos); + LogInfo << "End to Process TotalYunetPostProcess."; + return APP_ERR_OK; + } + + /* + * @description: Generate prior boxes for detection boxes decoding + * @param anchors A Matrix used to save prior boxes that contains box coordinates(x0,y0,x1,y1), shape[21824,4] + */ + void TotalYunetPostProcess::GeneratePriorBox(cv::Mat &anchors) + { + std::vector>feature_maps(3, std::vector(DIM)); + for (int i = 0; i < feature_maps.size(); i++) { + // LogInfo << "22222@@"; + feature_maps[i][0] = ceil(IMAGE_HEIGHT / STEPS[i]); + feature_maps[i][1] = ceil(IMAGE_WIDTH / STEPS[i]); + } + //LogInfo << feature_maps.size(); + for (int k = 0; k < feature_maps.size(); k++) { + // LogInfo << "3333333@@"; + auto f = feature_maps[k]; + // LogInfo << f[0]; + // LogInfo << f[1]; + float step = (float)STEPS[k]; + for (int i = 0; i < f[0]; i++) { + // LogInfo << "44444444@@"; + // LogInfo << f[0]; + // LogInfo << f[1]; + for (int j = 0; j < f[1]; j++) { + //LogInfo << j; + for (int l = 0; l < PRIOR_PARAMETERS_COUNT && PRIOR_PARAMETERS[k][l] != -1; l++) { + //LogInfo << l; + float min_size = PRIOR_PARAMETERS[k][l]; + cv::Mat anchor(1, RECTANGLEPOINT * 2, CV_32F); + float center_x = (j + 0.5f) * step; + float center_y = (i + 0.5f) * step; + + float xmin = (center_x - min_size / 2.f) / IMAGE_WIDTH; + float ymin = (center_y - min_size / 2.f) / IMAGE_HEIGHT; + float xmax = (center_x + min_size / 2.f) / IMAGE_WIDTH; + float ymax = (center_y + min_size / 2.f) / IMAGE_HEIGHT; + + float prior_width = xmax - xmin; + float prior_height = ymax - ymin; + float prior_center_x = (xmin + xmax) / 2; + float prior_center_y = (ymin + ymax) / 2; + + anchor.at(0, LEFTTOPX) = center_x/IMAGE_WIDTH; + anchor.at(0, LEFTTOPY) = center_y/IMAGE_HEIGHT; + anchor.at(0, RIGHTTOPX) = min_size/IMAGE_WIDTH; + anchor.at(0, RIGHTTOPY) = min_size/IMAGE_HEIGHT; + + + anchor.at(0, LEFTTOPX+4) = prior_width; + anchor.at(0, LEFTTOPY+4) = prior_height; + anchor.at(0, RIGHTTOPX+4) = prior_center_x; + anchor.at(0, RIGHTTOPY+4) = prior_center_y; + + + anchors.push_back(anchor); + } + } + } + } + } + /* + * @description: Generate prior boxes for detection boxes decoding + * @param loc: The matrix which contains box biases, shape[21824, 4] + * @param prior: The matrix which contains prior box coordinates, shape[21824,4] + * @param resize_scale_factor: The factor of min(WidthOriginal/WidthResize, HeightOriginal/HeightResize) + * @param boxes: The matrix which contains detection box coordinates(x0,y0,x1,y1), shape[21824,4] + */ + cv::Mat TotalYunetPostProcess::decode_for_loc(cv::Mat &loc, cv::Mat &prior,cv::Mat &key ,float resize_scale_factor) { + LogInfo << loc.rows; + LogInfo << loc.cols; + LogInfo << prior.rows; + LogInfo << prior.cols; + LogInfo << key.rows; + LogInfo << key.cols; + cv::Mat loc_first = loc.colRange(0, 2); + cv::Mat loc_last = loc.colRange(2, 4); + cv::Mat prior_first = prior.colRange(0, 2); + cv::Mat prior_last = prior.colRange(2, 4); + cv::Mat prior_first2 = prior.colRange(4, 6); + cv::Mat prior_last2 = prior.colRange(6, 8); + cv::Mat facepoint = key.colRange(0, 10); + cv::Mat boxes1 = prior_first + (loc_first * VARIANCE[0]).mul(prior_last); + cv::Mat boxes2; + cv::exp(loc_last * VARIANCE[1], boxes2); + boxes2 = boxes2.mul(prior_last); + boxes1 = boxes1 - boxes2 / DIV_TWO; + boxes2 = boxes2 + boxes1; + cv::Mat boxes3; + for (int i = 0; i < KEYPOINTNUM; i++) + { + cv::Mat singlepoint = facepoint.colRange(i * 2, (i + 1) * 2); + singlepoint = prior_last2 + (singlepoint * VARIANCE[0]).mul(prior_first2); + if (i == 0) boxes3 = singlepoint; + else cv::hconcat(boxes3, singlepoint, boxes3); + } + + cv::Mat boxes; + cv::hconcat(boxes1, boxes2, boxes); + cv::hconcat(boxes, boxes3, boxes); + if (resize_scale_factor == 0) { + LogError << "resize_scale_factor is 0."; + } + return boxes; + } + + extern "C" { + std::shared_ptr GetObjectInstance() + { + LogInfo << "Begin to get TotalYunetPostProcess instance."; + auto instance = std::make_shared(); + LogInfo << "End to get TotalYunetPostProcess instance."; + return instance; + } + } +} diff --git a/contrib/Retinaface/plugin/TotalYunetPostProcess.h b/contrib/Retinaface/plugin/TotalYunetPostProcess.h new file mode 100644 index 0000000000000000000000000000000000000000..5700b346cefdb7fab5001f03e8f2ab2ae5af86fd --- /dev/null +++ b/contrib/Retinaface/plugin/TotalYunetPostProcess.h @@ -0,0 +1,68 @@ +/* + * Copyright (c) Huawei Technologies Co., Ltd. 2020-2021. All rights reserved. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +#ifndef Yunet_POST_PROCESS_H +#define Yunet_POST_PROCESS_H +#include "MxBase/PostProcessBases/ObjectPostProcessBase.h" +#include "MxBase/CV/ObjectDetection/Nms/Nms.h" +#include "opencv2/opencv.hpp" +#define DEFAULT_OBJECT_CONF_TENSOR 1 +#define DEFAULT_OBJECT_INFO_TENSOR 0 +#define DEFAULT_IOU_THRESH 0.4 +#define DEFAULT_CONFIDENCE_THRESH 0.5 + +namespace MxBase { + bool operator<(const ObjectInfo &a ,const ObjectInfo &b){ + return a.confidence < b.confidence; + } + + class TotalYunetPostProcess : public ObjectPostProcessBase { + public: + TotalYunetPostProcess() = default; + + ~TotalYunetPostProcess() = default; + + TotalYunetPostProcess(const TotalYunetPostProcess& other); + + TotalYunetPostProcess& operator=(const TotalYunetPostProcess& other); + + APP_ERROR Init(const std::map >& postConfig) override; + + APP_ERROR DeInit() override; + + APP_ERROR Process(const std::vector &tensors, std::vector> &objectInfos, + const std::vector &resizedImageInfos = {}, + const std::map> &configParamMap = {}) override; + + protected: + void GeneratePriorBox(cv::Mat &anchors); + cv::Mat decode_for_loc(cv::Mat &loc, cv::Mat &prior,cv::Mat &key ,float resize_scale_factor); + void ObjectDetectionOutput(const std::vector & tensors, + std::vector >& objectInfos, + const std::vector & resizedImageInfos = {}); + private: + uint32_t objectConfTensor_ = DEFAULT_OBJECT_CONF_TENSOR; + uint32_t objectInfoTensor_ = DEFAULT_OBJECT_INFO_TENSOR; + float iouThresh_ = DEFAULT_IOU_THRESH; + float confThresh_ = DEFAULT_CONFIDENCE_THRESH; + }; + + extern "C" { + std::shared_ptr GetObjectInstance(); + } + +} +#endif diff --git a/contrib/Retinaface/plugin/build.sh b/contrib/Retinaface/plugin/build.sh new file mode 100644 index 0000000000000000000000000000000000000000..006f86ba8c189fb585e3523b066f5e0a4ec66c07 --- /dev/null +++ b/contrib/Retinaface/plugin/build.sh @@ -0,0 +1,36 @@ +#!/bin/bash +# Copyright 2021 Huawei Technologies Co., Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License.mitations under the License. + +set -e + +current_folder="$( cd "$(dirname "$0")" ;pwd -P )" + +function build_plugin() { + build_path=$current_folder/build + if [ -d "$build_path" ]; then + rm -rf "$build_path" + else + echo "file $build_path is not exist." + fi + mkdir -p "$build_path" + cd "$build_path" + cmake .. + make -j + cd .. + exit 0 +} + +build_plugin +exit 0 \ No newline at end of file diff --git a/contrib/Retinaface/run.sh b/contrib/Retinaface/run.sh new file mode 100644 index 0000000000000000000000000000000000000000..65177cb838ab57905d02ed00d760b13ada5632c7 --- /dev/null +++ b/contrib/Retinaface/run.sh @@ -0,0 +1,33 @@ +#!/bin/bash + +# Copyright 2020 Huawei Technologies Co., Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +set -e + +CUR_PATH=$(cd "$(dirname "$0")" || { warn "Failed to check path/to/run.sh" ; exit ; } ; pwd) + +# Simple log helper functions +info() { echo -e "\033[1;34m[INFO ][MxStream] $1\033[1;37m" ; } +warn() { echo >&2 -e "\033[1;31m[WARN ][MxStream] $1\033[1;37m" ; } + +export LD_LIBRARY_PATH=${MX_SDK_HOME}/lib:${MX_SDK_HOME}/opensource/lib:${MX_SDK_HOME}/opensource/lib64:/usr/local/Ascend/ascend-toolkit/latest/acllib/lib64:${LD_LIBRARY_PATH} +export GST_PLUGIN_SCANNER=${MX_SDK_HOME}/opensource/libexec/gstreamer-1.0/gst-plugin-scanner +export GST_PLUGIN_PATH=${MX_SDK_HOME}/opensource/lib/gstreamer-1.0:${MX_SDK_HOME}/lib/plugins + +#to set PYTHONPATH, import the StreamManagerApi.py +export PYTHONPATH=$PYTHONPATH:${MX_SDK_HOME}/python + +python3 main.py +exit 0 diff --git a/contrib/Retinaface/test.py b/contrib/Retinaface/test.py new file mode 100644 index 0000000000000000000000000000000000000000..077ab3bf9c7917d1aa1b4d881d00640c5839f65c --- /dev/null +++ b/contrib/Retinaface/test.py @@ -0,0 +1,115 @@ +import os +from StreamManagerApi import StreamManagerApi, MxDataInput, StringVector +from StreamManagerApi import StreamManagerApi, MxProtobufIn, InProtobufVector, StringVector +import numpy as np +import MxpiDataType_pb2 as MxpiDataType +import cv2 +import argparse +from PIL import Image +from utils import preprocess , postprocess +# from preprocess import preprocess +import json +import tqdm +import shutil +rndb = "/home/dongyu5/Retinaface/data/widerface/val/images/" +rndy = "/home/dongyu5/retina/Pytorch_Retinaface/widerface_evaluate/widerface_result" +img_addresses = [] +streamManagerApi = StreamManagerApi() +ret = streamManagerApi.InitManager() +if ret != 0: + print("Failed to init Stream manager, ret=%s" % str(ret)) + exit() +pipeline = { + "Retinaface": { + "stream_config": { + "deviceId": "3" + }, + "appsrc0": { + "props": { + "blocksize": "409600" + }, + "factory": "appsrc", + "next": "mxpi_tensorinfer0" + }, + "mxpi_tensorinfer0": { + "props": { + "singleBatchInfer": "1", + "dataSource": "appsrc0", + "modelPath": "/home/dongyu5/retina/model/newRetinaface.om" + }, + "factory": "mxpi_tensorinfer", + "next": "appsink0" + }, + "appsink0": { + "props": { + "blocksize": "409600" + }, + "factory": "appsink" + } + } +} +pipelineStr = json.dumps(pipeline).encode() +ret = streamManagerApi.CreateMultipleStreams(pipelineStr) +if ret != 0: + print("Failed to create Stream, ret=%s" % str(ret)) + exit() +with open('/home/dongyu5/retina/wider_val.txt', 'r') as fr: + for img_address in fr: + print(img_address) + tensor_data , info = preprocess(rndb + img_address.strip('\r\n')) + tensor = tensor_data[None, :] + STREAMNAME = b"Retinaface" + INPLUGINID = 0 + visionList = MxpiDataType.MxpiVisionList() + visionVec = visionList.visionVec.add() + visionInfo = visionVec.visionInfo + # The standard input size of model is 1000 + visionInfo.width = 1000 + visionInfo.height = 1000 + visionInfo.widthAligned = 1000 + visionInfo.heightAligned = 1000 + visionData = visionVec.visionData + visionData.dataStr = tensor.tobytes() + visionData.deviceId = 0 + visionData.memType = 0 + visionData.dataSize = len(tensor) + + KEY_VALUE = b"appsrc0" + protobufVec = InProtobufVector() + + protobuf = MxProtobufIn() + protobuf.key = KEY_VALUE + protobuf.type = b"MxTools.MxpiVisionList" + protobuf.protobuf = visionList.SerializeToString() + protobufVec.push_back(protobuf) + + uniqueId = streamManagerApi.SendProtobuf(STREAMNAME, INPLUGINID, protobufVec) + KEY_VALUE = b"mxpi_tensorinfer0" + keyVec = StringVector() + keyVec.push_back(KEY_VALUE) + inferResult = streamManagerApi.GetProtobuf(STREAMNAME, 0, keyVec) + # get the infer result + infer_list = MxpiDataType.MxpiTensorPackageList() + infer_list.ParseFromString(inferResult[0].messageBuf) + infer_data0 = infer_list.tensorPackageVec[0].tensorVec[0].dataStr + loc = np.frombuffer(infer_data0, dtype=np.float32) + infer_data1 = infer_list.tensorPackageVec[0].tensorVec[1].dataStr + conf = np.frombuffer(infer_data1, dtype=np.float32) + infer_data2 = infer_list.tensorPackageVec[0].tensorVec[2].dataStr + landms = np.frombuffer(infer_data2, dtype=np.float32) + result , count = postprocess(loc , conf , landms , info) + dir_name = rndy + "/" + os.path.split(img_address.strip('.jpg\r\n'))[0] + if not os.path.isdir(dir_name): + os.makedirs(dir_name) + print(dir_name) + txt_name = rndy + "/" + img_address.strip('.jpg\r\n') + '.txt' + res_name = os.path.split(img_address.strip('.jpg\r\n'))[1] + "\n" + with open(txt_name, 'w') as f: + f.write(res_name) + f.write('{:d}\n'.format(count)) + f.write(result) + f.close() + # print(result) +streamManagerApi.DestroyAllStreams() +#print(img_addresses) + diff --git a/contrib/Retinaface/utils.py b/contrib/Retinaface/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..180bb5df6ae8a6d1d06b6ae52fa11ee5d7843e10 --- /dev/null +++ b/contrib/Retinaface/utils.py @@ -0,0 +1,134 @@ +# Copyright 2021 Huawei Technologies Co., Ltd +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +from __future__ import print_function +import os +import argparse +import torch +import cv2 +import argparse +import numpy as np +from glob import glob +import sys +from PIL import Image +from PIL import ImageDraw + +# from tqdm import tqdm +# sys.path.append("/home/dongyu5/Retinaface/Pytorch_Retinaface") +from include.box_utils import decode, decode_landm +from include.prior_box import PriorBox +# from data import cfg_mnet +from include.nms.py_cpu_nms import py_cpu_nms +cfg_mnet = { + 'name': 'mobilenet0.25', + 'min_sizes': [[16, 32], [64, 128], [256, 512]], + 'steps': [8, 16, 32], + 'variance': [0.1, 0.2], + 'clip': False, + 'loc_weight': 2.0, + 'gpu_train': True, + 'batch_size': 32, + 'ngpu': 1, + 'epoch': 250, + 'decay1': 190, + 'decay2': 220, + 'image_size': 640, + 'pretrain': True, + 'return_layers': {'stage1': 1, 'stage2': 2, 'stage3': 3}, + 'in_channel': 32, + 'out_channel': 64 +} + +def preprocess(image_path): + img_raw = cv2.imread(image_path, cv2.IMREAD_COLOR) + img = np.float32(img_raw) + # testing scale + target_size = 1000 + im_shape = img.shape + im_size_min = np.min(im_shape[0:2]) + im_size_max = np.max(im_shape[0:2]) + resize = target_size / im_size_max + img = cv2.resize(img, None, None, fx=resize, fy=resize, interpolation=cv2.INTER_NEAREST) + width_pad = target_size - img.shape[1] + left = 0 + right = width_pad + height_pad = target_size -img.shape[0] + top = 0 + bottom = height_pad + img = cv2.copyMakeBorder(img, top, bottom, left, right, cv2.BORDER_CONSTANT, value=(0,0,0)) + im_height, im_width, _ = img.shape + scale = torch.Tensor([img.shape[1], img.shape[0], img.shape[1], img.shape[0]]) + img = torch.from_numpy(img).unsqueeze(0).byte() + info = np.array(resize, dtype=np.float32) + return img.numpy() , info + +def postprocess(loc , conf , landms , resize): + loc = np.reshape(loc, [1, 41236, 4]) + conf = np.reshape(conf , [1, 41236, 2]) + landms = np.reshape(landms , [1, 41236, 10]) + scale = torch.ones(4,).fill_(1000) + loc = torch.Tensor(loc) + conf = torch.Tensor(conf) + landms = torch.Tensor(landms) + priorbox = PriorBox(cfg_mnet, image_size=(1000, 1000)) + priors = priorbox.forward() + prior_data = priors.data + boxes = decode(loc.data.squeeze(0), prior_data, [0.1, 0.2]) + boxes = boxes * scale / resize + boxes = boxes.numpy() + scores = conf.squeeze(0).data.numpy()[:, 1] + landms = decode_landm(landms.data.squeeze(0), prior_data, [0.1, 0.2]) + scale1 = torch.ones(10,).fill_(1000) + + landms = landms * scale1 / resize + landms = landms.numpy() + + inds = np.where(scores > 0.02)[0] + boxes = boxes[inds] + landms = landms[inds] + scores = scores[inds] + # keep top-K before NMS + order = scores.argsort()[::-1] + boxes = boxes[order] + landms = landms[order] + scores = scores[order] + + # do NMS + dets = np.hstack((boxes, scores[:, np.newaxis])).astype(np.float32, copy=False) + keep = py_cpu_nms(dets, 0.4) + dets = dets[keep, :] + landms = landms[keep] + + dets = np.concatenate((dets, landms), axis=1) + bboxs = dets + # file_name = os.path.basename(save_name)[:-4] + "\n" + bboxs_num = str(len(bboxs)) + "\n" + # fd.write(file_name) + # fd.write(bboxs_num) + a = Image.open("test.jpg") + result = '' + count = 0 + for box in bboxs: + x = int(box[0]) + y = int(box[1]) + w = int(box[2]) - int(box[0]) + h = int(box[3]) - int(box[1]) + confidence = str(box[4]) + if confidence != 0: + count += 1 + line = str(x) + " " + str(y) + " " + str(w) + " " + str(h) + " " + confidence + " \n" + result += line + aa = ImageDraw.ImageDraw(a)#用a来表示右侧这段 + aa.rectangle((x, y, x+w, y+h), outline='red', width=3) + return result , count diff --git a/contrib/build_all.sh b/contrib/build_all.sh index 22ee4dd7057097e1f8f01380a11b689ec7ab826f..33d3322f08d5fc163332a66617ede9a02f2cba82 100644 --- a/contrib/build_all.sh +++ b/contrib/build_all.sh @@ -47,6 +47,7 @@ SAMPLE_FOLDER=( PassengerflowEstimation/ CenterFace/ YOLOX/ + Retinaface/ )