Skip to content

Instantly share code, notes, and snippets.

@brzuchal
Last active December 12, 2018 10:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save brzuchal/9064dc1dfb5cb167abb915bdf8e12819 to your computer and use it in GitHub Desktop.
Save brzuchal/9064dc1dfb5cb167abb915bdf8e12819 to your computer and use it in GitHub Desktop.
micro php container
FROM alpine:latest as builder
ENV PHP_INI_DIR /etc/php7
ENV PHP_VERSION 7.3.0
ENV PHP_FILENAME php-7.3.0.tar.xz
ENV PHP_SHA256 7d195cad55af8b288c3919c67023a14ff870a73e3acc2165a6d17a4850a560b5
RUN build_pkgs="build-base linux-headers pcre-dev gnupg autoconf file g++ gcc libc-dev make pkgconf re2c gnupg" \
&& runtime_pkgs="ca-certificates openssl zlib curl" \
&& apk add --update --no-cache --virtual .build-deps ${build_pkgs} \
&& apk add --update --no-cache ${runtime_pkgs} \
&& set -x \
&& curl -fSL "http://pl1.php.net/distributions/$PHP_FILENAME" -o "$PHP_FILENAME" \
&& echo "$PHP_SHA256 *$PHP_FILENAME" | sha256sum -c - \
&& mkdir -p /usr/src \
&& tar -Jxf "$PHP_FILENAME" -C /usr/src \
&& mv "/usr/src/php-$PHP_VERSION" /usr/src/php \
&& rm "$PHP_FILENAME" \
&& cd /usr/src/php \
&& ./configure \
--with-config-file-path="$PHP_INI_DIR" \
--with-config-file-scan-dir="$PHP_INI_DIR/conf.d" \
--disable-cgi \
--without-pear \
--disable-fpm \
--disable-phpdbg \
--disable-all \
--enable-json \
--enable-pcntl \
--disable-rpath \
--disable-short-tags \
--disable-ipv6 \
&& make -j"$(getconf _NPROCESSORS_ONLN)" \
&& make install \
&& nm --print-size --size-sort /usr/local/bin/php \
&& { find /usr/bin/local /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; } \
&& nm --print-size --size-sort /usr/local/bin/php
FROM alpine:latest
COPY --from=builder /usr/local/bin/php /usr/local/bin/php
This file has been truncated, but you can view the full file.
Sending build context to Docker daemon 16.11MB
Step 1/8 : FROM alpine:latest as builder
---> 196d12cf6ab1
Step 2/8 : ENV PHP_INI_DIR /etc/php7
---> Running in c839fb688676
---> 6a3c0d288089
Removing intermediate container c839fb688676
Step 3/8 : ENV PHP_VERSION 7.3.0
---> Running in d435ac48eabe
---> 397f1c19fd6b
Removing intermediate container d435ac48eabe
Step 4/8 : ENV PHP_FILENAME php-7.3.0.tar.xz
---> Running in 93ef8605d302
---> 724fb300418e
Removing intermediate container 93ef8605d302
Step 5/8 : ENV PHP_SHA256 7d195cad55af8b288c3919c67023a14ff870a73e3acc2165a6d17a4850a560b5
---> Running in 326ab99407eb
---> e08a4a723557
Removing intermediate container 326ab99407eb
Step 6/8 : RUN build_pkgs="build-base linux-headers pcre-dev gnupg autoconf file g++ gcc libc-dev make pkgconf re2c gnupg" && runtime_pkgs="ca-certificates openssl zlib curl" && apk add --update --no-cache --virtual .build-deps ${build_pkgs} && apk add --update --no-cache ${runtime_pkgs} && set -x && curl -fSL "http://pl1.php.net/distributions/$PHP_FILENAME" -o "$PHP_FILENAME" && echo "$PHP_SHA256 *$PHP_FILENAME" | sha256sum -c - && mkdir -p /usr/src && tar -Jxf "$PHP_FILENAME" -C /usr/src && mv "/usr/src/php-$PHP_VERSION" /usr/src/php && rm "$PHP_FILENAME" && cd /usr/src/php && ./configure --with-config-file-path="$PHP_INI_DIR" --with-config-file-scan-dir="$PHP_INI_DIR/conf.d" --disable-cgi --without-pear --disable-fpm --disable-phpdbg --disable-all --enable-json --enable-pcntl --disable-rpath --disable-short-tags --disable-ipv6 && make -j"$(getconf _NPROCESSORS_ONLN)" && make install && nm --print-size --size-sort /usr/local/bin/php && { find /usr/bin/local /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' + || true; } && nm --print-size --size-sort /usr/local/bin/php
---> Running in a45927680757
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/community/x86_64/APKINDEX.tar.gz
(1/52) Installing binutils (2.30-r5)
(2/52) Installing libmagic (5.32-r0)
(3/52) Installing file (5.32-r0)
(4/52) Installing gmp (6.1.2-r1)
(5/52) Installing isl (0.18-r0)
(6/52) Installing libgomp (6.4.0-r9)
(7/52) Installing libatomic (6.4.0-r9)
(8/52) Installing pkgconf (1.5.3-r0)
(9/52) Installing libgcc (6.4.0-r9)
(10/52) Installing mpfr3 (3.1.5-r1)
(11/52) Installing mpc1 (1.0.3-r1)
(12/52) Installing libstdc++ (6.4.0-r9)
(13/52) Installing gcc (6.4.0-r9)
(14/52) Installing musl-dev (1.1.19-r10)
(15/52) Installing libc-dev (0.7.1-r0)
(16/52) Installing g++ (6.4.0-r9)
(17/52) Installing make (4.2.1-r2)
(18/52) Installing fortify-headers (0.9-r0)
(19/52) Installing build-base (0.5-r1)
(20/52) Installing linux-headers (4.4.6-r2)
(21/52) Installing libpcre16 (8.42-r0)
(22/52) Installing libpcre32 (8.42-r0)
(23/52) Installing pcre (8.42-r0)
(24/52) Installing libpcrecpp (8.42-r0)
(25/52) Installing pcre-dev (8.42-r0)
(26/52) Installing libgpg-error (1.30-r0)
(27/52) Installing libassuan (2.5.1-r0)
(28/52) Installing libcap (2.25-r1)
(29/52) Installing ncurses-terminfo-base (6.1_p20180818-r1)
(30/52) Installing ncurses-terminfo (6.1_p20180818-r1)
(31/52) Installing ncurses-libs (6.1_p20180818-r1)
(32/52) Installing pinentry (1.1.0-r0)
Executing pinentry-1.1.0-r0.post-install
(33/52) Installing libbz2 (1.0.6-r6)
(34/52) Installing libgcrypt (1.8.3-r0)
(35/52) Installing nettle (3.4-r1)
(36/52) Installing libffi (3.2.1-r4)
(37/52) Installing p11-kit (0.23.10-r0)
(38/52) Installing libtasn1 (4.13-r0)
(39/52) Installing libunistring (0.9.7-r0)
(40/52) Installing gnutls (3.6.2-r0)
(41/52) Installing libksba (1.3.5-r0)
(42/52) Installing db (5.3.28-r0)
(43/52) Installing libsasl (2.1.26-r13)
(44/52) Installing libldap (2.4.46-r0)
(45/52) Installing npth (1.5-r1)
(46/52) Installing sqlite-libs (3.24.0-r0)
(47/52) Installing gnupg (2.2.8-r0)
(48/52) Installing m4 (1.4.18-r1)
(49/52) Installing perl (5.26.3-r0)
(50/52) Installing autoconf (2.69-r2)
(51/52) Installing re2c (1.0.2-r0)
(52/52) Installing .build-deps (0)
Executing busybox-1.28.4-r1.trigger
OK: 233 MiB in 65 packages
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/main/x86_64/APKINDEX.tar.gz
fetch http://dl-cdn.alpinelinux.org/alpine/v3.8/community/x86_64/APKINDEX.tar.gz
(1/8) Installing ca-certificates (20171114-r3)
(2/8) Installing nghttp2-libs (1.32.0-r0)
(3/8) Installing libssh2 (1.8.0-r3)
(4/8) Installing libcurl (7.61.1-r1)
(5/8) Installing curl (7.61.1-r1)
(6/8) Installing libcrypto1.0 (1.0.2q-r0)
(7/8) Installing libssl1.0 (1.0.2q-r0)
(8/8) Installing openssl (1.0.2q-r0)
Executing busybox-1.28.4-r1.trigger
Executing ca-certificates-20171114-r3.trigger
OK: 238 MiB in 73 packages
+ curl -fSL http://pl1.php.net/distributions/php-7.3.0.tar.xz -o php-7.3.0.tar.xz
 % Total % Received % Xferd Average Speed Time Time Time Current
 Dload Upload Total Spent Left Speed
0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0
24 11.3M 24 2827k 0 0 4051k 0 0:00:02 --:--:-- 0:00:02 4045k
73 11.3M 73 8605k 0 0 5065k 0 0:00:02 0:00:01 0:00:01 5062k
100 11.3M 100 11.3M 0 0 5191k 0 0:00:02 0:00:02 --:--:-- 5191k
+ echo '7d195cad55af8b288c3919c67023a14ff870a73e3acc2165a6d17a4850a560b5 *php-7.3.0.tar.xz'
+ sha256sum -c -
php-7.3.0.tar.xz: OK
+ mkdir -p /usr/src
+ tar -Jxf php-7.3.0.tar.xz -C /usr/src
+ mv /usr/src/php-7.3.0 /usr/src/php
+ rm php-7.3.0.tar.xz
+ cd /usr/src/php
+ ./configure '--with-config-file-path=/etc/php7' '--with-config-file-scan-dir=/etc/php7/conf.d' --disable-cgi --without-pear --disable-fpm --disable-phpdbg --disable-all --enable-json --enable-pcntl --disable-rpath --disable-short-tags --disable-ipv6
checking for grep that handles long lines and -e... /bin/grep
checking for egrep... /bin/grep -E
checking for a sed that does not truncate output... /bin/sed
checking build system type... x86_64-pc-linux-musl
checking host system type... x86_64-pc-linux-musl
checking target system type... x86_64-pc-linux-musl
shtool:echo:Warning: unable to determine terminal sequence for bold mode
shtool:echo:Warning: unable to determine terminal sequence for bold mode
checking for cc... cc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables...
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether cc accepts -g... yes
checking for cc option to accept ISO C89... none needed
checking how to run the C preprocessor... cc -E
checking for icc... no
checking for suncc... no
checking whether cc understands -c and -o together... yes
checking how to run the C preprocessor... cc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking minix/config.h usability... no
checking minix/config.h presence... no
checking for minix/config.h... no
checking whether it is safe to define __EXTENSIONS__... yes
checking whether ln -s works... yes
checking for system library directory... lib
checking whether to enable runpaths... no
checking if compiler supports -R... no
checking if compiler supports -Wl,-rpath,... yes
checking for gawk... no
checking for nawk... no
checking for awk... awk
checking if awk is broken... no
checking for bison... no
checking for byacc... no
checking for bison version... invalid
configure: WARNING: This bison version is not supported for regeneration of the Zend/PHP parsers (found: none, min: 204, excluded: ).
checking for re2c... re2c
checking for re2c version... 1.0.2 (ok)
checking whether to enable computed goto gcc extension with re2c... no
checking whether C compiler accepts -fvisibility=hidden... yes
checking whether to force non-PIC code in shared modules... no
checking whether /dev/urandom exists... yes
checking whether /dev/arandom exists... no
checking for global register variables support... yes
checking whether atof() accepts NAN... no
checking whether atof() accepts INF... no
checking whether HUGE_VAL == INF... yes
checking whether HUGE_VAL + -HUGEVAL == NAN... no
checking whether __cpuid_count is available... yes
checking for pthreads_cflags... -pthread
checking for pthreads_lib... pthread
Configuring SAPI modules
checking for Apache 2.0 handler-module support via DSO through APXS... no
checking for setproctitle... no
checking sys/pstat.h usability... no
checking sys/pstat.h presence... no
checking for sys/pstat.h... no
checking for PS_STRINGS... no
checking for CLI build... yes
checking for embedded SAPI library support... no
checking for FPM build... no
checking for LiteSpeed support... no
checking for phpdbg support... no
checking for phpdbg web SAPI support... no
checking for phpdbg debug build... no
checking for CGI build... no
checking for chosen SAPI module... none
checking for executable SAPI binaries... cli
Running system checks
checking for sendmail... /usr/sbin/sendmail
checking whether system uses EBCDIC... no
checking whether byte ordering is bigendian... no
checking whether writing to stdout works... This is the test message -- yes
checking for socket... yes
checking for socketpair... yes
checking for htonl... yes
checking for gethostname... yes
checking for gethostbyaddr... yes
checking for yp_get_default_domain... no
checking for __yp_get_default_domain... no
checking for yp_get_default_domain in -lnsl... no
checking for __yp_get_default_domain in -lnsl... no
checking for dlopen... yes
checking for sin in -lm... yes
checking for inet_aton... yes
checking for ANSI C header files... (cached) yes
checking for dirent.h that defines DIR... yes
checking for library containing opendir... none required
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for dirent.h... yes
checking for ApplicationServices/ApplicationServices.h... no
checking for sys/param.h... yes
checking for sys/types.h... (cached) yes
checking for sys/time.h... yes
checking for netinet/in.h... yes
checking for alloca.h... yes
checking for arpa/inet.h... yes
checking for arpa/nameser.h... yes
checking for assert.h... yes
checking for crypt.h... yes
checking for dns.h... no
checking for fcntl.h... yes
checking for grp.h... yes
checking for ieeefp.h... no
checking for langinfo.h... yes
checking for limits.h... yes
checking for locale.h... yes
checking for monetary.h... yes
checking for netdb.h... yes
checking for poll.h... yes
checking for pwd.h... yes
checking for resolv.h... yes
checking for signal.h... yes
checking for stdarg.h... yes
checking for stdlib.h... (cached) yes
checking for string.h... (cached) yes
checking for syslog.h... yes
checking for sysexits.h... yes
checking for sys/ioctl.h... yes
checking for sys/file.h... yes
checking for sys/mman.h... yes
checking for sys/mount.h... yes
checking for sys/poll.h... yes
checking for sys/resource.h... yes
checking for sys/select.h... yes
checking for sys/socket.h... yes
checking for sys/stat.h... (cached) yes
checking for sys/statfs.h... yes
checking for sys/statvfs.h... yes
checking for sys/vfs.h... yes
checking for sys/sysexits.h... no
checking for sys/varargs.h... no
checking for sys/wait.h... yes
checking for sys/loadavg.h... no
checking for termios.h... yes
checking for unistd.h... (cached) yes
checking for unix.h... no
checking for utime.h... yes
checking for sys/utsname.h... yes
checking for sys/ipc.h... yes
checking for dlfcn.h... yes
checking for assert.h... (cached) yes
checking for tmmintrin.h... yes
checking for nmmintrin.h... yes
checking for immintrin.h... yes
checking for fopencookie... yes
checking for broken getcwd... no
checking for broken libc stdio... yes
checking for broken gcc optimize-strlen... no
checking whether struct tm is in sys/time.h or time.h... time.h
checking for struct tm.tm_zone... yes
checking for missing declarations of reentrant functions... done
checking for fclose declaration... ok
checking for tm_gmtoff in struct tm... yes
checking for struct flock... yes
checking for socklen_t... yes
checking size of size_t... 8
checking size of long long... 8
checking size of long long int... 8
checking size of long... 8
checking size of int... 4
checking size of intmax_t... 8
checking size of ssize_t... 8
checking size of ptrdiff_t... 8
checking size of short... 2
checking size of int... (cached) 4
checking size of long... (cached) 8
checking size of long long... (cached) 8
checking for int8... no
checking for int16... no
checking for int32... no
checking for int64... no
checking for int8_t... yes
checking for int16_t... yes
checking for int32_t... yes
checking for int64_t... yes
checking for uint8... no
checking for uint16... no
checking for uint32... no
checking for uint64... no
checking for uint8_t... yes
checking for uint16_t... yes
checking for uint32_t... yes
checking for uint64_t... yes
checking for u_int8_t... yes
checking for u_int16_t... yes
checking for u_int32_t... yes
checking for u_int64_t... yes
checking for __builtin_expect... yes
checking for __builtin_clz... yes
checking for __builtin_ctzl... yes
checking for __builtin_ctzll... yes
checking for __builtin_smull_overflow... yes
checking for __builtin_smulll_overflow... yes
checking for __builtin_saddl_overflow... yes
checking for __builtin_saddll_overflow... yes
checking for __builtin_ssubl_overflow... yes
checking for __builtin_ssubll_overflow... yes
checking for __builtin_cpu_init... yes
checking for __builtin_cpu_supports... yes
checking for ssse3 instructions supports... yes
checking for sse4.2 instructions supports... yes
checking for avx instructions supports... yes
checking for avx2 instructions supports... yes
checking for struct stat.st_blksize... yes
checking for struct stat.st_rdev... yes
checking for struct stat.st_blocks... yes
checking for size_t... yes
checking for uid_t in sys/types.h... yes
checking for struct sockaddr_storage... yes
checking for field sa_len in struct sockaddr... no
checking for IPv6 support... yes
checking for vprintf... yes
checking for _doprnt... no
checking for alphasort... yes
checking for asctime_r... yes
checking for chroot... yes
checking for ctime_r... yes
checking for cuserid... yes
checking for crypt... yes
checking for explicit_memset... no
checking for flock... yes
checking for ftok... yes
checking for funopen... no
checking for gai_strerror... yes
checking for gcvt... yes
checking for getloadavg... yes
checking for getlogin... yes
checking for getprotobyname... yes
checking for getprotobynumber... yes
checking for getservbyname... yes
checking for getservbyport... yes
checking for gethostname... (cached) yes
checking for getrusage... yes
checking for gettimeofday... yes
checking for gmtime_r... yes
checking for getpwnam_r... yes
checking for getgrnam_r... yes
checking for getpwuid_r... yes
checking for grantpt... yes
checking for inet_ntoa... yes
checking for inet_ntop... yes
checking for inet_pton... yes
checking for isascii... yes
checking for link... yes
checking for localtime_r... yes
checking for lockf... yes
checking for lchown... yes
checking for lrand48... yes
checking for memcpy... yes
checking for memmove... yes
checking for mkstemp... yes
checking for mmap... yes
checking for nl_langinfo... yes
checking for perror... yes
checking for poll... yes
checking for ptsname... yes
checking for putenv... yes
checking for realpath... yes
checking for random... yes
checking for rand_r... yes
checking for scandir... yes
checking for setitimer... yes
checking for setlocale... yes
checking for localeconv... yes
checking for setenv... yes
checking for setpgid... yes
checking for setsockopt... yes
checking for setvbuf... yes
checking for shutdown... yes
checking for sin... yes
checking for snprintf... yes
checking for srand48... yes
checking for srandom... yes
checking for statfs... yes
checking for statvfs... yes
checking for std_syslog... no
checking for strcasecmp... yes
checking for strcoll... yes
checking for strdup... yes
checking for strerror... yes
checking for strftime... yes
checking for strnlen... yes
checking for strptime... yes
checking for strstr... yes
checking for strtok_r... yes
checking for symlink... yes
checking for tempnam... yes
checking for tzset... yes
checking for unlockpt... yes
checking for unsetenv... yes
checking for usleep... yes
checking for utime... yes
checking for vsnprintf... yes
checking for vasprintf... yes
checking for asprintf... yes
checking for nanosleep... yes
checking for nanosleep in -lrt... yes
checking for getaddrinfo... yes
checking for __sync_fetch_and_add... yes
checking for strlcat... yes
checking for strlcpy... yes
checking for explicit_bzero... no
checking for getopt... yes
checking for utime.h... (cached) yes
checking whether utime accepts a null argument... yes
checking for working alloca.h... yes
checking for alloca... yes
checking for declared timezone... yes
checking for type of reentrant time-related functions... POSIX
checking for readdir_r... yes
checking for type of readdir_r... POSIX
checking for in_addr_t... yes
checking for crypt_r... yes
checking which data struct is used by crypt_r... struct_crypt_data
checking for asm goto... yes
checking whether compiler supports VLA... yes
checking whether to enable valgrind support... yes
checking for valgrind header... not found
General settings
checking whether to include gcov symbols... no
checking whether to include debugging symbols... no
checking layout of installed files... PHP
checking path to configuration file... /etc/php7
checking where to scan for configuration files... /etc/php7/conf.d
checking whether to enable PHP's own SIGCHLD handler... no
checking whether to explicitly link against libgcc... no
checking whether to enable short tags by default... no
checking whether to enable dmalloc... no
checking whether to enable IPv6 support... no
checking whether to enable DTrace support... no
checking how big to make fd sets... using system default
Configuring extensions
checking size of long... (cached) 8
checking size of int... (cached) 4
checking for int32_t... yes
checking for uint32_t... yes
checking for sys/time.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for stdint.h... (cached) yes
checking for dirent.h... (cached) yes
checking for string.h... (cached) yes
checking for strings.h... (cached) yes
checking for unistd.h... (cached) yes
checking io.h usability... no
checking io.h presence... no
checking for io.h... no
checking for strtoll... yes
checking for atoll... yes
checking for strftime... (cached) yes
checking for gettimeofday... (cached) yes
checking whether to enable LIBXML support... no
checking libxml2 install dir... no
checking for OpenSSL support... no
checking for Kerberos support... no
checking whether to use system default cipher list instead of hardcoded value... no
checking for PCRE library to use... bundled
checking whether to enable PCRE JIT functionality... yes
checking whether to enable the SQLite3 extension... no
checking for ZLIB support... no
checking if the location of ZLIB install directory is defined... no
checking whether to enable bc style precision math functions... no
checking for BZip2 support... no
checking whether to enable calendar conversion support... no
checking whether to enable ctype functions... no
checking for cURL support... no
checking for QDBM support... no
checking for GDBM support... no
checking for NDBM support... no
checking for TCADB support... no
checking for LMDB support... no
checking for Berkeley DB4 support... no
checking for Berkeley DB3 support... no
checking for Berkeley DB2 support... no
checking for DB1 support... no
checking for DBM support... no
checking for CDB support... no
checking for INI File support... no
checking for FlatFile support... no
checking whether to enable DBA interface... no
checking whether to enable DOM support... no
checking for ENCHANT support... no
checking whether to enable EXIF (metadata from images) support... no
checking for fileinfo support... no
checking whether to enable input filter support... no
checking pcre install prefix... no
checking whether to enable FTP support... no
checking OpenSSL dir for FTP... no
checking for GD support... no
checking for the location of libwebp... no
checking for the location of libjpeg... no
checking for the location of libpng... no
checking for the location of libXpm... no
checking for FreeType 2... no
checking whether to enable JIS-mapped Japanese font support in GD... no
checking for GNU gettext support... no
checking for GNU MP support... no
checking for mhash support... no
checking whether to enable hash support... no
checking for iconv support... no
checking for IMAP support... no
checking for IMAP Kerberos support... no
checking for IMAP SSL support... no
checking for Firebird support... no
checking whether to enable internationalization support... no
checking whether to enable JavaScript Object Serialization support... yes
checking for ANSI C header files... (cached) yes
checking for LDAP support... no
checking for LDAP Cyrus SASL support... no
checking whether to enable multibyte string support... no
checking whether to enable multibyte regex support... yes
checking whether to check multibyte regex backtrack... yes
checking for external oniguruma... no
checking for MySQLi support... no
checking whether to enable embedded MySQLi support... no
checking for specified location of the MySQL UNIX socket... no
checking for Oracle Database OCI8 support... no
checking for Adabas support... no
checking for SAP DB support... no
checking for Solid support... no
checking for IBM DB2 support... no
checking for Empress support... no
checking for Empress local access support... no
checking for a custom ODBC support... no
checking for iODBC support... no
checking for Easysoft ODBC-ODBC Bridge support... no
checking for unixODBC support... no
checking for DBMaker support... no
checking for any ODBC driver support... no
checking whether to enable Zend OPcache support... no
checking whether to enable file based caching... yes
checking whether to enable copying PHP CODE pages into HUGE PAGES... yes
checking whether to enable pcntl support... yes
checking for fork... yes
checking for waitpid... yes
checking for sigaction... yes
checking for getpriority... yes
checking for setpriority... yes
checking for wait3... yes
checking for wait4... yes
checking for sigprocmask... yes
checking for sigwaitinfo... yes
checking for sigtimedwait... yes
checking for siginfo_t... yes
checking whether to enable PDO support... no
checking for PDO_DBLIB support via FreeTDS... no
checking for Firebird support for PDO... no
checking for MySQL support for PDO... no
checking Oracle OCI support for PDO... no
checking for ODBC v3 support for PDO... no
checking for PostgreSQL support for PDO... no
checking for sqlite 3 support for PDO... no
checking for PostgreSQL support... no
checking for phar archive support... no
checking whether to enable POSIX-like functions... no
checking for PSPELL support... no
checking for libedit readline replacement... no
checking for readline support... no
checking for recode support... no
checking whether to enable PHP sessions... no
checking for mm support... no
checking whether to enable shmop support... no
checking whether to enable SimpleXML support... no
checking for SNMP support... no
checking OpenSSL dir for SNMP... no
checking whether to enable SOAP support... no
checking whether to enable sockets support... no
checking for sodium support... no
checking whether flush should be called explicitly after a buffered io... yes
checking for standard DES crypt... yes
checking for extended DES crypt... yes
checking for MD5 crypt... yes
checking for Blowfish crypt... yes
checking for SHA512 crypt... yes
checking for SHA256 crypt... yes
checking whether the compiler supports aligned attribute... yes
checking for getcwd... yes
checking for getwd... no
checking for asinh... yes
checking for acosh... yes
checking for atanh... yes
checking for log1p... yes
checking for hypot... yes
checking for glob... yes
checking for strfmon... yes
checking for nice... yes
checking for fpclass... no
checking for mempcpy... yes
checking for strpncpy... no
checking for working POSIX fnmatch... yes
checking for fork... (cached) yes
checking if your OS can spawn processes with inherited handles... yes
checking for res_nsearch... no
checking for __res_nsearch... no
checking for res_nsearch in -lresolv... no
checking for __res_nsearch in -lresolv... no
checking for res_nsearch in -lbind... no
checking for __res_nsearch in -lbind... no
checking for res_nsearch in -lsocket... no
checking for __res_nsearch in -lsocket... no
checking for res_ndestroy... no
checking for __res_ndestroy... no
checking for res_ndestroy in -lresolv... no
checking for __res_ndestroy in -lresolv... no
checking for res_ndestroy in -lbind... no
checking for __res_ndestroy in -lbind... no
checking for res_ndestroy in -lsocket... no
checking for __res_ndestroy in -lsocket... no
checking for dns_search... no
checking for __dns_search... no
checking for dns_search in -lresolv... no
checking for __dns_search in -lresolv... no
checking for dns_search in -lbind... no
checking for __dns_search in -lbind... no
checking for dns_search in -lsocket... no
checking for __dns_search in -lsocket... no
checking for dn_expand... yes
checking for dn_skipname... yes
checking for res_search... yes
checking whether strptime() declaration fails... yes
checking wchar.h usability... yes
checking wchar.h presence... yes
checking for wchar.h... yes
checking for mblen... yes
checking for mbrlen... yes
checking for mbsinit... yes
checking for mbstate_t... yes
checking atomic.h usability... no
checking atomic.h presence... no
checking for atomic.h... no
checking whether arc4random_buf is declared... no
checking for Argon2 support... no
checking for net/if.h... yes
checking for netdb.h... (cached) yes
checking for usable getifaddrs... yes
checking whether to enable System V IPC support... no
checking whether to enable System V semaphore support... no
checking whether to enable System V shared memory support... no
checking for TIDY support... no
checking whether to enable tokenizer support... no
checking whether to enable WDDX support... no
checking libexpat dir for WDDX... no
checking whether to enable XML support... no
checking libexpat install dir... no
checking whether to enable XMLReader support... no
checking for XMLRPC-EPI support... no
checking libexpat dir for XMLRPC-EPI... no
checking iconv dir for XMLRPC-EPI... no
checking whether to enable XMLWriter support... no
checking for XSL support... no
checking whether to enable zend-test extension... no
checking for zip archive read/writesupport... no
checking pcre install prefix... no
checking libzip... yes
checking whether to enable mysqlnd... no
checking whether to disable compressed protocol support in mysqlnd... yes
Configuring PEAR
checking whether to install PEAR... no
Configuring Zend
checking for bison version... (cached) invalid
configure: WARNING: This bison version is not supported for regeneration of the Zend/PHP parsers (found: none, min: 204, excluded: ).
checking for inttypes.h... (cached) yes
checking for stdint.h... (cached) yes
checking for limits.h... (cached) yes
checking malloc.h usability... yes
checking malloc.h presence... yes
checking for malloc.h... yes
checking for string.h... (cached) yes
checking for unistd.h... (cached) yes
checking for stdarg.h... (cached) yes
checking for sys/types.h... (cached) yes
checking for sys/time.h... (cached) yes
checking for signal.h... (cached) yes
checking for unix.h... (cached) no
checking for stdlib.h... (cached) yes
checking cpuid.h usability... yes
checking cpuid.h presence... yes
checking for cpuid.h... yes
checking for dlfcn.h... (cached) yes
checking for size_t... (cached) yes
checking for uint... yes
checking for ulong... yes
checking for int32_t... yes
checking for uint32_t... yes
checking for vprintf... (cached) yes
checking for _doprnt... (cached) no
checking for working memcmp... yes
checking for working alloca.h... (cached) yes
checking for alloca... (cached) yes
checking for memcpy... (cached) yes
checking for strdup... (cached) yes
checking for getpid... yes
checking for kill... yes
checking for strtod... yes
checking for strtol... yes
checking for finite... yes
checking for fpclass... (cached) no
checking for sigsetjmp... yes
checking whether sprintf is broken... no
checking whether isfinite is declared... yes
checking whether isnan is declared... yes
checking whether isinf is declared... yes
checking whether fp_except is defined... no
checking for usable _FPU_SETCW... no
checking for usable fpsetprec... no
checking for usable _controlfp... no
checking for usable _controlfp_s... no
checking whether FPU control word can be manipulated by inline assembler... yes
checking whether double cast to long preserves least significant bits... no
checking for dlfcn.h... (cached) yes
checking whether dlsym() requires a leading underscore in symbol names... no
checking whether to enable thread-safety... no
checking whether to enable inline optimization for GCC... yes
checking whether to enable Zend debugging... no
checking for inline... inline
checking target system is Darwin... no
checking for MM alignment and log values... done
checking for memory allocation using mmap(MAP_ANON)... yes
checking for memory allocation using mmap("/dev/zero")... yes
checking for mremap... yes
checking for sigaction... (cached) yes
checking whether to enable zend signal handling... yes
Configuring TSRM
checking for stdarg.h... (cached) yes
checking for sigprocmask... (cached) yes
checking how many arguments gethostbyname_r() takes... six
Configuring libtool
checking for ld used by cc... /usr/x86_64-alpine-linux-musl/bin/ld
checking if the linker (/usr/x86_64-alpine-linux-musl/bin/ld) is GNU ld... yes
checking for /usr/x86_64-alpine-linux-musl/bin/ld option to reload object files... -r
checking for BSD-compatible nm... /usr/bin/nm -B
checking how to recognize dependent libraries... pass_all
checking the maximum length of command line arguments... 98304
checking command to parse /usr/bin/nm -B output from cc object... ok
checking for objdir... .libs
checking for ar... ar
checking for ranlib... ranlib
checking for strip... strip
checking if cc supports -fno-rtti -fno-exceptions... no
checking for cc option to produce PIC... -fPIC
checking if cc PIC flag -fPIC works... yes
checking if cc static flag -static works... yes
checking if cc supports -c -o file.o... yes
checking whether the cc linker (/usr/x86_64-alpine-linux-musl/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... no
checking whether to build static libraries... yes
creating libtool
appending configuration tag "CXX" to libtool
Generating files
configure: creating ./config.status
creating main/internal_functions.c
creating main/internal_functions_cli.c
+--------------------------------------------------------------------+
| License: |
| This software is subject to the PHP License, available in this |
| distribution in the file LICENSE. By continuing this installation |
| process, you are bound by the terms of this license agreement. |
| If you do not agree with the terms of this license, you must abort |
| the installation process at this point. |
+--------------------------------------------------------------------+
Thank you for using PHP.
config.status: creating php7.spec
config.status: creating main/build-defs.h
config.status: creating scripts/phpize
config.status: creating scripts/man1/phpize.1
config.status: creating scripts/php-config
config.status: creating scripts/man1/php-config.1
config.status: creating sapi/cli/php.1
config.status: creating main/php_config.h
config.status: executing default commands
+ getconf _NPROCESSORS_ONLN
+ make -j4
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -Iext/date/lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DHAVE_TIMELIB_CONFIG_H=1 -Iext/date/ -I/usr/src/php/ext/date/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/date/php_date.c -o ext/date/php_date.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -Iext/date/lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DHAVE_TIMELIB_CONFIG_H=1 -Iext/date/ -I/usr/src/php/ext/date/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/date/lib/astro.c -o ext/date/lib/astro.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -Iext/date/lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DHAVE_TIMELIB_CONFIG_H=1 -Iext/date/ -I/usr/src/php/ext/date/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/date/lib/dow.c -o ext/date/lib/dow.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -Iext/date/lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DHAVE_TIMELIB_CONFIG_H=1 -Iext/date/ -I/usr/src/php/ext/date/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/date/lib/parse_date.c -o ext/date/lib/parse_date.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -Iext/date/lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DHAVE_TIMELIB_CONFIG_H=1 -Iext/date/ -I/usr/src/php/ext/date/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/date/lib/parse_tz.c -o ext/date/lib/parse_tz.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -Iext/date/lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DHAVE_TIMELIB_CONFIG_H=1 -Iext/date/ -I/usr/src/php/ext/date/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/date/lib/timelib.c -o ext/date/lib/timelib.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -Iext/date/lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DHAVE_TIMELIB_CONFIG_H=1 -Iext/date/ -I/usr/src/php/ext/date/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/date/lib/tm2unixtime.c -o ext/date/lib/tm2unixtime.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -Iext/date/lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DHAVE_TIMELIB_CONFIG_H=1 -Iext/date/ -I/usr/src/php/ext/date/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/date/lib/unixtime2tm.c -o ext/date/lib/unixtime2tm.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -Iext/date/lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DHAVE_TIMELIB_CONFIG_H=1 -Iext/date/ -I/usr/src/php/ext/date/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/date/lib/parse_iso_intervals.c -o ext/date/lib/parse_iso_intervals.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -Iext/date/lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -DHAVE_TIMELIB_CONFIG_H=1 -Iext/date/ -I/usr/src/php/ext/date/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/date/lib/interval.c -o ext/date/lib/interval.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_auto_possess.c -o ext/pcre/pcre2lib/pcre2_auto_possess.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_chartables.c -o ext/pcre/pcre2lib/pcre2_chartables.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_compile.c -o ext/pcre/pcre2lib/pcre2_compile.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_config.c -o ext/pcre/pcre2lib/pcre2_config.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_context.c -o ext/pcre/pcre2lib/pcre2_context.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_dfa_match.c -o ext/pcre/pcre2lib/pcre2_dfa_match.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_error.c -o ext/pcre/pcre2lib/pcre2_error.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_jit_compile.c -o ext/pcre/pcre2lib/pcre2_jit_compile.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_maketables.c -o ext/pcre/pcre2lib/pcre2_maketables.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_match.c -o ext/pcre/pcre2lib/pcre2_match.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_match_data.c -o ext/pcre/pcre2lib/pcre2_match_data.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_newline.c -o ext/pcre/pcre2lib/pcre2_newline.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_ord2utf.c -o ext/pcre/pcre2lib/pcre2_ord2utf.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_pattern_info.c -o ext/pcre/pcre2lib/pcre2_pattern_info.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_serialize.c -o ext/pcre/pcre2lib/pcre2_serialize.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_string_utils.c -o ext/pcre/pcre2lib/pcre2_string_utils.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_study.c -o ext/pcre/pcre2lib/pcre2_study.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_substitute.c -o ext/pcre/pcre2lib/pcre2_substitute.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_substring.c -o ext/pcre/pcre2lib/pcre2_substring.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_tables.c -o ext/pcre/pcre2lib/pcre2_tables.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_ucd.c -o ext/pcre/pcre2lib/pcre2_ucd.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_valid_utf.c -o ext/pcre/pcre2lib/pcre2_valid_utf.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_xclass.c -o ext/pcre/pcre2lib/pcre2_xclass.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_find_bracket.c -o ext/pcre/pcre2lib/pcre2_find_bracket.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_convert.c -o ext/pcre/pcre2lib/pcre2_convert.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/pcre2lib/pcre2_extuni.c -o ext/pcre/pcre2lib/pcre2_extuni.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_CONFIG_H -I/usr/src/php/ext/pcre/pcre2lib -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/pcre/ -I/usr/src/php/ext/pcre/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcre/php_pcre.c -o ext/pcre/php_pcre.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/json/ -I/usr/src/php/ext/json/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/json/json.c -o ext/json/json.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/json/ -I/usr/src/php/ext/json/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/json/json_encoder.c -o ext/json/json_encoder.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/json/ -I/usr/src/php/ext/json/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/json/json_parser.tab.c -o ext/json/json_parser.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/json/ -I/usr/src/php/ext/json/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/json/json_scanner.c -o ext/json/json_scanner.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_STRUCT_SIGINFO_T -Iext/pcntl/ -I/usr/src/php/ext/pcntl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcntl/pcntl.c -o ext/pcntl/pcntl.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DHAVE_STRUCT_SIGINFO_T -Iext/pcntl/ -I/usr/src/php/ext/pcntl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/pcntl/php_signal.c -o ext/pcntl/php_signal.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/reflection/ -I/usr/src/php/ext/reflection/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/reflection/php_reflection.c -o ext/reflection/php_reflection.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/spl/ -I/usr/src/php/ext/spl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/spl/php_spl.c -o ext/spl/php_spl.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/spl/ -I/usr/src/php/ext/spl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/spl/spl_functions.c -o ext/spl/spl_functions.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/spl/ -I/usr/src/php/ext/spl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/spl/spl_engine.c -o ext/spl/spl_engine.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/spl/ -I/usr/src/php/ext/spl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/spl/spl_iterators.c -o ext/spl/spl_iterators.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/spl/ -I/usr/src/php/ext/spl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/spl/spl_array.c -o ext/spl/spl_array.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/spl/ -I/usr/src/php/ext/spl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/spl/spl_directory.c -o ext/spl/spl_directory.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/spl/ -I/usr/src/php/ext/spl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/spl/spl_exceptions.c -o ext/spl/spl_exceptions.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/spl/ -I/usr/src/php/ext/spl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/spl/spl_observer.c -o ext/spl/spl_observer.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/spl/ -I/usr/src/php/ext/spl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/spl/spl_dllist.c -o ext/spl/spl_dllist.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/spl/ -I/usr/src/php/ext/spl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/spl/spl_heap.c -o ext/spl/spl_heap.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/spl/ -I/usr/src/php/ext/spl/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/spl/spl_fixedarray.c -o ext/spl/spl_fixedarray.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/array.c -o ext/standard/array.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/base64.c -o ext/standard/base64.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/basic_functions.c -o ext/standard/basic_functions.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/browscap.c -o ext/standard/browscap.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/crc32.c -o ext/standard/crc32.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/crypt.c -o ext/standard/crypt.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/cyr_convert.c -o ext/standard/cyr_convert.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/datetime.c -o ext/standard/datetime.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/dir.c -o ext/standard/dir.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/dl.c -o ext/standard/dl.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/dns.c -o ext/standard/dns.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/exec.c -o ext/standard/exec.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/file.c -o ext/standard/file.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/filestat.c -o ext/standard/filestat.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/flock_compat.c -o ext/standard/flock_compat.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/formatted_print.c -o ext/standard/formatted_print.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/fsock.c -o ext/standard/fsock.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/head.c -o ext/standard/head.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/html.c -o ext/standard/html.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/image.c -o ext/standard/image.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/info.c -o ext/standard/info.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/iptc.c -o ext/standard/iptc.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/lcg.c -o ext/standard/lcg.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/link.c -o ext/standard/link.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/mail.c -o ext/standard/mail.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/math.c -o ext/standard/math.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/md5.c -o ext/standard/md5.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/metaphone.c -o ext/standard/metaphone.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/microtime.c -o ext/standard/microtime.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/pack.c -o ext/standard/pack.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/pageinfo.c -o ext/standard/pageinfo.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/quot_print.c -o ext/standard/quot_print.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/rand.c -o ext/standard/rand.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/mt_rand.c -o ext/standard/mt_rand.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/soundex.c -o ext/standard/soundex.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/string.c -o ext/standard/string.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/scanf.c -o ext/standard/scanf.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/syslog.c -o ext/standard/syslog.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/type.c -o ext/standard/type.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/uniqid.c -o ext/standard/uniqid.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/url.c -o ext/standard/url.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/var.c -o ext/standard/var.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/versioning.c -o ext/standard/versioning.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/assert.c -o ext/standard/assert.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/strnatcmp.c -o ext/standard/strnatcmp.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/levenshtein.c -o ext/standard/levenshtein.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/incomplete_class.c -o ext/standard/incomplete_class.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/url_scanner_ex.c -o ext/standard/url_scanner_ex.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/ftp_fopen_wrapper.c -o ext/standard/ftp_fopen_wrapper.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/http_fopen_wrapper.c -o ext/standard/http_fopen_wrapper.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/php_fopen_wrapper.c -o ext/standard/php_fopen_wrapper.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/credits.c -o ext/standard/credits.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/css.c -o ext/standard/css.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/var_unserializer.c -o ext/standard/var_unserializer.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/ftok.c -o ext/standard/ftok.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/sha1.c -o ext/standard/sha1.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/user_filters.c -o ext/standard/user_filters.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/uuencode.c -o ext/standard/uuencode.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/filters.c -o ext/standard/filters.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/proc_open.c -o ext/standard/proc_open.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/streamsfuncs.c -o ext/standard/streamsfuncs.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/http.c -o ext/standard/http.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/password.c -o ext/standard/password.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/random.c -o ext/standard/random.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/net.c -o ext/standard/net.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Iext/standard/ -I/usr/src/php/ext/standard/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/ext/standard/hrtime.c -o ext/standard/hrtime.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -ITSRM/ -I/usr/src/php/TSRM/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/TSRM/TSRM.c -o TSRM/TSRM.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -ITSRM/ -I/usr/src/php/TSRM/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/TSRM/tsrm_strtok_r.c -o TSRM/tsrm_strtok_r.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/main.c -o main/main.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/snprintf.c -o main/snprintf.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/spprintf.c -o main/spprintf.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/php_sprintf.c -o main/php_sprintf.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/fopen_wrappers.c -o main/fopen_wrappers.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/alloca.c -o main/alloca.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/php_scandir.c -o main/php_scandir.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/php_ini.c -o main/php_ini.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/SAPI.c -o main/SAPI.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/rfc1867.c -o main/rfc1867.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/php_content_types.c -o main/php_content_types.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/strlcpy.c -o main/strlcpy.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/strlcat.c -o main/strlcat.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/explicit_bzero.c -o main/explicit_bzero.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/mergesort.c -o main/mergesort.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/reentrancy.c -o main/reentrancy.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/php_variables.c -o main/php_variables.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/php_ticks.c -o main/php_ticks.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/network.c -o main/network.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/php_open_temporary_file.c -o main/php_open_temporary_file.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/output.c -o main/output.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/getopt.c -o main/getopt.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/php_syslog.c -o main/php_syslog.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/streams/ -I/usr/src/php/main/streams/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/streams/streams.c -o main/streams/streams.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/streams/ -I/usr/src/php/main/streams/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/streams/cast.c -o main/streams/cast.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/streams/ -I/usr/src/php/main/streams/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/streams/memory.c -o main/streams/memory.lo
/usr/src/php/main/streams/cast.c:137:2: warning: initialization from incompatible pointer type [-Wincompatible-pointer-types]
stream_cookie_seeker, stream_cookie_closer
^~~~~~~~~~~~~~~~~~~~
/usr/src/php/main/streams/cast.c:137:2: note: (near initialization for 'stream_cookie_functions.seek')
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/streams/ -I/usr/src/php/main/streams/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/streams/filter.c -o main/streams/filter.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/streams/ -I/usr/src/php/main/streams/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/streams/plain_wrapper.c -o main/streams/plain_wrapper.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/streams/ -I/usr/src/php/main/streams/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/streams/userspace.c -o main/streams/userspace.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/streams/ -I/usr/src/php/main/streams/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/streams/transports.c -o main/streams/transports.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/streams/ -I/usr/src/php/main/streams/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/streams/xp_socket.c -o main/streams/xp_socket.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/streams/ -I/usr/src/php/main/streams/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/streams/mmap.c -o main/streams/mmap.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/streams/ -I/usr/src/php/main/streams/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/main/streams/glob_wrapper.c -o main/streams/glob_wrapper.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_language_parser.c -o Zend/zend_language_parser.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_language_scanner.c -o Zend/zend_language_scanner.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_ini_parser.c -o Zend/zend_ini_parser.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_ini_scanner.c -o Zend/zend_ini_scanner.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_alloc.c -o Zend/zend_alloc.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_compile.c -o Zend/zend_compile.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_constants.c -o Zend/zend_constants.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_dtrace.c -o Zend/zend_dtrace.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_execute_API.c -o Zend/zend_execute_API.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_highlight.c -o Zend/zend_highlight.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_llist.c -o Zend/zend_llist.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_vm_opcodes.c -o Zend/zend_vm_opcodes.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_opcode.c -o Zend/zend_opcode.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_operators.c -o Zend/zend_operators.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_ptr_stack.c -o Zend/zend_ptr_stack.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_stack.c -o Zend/zend_stack.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_variables.c -o Zend/zend_variables.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend.c -o Zend/zend.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_API.c -o Zend/zend_API.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_extensions.c -o Zend/zend_extensions.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_hash.c -o Zend/zend_hash.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_list.c -o Zend/zend_list.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_builtin_functions.c -o Zend/zend_builtin_functions.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_sprintf.c -o Zend/zend_sprintf.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_ini.c -o Zend/zend_ini.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_sort.c -o Zend/zend_sort.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_multibyte.c -o Zend/zend_multibyte.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_ts_hash.c -o Zend/zend_ts_hash.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_stream.c -o Zend/zend_stream.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_iterators.c -o Zend/zend_iterators.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_interfaces.c -o Zend/zend_interfaces.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_exceptions.c -o Zend/zend_exceptions.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_strtod.c -o Zend/zend_strtod.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_gc.c -o Zend/zend_gc.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_closures.c -o Zend/zend_closures.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_float.c -o Zend/zend_float.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_string.c -o Zend/zend_string.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_signal.c -o Zend/zend_signal.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_generators.c -o Zend/zend_generators.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_virtual_cwd.c -o Zend/zend_virtual_cwd.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_ast.c -o Zend/zend_ast.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_objects.c -o Zend/zend_objects.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_object_handlers.c -o Zend/zend_object_handlers.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_objects_API.c -o Zend/zend_objects_API.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_default_classes.c -o Zend/zend_default_classes.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_inheritance.c -o Zend/zend_inheritance.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_smart_str.c -o Zend/zend_smart_str.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_cpuinfo.c -o Zend/zend_cpuinfo.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -IZend/ -I/usr/src/php/Zend/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/Zend/zend_execute.c -o Zend/zend_execute.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Imain/ -I/usr/src/php/main/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c main/internal_functions_cli.c -o main/internal_functions_cli.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Isapi/cli/ -I/usr/src/php/sapi/cli/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/sapi/cli/php_cli.c -o sapi/cli/php_cli.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Isapi/cli/ -I/usr/src/php/sapi/cli/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/sapi/cli/php_http_parser.c -o sapi/cli/php_http_parser.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Isapi/cli/ -I/usr/src/php/sapi/cli/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/sapi/cli/php_cli_server.c -o sapi/cli/php_cli_server.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Isapi/cli/ -I/usr/src/php/sapi/cli/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/sapi/cli/ps_title.c -o sapi/cli/ps_title.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=compile cc -DZEND_ENABLE_STATIC_TSRMLS_CACHE=1 -Isapi/cli/ -I/usr/src/php/sapi/cli/ -DPHP_ATOM_INC -I/usr/src/php/include -I/usr/src/php/main -I/usr/src/php -I/usr/src/php/ext/date/lib -I/usr/src/php/TSRM -I/usr/src/php/Zend -g -O2 -fvisibility=hidden -DZEND_SIGNALS -c /usr/src/php/sapi/cli/php_cli_process_title.c -o sapi/cli/php_cli_process_title.lo
/bin/sh /usr/src/php/libtool --silent --preserve-dup-deps --mode=link cc -export-dynamic -g -O2 -fvisibility=hidden -DZEND_SIGNALS ext/date/php_date.lo ext/date/lib/astro.lo ext/date/lib/dow.lo ext/date/lib/parse_date.lo ext/date/lib/parse_tz.lo ext/date/lib/timelib.lo ext/date/lib/tm2unixtime.lo ext/date/lib/unixtime2tm.lo ext/date/lib/parse_iso_intervals.lo ext/date/lib/interval.lo ext/pcre/pcre2lib/pcre2_auto_possess.lo ext/pcre/pcre2lib/pcre2_chartables.lo ext/pcre/pcre2lib/pcre2_compile.lo ext/pcre/pcre2lib/pcre2_config.lo ext/pcre/pcre2lib/pcre2_context.lo ext/pcre/pcre2lib/pcre2_dfa_match.lo ext/pcre/pcre2lib/pcre2_error.lo ext/pcre/pcre2lib/pcre2_jit_compile.lo ext/pcre/pcre2lib/pcre2_maketables.lo ext/pcre/pcre2lib/pcre2_match.lo ext/pcre/pcre2lib/pcre2_match_data.lo ext/pcre/pcre2lib/pcre2_newline.lo ext/pcre/pcre2lib/pcre2_ord2utf.lo ext/pcre/pcre2lib/pcre2_pattern_info.lo ext/pcre/pcre2lib/pcre2_serialize.lo ext/pcre/pcre2lib/pcre2_string_utils.lo ext/pcre/pcre2lib/pcre2_study.lo ext/pcre/pcre2lib/pcre2_substitute.lo ext/pcre/pcre2lib/pcre2_substring.lo ext/pcre/pcre2lib/pcre2_tables.lo ext/pcre/pcre2lib/pcre2_ucd.lo ext/pcre/pcre2lib/pcre2_valid_utf.lo ext/pcre/pcre2lib/pcre2_xclass.lo ext/pcre/pcre2lib/pcre2_find_bracket.lo ext/pcre/pcre2lib/pcre2_convert.lo ext/pcre/pcre2lib/pcre2_extuni.lo ext/pcre/php_pcre.lo ext/json/json.lo ext/json/json_encoder.lo ext/json/json_parser.lo ext/json/json_scanner.lo ext/pcntl/pcntl.lo ext/pcntl/php_signal.lo ext/reflection/php_reflection.lo ext/spl/php_spl.lo ext/spl/spl_functions.lo ext/spl/spl_engine.lo ext/spl/spl_iterators.lo ext/spl/spl_array.lo ext/spl/spl_directory.lo ext/spl/spl_exceptions.lo ext/spl/spl_observer.lo ext/spl/spl_dllist.lo ext/spl/spl_heap.lo ext/spl/spl_fixedarray.lo ext/standard/array.lo ext/standard/base64.lo ext/standard/basic_functions.lo ext/standard/browscap.lo ext/standard/crc32.lo ext/standard/crypt.lo ext/standard/cyr_convert.lo ext/standard/datetime.lo ext/standard/dir.lo ext/standard/dl.lo ext/standard/dns.lo ext/standard/exec.lo ext/standard/file.lo ext/standard/filestat.lo ext/standard/flock_compat.lo ext/standard/formatted_print.lo ext/standard/fsock.lo ext/standard/head.lo ext/standard/html.lo ext/standard/image.lo ext/standard/info.lo ext/standard/iptc.lo ext/standard/lcg.lo ext/standard/link.lo ext/standard/mail.lo ext/standard/math.lo ext/standard/md5.lo ext/standard/metaphone.lo ext/standard/microtime.lo ext/standard/pack.lo ext/standard/pageinfo.lo ext/standard/quot_print.lo ext/standard/rand.lo ext/standard/mt_rand.lo ext/standard/soundex.lo ext/standard/string.lo ext/standard/scanf.lo ext/standard/syslog.lo ext/standard/type.lo ext/standard/uniqid.lo ext/standard/url.lo ext/standard/var.lo ext/standard/versioning.lo ext/standard/assert.lo ext/standard/strnatcmp.lo ext/standard/levenshtein.lo ext/standard/incomplete_class.lo ext/standard/url_scanner_ex.lo ext/standard/ftp_fopen_wrapper.lo ext/standard/http_fopen_wrapper.lo ext/standard/php_fopen_wrapper.lo ext/standard/credits.lo ext/standard/css.lo ext/standard/var_unserializer.lo ext/standard/ftok.lo ext/standard/sha1.lo ext/standard/user_filters.lo ext/standard/uuencode.lo ext/standard/filters.lo ext/standard/proc_open.lo ext/standard/streamsfuncs.lo ext/standard/http.lo ext/standard/password.lo ext/standard/random.lo ext/standard/net.lo ext/standard/hrtime.lo TSRM/TSRM.lo TSRM/tsrm_strtok_r.lo main/main.lo main/snprintf.lo main/spprintf.lo main/php_sprintf.lo main/fopen_wrappers.lo main/alloca.lo main/php_scandir.lo main/php_ini.lo main/SAPI.lo main/rfc1867.lo main/php_content_types.lo main/strlcpy.lo main/strlcat.lo main/explicit_bzero.lo main/mergesort.lo main/reentrancy.lo main/php_variables.lo main/php_ticks.lo main/network.lo main/php_open_temporary_file.lo main/output.lo main/getopt.lo main/php_syslog.lo main/streams/streams.lo main/streams/cast.lo main/streams/memory.lo main/streams/filter.lo main/streams/plain_wrapper.lo main/streams/userspace.lo main/streams/transports.lo main/streams/xp_socket.lo main/streams/mmap.lo main/streams/glob_wrapper.lo Zend/zend_language_parser.lo Zend/zend_language_scanner.lo Zend/zend_ini_parser.lo Zend/zend_ini_scanner.lo Zend/zend_alloc.lo Zend/zend_compile.lo Zend/zend_constants.lo Zend/zend_dtrace.lo Zend/zend_execute_API.lo Zend/zend_highlight.lo Zend/zend_llist.lo Zend/zend_vm_opcodes.lo Zend/zend_opcode.lo Zend/zend_operators.lo Zend/zend_ptr_stack.lo Zend/zend_stack.lo Zend/zend_variables.lo Zend/zend.lo Zend/zend_API.lo Zend/zend_extensions.lo Zend/zend_hash.lo Zend/zend_list.lo Zend/zend_builtin_functions.lo Zend/zend_sprintf.lo Zend/zend_ini.lo Zend/zend_sort.lo Zend/zend_multibyte.lo Zend/zend_ts_hash.lo Zend/zend_stream.lo Zend/zend_iterators.lo Zend/zend_interfaces.lo Zend/zend_exceptions.lo Zend/zend_strtod.lo Zend/zend_gc.lo Zend/zend_closures.lo Zend/zend_float.lo Zend/zend_string.lo Zend/zend_signal.lo Zend/zend_generators.lo Zend/zend_virtual_cwd.lo Zend/zend_ast.lo Zend/zend_objects.lo Zend/zend_object_handlers.lo Zend/zend_objects_API.lo Zend/zend_default_classes.lo Zend/zend_inheritance.lo Zend/zend_smart_str.lo Zend/zend_cpuinfo.lo Zend/zend_execute.lo main/internal_functions_cli.lo sapi/cli/php_cli.lo sapi/cli/php_http_parser.lo sapi/cli/php_cli_server.lo sapi/cli/ps_title.lo sapi/cli/php_cli_process_title.lo -lrt -lm -o sapi/cli/php
Build complete.
Don't forget to run 'make test'.
+ make install
Installing PHP CLI binary: /usr/local/bin/
Installing PHP CLI man page: /usr/local/php/man/man1/
Installing build environment: /usr/local/lib/php/build/
Installing header files: /usr/local/include/php/
Installing helper programs: /usr/local/bin/
program: phpize
program: php-config
Installing man pages: /usr/local/php/man/man1/
page: phpize.1
page: php-config.1
+ nm --print-size --size-sort /usr/local/bin/php
00000000003359db 0000000000000001 T _fini
00000000000c7ee0 0000000000000001 T _init
0000000000723f60 0000000000000001 b completed.5795
000000000072a2b0 0000000000000001 b machine_little_endian
0000000000724519 0000000000000001 b mdata_used
0000000000724518 0000000000000001 b pcre2_init_ok
0000000000723370 0000000000000001 d then_trap_opcode
000000000072b3c0 0000000000000001 B zend_dtrace_enabled
00000000000cc855 0000000000000001 T zend_output_debug_string
0000000000234100 0000000000000002 t OnUpdateDefaultCharset
00000000002340e0 0000000000000002 t OnUpdateInputEncoding
00000000002340f0 0000000000000002 t OnUpdateInternalEncoding
00000000002d9fc0 0000000000000002 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER
000000000072e9a8 0000000000000002 b cli_server_globals
0000000000725a3a 0000000000000002 b dirsep_str.15638
00000000002b8fc0 0000000000000002 t iter_wrapper_dtor
000000000042a67d 0000000000000002 r paths_separator.14226
0000000000725a38 0000000000000002 b pathsep_str.15639
0000000000235020 0000000000000002 T php_com_initialize
00000000002281d0 0000000000000002 t php_conv_base64_decode_dtor
0000000000235eb0 0000000000000002 T php_module_shutdown_for_exec
0000000000419351 0000000000000002 R php_sig_bmp
000000000032bab0 0000000000000002 t sapi_cli_send_header
00000000001ab9e0 0000000000000002 t spl_heap_it_rewind
00000000002509a0 0000000000000002 t stream_resource_regular_dtor
0000000000299f40 0000000000000002 t zend_empty_destroy
000000000032ac40 0000000000000002 t zend_vm_dtor
00000000001c2ce0 0000000000000002 t zif_get_magic_quotes_runtime
00000000002d8320 0000000000000002 t zif_pass
0000000000176f70 0000000000000002 t zif_pcntl_wexitstatus
0000000000226640 0000000000000002 t zif_user_filter_nop
000000000017bbe0 0000000000000002 t zim_reflection_class_constant_getName
000000000017bbd0 0000000000000002 t zim_reflection_class_getName
000000000017bbc0 0000000000000002 t zim_reflection_property_getName
00000000001ad7d0 0000000000000002 t zim_spl_SplFixedArray_count
00000000002b80f0 0000000000000003 t dummy_encoding_detector
00000000002b80c0 0000000000000003 t dummy_encoding_fetcher
00000000002b80e0 0000000000000003 t dummy_encoding_lexer_compatibility_checker
000000000023fc10 0000000000000003 t dummy_encoding_translation
00000000002b8110 0000000000000003 t dummy_internal_encoding_getter
000000000032fb20 0000000000000003 t php_cli_server_client_read_request_on_fragment
000000000032fb10 0000000000000003 t php_cli_server_client_read_request_on_message_begin
0000000000247500 0000000000000003 t php_output_handler_devnull_func
000000000011b530 0000000000000003 T php_pcre2_set_recursion_memory_management
0000000000419357 0000000000000003 R php_sig_gif
0000000000419334 0000000000000003 R php_sig_jpc
0000000000419348 0000000000000003 R php_sig_jpg
000000000041934b 0000000000000003 R php_sig_swc
000000000041934e 0000000000000003 R php_sig_swf
000000000025baa0 0000000000000003 t php_sockop_flush
00000000002533d0 0000000000000003 t php_stream_memory_flush
00000000002216d0 0000000000000003 t php_stream_output_close
000000000032ba90 0000000000000003 t sapi_cli_header_handler
000000000032ba80 0000000000000003 t sapi_cli_read_cookies
00000000002b9740 0000000000000003 t zend_implement_arrayaccess
00000000002b9080 0000000000000003 t zend_implement_countable
0000000000299c40 0000000000000003 T zend_ptr_stack_num_elements
00000000001b3750 0000000000000003 t zm_shutdown_array
00000000001c9fe0 0000000000000003 t zm_shutdown_crypt
0000000000176ad0 0000000000000003 t zm_shutdown_pcntl
00000000002336b0 0000000000000003 t zm_startup_hrtime
00000000003f03d8 0000000000000004 r _pcre2_utf8_table1_size
0000000000725b20 0000000000000004 b byte_map
0000000000725c40 0000000000000004 b cli_err.17101
0000000000725c48 0000000000000004 b cli_in.17099
0000000000725c44 0000000000000004 b cli_out.17100
000000000072446c 0000000000000004 b compiler_initialized
0000000000723374 0000000000000004 d cpu_has_cmov
0000000000726018 0000000000000004 b dash.13565
00000000002b80d0 0000000000000004 t dummy_encoding_name_getter
0000000000725ef4 0000000000000004 b has_per_dir_config
0000000000725ef0 0000000000000004 b has_per_host_config
0000000000725f40 0000000000000004 b is_special_section
000000000072615c 0000000000000004 b last_resource_number
0000000000725e20 0000000000000004 b le_bucket
0000000000725e24 0000000000000004 b le_bucket_brigade
000000000072b458 0000000000000004 B le_index_ptr
0000000000725e2c 0000000000000004 b le_proc_open
00000000007260b8 0000000000000004 b le_protocols
0000000000723910 0000000000000004 d le_pstream
0000000000723914 0000000000000004 d le_stream
00000000007237e8 0000000000000004 d le_stream_context
000000000072390c 0000000000000004 d le_stream_filter
0000000000725e28 0000000000000004 b le_userfilters
0000000000725e44 0000000000000004 b module_initialized
0000000000725e40 0000000000000004 b module_shutdown
00000000007238d0 0000000000000004 d module_startup
000000000072601c 0000000000000004 b optchr.13564
0000000000723d28 0000000000000004 d php_cli_output_is_tty
00000000007277e0 0000000000000004 b php_date_global_timezone_db_enabled
0000000000174a70 0000000000000004 T php_json_parser_error_code
0000000000723908 0000000000000004 D php_optidx
0000000000170630 0000000000000004 T php_pcre_pce_re
000000000041931c 0000000000000004 R php_sig_ico
0000000000419320 0000000000000004 R php_sig_iff
0000000000419353 0000000000000004 R php_sig_psd
0000000000419318 0000000000000004 R php_sig_riff
000000000041933b 0000000000000004 R php_sig_tif_ii
0000000000419337 0000000000000004 R php_sig_tif_mm
0000000000419314 0000000000000004 R php_sig_webp
000000000072a2e0 0000000000000004 B random_globals
00000000007277b8 0000000000000004 b save_argc
0000000000726158 0000000000000004 B zend_extension_flags
0000000000726c88 0000000000000004 b zend_handlers_count
00000000007260f8 0000000000000004 b zend_mm_use_huge_pages
0000000000299d90 0000000000000004 T zend_stack_count
00000000002b87c0 0000000000000004 T zend_ts_hash_num_elements
0000000000726128 0000000000000004 b zend_version_info_length
00000000000dd82f 0000000000000005 t ZEND_EXT_NOP_SPEC_HANDLER
00000000000d5f15 0000000000000005 t ZEND_NOP_SPEC_HANDLER
0000000000274810 0000000000000005 T _zend_mm_block_size
000000000011aff0 0000000000000005 t default_free
000000000011afe0 0000000000000005 t default_malloc
0000000000277a50 0000000000000005 T file_handle_dtor
00000000000e4aa0 0000000000000005 t php_date_parse_tzfile_wrapper
00000000001fd6a0 0000000000000005 T php_dirname
00000000002342e0 0000000000000005 t php_get_configuration_directive_for_zend
0000000000234640 0000000000000005 T php_html_puts
00000000001e3600 0000000000000005 t php_ifd_get32s.part.1
0000000000174b40 0000000000000005 T php_json_parse
0000000000233f00 0000000000000005 t php_output_wrapper
0000000000160f60 0000000000000005 T php_pcre2_get_mark
0000000000160f80 0000000000000005 T php_pcre2_get_ovector_count
0000000000160f70 0000000000000005 T php_pcre2_get_ovector_pointer
0000000000160f90 0000000000000005 T php_pcre2_get_startchar
0000000000169890 0000000000000005 t php_pcre_free
0000000000169870 0000000000000005 t php_pcre_malloc
0000000000170620 0000000000000005 T php_pcre_pce_decref
0000000000170610 0000000000000005 T php_pcre_pce_incref
00000000001f4a70 0000000000000005 T php_srand
0000000000222f60 0000000000000005 T php_var_unserialize_get_allowed_classes
0000000000222f70 0000000000000005 T php_var_unserialize_set_allowed_classes
0000000000234630 0000000000000005 T php_write
000000000019e3f0 0000000000000005 t spl_filesystem_dir_it_current_data
000000000019f3c0 0000000000000005 t spl_filesystem_object_new
0000000000252e80 0000000000000005 t stream_cookie_reader
0000000000252e60 0000000000000005 t stream_cookie_seeker
0000000000252e70 0000000000000005 t stream_cookie_writer
00000000002b0960 0000000000000005 t zend_destroy_rsrc_list
000000000028af50 0000000000000005 T zend_get_constant
000000000028af40 0000000000000005 T zend_get_constant_str
000000000028fd30 0000000000000005 T zend_llist_count
0000000000277420 0000000000000005 T zend_mm_get_storage
0000000000277430 0000000000000005 T zend_mm_startup
0000000000299d80 0000000000000005 T zend_stack_base
0000000000299f50 0000000000000005 t zend_string_destroy
00000000002b8590 0000000000000005 T zend_ts_hash_add
00000000002b85d0 0000000000000005 T zend_ts_hash_add_empty_element
00000000002b85f0 0000000000000005 T zend_ts_hash_apply
00000000002b8600 0000000000000005 T zend_ts_hash_apply_with_argument
00000000002b8750 0000000000000005 T zend_ts_hash_copy
00000000002b8760 0000000000000005 T zend_ts_hash_copy_to_hash
00000000002b86d0 0000000000000005 T zend_ts_hash_del
00000000002b8570 0000000000000005 T zend_ts_hash_destroy
00000000002b86f0 0000000000000005 T zend_ts_hash_find
00000000002b85e0 0000000000000005 T zend_ts_hash_graceful_destroy
00000000002b86e0 0000000000000005 T zend_ts_hash_index_del
00000000002b8700 0000000000000005 T zend_ts_hash_index_find
00000000002b85c0 0000000000000005 T zend_ts_hash_index_update
00000000002b8780 0000000000000005 T zend_ts_hash_merge_ex
00000000002b87b0 0000000000000005 T zend_ts_hash_minmax
00000000002b85b0 0000000000000005 T zend_ts_hash_next_index_insert
00000000002b87d0 0000000000000005 T zend_ts_hash_rehash
00000000002b86c0 0000000000000005 T zend_ts_hash_reverse_apply
00000000002b8800 0000000000000005 T zend_ts_hash_str_add
00000000002b87e0 0000000000000005 T zend_ts_hash_str_find
00000000002b87f0 0000000000000005 T zend_ts_hash_str_update
00000000002b85a0 0000000000000005 T zend_ts_hash_update
00000000000ea2d0 0000000000000005 t zim_DateTime___construct
000000000017bc00 0000000000000005 t zim_reflection_function_getName
000000000017be00 0000000000000005 t zim_reflection_function_getNamespaceName
000000000017bf90 0000000000000005 t zim_reflection_function_getShortName
000000000017bcb0 0000000000000005 t zim_reflection_function_inNamespace
0000000000179c60 0000000000000005 t zim_reflection_method_setAccessible
000000000017bbf0 0000000000000005 t zim_reflection_parameter_getName
00000000001ac910 0000000000000005 t zim_spl_SplPriorityQueue_compare
0000000000213730 0000000000000005 t zm_info_assert
0000000000330050 0000000000000005 t zm_info_cli_server
00000000001b02b0 0000000000000005 t zval_compare
00000000002b8120 0000000000000006 t dummy_internal_encoding_setter
00000000002b8fb0 0000000000000006 t iter_wrapper_free
000000000011b4b0 0000000000000006 T php_pcre2_set_compile_extra_options
000000000011b500 0000000000000006 T php_pcre2_set_depth_limit
000000000011b4e0 0000000000000006 T php_pcre2_set_heap_limit
000000000011b4f0 0000000000000006 T php_pcre2_set_match_limit
000000000011b4a0 0000000000000006 T php_pcre2_set_parens_nest_limit
000000000011b520 0000000000000006 T php_pcre2_set_recursion_limit
000000000021a150 0000000000000006 t php_stream_ftp_stream_stat
000000000021ccf0 0000000000000006 t php_stream_http_stream_stat
00000000002216f0 0000000000000006 t php_stream_input_flush
00000000002534a0 0000000000000006 t php_stream_memory_cast
00000000002cb2c0 0000000000000006 T realpath_cache_max_buckets
000000000032baa0 0000000000000006 t sapi_cli_send_headers
000000000032fb00 0000000000000006 t sapi_cli_server_discard_headers
00000000002b8230 0000000000000006 T zend_multibyte_check_lexer_compatibility
00000000002b8250 0000000000000006 T zend_multibyte_encoding_converter
00000000002b8240 0000000000000006 T zend_multibyte_encoding_detector
00000000002b8210 0000000000000006 T zend_multibyte_fetch_encoding
00000000002b8220 0000000000000006 T zend_multibyte_get_encoding_name
00000000002b8270 0000000000000006 T zend_multibyte_get_internal_encoding
00000000002b8260 0000000000000006 T zend_multibyte_parse_encoding_list
00000000002b82d0 0000000000000006 T zend_multibyte_set_internal_encoding
00000000002bed40 0000000000000006 T zend_startup_strtod
000000000032ad00 0000000000000006 T zend_vm_kind
00000000002e4f20 0000000000000007 t ZEND_FETCH_R_SPEC_CONST_UNUSED_HANDLER
00000000003007a0 0000000000000007 t ZEND_FETCH_R_SPEC_CV_UNUSED_HANDLER
00000000002e52c0 0000000000000007 t ZEND_FETCH_R_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e8cd0 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_CONST_CONST_HANDLER
00000000002e94c0 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_CONST_UNUSED_HANDLER
00000000002e90c0 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_CONST_VAR_HANDLER
00000000002ea920 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_CV_CONST_HANDLER
00000000002eb2a0 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_CV_UNUSED_HANDLER
00000000002eae10 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_CV_VAR_HANDLER
00000000002e9990 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_TMPVAR_CONST_HANDLER
00000000002ea3e0 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e9ed0 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_TMPVAR_VAR_HANDLER
00000000003185c0 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_CV_CONST_HANDLER
00000000003189b0 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_CV_CV_HANDLER
00000000003187a0 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_CV_TMPVAR_HANDLER
0000000000317a20 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_UNUSED_CONST_HANDLER
0000000000317d70 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_UNUSED_CV_HANDLER
0000000000317bd0 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_UNUSED_TMPVAR_HANDLER
0000000000317f80 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_VAR_CONST_HANDLER
00000000003183d0 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_VAR_CV_HANDLER
00000000003181a0 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_VAR_TMPVAR_HANDLER
0000000000317070 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_CV_CONST_HANDLER
0000000000317490 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_CV_CV_HANDLER
0000000000317280 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_CV_TMPVAR_HANDLER
0000000000316420 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_UNUSED_CONST_HANDLER
00000000003167a0 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_UNUSED_CV_HANDLER
00000000003165e0 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_UNUSED_TMPVAR_HANDLER
00000000003169e0 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_VAR_CONST_HANDLER
0000000000316e70 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_VAR_CV_HANDLER
0000000000316c30 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_VAR_TMPVAR_HANDLER
00000000002542f0 0000000000000007 T _php_stream_temp_create
000000000028feb0 0000000000000007 t cmp_live_range
0000000000320bd0 0000000000000007 T execute_internal
00000000003ee728 0000000000000007 r freg_lmap
00000000003ee728 0000000000000007 r freg_map
000000000029e100 0000000000000007 T object_init_ex
00000000001afab0 0000000000000007 t php_array_key_compare_string_natural
00000000001b00e0 0000000000000007 t php_array_natural_compare
00000000001d4820 0000000000000007 T php_copy_file_ex
000000000024f270 0000000000000007 T php_file_le_pstream
000000000024f260 0000000000000007 T php_file_le_stream
000000000024f280 0000000000000007 T php_file_le_stream_filter
0000000000234620 0000000000000007 T php_get_module_initialized
000000000023d5b0 0000000000000007 T php_ini_has_per_dir_config
000000000023d640 0000000000000007 T php_ini_has_per_host_config
00000000001cff10 0000000000000007 T php_le_stream_context
00000000001d3160 0000000000000007 T php_mkdir
0000000000247370 0000000000000007 T php_open_temporary_fd
000000000024c450 0000000000000007 T php_output_get_start_lineno
000000000011b440 0000000000000007 T php_pcre2_set_character_tables
000000000011b470 0000000000000007 T php_pcre2_set_max_pattern_length
000000000011b510 0000000000000007 T php_pcre2_set_offset_limit
00000000001797a0 0000000000000007 t php_signal
00000000002216c0 0000000000000007 t php_stream_output_read
0000000000219f30 0000000000000007 T php_url_scanner_reset_var
0000000000191f40 0000000000000007 t spl_RecursiveIteratorIterator_new
00000000001a9340 0000000000000007 t spl_SplObjectStorage_new
000000000018e9b0 0000000000000007 t spl_iterator_count_apply
0000000000205490 0000000000000007 T string_natural_compare_function
00000000000eb780 0000000000000007 t timelib_day_of_week
00000000002bd660 0000000000000007 t zend_default_exception_new
00000000002a2a10 0000000000000007 T zend_get_callable_name
0000000000278d80 0000000000000007 T zend_get_compiled_lineno
000000000031f910 0000000000000007 T zend_get_compiled_variable_value
00000000000cbaf5 0000000000000007 t zend_ini_scanner_get_lineno
00000000002a2200 0000000000000007 T zend_register_internal_class
0000000000299d20 0000000000000007 T zend_stack_del_top
00000000000e77b0 0000000000000007 t zif_date_sunrise
00000000001cf3c0 0000000000000007 t zif_exec
00000000001dd900 0000000000000007 t zif_fsockopen
00000000001e5620 0000000000000007 t zif_getimagesizefromstring
00000000000e8010 0000000000000007 t zif_gmdate
0000000000203740 0000000000000007 t zif_hebrev
00000000001e2010 0000000000000007 t zif_htmlspecialchars
00000000002b38d0 0000000000000007 t zif_is_a
00000000001f1470 0000000000000007 t zif_microtime
00000000000e9230 0000000000000007 t zif_mktime
00000000001cb4b0 0000000000000007 t zif_opendir
000000000016e020 0000000000000007 t zif_preg_match
000000000016f430 0000000000000007 t zif_preg_replace
0000000000203730 0000000000000007 t zif_str_ireplace
00000000000e96b0 0000000000000007 t zif_strftime
00000000002054a0 0000000000000007 t zif_strnatcmp
00000000001f8070 0000000000000007 t zif_strspn
0000000000183bb0 0000000000000007 t zim_reflection_class___construct
00000000001827c0 0000000000000007 t zim_reflection_method_invokeArgs
00000000001a68f0 0000000000000007 t zim_spl_DirectoryIterator___construct
00000000000d5f1a 0000000000000008 t ZEND_JMP_FORWARD_SPEC_HANDLER
0000000000723f40 0000000000000008 B __environ
000000000014d380 0000000000000008 t _pcre2_jit_get_target_8
0000000000723378 0000000000000008 d _pcre2_unicode_version_8
00000000003ef7c0 0000000000000008 r _pcre2_utt_size_8
00000000000e15a0 0000000000000008 t _php_date_tzinfo_dtor
0000000000250970 0000000000000008 T _php_stream_free_enclosed
0000000000250b60 0000000000000008 T _php_stream_tell
0000000000723988 0000000000000008 d _real_page_size
000000000023d7f0 0000000000000008 t _type_dtor
00000000002b8560 0000000000000008 T _zend_ts_hash_init
0000000000725f38 0000000000000008 b active_ini_hash
0000000000726100 0000000000000008 b alloc_globals
0000000000724478 0000000000000008 b allocated_size
0000000000728228 0000000000000008 b array_globals
0000000000725b40 0000000000000008 b assertion_error_ce
000000000029a170 0000000000000008 t auto_global_dtor
0000000000725af8 0000000000000008 b big_endian_short_map
0000000000724530 0000000000000008 b cctx
0000000000331530 0000000000000008 t char_ptr_dtor_p
00000000007049c0 0000000000000008 d chunked_filter_factory
0000000000726138 0000000000000008 b class_cleanup_handlers
0000000000725a48 0000000000000008 b cmd_max_len
00000000007049e8 0000000000000008 d consumed_filter_factory
0000000000727808 0000000000000008 b date_ce_date
00000000007277f0 0000000000000008 b date_ce_immutable
0000000000727800 0000000000000008 b date_ce_interface
00000000007277f8 0000000000000008 b date_ce_interval
0000000000727810 0000000000000008 b date_ce_period
00000000007277e8 0000000000000008 b date_ce_timezone
0000000000725a40 0000000000000008 b dir_class_entry_ptr
000000000072a218 0000000000000008 b dir_globals
00000000007264a0 0000000000000008 b dtoa_result
0000000000723f68 0000000000000008 b dtor_idx.5797
00000000002b8100 0000000000000008 t dummy_encoding_converter
00000000007277c8 0000000000000008 b empty_environ
0000000000723f40 0000000000000008 V environ
0000000000724480 0000000000000008 b free_blocks
000000000029c600 0000000000000008 T free_estring
00000000007277a8 0000000000000008 b frozen_environ
000000000072b4e8 0000000000000008 B gc_collect_cycles
00000000002c3900 0000000000000008 T gc_enabled
00000000002c3920 0000000000000008 T gc_protected
0000000000724538 0000000000000008 b gctx
000000000029c0b0 0000000000000008 T get_zend_version
00000000002606e0 0000000000000008 t heredoc_label_dtor
0000000000724a18 0000000000000008 b incomplete_class_entry
0000000000726638 0000000000000008 b interned_string_copy_storage
0000000000723ae8 0000000000000008 d interned_string_init_request_handler
0000000000723af0 0000000000000008 d interned_string_request_handler
0000000000726630 0000000000000008 b interned_string_restore_storage
0000000000724540 0000000000000008 b jit_stack
0000000000277ae0 0000000000000008 t label_ptr_dtor
0000000000725e30 0000000000000008 b lastCodeset.20427
0000000000725e38 0000000000000008 b lastHint.20426
00000000002b0470 0000000000000008 t list_destructors_dtor
0000000000725af0 0000000000000008 b little_endian_short_map
0000000000725b00 0000000000000008 b machine_endian_short_map
0000000000724528 0000000000000008 b mctx
0000000000724520 0000000000000008 b mdata
0000000000726140 0000000000000008 b module_post_deactivate_handlers
0000000000726148 0000000000000008 b module_request_shutdown_handlers
0000000000726150 0000000000000008 b module_request_startup_handlers
00000000007277a0 0000000000000008 b new_environ
0000000000724548 0000000000000008 b orig_interrupt_function
00000000002d4110 0000000000000008 t overriden_ptr_dtor
00000000007264a8 0000000000000008 b p5s
000000000032d180 0000000000000008 T php_cli_get_shell_callbacks
00000000000e69b0 0000000000000008 T php_date_get_date_ce
00000000000e69c0 0000000000000008 T php_date_get_immutable_ce
00000000000e69d0 0000000000000008 T php_date_get_interface_ce
00000000000e69f0 0000000000000008 T php_date_get_interval_ce
00000000000e6a00 0000000000000008 T php_date_get_period_ce
00000000000e69e0 0000000000000008 T php_date_get_timezone_ce
0000000000727818 0000000000000008 b php_date_global_timezone_db
00000000002543e0 0000000000000008 T php_get_stream_filters_hash_global
00000000007238f8 0000000000000008 D php_import_environment_variables
000000000023d7e0 0000000000000008 T php_ini_get_configuration_hash
0000000000725e70 0000000000000008 B php_ini_opened_path
0000000000725e60 0000000000000008 B php_ini_scanned_files
0000000000725e68 0000000000000008 B php_ini_scanned_path
00000000007278b8 0000000000000008 B php_json_exception_ce
00000000007278b0 0000000000000008 B php_json_serializable_ce
0000000000723900 0000000000000008 d php_output_direct
0000000000247bb0 0000000000000008 T php_output_get_active_handler
000000000024c440 0000000000000008 T php_output_get_start_filename
0000000000170600 0000000000000008 T php_pcre_cctx
0000000000169880 0000000000000008 t php_pcre_free_char_table
00000000001705f0 0000000000000008 T php_pcre_gctx
00000000001705e0 0000000000000008 T php_pcre_mctx
00000000007238d8 0000000000000008 D php_register_internal_extensions_func
0000000000725f50 0000000000000008 b php_rfc1867_basename
0000000000725f48 0000000000000008 B php_rfc1867_callback
00000000007238f0 0000000000000008 d php_rfc1867_encoding_translation
0000000000725f58 0000000000000008 b php_rfc1867_get_detect_order
00000000007238e8 0000000000000008 d php_rfc1867_getword
00000000007238e0 0000000000000008 d php_rfc1867_getword_conf
0000000000723d20 0000000000000008 d php_self
0000000000419340 0000000000000008 R php_sig_png
000000000024f2b0 0000000000000008 T php_stream_get_url_stream_wrappers_hash_global
00000000002216e0 0000000000000008 t php_stream_input_write
000000000025acf0 0000000000000008 T php_stream_xport_get_hash
0000000000204b50 0000000000000008 T php_strip_tags
0000000000219eb0 0000000000000008 T php_url_scanner_add_var
0000000000726020 0000000000000008 b prev_optarg.13566
00000000007277d8 0000000000000008 b ps_buffer
00000000007277c0 0000000000000008 b ps_buffer_cur_len
00000000007277d0 0000000000000008 b ps_buffer_size
00000000002cb2d0 0000000000000008 T realpath_cache_get_buckets
00000000002cb2b0 0000000000000008 T realpath_cache_size
00000000007279a0 0000000000000008 B reflection_class_constant_ptr
00000000007279a8 0000000000000008 B reflection_class_ptr
0000000000727990 0000000000000008 B reflection_exception_ptr
00000000007279b0 0000000000000008 B reflection_extension_ptr
0000000000727958 0000000000000008 B reflection_function_abstract_ptr
0000000000727960 0000000000000008 B reflection_function_ptr
0000000000727970 0000000000000008 B reflection_generator_ptr
0000000000727978 0000000000000008 B reflection_method_ptr
0000000000727968 0000000000000008 B reflection_named_type_ptr
0000000000727988 0000000000000008 B reflection_object_ptr
00000000007279b8 0000000000000008 B reflection_parameter_ptr
0000000000727940 0000000000000008 B reflection_property_ptr
0000000000727948 0000000000000008 B reflection_ptr
0000000000727980 0000000000000008 B reflection_type_ptr
0000000000727950 0000000000000008 B reflection_zend_extension_ptr
0000000000727998 0000000000000008 B reflector_ptr
0000000000726198 0000000000000008 b registered_zend_ini_directives
0000000000247550 0000000000000008 t reverse_conflict_dtor
00000000007274b8 0000000000000008 b s_in_process
000000000023d800 0000000000000008 T sapi_free_header
00000000007277b0 0000000000000008 b save_argv
0000000000723d18 0000000000000008 d script_filename
00000000007274c0 0000000000000008 b send_header_func.16854
0000000000724488 0000000000000008 b sljit_page_align
0000000000724640 0000000000000008 b spl_autoload_call_fn
0000000000724648 0000000000000008 b spl_autoload_fn
00000000007279e8 0000000000000008 B spl_ce_AppendIterator
0000000000727c60 0000000000000008 B spl_ce_ArrayIterator
0000000000727c68 0000000000000008 B spl_ce_ArrayObject
0000000000727cd0 0000000000000008 B spl_ce_BadFunctionCallException
0000000000727cc8 0000000000000008 B spl_ce_BadMethodCallException
0000000000727a28 0000000000000008 B spl_ce_CachingIterator
0000000000727a68 0000000000000008 B spl_ce_CallbackFilterIterator
0000000000727c90 0000000000000008 B spl_ce_DirectoryIterator
0000000000727cd8 0000000000000008 B spl_ce_DomainException
00000000007279f8 0000000000000008 B spl_ce_EmptyIterator
0000000000727c80 0000000000000008 B spl_ce_FilesystemIterator
00000000007279f0 0000000000000008 B spl_ce_FilterIterator
0000000000727c88 0000000000000008 B spl_ce_GlobIterator
0000000000727a78 0000000000000008 B spl_ce_InfiniteIterator
0000000000727cb0 0000000000000008 B spl_ce_InvalidArgumentException
0000000000727a40 0000000000000008 B spl_ce_IteratorIterator
0000000000727cf0 0000000000000008 B spl_ce_LengthException
0000000000727a38 0000000000000008 B spl_ce_LimitIterator
0000000000727d10 0000000000000008 B spl_ce_LogicException
0000000000727e28 0000000000000008 B spl_ce_MultipleIterator
0000000000727a48 0000000000000008 B spl_ce_NoRewindIterator
0000000000727ce8 0000000000000008 B spl_ce_OutOfBoundsException
0000000000727d00 0000000000000008 B spl_ce_OutOfRangeException
0000000000727a08 0000000000000008 B spl_ce_OuterIterator
0000000000727d08 0000000000000008 B spl_ce_OverflowException
0000000000727a00 0000000000000008 B spl_ce_ParentIterator
0000000000727cb8 0000000000000008 B spl_ce_RangeException
0000000000727c70 0000000000000008 B spl_ce_RecursiveArrayIterator
0000000000727a50 0000000000000008 B spl_ce_RecursiveCachingIterator
0000000000727a80 0000000000000008 B spl_ce_RecursiveCallbackFilterIterator
0000000000727ca0 0000000000000008 B spl_ce_RecursiveDirectoryIterator
0000000000727a60 0000000000000008 B spl_ce_RecursiveFilterIterator
0000000000727a20 0000000000000008 B spl_ce_RecursiveIterator
0000000000727a30 0000000000000008 B spl_ce_RecursiveIteratorIterator
0000000000727a18 0000000000000008 B spl_ce_RecursiveRegexIterator
0000000000727a58 0000000000000008 B spl_ce_RecursiveTreeIterator
0000000000727a10 0000000000000008 B spl_ce_RegexIterator
0000000000727cc0 0000000000000008 B spl_ce_RuntimeException
0000000000727a70 0000000000000008 B spl_ce_SeekableIterator
0000000000727f48 0000000000000008 B spl_ce_SplDoublyLinkedList
0000000000727c78 0000000000000008 B spl_ce_SplFileInfo
0000000000727ca8 0000000000000008 B spl_ce_SplFileObject
0000000000728220 0000000000000008 B spl_ce_SplFixedArray
0000000000728058 0000000000000008 B spl_ce_SplHeap
0000000000728048 0000000000000008 B spl_ce_SplMaxHeap
0000000000728050 0000000000000008 B spl_ce_SplMinHeap
0000000000727d20 0000000000000008 B spl_ce_SplObjectStorage
0000000000727d28 0000000000000008 B spl_ce_SplObserver
0000000000728040 0000000000000008 B spl_ce_SplPriorityQueue
0000000000727f40 0000000000000008 B spl_ce_SplQueue
0000000000727e40 0000000000000008 B spl_ce_SplStack
0000000000727e20 0000000000000008 B spl_ce_SplSubject
0000000000727c98 0000000000000008 B spl_ce_SplTempFileObject
0000000000727ce0 0000000000000008 B spl_ce_UnderflowException
0000000000727cf8 0000000000000008 B spl_ce_UnexpectedValueException
000000000018e620 0000000000000008 t spl_register_property
000000000071c0f0 0000000000000008 D stderr
000000000071c100 0000000000000008 D stdin
000000000071c0f8 0000000000000008 D stdout
0000000000704a08 0000000000000008 d strfilter_convert_factory
0000000000704a98 0000000000000008 d strfilter_rot13_factory
0000000000704a28 0000000000000008 d strfilter_strip_tags_factory
0000000000704a48 0000000000000008 d strfilter_tolower_factory
0000000000704a50 0000000000000008 d strfilter_toupper_factory
0000000000215060 0000000000000008 t tag_dtor
0000000000108800 0000000000000008 t timelib_builtin_db
00000000001084b0 0000000000000008 t timelib_timezone_abbreviations_list
0000000000724470 0000000000000008 b total_size
000000000043fa38 0000000000000008 r uninitialized_bucket
0000000000704800 0000000000000008 d user_filter_factory
000000000024ef30 0000000000000008 t wrapper_error_dtor
00000000002b6f60 0000000000000008 T zend_alter_ini_entry
0000000000726c10 0000000000000008 B zend_ast_process
000000000072c960 0000000000000008 B zend_ce_ClosedGeneratorException
000000000072b468 0000000000000008 B zend_ce_aggregate
000000000072b4c8 0000000000000008 B zend_ce_argument_count_error
000000000072b4c0 0000000000000008 B zend_ce_arithmetic_error
000000000072b478 0000000000000008 B zend_ce_arrayaccess
000000000072b4f0 0000000000000008 B zend_ce_closure
000000000072b490 0000000000000008 B zend_ce_compile_error
000000000072b488 0000000000000008 B zend_ce_countable
000000000072b498 0000000000000008 B zend_ce_division_by_zero_error
000000000072b4d0 0000000000000008 B zend_ce_error
000000000072b4e0 0000000000000008 B zend_ce_error_exception
000000000072b4b0 0000000000000008 B zend_ce_exception
000000000072c968 0000000000000008 B zend_ce_generator
000000000072b470 0000000000000008 B zend_ce_iterator
000000000072b4b8 0000000000000008 B zend_ce_parse_error
000000000072b480 0000000000000008 B zend_ce_serializable
000000000072b4a0 0000000000000008 B zend_ce_throwable
000000000072b460 0000000000000008 B zend_ce_traversable
000000000072b4d8 0000000000000008 B zend_ce_type_error
0000000000290820 0000000000000008 t zend_class_add_ref
000000000072aac0 0000000000000008 B zend_compile_file
000000000072acf8 0000000000000008 B zend_compile_string
0000000000726628 0000000000000008 B zend_empty_string
000000000072b398 0000000000000008 B zend_error_cb
00000000002be0c0 0000000000000008 T zend_exception_get_default
000000000072b340 0000000000000008 B zend_execute_ex
000000000072b348 0000000000000008 B zend_execute_internal
000000000072b350 0000000000000008 B zend_fopen
00000000002c4ad0 0000000000000008 T zend_get_closure_method_def
0000000000278d70 0000000000000008 T zend_get_compiled_filename
0000000000726118 0000000000000008 b zend_get_configuration_directive_p
00000000002be0d0 0000000000000008 T zend_get_error_exception
000000000032acf0 0000000000000008 T zend_get_halt_op
000000000072b358 0000000000000008 B zend_getenv
0000000000726c40 0000000000000008 b zend_handlers_table
000000000072b3b0 0000000000000008 B zend_interrupt_function
0000000000278d90 0000000000000008 T zend_is_compiling
0000000000726620 0000000000000008 B zend_known_strings
0000000000726120 0000000000000008 b zend_message_dispatcher_p
0000000000277380 0000000000000008 T zend_mm_get_heap
0000000000723a70 0000000000000008 D zend_multibyte_encoding_utf16be
0000000000723a68 0000000000000008 D zend_multibyte_encoding_utf16le
0000000000723a80 0000000000000008 D zend_multibyte_encoding_utf32be
0000000000723a78 0000000000000008 D zend_multibyte_encoding_utf32le
0000000000723a60 0000000000000008 D zend_multibyte_encoding_utf8
00000000002b8280 0000000000000008 T zend_multibyte_get_script_encoding
000000000072bd00 0000000000000008 B zend_new_interned_string
000000000072b3b8 0000000000000008 B zend_on_timeout
0000000000726c80 0000000000000008 b zend_opcode_handler_funcs
0000000000726c90 0000000000000008 b zend_opcode_handlers
0000000000726108 0000000000000008 B zend_post_startup_cb
000000000072b390 0000000000000008 B zend_printf
000000000072b370 0000000000000008 b zend_printf_to_smart_str
000000000072b3c8 0000000000000008 b zend_printf_to_smart_string
000000000072b368 0000000000000008 B zend_resolve_path
0000000000278d60 0000000000000008 T zend_restore_compiled_filename
0000000000726c98 0000000000000008 b zend_spec_handlers
0000000000726110 0000000000000008 B zend_standard_class_def
000000000072b360 0000000000000008 B zend_stream_open_function
000000000072bd08 0000000000000008 B zend_string_init_interned
000000000072b4a8 0000000000000008 B zend_throw_exception_hook
000000000072b3a8 0000000000000008 B zend_ticks_function
00000000002b87a0 0000000000000008 T zend_ts_hash_compare
00000000002b8770 0000000000000008 T zend_ts_hash_merge
00000000002b8790 0000000000000008 T zend_ts_hash_sort
0000000000726130 0000000000000008 b zend_version_info
000000000072b3a0 0000000000000008 B zend_write
00000000001796e0 0000000000000008 t zif_pcntl_wifcontinued
00000000001d4810 0000000000000009 T php_copy_file
00000000001c75a0 0000000000000009 T php_get_inf
00000000001c7590 0000000000000009 T php_get_nan
0000000000233960 0000000000000009 t php_on_timeout
0000000000165e30 0000000000000009 T php_pcre2_substring_number_from_name
00000000002561a0 0000000000000009 t php_plain_files_dirstream_close
0000000000199630 0000000000000009 t spl_array_object_new
00000000001ab3e0 0000000000000009 t spl_dllist_object_new
00000000001ae5b0 0000000000000009 t spl_fixedarray_new
00000000001ad070 0000000000000009 t spl_heap_object_new
0000000000217d80 000000000000000a t OnUpdateOutputHosts
0000000000218050 000000000000000a t OnUpdateOutputTags
00000000002e4f80 000000000000000a t ZEND_FETCH_IS_SPEC_CONST_UNUSED_HANDLER
0000000000300800 000000000000000a t ZEND_FETCH_IS_SPEC_CV_UNUSED_HANDLER
00000000002e5320 000000000000000a t ZEND_FETCH_IS_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e4f40 000000000000000a t ZEND_FETCH_RW_SPEC_CONST_UNUSED_HANDLER
00000000003007c0 000000000000000a t ZEND_FETCH_RW_SPEC_CV_UNUSED_HANDLER
00000000002e52e0 000000000000000a t ZEND_FETCH_RW_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e8d30 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_CONST_CONST_HANDLER
00000000002e9520 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_CONST_UNUSED_HANDLER
00000000002e9120 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_CONST_VAR_HANDLER
00000000002ea980 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_CV_CONST_HANDLER
00000000002eb300 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_CV_UNUSED_HANDLER
00000000002eae70 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_CV_VAR_HANDLER
00000000002e99f0 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_TMPVAR_CONST_HANDLER
00000000002ea440 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e9f30 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_TMPVAR_VAR_HANDLER
00000000002e8cf0 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_CONST_CONST_HANDLER
00000000002e94e0 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_CONST_UNUSED_HANDLER
00000000002e90e0 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_CONST_VAR_HANDLER
00000000002ea940 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_CV_CONST_HANDLER
00000000002eb2c0 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_CV_UNUSED_HANDLER
00000000002eae30 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_CV_VAR_HANDLER
00000000002e99b0 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_TMPVAR_CONST_HANDLER
00000000002ea400 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e9ef0 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_TMPVAR_VAR_HANDLER
00000000002e8d20 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_CONST_CONST_HANDLER
00000000002e9510 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_CONST_UNUSED_HANDLER
00000000002e9110 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_CONST_VAR_HANDLER
00000000002ea970 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_CV_CONST_HANDLER
00000000002eb2f0 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_CV_UNUSED_HANDLER
00000000002eae60 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_CV_VAR_HANDLER
00000000002e99e0 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_TMPVAR_CONST_HANDLER
00000000002ea430 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e9f20 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_TMPVAR_VAR_HANDLER
00000000002e8ce0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_CONST_CONST_HANDLER
00000000002e94d0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_CONST_UNUSED_HANDLER
00000000002e90d0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_CONST_VAR_HANDLER
00000000002ea930 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_CV_CONST_HANDLER
00000000002eb2b0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_CV_UNUSED_HANDLER
00000000002eae20 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_CV_VAR_HANDLER
00000000002e99a0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_TMPVAR_CONST_HANDLER
00000000002ea3f0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e9ee0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_TMPVAR_VAR_HANDLER
00000000002e4f70 000000000000000a t ZEND_FETCH_UNSET_SPEC_CONST_UNUSED_HANDLER
00000000003007f0 000000000000000a t ZEND_FETCH_UNSET_SPEC_CV_UNUSED_HANDLER
00000000002e5310 000000000000000a t ZEND_FETCH_UNSET_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e4f30 000000000000000a t ZEND_FETCH_W_SPEC_CONST_UNUSED_HANDLER
00000000003007b0 000000000000000a t ZEND_FETCH_W_SPEC_CV_UNUSED_HANDLER
00000000002e52d0 000000000000000a t ZEND_FETCH_W_SPEC_TMPVAR_UNUSED_HANDLER
00000000003185b0 000000000000000a t ZEND_POST_INC_OBJ_SPEC_CV_CONST_HANDLER
00000000003189a0 000000000000000a t ZEND_POST_INC_OBJ_SPEC_CV_CV_HANDLER
0000000000318790 000000000000000a t ZEND_POST_INC_OBJ_SPEC_CV_TMPVAR_HANDLER
0000000000317a10 000000000000000a t ZEND_POST_INC_OBJ_SPEC_UNUSED_CONST_HANDLER
0000000000317d60 000000000000000a t ZEND_POST_INC_OBJ_SPEC_UNUSED_CV_HANDLER
0000000000317bc0 000000000000000a t ZEND_POST_INC_OBJ_SPEC_UNUSED_TMPVAR_HANDLER
0000000000317f70 000000000000000a t ZEND_POST_INC_OBJ_SPEC_VAR_CONST_HANDLER
00000000003183c0 000000000000000a t ZEND_POST_INC_OBJ_SPEC_VAR_CV_HANDLER
0000000000318190 000000000000000a t ZEND_POST_INC_OBJ_SPEC_VAR_TMPVAR_HANDLER
0000000000317060 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_CV_CONST_HANDLER
0000000000317480 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_CV_CV_HANDLER
0000000000317270 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_CV_TMPVAR_HANDLER
0000000000316410 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_UNUSED_CONST_HANDLER
0000000000316790 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_UNUSED_CV_HANDLER
00000000003165d0 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_UNUSED_TMPVAR_HANDLER
00000000003169d0 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_VAR_CONST_HANDLER
0000000000316e60 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_VAR_CV_HANDLER
0000000000316c20 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_VAR_TMPVAR_HANDLER
0000000000214f20 000000000000000a t incomplete_class_unset_property
0000000000214f10 000000000000000a t incomplete_class_write_property
0000000000225e90 000000000000000a T make_sha1_digest
00000000001afad0 000000000000000a t php_array_key_compare_string_natural_case
00000000001b00f0 000000000000000a t php_array_natural_case_compare
000000000023ba40 000000000000000a T php_check_open_basedir
0000000000234960 000000000000000a t php_stream_open_for_zend
0000000000219f20 000000000000000a T php_url_scanner_reset_session_var
0000000000234000 000000000000000a t php_zend_stream_closer
0000000000191f30 000000000000000a t spl_RecursiveTreeIterator_new
0000000000205480 000000000000000a T string_natural_case_compare_function
00000000000eb790 000000000000000a t timelib_iso_day_of_week
0000000000108810 000000000000000a t timelib_timezone_identifiers_list
00000000002bd650 000000000000000a t zend_error_exception_new
00000000002a5770 000000000000000a T zend_fcall_info_args
00000000002c4ae0 000000000000000a T zend_get_closure_this_ptr
0000000000277390 000000000000000a T zend_mm_is_custom_heap
00000000002a2110 000000000000000a T zend_next_free_module
00000000002a2210 000000000000000a T zend_register_internal_interface
00000000001be680 000000000000000a t zif_array_diff_assoc
00000000001bdfe0 000000000000000a t zif_array_intersect_assoc
00000000000e8000 000000000000000a t zif_date
00000000000e77c0 000000000000000a t zif_date_sunset
00000000001cb4c0 000000000000000a t zif_getdir
00000000001e5610 000000000000000a t zif_getimagesize
00000000001f1480 000000000000000a t zif_gettimeofday
00000000000e9240 000000000000000a t zif_gmmktime
00000000000e96c0 000000000000000a t zif_gmstrftime
0000000000203750 000000000000000a t zif_hebrevc
00000000001e2370 000000000000000a t zif_htmlentities
00000000002b38e0 000000000000000a t zif_is_subclass_of
00000000001cf3e0 000000000000000a t zif_passthru
00000000001786b0 000000000000000a t zif_pcntl_sigwaitinfo
00000000001dd910 000000000000000a t zif_pfsockopen
000000000016f420 000000000000000a t zif_preg_filter
000000000016e010 000000000000000a t zif_preg_match_all
0000000000203720 000000000000000a t zif_str_replace
00000000001f8080 000000000000000a t zif_strcspn
00000000002057c0 000000000000000a t zif_strnatcasecmp
00000000001cf3d0 000000000000000a t zif_system
00000000001827b0 000000000000000a t zim_reflection_method_invoke
0000000000183bc0 000000000000000a t zim_reflection_object___construct
00000000001a6900 000000000000000a t zim_spl_FilesystemIterator___construct
00000000001a6920 000000000000000a t zim_spl_GlobIterator___construct
00000000001a6910 000000000000000a t zim_spl_RecursiveDirectoryIterator___construct
000000000023b3e0 000000000000000b T expand_filepath_ex
000000000032fb30 000000000000000b t php_cli_server_sigint_handler
00000000001e1bb0 000000000000000b T php_escape_html_entities
000000000011b4d0 000000000000000b T php_pcre2_set_callout
000000000011b4c0 000000000000000b T php_pcre2_set_compile_recursion_guard
000000000025bab0 000000000000000b t php_sockop_stat
0000000000219ea0 000000000000000b T php_url_scanner_add_session_var
0000000000299d50 000000000000000b T zend_stack_is_empty
00000000001d8dc0 000000000000000b t zif_chgrp
00000000001d8e00 000000000000000b t zif_chown
00000000001b3e50 000000000000000b t zif_natsort
0000000000233950 000000000000000c t OnChangeMailForceExtra
0000000000303970 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_CONST_DIM_HANDLER
00000000002d8950 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_CONST_HANDLER
0000000000312a50 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_CONST_OBJ_HANDLER
0000000000304140 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_CV_DIM_HANDLER
00000000002fcff0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_CV_HANDLER
0000000000313040 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_CV_OBJ_HANDLER
0000000000303d70 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d30 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_TMPVAR_HANDLER
0000000000312d50 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d560 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_UNUSED_DIM_HANDLER
00000000003118c0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311de0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311b50 000000000000000c t ZEND_ASSIGN_ADD_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302d50 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_CONST_DIM_HANDLER
00000000002d99e0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_CONST_HANDLER
00000000003120f0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_CONST_OBJ_HANDLER
00000000003035b0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_CV_DIM_HANDLER
00000000002fd820 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_CV_HANDLER
0000000000312760 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_CV_OBJ_HANDLER
00000000003031a0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9bb0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_TMPVAR_HANDLER
0000000000312420 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cf90 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_UNUSED_DIM_HANDLER
0000000000303a00 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_CONST_DIM_HANDLER
00000000002d89e0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_CONST_HANDLER
0000000000312ae0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_CONST_OBJ_HANDLER
00000000003041d0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_CV_DIM_HANDLER
00000000002fd080 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_CV_HANDLER
00000000003130d0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_CV_OBJ_HANDLER
0000000000303e00 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9dc0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_TMPVAR_HANDLER
0000000000312de0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d5f0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311950 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e70 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311be0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302de0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a70 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_CONST_HANDLER
0000000000312180 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303640 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_CV_DIM_HANDLER
00000000002fd8b0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_CV_HANDLER
00000000003127f0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_CV_OBJ_HANDLER
0000000000303230 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c40 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_TMPVAR_HANDLER
00000000003124b0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030d020 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_UNUSED_DIM_HANDLER
00000000003039f0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_CONST_DIM_HANDLER
00000000002d89d0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_CONST_HANDLER
0000000000312ad0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_CONST_OBJ_HANDLER
00000000003041c0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_CV_DIM_HANDLER
00000000002fd070 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_CV_HANDLER
00000000003130c0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_CV_OBJ_HANDLER
0000000000303df0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9db0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_TMPVAR_HANDLER
0000000000312dd0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d5e0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311940 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e60 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311bd0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302dd0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a60 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_CONST_HANDLER
0000000000312170 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303630 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_CV_DIM_HANDLER
00000000002fd8a0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_CV_HANDLER
00000000003127e0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_CV_OBJ_HANDLER
0000000000303220 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c30 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_TMPVAR_HANDLER
00000000003124a0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030d010 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_UNUSED_DIM_HANDLER
0000000000303a10 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_CONST_DIM_HANDLER
00000000002d89f0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_CONST_HANDLER
0000000000312af0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_CONST_OBJ_HANDLER
00000000003041e0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_CV_DIM_HANDLER
00000000002fd090 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_CV_HANDLER
00000000003130e0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_CV_OBJ_HANDLER
0000000000303e10 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9dd0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_TMPVAR_HANDLER
0000000000312df0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d600 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311960 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e80 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311bf0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302df0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a80 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_CONST_HANDLER
0000000000312190 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303650 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_CV_DIM_HANDLER
00000000002fd8c0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_CV_HANDLER
0000000000312800 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_CV_OBJ_HANDLER
0000000000303240 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c50 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_TMPVAR_HANDLER
00000000003124c0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030d030 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_UNUSED_DIM_HANDLER
00000000003039e0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_CONST_DIM_HANDLER
00000000002d89c0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_CONST_HANDLER
0000000000312ac0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_CONST_OBJ_HANDLER
00000000003041b0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_CV_DIM_HANDLER
00000000002fd060 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_CV_HANDLER
00000000003130b0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_CV_OBJ_HANDLER
0000000000303de0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9da0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_TMPVAR_HANDLER
0000000000312dc0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d5d0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311930 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e50 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311bc0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302dc0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a50 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_CONST_HANDLER
0000000000312160 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303620 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_CV_DIM_HANDLER
00000000002fd890 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_CV_HANDLER
00000000003127d0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_CV_OBJ_HANDLER
0000000000303210 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c20 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_TMPVAR_HANDLER
0000000000312490 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030d000 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_UNUSED_DIM_HANDLER
00000000003039a0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_CONST_DIM_HANDLER
00000000002d8980 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_CONST_HANDLER
0000000000312a80 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_CONST_OBJ_HANDLER
0000000000304170 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_CV_DIM_HANDLER
00000000002fd020 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_CV_HANDLER
0000000000313070 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_CV_OBJ_HANDLER
0000000000303da0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d60 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_TMPVAR_HANDLER
0000000000312d80 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d590 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_UNUSED_DIM_HANDLER
00000000003118f0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e10 000000000000000c t ZEND_ASSIGN_DIV_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311b80 000000000000000c t ZEND_ASSIGN_DIV_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302d80 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a10 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_CONST_HANDLER
0000000000312120 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_CONST_OBJ_HANDLER
00000000003035e0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_CV_DIM_HANDLER
00000000002fd850 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_CV_HANDLER
0000000000312790 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_CV_OBJ_HANDLER
00000000003031d0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9be0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_TMPVAR_HANDLER
0000000000312450 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cfc0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_UNUSED_DIM_HANDLER
00000000003039b0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_CONST_DIM_HANDLER
00000000002d8990 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_CONST_HANDLER
0000000000312a90 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_CONST_OBJ_HANDLER
0000000000304180 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_CV_DIM_HANDLER
00000000002fd030 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_CV_HANDLER
0000000000313080 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_CV_OBJ_HANDLER
0000000000303db0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d70 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_TMPVAR_HANDLER
0000000000312d90 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d5a0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311900 000000000000000c t ZEND_ASSIGN_MOD_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e20 000000000000000c t ZEND_ASSIGN_MOD_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311b90 000000000000000c t ZEND_ASSIGN_MOD_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302d90 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a20 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_CONST_HANDLER
0000000000312130 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_CONST_OBJ_HANDLER
00000000003035f0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_CV_DIM_HANDLER
00000000002fd860 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_CV_HANDLER
00000000003127a0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_CV_OBJ_HANDLER
00000000003031e0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9bf0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_TMPVAR_HANDLER
0000000000312460 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cfd0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_UNUSED_DIM_HANDLER
0000000000303990 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_CONST_DIM_HANDLER
00000000002d8970 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_CONST_HANDLER
0000000000312a70 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_CONST_OBJ_HANDLER
0000000000304160 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_CV_DIM_HANDLER
00000000002fd010 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_CV_HANDLER
0000000000313060 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_CV_OBJ_HANDLER
0000000000303d90 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d50 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_TMPVAR_HANDLER
0000000000312d70 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d580 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_UNUSED_DIM_HANDLER
00000000003118e0 000000000000000c t ZEND_ASSIGN_MUL_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e00 000000000000000c t ZEND_ASSIGN_MUL_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311b70 000000000000000c t ZEND_ASSIGN_MUL_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302d70 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a00 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_CONST_HANDLER
0000000000312110 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_CONST_OBJ_HANDLER
00000000003035d0 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_CV_DIM_HANDLER
00000000002fd840 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_CV_HANDLER
0000000000312780 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_CV_OBJ_HANDLER
00000000003031c0 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9bd0 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_TMPVAR_HANDLER
0000000000312440 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cfb0 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_UNUSED_DIM_HANDLER
0000000000303a20 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_CONST_DIM_HANDLER
00000000002d8a00 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_CONST_HANDLER
0000000000312b00 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_CONST_OBJ_HANDLER
00000000003041f0 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_CV_DIM_HANDLER
00000000002fd0a0 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_CV_HANDLER
00000000003130f0 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_CV_OBJ_HANDLER
0000000000303e20 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9de0 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_TMPVAR_HANDLER
0000000000312e00 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d610 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311970 000000000000000c t ZEND_ASSIGN_POW_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e90 000000000000000c t ZEND_ASSIGN_POW_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311c00 000000000000000c t ZEND_ASSIGN_POW_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302e00 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a90 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_CONST_HANDLER
00000000003121a0 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303660 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_CV_DIM_HANDLER
00000000002fd8d0 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_CV_HANDLER
0000000000312810 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_CV_OBJ_HANDLER
0000000000303250 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c60 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_TMPVAR_HANDLER
00000000003124d0 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030d040 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_UNUSED_DIM_HANDLER
00000000003039c0 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_CONST_DIM_HANDLER
00000000002d89a0 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_CONST_HANDLER
0000000000312aa0 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_CONST_OBJ_HANDLER
0000000000304190 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_CV_DIM_HANDLER
00000000002fd040 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_CV_HANDLER
0000000000313090 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_CV_OBJ_HANDLER
0000000000303dc0 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d80 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_TMPVAR_HANDLER
0000000000312da0 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d5b0 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311910 000000000000000c t ZEND_ASSIGN_SL_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e30 000000000000000c t ZEND_ASSIGN_SL_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311ba0 000000000000000c t ZEND_ASSIGN_SL_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302da0 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a30 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_CONST_HANDLER
0000000000312140 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303600 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_CV_DIM_HANDLER
00000000002fd870 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_CV_HANDLER
00000000003127b0 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_CV_OBJ_HANDLER
00000000003031f0 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c00 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_TMPVAR_HANDLER
0000000000312470 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cfe0 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_UNUSED_DIM_HANDLER
00000000003039d0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_CONST_DIM_HANDLER
00000000002d89b0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_CONST_HANDLER
0000000000312ab0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_CONST_OBJ_HANDLER
00000000003041a0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_CV_DIM_HANDLER
00000000002fd050 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_CV_HANDLER
00000000003130a0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_CV_OBJ_HANDLER
0000000000303dd0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d90 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_TMPVAR_HANDLER
0000000000312db0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d5c0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311920 000000000000000c t ZEND_ASSIGN_SR_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e40 000000000000000c t ZEND_ASSIGN_SR_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311bb0 000000000000000c t ZEND_ASSIGN_SR_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302db0 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a40 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_CONST_HANDLER
0000000000312150 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303610 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_CV_DIM_HANDLER
00000000002fd880 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_CV_HANDLER
00000000003127c0 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_CV_OBJ_HANDLER
0000000000303200 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c10 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_TMPVAR_HANDLER
0000000000312480 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cff0 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_UNUSED_DIM_HANDLER
0000000000303980 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_CONST_DIM_HANDLER
00000000002d8960 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_CONST_HANDLER
0000000000312a60 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_CONST_OBJ_HANDLER
0000000000304150 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_CV_DIM_HANDLER
00000000002fd000 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_CV_HANDLER
0000000000313050 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_CV_OBJ_HANDLER
0000000000303d80 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d40 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_TMPVAR_HANDLER
0000000000312d60 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d570 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_UNUSED_DIM_HANDLER
00000000003118d0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311df0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311b60 000000000000000c t ZEND_ASSIGN_SUB_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302d60 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_CONST_DIM_HANDLER
00000000002d99f0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_CONST_HANDLER
0000000000312100 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_CONST_OBJ_HANDLER
00000000003035c0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_CV_DIM_HANDLER
00000000002fd830 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_CV_HANDLER
0000000000312770 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_CV_OBJ_HANDLER
00000000003031b0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9bc0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_TMPVAR_HANDLER
0000000000312430 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cfa0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_UNUSED_DIM_HANDLER
0000000000294c30 000000000000000c T convert_scalar_to_number
00000000004134f0 000000000000000c r flock_values
00000000007278c0 000000000000000c B json_globals
0000000000725a50 000000000000000c b lcg_globals
0000000000440e18 000000000000000c r p05.9028
0000000000245860 000000000000000c t php_deactivate_ticks
0000000000170f70 000000000000000c T php_json_encode
00000000002342d0 000000000000000c t php_resolve_path_for_zend
0000000000245870 000000000000000c t php_shutdown_ticks
0000000000419328 000000000000000c R php_sig_jp2
00000000003e8ee0 000000000000000c r posspropstab
000000000023d9f0 000000000000000c T sapi_shutdown
000000000042c7d0 000000000000000c r shutdown_how.14403
00000000002cbb60 000000000000000c T virtual_filepath
00000000002b0950 000000000000000c t zend_close_rsrc_list
00000000002b0b00 000000000000000c t zend_destroy_rsrc_list_dtors
00000000002c6180 000000000000000c T zend_interned_strings_deactivate
000000000028cd10 000000000000000c T zend_is_executing
000000000028dfb0 000000000000000c T zend_lookup_class
00000000002b8580 000000000000000c T zend_ts_hash_clean
0000000000176c00 000000000000000c t zm_globals_ctor_pcntl
0000000000217d90 000000000000000d t OnUpdateSessionHosts
0000000000218060 000000000000000d t OnUpdateSessionTags
00000000000d6ddc 000000000000000d t ZEND_PRE_DEC_LONG_NO_OVERFLOW_SPEC_TMPVARCV_RETVAL_UNUSED_HANDLER
00000000000d6cb6 000000000000000d t ZEND_PRE_INC_LONG_NO_OVERFLOW_SPEC_TMPVARCV_RETVAL_UNUSED_HANDLER
000000000014d390 000000000000000d t _pcre2_jit_get_size_8
00000000001af570 000000000000000d t array_bucket_p_sawp
000000000028bef0 000000000000000d t clean_non_persistent_class_full
000000000028bee0 000000000000000d t clean_non_persistent_function_full
000000000023a3d0 000000000000000d T php_printf_to_smart_str
00000000001a97f0 000000000000000d t spl_dllist_it_valid
0000000000438ce0 000000000000000d r yydefgoto
0000000000438cf0 000000000000000d r yypgoto
00000000002c41e0 000000000000000d t zend_closure_compare_objects
000000000028f700 000000000000000d t zend_llist_swap
00000000001be040 000000000000000d t zif_array_diff_key
00000000001bdf70 000000000000000d t zif_array_intersect_key
00000000001be6b0 000000000000000d t zif_array_udiff_assoc
00000000001be010 000000000000000d t zif_array_uintersect_assoc
00000000001786c0 000000000000000d t zif_pcntl_sigtimedwait
000000000022f900 000000000000000d t zif_stream_filter_prepend
00000000001e8ac0 000000000000000d t zm_startup_lcg
0000000000232cb0 000000000000000d t zm_startup_random
000000000024ede0 000000000000000e t _php_stream_free_persistent
00000000000dce5c 000000000000000e t is_null_constant
00000000001af700 000000000000000e t php_array_reverse_key_compare
00000000001aff90 000000000000000e t php_array_reverse_key_compare_numeric
00000000001afce0 000000000000000e t php_array_reverse_key_compare_string
00000000001afed0 000000000000000e t php_array_reverse_key_compare_string_case
00000000001af8c0 000000000000000e t php_array_reverse_key_compare_string_locale
0000000000244930 000000000000000e T php_default_input_filter
000000000032fa90 000000000000000e t php_http_method_str
0000000000245820 000000000000000e t php_tick_iterator
0000000000277280 000000000000000e T shutdown_memory_manager
000000000018e850 000000000000000e T spl_instantiate
00000000001ac340 000000000000000e t spl_ptr_heap_zval_ctor
0000000000252e50 000000000000000e t stream_cookie_closer
000000000044c570 000000000000000e r template.16803
00000000003eaf58 000000000000000e r toptable1
00000000003eaf48 000000000000000e r toptable2
00000000002739b0 000000000000000e T zend_mm_gc
000000000029bea0 000000000000000e t zend_register_standard_ini_entries
000000000027a420 000000000000000e t zend_resolve_function_name
00000000001d8dd0 000000000000000e t zif_lchgrp
00000000001b3e60 000000000000000e t zif_natcasesort
00000000002274f0 000000000000000e t zif_stream_bucket_prepend
00000000001b4450 000000000000000e t zif_uasort
00000000001b4460 000000000000000e t zif_uksort
0000000000185e00 000000000000000e t zim_reflection_class_constant_isPrivate
0000000000185e10 000000000000000e t zim_reflection_class_constant_isProtected
0000000000185df0 000000000000000e t zim_reflection_class_constant_isPublic
00000000001856c0 000000000000000e t zim_reflection_class_isAbstract
00000000001856b0 000000000000000e t zim_reflection_class_isFinal
0000000000185690 000000000000000e t zim_reflection_class_isInterface
00000000001856a0 000000000000000e t zim_reflection_class_isTrait
0000000000186200 000000000000000e t zim_reflection_function_isDeprecated
0000000000186210 000000000000000e t zim_reflection_function_isGenerator
0000000000186220 000000000000000e t zim_reflection_function_isVariadic
00000000001861b0 000000000000000e t zim_reflection_method_isAbstract
00000000001861a0 000000000000000e t zim_reflection_method_isFinal
00000000001861d0 000000000000000e t zim_reflection_method_isPrivate
00000000001861e0 000000000000000e t zim_reflection_method_isProtected
00000000001861c0 000000000000000e t zim_reflection_method_isPublic
00000000001861f0 000000000000000e t zim_reflection_method_isStatic
0000000000185470 000000000000000e t zim_reflection_property_isDefault
0000000000185440 000000000000000e t zim_reflection_property_isPrivate
0000000000185450 000000000000000e t zim_reflection_property_isProtected
0000000000185430 000000000000000e t zim_reflection_property_isPublic
0000000000185460 000000000000000e t zim_reflection_property_isStatic
0000000000194970 000000000000000e t zim_spl_RecursiveIteratorIterator___construct
00000000001cb290 000000000000000e t zm_activate_dir
0000000000209220 000000000000000e t zm_activate_syslog
0000000000253ca0 000000000000000f T _php_stream_memory_get_buffer
000000000023d6a0 000000000000000f T cfg_get_entry_ex
00000000002b0300 000000000000000f t clean_module_resource
000000000028bed0 000000000000000f t clean_non_persistent_constant_full
00000000000de880 000000000000000f t date_period_it_current_key
000000000044c560 000000000000000f r epilogue_template.16806
000000000023b3f0 000000000000000f T expand_filepath
00000000002c3910 000000000000000f T gc_protect
000000000044c740 000000000000000f r php_cli_server_request_error_unexpected_eof
000000000023c330 000000000000000f t php_load_php_extension_cb
000000000014d320 000000000000000f T php_pcre2_jit_stack_assign
00000000002529d0 000000000000000f T php_stream_notification_alloc
00000000003ea1a8 000000000000000f r posix_name_lengths
00000000001a9830 000000000000000f t spl_dllist_it_get_current_key
00000000001ab3f0 000000000000000f t spl_ptr_llist_zval_ctor
00000000001099d0 000000000000000f t timelib_rel_time_ctor
00000000001098e0 000000000000000f t timelib_time_ctor
0000000000109ad0 000000000000000f t timelib_time_offset_ctor
00000000002c5750 000000000000000f t zend_closure_bind_var
000000000028eb30 000000000000000f T zend_delete_global_variable
00000000002c61a0 000000000000000f T zend_interned_strings_set_permanent_storage_copy_handlers
00000000002c6190 000000000000000f T zend_interned_strings_set_request_storage_handlers
0000000000277370 000000000000000f T zend_mm_set_heap
00000000002b6740 000000000000000f t zend_remove_ini_entries
0000000000441620 0000000000000010 r __func__.9779
00000000000c93ab 0000000000000010 t _class_check_flag.isra.53.part.54
00000000000c93ab 0000000000000010 t _class_constant_check_flag.isra.41.part.42
00000000000c93ab 0000000000000010 t _function_check_flag.isra.34.part.35
0000000000256980 0000000000000010 T _php_stream_fopen_tmpfile
00000000000c93ab 0000000000000010 t _property_check_flag.isra.59.part.60
0000000000725ad0 0000000000000010 b big_endian_long_map
0000000000408890 0000000000000010 r charmap.13993
00000000003ea220 0000000000000010 r chartypeoffset
00000000000de940 0000000000000010 t date_period_write_property
000000000069ef80 0000000000000010 d default_format_config
00000000006bb7c0 0000000000000010 d ent_ht_be_apos
00000000006bbfa0 0000000000000010 d ent_ht_be_noapos
00000000006bc780 0000000000000010 d ent_ht_html4
00000000006c90c0 0000000000000010 d ent_ht_html5
0000000000725b10 0000000000000010 b int_map
0000000000725ac0 0000000000000010 b little_endian_long_map
0000000000725ae0 0000000000000010 b machine_endian_long_map
0000000000726c00 0000000000000010 b main_cwd_state
00000000002a20a0 0000000000000010 t module_registry_unload_temp
00000000001b01c0 0000000000000010 t php_array_reverse_data_compare
00000000001afac0 0000000000000010 t php_array_reverse_key_compare_string_natural
00000000001b0100 0000000000000010 t php_array_reverse_natural_compare
000000000023a3c0 0000000000000010 T php_printf_to_smart_string
00000000001f4a80 0000000000000010 T php_rand
0000000000725b30 0000000000000010 b prev_tv
0000000000299f60 0000000000000010 T rc_dtor_func
000000000019ce50 0000000000000010 t spl_array_unset_dimension
0000000000408b30 0000000000000010 r yydefgoto
0000000000408b40 0000000000000010 r yypgoto
00000000000d9d78 0000000000000010 t zend_access_undefined_propery_in_overloaded_object
00000000002c45d0 0000000000000010 t zend_closure_unset_property
00000000002c4620 0000000000000010 t zend_closure_write_property
000000000032b4f0 0000000000000010 T zend_get_user_opcode_handler
00000000002b8920 0000000000000010 t zend_stream_stdio_reader
00000000000d9d68 0000000000000010 t zend_use_new_element_for_string
00000000000d9d13 0000000000000010 t zend_use_object_as_array
000000000072b380 0000000000000010 B zend_uv
000000000022f910 0000000000000010 t zif_stream_filter_append
00000000000cdaa8 0000000000000010 t zim_Closure___construct
00000000000cd8da 0000000000000010 t zim_exception___clone
00000000000c93ab 0000000000000010 t zim_reflection_class_constant_getDeclaringClass.part.94
00000000000c93ab 0000000000000010 t zim_reflection_class_constant_getDocComment.part.44
00000000000c93ab 0000000000000010 t zim_reflection_class_constant_getModifiers.part.43
00000000000c93ab 0000000000000010 t zim_reflection_class_getConstructor.part.77
00000000000c93ab 0000000000000010 t zim_reflection_class_getEndLine.part.50
00000000000c93ab 0000000000000010 t zim_reflection_class_getExtension.part.68
00000000000c93ab 0000000000000010 t zim_reflection_class_getModifiers.part.55
00000000000c93ab 0000000000000010 t zim_reflection_class_getParentClass.part.95
00000000000c93ab 0000000000000010 t zim_reflection_class_getStartLine.part.49
00000000000c93ab 0000000000000010 t zim_reflection_class_getStaticProperties.part.80
00000000000c93ab 0000000000000010 t zim_reflection_class_isAnonymous.part.47
00000000000c93ab 0000000000000010 t zim_reflection_class_isInstantiable.part.52
00000000000c93ab 0000000000000010 t zim_reflection_class_isInternal.part.45
00000000000c93ab 0000000000000010 t zim_reflection_class_isUserDefined.part.46
00000000000c93ab 0000000000000010 t zim_reflection_class_newInstanceWithoutConstructor.part.57
00000000000c93ab 0000000000000010 t zim_reflection_extension_getClassNames.part.89
00000000000c93ab 0000000000000010 t zim_reflection_extension_getClasses.part.88
00000000000c93ab 0000000000000010 t zim_reflection_extension_getConstants.part.86
00000000000c93ab 0000000000000010 t zim_reflection_extension_getINIEntries.part.87
00000000000c93ab 0000000000000010 t zim_reflection_extension_info.part.90
00000000000c93ab 0000000000000010 t zim_reflection_extension_isPersistent.part.63
00000000000c93ab 0000000000000010 t zim_reflection_extension_isTemporary.part.64
00000000000c93ab 0000000000000010 t zim_reflection_function_getClosureScopeClass.part.91
00000000000c93ab 0000000000000010 t zim_reflection_function_getEndLine.part.16
00000000000c93ab 0000000000000010 t zim_reflection_function_getExtension.part.67
00000000000c93ab 0000000000000010 t zim_reflection_function_getNumberOfParameters.part.19
00000000000c93ab 0000000000000010 t zim_reflection_function_getNumberOfRequiredParameters.part.20
00000000000c93ab 0000000000000010 t zim_reflection_function_getStartLine.part.15
00000000000c93ab 0000000000000010 t zim_reflection_function_hasReturnType.part.36
00000000000c93ab 0000000000000010 t zim_reflection_function_isClosure.part.10
00000000000c93ab 0000000000000010 t zim_reflection_function_isDisabled.part.13
00000000000c93ab 0000000000000010 t zim_reflection_function_isInternal.part.11
00000000000c93ab 0000000000000010 t zim_reflection_function_isUserDefined.part.12
00000000000c93ab 0000000000000010 t zim_reflection_function_returnsReference.part.18
00000000000c93ab 0000000000000010 t zim_reflection_method_getDeclaringClass.part.93
00000000000c93ab 0000000000000010 t zim_reflection_method_getModifiers.part.40
00000000000c93ab 0000000000000010 t zim_reflection_method_isConstructor.part.38
00000000000c93ab 0000000000000010 t zim_reflection_method_isDestructor.part.39
00000000000c93ab 0000000000000010 t zim_reflection_named_type_getName.part.71
00000000000c93ab 0000000000000010 t zim_reflection_parameter_allowsNull.part.24
00000000000c93ab 0000000000000010 t zim_reflection_parameter_canBePassedByValue.part.26
00000000000c93ab 0000000000000010 t zim_reflection_parameter_getDeclaringClass.part.92
00000000000c93ab 0000000000000010 t zim_reflection_parameter_getPosition.part.27
00000000000c93ab 0000000000000010 t zim_reflection_parameter_hasType.part.21
00000000000c93ab 0000000000000010 t zim_reflection_parameter_isArray.part.22
00000000000c93ab 0000000000000010 t zim_reflection_parameter_isCallable.part.23
00000000000c93ab 0000000000000010 t zim_reflection_parameter_isOptional.part.28
00000000000c93ab 0000000000000010 t zim_reflection_parameter_isPassedByReference.part.25
00000000000c93ab 0000000000000010 t zim_reflection_parameter_isVariadic.part.31
00000000000c93ab 0000000000000010 t zim_reflection_property_getDocComment.part.62
00000000000c93ab 0000000000000010 t zim_reflection_property_getModifiers.part.61
00000000000c93ab 0000000000000010 t zim_reflection_type___toString.part.70
00000000000c93ab 0000000000000010 t zim_reflection_type_allowsNull.part.32
00000000000c93ab 0000000000000010 t zim_reflection_type_isBuiltin.part.33
0000000000413970 0000000000000011 r HEXCHARS
00000000000dc9f1 0000000000000011 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CONST_CONST_HANDLER
00000000000db11e 0000000000000011 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_CONST_CONST_HANDLER
00000000000dca7d 0000000000000011 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_CONST_CV_HANDLER
00000000000db16a 0000000000000011 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_CONST_TMPVAR_HANDLER
00000000004088a0 0000000000000011 r digits
0000000000413990 0000000000000011 r hexchars
0000000000421680 0000000000000011 r hexchars
0000000000420930 0000000000000011 r hexconvtab
000000000041f630 0000000000000011 r hexits.14604
0000000000428ce0 0000000000000011 r low_digits.13771
000000000032ba60 0000000000000011 T php_register_internal_extensions
00000000004254a0 0000000000000011 r qp_digits.15943
00000000003ee730 0000000000000011 r reg_lmap
00000000003ee750 0000000000000011 r reg_map
000000000019e3d0 0000000000000011 t spl_filesystem_dir_it_valid
0000000000228300 0000000000000011 t strfilter_rot13_create
00000000002282c0 0000000000000011 t strfilter_tolower_create
00000000002282e0 0000000000000011 t strfilter_toupper_create
0000000000428d00 0000000000000011 r upper_digits.13772
00000000002b0650 0000000000000011 T zend_register_resource
000000000027a430 0000000000000011 t zend_resolve_const_name
00000000002b8710 0000000000000011 T zend_ts_hash_exists
00000000002b8730 0000000000000011 T zend_ts_hash_index_exists
0000000000227500 0000000000000011 t zif_stream_bucket_append
00000000001b4430 0000000000000011 t zif_usort
0000000000194980 0000000000000011 t zim_spl_RecursiveTreeIterator___construct
00000000002f8900 0000000000000012 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CV_CONST_HANDLER
00000000002f8a10 0000000000000012 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CV_CV_HANDLER
00000000002f8970 0000000000000012 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CV_TMPVAR_HANDLER
00000000002f89c0 0000000000000012 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CV_UNUSED_HANDLER
00000000002e4f50 0000000000000012 t ZEND_FETCH_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER
00000000003007d0 0000000000000012 t ZEND_FETCH_FUNC_ARG_SPEC_CV_UNUSED_HANDLER
00000000002e52f0 0000000000000012 t ZEND_FETCH_FUNC_ARG_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e8d00 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_CONST_CONST_HANDLER
00000000002e94f0 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER
00000000002e90f0 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_CONST_VAR_HANDLER
00000000002ea950 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_CV_CONST_HANDLER
00000000002eb2d0 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_CV_UNUSED_HANDLER
00000000002eae40 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_CV_VAR_HANDLER
00000000002e99c0 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_TMPVAR_CONST_HANDLER
00000000002ea410 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e9f00 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_TMPVAR_VAR_HANDLER
00000000000dca02 0000000000000012 t _get_zval_cv_lookup_BP_VAR_R.isra.6
00000000000dca02 0000000000000012 t _get_zval_cv_lookup_BP_VAR_UNSET.isra.8
000000000023d6b0 0000000000000012 T cfg_get_entry
000000000028aaf0 0000000000000012 t clean_module_constant
00000000002978b0 0000000000000012 T convert_to_long
00000000002918b0 0000000000000012 T convert_to_null
00000000000e6790 0000000000000012 t date_object_get_gc
00000000000e6770 0000000000000012 t date_object_get_gc_interval
00000000000de950 0000000000000012 t date_object_get_gc_period
00000000000e67b0 0000000000000012 t date_object_get_gc_timezone
0000000000274820 0000000000000012 T is_zend_mm
0000000000226650 0000000000000012 t php_bucket_dtor
00000000001e3610 0000000000000012 t php_ifd_get32s
000000000011b3e0 0000000000000012 T php_pcre2_compile_context_free
000000000011b420 0000000000000012 T php_pcre2_convert_context_free
000000000011b3c0 0000000000000012 T php_pcre2_general_context_free
000000000011b400 0000000000000012 T php_pcre2_match_context_free
0000000000160f40 0000000000000012 T php_pcre2_match_data_free
000000000016c790 0000000000000012 T php_pcre_free_match_data
000000000020a4b0 0000000000000012 T php_replace_controlchars
0000000000254800 0000000000000012 T php_stream_bucket_delref
0000000000252900 0000000000000012 T php_stream_notification_notify
000000000023f9e0 0000000000000012 T sapi_terminate_process
000000000019d330 0000000000000012 t spl_array_has_dimension
00000000001accd0 0000000000000012 t spl_heap_object_get_debug_info
00000000001accb0 0000000000000012 t spl_pqueue_object_get_debug_info
00000000001099e0 0000000000000012 t timelib_rel_time_dtor
00000000002c5730 0000000000000012 T zend_create_fake_closure
000000000032ac80 0000000000000012 T zend_deserialize_opcode_handler
000000000028be90 0000000000000012 t zend_extension_activator
000000000028beb0 0000000000000012 t zend_extension_deactivator
00000000002d8350 0000000000000012 t zend_extension_fcall_begin_handler
00000000002d8370 0000000000000012 t zend_extension_fcall_end_handler
000000000028fe50 0000000000000012 t zend_extension_op_array_ctor_handler
000000000028fe70 0000000000000012 t zend_extension_op_array_dtor_handler
000000000028fe90 0000000000000012 t zend_extension_op_array_handler
00000000002a7a10 0000000000000012 t zend_extension_shutdown
00000000002d8330 0000000000000012 t zend_extension_statement_handler
00000000002b6a60 0000000000000012 T zend_ini_dtor
00000000002a3c50 0000000000000012 T zend_is_callable
000000000029c240 0000000000000012 T zend_message_dispatcher
00000000002cf1a0 0000000000000012 t zend_property_guard_dtor
000000000029fff0 0000000000000012 T zend_startup_module_ex
0000000000176ae0 0000000000000012 t zif_pcntl_get_last_error
0000000000330060 0000000000000012 t zm_shutdown_cli_server
0000000000169d10 0000000000000012 t zm_shutdown_pcre
0000000000219f60 0000000000000012 t zm_shutdown_url_scanner_ex
00000000002b75f0 0000000000000013 T OnUpdateBool
000000000029ebe0 0000000000000013 T add_index_zval
0000000000260770 0000000000000013 t encoding_filter_intermediate_to_script
0000000000260790 0000000000000013 t encoding_filter_script_to_intermediate
000000000032be90 0000000000000013 t extension_name_cmp
000000000032beb0 0000000000000013 t module_name_cmp
00000000001e5740 0000000000000013 t module_name_cmp
00000000001afae0 0000000000000013 t php_array_reverse_key_compare_string_natural_case
00000000001b0110 0000000000000013 t php_array_reverse_natural_case_compare
00000000002423b0 0000000000000013 T php_explicit_bzero
0000000000160f20 0000000000000013 T php_pcre2_match_data_create_from_pattern
0000000000252bd0 0000000000000013 T php_stream_dirent_alphasort
000000000024f2e0 0000000000000013 T php_stream_encloses
00000000002040f0 0000000000000013 t php_tag_find
00000000001c58a0 0000000000000013 t run_user_tick_functions
0000000000198ef0 0000000000000013 t spl_array_it_dtor
000000000019dc30 0000000000000013 t spl_array_write_dimension
00000000001ada90 0000000000000013 t spl_fixedarray_it_dtor
00000000001ac2b0 0000000000000013 t spl_heap_it_dtor
000000000032fae0 0000000000000013 t status_comp
00000000000d9e68 0000000000000013 t zend_cannot_add_element
000000000027b0d0 0000000000000013 t zend_get_class_fetch_type_ast
000000000029c260 0000000000000013 T zend_get_configuration_directive
00000000000d9db5 0000000000000013 t zend_illegal_offset
00000000002cf060 0000000000000013 T zend_std_get_class_name
00000000000d9e8e 0000000000000013 t zend_unsupported_property_reference
00000000000d9e7b 0000000000000013 t zend_use_scalar_as_array
00000000001bdfa0 0000000000000013 t zif_array_intersect
00000000001c1060 0000000000000013 t zif_connection_status
00000000000dd81b 0000000000000014 t _get_zval_cv_lookup.constprop.38
0000000000726c20 0000000000000014 b cpuinfo
000000000043e420 0000000000000014 r long_min_digits
00000000004387e0 0000000000000014 r long_min_digits
000000000029c680 0000000000000014 t module_registry_unload_temp_wrapper
00000000000e96d0 0000000000000014 T php_date_instantiate
00000000002342f0 0000000000000014 t php_fopen_wrapper_for_zend
000000000042b4c0 0000000000000014 r php_output_devnull_handler_name
00000000002561b0 0000000000000014 t php_plain_files_dirstream_rewind
0000000000221700 0000000000000014 t php_stream_output_write
000000000018ff80 0000000000000014 t spl_recursive_it_move_forward
000000000018fef0 0000000000000014 t spl_recursive_it_rewind
0000000000192560 0000000000000014 t spl_recursive_it_valid
0000000000109bb0 0000000000000014 t timelib_date_to_int
00000000002c6690 0000000000000014 t zend_new_interned_string_permanent
0000000000178410 0000000000000014 t zif_pcntl_signal_dispatch
00000000001ec070 0000000000000014 t zif_pi
00000000001832a0 0000000000000014 t zim_reflection_class_constant_export
0000000000183240 0000000000000014 t zim_reflection_class_export
00000000001832c0 0000000000000014 t zim_reflection_extension_export
00000000001831e0 0000000000000014 t zim_reflection_function_export
0000000000183220 0000000000000014 t zim_reflection_method_export
0000000000183260 0000000000000014 t zim_reflection_object_export
0000000000183200 0000000000000014 t zim_reflection_parameter_export
0000000000183280 0000000000000014 t zim_reflection_property_export
00000000001832e0 0000000000000014 t zim_reflection_zend_extension_export
000000000019c8e0 0000000000000014 t zim_spl_Array_natcasesort
000000000019c8c0 0000000000000014 t zim_spl_Array_natsort
00000000002f7330 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CONST_CV_HANDLER
00000000002f72e0 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CONST_TMPVAR_HANDLER
00000000002f6060 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_TMP_CONST_HANDLER
00000000002f5a70 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_TMP_CV_HANDLER
00000000002f5dc0 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_TMP_TMPVAR_HANDLER
00000000002d9fa0 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_TMP_UNUSED_HANDLER
00000000002f8c50 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_VAR_CONST_HANDLER
00000000002f8e70 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_VAR_CV_HANDLER
00000000002f8d30 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_VAR_TMPVAR_HANDLER
00000000002f8dd0 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_VAR_UNUSED_HANDLER
00000000002feaf0 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_CV_CV_HANDLER
00000000002fe930 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_CV_TMPVAR_HANDLER
00000000002e4cb0 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_TMP_CONST_HANDLER
00000000002fe660 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_TMP_CV_HANDLER
00000000002e1520 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_TMP_TMPVAR_HANDLER
00000000002fe7c0 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_UNUSED_CV_HANDLER
00000000002e1670 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_UNUSED_TMPVAR_HANDLER
00000000002f20d0 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_VAR_CONST_HANDLER
0000000000300cf0 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_VAR_CV_HANDLER
00000000002f2540 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_VAR_TMPVAR_HANDLER
00000000002c5880 0000000000000015 t _str_dtor
0000000000214f30 0000000000000015 t incomplete_class_has_property
000000000029b1c0 0000000000000015 t module_destructor_zval
00000000001f3f40 0000000000000015 t php_getgid
00000000001f40a0 0000000000000015 T php_getlastmod
00000000001f3f20 0000000000000015 t php_getuid
0000000000174c30 0000000000000015 t php_json_scanner_init
0000000000209270 0000000000000015 T php_openlog
0000000000248550 0000000000000015 T php_output_deactivate
00000000002479c0 0000000000000015 T php_output_set_status
000000000020b150 0000000000000015 T php_url_parse
00000000002d0610 0000000000000015 T rebuild_object_properties
0000000000181350 0000000000000015 t reflection_get_gc
0000000000198f10 0000000000000015 t spl_array_get_gc
000000000019d5f0 0000000000000015 t spl_array_read_dimension
00000000000c9470 0000000000000015 t spl_fixedarray_object_unset_dimension_helper.isra.8.part.9
00000000000c9470 0000000000000015 t spl_fixedarray_object_write_dimension_helper.isra.6.part.7
00000000001ac1d0 0000000000000015 t spl_ptr_heap_zval_dtor
000000000024ef40 0000000000000015 t wrapper_list_dtor
000000000027b510 0000000000000015 t zend_do_extended_fcall_begin
000000000027b530 0000000000000015 t zend_do_extended_fcall_end
000000000027b4f0 0000000000000015 t zend_do_extended_info
00000000002c77a0 0000000000000015 t zend_generator_iterator_dtor
0000000000322160 0000000000000015 T zend_init_execute_data
00000000002b9040 0000000000000015 T zend_iterator_dtor
000000000027c4d0 0000000000000015 t zend_list_has_assign_to_self
00000000002d3d00 0000000000000015 T zend_objects_store_destroy
00000000002c6100 0000000000000015 T zend_string_hash_func
00000000001c1040 0000000000000015 t zif_connection_aborted
00000000001d8e10 0000000000000015 t zif_lchown
00000000001798b0 0000000000000015 t zim_reflection___clone
00000000000c9396 0000000000000015 t zim_reflection_generator_getExecutingFile.part.8
00000000000c9396 0000000000000015 t zim_reflection_generator_getExecutingLine.part.7
00000000000c9396 0000000000000015 t zim_reflection_generator_getThis.part.9
000000000018ebc0 0000000000000015 t zim_spl_EmptyIterator_next
0000000000194060 0000000000000015 t zim_spl_EmptyIterator_rewind
0000000000193df0 0000000000000015 t zim_spl_NoRewindIterator_rewind
00000000001940c0 0000000000000015 t zim_spl_RecursiveIteratorIterator_beginChildren
0000000000194080 0000000000000015 t zim_spl_RecursiveIteratorIterator_beginIteration
00000000001940e0 0000000000000015 t zim_spl_RecursiveIteratorIterator_endChildren
00000000001940a0 0000000000000015 t zim_spl_RecursiveIteratorIterator_endIteration
0000000000194100 0000000000000015 t zim_spl_RecursiveIteratorIterator_nextElement
000000000019ed70 0000000000000015 t zim_spl_SplFileObject_getChildren
00000000001abcd0 0000000000000015 t zim_spl_SplHeap_rewind
0000000000170640 0000000000000015 t zm_globals_ctor_json
000000000028d020 0000000000000015 T zval_update_constant_ex
00000000000d5072 0000000000000016 t ZEND_JMP_SPEC_HANDLER
00000000002543f0 0000000000000016 T _php_get_stream_filters_hash
000000000024f290 0000000000000016 T _php_stream_get_url_stream_wrappers_hash
00000000000deed0 0000000000000016 t date_object_free_storage_interval
00000000002031f0 0000000000000016 T php_addcslashes
00000000001e5720 0000000000000016 t php_info_print
0000000000174b20 0000000000000016 T php_json_parser_init
00000000001e9db0 0000000000000016 t php_mail_log_to_syslog
0000000000247a10 0000000000000016 T php_output_write_unbuffered
000000000011b450 0000000000000016 T php_pcre2_set_bsr
000000000011b480 0000000000000016 T php_pcre2_set_newline
00000000002330d0 0000000000000016 T php_random_int
0000000000252bf0 0000000000000016 T php_stream_dirent_alphasortr
000000000023f8a0 0000000000000016 T sapi_force_http_10
000000000023f880 0000000000000016 T sapi_get_fd
000000000023f8e0 0000000000000016 T sapi_get_target_gid
000000000023f8c0 0000000000000016 T sapi_get_target_uid
000000000019e400 0000000000000016 t spl_filesystem_dir_it_current_key
00000000001ab9f0 0000000000000016 t spl_heap_it_valid
00000000001080d0 0000000000000016 t timelib_parse_from_format
00000000002ce720 0000000000000016 T zend_ast_ref_destroy
000000000027ba90 0000000000000016 T zend_get_compiled_variable_name
00000000000cbafc 0000000000000016 t zend_ini_scanner_get_filename
00000000000d9d88 0000000000000016 t zend_undefined_offset
00000000001be690 0000000000000016 t zif_array_diff_uassoc
00000000001be050 0000000000000016 t zif_array_diff_ukey
00000000001bdff0 0000000000000016 t zif_array_intersect_uassoc
00000000001bdf80 0000000000000016 t zif_array_intersect_ukey
00000000001be660 0000000000000016 t zif_array_udiff
00000000001bdfc0 0000000000000016 t zif_array_uintersect
00000000002b7690 0000000000000017 T OnUpdateString
00000000000d9e03 0000000000000017 t _get_zval_cv_lookup_BP_VAR_RW
0000000000173ec0 0000000000000017 t php_json_parser_array_create
000000000042b4e0 0000000000000017 r php_output_default_handler_name
0000000000242390 0000000000000017 t php_setup_sapi_content_types
0000000000234010 0000000000000017 t php_zend_stream_mmap_closer
00000000000c9459 0000000000000017 t spl_filesystem_file_rewind.part.11
00000000001ac320 0000000000000017 t spl_heap_object_get_gc
000000000023fc20 0000000000000017 t unlink_filename
0000000000279fe0 0000000000000017 t zend_concat_names
00000000000d9d9e 0000000000000017 t zend_undefined_index
00000000000c9442 0000000000000017 t zim_spl_AppendIterator_getIteratorIndex.part.39
00000000000c9442 0000000000000017 t zim_spl_AppendIterator_next.part.43
00000000000c9442 0000000000000017 t zim_spl_AppendIterator_rewind.part.42
00000000000c9442 0000000000000017 t zim_spl_AppendIterator_valid.part.25
000000000019c840 0000000000000017 t zim_spl_Array_asort
000000000019c860 0000000000000017 t zim_spl_Array_ksort
000000000019c880 0000000000000017 t zim_spl_Array_uasort
000000000019c8a0 0000000000000017 t zim_spl_Array_uksort
00000000000c9442 0000000000000017 t zim_spl_CachingIterator_count.part.20
00000000000c9442 0000000000000017 t zim_spl_CachingIterator_getFlags.part.19
00000000000c9442 0000000000000017 t zim_spl_CachingIterator_hasNext.part.18
00000000000c9442 0000000000000017 t zim_spl_CachingIterator_next.part.38
00000000000c9442 0000000000000017 t zim_spl_CachingIterator_rewind.part.37
00000000000c9442 0000000000000017 t zim_spl_CachingIterator_valid.part.17
00000000000c9442 0000000000000017 t zim_spl_FilterIterator_next.part.32
00000000000c9442 0000000000000017 t zim_spl_FilterIterator_rewind.part.26
00000000000c9442 0000000000000017 t zim_spl_LimitIterator_getPosition.part.16
00000000000c9442 0000000000000017 t zim_spl_LimitIterator_next.part.35
00000000000c9442 0000000000000017 t zim_spl_LimitIterator_rewind.part.33
00000000000c9442 0000000000000017 t zim_spl_LimitIterator_valid.part.15
00000000000c9442 0000000000000017 t zim_spl_NoRewindIterator_key.part.23
00000000000c9442 0000000000000017 t zim_spl_NoRewindIterator_next.part.24
00000000000c9442 0000000000000017 t zim_spl_NoRewindIterator_valid.part.22
00000000000c9442 0000000000000017 t zim_spl_RecursiveCachingIterator_hasChildren.part.21
00000000000c9442 0000000000000017 t zim_spl_RecursiveIteratorIterator_callGetChildren.part.7
00000000000c9442 0000000000000017 t zim_spl_RecursiveIteratorIterator_key.part.6
00000000000c9442 0000000000000017 t zim_spl_RecursiveTreeIterator_getEntry.part.28
00000000000c9442 0000000000000017 t zim_spl_RecursiveTreeIterator_getPostfix.part.9
00000000000c9442 0000000000000017 t zim_spl_RecursiveTreeIterator_getPrefix.part.8
00000000000c9442 0000000000000017 t zim_spl_RegexIterator_getFlags.part.13
00000000000c9442 0000000000000017 t zim_spl_RegexIterator_getMode.part.12
00000000000c9442 0000000000000017 t zim_spl_RegexIterator_getPregFlags.part.14
000000000019e630 0000000000000017 t zim_spl_SplFileInfo__bad_state_ex
00000000000c9459 0000000000000017 t zim_spl_SplFileObject_eof.part.8
00000000000c9459 0000000000000017 t zim_spl_SplFileObject_fflush.part.14
00000000000c9459 0000000000000017 t zim_spl_SplFileObject_fpassthru.part.16
00000000000c9459 0000000000000017 t zim_spl_SplFileObject_ftell.part.15
00000000000c9442 0000000000000017 t zim_spl_dual_it_next.part.31
00000000000c9442 0000000000000017 t zim_spl_dual_it_rewind.part.10
00000000000c9442 0000000000000017 t zim_spl_dual_it_valid.part.11
000000000018b180 0000000000000017 t zm_globals_ctor_spl
0000000000219f40 0000000000000017 t zm_startup_url_scanner_ex
00000000003ee710 0000000000000018 r CSWTCH.486
00000000002b7670 0000000000000018 T OnUpdateReal
00000000000d68fb 0000000000000018 t ZEND_FETCH_OBJ_IS_SPEC_CONST_CONST_HANDLER
00000000004460f0 0000000000000018 r __func__.3406
00000000003f03e0 0000000000000018 r _pcre2_utf8_table1
00000000003f03c0 0000000000000018 r _pcre2_utf8_table2
00000000003f03a0 0000000000000018 r _pcre2_utf8_table3
000000000040cf80 0000000000000018 r arginfo_SplSubject_void
000000000040c420 0000000000000018 r arginfo_array_void
0000000000445dd0 0000000000000018 r arginfo_cli_get_process_title
000000000044c750 0000000000000018 r arginfo_cli_get_process_title
0000000000410680 0000000000000018 r arginfo_closelog
00000000004109a0 0000000000000018 r arginfo_connection_aborted
0000000000410980 0000000000000018 r arginfo_connection_status
00000000004407d0 0000000000000018 r arginfo_countable_count
0000000000337360 0000000000000018 r arginfo_date_default_timezone_get
0000000000337340 0000000000000018 r arginfo_date_get_last_errors
0000000000337300 0000000000000018 r arginfo_date_method_offset_get
00000000003372e0 0000000000000018 r arginfo_date_method_timestamp_get
0000000000337320 0000000000000018 r arginfo_date_method_timezone_get
000000000040d190 0000000000000018 r arginfo_dllist_void
0000000000410a00 0000000000000018 r arginfo_error_clear_last
0000000000410a20 0000000000000018 r arginfo_error_get_last
0000000000410a60 0000000000000018 r arginfo_flush
00000000004415d0 0000000000000018 r arginfo_generator_void
0000000000410a40 0000000000000018 r arginfo_get_current_user
00000000004109e0 0000000000000018 r arginfo_get_include_path
0000000000410aa0 0000000000000018 r arginfo_get_magic_quotes_gpc
0000000000410a80 0000000000000018 r arginfo_get_magic_quotes_runtime
0000000000410940 0000000000000018 r arginfo_getcwd
0000000000410920 0000000000000018 r arginfo_gethostname
0000000000410720 0000000000000018 r arginfo_getlastmod
0000000000410780 0000000000000018 r arginfo_getmygid
0000000000410740 0000000000000018 r arginfo_getmyinode
0000000000410760 0000000000000018 r arginfo_getmypid
00000000004107a0 0000000000000018 r arginfo_getmyuid
0000000000410860 0000000000000018 r arginfo_headers_list
00000000004086a0 0000000000000018 r arginfo_json_last_error
0000000000408680 0000000000000018 r arginfo_json_last_error_msg
00000000004107e0 0000000000000018 r arginfo_lcg_value
00000000004106a0 0000000000000018 r arginfo_localeconv
0000000000410700 0000000000000018 r arginfo_mt_getrandmax
0000000000410900 0000000000000018 r arginfo_net_get_interfaces
000000000044c5b0 0000000000000018 r arginfo_no_args
0000000000410be0 0000000000000018 r arginfo_ob_clean
0000000000410ba0 0000000000000018 r arginfo_ob_end_clean
0000000000410bc0 0000000000000018 r arginfo_ob_end_flush
0000000000410c00 0000000000000018 r arginfo_ob_flush
0000000000410b60 0000000000000018 r arginfo_ob_get_clean
0000000000410b40 0000000000000018 r arginfo_ob_get_contents
0000000000410b80 0000000000000018 r arginfo_ob_get_flush
0000000000410b00 0000000000000018 r arginfo_ob_get_length
0000000000410b20 0000000000000018 r arginfo_ob_get_level
0000000000410ae0 0000000000000018 r arginfo_ob_list_handlers
0000000000410ac0 0000000000000018 r arginfo_output_reset_rewrite_vars
00000000004097a0 0000000000000018 r arginfo_pcntl_void
0000000000410800 0000000000000018 r arginfo_php_ini_loaded_file
0000000000410820 0000000000000018 r arginfo_php_ini_scanned_files
0000000000410840 0000000000000018 r arginfo_php_sapi_name
00000000004252e0 0000000000000018 r arginfo_php_user_filter_onClose
0000000000425300 0000000000000018 r arginfo_php_user_filter_onCreate
00000000004107c0 0000000000000018 r arginfo_pi
0000000000408160 0000000000000018 r arginfo_preg_last_error
0000000000410880 0000000000000018 r arginfo_realpath_cache_get
00000000004108a0 0000000000000018 r arginfo_realpath_cache_size
000000000040be10 0000000000000018 r arginfo_recursive_it_void
000000000040af60 0000000000000018 r arginfo_reflection__void
000000000040af40 0000000000000018 r arginfo_reflection_class_newInstanceWithoutConstructor
00000000004109c0 0000000000000018 r arginfo_restore_include_path
000000000040b2a0 0000000000000018 r arginfo_spl_autoload_functions
000000000040b2c0 0000000000000018 r arginfo_spl_classes
000000000040cbe0 0000000000000018 r arginfo_splfileinfo_void
000000000040d490 0000000000000018 r arginfo_splfixedarray_void
000000000040d340 0000000000000018 r arginfo_splheap_void
000000000040cf60 0000000000000018 r arginfo_splobject_void
0000000000410660 0000000000000018 r arginfo_stream_get_filters
00000000004106e0 0000000000000018 r arginfo_stream_get_transports
00000000004106c0 0000000000000018 r arginfo_stream_get_wrappers
00000000004108c0 0000000000000018 r arginfo_sys_get_temp_dir
0000000000410960 0000000000000018 r arginfo_sys_getloadavg
0000000000337380 0000000000000018 r arginfo_time
0000000000337280 0000000000000018 r arginfo_timezone_abbreviations_list
00000000003372a0 0000000000000018 r arginfo_timezone_method_location_get
00000000003372c0 0000000000000018 r arginfo_timezone_method_name_get
0000000000337260 0000000000000018 r arginfo_timezone_version_get
00000000004108e0 0000000000000018 r arginfo_tmpfile
00000000004404f0 0000000000000018 r arginfo_zend__void
00000000007049d0 0000000000000018 d chunked_filter_ops
00000000007274a0 0000000000000018 b cli_shell_callbacks
00000000007049f0 0000000000000018 d consumed_filter_ops
00000000004175a0 0000000000000018 r ht_bucket_empty
0000000000723d40 0000000000000018 d index_files.16608
0000000000408660 0000000000000018 r json_serialize_arginfo
0000000000705280 0000000000000018 D php_glob_stream_wrapper
000000000024c420 0000000000000018 T php_output_set_implicit_flush
0000000000723920 0000000000000018 D php_plain_files_wrapper
0000000000704560 0000000000000018 D php_stream_ftp_wrapper
0000000000704640 0000000000000018 D php_stream_http_wrapper
00000000002529e0 0000000000000018 T php_stream_notification_free
00000000007046c0 0000000000000018 D php_stream_php_wrapper
0000000000704d20 0000000000000018 D php_stream_rfc2397_wrapper
000000000032bac0 0000000000000018 t sapi_cli_log_message
00000000001a9d70 0000000000000018 t spl_dllist_it_rewind
0000000000704a10 0000000000000018 d strfilter_convert_ops
0000000000704aa0 0000000000000018 d strfilter_rot13_ops
0000000000704a30 0000000000000018 d strfilter_strip_tags_ops
0000000000704a60 0000000000000018 d strfilter_tolower_ops
0000000000704a80 0000000000000018 d strfilter_toupper_ops
000000000069f650 0000000000000018 d timelib_timezone_utc
0000000000704810 0000000000000018 d userfilter_ops
00000000000cdab8 0000000000000018 t zend_closure_get_constructor
00000000000cdad0 0000000000000018 t zend_generator_get_constructor
00000000002b9060 0000000000000018 T zend_iterator_unwrap
0000000000277260 0000000000000018 T zend_memory_peak_usage
0000000000277240 0000000000000018 T zend_memory_usage
00000000000dc971 0000000000000018 t zend_undefined_method.isra.4
00000000000dc989 0000000000000018 t zend_use_resource_as_offset.isra.5
00000000002d5970 0000000000000018 t zend_visibility_string
00000000002b10f0 0000000000000019 t add_zendext_info
000000000043c130 0000000000000019 r haltoff.11146
0000000000173ee0 0000000000000019 t php_json_parser_array_append
000000000011b540 0000000000000019 T php_pcre2_set_glob_separator
0000000000221760 0000000000000019 t php_stream_input_close
000000000019f020 0000000000000019 t spl_filesystem_dir_it_dtor
000000000019f3a0 0000000000000019 t spl_filesystem_object_new_check
00000000002cb030 0000000000000019 T virtual_cwd_shutdown
00000000002a8170 0000000000000019 T zend_hash_bucket_renum_swap
00000000002b81f0 0000000000000019 T zend_multibyte_get_functions
00000000001be6c0 0000000000000019 t zif_array_udiff_uassoc
00000000001be020 0000000000000019 t zif_array_uintersect_uassoc
0000000000193040 0000000000000019 t zim_spl_FilterIterator___construct
00000000001930c0 0000000000000019 t zim_spl_ParentIterator___construct
00000000001930a0 0000000000000019 t zim_spl_RecursiveFilterIterator___construct
00000000001d8890 0000000000000019 t zm_activate_filestat
00000000002d8440 000000000000001a t ZEND_FUNC_NUM_ARGS_SPEC_UNUSED_UNUSED_HANDLER
0000000000338600 000000000000001a r __func__.12052
000000000041f780 000000000000001a r _codes
0000000000240290 000000000000001a t free_filename
0000000000214ef0 000000000000001a t incomplete_class_get_property_ptr_ptr
000000000029dc40 000000000000001a T object_properties_init_ex
0000000000169340 000000000000001a T pcre2_converted_pattern_free_8
0000000000331fc0 000000000000001a t php_cli_server_chunk_dtor.part.2
00000000001cbf10 000000000000001a t php_load_shlib.part.0
0000000000162030 000000000000001a T php_pcre2_serialize_free
00000000001655e0 000000000000001a T php_pcre2_substring_free
0000000000165a10 000000000000001a T php_pcre2_substring_list_free
00000000001d9590 000000000000001a T php_stat
0000000000420230 000000000000001a r soundex_table.13957
00000000001a82f0 000000000000001a t spl_object_storage_free_hash.isra.0
0000000000277850 000000000000001a t str_dtor
00000000000eb570 000000000000001a t timelib_ts_to_julianday
000000000028f960 000000000000001a T zend_llist_clean
00000000002c5810 000000000000001a T zend_shutdown_fpu
00000000002b8900 000000000000001a t zend_stream_stdio_closer
00000000001cc590 000000000000001a t zm_info_dl
000000000029b2e0 000000000000001b t OnUpdateGCEnabled
00000000002340c0 000000000000001b t OnUpdateOutputEncoding
0000000000276f30 000000000000001b T _zend_mem_block_size
00000000000def20 000000000000001b t date_object_free_storage_date
00000000004259e0 000000000000001b r lowercase
0000000000255990 000000000000001b t php_stdiop_flush
00000000001aba10 000000000000001b t spl_heap_it_get_current_key
0000000000109b10 000000000000001b t timelib_get_tz_abbr_ptr
00000000004259c0 000000000000001b r uppercase
0000000000293050 000000000000001b T zend_binary_zval_strcasecmp
00000000002c45e0 000000000000001b t zend_closure_get_property_ptr_ptr
00000000002930a0 000000000000001b T zend_compare_symbol_tables
000000000027ed40 000000000000001b t zend_compile_const_expr_magic_const
000000000028fe30 000000000000001b T zend_get_opcode_flags
00000000002a1c50 000000000000001b T zend_register_internal_module
00000000002b6960 000000000000001b t zend_restore_ini_entry_wrapper
0000000000299c50 000000000000001b T zend_stack_init
0000000000299d00 000000000000001b T zend_stack_top
00000000002b7610 000000000000001c T OnUpdateLong
00000000000d9d23 000000000000001c t ZEND_THROW_SPEC_CONST_HANDLER
000000000029efb0 000000000000001c T add_next_index_zval
0000000000331730 000000000000001c t get_last_error
00000000001cc570 000000000000001c T php_dl
00000000001e5f60 000000000000001c T php_info_print_table_end
000000000023be60 000000000000001c t php_ini_available
0000000000234bf0 000000000000001c T php_request_shutdown_for_exec
0000000000246130 000000000000001c T php_sockaddr_size
00000000002544b0 000000000000001c T php_stream_filter_unregister_factory
000000000025ada0 000000000000001c T php_stream_xport_unregister
0000000000251a10 000000000000001c T php_unregister_url_stream_wrapper
000000000032be70 000000000000001c t print_extension_info
00000000001098c0 000000000000001c t timelib_get_error_message
000000000029c0c0 000000000000001c T zend_activate
00000000002a7a30 000000000000001c t zend_extension_op_array_persist_calc_handler
00000000002a55f0 000000000000001c T zend_fcall_info_args_save
00000000002b6a40 000000000000001c T zend_ini_shutdown
00000000002b6b10 000000000000001c T zend_ini_sort_entries
000000000028e4b0 000000000000001c T zend_set_timeout
0000000000441390 000000000000001c r zend_sigs
00000000001931e0 000000000000001c t zim_spl_AppendIterator___construct
0000000000193140 000000000000001c t zim_spl_CachingIterator___construct
0000000000193060 000000000000001c t zim_spl_CallbackFilterIterator___construct
00000000001931c0 000000000000001c t zim_spl_InfiniteIterator___construct
0000000000193180 000000000000001c t zim_spl_IteratorIterator___construct
0000000000193120 000000000000001c t zim_spl_LimitIterator___construct
00000000001931a0 000000000000001c t zim_spl_NoRewindIterator___construct
0000000000193160 000000000000001c t zim_spl_RecursiveCachingIterator___construct
0000000000193080 000000000000001c t zim_spl_RecursiveCallbackFilterIterator___construct
0000000000193100 000000000000001c t zim_spl_RecursiveRegexIterator___construct
00000000001930e0 000000000000001c t zim_spl_RegexIterator___construct
00000000001c9a20 000000000000001c t zm_shutdown_browscap
0000000000271d20 000000000000001d T __zend_malloc
0000000000271d40 000000000000001d T __zend_realloc
00000000001ecf20 000000000000001d T _php_math_longtobase
00000000002b10d0 000000000000001d t add_extension_info
000000000032bcf0 000000000000001d t php_cli_startup
0000000000247530 000000000000001d t php_output_stderr
0000000000247510 000000000000001d t php_output_stdout
0000000000244d20 000000000000001d t php_std_auto_global_callback
00000000007237f0 000000000000001d d psheader
00000000001ada40 000000000000001d t spl_fixedarray_it_rewind
000000000018e830 000000000000001d t spl_gen_private_prop_name
0000000000250980 000000000000001d t stream_resource_persistent_dtor
00000000002b06a0 000000000000001d T zend_fetch_resource
00000000002b9020 000000000000001d T zend_iterator_init
00000000000db5b3 000000000000001e t ZEND_EXIT_SPEC_UNUSED_HANDLER
0000000000162170 000000000000001e t _pcre2_strlen_8
00000000003355e0 000000000000001e t is_ps_title_available
000000000029e110 000000000000001e T object_init
00000000001d8da0 000000000000001e T php_get_gid_by_name
00000000001d8de0 000000000000001e T php_get_uid_by_name
0000000000253970 000000000000001e t php_stream_temp_flush
00000000001a6fc0 000000000000001e t spl_object_storage_dtor
00000000002739c0 000000000000001e T zend_mm_shutdown
0000000000299d60 000000000000001e T zend_stack_destroy
0000000000299d30 000000000000001e T zend_stack_int_top
00000000002a7c80 000000000000001e t zend_startup_extensions
00000000002d02c0 000000000000001e T zend_std_get_properties
000000000024f2c0 000000000000001e t zm_deactivate_streams
00000000000d6880 000000000000001f t ZEND_QM_ASSIGN_NOREF_SPEC_CONST_HANDLER
00000000000d70a9 000000000000001f t ZEND_QM_ASSIGN_NOREF_SPEC_TMPVARCV_HANDLER
00000000000d828f 000000000000001f t ZEND_QM_ASSIGN_SPEC_TMP_HANDLER
0000000000299540 000000000000001f T is_smaller_function
0000000000245800 000000000000001f t php_compare_tick_functions
00000000001e5d20 000000000000001f T php_info_html_esc
0000000000257340 000000000000001f t stream_wrapper_dtor
000000000028fec0 000000000000001f t swap_live_range
00000000002a7cd0 000000000000001f T zend_extension_dispatch_message
00000000002795b0 000000000000001f t zend_handle_loops_and_finally
000000000027c2e0 000000000000001f t zend_is_assign_to_self
000000000029d1a0 000000000000001f T zend_zval_type_name
00000000000de860 000000000000001f t zm_globals_ctor_date
00000000002e0400 0000000000000020 t ZEND_BIND_TRAITS_SPEC_HANDLER
00000000000d689f 0000000000000020 t ZEND_SEND_VAL_SIMPLE_SPEC_CONST_HANDLER
00000000000dd834 0000000000000020 t ZEND_SEND_VAL_SPEC_TMPVAR_HANDLER
00000000000d8559 0000000000000020 t ZEND_SEND_VAR_SIMPLE_SPEC_VAR_HANDLER
00000000002e0160 0000000000000020 t ZEND_VERIFY_ABSTRACT_CLASS_SPEC_HANDLER
00000000003385e0 0000000000000020 r __func__.12056
00000000006a8ae0 0000000000000020 d _pcre2_default_convert_context_8
00000000003f0480 0000000000000020 r _pcre2_vspace_list_8
000000000072a2c0 0000000000000020 b assert_globals
0000000000725a80 0000000000000020 b big_endian_longlong_map
0000000000704ce0 0000000000000020 d cast_names.14424
000000000040dea0 0000000000000020 r charset.17813
000000000040de80 0000000000000020 r charset2.17814
000000000043f740 0000000000000020 r disabled_class_new
000000000043c540 0000000000000020 R empty_fcall_info_cache
0000000000704260 0000000000000020 d enc_to_uni_cp866
0000000000704320 0000000000000020 d enc_to_uni_iso88591
00000000007042e0 0000000000000020 d enc_to_uni_iso885915
0000000000704300 0000000000000020 d enc_to_uni_iso88595
0000000000704280 0000000000000020 d enc_to_uni_koi8r
0000000000704240 0000000000000020 d enc_to_uni_macroman
00000000007042a0 0000000000000020 d enc_to_uni_win1251
00000000007042c0 0000000000000020 d enc_to_uni_win1252
0000000000726c60 0000000000000020 b hybrid_halt_op
0000000000725a60 0000000000000020 b little_endian_longlong_map
0000000000725aa0 0000000000000020 b machine_endian_longlong_map
00000000007041a0 0000000000000020 d multi_cp_html5_0003C
0000000000704180 0000000000000020 d multi_cp_html5_0003D
0000000000704160 0000000000000020 d multi_cp_html5_0003E
0000000000704140 0000000000000020 d multi_cp_html5_00066
0000000000704120 0000000000000020 d multi_cp_html5_0205F
0000000000704100 0000000000000020 d multi_cp_html5_0219D
00000000007040e0 0000000000000020 d multi_cp_html5_02202
00000000007040c0 0000000000000020 d multi_cp_html5_02220
00000000007040a0 0000000000000020 d multi_cp_html5_02229
0000000000704080 0000000000000020 d multi_cp_html5_0222A
0000000000704060 0000000000000020 d multi_cp_html5_0223C
0000000000704040 0000000000000020 d multi_cp_html5_0223D
0000000000704020 0000000000000020 d multi_cp_html5_0223E
0000000000704000 0000000000000020 d multi_cp_html5_02242
0000000000703fe0 0000000000000020 d multi_cp_html5_0224B
0000000000703fc0 0000000000000020 d multi_cp_html5_0224D
0000000000703fa0 0000000000000020 d multi_cp_html5_0224E
0000000000703f80 0000000000000020 d multi_cp_html5_0224F
0000000000703f60 0000000000000020 d multi_cp_html5_02250
0000000000703f40 0000000000000020 d multi_cp_html5_02261
0000000000703f20 0000000000000020 d multi_cp_html5_02264
0000000000703f00 0000000000000020 d multi_cp_html5_02265
0000000000703ee0 0000000000000020 d multi_cp_html5_02266
0000000000703ec0 0000000000000020 d multi_cp_html5_02267
0000000000703ea0 0000000000000020 d multi_cp_html5_02268
0000000000703e80 0000000000000020 d multi_cp_html5_02269
0000000000703de0 0000000000000020 d multi_cp_html5_0227F
0000000000703dc0 0000000000000020 d multi_cp_html5_02282
0000000000703da0 0000000000000020 d multi_cp_html5_02283
0000000000703d80 0000000000000020 d multi_cp_html5_0228A
0000000000703d60 0000000000000020 d multi_cp_html5_0228B
0000000000703d40 0000000000000020 d multi_cp_html5_0228F
0000000000703d20 0000000000000020 d multi_cp_html5_02290
0000000000703d00 0000000000000020 d multi_cp_html5_02293
0000000000703ce0 0000000000000020 d multi_cp_html5_02294
0000000000703cc0 0000000000000020 d multi_cp_html5_022B4
0000000000703ca0 0000000000000020 d multi_cp_html5_022B5
0000000000703c80 0000000000000020 d multi_cp_html5_022D8
0000000000703c60 0000000000000020 d multi_cp_html5_022D9
0000000000703c40 0000000000000020 d multi_cp_html5_022DA
0000000000703c20 0000000000000020 d multi_cp_html5_022DB
0000000000703c00 0000000000000020 d multi_cp_html5_022F5
0000000000703be0 0000000000000020 d multi_cp_html5_022F9
0000000000703bc0 0000000000000020 d multi_cp_html5_02933
0000000000703ba0 0000000000000020 d multi_cp_html5_029CF
0000000000703b80 0000000000000020 d multi_cp_html5_029D0
0000000000703b60 0000000000000020 d multi_cp_html5_02A6D
0000000000703b40 0000000000000020 d multi_cp_html5_02A70
0000000000703b20 0000000000000020 d multi_cp_html5_02A7D
0000000000703b00 0000000000000020 d multi_cp_html5_02A7E
0000000000703ae0 0000000000000020 d multi_cp_html5_02AA1
0000000000703ac0 0000000000000020 d multi_cp_html5_02AA2
0000000000703aa0 0000000000000020 d multi_cp_html5_02AAC
0000000000703a80 0000000000000020 d multi_cp_html5_02AAD
0000000000703a60 0000000000000020 d multi_cp_html5_02AAF
0000000000703a40 0000000000000020 d multi_cp_html5_02AB0
0000000000703a20 0000000000000020 d multi_cp_html5_02AC5
0000000000703a00 0000000000000020 d multi_cp_html5_02AC6
00000000007039e0 0000000000000020 d multi_cp_html5_02ACB
00000000007039c0 0000000000000020 d multi_cp_html5_02ACC
00000000007039a0 0000000000000020 d multi_cp_html5_02AFD
000000000032be50 0000000000000020 t print_module_info
000000000040af80 0000000000000020 r reflection_exception_functions
000000000040af20 0000000000000020 r reflection_ext_functions
0000000000704d00 0000000000000020 d stream_cookie_functions
00000000006a65a0 0000000000000020 d timezonedb_builtin
00000000002c49b0 0000000000000020 t zend_closure_has_property
00000000002c4600 0000000000000020 t zend_closure_read_property
00000000002b05d0 0000000000000020 T zend_list_delete
00000000002b05f0 0000000000000020 T zend_list_free
0000000000272bb0 0000000000000020 t zend_mm_chunk_alloc.isra.7.constprop.15
00000000002a75c0 0000000000000020 T zend_read_static_property_ex
0000000000330080 0000000000000020 t zm_startup_cli_server
0000000000234530 0000000000000021 t OnUpdateDisplayErrors
00000000000dce92 0000000000000021 t ZEND_INIT_METHOD_CALL_SPEC_CONST_CONST_HANDLER
00000000000d7088 0000000000000021 t ZEND_QM_ASSIGN_DOUBLE_SPEC_TMPVARCV_HANDLER
0000000000226670 0000000000000021 t filter_item_dtor
00000000002994e0 0000000000000021 T is_equal_function
0000000000292310 0000000000000021 T is_identical_function
0000000000299510 0000000000000021 T is_not_equal_function
0000000000292340 0000000000000021 T is_not_identical_function
0000000000299560 0000000000000021 T is_smaller_or_equal_function
00000000000c9010 0000000000000021 t php_date_add.isra.20.part.21
00000000000c9010 0000000000000021 t php_date_date_set.isra.6.part.7
00000000000c9010 0000000000000021 t php_date_isodate_set.isra.26.part.27
00000000000c9010 0000000000000021 t php_date_sub.isra.22.part.23
00000000000c9010 0000000000000021 t php_date_time_set.isra.4.part.5
00000000000c9010 0000000000000021 t php_date_timestamp_set.isra.14.part.15
00000000000c9010 0000000000000021 t php_date_timezone_set.isra.24.part.25
0000000000293070 0000000000000021 T zend_binary_zval_strncasecmp
0000000000293020 0000000000000021 T zend_binary_zval_strncmp
0000000000278660 0000000000000021 t zend_do_extended_fcall_begin.part.28
0000000000278690 0000000000000021 t zend_do_extended_fcall_end.part.29
0000000000278630 0000000000000021 t zend_do_extended_info.part.27
00000000002d4080 0000000000000021 T zend_register_default_classes
0000000000277210 0000000000000021 T zend_set_memory_limit
00000000002dedb0 0000000000000022 t ZEND_FETCH_CLASS_SPEC_UNUSED_UNUSED_HANDLER
00000000000d685e 0000000000000022 t ZEND_QM_ASSIGN_DOUBLE_SPEC_CONST_HANDLER
0000000000250eb0 0000000000000022 T _php_stream_eof
000000000025d1c0 0000000000000022 T _php_stream_mmap_unmap
0000000000252390 0000000000000022 T _php_stream_readdir
0000000000250ee0 0000000000000022 T _php_stream_truncate_set_size
00000000001783e0 0000000000000022 t pcntl_interrupt_function
000000000023fc40 0000000000000022 t php_free_hdr_entry
0000000000169950 0000000000000022 t php_free_pcre_cache
00000000001dd920 0000000000000022 t php_head_apply_header_list_to_hash
00000000002484b0 0000000000000022 T php_output_handler_free
00000000000eb590 0000000000000022 t timelib_ts_to_j2000
00000000002998d0 0000000000000022 T zend_ptr_stack_init
00000000002998a0 0000000000000022 T zend_ptr_stack_init_ex
00000000002f8100 0000000000000023 t ZEND_FETCH_DIM_RW_SPEC_CV_UNUSED_HANDLER
00000000002f8990 0000000000000023 t ZEND_FETCH_DIM_W_SPEC_CV_UNUSED_HANDLER
00000000000d6fc5 0000000000000023 t ZEND_POST_DEC_LONG_NO_OVERFLOW_SPEC_TMPVARCV_HANDLER
00000000000d6f02 0000000000000023 t ZEND_POST_INC_LONG_NO_OVERFLOW_SPEC_TMPVARCV_HANDLER
0000000000253b80 0000000000000023 T _php_stream_mode_to_str
00000000002509b0 0000000000000023 T _php_stream_write
000000000029c6a0 0000000000000023 t exec_done_cb
00000000002b03e0 0000000000000023 t list_entry_destructor
0000000000247aa0 0000000000000023 T php_output_get_level
0000000000245830 0000000000000023 t php_startup_ticks
0000000000333940 0000000000000023 t sapi_cli_server_ub_write
000000000023f6c0 0000000000000023 T sapi_register_default_post_reader
000000000023f6f0 0000000000000023 T sapi_register_treat_data
00000000001a9800 0000000000000023 t spl_dllist_it_get_current_data
00000000001098f0 0000000000000023 t timelib_time_dtor
0000000000109ae0 0000000000000023 t timelib_time_offset_dtor
00000000000c9119 0000000000000023 t timelib_time_reset_fields.part.6
0000000000408ac0 0000000000000023 r yycheck
0000000000408b00 0000000000000023 r yytable
00000000002a2070 0000000000000023 T zend_cleanup_internal_classes
00000000002b03b0 0000000000000023 t zend_close_rsrc
00000000002930c0 0000000000000023 T zend_compare_arrays
000000000028fe00 0000000000000023 T zend_get_opcode_name
00000000002b6a80 0000000000000023 T zend_ini_global_shutdown
000000000028fd40 0000000000000023 T zend_llist_get_first_ex
000000000028fd70 0000000000000023 T zend_llist_get_last_ex
000000000028f710 0000000000000023 T zend_llist_init
000000000029d440 0000000000000023 T zend_parse_arg_bool_weak
000000000028aed0 0000000000000023 t zend_shutdown_constants
00000000000dc94e 0000000000000023 t zend_undefined_function_helper_SPEC.isra.3
000000000032ac10 0000000000000023 t zend_vm_init
00000000000cbc4d 0000000000000023 t zenderror
000000000029c6d0 0000000000000023 T zif_display_disabled_function
000000000018b1a0 0000000000000023 t zm_activate_spl
00000000001d0850 0000000000000023 t zm_shutdown_file
00000000002d83e0 0000000000000024 t ZEND_END_SILENCE_SPEC_TMP_HANDLER
00000000003f0400 0000000000000024 r _pcre2_callout_end_delims_8
00000000003f0440 0000000000000024 r _pcre2_callout_start_delims_8
00000000002402e0 0000000000000024 t add_protected_variable
00000000000e1c50 0000000000000024 t date_period_it_dtor
00000000001cfe20 0000000000000024 t file_context_dtor
00000000002402b0 0000000000000024 t is_protected_variable
00000000001697c0 0000000000000024 t pcre_clean_cache
00000000002422f0 0000000000000024 T php_rfc1867_set_multibyte_callbacks
0000000000230ac0 0000000000000024 T php_url_encode_hash_ex
000000000018e940 0000000000000024 t spl_recursive_it_get_current_data
0000000000108480 0000000000000024 t timelib_timezone_id_from_abbr
0000000000223050 0000000000000024 T var_push_dtor
00000000002a5610 0000000000000024 T zend_fcall_info_args_restore
00000000002c41b0 0000000000000024 T zend_gc_get_status
00000000002c7910 0000000000000024 t zend_generator_get_child.part.0
00000000000d40d4 0000000000000024 T zend_std_unset_static_property
0000000000443b80 0000000000000024 r zend_vm_decode.29225
0000000000443b80 0000000000000024 r zend_vm_decode.29232
0000000000319260 0000000000000024 T zend_vm_stack_destroy
00000000000dc1e3 0000000000000025 t ZEND_UNSET_STATIC_PROP_SPEC_CONST_VAR_HANDLER
000000000028ae60 0000000000000025 t clean_module_constants
000000000041f400 0000000000000025 r digits.15595
000000000041f400 0000000000000025 r digits.15606
00000000001e9d80 0000000000000025 t php_mail_log_crlf_to_spaces
0000000000235ef0 0000000000000025 T php_module_shutdown
0000000000247560 0000000000000025 t php_output_stack_apply_list
0000000000245920 0000000000000025 t php_run_ticks
0000000000331580 0000000000000025 t sapi_cli_server_startup
00000000001adab0 0000000000000025 t spl_fixedarray_it_get_current_key
0000000000408a40 0000000000000025 r yyr1
0000000000408a00 0000000000000025 r yyr2
00000000002b0970 0000000000000025 t zend_clean_module_rsrc_dtors
00000000002b08f0 0000000000000025 t zend_init_rsrc_list
0000000000292a90 0000000000000025 T zend_str_tolower
00000000002b6d30 0000000000000025 T zend_unregister_ini_entries
00000000000d763d 0000000000000026 t ZEND_ADD_LONG_NO_OVERFLOW_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000002e0360 0000000000000026 t ZEND_NULL_HANDLER
00000000000d6785 0000000000000026 t ZEND_QM_ASSIGN_SPEC_CONST_HANDLER
00000000000d76d5 0000000000000026 t ZEND_SUB_LONG_NO_OVERFLOW_SPEC_TMPVARCV_TMPVARCV_HANDLER
0000000000276020 0000000000000026 T _efree_huge
0000000000275500 0000000000000026 T _emalloc_huge
000000000029c610 0000000000000026 t clean_module_class
00000000000e1bf0 0000000000000026 t date_period_it_invalidate_current
00000000000e1c20 0000000000000026 t date_period_it_move_forward
00000000002c37c0 0000000000000026 t gc_globals_dtor
00000000002537b0 0000000000000026 t php_stream_temp_stat
000000000023f750 0000000000000026 T sapi_flush
000000000019a1f0 0000000000000026 t spl_array_it_rewind
00000000001ada60 0000000000000026 t spl_fixedarray_it_move_forward
00000000001ad750 0000000000000026 t spl_fixedarray_object_get_gc
00000000001aa0e0 0000000000000026 t spl_ptr_llist_zval_dtor
000000000022c510 0000000000000026 t user_space_stream_notifier_dtor
0000000000278820 0000000000000026 t zend_assert_valid_class_name
000000000027c840 0000000000000026 t zend_compile_func_get_called_class
00000000002a7960 0000000000000026 T zend_get_object_type
00000000002a7cf0 0000000000000026 T zend_get_resource_handle
000000000029cfc0 0000000000000026 t zend_startup_module_zval
00000000002b9090 0000000000000026 T zend_user_it_invalidate_current
00000000001cedb0 0000000000000026 t zm_startup_exec
000000000016a000 0000000000000027 t OnUpdateBacktrackLimit
0000000000169fd0 0000000000000027 t OnUpdateRecursionLimit
00000000000d70c8 0000000000000027 t ZEND_ADD_LONG_NO_OVERFLOW_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7299 0000000000000027 t ZEND_IS_EQUAL_LONG_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7808 0000000000000027 t ZEND_IS_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d72f1 0000000000000027 t ZEND_IS_NOT_EQUAL_LONG_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7860 0000000000000027 t ZEND_IS_NOT_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d69ad 0000000000000027 t ZEND_IS_SMALLER_LONG_SPEC_CONST_TMPVARCV_HANDLER
00000000000d7411 0000000000000027 t ZEND_IS_SMALLER_LONG_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7980 0000000000000027 t ZEND_IS_SMALLER_LONG_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d6ac3 0000000000000027 t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_CONST_TMPVARCV_HANDLER
00000000000d7527 0000000000000027 t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7a96 0000000000000027 t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d776d 0000000000000027 t ZEND_MUL_LONG_NO_OVERFLOW_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d6de9 0000000000000027 t ZEND_PRE_DEC_LONG_NO_OVERFLOW_SPEC_TMPVARCV_RETVAL_USED_HANDLER
00000000000d6e10 0000000000000027 t ZEND_PRE_DEC_LONG_SPEC_TMPVARCV_RETVAL_UNUSED_HANDLER
00000000000d6cc3 0000000000000027 t ZEND_PRE_INC_LONG_NO_OVERFLOW_SPEC_TMPVARCV_RETVAL_USED_HANDLER
00000000000d6cea 0000000000000027 t ZEND_PRE_INC_LONG_SPEC_TMPVARCV_RETVAL_UNUSED_HANDLER
00000000000d671b 0000000000000027 t ZEND_SEND_VAL_SPEC_CONST_HANDLER
00000000000d9305 0000000000000027 t ZEND_SEND_VAR_SIMPLE_SPEC_CV_HANDLER
00000000000d6913 0000000000000027 t ZEND_SUB_LONG_NO_OVERFLOW_SPEC_CONST_TMPVARCV_HANDLER
00000000000d7162 0000000000000027 t ZEND_SUB_LONG_NO_OVERFLOW_SPEC_TMPVARCV_CONST_HANDLER
00000000001e6430 0000000000000027 t _display_module_info_def
000000000024f230 0000000000000027 t _php_stream_write.part.1
0000000000173f90 0000000000000027 t php_json_parser_object_create
000000000028e3c0 0000000000000027 T zend_eval_string
00000000002a7ca0 0000000000000027 t zend_shutdown_extensions
00000000002e0180 0000000000000028 t ZEND_DECLARE_FUNCTION_SPEC_HANDLER
00000000000dc9a1 0000000000000028 t ZEND_FETCH_DIM_IS_SPEC_CONST_CONST_HANDLER
00000000000dc9c9 0000000000000028 t ZEND_FETCH_DIM_R_SPEC_CONST_CONST_HANDLER
00000000000d71fc 0000000000000028 t ZEND_MUL_LONG_NO_OVERFLOW_SPEC_TMPVARCV_CONST_HANDLER
00000000000d66f3 0000000000000028 t ZEND_RETURN_SPEC_CONST_HANDLER
00000000002d8b60 0000000000000028 t ZEND_ROPE_INIT_SPEC_UNUSED_CONST_HANDLER
00000000000de701 0000000000000028 T _start_c
00000000007244a0 0000000000000028 b allocator_mutex
0000000000440e80 0000000000000028 r bigtens
0000000000727820 0000000000000028 b date_globals
00000000002911e0 0000000000000028 T get_unary_op
00000000002535c0 0000000000000028 t php_stream_memory_close
00000000007279c0 0000000000000028 b spl_globals
0000000000440e40 0000000000000028 r tinytens
000000000026cfe0 0000000000000028 t yy_pop_state
0000000000261090 0000000000000028 t yy_pop_state
00000000002ba260 0000000000000028 T zend_class_unserialize_deny
00000000002b0920 0000000000000028 t zend_init_rsrc_plist
00000000000dce6a 0000000000000028 t zend_invalid_method_call.isra.21
000000000022b460 0000000000000028 t zm_startup_proc_open
00000000000d9d3f 0000000000000029 t ZEND_CLONE_SPEC_CONST_HANDLER
00000000000db0f5 0000000000000029 t ZEND_FETCH_OBJ_R_SPEC_CONST_CONST_HANDLER
00000000002d8410 0000000000000029 t ZEND_ISSET_ISEMPTY_THIS_SPEC_UNUSED_UNUSED_HANDLER
00000000001b0330 0000000000000029 t php_array_data_compare_numeric
00000000001b0240 0000000000000029 t php_array_data_compare_string
00000000001b02c0 0000000000000029 t php_array_data_compare_string_case
00000000001b01d0 0000000000000029 t php_array_data_compare_string_locale
00000000001e5cf0 0000000000000029 T php_info_print_style
00000000002a7a50 0000000000000029 t zend_extension_op_array_persist_handler
00000000002d4780 0000000000000029 t zend_visibility_string.part.9
000000000016a030 0000000000000029 t zif_preg_last_error
00000000001a6fe0 0000000000000029 t zim_spl_MultipleIterator_setFlags
00000000001c99f0 0000000000000029 t zm_deactivate_browscap
000000000028bf00 0000000000000029 t zval_call_destructor
00000000001ee700 000000000000002a T PHP_MD5Init
00000000000dc167 000000000000002a t ZEND_BOOL_XOR_SPEC_CONST_CONST_HANDLER
00000000000db912 000000000000002a t ZEND_DIV_SPEC_CONST_CONST_HANDLER
00000000000dba69 000000000000002a t ZEND_POW_SPEC_CONST_CONST_HANDLER
00000000000dbdac 000000000000002a t ZEND_SPACESHIP_SPEC_CONST_CONST_HANDLER
00000000001e6460 000000000000002a t _display_module_info_func
000000000014d0a0 000000000000002a t _pcre2_jit_free_rodata_8
0000000000228350 000000000000002a t consumed_filter_dtor
00000000000deef0 000000000000002a t date_object_free_storage_timezone
0000000000228320 000000000000002a t php_chunked_dtor
0000000000229fb0 000000000000002a t php_conv_base64_encode_dtor
000000000022a010 000000000000002a t php_conv_qprint_decode_dtor
0000000000229fe0 000000000000002a t php_conv_qprint_encode_dtor
00000000001ddf10 000000000000002a T php_header
000000000032d270 000000000000002a t php_http_should_keep_alive
0000000000247b80 000000000000002a T php_output_get_length
00000000002443b0 000000000000002a T php_register_variable
000000000023f720 000000000000002a T sapi_register_input_filter
000000000023f690 000000000000002a T sapi_unregister_post_entry
0000000000123d10 000000000000002a t sljit_has_cpu_feature.part.9
00000000001aacc0 000000000000002a t spl_dllist_it_dtor
000000000028e3f0 000000000000002a T zend_eval_stringl_ex
00000000000cbbdf 000000000000002a t zend_mm_panic.constprop.14
0000000000299ad0 000000000000002a T zend_ptr_stack_destroy
000000000027b060 000000000000002a t zend_resolve_class_name_ast
00000000000d76aa 000000000000002b t ZEND_ADD_DOUBLE_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000002f6b10 000000000000002b t ZEND_FETCH_DIM_IS_SPEC_CONST_CV_HANDLER
00000000002f6c60 000000000000002b t ZEND_FETCH_DIM_IS_SPEC_CV_CONST_HANDLER
00000000002f6ce0 000000000000002b t ZEND_FETCH_DIM_IS_SPEC_CV_CV_HANDLER
00000000002f8080 000000000000002b t ZEND_FETCH_DIM_RW_SPEC_CV_CONST_HANDLER
00000000002f8130 000000000000002b t ZEND_FETCH_DIM_RW_SPEC_CV_CV_HANDLER
00000000002f7300 000000000000002b t ZEND_FETCH_DIM_R_SPEC_CONST_CV_HANDLER
00000000002f7890 000000000000002b t ZEND_FETCH_DIM_UNSET_SPEC_CV_CONST_HANDLER
00000000002f7910 000000000000002b t ZEND_FETCH_DIM_UNSET_SPEC_CV_CV_HANDLER
00000000002f88d0 000000000000002b t ZEND_FETCH_DIM_W_SPEC_CV_CONST_HANDLER
00000000002f89e0 000000000000002b t ZEND_FETCH_DIM_W_SPEC_CV_CV_HANDLER
00000000002f6470 000000000000002b t ZEND_FETCH_LIST_R_SPEC_CONST_CONST_HANDLER
00000000002f64f0 000000000000002b t ZEND_FETCH_LIST_R_SPEC_CONST_CV_HANDLER
00000000002f6520 000000000000002b t ZEND_FETCH_LIST_R_SPEC_TMPVARCV_CONST_HANDLER
00000000002f65a0 000000000000002b t ZEND_FETCH_LIST_R_SPEC_TMPVARCV_CV_HANDLER
00000000000d6a32 000000000000002b t ZEND_IS_SMALLER_DOUBLE_SPEC_CONST_TMPVARCV_HANDLER
00000000000d7496 000000000000002b t ZEND_IS_SMALLER_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7a05 000000000000002b t ZEND_IS_SMALLER_DOUBLE_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d6b48 000000000000002b t ZEND_IS_SMALLER_OR_EQUAL_DOUBLE_SPEC_CONST_TMPVARCV_HANDLER
00000000000d75ac 000000000000002b t ZEND_IS_SMALLER_OR_EQUAL_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7b1b 000000000000002b t ZEND_IS_SMALLER_OR_EQUAL_DOUBLE_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d77dd 000000000000002b t ZEND_MUL_DOUBLE_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d7742 000000000000002b t ZEND_SUB_DOUBLE_SPEC_TMPVARCV_TMPVARCV_HANDLER
0000000000246e60 000000000000002b T _php_emit_fd_setsize_warning
00000000000e8d50 000000000000002b T php_date_set_tzdb
0000000000219ec0 000000000000002b T php_url_scanner_reset_session_vars
0000000000219ef0 000000000000002b T php_url_scanner_reset_vars
00000000003ea300 000000000000002b r verbnames
00000000002a8190 000000000000002b T zend_hash_bucket_packed_swap
000000000028fda0 000000000000002b T zend_llist_get_next_ex
000000000028fdd0 000000000000002b T zend_llist_get_prev_ex
00000000000cbb12 000000000000002b t zend_out_of_memory
000000000029d6f0 000000000000002b T zend_parse_arg_long_cap_slow
000000000029d5a0 000000000000002b T zend_parse_arg_long_slow
000000000029d960 000000000000002b T zend_parse_arg_str_slow
000000000027bdb0 000000000000002b t zend_verify_namespace
0000000000184700 000000000000002b t zim_reflection_class___toString.part.83
0000000000183db0 000000000000002b t zim_reflection_class_getDefaultProperties.part.81
0000000000183db0 000000000000002b t zim_reflection_class_getDocComment.part.51
0000000000183db0 000000000000002b t zim_reflection_class_getFileName.part.48
0000000000183db0 000000000000002b t zim_reflection_class_isIterable.part.58
0000000000184700 000000000000002b t zim_reflection_extension___toString.part.85
0000000000184700 000000000000002b t zim_reflection_function___toString.part.72
0000000000183db0 000000000000002b t zim_reflection_function_getClosure.part.75
0000000000183db0 000000000000002b t zim_reflection_function_getClosureThis.part.74
0000000000183db0 000000000000002b t zim_reflection_function_getDocComment.part.17
0000000000183db0 000000000000002b t zim_reflection_function_getFileName.part.14
0000000000183db0 000000000000002b t zim_reflection_function_getReturnType.part.37
0000000000184700 000000000000002b t zim_reflection_method___toString.part.73
0000000000183db0 000000000000002b t zim_reflection_method_getPrototype.part.76
0000000000184700 000000000000002b t zim_reflection_property___toString.part.84
0000000000184700 000000000000002b t zim_reflection_zend_extension___toString.part.66
0000000000232cc0 000000000000002b t zm_shutdown_random
00000000000d7136 000000000000002c t ZEND_ADD_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER
00000000002e3e80 000000000000002c t ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER
00000000000d726d 000000000000002c t ZEND_MUL_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER
00000000000d6981 000000000000002c t ZEND_SUB_DOUBLE_SPEC_CONST_TMPVARCV_HANDLER
00000000000d71d0 000000000000002c t ZEND_SUB_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER
00000000001eda20 000000000000002c T _php_math_number_format
0000000000254cc0 000000000000002c T _php_stream_filter_prepend
000000000025d230 000000000000002c t php_glob_stream_rewind
00000000001e5cc0 000000000000002c t php_info_print_box_start.part.0
00000000001e6000 000000000000002c T php_info_print_hr
00000000001e5f30 000000000000002c T php_info_print_table_start
00000000001e34a0 000000000000002c t php_skip_variable
0000000000254820 000000000000002c T php_stream_bucket_prepend
00000000003ef100 000000000000002c r rep_max
00000000003ef140 000000000000002c r rep_min
00000000001aac90 000000000000002c t spl_dllist_it_move_forward
00000000003ea240 000000000000002c r verbops
0000000000322180 000000000000002c T zend_cleanup_unfinished_execution
00000000002a02b0 000000000000002c T zend_destroy_modules
00000000002c6120 000000000000002c T zend_interned_strings_dtor
000000000029bfa0 000000000000002c t zend_set_utility_values
00000000002b0d30 000000000000002c t zif_gc_collect_cycles
00000000002b1060 000000000000002c t zif_gc_enabled
00000000001e8ad0 000000000000002c t zif_lcg_value
000000000024e380 000000000000002c t zif_output_reset_rewrite_vars
00000000001da7a0 000000000000002c t zif_realpath_cache_size
00000000000e19e0 000000000000002c t zif_time
000000000019e4a0 000000000000002c t zim_spl_SplFileObject_setFlags
0000000000176ce0 000000000000002c t zm_info_pcntl
0000000000181dc0 000000000000002c t zm_info_reflection
000000000029b300 000000000000002d t OnUpdateErrorReporting
00000000002d9fd0 000000000000002d t ZEND_FETCH_THIS_SPEC_UNUSED_UNUSED_HANDLER
0000000000242320 000000000000002d T php_default_post_reader
000000000026d150 000000000000002d t shutdown_ini_scanner
00000000001a9310 000000000000002d t spl_object_storage_clone
0000000000109920 000000000000002d t timelib_time_compare
0000000000408b60 000000000000002d r yydefact
0000000000408ba0 000000000000002d r yypact
0000000000408a80 000000000000002d r yystos
00000000002b0670 000000000000002d T zend_fetch_resource2
00000000002bd700 000000000000002d T zend_get_exception_base
00000000002a9980 000000000000002d T zend_hash_add_or_update
00000000002b7230 000000000000002d T zend_ini_register_displayer
000000000028fb10 000000000000002d T zend_llist_apply
0000000000293130 000000000000002d T zend_locale_sprintf_double
00000000002a2120 000000000000002d T zend_register_internal_class_ex
000000000026b850 000000000000002d t zval_ini_dtor.isra.1.part.2
00000000002479e0 000000000000002e T php_output_get_status
0000000000247f10 000000000000002e T php_output_handler_set_context
0000000000254c50 000000000000002e T php_stream_filter_free
000000000024f610 000000000000002e t php_stream_tidy_wrapper_error_log
00000000001adce0 000000000000002e t spl_fixedarray_init.part.1
00000000001adae0 000000000000002e t spl_fixedarray_it_valid
00000000002cb780 000000000000002e T virtual_chdir
00000000002c6150 000000000000002e T zend_interned_strings_activate
00000000002a7990 000000000000002e T zend_is_iterable
000000000032ac50 000000000000002e T zend_serialize_opcode_handler
00000000001938d0 000000000000002e t zim_spl_LimitIterator_getPosition
00000000000e1570 000000000000002e t zm_shutdown_date
0000000000234110 000000000000002f t OnSetPrecision
0000000000234140 000000000000002f t OnSetSerializePrecision
00000000000dd8b8 000000000000002f t ZEND_IS_EQUAL_LONG_SPEC_TMPVARCV_CONST_JMPNZ_HANDLER
00000000000dd889 000000000000002f t ZEND_IS_EQUAL_LONG_SPEC_TMPVARCV_CONST_JMPZ_HANDLER
00000000000dd980 000000000000002f t ZEND_IS_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_JMPNZ_HANDLER
00000000000dd951 000000000000002f t ZEND_IS_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_JMPZ_HANDLER
00000000000d7347 000000000000002f t ZEND_IS_NOT_EQUAL_LONG_SPEC_TMPVARCV_CONST_JMPNZ_HANDLER
00000000000d7318 000000000000002f t ZEND_IS_NOT_EQUAL_LONG_SPEC_TMPVARCV_CONST_JMPZ_HANDLER
00000000000d78b6 000000000000002f t ZEND_IS_NOT_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_JMPNZ_HANDLER
00000000000d7887 000000000000002f t ZEND_IS_NOT_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_JMPZ_HANDLER
00000000000d6a03 000000000000002f t ZEND_IS_SMALLER_LONG_SPEC_CONST_TMPVARCV_JMPNZ_HANDLER
00000000000d69d4 000000000000002f t ZEND_IS_SMALLER_LONG_SPEC_CONST_TMPVARCV_JMPZ_HANDLER
00000000000d7467 000000000000002f t ZEND_IS_SMALLER_LONG_SPEC_TMPVARCV_CONST_JMPNZ_HANDLER
00000000000d7438 000000000000002f t ZEND_IS_SMALLER_LONG_SPEC_TMPVARCV_CONST_JMPZ_HANDLER
00000000000d79d6 000000000000002f t ZEND_IS_SMALLER_LONG_SPEC_TMPVARCV_TMPVARCV_JMPNZ_HANDLER
00000000000d79a7 000000000000002f t ZEND_IS_SMALLER_LONG_SPEC_TMPVARCV_TMPVARCV_JMPZ_HANDLER
00000000000d6b19 000000000000002f t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_CONST_TMPVARCV_JMPNZ_HANDLER
00000000000d6aea 000000000000002f t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_CONST_TMPVARCV_JMPZ_HANDLER
00000000000d757d 000000000000002f t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_TMPVARCV_CONST_JMPNZ_HANDLER
00000000000d754e 000000000000002f t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_TMPVARCV_CONST_JMPZ_HANDLER
00000000000d7aec 000000000000002f t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_JMPNZ_HANDLER
00000000000d7abd 000000000000002f t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_JMPZ_HANDLER
00000000002970a0 000000000000002f T is_numeric_str_function
00000000002482e0 000000000000002f T php_output_handler_alias
000000000023db30 000000000000002f T sapi_read_post_block
00000000002ba230 000000000000002f T zend_class_serialize_deny
000000000028f120 000000000000002f T zend_forbid_dynamic_call
000000000028fc20 000000000000002f T zend_llist_apply_with_argument
00000000002b0b10 000000000000002f T zend_rsrc_list_get_rsrc_type
0000000000209ee0 000000000000002f t zif_is_scalar
00000000001ec2d0 000000000000002f t zif_pow
00000000002c7860 000000000000002f t zim_Generator___wakeup
00000000002ec430 0000000000000030 t ZEND_INIT_ARRAY_SPEC_CONST_UNUSED_HANDLER
00000000002ec4b0 0000000000000030 t ZEND_INIT_ARRAY_SPEC_TMP_UNUSED_HANDLER
00000000002d8b30 0000000000000030 t ZEND_ROPE_ADD_SPEC_TMP_CONST_HANDLER
0000000000162190 0000000000000030 t _pcre2_strcpy_c8_8
00000000006b0440 0000000000000030 d arginfo_MultipleIterator_containsIterator
00000000006b0480 0000000000000030 d arginfo_MultipleIterator_detachIterator
00000000006b0400 0000000000000030 d arginfo_MultipleIterator_setflags
00000000006b0940 0000000000000030 d arginfo_Object
00000000006b08a0 0000000000000030 d arginfo_Serialized
00000000006b0a80 0000000000000030 d arginfo_SplObserver_update
00000000006b0a00 0000000000000030 d arginfo_SplSubject_attach
00000000006b5ec0 0000000000000030 d arginfo_abs
00000000006b5ca0 0000000000000030 d arginfo_acos
00000000006b5ac0 0000000000000030 d arginfo_acosh
00000000006b30c0 0000000000000030 d arginfo_addslashes
00000000006acae0 0000000000000030 d arginfo_append_it_append
00000000006aecc0 0000000000000030 d arginfo_array_append
00000000006ba4e0 0000000000000030 d arginfo_array_count_values
00000000006aec40 0000000000000030 d arginfo_array_exchangeArray
00000000006ba380 0000000000000030 d arginfo_array_flip
00000000006ba5a0 0000000000000030 d arginfo_array_key_first
00000000006ba560 0000000000000030 d arginfo_array_key_last
00000000006aed60 0000000000000030 d arginfo_array_offsetGet
00000000006ba960 0000000000000030 d arginfo_array_pop
00000000006b9b20 0000000000000030 d arginfo_array_product
00000000006aec80 0000000000000030 d arginfo_array_seek
00000000006aec00 0000000000000030 d arginfo_array_setFlags
00000000006aebc0 0000000000000030 d arginfo_array_setIteratorClass
00000000006ba920 0000000000000030 d arginfo_array_shift
00000000006b9b60 0000000000000030 d arginfo_array_sum
00000000006aeb80 0000000000000030 d arginfo_array_uXsort
00000000006aeb40 0000000000000030 d arginfo_array_unserialize
00000000006ba520 0000000000000030 d arginfo_array_values
0000000000707aa0 0000000000000030 d arginfo_arrayaccess_offset
0000000000707a60 0000000000000030 d arginfo_arrayaccess_offset_get
00000000006b5ce0 0000000000000030 d arginfo_asin
00000000006b5b00 0000000000000030 d arginfo_asinh
00000000006b5c60 0000000000000030 d arginfo_atan
00000000006b5a80 0000000000000030 d arginfo_atanh
00000000006b8b80 0000000000000030 d arginfo_base64_encode
00000000006b3e20 0000000000000030 d arginfo_bin2hex
00000000006b56a0 0000000000000030 d arginfo_bindec
00000000006b2400 0000000000000030 d arginfo_boolval
00000000006ad240 0000000000000030 d arginfo_caching_it_offsetGet
00000000006ad280 0000000000000030 d arginfo_caching_it_setFlags
00000000006b5e80 0000000000000030 d arginfo_ceil
00000000006b87e0 0000000000000030 d arginfo_chdir
00000000006b3340 0000000000000030 d arginfo_chr
00000000006b8820 0000000000000030 d arginfo_chroot
0000000000718000 0000000000000030 d arginfo_cli_set_process_title
0000000000717e40 0000000000000030 d arginfo_cli_set_process_title
00000000006b8860 0000000000000030 d arginfo_closedir
0000000000708100 0000000000000030 d arginfo_closure_fromcallable
00000000006bab60 0000000000000030 d arginfo_compact
00000000006b98a0 0000000000000030 d arginfo_constant
00000000006b1c40 0000000000000030 d arginfo_convert_uudecode
00000000006b1c80 0000000000000030 d arginfo_convert_uuencode
00000000006b5d60 0000000000000030 d arginfo_cos
00000000006b5b80 0000000000000030 d arginfo_cosh
00000000006b8a80 0000000000000030 d arginfo_crc32
00000000006bae40 0000000000000030 d arginfo_current
000000000069ea80 0000000000000030 d arginfo_date_default_timezone_set
000000000069da00 0000000000000030 d arginfo_date_interval_construct
000000000069db80 0000000000000030 d arginfo_date_interval_create_from_date_string
000000000069e560 0000000000000030 d arginfo_date_method_add
000000000069dee0 0000000000000030 d arginfo_date_method_create_from_immutable
000000000069dea0 0000000000000030 d arginfo_date_method_create_from_mutable
000000000069e6a0 0000000000000030 d arginfo_date_method_format
000000000069dae0 0000000000000030 d arginfo_date_method_interval_format
000000000069e600 0000000000000030 d arginfo_date_method_modify
000000000069e4c0 0000000000000030 d arginfo_date_method_sub
000000000069df60 0000000000000030 d arginfo_date_method_timestamp_set
000000000069e3e0 0000000000000030 d arginfo_date_method_timezone_set
000000000069e3a0 0000000000000030 d arginfo_date_offset_get
000000000069e7a0 0000000000000030 d arginfo_date_parse
000000000069da40 0000000000000030 d arginfo_date_set_state
000000000069df20 0000000000000030 d arginfo_date_timestamp_get
000000000069e480 0000000000000030 d arginfo_date_timezone_get
00000000006b1bc0 0000000000000030 d arginfo_debug_zval_dump
00000000006b55e0 0000000000000030 d arginfo_decbin
00000000006b5560 0000000000000030 d arginfo_dechex
00000000006b55a0 0000000000000030 d arginfo_decoct
0000000000707540 0000000000000030 d arginfo_defined
00000000006b5720 0000000000000030 d arginfo_deg2rad
00000000006bb780 0000000000000030 d arginfo_dir
00000000006afca0 0000000000000030 d arginfo_dir___construct
00000000006afc60 0000000000000030 d arginfo_dir_it_seek
00000000006b7500 0000000000000030 d arginfo_disk_free_space
00000000006b7540 0000000000000030 d arginfo_disk_total_space
0000000000717ba0 0000000000000030 d arginfo_dl
00000000006b0ec0 0000000000000030 d arginfo_dllist_offsetGet
00000000006b0f00 0000000000000030 d arginfo_dllist_push
00000000006b0e20 0000000000000030 d arginfo_dllist_serialized
00000000006b0f40 0000000000000030 d arginfo_dllist_setiteratormode
0000000000707620 0000000000000030 d arginfo_each
00000000006baf40 0000000000000030 d arginfo_end
00000000007075e0 0000000000000030 d arginfo_error_reporting
00000000006b82e0 0000000000000030 d arginfo_escapeshellarg
00000000006b8320 0000000000000030 d arginfo_escapeshellcmd
00000000006b5920 0000000000000030 d arginfo_exp
00000000006b58e0 0000000000000030 d arginfo_expm1
0000000000706e20 0000000000000030 d arginfo_extension_loaded
00000000006b5fa0 0000000000000030 d arginfo_ezmlm_hash
00000000006b7f00 0000000000000030 d arginfo_fclose
00000000006b7e20 0000000000000030 d arginfo_feof
00000000006b7c20 0000000000000030 d arginfo_fflush
00000000006b7d80 0000000000000030 d arginfo_fgetc
00000000006b6e60 0000000000000030 d arginfo_file_exists
00000000006af4e0 0000000000000030 d arginfo_file_object_fgetss
00000000006af3e0 0000000000000030 d arginfo_file_object_fread
00000000006af3a0 0000000000000030 d arginfo_file_object_ftruncate
00000000006af360 0000000000000030 d arginfo_file_object_seek
00000000006af700 0000000000000030 d arginfo_file_object_setFlags
00000000006af6c0 0000000000000030 d arginfo_file_object_setMaxLineLen
00000000006b70e0 0000000000000030 d arginfo_fileatime
00000000006b7060 0000000000000030 d arginfo_filectime
00000000006b7120 0000000000000030 d arginfo_filegroup
00000000006b71e0 0000000000000030 d arginfo_fileinode
00000000006b70a0 0000000000000030 d arginfo_filemtime
00000000006b7160 0000000000000030 d arginfo_fileowner
00000000006b7220 0000000000000030 d arginfo_fileperms
00000000006b71a0 0000000000000030 d arginfo_filesize
00000000006b7020 0000000000000030 d arginfo_filetype
00000000006add40 0000000000000030 d arginfo_filter_it___construct
00000000006b18e0 0000000000000030 d arginfo_fixedarray_offsetGet
00000000006b1840 0000000000000030 d arginfo_fixedarray_setSize
00000000006b2480 0000000000000030 d arginfo_floatval
00000000006b5e40 0000000000000030 d arginfo_floor
00000000006b7980 0000000000000030 d arginfo_fpassthru
00000000006b7820 0000000000000030 d arginfo_fstat
00000000006b7ba0 0000000000000030 d arginfo_ftell
0000000000707760 0000000000000030 d arginfo_func_get_arg
0000000000707220 0000000000000030 d arginfo_function_exists
0000000000708560 0000000000000030 d arginfo_generator_send
0000000000708520 0000000000000030 d arginfo_generator_throw
00000000006b0820 0000000000000030 d arginfo_getHash
00000000006b9540 0000000000000030 d arginfo_get_cfg_var
0000000000707500 0000000000000030 d arginfo_get_class
00000000007073e0 0000000000000030 d arginfo_get_class_methods
0000000000707460 0000000000000030 d arginfo_get_class_vars
0000000000706f20 0000000000000030 d arginfo_get_defined_constants
0000000000707080 0000000000000030 d arginfo_get_defined_functions
0000000000706f60 0000000000000030 d arginfo_get_loaded_extensions
0000000000707420 0000000000000030 d arginfo_get_object_vars
0000000000706fe0 0000000000000030 d arginfo_get_resource_type
0000000000706fa0 0000000000000030 d arginfo_get_resources
000000000069eac0 0000000000000030 d arginfo_getdate
00000000006b8660 0000000000000030 d arginfo_gethostbyaddr
00000000006b8620 0000000000000030 d arginfo_gethostbyname
00000000006b85e0 0000000000000030 d arginfo_gethostbynamel
00000000006b8ec0 0000000000000030 d arginfo_getprotobyname
00000000006b8e80 0000000000000030 d arginfo_getprotobynumber
00000000006b51e0 0000000000000030 d arginfo_getrusage
00000000006b5220 0000000000000030 d arginfo_gettimeofday
00000000006b2580 0000000000000030 d arginfo_gettype
00000000006bb5e0 0000000000000030 d arginfo_header_register_callback
00000000006b6960 0000000000000030 d arginfo_header_remove
00000000006b1500 0000000000000030 d arginfo_heap_insert
00000000006b3de0 0000000000000030 d arginfo_hex2bin
00000000006b5660 0000000000000030 d arginfo_hexdec
00000000006b6700 0000000000000030 d arginfo_hrtime
00000000006b6740 0000000000000030 d arginfo_http_response_code
00000000006b8fc0 0000000000000030 d arginfo_ignore_user_abort
00000000006b6420 0000000000000030 d arginfo_image_type_to_mime_type
00000000006b9860 0000000000000030 d arginfo_inet_ntop
00000000006b9820 0000000000000030 d arginfo_inet_pton
00000000006b01a0 0000000000000030 d arginfo_info___construct
00000000006b0100 0000000000000030 d arginfo_info_optinalFileClass
00000000006b91a0 0000000000000030 d arginfo_ini_get
00000000006b90a0 0000000000000030 d arginfo_ini_restore
00000000006b97e0 0000000000000030 d arginfo_ip2long
00000000006b61c0 0000000000000030 d arginfo_iptcparse
00000000006b2240 0000000000000030 d arginfo_is_array
00000000006b2340 0000000000000030 d arginfo_is_bool
00000000006b20a0 0000000000000030 d arginfo_is_countable
00000000006b6ee0 0000000000000030 d arginfo_is_dir
00000000006b6f60 0000000000000030 d arginfo_is_executable
00000000006b6f20 0000000000000030 d arginfo_is_file
00000000006b5a40 0000000000000030 d arginfo_is_finite
00000000006b22c0 0000000000000030 d arginfo_is_float
00000000006b5a00 0000000000000030 d arginfo_is_infinite
00000000006b2300 0000000000000030 d arginfo_is_int
00000000006b20e0 0000000000000030 d arginfo_is_iterable
00000000006b6ea0 0000000000000030 d arginfo_is_link
00000000006b59c0 0000000000000030 d arginfo_is_nan
00000000006b23c0 0000000000000030 d arginfo_is_null
00000000006b21c0 0000000000000030 d arginfo_is_numeric
00000000006b2200 0000000000000030 d arginfo_is_object
00000000006b6fa0 0000000000000030 d arginfo_is_readable
00000000006b2380 0000000000000030 d arginfo_is_resource
00000000006b2180 0000000000000030 d arginfo_is_scalar
00000000006b2280 0000000000000030 d arginfo_is_string
00000000006b8da0 0000000000000030 d arginfo_is_uploaded_file
00000000006b6fe0 0000000000000030 d arginfo_is_writable
00000000006ac8a0 0000000000000030 d arginfo_iterator
00000000006ace80 0000000000000030 d arginfo_iterator_it___construct
00000000006bae00 0000000000000030 d arginfo_key
00000000006b32c0 0000000000000030 d arginfo_lcfirst
00000000006ad460 0000000000000030 d arginfo_limit_it_seek
00000000006b60a0 0000000000000030 d arginfo_linkinfo
00000000006b5800 0000000000000030 d arginfo_log10
00000000006b58a0 0000000000000030 d arginfo_log1p
00000000006b97a0 0000000000000030 d arginfo_long2ip
00000000006b6e20 0000000000000030 d arginfo_lstat
00000000006bad80 0000000000000030 d arginfo_max
00000000006b1a40 0000000000000030 d arginfo_memory_get_peak_usage
00000000006b1a80 0000000000000030 d arginfo_memory_get_usage
00000000006b5260 0000000000000030 d arginfo_microtime
00000000006badc0 0000000000000030 d arginfo_min
00000000006bb220 0000000000000030 d arginfo_natcasesort
00000000006bb260 0000000000000030 d arginfo_natsort
00000000006baec0 0000000000000030 d arginfo_next
00000000006b3ca0 0000000000000030 d arginfo_nl_langinfo
00000000006acd40 0000000000000030 d arginfo_norewind_it___construct
00000000006bb540 0000000000000030 d arginfo_ob_get_status
00000000006bb500 0000000000000030 d arginfo_ob_implicit_flush
00000000006b5620 0000000000000030 d arginfo_octdec
00000000006b07e0 0000000000000030 d arginfo_offsetGet
00000000006b00c0 0000000000000030 d arginfo_optinalSuffix
00000000006b3380 0000000000000030 d arginfo_ord
00000000006ada40 0000000000000030 d arginfo_parent_it___construct
00000000006b5080 0000000000000030 d arginfo_password_get_info
00000000006b7e60 0000000000000030 d arginfo_pclose
00000000006a9840 0000000000000030 d arginfo_pcntl_alarm
00000000006a9700 0000000000000030 d arginfo_pcntl_async_signals
00000000006a9ba0 0000000000000030 d arginfo_pcntl_signal_get_handler
00000000006a9740 0000000000000030 d arginfo_pcntl_strerror
00000000006a9a20 0000000000000030 d arginfo_pcntl_wifexited
00000000006a9960 0000000000000030 d arginfo_pcntl_wifexitstatus
00000000006a99a0 0000000000000030 d arginfo_pcntl_wifsignaled
00000000006a99e0 0000000000000030 d arginfo_pcntl_wifstopped
00000000006a98e0 0000000000000030 d arginfo_pcntl_wstopsig
00000000006a9920 0000000000000030 d arginfo_pcntl_wtermsig
00000000006b9240 0000000000000030 d arginfo_php_strip_whitespace
00000000006b6260 0000000000000030 d arginfo_php_uname
00000000006b62a0 0000000000000030 d arginfo_phpcredits
00000000006b6320 0000000000000030 d arginfo_phpinfo
00000000006b62e0 0000000000000030 d arginfo_phpversion
00000000006b1400 0000000000000030 d arginfo_pqueue_setflags
00000000006baf00 0000000000000030 d arginfo_prev
00000000006b4f20 0000000000000030 d arginfo_proc_close
00000000006b4ee0 0000000000000030 d arginfo_proc_get_status
00000000006b8260 0000000000000030 d arginfo_proc_nice
00000000006b9700 0000000000000030 d arginfo_putenv
00000000006b4de0 0000000000000030 d arginfo_quoted_printable_decode
00000000006b4da0 0000000000000030 d arginfo_quoted_printable_encode
00000000006b33c0 0000000000000030 d arginfo_quotemeta
00000000006afa20 0000000000000030 d arginfo_r_dir_hasChildren
00000000006af9e0 0000000000000030 d arginfo_r_dir_setFlags
00000000006b56e0 0000000000000030 d arginfo_rad2deg
00000000006b4ca0 0000000000000030 d arginfo_random_bytes
00000000006b1ee0 0000000000000030 d arginfo_rawurldecode
00000000006b1f20 0000000000000030 d arginfo_rawurlencode
00000000006b8760 0000000000000030 d arginfo_readdir
00000000006b60e0 0000000000000030 d arginfo_readlink
00000000006b75e0 0000000000000030 d arginfo_realpath
00000000006ae3a0 0000000000000030 d arginfo_recursive_it_getSubIterator
00000000006ae360 0000000000000030 d arginfo_recursive_it_setMaxDepth
00000000006adfe0 0000000000000030 d arginfo_recursive_tree_it_setPostfix
00000000006ab7c0 0000000000000030 d arginfo_reflection_class___construct
00000000006ab500 0000000000000030 d arginfo_reflection_class_getConstant
00000000006ab680 0000000000000030 d arginfo_reflection_class_getMethod
00000000006ab640 0000000000000030 d arginfo_reflection_class_getMethods
00000000006ab580 0000000000000030 d arginfo_reflection_class_getProperties
00000000006ab5c0 0000000000000030 d arginfo_reflection_class_getProperty
00000000006ab540 0000000000000030 d arginfo_reflection_class_hasConstant
00000000006ab6c0 0000000000000030 d arginfo_reflection_class_hasMethod
00000000006ab600 0000000000000030 d arginfo_reflection_class_hasProperty
00000000006ab3c0 0000000000000030 d arginfo_reflection_class_implementsInterface
00000000006ab4c0 0000000000000030 d arginfo_reflection_class_isInstance
00000000006ab400 0000000000000030 d arginfo_reflection_class_isSubclassOf
00000000006ab480 0000000000000030 d arginfo_reflection_class_newInstance
00000000006ab440 0000000000000030 d arginfo_reflection_class_newInstanceArgs
00000000006aa0a0 0000000000000030 d arginfo_reflection_extension___construct
00000000006ac320 0000000000000030 d arginfo_reflection_function___construct
00000000006ac2e0 0000000000000030 d arginfo_reflection_function_invoke
00000000006ac2a0 0000000000000030 d arginfo_reflection_function_invokeArgs
00000000006abe00 0000000000000030 d arginfo_reflection_generator___construct
00000000006abdc0 0000000000000030 d arginfo_reflection_generator_trace
00000000006ac4e0 0000000000000030 d arginfo_reflection_getModifierNames
00000000006abac0 0000000000000030 d arginfo_reflection_method_getClosure
00000000006abb00 0000000000000030 d arginfo_reflection_method_setAccessible
00000000006aac40 0000000000000030 d arginfo_reflection_object___construct
00000000006aaae0 0000000000000030 d arginfo_reflection_property_getValue
00000000006aaa40 0000000000000030 d arginfo_reflection_property_setAccessible
00000000006a9e60 0000000000000030 d arginfo_reflection_zend_extension___construct
00000000006ad840 0000000000000030 d arginfo_regex_it_set_flags
00000000006ad880 0000000000000030 d arginfo_regex_it_set_mode
00000000006ad800 0000000000000030 d arginfo_regex_it_set_preg_flags
00000000006bae80 0000000000000030 d arginfo_reset
00000000006b7be0 0000000000000030 d arginfo_rewind
00000000006b87a0 0000000000000030 d arginfo_rewinddir
00000000006ad540 0000000000000030 d arginfo_seekable_it_seek
0000000000707920 0000000000000030 d arginfo_serializable_serialize
00000000006b1b20 0000000000000030 d arginfo_serialize
00000000006b0860 0000000000000030 d arginfo_setInfo
00000000007070c0 0000000000000030 d arginfo_set_exception_handler
00000000006b9060 0000000000000030 d arginfo_set_include_path
00000000006bb620 0000000000000030 d arginfo_set_time_limit
00000000006b82a0 0000000000000030 d arginfo_shell_exec
00000000006baa00 0000000000000030 d arginfo_shuffle
00000000006b5da0 0000000000000030 d arginfo_sin
00000000006b5bc0 0000000000000030 d arginfo_sinh
00000000006b9660 0000000000000030 d arginfo_sleep
00000000006b4b40 0000000000000030 d arginfo_soundex
00000000006ac640 0000000000000030 d arginfo_spl_autoload_call
00000000006ac680 0000000000000030 d arginfo_spl_autoload_extensions
00000000006ac5a0 0000000000000030 d arginfo_spl_autoload_unregister
00000000006ac560 0000000000000030 d arginfo_spl_object_hash
00000000006ac520 0000000000000030 d arginfo_spl_object_id
00000000006b1920 0000000000000030 d arginfo_splfixedarray_construct
00000000006b57c0 0000000000000030 d arginfo_sqrt
00000000006b6de0 0000000000000030 d arginfo_stat
00000000006b2960 0000000000000030 d arginfo_str_rot13
00000000006b2920 0000000000000030 d arginfo_str_shuffle
00000000006b1e40 0000000000000030 d arginfo_stream_bucket_make_writeable
00000000006b4360 0000000000000030 d arginfo_stream_context_get_default
00000000006b44c0 0000000000000030 d arginfo_stream_context_get_options
00000000006b43a0 0000000000000030 d arginfo_stream_context_get_params
00000000006b4320 0000000000000030 d arginfo_stream_context_set_default
00000000006b4180 0000000000000030 d arginfo_stream_filter_remove
00000000006b46a0 0000000000000030 d arginfo_stream_get_meta_data
00000000006b4620 0000000000000030 d arginfo_stream_is_local
00000000006b45a0 0000000000000030 d arginfo_stream_isatty
00000000006b4660 0000000000000030 d arginfo_stream_resolve_include_path
00000000006b45e0 0000000000000030 d arginfo_stream_supports_lock
00000000006bb3c0 0000000000000030 d arginfo_stream_wrapper_restore
00000000006bb400 0000000000000030 d arginfo_stream_wrapper_unregister
00000000006b3080 0000000000000030 d arginfo_stripcslashes
00000000006b3040 0000000000000030 d arginfo_stripslashes
0000000000707720 0000000000000030 d arginfo_strlen
00000000006b31c0 0000000000000030 d arginfo_strrev
00000000006b3900 0000000000000030 d arginfo_strtolower
00000000006b3940 0000000000000030 d arginfo_strtoupper
00000000006b2440 0000000000000030 d arginfo_strval
00000000006b5d20 0000000000000030 d arginfo_tan
00000000006b5b40 0000000000000030 d arginfo_tanh
00000000006aeee0 0000000000000030 d arginfo_temp_file_object___construct
00000000006b9580 0000000000000030 d arginfo_time_sleep_until
000000000069dc20 0000000000000030 d arginfo_timezone_location_get
000000000069dd20 0000000000000030 d arginfo_timezone_method_offset_get
000000000069de20 0000000000000030 d arginfo_timezone_name_get
000000000069de60 0000000000000030 d arginfo_timezone_open
00000000006b3300 0000000000000030 d arginfo_ucfirst
00000000006b79c0 0000000000000030 d arginfo_umask
00000000006b8de0 0000000000000030 d arginfo_unregister_tick_function
00000000006b1f60 0000000000000030 d arginfo_urldecode
00000000006b1fa0 0000000000000030 d arginfo_urlencode
00000000006b9620 0000000000000030 d arginfo_usleep
00000000006b2680 0000000000000030 d arginfo_utf8_decode
00000000006b26c0 0000000000000030 d arginfo_utf8_encode
00000000006b1c00 0000000000000030 d arginfo_var_dump
0000000000726500 0000000000000030 b gc_globals
00000000006bb960 0000000000000030 d ht_bucket_be_apos_000
00000000006bb920 0000000000000030 d ht_bucket_be_apos_003
00000000006bb8e0 0000000000000030 d ht_bucket_be_apos_005
00000000006bb8a0 0000000000000030 d ht_bucket_be_apos_008
00000000006bb860 0000000000000030 d ht_bucket_be_apos_00E
00000000006bc140 0000000000000030 d ht_bucket_be_noapos_000
00000000006bc100 0000000000000030 d ht_bucket_be_noapos_003
00000000006bc0c0 0000000000000030 d ht_bucket_be_noapos_004
00000000006bc080 0000000000000030 d ht_bucket_be_noapos_005
00000000006bc040 0000000000000030 d ht_bucket_be_noapos_00E
00000000006c0d80 0000000000000030 d ht_bucket_html4_000
00000000006c0c80 0000000000000030 d ht_bucket_html4_008
00000000006c0c40 0000000000000030 d ht_bucket_html4_00B
00000000006c0c00 0000000000000030 d ht_bucket_html4_00E
00000000006c0bc0 0000000000000030 d ht_bucket_html4_012
00000000006c0b80 0000000000000030 d ht_bucket_html4_016
00000000006c0b40 0000000000000030 d ht_bucket_html4_018
00000000006c0b00 0000000000000030 d ht_bucket_html4_01B
00000000006c0a60 0000000000000030 d ht_bucket_html4_023
00000000006c0a20 0000000000000030 d ht_bucket_html4_026
00000000006c09e0 0000000000000030 d ht_bucket_html4_027
00000000006c0940 0000000000000030 d ht_bucket_html4_02C
00000000006c0900 0000000000000030 d ht_bucket_html4_02F
00000000006c0860 0000000000000030 d ht_bucket_html4_034
00000000006c0820 0000000000000030 d ht_bucket_html4_036
00000000006c07e0 0000000000000030 d ht_bucket_html4_03B
00000000006c07a0 0000000000000030 d ht_bucket_html4_03C
00000000006c0760 0000000000000030 d ht_bucket_html4_040
00000000006c0720 0000000000000030 d ht_bucket_html4_046
00000000006c06e0 0000000000000030 d ht_bucket_html4_047
00000000006c06a0 0000000000000030 d ht_bucket_html4_04B
00000000006c0660 0000000000000030 d ht_bucket_html4_04F
00000000006c0620 0000000000000030 d ht_bucket_html4_050
00000000006c05e0 0000000000000030 d ht_bucket_html4_051
00000000006c0540 0000000000000030 d ht_bucket_html4_056
00000000006c0500 0000000000000030 d ht_bucket_html4_059
00000000006c04c0 0000000000000030 d ht_bucket_html4_05B
00000000006c0480 0000000000000030 d ht_bucket_html4_05C
00000000006c0440 0000000000000030 d ht_bucket_html4_064
00000000006c0400 0000000000000030 d ht_bucket_html4_067
00000000006c03c0 0000000000000030 d ht_bucket_html4_069
00000000006c0380 0000000000000030 d ht_bucket_html4_071
00000000006c0340 0000000000000030 d ht_bucket_html4_072
00000000006c0300 0000000000000030 d ht_bucket_html4_074
00000000006c02c0 0000000000000030 d ht_bucket_html4_076
00000000006c0280 0000000000000030 d ht_bucket_html4_078
00000000006c0240 0000000000000030 d ht_bucket_html4_07C
00000000006c0200 0000000000000030 d ht_bucket_html4_089
00000000006c01c0 0000000000000030 d ht_bucket_html4_08D
00000000006c00c0 0000000000000030 d ht_bucket_html4_092
00000000006c0080 0000000000000030 d ht_bucket_html4_096
00000000006c0040 0000000000000030 d ht_bucket_html4_098
00000000006bffa0 0000000000000030 d ht_bucket_html4_09D
00000000006bff60 0000000000000030 d ht_bucket_html4_0A0
00000000006bff20 0000000000000030 d ht_bucket_html4_0A5
00000000006bfe20 0000000000000030 d ht_bucket_html4_0AA
00000000006bfd80 0000000000000030 d ht_bucket_html4_0B0
00000000006bfc80 0000000000000030 d ht_bucket_html4_0B8
00000000006bfc40 0000000000000030 d ht_bucket_html4_0B9
00000000006bfc00 0000000000000030 d ht_bucket_html4_0BA
00000000006bfbc0 0000000000000030 d ht_bucket_html4_0BC
00000000006bfb80 0000000000000030 d ht_bucket_html4_0C2
00000000006bfb40 0000000000000030 d ht_bucket_html4_0C4
00000000006bfb00 0000000000000030 d ht_bucket_html4_0C5
00000000006bfa60 0000000000000030 d ht_bucket_html4_0C7
00000000006bf900 0000000000000030 d ht_bucket_html4_0D8
00000000006bf8c0 0000000000000030 d ht_bucket_html4_0DB
00000000006bf880 0000000000000030 d ht_bucket_html4_0DC
00000000006bf840 0000000000000030 d ht_bucket_html4_0E2
00000000006bf800 0000000000000030 d ht_bucket_html4_0E5
00000000006bf7c0 0000000000000030 d ht_bucket_html4_0E6
00000000006bf720 0000000000000030 d ht_bucket_html4_0EB
00000000006bf6e0 0000000000000030 d ht_bucket_html4_0EE
00000000006bf6a0 0000000000000030 d ht_bucket_html4_0F9
00000000006bf660 0000000000000030 d ht_bucket_html4_0FA
00000000006bf5c0 0000000000000030 d ht_bucket_html4_0FE
00000000006bf580 0000000000000030 d ht_bucket_html4_0FF
00000000006bf540 0000000000000030 d ht_bucket_html4_100
00000000006bf500 0000000000000030 d ht_bucket_html4_105
00000000006bf460 0000000000000030 d ht_bucket_html4_108
00000000006bf420 0000000000000030 d ht_bucket_html4_10D
00000000006bf3e0 0000000000000030 d ht_bucket_html4_10E
00000000006bf3a0 0000000000000030 d ht_bucket_html4_10F
00000000006bf300 0000000000000030 d ht_bucket_html4_113
00000000006bf2c0 0000000000000030 d ht_bucket_html4_117
00000000006bf280 0000000000000030 d ht_bucket_html4_118
00000000006bf240 0000000000000030 d ht_bucket_html4_11A
00000000006bf1a0 0000000000000030 d ht_bucket_html4_11E
00000000006bf160 0000000000000030 d ht_bucket_html4_11F
00000000006bf120 0000000000000030 d ht_bucket_html4_125
00000000006bf0e0 0000000000000030 d ht_bucket_html4_126
00000000006bf0a0 0000000000000030 d ht_bucket_html4_12E
00000000006bf000 0000000000000030 d ht_bucket_html4_135
00000000006befc0 0000000000000030 d ht_bucket_html4_136
00000000006bef80 0000000000000030 d ht_bucket_html4_138
00000000006bef40 0000000000000030 d ht_bucket_html4_13A
00000000006bef00 0000000000000030 d ht_bucket_html4_13F
00000000006beec0 0000000000000030 d ht_bucket_html4_143
00000000006bee80 0000000000000030 d ht_bucket_html4_149
00000000006bee40 0000000000000030 d ht_bucket_html4_14B
00000000006beda0 0000000000000030 d ht_bucket_html4_150
00000000006bed60 0000000000000030 d ht_bucket_html4_153
00000000006bed20 0000000000000030 d ht_bucket_html4_154
00000000006bece0 0000000000000030 d ht_bucket_html4_155
00000000006beca0 0000000000000030 d ht_bucket_html4_156
00000000006bec60 0000000000000030 d ht_bucket_html4_158
00000000006bec20 0000000000000030 d ht_bucket_html4_15C
00000000006bebe0 0000000000000030 d ht_bucket_html4_15F
00000000006beba0 0000000000000030 d ht_bucket_html4_160
00000000006beb60 0000000000000030 d ht_bucket_html4_163
00000000006beb20 0000000000000030 d ht_bucket_html4_166
00000000006beae0 0000000000000030 d ht_bucket_html4_16B
00000000006beaa0 0000000000000030 d ht_bucket_html4_16C
00000000006bea60 0000000000000030 d ht_bucket_html4_16E
00000000006be960 0000000000000030 d ht_bucket_html4_173
00000000006be920 0000000000000030 d ht_bucket_html4_175
00000000006be8e0 0000000000000030 d ht_bucket_html4_176
00000000006be8a0 0000000000000030 d ht_bucket_html4_178
00000000006be860 0000000000000030 d ht_bucket_html4_17C
00000000006be7c0 0000000000000030 d ht_bucket_html4_181
00000000006be780 0000000000000030 d ht_bucket_html4_183
00000000006be680 0000000000000030 d ht_bucket_html4_18C
00000000006be640 0000000000000030 d ht_bucket_html4_18D
00000000006be600 0000000000000030 d ht_bucket_html4_18E
00000000006be540 0000000000000030 d ht_bucket_html4_194
00000000006be500 0000000000000030 d ht_bucket_html4_196
00000000006be4c0 0000000000000030 d ht_bucket_html4_197
00000000006be3c0 0000000000000030 d ht_bucket_html4_19D
00000000006be2c0 0000000000000030 d ht_bucket_html4_1A1
00000000006be220 0000000000000030 d ht_bucket_html4_1A4
00000000006be180 0000000000000030 d ht_bucket_html4_1A7
00000000006be140 0000000000000030 d ht_bucket_html4_1A8
00000000006be100 0000000000000030 d ht_bucket_html4_1A9
00000000006be0c0 0000000000000030 d ht_bucket_html4_1AC
00000000006be020 0000000000000030 d ht_bucket_html4_1AF
00000000006bdfe0 0000000000000030 d ht_bucket_html4_1B0
00000000006bde80 0000000000000030 d ht_bucket_html4_1BE
00000000006bdde0 0000000000000030 d ht_bucket_html4_1C2
00000000006bdda0 0000000000000030 d ht_bucket_html4_1C4
00000000006bdd60 0000000000000030 d ht_bucket_html4_1C9
00000000006bdc60 0000000000000030 d ht_bucket_html4_1D0
00000000006bdc20 0000000000000030 d ht_bucket_html4_1D4
00000000006bdbe0 0000000000000030 d ht_bucket_html4_1D7
00000000006bdba0 0000000000000030 d ht_bucket_html4_1D8
00000000006bdb60 0000000000000030 d ht_bucket_html4_1D9
00000000006bdb20 0000000000000030 d ht_bucket_html4_1DD
00000000006bda20 0000000000000030 d ht_bucket_html4_1E8
00000000006bd9e0 0000000000000030 d ht_bucket_html4_1E9
00000000006bd9a0 0000000000000030 d ht_bucket_html4_1ED
00000000006bd960 0000000000000030 d ht_bucket_html4_1EF
00000000006bd920 0000000000000030 d ht_bucket_html4_1F1
00000000006bd8e0 0000000000000030 d ht_bucket_html4_1F2
00000000006bd8a0 0000000000000030 d ht_bucket_html4_1F3
00000000006bd860 0000000000000030 d ht_bucket_html4_1F4
00000000006bd820 0000000000000030 d ht_bucket_html4_1F6
00000000006bd7e0 0000000000000030 d ht_bucket_html4_1F8
00000000006bd7a0 0000000000000030 d ht_bucket_html4_1F9
00000000006ee3a0 0000000000000030 d ht_bucket_html5_003
00000000006ee360 0000000000000030 d ht_bucket_html5_005
00000000006ee2c0 0000000000000030 d ht_bucket_html5_00D
00000000006ee280 0000000000000030 d ht_bucket_html5_00F
00000000006ee240 0000000000000030 d ht_bucket_html5_017
00000000006ee200 0000000000000030 d ht_bucket_html5_020
00000000006ee160 0000000000000030 d ht_bucket_html5_024
00000000006ee0c0 0000000000000030 d ht_bucket_html5_028
00000000006ee080 0000000000000030 d ht_bucket_html5_029
00000000006ee040 0000000000000030 d ht_bucket_html5_02A
00000000006edfa0 0000000000000030 d ht_bucket_html5_02C
00000000006edf60 0000000000000030 d ht_bucket_html5_02E
00000000006edec0 0000000000000030 d ht_bucket_html5_034
00000000006ede80 0000000000000030 d ht_bucket_html5_038
00000000006edde0 0000000000000030 d ht_bucket_html5_047
00000000006edda0 0000000000000030 d ht_bucket_html5_04C
00000000006edd00 0000000000000030 d ht_bucket_html5_051
00000000006edcc0 0000000000000030 d ht_bucket_html5_059
00000000006edc20 0000000000000030 d ht_bucket_html5_05F
00000000006edbe0 0000000000000030 d ht_bucket_html5_060
00000000006edba0 0000000000000030 d ht_bucket_html5_061
00000000006edb60 0000000000000030 d ht_bucket_html5_063
00000000006edb20 0000000000000030 d ht_bucket_html5_064
00000000006edae0 0000000000000030 d ht_bucket_html5_065
00000000006edaa0 0000000000000030 d ht_bucket_html5_069
00000000006eda60 0000000000000030 d ht_bucket_html5_06A
00000000006eda20 0000000000000030 d ht_bucket_html5_06D
00000000006ed980 0000000000000030 d ht_bucket_html5_06F
00000000006ed940 0000000000000030 d ht_bucket_html5_071
00000000006ed900 0000000000000030 d ht_bucket_html5_073
00000000006ed8c0 0000000000000030 d ht_bucket_html5_074
00000000006ed880 0000000000000030 d ht_bucket_html5_07A
00000000006ed840 0000000000000030 d ht_bucket_html5_07B
00000000006ed800 0000000000000030 d ht_bucket_html5_07C
00000000006ed7c0 0000000000000030 d ht_bucket_html5_07F
00000000006ed780 0000000000000030 d ht_bucket_html5_082
00000000006ed740 0000000000000030 d ht_bucket_html5_084
00000000006ed700 0000000000000030 d ht_bucket_html5_085
00000000006ed6c0 0000000000000030 d ht_bucket_html5_086
00000000006ed680 0000000000000030 d ht_bucket_html5_088
00000000006ed640 0000000000000030 d ht_bucket_html5_089
00000000006ed600 0000000000000030 d ht_bucket_html5_08C
00000000006ed5c0 0000000000000030 d ht_bucket_html5_08E
00000000006ed4c0 0000000000000030 d ht_bucket_html5_097
00000000006ed420 0000000000000030 d ht_bucket_html5_0A4
00000000006ed3e0 0000000000000030 d ht_bucket_html5_0A6
00000000006ed3a0 0000000000000030 d ht_bucket_html5_0AB
00000000006ed360 0000000000000030 d ht_bucket_html5_0AC
00000000006ed320 0000000000000030 d ht_bucket_html5_0AD
00000000006ed2e0 0000000000000030 d ht_bucket_html5_0AE
00000000006ed2a0 0000000000000030 d ht_bucket_html5_0AF
00000000006ed200 0000000000000030 d ht_bucket_html5_0B2
00000000006ed0a0 0000000000000030 d ht_bucket_html5_0C0
00000000006ed060 0000000000000030 d ht_bucket_html5_0C4
00000000006ecfc0 0000000000000030 d ht_bucket_html5_0D1
00000000006ecf80 0000000000000030 d ht_bucket_html5_0D2
00000000006ecf40 0000000000000030 d ht_bucket_html5_0D3
00000000006ecf00 0000000000000030 d ht_bucket_html5_0D5
00000000006ecec0 0000000000000030 d ht_bucket_html5_0DF
00000000006ece80 0000000000000030 d ht_bucket_html5_0E5
00000000006ecde0 0000000000000030 d ht_bucket_html5_0E8
00000000006ecda0 0000000000000030 d ht_bucket_html5_0EC
00000000006ecd60 0000000000000030 d ht_bucket_html5_0EF
00000000006ecd20 0000000000000030 d ht_bucket_html5_0F3
00000000006ecce0 0000000000000030 d ht_bucket_html5_0F4
00000000006ecca0 0000000000000030 d ht_bucket_html5_0FA
00000000006ecc60 0000000000000030 d ht_bucket_html5_0FB
00000000006ecc20 0000000000000030 d ht_bucket_html5_0FD
00000000006ecbe0 0000000000000030 d ht_bucket_html5_0FE
00000000006ecba0 0000000000000030 d ht_bucket_html5_100
00000000006ecb60 0000000000000030 d ht_bucket_html5_101
00000000006ecac0 0000000000000030 d ht_bucket_html5_105
00000000006eca80 0000000000000030 d ht_bucket_html5_106
00000000006eca40 0000000000000030 d ht_bucket_html5_109
00000000006eca00 0000000000000030 d ht_bucket_html5_10A
00000000006ec9c0 0000000000000030 d ht_bucket_html5_10B
00000000006ec980 0000000000000030 d ht_bucket_html5_10D
00000000006ec820 0000000000000030 d ht_bucket_html5_111
00000000006ec7e0 0000000000000030 d ht_bucket_html5_113
00000000006ec7a0 0000000000000030 d ht_bucket_html5_116
00000000006ec760 0000000000000030 d ht_bucket_html5_11B
00000000006ec6c0 0000000000000030 d ht_bucket_html5_11E
00000000006ec680 0000000000000030 d ht_bucket_html5_121
00000000006ec640 0000000000000030 d ht_bucket_html5_124
00000000006ec600 0000000000000030 d ht_bucket_html5_129
00000000006ec5c0 0000000000000030 d ht_bucket_html5_12A
00000000006ec4c0 0000000000000030 d ht_bucket_html5_12F
00000000006ec480 0000000000000030 d ht_bucket_html5_130
00000000006ec440 0000000000000030 d ht_bucket_html5_134
00000000006ec400 0000000000000030 d ht_bucket_html5_135
00000000006ec3c0 0000000000000030 d ht_bucket_html5_137
00000000006ec2c0 0000000000000030 d ht_bucket_html5_145
00000000006ec280 0000000000000030 d ht_bucket_html5_147
00000000006ec240 0000000000000030 d ht_bucket_html5_149
00000000006ec200 0000000000000030 d ht_bucket_html5_14B
00000000006ec1c0 0000000000000030 d ht_bucket_html5_14C
00000000006ec180 0000000000000030 d ht_bucket_html5_14E
00000000006ec140 0000000000000030 d ht_bucket_html5_14F
00000000006ec0a0 0000000000000030 d ht_bucket_html5_159
00000000006ec060 0000000000000030 d ht_bucket_html5_15B
00000000006ec020 0000000000000030 d ht_bucket_html5_15E
00000000006ebfe0 0000000000000030 d ht_bucket_html5_15F
00000000006ebfa0 0000000000000030 d ht_bucket_html5_161
00000000006ebf60 0000000000000030 d ht_bucket_html5_164
00000000006ebf20 0000000000000030 d ht_bucket_html5_165
00000000006ebee0 0000000000000030 d ht_bucket_html5_168
00000000006ebea0 0000000000000030 d ht_bucket_html5_16A
00000000006ebe60 0000000000000030 d ht_bucket_html5_170
00000000006ebdc0 0000000000000030 d ht_bucket_html5_17A
00000000006ebd80 0000000000000030 d ht_bucket_html5_17B
00000000006ebd40 0000000000000030 d ht_bucket_html5_17C
00000000006ebd00 0000000000000030 d ht_bucket_html5_17F
00000000006ebcc0 0000000000000030 d ht_bucket_html5_181
00000000006ebc80 0000000000000030 d ht_bucket_html5_189
00000000006ebc40 0000000000000030 d ht_bucket_html5_18B
00000000006ebba0 0000000000000030 d ht_bucket_html5_18E
00000000006ebb60 0000000000000030 d ht_bucket_html5_18F
00000000006ebb20 0000000000000030 d ht_bucket_html5_190
00000000006ebae0 0000000000000030 d ht_bucket_html5_191
00000000006ebaa0 0000000000000030 d ht_bucket_html5_193
00000000006eba60 0000000000000030 d ht_bucket_html5_195
00000000006eba20 0000000000000030 d ht_bucket_html5_19A
00000000006eb9e0 0000000000000030 d ht_bucket_html5_19C
00000000006eb940 0000000000000030 d ht_bucket_html5_1A0
00000000006eb900 0000000000000030 d ht_bucket_html5_1A1
00000000006eb860 0000000000000030 d ht_bucket_html5_1A3
00000000006eb820 0000000000000030 d ht_bucket_html5_1A4
00000000006eb7e0 0000000000000030 d ht_bucket_html5_1A5
00000000006eb7a0 0000000000000030 d ht_bucket_html5_1A8
00000000006eb760 0000000000000030 d ht_bucket_html5_1AB
00000000006eb720 0000000000000030 d ht_bucket_html5_1AC
00000000006eb680 0000000000000030 d ht_bucket_html5_1AE
00000000006eb640 0000000000000030 d ht_bucket_html5_1AF
00000000006eb600 0000000000000030 d ht_bucket_html5_1B0
00000000006eb5c0 0000000000000030 d ht_bucket_html5_1B2
00000000006eb580 0000000000000030 d ht_bucket_html5_1B5
00000000006eb540 0000000000000030 d ht_bucket_html5_1B9
00000000006eb500 0000000000000030 d ht_bucket_html5_1BD
00000000006eb4c0 0000000000000030 d ht_bucket_html5_1BE
00000000006eb480 0000000000000030 d ht_bucket_html5_1C0
00000000006eb440 0000000000000030 d ht_bucket_html5_1C1
00000000006eb400 0000000000000030 d ht_bucket_html5_1C4
00000000006eb3c0 0000000000000030 d ht_bucket_html5_1C6
00000000006eb380 0000000000000030 d ht_bucket_html5_1C9
00000000006eb340 0000000000000030 d ht_bucket_html5_1CA
00000000006eb300 0000000000000030 d ht_bucket_html5_1CD
00000000006eb2c0 0000000000000030 d ht_bucket_html5_1CE
00000000006eb280 0000000000000030 d ht_bucket_html5_1D0
00000000006eb240 0000000000000030 d ht_bucket_html5_1D1
00000000006eb200 0000000000000030 d ht_bucket_html5_1D2
00000000006eb160 0000000000000030 d ht_bucket_html5_1D5
00000000006eb120 0000000000000030 d ht_bucket_html5_1D6
00000000006eb0e0 0000000000000030 d ht_bucket_html5_1D8
00000000006eb0a0 0000000000000030 d ht_bucket_html5_1D9
00000000006eb060 0000000000000030 d ht_bucket_html5_1DA
00000000006eb020 0000000000000030 d ht_bucket_html5_1DF
00000000006eaf80 0000000000000030 d ht_bucket_html5_1E1
00000000006eaf40 0000000000000030 d ht_bucket_html5_1E5
00000000006eaf00 0000000000000030 d ht_bucket_html5_1E6
00000000006eae60 0000000000000030 d ht_bucket_html5_1E8
00000000006eae20 0000000000000030 d ht_bucket_html5_1EB
00000000006ead20 0000000000000030 d ht_bucket_html5_1F2
00000000006eace0 0000000000000030 d ht_bucket_html5_1F4
00000000006eac40 0000000000000030 d ht_bucket_html5_1F9
00000000006eab40 0000000000000030 d ht_bucket_html5_1FE
00000000006eab00 0000000000000030 d ht_bucket_html5_1FF
00000000006eaac0 0000000000000030 d ht_bucket_html5_205
00000000006eaa20 0000000000000030 d ht_bucket_html5_20E
00000000006ea9e0 0000000000000030 d ht_bucket_html5_212
00000000006ea9a0 0000000000000030 d ht_bucket_html5_213
00000000006ea900 0000000000000030 d ht_bucket_html5_21D
00000000006ea8c0 0000000000000030 d ht_bucket_html5_220
00000000006ea820 0000000000000030 d ht_bucket_html5_227
00000000006ea7e0 0000000000000030 d ht_bucket_html5_229
00000000006ea740 0000000000000030 d ht_bucket_html5_22C
00000000006ea700 0000000000000030 d ht_bucket_html5_22D
00000000006ea660 0000000000000030 d ht_bucket_html5_230
00000000006ea620 0000000000000030 d ht_bucket_html5_232
00000000006ea5e0 0000000000000030 d ht_bucket_html5_234
00000000006ea540 0000000000000030 d ht_bucket_html5_23C
00000000006ea500 0000000000000030 d ht_bucket_html5_23D
00000000006ea4c0 0000000000000030 d ht_bucket_html5_23E
00000000006ea420 0000000000000030 d ht_bucket_html5_241
00000000006ea3e0 0000000000000030 d ht_bucket_html5_242
00000000006ea3a0 0000000000000030 d ht_bucket_html5_246
00000000006ea360 0000000000000030 d ht_bucket_html5_249
00000000006ea240 0000000000000030 d ht_bucket_html5_24D
00000000006ea200 0000000000000030 d ht_bucket_html5_251
00000000006ea1c0 0000000000000030 d ht_bucket_html5_252
00000000006ea180 0000000000000030 d ht_bucket_html5_257
00000000006ea140 0000000000000030 d ht_bucket_html5_25A
00000000006ea100 0000000000000030 d ht_bucket_html5_25B
00000000006ea000 0000000000000030 d ht_bucket_html5_263
00000000006e9fc0 0000000000000030 d ht_bucket_html5_26A
00000000006e9f20 0000000000000030 d ht_bucket_html5_26E
00000000006e9ee0 0000000000000030 d ht_bucket_html5_274
00000000006e9ea0 0000000000000030 d ht_bucket_html5_277
00000000006e9d40 0000000000000030 d ht_bucket_html5_283
00000000006e9d00 0000000000000030 d ht_bucket_html5_28A
00000000006e9cc0 0000000000000030 d ht_bucket_html5_294
00000000006e9c80 0000000000000030 d ht_bucket_html5_297
00000000006e9c40 0000000000000030 d ht_bucket_html5_298
00000000006e9c00 0000000000000030 d ht_bucket_html5_29D
00000000006e9b00 0000000000000030 d ht_bucket_html5_2A9
00000000006e9a60 0000000000000030 d ht_bucket_html5_2B1
00000000006e9a20 0000000000000030 d ht_bucket_html5_2B2
00000000006e99e0 0000000000000030 d ht_bucket_html5_2B3
00000000006e9880 0000000000000030 d ht_bucket_html5_2C5
00000000006e9840 0000000000000030 d ht_bucket_html5_2CE
00000000006e9800 0000000000000030 d ht_bucket_html5_2CF
00000000006e97c0 0000000000000030 d ht_bucket_html5_2D3
00000000006e9780 0000000000000030 d ht_bucket_html5_2DA
00000000006e9680 0000000000000030 d ht_bucket_html5_2E3
00000000006e9640 0000000000000030 d ht_bucket_html5_2E4
00000000006e9600 0000000000000030 d ht_bucket_html5_2EB
00000000006e95c0 0000000000000030 d ht_bucket_html5_2EC
00000000006e9580 0000000000000030 d ht_bucket_html5_2EE
00000000006e9540 0000000000000030 d ht_bucket_html5_2F0
00000000006e9500 0000000000000030 d ht_bucket_html5_2F2
00000000006e94c0 0000000000000030 d ht_bucket_html5_2F8
00000000006e9420 0000000000000030 d ht_bucket_html5_301
00000000006e93e0 0000000000000030 d ht_bucket_html5_304
00000000006e9340 0000000000000030 d ht_bucket_html5_308
00000000006e92a0 0000000000000030 d ht_bucket_html5_30F
00000000006e9140 0000000000000030 d ht_bucket_html5_319
00000000006e9100 0000000000000030 d ht_bucket_html5_31A
00000000006e90c0 0000000000000030 d ht_bucket_html5_31B
00000000006e9080 0000000000000030 d ht_bucket_html5_326
00000000006e9040 0000000000000030 d ht_bucket_html5_329
00000000006e8fa0 0000000000000030 d ht_bucket_html5_32D
00000000006e8f60 0000000000000030 d ht_bucket_html5_330
00000000006e8f20 0000000000000030 d ht_bucket_html5_331
00000000006e8ee0 0000000000000030 d ht_bucket_html5_336
00000000006e8ea0 0000000000000030 d ht_bucket_html5_338
00000000006e8e60 0000000000000030 d ht_bucket_html5_33B
00000000006e8e20 0000000000000030 d ht_bucket_html5_33F
00000000006e8de0 0000000000000030 d ht_bucket_html5_340
00000000006e8da0 0000000000000030 d ht_bucket_html5_341
00000000006e8d60 0000000000000030 d ht_bucket_html5_347
00000000006e8cc0 0000000000000030 d ht_bucket_html5_350
00000000006e8c80 0000000000000030 d ht_bucket_html5_356
00000000006e8c40 0000000000000030 d ht_bucket_html5_358
00000000006e8ba0 0000000000000030 d ht_bucket_html5_35D
00000000006e8b00 0000000000000030 d ht_bucket_html5_361
00000000006e8a60 0000000000000030 d ht_bucket_html5_365
00000000006e89c0 0000000000000030 d ht_bucket_html5_369
00000000006e88c0 0000000000000030 d ht_bucket_html5_36D
00000000006e8880 0000000000000030 d ht_bucket_html5_36E
00000000006e87e0 0000000000000030 d ht_bucket_html5_372
00000000006e87a0 0000000000000030 d ht_bucket_html5_374
00000000006e8700 0000000000000030 d ht_bucket_html5_37A
00000000006e86c0 0000000000000030 d ht_bucket_html5_37C
00000000006e8680 0000000000000030 d ht_bucket_html5_37D
00000000006e8640 0000000000000030 d ht_bucket_html5_37E
00000000006e8600 0000000000000030 d ht_bucket_html5_37F
00000000006e85c0 0000000000000030 d ht_bucket_html5_380
00000000006e8580 0000000000000030 d ht_bucket_html5_382
00000000006e8540 0000000000000030 d ht_bucket_html5_383
00000000006e84a0 0000000000000030 d ht_bucket_html5_387
00000000006e8400 0000000000000030 d ht_bucket_html5_38D
00000000006e83c0 0000000000000030 d ht_bucket_html5_38E
00000000006e8380 0000000000000030 d ht_bucket_html5_391
00000000006e8340 0000000000000030 d ht_bucket_html5_394
00000000006e8300 0000000000000030 d ht_bucket_html5_397
00000000006e82c0 0000000000000030 d ht_bucket_html5_398
00000000006e8280 0000000000000030 d ht_bucket_html5_39C
00000000006e8240 0000000000000030 d ht_bucket_html5_39F
00000000006e81a0 0000000000000030 d ht_bucket_html5_3A1
00000000006e8160 0000000000000030 d ht_bucket_html5_3A4
00000000006e8120 0000000000000030 d ht_bucket_html5_3A5
00000000006e8080 0000000000000030 d ht_bucket_html5_3A7
00000000006e8040 0000000000000030 d ht_bucket_html5_3AC
00000000006e8000 0000000000000030 d ht_bucket_html5_3B2
00000000006e7fc0 0000000000000030 d ht_bucket_html5_3B4
00000000006e7f20 0000000000000030 d ht_bucket_html5_3C0
00000000006e7ee0 0000000000000030 d ht_bucket_html5_3C4
00000000006e7ea0 0000000000000030 d ht_bucket_html5_3C9
00000000006e7e60 0000000000000030 d ht_bucket_html5_3CD
00000000006e7e20 0000000000000030 d ht_bucket_html5_3D0
00000000006e7de0 0000000000000030 d ht_bucket_html5_3D3
00000000006e7da0 0000000000000030 d ht_bucket_html5_3D9
00000000006e7d60 0000000000000030 d ht_bucket_html5_3DE
00000000006e7d20 0000000000000030 d ht_bucket_html5_3E0
00000000006e7ce0 0000000000000030 d ht_bucket_html5_3E1
00000000006e7ca0 0000000000000030 d ht_bucket_html5_3E3
00000000006e7c60 0000000000000030 d ht_bucket_html5_3E4
00000000006e7c20 0000000000000030 d ht_bucket_html5_3E6
00000000006e7be0 0000000000000030 d ht_bucket_html5_3E9
00000000006e7b40 0000000000000030 d ht_bucket_html5_3F1
00000000006e7b00 0000000000000030 d ht_bucket_html5_3F2
00000000006e7ac0 0000000000000030 d ht_bucket_html5_3F7
00000000006e7a80 0000000000000030 d ht_bucket_html5_3FC
00000000006e7a40 0000000000000030 d ht_bucket_html5_3FE
00000000006e7a00 0000000000000030 d ht_bucket_html5_402
00000000006e79c0 0000000000000030 d ht_bucket_html5_405
00000000006e7980 0000000000000030 d ht_bucket_html5_407
00000000006e7940 0000000000000030 d ht_bucket_html5_409
00000000006e7900 0000000000000030 d ht_bucket_html5_40E
00000000006e7860 0000000000000030 d ht_bucket_html5_413
00000000006e77c0 0000000000000030 d ht_bucket_html5_41B
00000000006e7780 0000000000000030 d ht_bucket_html5_421
00000000006e7740 0000000000000030 d ht_bucket_html5_423
00000000006e7700 0000000000000030 d ht_bucket_html5_424
00000000006e76c0 0000000000000030 d ht_bucket_html5_425
00000000006e7620 0000000000000030 d ht_bucket_html5_429
00000000006e75e0 0000000000000030 d ht_bucket_html5_42C
00000000006e75a0 0000000000000030 d ht_bucket_html5_42F
00000000006e7560 0000000000000030 d ht_bucket_html5_430
00000000006e7520 0000000000000030 d ht_bucket_html5_432
00000000006e74e0 0000000000000030 d ht_bucket_html5_436
00000000006e74a0 0000000000000030 d ht_bucket_html5_439
00000000006e7460 0000000000000030 d ht_bucket_html5_43C
00000000006e7420 0000000000000030 d ht_bucket_html5_43D
00000000006e73e0 0000000000000030 d ht_bucket_html5_43E
00000000006e73a0 0000000000000030 d ht_bucket_html5_43F
00000000006e7360 0000000000000030 d ht_bucket_html5_440
00000000006e7320 0000000000000030 d ht_bucket_html5_441
00000000006e72e0 0000000000000030 d ht_bucket_html5_443
00000000006e7240 0000000000000030 d ht_bucket_html5_447
00000000006e7200 0000000000000030 d ht_bucket_html5_44A
00000000006e71c0 0000000000000030 d ht_bucket_html5_44F
00000000006e7180 0000000000000030 d ht_bucket_html5_450
00000000006e7140 0000000000000030 d ht_bucket_html5_454
00000000006e7100 0000000000000030 d ht_bucket_html5_457
00000000006e70c0 0000000000000030 d ht_bucket_html5_458
00000000006e7080 0000000000000030 d ht_bucket_html5_45D
00000000006e6fe0 0000000000000030 d ht_bucket_html5_465
00000000006e6fa0 0000000000000030 d ht_bucket_html5_466
00000000006e6f60 0000000000000030 d ht_bucket_html5_469
00000000006e6f20 0000000000000030 d ht_bucket_html5_46A
00000000006e6e80 0000000000000030 d ht_bucket_html5_46D
00000000006e6e40 0000000000000030 d ht_bucket_html5_46F
00000000006e6e00 0000000000000030 d ht_bucket_html5_470
00000000006e6dc0 0000000000000030 d ht_bucket_html5_471
00000000006e6d20 0000000000000030 d ht_bucket_html5_473
00000000006e6ce0 0000000000000030 d ht_bucket_html5_475
00000000006e6c40 0000000000000030 d ht_bucket_html5_47C
00000000006e6c00 0000000000000030 d ht_bucket_html5_47D
00000000006e6b60 0000000000000030 d ht_bucket_html5_480
00000000006e6b20 0000000000000030 d ht_bucket_html5_485
00000000006e6ae0 0000000000000030 d ht_bucket_html5_488
00000000006e6aa0 0000000000000030 d ht_bucket_html5_48C
00000000006e6a60 0000000000000030 d ht_bucket_html5_48E
00000000006e69c0 0000000000000030 d ht_bucket_html5_490
00000000006e6980 0000000000000030 d ht_bucket_html5_491
00000000006e6940 0000000000000030 d ht_bucket_html5_493
00000000006e68a0 0000000000000030 d ht_bucket_html5_496
00000000006e6800 0000000000000030 d ht_bucket_html5_499
00000000006e67c0 0000000000000030 d ht_bucket_html5_49F
00000000006e6780 0000000000000030 d ht_bucket_html5_4A2
00000000006e66e0 0000000000000030 d ht_bucket_html5_4A6
00000000006e6640 0000000000000030 d ht_bucket_html5_4AA
00000000006e6600 0000000000000030 d ht_bucket_html5_4AB
00000000006e65c0 0000000000000030 d ht_bucket_html5_4AE
00000000006e6580 0000000000000030 d ht_bucket_html5_4AF
00000000006e6540 0000000000000030 d ht_bucket_html5_4B2
00000000006e6500 0000000000000030 d ht_bucket_html5_4B6
00000000006e64c0 0000000000000030 d ht_bucket_html5_4B8
00000000006e6480 0000000000000030 d ht_bucket_html5_4BC
00000000006e6440 0000000000000030 d ht_bucket_html5_4C0
00000000006e6400 0000000000000030 d ht_bucket_html5_4C2
00000000006e63c0 0000000000000030 d ht_bucket_html5_4C3
00000000006e6380 0000000000000030 d ht_bucket_html5_4C4
00000000006e6340 0000000000000030 d ht_bucket_html5_4C5
00000000006e6300 0000000000000030 d ht_bucket_html5_4C8
00000000006e61a0 0000000000000030 d ht_bucket_html5_4D0
00000000006e6100 0000000000000030 d ht_bucket_html5_4D3
00000000006e60c0 0000000000000030 d ht_bucket_html5_4D4
00000000006e6020 0000000000000030 d ht_bucket_html5_4D8
00000000006e5fe0 0000000000000030 d ht_bucket_html5_4DA
00000000006e5fa0 0000000000000030 d ht_bucket_html5_4DE
00000000006e5f60 0000000000000030 d ht_bucket_html5_4DF
00000000006e5ec0 0000000000000030 d ht_bucket_html5_4E4
00000000006e5dc0 0000000000000030 d ht_bucket_html5_4E8
00000000006e5d20 0000000000000030 d ht_bucket_html5_4ED
00000000006e5ce0 0000000000000030 d ht_bucket_html5_4F1
00000000006e5ca0 0000000000000030 d ht_bucket_html5_4F7
00000000006e5c60 0000000000000030 d ht_bucket_html5_4F9
00000000006e5c20 0000000000000030 d ht_bucket_html5_4FB
00000000006e5b20 0000000000000030 d ht_bucket_html5_504
00000000006e59c0 0000000000000030 d ht_bucket_html5_50E
00000000006e5980 0000000000000030 d ht_bucket_html5_50F
00000000006e5940 0000000000000030 d ht_bucket_html5_513
00000000006e5900 0000000000000030 d ht_bucket_html5_516
00000000006e5860 0000000000000030 d ht_bucket_html5_519
00000000006e57c0 0000000000000030 d ht_bucket_html5_51C
00000000006e5780 0000000000000030 d ht_bucket_html5_524
00000000006e5740 0000000000000030 d ht_bucket_html5_525
00000000006e5640 0000000000000030 d ht_bucket_html5_530
00000000006e5600 0000000000000030 d ht_bucket_html5_532
00000000006e55c0 0000000000000030 d ht_bucket_html5_533
00000000006e5580 0000000000000030 d ht_bucket_html5_534
00000000006e5540 0000000000000030 d ht_bucket_html5_53B
00000000006e5440 0000000000000030 d ht_bucket_html5_542
00000000006e53a0 0000000000000030 d ht_bucket_html5_545
00000000006e5360 0000000000000030 d ht_bucket_html5_548
00000000006e5260 0000000000000030 d ht_bucket_html5_551
00000000006e51c0 0000000000000030 d ht_bucket_html5_55B
00000000006e5180 0000000000000030 d ht_bucket_html5_55D
00000000006e5140 0000000000000030 d ht_bucket_html5_55F
00000000006e5100 0000000000000030 d ht_bucket_html5_564
00000000006e50c0 0000000000000030 d ht_bucket_html5_565
00000000006e4fc0 0000000000000030 d ht_bucket_html5_56F
00000000006e4f80 0000000000000030 d ht_bucket_html5_570
00000000006e4f40 0000000000000030 d ht_bucket_html5_571
00000000006e4f00 0000000000000030 d ht_bucket_html5_572
00000000006e4ec0 0000000000000030 d ht_bucket_html5_575
00000000006e4e80 0000000000000030 d ht_bucket_html5_576
00000000006e4e40 0000000000000030 d ht_bucket_html5_577
00000000006e4e00 0000000000000030 d ht_bucket_html5_578
00000000006e4dc0 0000000000000030 d ht_bucket_html5_57A
00000000006e4d20 0000000000000030 d ht_bucket_html5_57C
00000000006e4ce0 0000000000000030 d ht_bucket_html5_580
00000000006e4ca0 0000000000000030 d ht_bucket_html5_582
00000000006e4c60 0000000000000030 d ht_bucket_html5_583
00000000006e4c20 0000000000000030 d ht_bucket_html5_586
00000000006e4be0 0000000000000030 d ht_bucket_html5_588
00000000006e4ba0 0000000000000030 d ht_bucket_html5_589
00000000006e4b60 0000000000000030 d ht_bucket_html5_58D
00000000006e4b20 0000000000000030 d ht_bucket_html5_58E
00000000006e4ae0 0000000000000030 d ht_bucket_html5_58F
00000000006e4aa0 0000000000000030 d ht_bucket_html5_590
00000000006e4a00 0000000000000030 d ht_bucket_html5_596
00000000006e49c0 0000000000000030 d ht_bucket_html5_59A
00000000006e4980 0000000000000030 d ht_bucket_html5_59D
00000000006e4940 0000000000000030 d ht_bucket_html5_59F
00000000006e4900 0000000000000030 d ht_bucket_html5_5A0
00000000006e48c0 0000000000000030 d ht_bucket_html5_5A3
00000000006e47c0 0000000000000030 d ht_bucket_html5_5AC
00000000006e4780 0000000000000030 d ht_bucket_html5_5AD
00000000006e4740 0000000000000030 d ht_bucket_html5_5AE
00000000006e4700 0000000000000030 d ht_bucket_html5_5B0
00000000006e46c0 0000000000000030 d ht_bucket_html5_5B1
00000000006e4620 0000000000000030 d ht_bucket_html5_5B6
00000000006e45e0 0000000000000030 d ht_bucket_html5_5B7
00000000006e45a0 0000000000000030 d ht_bucket_html5_5BB
00000000006e4560 0000000000000030 d ht_bucket_html5_5BC
00000000006e4520 0000000000000030 d ht_bucket_html5_5BD
00000000006e44e0 0000000000000030 d ht_bucket_html5_5BF
00000000006e44a0 0000000000000030 d ht_bucket_html5_5C0
00000000006e4460 0000000000000030 d ht_bucket_html5_5C1
00000000006e4420 0000000000000030 d ht_bucket_html5_5C2
00000000006e43e0 0000000000000030 d ht_bucket_html5_5C4
00000000006e4340 0000000000000030 d ht_bucket_html5_5D1
00000000006e4300 0000000000000030 d ht_bucket_html5_5D3
00000000006e42c0 0000000000000030 d ht_bucket_html5_5D5
00000000006e4280 0000000000000030 d ht_bucket_html5_5D8
00000000006e4240 0000000000000030 d ht_bucket_html5_5D9
00000000006e4200 0000000000000030 d ht_bucket_html5_5DB
00000000006e41c0 0000000000000030 d ht_bucket_html5_5DD
00000000006e4180 0000000000000030 d ht_bucket_html5_5DF
00000000006e4140 0000000000000030 d ht_bucket_html5_5E2
00000000006e4100 0000000000000030 d ht_bucket_html5_5E4
00000000006e40c0 0000000000000030 d ht_bucket_html5_5E7
00000000006e4080 0000000000000030 d ht_bucket_html5_5EA
00000000006e3fe0 0000000000000030 d ht_bucket_html5_5F0
00000000006e3fa0 0000000000000030 d ht_bucket_html5_5F3
00000000006e3f00 0000000000000030 d ht_bucket_html5_5F8
00000000006e3ec0 0000000000000030 d ht_bucket_html5_5FA
00000000006e3e80 0000000000000030 d ht_bucket_html5_5FD
00000000006e3de0 0000000000000030 d ht_bucket_html5_602
00000000006e3ce0 0000000000000030 d ht_bucket_html5_609
00000000006e3ca0 0000000000000030 d ht_bucket_html5_60D
00000000006e3c60 0000000000000030 d ht_bucket_html5_613
00000000006e3b60 0000000000000030 d ht_bucket_html5_61A
00000000006e3ac0 0000000000000030 d ht_bucket_html5_61F
00000000006e3a80 0000000000000030 d ht_bucket_html5_622
00000000006e3a40 0000000000000030 d ht_bucket_html5_624
00000000006e39a0 0000000000000030 d ht_bucket_html5_628
00000000006e3960 0000000000000030 d ht_bucket_html5_62C
00000000006e3920 0000000000000030 d ht_bucket_html5_630
00000000006e38e0 0000000000000030 d ht_bucket_html5_632
00000000006e38a0 0000000000000030 d ht_bucket_html5_636
00000000006e3860 0000000000000030 d ht_bucket_html5_63A
00000000006e3820 0000000000000030 d ht_bucket_html5_63C
00000000006e37e0 0000000000000030 d ht_bucket_html5_63D
00000000006e37a0 0000000000000030 d ht_bucket_html5_63E
00000000006e3760 0000000000000030 d ht_bucket_html5_641
00000000006e3720 0000000000000030 d ht_bucket_html5_642
00000000006e3680 0000000000000030 d ht_bucket_html5_646
00000000006e3640 0000000000000030 d ht_bucket_html5_647
00000000006e35a0 0000000000000030 d ht_bucket_html5_649
00000000006e3560 0000000000000030 d ht_bucket_html5_64A
00000000006e34c0 0000000000000030 d ht_bucket_html5_652
00000000006e3480 0000000000000030 d ht_bucket_html5_653
00000000006e3440 0000000000000030 d ht_bucket_html5_655
00000000006e3400 0000000000000030 d ht_bucket_html5_657
00000000006e3360 0000000000000030 d ht_bucket_html5_659
00000000006e3320 0000000000000030 d ht_bucket_html5_65C
00000000006e3280 0000000000000030 d ht_bucket_html5_660
00000000006e3240 0000000000000030 d ht_bucket_html5_669
00000000006e3200 0000000000000030 d ht_bucket_html5_670
00000000006e31c0 0000000000000030 d ht_bucket_html5_671
00000000006e3120 0000000000000030 d ht_bucket_html5_673
00000000006e30e0 0000000000000030 d ht_bucket_html5_676
00000000006e30a0 0000000000000030 d ht_bucket_html5_678
00000000006e3060 0000000000000030 d ht_bucket_html5_679
00000000006e2fc0 0000000000000030 d ht_bucket_html5_680
00000000006e2f80 0000000000000030 d ht_bucket_html5_682
00000000006e2e20 0000000000000030 d ht_bucket_html5_68C
00000000006e2de0 0000000000000030 d ht_bucket_html5_691
00000000006e2da0 0000000000000030 d ht_bucket_html5_693
00000000006e2d60 0000000000000030 d ht_bucket_html5_694
00000000006e2d20 0000000000000030 d ht_bucket_html5_696
00000000006e2ce0 0000000000000030 d ht_bucket_html5_699
00000000006e2ca0 0000000000000030 d ht_bucket_html5_6A3
00000000006e2ba0 0000000000000030 d ht_bucket_html5_6A9
00000000006e2b00 0000000000000030 d ht_bucket_html5_6AB
00000000006e2ac0 0000000000000030 d ht_bucket_html5_6AE
00000000006e2a80 0000000000000030 d ht_bucket_html5_6B0
00000000006e29e0 0000000000000030 d ht_bucket_html5_6B6
00000000006e29a0 0000000000000030 d ht_bucket_html5_6B8
00000000006e2960 0000000000000030 d ht_bucket_html5_6B9
00000000006e2860 0000000000000030 d ht_bucket_html5_6BF
00000000006e27c0 0000000000000030 d ht_bucket_html5_6C4
00000000006e2780 0000000000000030 d ht_bucket_html5_6C5
00000000006e2740 0000000000000030 d ht_bucket_html5_6C6
00000000006e2700 0000000000000030 d ht_bucket_html5_6C7
00000000006e2660 0000000000000030 d ht_bucket_html5_6C9
00000000006e2560 0000000000000030 d ht_bucket_html5_6D1
00000000006e2520 0000000000000030 d ht_bucket_html5_6D2
00000000006e24e0 0000000000000030 d ht_bucket_html5_6D4
00000000006e2440 0000000000000030 d ht_bucket_html5_6D9
00000000006e2400 0000000000000030 d ht_bucket_html5_6DA
00000000006e23c0 0000000000000030 d ht_bucket_html5_6DB
00000000006e2380 0000000000000030 d ht_bucket_html5_6DC
00000000006e2340 0000000000000030 d ht_bucket_html5_6DE
00000000006e2300 0000000000000030 d ht_bucket_html5_6E7
00000000006e22c0 0000000000000030 d ht_bucket_html5_6EB
00000000006e2280 0000000000000030 d ht_bucket_html5_6EE
00000000006e21e0 0000000000000030 d ht_bucket_html5_6F5
00000000006e2120 0000000000000030 d ht_bucket_html5_6FB
00000000006e2080 0000000000000030 d ht_bucket_html5_705
00000000006e2040 0000000000000030 d ht_bucket_html5_706
00000000006e2000 0000000000000030 d ht_bucket_html5_707
00000000006e1fc0 0000000000000030 d ht_bucket_html5_709
00000000006e1ec0 0000000000000030 d ht_bucket_html5_70F
00000000006e1e80 0000000000000030 d ht_bucket_html5_712
00000000006e1de0 0000000000000030 d ht_bucket_html5_715
00000000006e1da0 0000000000000030 d ht_bucket_html5_717
00000000006e1d60 0000000000000030 d ht_bucket_html5_719
00000000006e1d20 0000000000000030 d ht_bucket_html5_71B
00000000006e1ce0 0000000000000030 d ht_bucket_html5_71E
00000000006e1ca0 0000000000000030 d ht_bucket_html5_71F
00000000006e1c60 0000000000000030 d ht_bucket_html5_723
00000000006e1c20 0000000000000030 d ht_bucket_html5_724
00000000006e1be0 0000000000000030 d ht_bucket_html5_727
00000000006e1b40 0000000000000030 d ht_bucket_html5_72C
00000000006e1b00 0000000000000030 d ht_bucket_html5_72D
00000000006e1ac0 0000000000000030 d ht_bucket_html5_72E
00000000006e1a80 0000000000000030 d ht_bucket_html5_733
00000000006e1a40 0000000000000030 d ht_bucket_html5_734
00000000006e19a0 0000000000000030 d ht_bucket_html5_736
00000000006e1960 0000000000000030 d ht_bucket_html5_738
00000000006e1920 0000000000000030 d ht_bucket_html5_73B
00000000006e1880 0000000000000030 d ht_bucket_html5_73E
00000000006e1840 0000000000000030 d ht_bucket_html5_73F
00000000006e1800 0000000000000030 d ht_bucket_html5_744
00000000006e17c0 0000000000000030 d ht_bucket_html5_745
00000000006e16c0 0000000000000030 d ht_bucket_html5_74C
00000000006e1680 0000000000000030 d ht_bucket_html5_74F
00000000006e1640 0000000000000030 d ht_bucket_html5_751
00000000006e1600 0000000000000030 d ht_bucket_html5_754
00000000006e1560 0000000000000030 d ht_bucket_html5_759
00000000006e1520 0000000000000030 d ht_bucket_html5_75C
00000000006e14e0 0000000000000030 d ht_bucket_html5_75F
00000000006e14a0 0000000000000030 d ht_bucket_html5_762
00000000006e1460 0000000000000030 d ht_bucket_html5_763
00000000006e1420 0000000000000030 d ht_bucket_html5_765
00000000006e1380 0000000000000030 d ht_bucket_html5_768
00000000006e12e0 0000000000000030 d ht_bucket_html5_770
00000000006e12a0 0000000000000030 d ht_bucket_html5_772
00000000006e1260 0000000000000030 d ht_bucket_html5_776
00000000006e1220 0000000000000030 d ht_bucket_html5_777
00000000006e11e0 0000000000000030 d ht_bucket_html5_779
00000000006e11a0 0000000000000030 d ht_bucket_html5_77A
00000000006e1100 0000000000000030 d ht_bucket_html5_781
00000000006e10c0 0000000000000030 d ht_bucket_html5_783
00000000006e1020 0000000000000030 d ht_bucket_html5_789
00000000006e0f20 0000000000000030 d ht_bucket_html5_78E
00000000006e0e80 0000000000000030 d ht_bucket_html5_794
00000000006e0e40 0000000000000030 d ht_bucket_html5_797
00000000006e0e00 0000000000000030 d ht_bucket_html5_798
00000000006e0d60 0000000000000030 d ht_bucket_html5_79B
00000000006e0d20 0000000000000030 d ht_bucket_html5_79D
00000000006e0c20 0000000000000030 d ht_bucket_html5_7A1
00000000006e0be0 0000000000000030 d ht_bucket_html5_7A2
00000000006e0ba0 0000000000000030 d ht_bucket_html5_7A5
00000000006e0b00 0000000000000030 d ht_bucket_html5_7AA
00000000006e0ac0 0000000000000030 d ht_bucket_html5_7AB
00000000006e0a80 0000000000000030 d ht_bucket_html5_7AC
00000000006e0a40 0000000000000030 d ht_bucket_html5_7AE
00000000006e0a00 0000000000000030 d ht_bucket_html5_7AF
00000000006e09c0 0000000000000030 d ht_bucket_html5_7B0
00000000006e0980 0000000000000030 d ht_bucket_html5_7B1
00000000006e0940 0000000000000030 d ht_bucket_html5_7B5
00000000006e0900 0000000000000030 d ht_bucket_html5_7B6
00000000006e08c0 0000000000000030 d ht_bucket_html5_7B7
00000000006e0880 0000000000000030 d ht_bucket_html5_7B8
00000000006e0840 0000000000000030 d ht_bucket_html5_7BA
00000000006e0800 0000000000000030 d ht_bucket_html5_7BB
00000000006e0760 0000000000000030 d ht_bucket_html5_7BE
00000000006e0720 0000000000000030 d ht_bucket_html5_7BF
00000000006e06e0 0000000000000030 d ht_bucket_html5_7C0
00000000006e0620 0000000000000030 d ht_bucket_html5_7C9
00000000006e05e0 0000000000000030 d ht_bucket_html5_7CB
00000000006e05a0 0000000000000030 d ht_bucket_html5_7CD
00000000006e0560 0000000000000030 d ht_bucket_html5_7CE
00000000006e04c0 0000000000000030 d ht_bucket_html5_7D2
00000000006e0480 0000000000000030 d ht_bucket_html5_7D5
00000000006e0440 0000000000000030 d ht_bucket_html5_7D6
00000000006e0400 0000000000000030 d ht_bucket_html5_7D9
00000000006e03c0 0000000000000030 d ht_bucket_html5_7DA
00000000006e0380 0000000000000030 d ht_bucket_html5_7DC
00000000006e0340 0000000000000030 d ht_bucket_html5_7E0
00000000006e0300 0000000000000030 d ht_bucket_html5_7E2
00000000006e02c0 0000000000000030 d ht_bucket_html5_7E4
00000000006e0280 0000000000000030 d ht_bucket_html5_7E5
00000000006e01e0 0000000000000030 d ht_bucket_html5_7EC
00000000006e01a0 0000000000000030 d ht_bucket_html5_7EF
00000000006e0160 0000000000000030 d ht_bucket_html5_7F1
00000000006e0120 0000000000000030 d ht_bucket_html5_7F3
00000000006e00e0 0000000000000030 d ht_bucket_html5_7F6
00000000006e00a0 0000000000000030 d ht_bucket_html5_7F8
00000000006e0060 0000000000000030 d ht_bucket_html5_7FB
00000000006e0020 0000000000000030 d ht_bucket_html5_7FC
00000000006dffe0 0000000000000030 d ht_bucket_html5_800
00000000006dfee0 0000000000000030 d ht_bucket_html5_808
00000000006dfea0 0000000000000030 d ht_bucket_html5_809
00000000006dfe60 0000000000000030 d ht_bucket_html5_80A
00000000006dfe20 0000000000000030 d ht_bucket_html5_810
00000000006dfde0 0000000000000030 d ht_bucket_html5_811
00000000006dfd40 0000000000000030 d ht_bucket_html5_816
00000000006dfd00 0000000000000030 d ht_bucket_html5_819
00000000006dfc60 0000000000000030 d ht_bucket_html5_81D
00000000006dfc20 0000000000000030 d ht_bucket_html5_821
00000000006dfbe0 0000000000000030 d ht_bucket_html5_822
00000000006dfb40 0000000000000030 d ht_bucket_html5_824
00000000006dfb00 0000000000000030 d ht_bucket_html5_828
00000000006dfac0 0000000000000030 d ht_bucket_html5_829
00000000006dfa80 0000000000000030 d ht_bucket_html5_82D
00000000006dfa40 0000000000000030 d ht_bucket_html5_82E
00000000006dfa00 0000000000000030 d ht_bucket_html5_830
00000000006df9c0 0000000000000030 d ht_bucket_html5_831
00000000006df980 0000000000000030 d ht_bucket_html5_832
00000000006df940 0000000000000030 d ht_bucket_html5_837
00000000006df8a0 0000000000000030 d ht_bucket_html5_83C
00000000006df860 0000000000000030 d ht_bucket_html5_83E
00000000006df820 0000000000000030 d ht_bucket_html5_83F
00000000006df7e0 0000000000000030 d ht_bucket_html5_841
00000000006df7a0 0000000000000030 d ht_bucket_html5_842
00000000006df760 0000000000000030 d ht_bucket_html5_846
00000000006df720 0000000000000030 d ht_bucket_html5_84A
00000000006df6e0 0000000000000030 d ht_bucket_html5_84C
00000000006df6a0 0000000000000030 d ht_bucket_html5_84F
00000000006df660 0000000000000030 d ht_bucket_html5_850
00000000006df5c0 0000000000000030 d ht_bucket_html5_857
00000000006df580 0000000000000030 d ht_bucket_html5_85B
00000000006df540 0000000000000030 d ht_bucket_html5_85C
00000000006df480 0000000000000030 d ht_bucket_html5_861
00000000006df440 0000000000000030 d ht_bucket_html5_865
00000000006df3a0 0000000000000030 d ht_bucket_html5_867
00000000006df360 0000000000000030 d ht_bucket_html5_868
00000000006df320 0000000000000030 d ht_bucket_html5_86A
00000000006df2e0 0000000000000030 d ht_bucket_html5_86B
00000000006df2a0 0000000000000030 d ht_bucket_html5_86C
00000000006df260 0000000000000030 d ht_bucket_html5_873
00000000006df220 0000000000000030 d ht_bucket_html5_876
00000000006df1e0 0000000000000030 d ht_bucket_html5_879
00000000006df1a0 0000000000000030 d ht_bucket_html5_87B
00000000006df160 0000000000000030 d ht_bucket_html5_87E
00000000006df120 0000000000000030 d ht_bucket_html5_88A
00000000006df0e0 0000000000000030 d ht_bucket_html5_88C
00000000006df0a0 0000000000000030 d ht_bucket_html5_88E
00000000006df060 0000000000000030 d ht_bucket_html5_892
00000000006df020 0000000000000030 d ht_bucket_html5_895
00000000006def80 0000000000000030 d ht_bucket_html5_897
00000000006deee0 0000000000000030 d ht_bucket_html5_899
00000000006deea0 0000000000000030 d ht_bucket_html5_89D
00000000006dee60 0000000000000030 d ht_bucket_html5_8A5
00000000006dee20 0000000000000030 d ht_bucket_html5_8AC
00000000006dede0 0000000000000030 d ht_bucket_html5_8B3
00000000006deda0 0000000000000030 d ht_bucket_html5_8B6
00000000006ded60 0000000000000030 d ht_bucket_html5_8B7
00000000006decc0 0000000000000030 d ht_bucket_html5_8B9
00000000006dec80 0000000000000030 d ht_bucket_html5_8BA
00000000006dec40 0000000000000030 d ht_bucket_html5_8BC
00000000006dec00 0000000000000030 d ht_bucket_html5_8BD
00000000006debc0 0000000000000030 d ht_bucket_html5_8C0
00000000006deb80 0000000000000030 d ht_bucket_html5_8C1
00000000006deae0 0000000000000030 d ht_bucket_html5_8C4
00000000006deaa0 0000000000000030 d ht_bucket_html5_8C7
00000000006dea00 0000000000000030 d ht_bucket_html5_8D0
00000000006de9c0 0000000000000030 d ht_bucket_html5_8D3
00000000006de980 0000000000000030 d ht_bucket_html5_8D6
00000000006de940 0000000000000030 d ht_bucket_html5_8D8
00000000006de900 0000000000000030 d ht_bucket_html5_8DC
00000000006de8c0 0000000000000030 d ht_bucket_html5_8DD
00000000006de880 0000000000000030 d ht_bucket_html5_8DE
00000000006de840 0000000000000030 d ht_bucket_html5_8DF
00000000006de800 0000000000000030 d ht_bucket_html5_8E0
00000000006de7c0 0000000000000030 d ht_bucket_html5_8E2
00000000006de720 0000000000000030 d ht_bucket_html5_8E7
00000000006de6e0 0000000000000030 d ht_bucket_html5_8E8
00000000006de6a0 0000000000000030 d ht_bucket_html5_8E9
00000000006de660 0000000000000030 d ht_bucket_html5_8EB
00000000006de5c0 0000000000000030 d ht_bucket_html5_8FB
00000000006de580 0000000000000030 d ht_bucket_html5_8FE
00000000006de540 0000000000000030 d ht_bucket_html5_8FF
00000000006de500 0000000000000030 d ht_bucket_html5_904
00000000006de4c0 0000000000000030 d ht_bucket_html5_906
00000000006de420 0000000000000030 d ht_bucket_html5_909
00000000006de3e0 0000000000000030 d ht_bucket_html5_90C
00000000006de340 0000000000000030 d ht_bucket_html5_910
00000000006de300 0000000000000030 d ht_bucket_html5_913
00000000006de2c0 0000000000000030 d ht_bucket_html5_916
00000000006de280 0000000000000030 d ht_bucket_html5_918
00000000006de240 0000000000000030 d ht_bucket_html5_919
00000000006de0e0 0000000000000030 d ht_bucket_html5_920
00000000006de0a0 0000000000000030 d ht_bucket_html5_922
00000000006de060 0000000000000030 d ht_bucket_html5_923
00000000006de020 0000000000000030 d ht_bucket_html5_927
00000000006ddf80 0000000000000030 d ht_bucket_html5_92A
00000000006ddf40 0000000000000030 d ht_bucket_html5_92C
00000000006ddf00 0000000000000030 d ht_bucket_html5_92E
00000000006ddec0 0000000000000030 d ht_bucket_html5_930
00000000006dde80 0000000000000030 d ht_bucket_html5_936
00000000006dde40 0000000000000030 d ht_bucket_html5_939
00000000006dde00 0000000000000030 d ht_bucket_html5_93B
00000000006ddd60 0000000000000030 d ht_bucket_html5_940
00000000006ddd20 0000000000000030 d ht_bucket_html5_945
00000000006ddce0 0000000000000030 d ht_bucket_html5_947
00000000006ddca0 0000000000000030 d ht_bucket_html5_94D
00000000006ddba0 0000000000000030 d ht_bucket_html5_952
00000000006ddb60 0000000000000030 d ht_bucket_html5_953
00000000006ddac0 0000000000000030 d ht_bucket_html5_955
00000000006dda80 0000000000000030 d ht_bucket_html5_956
00000000006dda40 0000000000000030 d ht_bucket_html5_959
00000000006dda00 0000000000000030 d ht_bucket_html5_95B
00000000006dd960 0000000000000030 d ht_bucket_html5_95F
00000000006dd920 0000000000000030 d ht_bucket_html5_960
00000000006dd8e0 0000000000000030 d ht_bucket_html5_963
00000000006dd8a0 0000000000000030 d ht_bucket_html5_964
00000000006dd860 0000000000000030 d ht_bucket_html5_969
00000000006dd760 0000000000000030 d ht_bucket_html5_970
00000000006dd720 0000000000000030 d ht_bucket_html5_974
00000000006dd6e0 0000000000000030 d ht_bucket_html5_975
00000000006dd640 0000000000000030 d ht_bucket_html5_97B
00000000006dd5a0 0000000000000030 d ht_bucket_html5_97F
00000000006dd560 0000000000000030 d ht_bucket_html5_981
00000000006dd520 0000000000000030 d ht_bucket_html5_983
00000000006dd480 0000000000000030 d ht_bucket_html5_986
00000000006dd440 0000000000000030 d ht_bucket_html5_988
00000000006dd3a0 0000000000000030 d ht_bucket_html5_98D
00000000006dd360 0000000000000030 d ht_bucket_html5_98F
00000000006dd320 0000000000000030 d ht_bucket_html5_990
00000000006dd2e0 0000000000000030 d ht_bucket_html5_996
00000000006dd2a0 0000000000000030 d ht_bucket_html5_997
00000000006dd260 0000000000000030 d ht_bucket_html5_99B
00000000006dd220 0000000000000030 d ht_bucket_html5_99C
00000000006dd1e0 0000000000000030 d ht_bucket_html5_99E
00000000006dd1a0 0000000000000030 d ht_bucket_html5_99F
00000000006dd100 0000000000000030 d ht_bucket_html5_9A1
00000000006dd0c0 0000000000000030 d ht_bucket_html5_9A6
00000000006dd080 0000000000000030 d ht_bucket_html5_9A8
00000000006dd040 0000000000000030 d ht_bucket_html5_9AA
00000000006dcf40 0000000000000030 d ht_bucket_html5_9B4
00000000006dce40 0000000000000030 d ht_bucket_html5_9B7
00000000006dce00 0000000000000030 d ht_bucket_html5_9BB
00000000006dcca0 0000000000000030 d ht_bucket_html5_9C2
00000000006dcc60 0000000000000030 d ht_bucket_html5_9C3
00000000006dcc20 0000000000000030 d ht_bucket_html5_9C5
00000000006dcb80 0000000000000030 d ht_bucket_html5_9CA
00000000006dcb40 0000000000000030 d ht_bucket_html5_9CC
00000000006dcb00 0000000000000030 d ht_bucket_html5_9CF
00000000006dcac0 0000000000000030 d ht_bucket_html5_9D5
00000000006dca80 0000000000000030 d ht_bucket_html5_9D6
00000000006dca40 0000000000000030 d ht_bucket_html5_9DA
00000000006dc9a0 0000000000000030 d ht_bucket_html5_9DD
00000000006dc960 0000000000000030 d ht_bucket_html5_9DE
00000000006dc920 0000000000000030 d ht_bucket_html5_9E1
00000000006dc8e0 0000000000000030 d ht_bucket_html5_9E2
00000000006dc8a0 0000000000000030 d ht_bucket_html5_9E5
00000000006dc860 0000000000000030 d ht_bucket_html5_9E7
00000000006dc820 0000000000000030 d ht_bucket_html5_9E9
00000000006dc780 0000000000000030 d ht_bucket_html5_9ED
00000000006dc740 0000000000000030 d ht_bucket_html5_9EE
00000000006dc700 0000000000000030 d ht_bucket_html5_9EF
00000000006dc660 0000000000000030 d ht_bucket_html5_9F1
00000000006dc5c0 0000000000000030 d ht_bucket_html5_9F3
00000000006dc580 0000000000000030 d ht_bucket_html5_9F4
00000000006dc540 0000000000000030 d ht_bucket_html5_9F5
00000000006dc500 0000000000000030 d ht_bucket_html5_9F7
00000000006dc4c0 0000000000000030 d ht_bucket_html5_9F9
00000000006dc3c0 0000000000000030 d ht_bucket_html5_A01
00000000006dc380 0000000000000030 d ht_bucket_html5_A04
00000000006dc340 0000000000000030 d ht_bucket_html5_A05
00000000006dc2a0 0000000000000030 d ht_bucket_html5_A08
00000000006dc260 0000000000000030 d ht_bucket_html5_A0C
00000000006dc220 0000000000000030 d ht_bucket_html5_A0D
00000000006dc180 0000000000000030 d ht_bucket_html5_A10
00000000006dc0e0 0000000000000030 d ht_bucket_html5_A14
00000000006dc0a0 0000000000000030 d ht_bucket_html5_A15
00000000006dbfa0 0000000000000030 d ht_bucket_html5_A21
00000000006dbf60 0000000000000030 d ht_bucket_html5_A23
00000000006dbf20 0000000000000030 d ht_bucket_html5_A24
00000000006dbee0 0000000000000030 d ht_bucket_html5_A25
00000000006dbea0 0000000000000030 d ht_bucket_html5_A26
00000000006dbe60 0000000000000030 d ht_bucket_html5_A28
00000000006dbe20 0000000000000030 d ht_bucket_html5_A2A
00000000006dbde0 0000000000000030 d ht_bucket_html5_A2D
00000000006dbda0 0000000000000030 d ht_bucket_html5_A30
00000000006dbd60 0000000000000030 d ht_bucket_html5_A32
00000000006dbd20 0000000000000030 d ht_bucket_html5_A36
00000000006dbce0 0000000000000030 d ht_bucket_html5_A37
00000000006dbca0 0000000000000030 d ht_bucket_html5_A39
00000000006dbc00 0000000000000030 d ht_bucket_html5_A3C
00000000006dbbc0 0000000000000030 d ht_bucket_html5_A3D
00000000006dbb80 0000000000000030 d ht_bucket_html5_A41
00000000006dbae0 0000000000000030 d ht_bucket_html5_A44
00000000006dbaa0 0000000000000030 d ht_bucket_html5_A45
00000000006db8e0 0000000000000030 d ht_bucket_html5_A56
00000000006db8a0 0000000000000030 d ht_bucket_html5_A57
00000000006db860 0000000000000030 d ht_bucket_html5_A5A
00000000006db7c0 0000000000000030 d ht_bucket_html5_A61
00000000006db780 0000000000000030 d ht_bucket_html5_A62
00000000006db740 0000000000000030 d ht_bucket_html5_A63
00000000006db700 0000000000000030 d ht_bucket_html5_A64
00000000006db6c0 0000000000000030 d ht_bucket_html5_A69
00000000006db680 0000000000000030 d ht_bucket_html5_A6A
00000000006db640 0000000000000030 d ht_bucket_html5_A6B
00000000006db5a0 0000000000000030 d ht_bucket_html5_A6F
00000000006db560 0000000000000030 d ht_bucket_html5_A70
00000000006db520 0000000000000030 d ht_bucket_html5_A76
00000000006db480 0000000000000030 d ht_bucket_html5_A7A
00000000006db440 0000000000000030 d ht_bucket_html5_A7E
00000000006db400 0000000000000030 d ht_bucket_html5_A81
00000000006db3c0 0000000000000030 d ht_bucket_html5_A82
00000000006db380 0000000000000030 d ht_bucket_html5_A84
00000000006db340 0000000000000030 d ht_bucket_html5_A85
00000000006db300 0000000000000030 d ht_bucket_html5_A86
00000000006db2c0 0000000000000030 d ht_bucket_html5_A89
00000000006db280 0000000000000030 d ht_bucket_html5_A8D
00000000006db1e0 0000000000000030 d ht_bucket_html5_A92
00000000006db1a0 0000000000000030 d ht_bucket_html5_A94
00000000006db160 0000000000000030 d ht_bucket_html5_A96
00000000006db120 0000000000000030 d ht_bucket_html5_A98
00000000006db080 0000000000000030 d ht_bucket_html5_A9A
00000000006db040 0000000000000030 d ht_bucket_html5_A9D
00000000006db000 0000000000000030 d ht_bucket_html5_A9F
00000000006daf60 0000000000000030 d ht_bucket_html5_AA4
00000000006daf20 0000000000000030 d ht_bucket_html5_AA5
00000000006dae80 0000000000000030 d ht_bucket_html5_AAC
00000000006dade0 0000000000000030 d ht_bucket_html5_AB4
00000000006dada0 0000000000000030 d ht_bucket_html5_AB5
00000000006dad00 0000000000000030 d ht_bucket_html5_AC0
00000000006dacc0 0000000000000030 d ht_bucket_html5_AC4
00000000006dac80 0000000000000030 d ht_bucket_html5_AC5
00000000006dac40 0000000000000030 d ht_bucket_html5_AC6
00000000006daae0 0000000000000030 d ht_bucket_html5_ACC
00000000006daaa0 0000000000000030 d ht_bucket_html5_ACF
00000000006daa60 0000000000000030 d ht_bucket_html5_AD2
00000000006daa20 0000000000000030 d ht_bucket_html5_AD3
00000000006da9e0 0000000000000030 d ht_bucket_html5_AD4
00000000006da9a0 0000000000000030 d ht_bucket_html5_ADA
00000000006da960 0000000000000030 d ht_bucket_html5_ADD
00000000006da920 0000000000000030 d ht_bucket_html5_ADF
00000000006da8e0 0000000000000030 d ht_bucket_html5_AE4
00000000006da8a0 0000000000000030 d ht_bucket_html5_AE5
00000000006da860 0000000000000030 d ht_bucket_html5_AE6
00000000006da760 0000000000000030 d ht_bucket_html5_AE9
00000000006da720 0000000000000030 d ht_bucket_html5_AEB
00000000006da6e0 0000000000000030 d ht_bucket_html5_AF5
00000000006da6a0 0000000000000030 d ht_bucket_html5_AF6
00000000006da660 0000000000000030 d ht_bucket_html5_AF7
00000000006da620 0000000000000030 d ht_bucket_html5_AFA
00000000006da5e0 0000000000000030 d ht_bucket_html5_AFD
00000000006da5a0 0000000000000030 d ht_bucket_html5_AFE
00000000006da4a0 0000000000000030 d ht_bucket_html5_B0A
00000000006da400 0000000000000030 d ht_bucket_html5_B10
00000000006da3c0 0000000000000030 d ht_bucket_html5_B11
00000000006da380 0000000000000030 d ht_bucket_html5_B15
00000000006da340 0000000000000030 d ht_bucket_html5_B16
00000000006da240 0000000000000030 d ht_bucket_html5_B23
00000000006da200 0000000000000030 d ht_bucket_html5_B24
00000000006da1c0 0000000000000030 d ht_bucket_html5_B27
00000000006da120 0000000000000030 d ht_bucket_html5_B2A
00000000006d9fc0 0000000000000030 d ht_bucket_html5_B2E
00000000006d9f20 0000000000000030 d ht_bucket_html5_B33
00000000006d9e20 0000000000000030 d ht_bucket_html5_B3A
00000000006d9de0 0000000000000030 d ht_bucket_html5_B3D
00000000006d9da0 0000000000000030 d ht_bucket_html5_B3E
00000000006d9ca0 0000000000000030 d ht_bucket_html5_B44
00000000006d9c00 0000000000000030 d ht_bucket_html5_B47
00000000006d9bc0 0000000000000030 d ht_bucket_html5_B4C
00000000006d9b80 0000000000000030 d ht_bucket_html5_B4E
00000000006d9b40 0000000000000030 d ht_bucket_html5_B4F
00000000006d9b00 0000000000000030 d ht_bucket_html5_B50
00000000006d9ac0 0000000000000030 d ht_bucket_html5_B51
00000000006d9a80 0000000000000030 d ht_bucket_html5_B52
00000000006d99e0 0000000000000030 d ht_bucket_html5_B56
00000000006d99a0 0000000000000030 d ht_bucket_html5_B58
00000000006d9960 0000000000000030 d ht_bucket_html5_B5C
00000000006d98c0 0000000000000030 d ht_bucket_html5_B5E
00000000006d9880 0000000000000030 d ht_bucket_html5_B63
00000000006d9840 0000000000000030 d ht_bucket_html5_B64
00000000006d9800 0000000000000030 d ht_bucket_html5_B67
00000000006d97c0 0000000000000030 d ht_bucket_html5_B69
00000000006d9780 0000000000000030 d ht_bucket_html5_B6B
00000000006d9740 0000000000000030 d ht_bucket_html5_B6D
00000000006d9700 0000000000000030 d ht_bucket_html5_B72
00000000006d96c0 0000000000000030 d ht_bucket_html5_B73
00000000006d95c0 0000000000000030 d ht_bucket_html5_B7A
00000000006d9580 0000000000000030 d ht_bucket_html5_B7B
00000000006d9540 0000000000000030 d ht_bucket_html5_B7E
00000000006d9500 0000000000000030 d ht_bucket_html5_B7F
00000000006d94c0 0000000000000030 d ht_bucket_html5_B81
00000000006d9480 0000000000000030 d ht_bucket_html5_B82
00000000006d9440 0000000000000030 d ht_bucket_html5_B87
00000000006d93a0 0000000000000030 d ht_bucket_html5_B8F
00000000006d9360 0000000000000030 d ht_bucket_html5_B90
00000000006d9320 0000000000000030 d ht_bucket_html5_B94
00000000006d92e0 0000000000000030 d ht_bucket_html5_B98
00000000006d92a0 0000000000000030 d ht_bucket_html5_B99
00000000006d9200 0000000000000030 d ht_bucket_html5_B9C
00000000006d91c0 0000000000000030 d ht_bucket_html5_B9D
00000000006d9120 0000000000000030 d ht_bucket_html5_BA9
00000000006d9080 0000000000000030 d ht_bucket_html5_BB2
00000000006d8fe0 0000000000000030 d ht_bucket_html5_BB6
00000000006d8fa0 0000000000000030 d ht_bucket_html5_BB7
00000000006d8f60 0000000000000030 d ht_bucket_html5_BBA
00000000006d8f20 0000000000000030 d ht_bucket_html5_BBC
00000000006d8e80 0000000000000030 d ht_bucket_html5_BBF
00000000006d8e40 0000000000000030 d ht_bucket_html5_BC1
00000000006d8da0 0000000000000030 d ht_bucket_html5_BC3
00000000006d8d60 0000000000000030 d ht_bucket_html5_BC4
00000000006d8d20 0000000000000030 d ht_bucket_html5_BC5
00000000006d8ce0 0000000000000030 d ht_bucket_html5_BC6
00000000006d8b80 0000000000000030 d ht_bucket_html5_BCB
00000000006d8b40 0000000000000030 d ht_bucket_html5_BCE
00000000006d8aa0 0000000000000030 d ht_bucket_html5_BD7
00000000006d89e0 0000000000000030 d ht_bucket_html5_BD9
00000000006d89a0 0000000000000030 d ht_bucket_html5_BDA
00000000006d8960 0000000000000030 d ht_bucket_html5_BDB
00000000006d8920 0000000000000030 d ht_bucket_html5_BDD
00000000006d88e0 0000000000000030 d ht_bucket_html5_BDF
00000000006d88a0 0000000000000030 d ht_bucket_html5_BE1
00000000006d8860 0000000000000030 d ht_bucket_html5_BE2
00000000006d8760 0000000000000030 d ht_bucket_html5_BE8
00000000006d8720 0000000000000030 d ht_bucket_html5_BE9
00000000006d86e0 0000000000000030 d ht_bucket_html5_BEA
00000000006d86a0 0000000000000030 d ht_bucket_html5_BEB
00000000006d8660 0000000000000030 d ht_bucket_html5_BEF
00000000006d8620 0000000000000030 d ht_bucket_html5_BF0
00000000006d85e0 0000000000000030 d ht_bucket_html5_BF1
00000000006d85a0 0000000000000030 d ht_bucket_html5_BF2
00000000006d8560 0000000000000030 d ht_bucket_html5_BF3
00000000006d8520 0000000000000030 d ht_bucket_html5_BF7
00000000006d84e0 0000000000000030 d ht_bucket_html5_BF9
00000000006d8440 0000000000000030 d ht_bucket_html5_BFC
00000000006d8400 0000000000000030 d ht_bucket_html5_C02
00000000006d82a0 0000000000000030 d ht_bucket_html5_C12
00000000006d8260 0000000000000030 d ht_bucket_html5_C16
00000000006d8220 0000000000000030 d ht_bucket_html5_C18
00000000006d81e0 0000000000000030 d ht_bucket_html5_C1A
00000000006d81a0 0000000000000030 d ht_bucket_html5_C1D
00000000006d8160 0000000000000030 d ht_bucket_html5_C1E
00000000006d8120 0000000000000030 d ht_bucket_html5_C23
00000000006d80e0 0000000000000030 d ht_bucket_html5_C27
00000000006d80a0 0000000000000030 d ht_bucket_html5_C2B
00000000006d8000 0000000000000030 d ht_bucket_html5_C32
00000000006d7fc0 0000000000000030 d ht_bucket_html5_C33
00000000006d7f20 0000000000000030 d ht_bucket_html5_C35
00000000006d7ee0 0000000000000030 d ht_bucket_html5_C36
00000000006d7ea0 0000000000000030 d ht_bucket_html5_C3A
00000000006d7e60 0000000000000030 d ht_bucket_html5_C3E
00000000006d7e20 0000000000000030 d ht_bucket_html5_C3F
00000000006d7d80 0000000000000030 d ht_bucket_html5_C43
00000000006d7d40 0000000000000030 d ht_bucket_html5_C44
00000000006d7d00 0000000000000030 d ht_bucket_html5_C46
00000000006d7cc0 0000000000000030 d ht_bucket_html5_C48
00000000006d7c80 0000000000000030 d ht_bucket_html5_C4A
00000000006d7c40 0000000000000030 d ht_bucket_html5_C4B
00000000006d7b40 0000000000000030 d ht_bucket_html5_C54
00000000006d7aa0 0000000000000030 d ht_bucket_html5_C5A
00000000006d7a60 0000000000000030 d ht_bucket_html5_C5B
00000000006d7a20 0000000000000030 d ht_bucket_html5_C5F
00000000006d7980 0000000000000030 d ht_bucket_html5_C6B
00000000006d7940 0000000000000030 d ht_bucket_html5_C6C
00000000006d7900 0000000000000030 d ht_bucket_html5_C6E
00000000006d78c0 0000000000000030 d ht_bucket_html5_C72
00000000006d7880 0000000000000030 d ht_bucket_html5_C76
00000000006d7840 0000000000000030 d ht_bucket_html5_C77
00000000006d7800 0000000000000030 d ht_bucket_html5_C78
00000000006d77c0 0000000000000030 d ht_bucket_html5_C7A
00000000006d7780 0000000000000030 d ht_bucket_html5_C7B
00000000006d7740 0000000000000030 d ht_bucket_html5_C80
00000000006d7700 0000000000000030 d ht_bucket_html5_C82
00000000006d7660 0000000000000030 d ht_bucket_html5_C8E
00000000006d7620 0000000000000030 d ht_bucket_html5_C91
00000000006d75e0 0000000000000030 d ht_bucket_html5_C93
00000000006d7540 0000000000000030 d ht_bucket_html5_C95
00000000006d7500 0000000000000030 d ht_bucket_html5_C98
00000000006d7460 0000000000000030 d ht_bucket_html5_CA8
00000000006d7420 0000000000000030 d ht_bucket_html5_CA9
00000000006d73e0 0000000000000030 d ht_bucket_html5_CAA
00000000006d72e0 0000000000000030 d ht_bucket_html5_CAF
00000000006d72a0 0000000000000030 d ht_bucket_html5_CB0
00000000006d7260 0000000000000030 d ht_bucket_html5_CB2
00000000006d7220 0000000000000030 d ht_bucket_html5_CB4
00000000006d71e0 0000000000000030 d ht_bucket_html5_CB6
00000000006d71a0 0000000000000030 d ht_bucket_html5_CB7
00000000006d7160 0000000000000030 d ht_bucket_html5_CBA
00000000006d7120 0000000000000030 d ht_bucket_html5_CBE
00000000006d70e0 0000000000000030 d ht_bucket_html5_CC2
00000000006d7040 0000000000000030 d ht_bucket_html5_CC5
00000000006d7000 0000000000000030 d ht_bucket_html5_CC7
00000000006d6fc0 0000000000000030 d ht_bucket_html5_CC8
00000000006d6f80 0000000000000030 d ht_bucket_html5_CC9
00000000006d6ee0 0000000000000030 d ht_bucket_html5_CD0
00000000006d6ea0 0000000000000030 d ht_bucket_html5_CD2
00000000006d6e60 0000000000000030 d ht_bucket_html5_CD3
00000000006d6dc0 0000000000000030 d ht_bucket_html5_CDA
00000000006d6d80 0000000000000030 d ht_bucket_html5_CDC
00000000006d6d40 0000000000000030 d ht_bucket_html5_CE4
00000000006d6d00 0000000000000030 d ht_bucket_html5_CE6
00000000006d6cc0 0000000000000030 d ht_bucket_html5_CE8
00000000006d6c80 0000000000000030 d ht_bucket_html5_CE9
00000000006d6be0 0000000000000030 d ht_bucket_html5_CF1
00000000006d6ba0 0000000000000030 d ht_bucket_html5_CF2
00000000006d6b00 0000000000000030 d ht_bucket_html5_CF4
00000000006d6ac0 0000000000000030 d ht_bucket_html5_CFA
00000000006d6a80 0000000000000030 d ht_bucket_html5_CFF
00000000006d6a40 0000000000000030 d ht_bucket_html5_D00
00000000006d6a00 0000000000000030 d ht_bucket_html5_D06
00000000006d69c0 0000000000000030 d ht_bucket_html5_D07
00000000006d6980 0000000000000030 d ht_bucket_html5_D0B
00000000006d6940 0000000000000030 d ht_bucket_html5_D0E
00000000006d6900 0000000000000030 d ht_bucket_html5_D10
00000000006d6860 0000000000000030 d ht_bucket_html5_D12
00000000006d67c0 0000000000000030 d ht_bucket_html5_D15
00000000006d6780 0000000000000030 d ht_bucket_html5_D18
00000000006d6680 0000000000000030 d ht_bucket_html5_D1E
00000000006d6640 0000000000000030 d ht_bucket_html5_D1F
00000000006d6600 0000000000000030 d ht_bucket_html5_D20
00000000006d65c0 0000000000000030 d ht_bucket_html5_D22
00000000006d6580 0000000000000030 d ht_bucket_html5_D24
00000000006d64e0 0000000000000030 d ht_bucket_html5_D2A
00000000006d64a0 0000000000000030 d ht_bucket_html5_D32
00000000006d6460 0000000000000030 d ht_bucket_html5_D34
00000000006d6420 0000000000000030 d ht_bucket_html5_D35
00000000006d63e0 0000000000000030 d ht_bucket_html5_D38
00000000006d63a0 0000000000000030 d ht_bucket_html5_D39
00000000006d6360 0000000000000030 d ht_bucket_html5_D3A
00000000006d6320 0000000000000030 d ht_bucket_html5_D3B
00000000006d62e0 0000000000000030 d ht_bucket_html5_D3E
00000000006d62a0 0000000000000030 d ht_bucket_html5_D42
00000000006d6260 0000000000000030 d ht_bucket_html5_D44
00000000006d6220 0000000000000030 d ht_bucket_html5_D49
00000000006d6120 0000000000000030 d ht_bucket_html5_D51
00000000006d60e0 0000000000000030 d ht_bucket_html5_D54
00000000006d60a0 0000000000000030 d ht_bucket_html5_D55
00000000006d6060 0000000000000030 d ht_bucket_html5_D56
00000000006d6020 0000000000000030 d ht_bucket_html5_D57
00000000006d5fe0 0000000000000030 d ht_bucket_html5_D5A
00000000006d5f40 0000000000000030 d ht_bucket_html5_D5F
00000000006d5ea0 0000000000000030 d ht_bucket_html5_D65
00000000006d5e60 0000000000000030 d ht_bucket_html5_D69
00000000006d5e20 0000000000000030 d ht_bucket_html5_D6A
00000000006d5c20 0000000000000030 d ht_bucket_html5_D74
00000000006d5be0 0000000000000030 d ht_bucket_html5_D75
00000000006d5a80 0000000000000030 d ht_bucket_html5_D7E
00000000006d5a40 0000000000000030 d ht_bucket_html5_D80
00000000006d5a00 0000000000000030 d ht_bucket_html5_D81
00000000006d59c0 0000000000000030 d ht_bucket_html5_D85
00000000006d5980 0000000000000030 d ht_bucket_html5_D87
00000000006d5940 0000000000000030 d ht_bucket_html5_D89
00000000006d5900 0000000000000030 d ht_bucket_html5_D8A
00000000006d5860 0000000000000030 d ht_bucket_html5_D8D
00000000006d5760 0000000000000030 d ht_bucket_html5_D90
00000000006d5720 0000000000000030 d ht_bucket_html5_D91
00000000006d56e0 0000000000000030 d ht_bucket_html5_D93
00000000006d56a0 0000000000000030 d ht_bucket_html5_D94
00000000006d5580 0000000000000030 d ht_bucket_html5_D98
00000000006d5540 0000000000000030 d ht_bucket_html5_D9A
00000000006d5500 0000000000000030 d ht_bucket_html5_D9C
00000000006d54c0 0000000000000030 d ht_bucket_html5_DA0
00000000006d5480 0000000000000030 d ht_bucket_html5_DA5
00000000006d5440 0000000000000030 d ht_bucket_html5_DA6
00000000006d5400 0000000000000030 d ht_bucket_html5_DA8
00000000006d53c0 0000000000000030 d ht_bucket_html5_DA9
00000000006d5320 0000000000000030 d ht_bucket_html5_DB0
00000000006d52e0 0000000000000030 d ht_bucket_html5_DB3
00000000006d52a0 0000000000000030 d ht_bucket_html5_DB4
00000000006d5260 0000000000000030 d ht_bucket_html5_DB6
00000000006d5220 0000000000000030 d ht_bucket_html5_DB7
00000000006d51e0 0000000000000030 d ht_bucket_html5_DB9
00000000006d51a0 0000000000000030 d ht_bucket_html5_DBC
00000000006d5160 0000000000000030 d ht_bucket_html5_DBE
00000000006d5120 0000000000000030 d ht_bucket_html5_DBF
00000000006d50e0 0000000000000030 d ht_bucket_html5_DC2
00000000006d50a0 0000000000000030 d ht_bucket_html5_DC3
00000000006d5060 0000000000000030 d ht_bucket_html5_DC6
00000000006d5020 0000000000000030 d ht_bucket_html5_DC8
00000000006d4fe0 0000000000000030 d ht_bucket_html5_DCA
00000000006d4fa0 0000000000000030 d ht_bucket_html5_DCF
00000000006d4f60 0000000000000030 d ht_bucket_html5_DD1
00000000006d4f20 0000000000000030 d ht_bucket_html5_DD3
00000000006d4ee0 0000000000000030 d ht_bucket_html5_DD4
00000000006d4ea0 0000000000000030 d ht_bucket_html5_DD5
00000000006d4e60 0000000000000030 d ht_bucket_html5_DD7
00000000006d4e20 0000000000000030 d ht_bucket_html5_DD9
00000000006d4de0 0000000000000030 d ht_bucket_html5_DDC
00000000006d4da0 0000000000000030 d ht_bucket_html5_DDD
00000000006d4d60 0000000000000030 d ht_bucket_html5_DE4
00000000006d4cc0 0000000000000030 d ht_bucket_html5_DE7
00000000006d4c80 0000000000000030 d ht_bucket_html5_DE9
00000000006d4c40 0000000000000030 d ht_bucket_html5_DEB
00000000006d4ba0 0000000000000030 d ht_bucket_html5_DF1
00000000006d4b60 0000000000000030 d ht_bucket_html5_DF2
00000000006d4b20 0000000000000030 d ht_bucket_html5_DF3
00000000006d4ae0 0000000000000030 d ht_bucket_html5_DF6
00000000006d4a40 0000000000000030 d ht_bucket_html5_DF9
00000000006d4a00 0000000000000030 d ht_bucket_html5_DFB
00000000006d49c0 0000000000000030 d ht_bucket_html5_DFD
00000000006d4920 0000000000000030 d ht_bucket_html5_E04
00000000006d48e0 0000000000000030 d ht_bucket_html5_E08
00000000006d48a0 0000000000000030 d ht_bucket_html5_E09
00000000006d4860 0000000000000030 d ht_bucket_html5_E0C
00000000006d4820 0000000000000030 d ht_bucket_html5_E11
00000000006d47e0 0000000000000030 d ht_bucket_html5_E18
00000000006d4740 0000000000000030 d ht_bucket_html5_E1C
00000000006d4700 0000000000000030 d ht_bucket_html5_E1D
00000000006d46c0 0000000000000030 d ht_bucket_html5_E1E
00000000006d45c0 0000000000000030 d ht_bucket_html5_E23
00000000006d4580 0000000000000030 d ht_bucket_html5_E24
00000000006d4540 0000000000000030 d ht_bucket_html5_E25
00000000006d4500 0000000000000030 d ht_bucket_html5_E28
00000000006d44c0 0000000000000030 d ht_bucket_html5_E2A
00000000006d4480 0000000000000030 d ht_bucket_html5_E2C
00000000006d43e0 0000000000000030 d ht_bucket_html5_E30
00000000006d43a0 0000000000000030 d ht_bucket_html5_E32
00000000006d4360 0000000000000030 d ht_bucket_html5_E33
00000000006d4320 0000000000000030 d ht_bucket_html5_E35
00000000006d42e0 0000000000000030 d ht_bucket_html5_E36
00000000006d42a0 0000000000000030 d ht_bucket_html5_E37
00000000006d4260 0000000000000030 d ht_bucket_html5_E3B
00000000006d4220 0000000000000030 d ht_bucket_html5_E41
00000000006d41e0 0000000000000030 d ht_bucket_html5_E42
00000000006d41a0 0000000000000030 d ht_bucket_html5_E43
00000000006d4160 0000000000000030 d ht_bucket_html5_E44
00000000006d4120 0000000000000030 d ht_bucket_html5_E48
00000000006d40e0 0000000000000030 d ht_bucket_html5_E4C
00000000006d40a0 0000000000000030 d ht_bucket_html5_E4E
00000000006d4060 0000000000000030 d ht_bucket_html5_E53
00000000006d4020 0000000000000030 d ht_bucket_html5_E55
00000000006d3fe0 0000000000000030 d ht_bucket_html5_E57
00000000006d3fa0 0000000000000030 d ht_bucket_html5_E58
00000000006d3f00 0000000000000030 d ht_bucket_html5_E5B
00000000006d3ec0 0000000000000030 d ht_bucket_html5_E5D
00000000006d3e80 0000000000000030 d ht_bucket_html5_E5E
00000000006d3de0 0000000000000030 d ht_bucket_html5_E60
00000000006d3da0 0000000000000030 d ht_bucket_html5_E61
00000000006d3d60 0000000000000030 d ht_bucket_html5_E63
00000000006d3d20 0000000000000030 d ht_bucket_html5_E64
00000000006d3ce0 0000000000000030 d ht_bucket_html5_E65
00000000006d3ca0 0000000000000030 d ht_bucket_html5_E66
00000000006d3c60 0000000000000030 d ht_bucket_html5_E6A
00000000006d3c20 0000000000000030 d ht_bucket_html5_E6C
00000000006d3be0 0000000000000030 d ht_bucket_html5_E6F
00000000006d3b40 0000000000000030 d ht_bucket_html5_E71
00000000006d3b00 0000000000000030 d ht_bucket_html5_E73
00000000006d3ac0 0000000000000030 d ht_bucket_html5_E78
00000000006d3a20 0000000000000030 d ht_bucket_html5_E7C
00000000006d39e0 0000000000000030 d ht_bucket_html5_E80
00000000006d39a0 0000000000000030 d ht_bucket_html5_E83
00000000006d3960 0000000000000030 d ht_bucket_html5_E84
00000000006d38c0 0000000000000030 d ht_bucket_html5_E8E
00000000006d3880 0000000000000030 d ht_bucket_html5_E91
00000000006d3840 0000000000000030 d ht_bucket_html5_E99
00000000006d3800 0000000000000030 d ht_bucket_html5_E9C
00000000006d37c0 0000000000000030 d ht_bucket_html5_EA1
00000000006d3780 0000000000000030 d ht_bucket_html5_EA2
00000000006d3740 0000000000000030 d ht_bucket_html5_EA4
00000000006d3700 0000000000000030 d ht_bucket_html5_EA8
00000000006d36c0 0000000000000030 d ht_bucket_html5_EA9
00000000006d3680 0000000000000030 d ht_bucket_html5_EB1
00000000006d3640 0000000000000030 d ht_bucket_html5_EB2
00000000006d3600 0000000000000030 d ht_bucket_html5_EB4
00000000006d35c0 0000000000000030 d ht_bucket_html5_EB7
00000000006d3580 0000000000000030 d ht_bucket_html5_EB8
00000000006d3540 0000000000000030 d ht_bucket_html5_ECA
00000000006d34a0 0000000000000030 d ht_bucket_html5_ECF
00000000006d3460 0000000000000030 d ht_bucket_html5_ED1
00000000006d3420 0000000000000030 d ht_bucket_html5_ED7
00000000006d3380 0000000000000030 d ht_bucket_html5_ED9
00000000006d3340 0000000000000030 d ht_bucket_html5_EDA
00000000006d3300 0000000000000030 d ht_bucket_html5_EDB
00000000006d3260 0000000000000030 d ht_bucket_html5_EE2
00000000006d3220 0000000000000030 d ht_bucket_html5_EE4
00000000006d31e0 0000000000000030 d ht_bucket_html5_EE5
00000000006d31a0 0000000000000030 d ht_bucket_html5_EE7
00000000006d3160 0000000000000030 d ht_bucket_html5_EE9
00000000006d3120 0000000000000030 d ht_bucket_html5_EEF
00000000006d30e0 0000000000000030 d ht_bucket_html5_EF1
00000000006d3040 0000000000000030 d ht_bucket_html5_EF4
00000000006d2fa0 0000000000000030 d ht_bucket_html5_EF9
00000000006d2ea0 0000000000000030 d ht_bucket_html5_EFE
00000000006d2e60 0000000000000030 d ht_bucket_html5_EFF
00000000006d2e20 0000000000000030 d ht_bucket_html5_F03
00000000006d2de0 0000000000000030 d ht_bucket_html5_F05
00000000006d2da0 0000000000000030 d ht_bucket_html5_F08
00000000006d2d60 0000000000000030 d ht_bucket_html5_F0B
00000000006d2d20 0000000000000030 d ht_bucket_html5_F0F
00000000006d2ce0 0000000000000030 d ht_bucket_html5_F10
00000000006d2ca0 0000000000000030 d ht_bucket_html5_F11
00000000006d2c00 0000000000000030 d ht_bucket_html5_F14
00000000006d2bc0 0000000000000030 d ht_bucket_html5_F15
00000000006d2b80 0000000000000030 d ht_bucket_html5_F17
00000000006d2b40 0000000000000030 d ht_bucket_html5_F18
00000000006d2b00 0000000000000030 d ht_bucket_html5_F19
00000000006d2a00 0000000000000030 d ht_bucket_html5_F20
00000000006d29c0 0000000000000030 d ht_bucket_html5_F26
00000000006d2980 0000000000000030 d ht_bucket_html5_F28
00000000006d28e0 0000000000000030 d ht_bucket_html5_F2F
00000000006d28a0 0000000000000030 d ht_bucket_html5_F30
00000000006d2860 0000000000000030 d ht_bucket_html5_F31
00000000006d27c0 0000000000000030 d ht_bucket_html5_F37
00000000006d2780 0000000000000030 d ht_bucket_html5_F38
00000000006d2740 0000000000000030 d ht_bucket_html5_F40
00000000006d2700 0000000000000030 d ht_bucket_html5_F41
00000000006d26c0 0000000000000030 d ht_bucket_html5_F44
00000000006d2680 0000000000000030 d ht_bucket_html5_F46
00000000006d2640 0000000000000030 d ht_bucket_html5_F47
00000000006d2600 0000000000000030 d ht_bucket_html5_F48
00000000006d25c0 0000000000000030 d ht_bucket_html5_F4B
00000000006d2580 0000000000000030 d ht_bucket_html5_F4C
00000000006d2540 0000000000000030 d ht_bucket_html5_F50
00000000006d2500 0000000000000030 d ht_bucket_html5_F51
00000000006d24c0 0000000000000030 d ht_bucket_html5_F55
00000000006d2480 0000000000000030 d ht_bucket_html5_F57
00000000006d2440 0000000000000030 d ht_bucket_html5_F58
00000000006d2400 0000000000000030 d ht_bucket_html5_F5B
00000000006d23c0 0000000000000030 d ht_bucket_html5_F5D
00000000006d2380 0000000000000030 d ht_bucket_html5_F5F
00000000006d22e0 0000000000000030 d ht_bucket_html5_F62
00000000006d22a0 0000000000000030 d ht_bucket_html5_F67
00000000006d2200 0000000000000030 d ht_bucket_html5_F69
00000000006d21c0 0000000000000030 d ht_bucket_html5_F6D
00000000006d2060 0000000000000030 d ht_bucket_html5_F71
00000000006d2020 0000000000000030 d ht_bucket_html5_F72
00000000006d1fe0 0000000000000030 d ht_bucket_html5_F74
00000000006d1f40 0000000000000030 d ht_bucket_html5_F76
00000000006d1f00 0000000000000030 d ht_bucket_html5_F77
00000000006d1e60 0000000000000030 d ht_bucket_html5_F79
00000000006d1e20 0000000000000030 d ht_bucket_html5_F81
00000000006d1d80 0000000000000030 d ht_bucket_html5_F83
00000000006d1d40 0000000000000030 d ht_bucket_html5_F84
00000000006d1d00 0000000000000030 d ht_bucket_html5_F86
00000000006d1cc0 0000000000000030 d ht_bucket_html5_F88
00000000006d1c80 0000000000000030 d ht_bucket_html5_F8B
00000000006d1c40 0000000000000030 d ht_bucket_html5_F8F
00000000006d1c00 0000000000000030 d ht_bucket_html5_F91
00000000006d1bc0 0000000000000030 d ht_bucket_html5_F93
00000000006d1b80 0000000000000030 d ht_bucket_html5_F95
00000000006d1ae0 0000000000000030 d ht_bucket_html5_F9C
00000000006d1aa0 0000000000000030 d ht_bucket_html5_F9F
00000000006d1a00 0000000000000030 d ht_bucket_html5_FA1
00000000006d19c0 0000000000000030 d ht_bucket_html5_FA2
00000000006d1980 0000000000000030 d ht_bucket_html5_FA3
00000000006d1940 0000000000000030 d ht_bucket_html5_FA9
00000000006d18a0 0000000000000030 d ht_bucket_html5_FB1
00000000006d1860 0000000000000030 d ht_bucket_html5_FB4
00000000006d1820 0000000000000030 d ht_bucket_html5_FB5
00000000006d17e0 0000000000000030 d ht_bucket_html5_FB6
00000000006d17a0 0000000000000030 d ht_bucket_html5_FB7
00000000006d1700 0000000000000030 d ht_bucket_html5_FBC
00000000006d16c0 0000000000000030 d ht_bucket_html5_FC2
00000000006d1680 0000000000000030 d ht_bucket_html5_FC4
00000000006d1640 0000000000000030 d ht_bucket_html5_FC6
00000000006d1600 0000000000000030 d ht_bucket_html5_FCA
00000000006d15c0 0000000000000030 d ht_bucket_html5_FCC
00000000006d1580 0000000000000030 d ht_bucket_html5_FCE
00000000006d1540 0000000000000030 d ht_bucket_html5_FCF
00000000006d14a0 0000000000000030 d ht_bucket_html5_FD2
00000000006d1460 0000000000000030 d ht_bucket_html5_FD3
00000000006d1420 0000000000000030 d ht_bucket_html5_FD6
00000000006d13e0 0000000000000030 d ht_bucket_html5_FD7
00000000006d13a0 0000000000000030 d ht_bucket_html5_FDD
00000000006d1360 0000000000000030 d ht_bucket_html5_FDF
00000000006d12c0 0000000000000030 d ht_bucket_html5_FE6
00000000006d1280 0000000000000030 d ht_bucket_html5_FE9
00000000006d1240 0000000000000030 d ht_bucket_html5_FEA
00000000006d1200 0000000000000030 d ht_bucket_html5_FEB
00000000006d1160 0000000000000030 d ht_bucket_html5_FF8
00000000006d1120 0000000000000030 d ht_bucket_html5_FFC
00000000006d10e0 0000000000000030 d ht_bucket_html5_FFE
00000000003e88a0 0000000000000030 r month_tab
00000000007231a0 0000000000000030 d month_tab
00000000003e88e0 0000000000000030 r month_tab_leap
00000000007231e0 0000000000000030 d month_tab_leap
0000000000703e40 0000000000000030 d multi_cp_html5_0226A
0000000000703e00 0000000000000030 d multi_cp_html5_0226B
0000000000723f80 0000000000000030 b object.5807
0000000000235ec0 0000000000000030 T php_module_shutdown_wrapper
000000000044c580 0000000000000030 r prologue_template.16799
00000000003ef0c0 0000000000000030 r rep_typ
000000000023d810 0000000000000030 t sapi_update_response_code
0000000000199640 0000000000000030 t spl_array_object_free_storage
0000000000271d60 0000000000000030 t zend_mm_munmap.part.3
00000000000da575 0000000000000030 t zend_mod_by_zero_helper_SPEC
00000000002d4750 0000000000000030 t zend_traits_method_compatibility_check
0000000000225ea0 0000000000000031 T PHP_SHA1Init
00000000000d8870 0000000000000031 t ZEND_CHECK_FUNC_ARG_SPEC_UNUSED_QUICK_HANDLER
00000000000dca14 0000000000000031 t ZEND_FETCH_OBJ_IS_SPEC_CONST_CV_HANDLER
00000000000d72c0 0000000000000031 t ZEND_IS_EQUAL_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER
00000000000d782f 0000000000000031 t ZEND_IS_EQUAL_DOUBLE_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d7376 0000000000000031 t ZEND_IS_NOT_EQUAL_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER
00000000000d78e5 0000000000000031 t ZEND_IS_NOT_EQUAL_DOUBLE_SPEC_TMPVARCV_TMPVARCV_HANDLER
000000000017bb30 0000000000000031 t _default_get_name
0000000000214c60 0000000000000031 t php_create_incomplete_object
00000000002518c0 0000000000000031 t php_shutdown_stream_wrappers
0000000000242350 0000000000000031 t php_startup_sapi_content_types
00000000002a7690 0000000000000031 T zend_save_error_handling
00000000002b90c0 0000000000000031 t zend_user_it_dtor
00000000002136f0 0000000000000031 t zm_deactivate_assert
0000000000234080 0000000000000031 t zm_info_php_core
0000000000162050 0000000000000032 t _pcre2_strcmp_8
00000000003315f0 0000000000000032 t php_cli_server_client_read_request_on_query_string
0000000000212460 0000000000000032 T php_var_serialize
00000000001997f0 0000000000000032 t spl_array_object_clone
00000000001ab3a0 0000000000000032 t spl_dllist_object_clone
00000000001ae570 0000000000000032 t spl_fixedarray_object_clone
00000000001ad030 0000000000000032 t spl_heap_object_clone
00000000002614d0 0000000000000032 T zend_destroy_file_handle
000000000027a150 0000000000000032 t zend_lookup_reserved_const
00000000002a7c40 0000000000000032 t zend_startup_extensions_mechanism
00000000001a5d40 0000000000000032 t zim_spl_SplFileInfo_openFile
00000000002eba40 0000000000000033 t ZEND_INIT_ARRAY_SPEC_CONST_CONST_HANDLER
00000000002ffa70 0000000000000033 t ZEND_INIT_ARRAY_SPEC_CONST_CV_HANDLER
00000000002eba80 0000000000000033 t ZEND_INIT_ARRAY_SPEC_CONST_TMPVAR_HANDLER
00000000002ffe80 0000000000000033 t ZEND_INIT_ARRAY_SPEC_CV_CONST_HANDLER
0000000000300410 0000000000000033 t ZEND_INIT_ARRAY_SPEC_CV_CV_HANDLER
0000000000300150 0000000000000033 t ZEND_INIT_ARRAY_SPEC_CV_TMPVAR_HANDLER
000000000030d900 0000000000000033 t ZEND_INIT_ARRAY_SPEC_CV_UNUSED_HANDLER
00000000002ebac0 0000000000000033 t ZEND_INIT_ARRAY_SPEC_TMP_CONST_HANDLER
00000000002ffc70 0000000000000033 t ZEND_INIT_ARRAY_SPEC_TMP_CV_HANDLER
00000000002ebb00 0000000000000033 t ZEND_INIT_ARRAY_SPEC_TMP_TMPVAR_HANDLER
00000000002ebb40 0000000000000033 t ZEND_INIT_ARRAY_SPEC_VAR_CONST_HANDLER
0000000000300ae0 0000000000000033 t ZEND_INIT_ARRAY_SPEC_VAR_CV_HANDLER
00000000002ebb80 0000000000000033 t ZEND_INIT_ARRAY_SPEC_VAR_TMPVAR_HANDLER
00000000002eccd0 0000000000000033 t ZEND_INIT_ARRAY_SPEC_VAR_UNUSED_HANDLER
00000000000d6a90 0000000000000033 t ZEND_IS_SMALLER_DOUBLE_SPEC_CONST_TMPVARCV_JMPNZ_HANDLER
00000000000d6a5d 0000000000000033 t ZEND_IS_SMALLER_DOUBLE_SPEC_CONST_TMPVARCV_JMPZ_HANDLER
00000000000d74f4 0000000000000033 t ZEND_IS_SMALLER_DOUBLE_SPEC_TMPVARCV_CONST_JMPNZ_HANDLER
00000000000d74c1 0000000000000033 t ZEND_IS_SMALLER_DOUBLE_SPEC_TMPVARCV_CONST_JMPZ_HANDLER
00000000000d7a63 0000000000000033 t ZEND_IS_SMALLER_DOUBLE_SPEC_TMPVARCV_TMPVARCV_JMPNZ_HANDLER
00000000000d7a30 0000000000000033 t ZEND_IS_SMALLER_DOUBLE_SPEC_TMPVARCV_TMPVARCV_JMPZ_HANDLER
00000000000d6ba6 0000000000000033 t ZEND_IS_SMALLER_OR_EQUAL_DOUBLE_SPEC_CONST_TMPVARCV_JMPNZ_HANDLER
00000000000d6b73 0000000000000033 t ZEND_IS_SMALLER_OR_EQUAL_DOUBLE_SPEC_CONST_TMPVARCV_JMPZ_HANDLER
00000000000d760a 0000000000000033 t ZEND_IS_SMALLER_OR_EQUAL_DOUBLE_SPEC_TMPVARCV_CONST_JMPNZ_HANDLER
00000000000d75d7 0000000000000033 t ZEND_IS_SMALLER_OR_EQUAL_DOUBLE_SPEC_TMPVARCV_CONST_JMPZ_HANDLER
00000000000d7b79 0000000000000033 t ZEND_IS_SMALLER_OR_EQUAL_DOUBLE_SPEC_TMPVARCV_TMPVARCV_JMPNZ_HANDLER
00000000000d7b46 0000000000000033 t ZEND_IS_SMALLER_OR_EQUAL_DOUBLE_SPEC_TMPVARCV_TMPVARCV_JMPZ_HANDLER
0000000000162090 0000000000000033 t _pcre2_strcmp_c8_8
000000000025d6e0 0000000000000033 T _php_glob_stream_get_count
00000000002405c0 0000000000000033 T destroy_uploaded_files_hash
000000000029c640 0000000000000033 t module_registry_cleanup
00000000001c7bd0 0000000000000033 T remove_user_shutdown_function
000000000032bcb0 0000000000000033 t sapi_cli_deactivate
000000000032d080 0000000000000033 t sapi_cli_flush
0000000000438b40 0000000000000033 r yyr1
0000000000438b00 0000000000000033 r yyr2
00000000002930f0 0000000000000033 T zend_compare_objects
0000000000277a10 0000000000000033 t zend_destroy_property_info_internal
00000000002a8800 0000000000000033 T zend_hash_get_current_pos
00000000002b0ac0 0000000000000033 t zend_init_rsrc_list_dtors
000000000029b790 0000000000000033 T zend_make_printable_zval
000000000029beb0 0000000000000033 t zend_post_startup
00000000002b5460 0000000000000033 t zif_get_defined_vars
00000000001ea9f0 0000000000000033 t zm_info_mail
00000000002136b0 0000000000000033 t zm_shutdown_assert
0000000000209230 0000000000000033 t zm_shutdown_syslog
00000000002fe490 0000000000000034 t ZEND_CHECK_VAR_SPEC_CV_UNUSED_HANDLER
00000000000dd3c9 0000000000000034 t ZEND_EXT_FCALL_BEGIN_SPEC_HANDLER
00000000000dd3fd 0000000000000034 t ZEND_EXT_FCALL_END_SPEC_HANDLER
00000000000dd395 0000000000000034 t ZEND_EXT_STMT_SPEC_HANDLER
0000000000337500 0000000000000034 r d_table_common
00000000003374c0 0000000000000034 r d_table_leap
00000000003e8820 0000000000000034 r days_in_month
00000000003e8860 0000000000000034 r days_in_month_leap
0000000000337580 0000000000000034 r m_table_common
0000000000337540 0000000000000034 r m_table_leap
0000000000723120 0000000000000034 d ml_table_common
00000000007230e0 0000000000000034 d ml_table_leap
00000000001b0360 0000000000000034 t php_array_reverse_data_compare_numeric
00000000001b0270 0000000000000034 t php_array_reverse_data_compare_string
00000000001b02f0 0000000000000034 t php_array_reverse_data_compare_string_case
00000000001b0200 0000000000000034 t php_array_reverse_data_compare_string_locale
00000000000e5870 0000000000000034 t php_date_timestamp_set.isra.14
0000000000160ee0 0000000000000034 T php_pcre2_match_data_create
0000000000161ff0 0000000000000034 T php_pcre2_serialize_get_number_of_codes
00000000001fbea0 0000000000000034 T php_strtolower
00000000001fbc40 0000000000000034 T php_strtoupper
00000000004192e0 0000000000000034 R php_tiff_bytes_per_format
0000000000288370 0000000000000034 t zend_compile_stmt_list
00000000002b8290 0000000000000034 T zend_multibyte_set_script_encoding
00000000002ba1f0 0000000000000034 T zend_user_it_new_iterator
00000000002b1090 0000000000000034 t zif_gc_mem_caches
00000000001c2ca0 0000000000000034 t zif_get_magic_quotes_gpc
000000000018eb00 0000000000000034 t zim_spl_EmptyIterator_valid
000000000019ed30 0000000000000034 t zim_spl_SplFileObject_hasChildren
00000000001ad830 0000000000000034 t zim_spl_SplFixedArray_next
00000000001ad8e0 0000000000000034 t zim_spl_SplFixedArray_rewind
00000000002d9630 0000000000000035 t ZEND_FREE_SPEC_TMPVAR_HANDLER
00000000002e0470 0000000000000035 t ZEND_GENERATOR_RETURN_SPEC_TMP_HANDLER
00000000000dd91c 0000000000000035 t ZEND_IS_EQUAL_DOUBLE_SPEC_TMPVARCV_CONST_JMPNZ_HANDLER
00000000000dd8e7 0000000000000035 t ZEND_IS_EQUAL_DOUBLE_SPEC_TMPVARCV_CONST_JMPZ_HANDLER
00000000000dd854 0000000000000035 t ZEND_IS_EQUAL_DOUBLE_SPEC_TMPVARCV_TMPVARCV_JMPNZ_HANDLER
00000000000dd9af 0000000000000035 t ZEND_IS_EQUAL_DOUBLE_SPEC_TMPVARCV_TMPVARCV_JMPZ_HANDLER
00000000000d73dc 0000000000000035 t ZEND_IS_NOT_EQUAL_DOUBLE_SPEC_TMPVARCV_CONST_JMPNZ_HANDLER
00000000000d73a7 0000000000000035 t ZEND_IS_NOT_EQUAL_DOUBLE_SPEC_TMPVARCV_CONST_JMPZ_HANDLER
00000000000d794b 0000000000000035 t ZEND_IS_NOT_EQUAL_DOUBLE_SPEC_TMPVARCV_TMPVARCV_JMPNZ_HANDLER
00000000000d7916 0000000000000035 t ZEND_IS_NOT_EQUAL_DOUBLE_SPEC_TMPVARCV_TMPVARCV_JMPZ_HANDLER
00000000000dd69f 0000000000000035 t ZEND_UNSET_STATIC_PROP_SPEC_CONST_UNUSED_HANDLER
0000000000214f50 0000000000000035 t incomplete_class_get_property
0000000000292410 0000000000000035 T instanceof_function
0000000000254850 0000000000000035 T php_stream_bucket_append
0000000000425a40 0000000000000035 r rot13_from
0000000000425a00 0000000000000035 r rot13_to
000000000026b880 0000000000000035 t yydestruct.isra.3
00000000002ce5a0 0000000000000035 T zend_ast_copy
00000000002b0480 0000000000000035 t zend_clean_module_rsrc_dtors_cb
000000000027c800 0000000000000035 t zend_compile_func_ord
00000000002a7ac0 0000000000000035 t zend_extension_dtor
000000000028e030 0000000000000035 T zend_get_this_object
00000000002aa1e0 0000000000000035 T zend_hash_str_add_or_update
000000000028ae90 0000000000000035 t zend_startup_constants
00000000002a0270 0000000000000035 T zend_startup_modules
00000000001c2d60 0000000000000035 t zif_flush
00000000002b76b0 0000000000000036 T OnUpdateStringUnempty
000000000029c800 0000000000000036 t display_disabled_class
00000000003356f0 0000000000000036 t get_ps_title
0000000000254c80 0000000000000036 T php_stream_filter_prepend_ex
00000000000ebc90 0000000000000036 t timelib_daynr_from_weeknr
00000000000ebe00 0000000000000036 t timelib_valid_time
000000000027c8b0 0000000000000036 t zend_compile_func_get_args
000000000027c870 0000000000000036 t zend_compile_func_num_args
000000000028e420 0000000000000036 T zend_eval_string_ex
0000000000271d90 0000000000000036 t zend_mm_chunk_free.isra.4
000000000028af00 0000000000000036 T zend_verify_const_access
0000000000170bb0 0000000000000036 t zif_json_last_error
00000000002b7630 0000000000000037 T OnUpdateLongGEZero
00000000001eb320 0000000000000037 T _php_math_round
0000000000221720 0000000000000037 t php_stream_input_seek
0000000000330610 0000000000000037 t sapi_cli_server_read_cookies
000000000023f650 0000000000000037 T sapi_register_post_entries
00000000001a6f80 0000000000000037 t spl_SplObjectStorage_free_storage
00000000000dcd1b 0000000000000037 t zend_deprecated_function.isra.9
00000000002b73e0 0000000000000037 T zend_ini_get_value
00000000000dcd52 0000000000000037 t zend_param_must_be_ref.isra.10
0000000000209b60 0000000000000037 t zif_boolval
000000000020a110 0000000000000037 t zif_is_countable
000000000020a0d0 0000000000000037 t zif_is_iterable
000000000018eb80 0000000000000037 t zim_spl_EmptyIterator_current
000000000018eb40 0000000000000037 t zim_spl_EmptyIterator_key
00000000000dca45 0000000000000038 t ZEND_FETCH_OBJ_R_SPEC_CONST_CV_HANDLER
00000000003f0260 0000000000000038 r _pcre2_ucp_typerange_8
00000000007249e0 0000000000000038 b basic_submodules
00000000007244e0 0000000000000038 b char_tables
0000000000725f00 0000000000000038 b configuration_hash
000000000069c820 0000000000000038 d date_period_it_funcs
000000000069c8a0 0000000000000038 d day_full_names
000000000069c860 0000000000000038 d day_short_names
00000000006bb660 0000000000000038 d day_short_names
000000000043c560 0000000000000038 R empty_fcall_info
0000000000726640 0000000000000038 b interned_strings_permanent
0000000000726160 0000000000000038 b list_destructors
000000000072b3e0 0000000000000038 B module_registry
000000000072a920 0000000000000038 B output_globals
0000000000722380 0000000000000038 d php_builtin_extensions
000000000032faa0 0000000000000038 t php_http_parser_init
00000000001cbf30 0000000000000038 T php_load_shlib
0000000000725fe0 0000000000000038 b php_output_handler_aliases
0000000000725fa0 0000000000000038 b php_output_handler_conflicts
0000000000725f60 0000000000000038 b php_output_handler_reverse_conflicts
00000000006aee60 0000000000000038 d spl_array_it_funcs
00000000006b0f80 0000000000000038 d spl_dllist_it_funcs
00000000006b0220 0000000000000038 d spl_filesystem_dir_it_funcs
00000000006b01e0 0000000000000038 d spl_filesystem_tree_it_funcs
00000000006b1960 0000000000000038 d spl_fixedarray_it_funcs
00000000006b1580 0000000000000038 d spl_heap_it_funcs
00000000006b1540 0000000000000038 d spl_pqueue_it_funcs
00000000006ae440 0000000000000038 d spl_recursive_it_iterator_funcs
0000000000726080 0000000000000038 b stream_filters_hash
0000000000726040 0000000000000038 b url_stream_wrappers_hash
00000000007260c0 0000000000000038 b xport_hash
00000000002c5760 0000000000000038 t zend_closure_bind_var_ex
0000000000722260 0000000000000038 D zend_empty_array
000000000072b420 0000000000000038 B zend_extensions
00000000007085a0 0000000000000038 d zend_generator_iterator_functions
00000000002af590 0000000000000038 T zend_hash_internal_pointer_reset_ex
0000000000707be0 0000000000000038 d zend_interface_iterator_funcs_iterator
00000000002b0610 0000000000000038 T zend_list_close
00000000002b58c0 0000000000000038 t zend_startup_builtin_functions
00000000000e5260 0000000000000038 t zif_date_get_last_errors
00000000000d7eb9 0000000000000039 t ZEND_FE_FREE_SPEC_TMPVAR_HANDLER
00000000002b8130 0000000000000039 t dummy_encoding_list_parser
00000000002477f0 0000000000000039 T php_output_activate
0000000000253b40 0000000000000039 T php_stream_mode_from_str
000000000019f040 0000000000000039 t spl_filesystem_tree_it_dtor
000000000027b090 0000000000000039 t zend_compile_method_ref
00000000001dd0e0 0000000000000039 t zif_user_sprintf
00000000001dd120 0000000000000039 t zif_vsprintf
000000000029a030 0000000000000039 T zval_internal_ptr_dtor
00000000000d6e37 000000000000003a t ZEND_PRE_DEC_LONG_SPEC_TMPVARCV_RETVAL_USED_HANDLER
00000000000d6d11 000000000000003a t ZEND_PRE_INC_LONG_SPEC_TMPVARCV_RETVAL_USED_HANDLER
0000000000236440 000000000000003a T php_handle_aborted_connection
00000000002477b0 000000000000003a T php_output_shutdown
00000000002a7a80 000000000000003a t zend_extension_startup
000000000028caa0 000000000000003a T zend_get_executed_filename_ex
000000000028ccd0 000000000000003a T zend_get_executed_scope
00000000002d3da0 000000000000003a T zend_objects_store_mark_destructed
00000000001a12a0 000000000000003a t zim_spl_SplFileObject_fpassthru
00000000000db12f 000000000000003b t ZEND_FETCH_OBJ_R_SPEC_CONST_TMPVAR_HANDLER
00000000000d6fe8 000000000000003b t ZEND_POST_DEC_LONG_SPEC_TMPVARCV_HANDLER
00000000000d6f25 000000000000003b t ZEND_POST_INC_LONG_SPEC_TMPVARCV_HANDLER
000000000024f1f0 000000000000003b t clone_wrapper_hash
0000000000251b10 000000000000003b T php_unregister_url_stream_wrapper_volatile
00000000002cae80 000000000000003b T virtual_cwd_deactivate
0000000000292d10 000000000000003b T zend_binary_strcmp
00000000002a1dd0 000000000000003b T zend_get_module_started
00000000002a8130 000000000000003b T zend_hash_bucket_swap
0000000000227370 000000000000003b t zm_deactivate_user_filters
000000000029a070 000000000000003b T zval_add_ref
00000000000d9dc8 000000000000003b t zval_undefined_cv
000000000016b130 000000000000003c t OnUpdateJit
00000000003135b0 000000000000003c t ZEND_ASSERT_CHECK_SPEC_HANDLER
00000000000d68bf 000000000000003c t ZEND_SEND_VAL_EX_SIMPLE_SPEC_CONST_HANDLER
00000000000d8253 000000000000003c t ZEND_SEND_VAL_EX_SPEC_TMP_QUICK_HANDLER
00000000003f02a0 000000000000003c r _pcre2_ucp_gbtable_8
00000000003315b0 000000000000003c t php_cli_server_client_read_request_on_url
00000000001a8310 000000000000003c t spl_object_storage_get
00000000000dc912 000000000000003c t zend_abstract_method_helper_SPEC.isra.2
00000000002c4230 000000000000003c t zend_closure_get_gc
000000000027c7c0 000000000000003c t zend_compile_func_chr
00000000002a6950 000000000000003c T zend_declare_class_constant_string
0000000000277950 000000000000003c t zend_end_namespace
000000000028ca60 000000000000003c T zend_get_executed_filename
00000000002a8b70 000000000000003c T zend_hash_iterators_advance
0000000000209dd0 000000000000003c t zif_is_array
0000000000209cd0 000000000000003c t zif_is_bool
0000000000209d50 000000000000003c t zif_is_float
0000000000209d10 000000000000003c t zif_is_int
0000000000209c30 000000000000003c t zif_is_null
0000000000209e10 000000000000003c t zif_is_object
0000000000209d90 000000000000003c t zif_is_string
000000000024e030 000000000000003c t zif_ob_get_contents
00000000001a7340 000000000000003c t zim_spl_SplObjectStorage_next
00000000000db507 000000000000003d t ZEND_EXIT_SPEC_CONST_HANDLER
00000000002deb80 000000000000003d t ZEND_FAST_CALL_SPEC_HANDLER
00000000000d8579 000000000000003d t ZEND_SEND_VAR_EX_SIMPLE_SPEC_VAR_HANDLER
0000000000293660 000000000000003d T _convert_to_cstring
0000000000276f50 000000000000003d T _safe_emalloc
0000000000276f90 000000000000003d T _safe_malloc
00000000003ea4e0 000000000000003d r meta_extra_lengths
00000000001e5f80 000000000000003d T php_info_print_box_start
0000000000331540 000000000000003d t sapi_cli_server_flush
00000000001a2250 000000000000003d T spl_filesystem_object_get_path
0000000000320be0 000000000000003d T zend_clean_and_cache_symbol_table
00000000002c41f0 000000000000003d t zend_closure_get_closure
000000000027ea60 000000000000003d t zend_compile_magic_const
000000000027a000 000000000000003d t zend_prefix_with_ns
00000000000de890 000000000000003d t zm_activate_date
00000000000da08e 000000000000003e t ZEND_FETCH_OBJ_IS_SPEC_CONST_TMPVAR_HANDLER
000000000025d1f0 000000000000003e T _php_stream_mmap_unmap_ex
0000000000240310 000000000000003e t safe_php_register_variable_ex
00000000000ebc50 000000000000003e t timelib_isodate_from_date
00000000002d82e0 000000000000003e T zend_cpu_supports
00000000002a6720 000000000000003e T zend_declare_class_constant_null
000000000029b330 000000000000003e t zend_gc_enabled_displayer_cb
00000000002a9450 000000000000003e T zend_hash_add_empty_element
00000000002aa470 000000000000003e T zend_hash_index_add_empty_element
00000000002aa020 000000000000003e T zend_hash_str_add_empty_element
000000000028be50 000000000000003e T zend_register_string_constant
00000000002a6b70 000000000000003e T zend_update_property_null
00000000002a7160 000000000000003e T zend_update_static_property_null
00000000000d6e71 000000000000003f t ZEND_PRE_DEC_LONG_OR_DOUBLE_SPEC_TMPVARCV_RETVAL_UNUSED_HANDLER
00000000000d6d4b 000000000000003f t ZEND_PRE_INC_LONG_OR_DOUBLE_SPEC_TMPVARCV_RETVAL_UNUSED_HANDLER
00000000002d95f0 000000000000003f t ZEND_SEPARATE_SPEC_VAR_UNUSED_HANDLER
00000000001c8530 000000000000003f t browscap_entry_dtor
00000000001ee670 000000000000003f T make_digest
0000000000245690 000000000000003f T php_hash_environment
00000000001e5fc0 000000000000003f T php_info_print_box_end
00000000002bed00 000000000000003f t rv_alloc
000000000023daf0 000000000000003f T sapi_handle_post
00000000001919b0 000000000000003f t spl_iterator_to_values_apply
00000000001a8070 000000000000003f t spl_object_storage_compare_objects
000000000018e970 000000000000003f t spl_recursive_it_get_current_key
00000000000ec1f0 000000000000003f t timelib_get_month
0000000000108820 000000000000003f t timelib_timezone_id_is_valid
00000000001c13b0 000000000000003f t user_tick_function_dtor
00000000002773e0 000000000000003f T zend_mm_get_custom_handlers
00000000002773a0 000000000000003f T zend_mm_set_custom_handlers
0000000000219f80 000000000000003f t zm_activate_url_scanner_ex
000000000022b260 000000000000003f t zm_shutdown_standard_filters
0000000000425000 0000000000000040 r PADDING
00000000003f0360 0000000000000040 r _pcre2_utf8_table4
0000000000276fd0 0000000000000040 T _safe_erealloc
0000000000277010 0000000000000040 T _safe_realloc
00000000000dee90 0000000000000040 t date_object_free_storage_period
00000000006a93c0 0000000000000040 d default_parser_methods
00000000002606f0 0000000000000040 t encoding_filter_intermediate_to_internal
0000000000260730 0000000000000040 t encoding_filter_script_to_internal
00000000007264c0 0000000000000040 b freelist
00000000006a9200 0000000000000040 d json_serializable_interface
000000000020a470 0000000000000040 T php_replace_controlchars_ex
00000000006aa140 0000000000000040 d reflection_named_type_functions
00000000006aeea0 0000000000000040 d spl_SplTempFileObject_functions
00000000006ac940 0000000000000040 d spl_funcs_OuterIterator
00000000006ad500 0000000000000040 d spl_funcs_SeekableIterator
00000000006b1380 0000000000000040 d spl_funcs_SplMaxHeap
00000000006b13c0 0000000000000040 d spl_funcs_SplMinHeap
00000000006b0a40 0000000000000040 d spl_funcs_SplObserver
00000000006b19a0 0000000000000040 d standard_deps
0000000000717fc0 0000000000000040 d template_map
0000000000723160 0000000000000040 d timelib_error_messages
00000000002c4910 0000000000000040 t zend_closure_new
0000000000285e00 0000000000000040 t zend_compile_dim
0000000000283590 0000000000000040 t zend_compile_prop
0000000000707ba0 0000000000000040 d zend_funcs_aggregate
0000000000707880 0000000000000040 d zend_funcs_countable
0000000000273000 0000000000000040 t zend_mm_alloc_large
00000000002d3cc0 0000000000000040 T zend_objects_store_init
00000000001a11f0 0000000000000040 t zim_spl_SplFileObject_fflush
00000000001f5500 0000000000000040 t zm_startup_mt_rand
00000000002a8b20 0000000000000041 T _zend_hash_iterators_update
000000000040e100 0000000000000041 r base64_table
0000000000411380 0000000000000041 r itoa64
00000000002a6060 0000000000000041 T zend_declare_property_null
0000000000277d70 0000000000000041 t zend_ensure_writable_variable.isra.6
00000000000e4d40 0000000000000041 t zim_DatePeriod___wakeup
00000000001c7930 0000000000000042 T _php_error_log
00000000000df3b0 0000000000000042 t date_object_clone_interval
0000000000290ba0 0000000000000042 T destroy_zend_function
0000000000245950 0000000000000042 T php_network_freeaddresses
000000000014d330 0000000000000042 T php_pcre2_jit_stack_free
0000000000252980 0000000000000042 T php_stream_context_alloc
00000000002a6760 0000000000000042 T zend_declare_class_constant_long
00000000002a6100 0000000000000042 T zend_declare_property_long
00000000002c5830 0000000000000042 T zend_ensure_fpu_mode
000000000026d210 0000000000000042 t zend_ini_prepare_string_for_scanning
0000000000277f60 0000000000000042 t zend_start_live_range.isra.12
00000000002a6d20 0000000000000042 T zend_update_property_long
00000000002a71f0 0000000000000042 T zend_update_static_property_long
000000000018d180 0000000000000042 t zif_spl_object_id
00000000002ec460 0000000000000043 t ZEND_ADD_ARRAY_ELEMENT_SPEC_TMP_UNUSED_HANDLER
00000000000d6742 0000000000000043 t ZEND_SEND_VAL_EX_SPEC_CONST_QUICK_HANDLER
0000000000250e60 0000000000000043 t _php_stream_eof.part.3
00000000002af4e0 0000000000000043 T _zend_hash_index_find
000000000029e8a0 0000000000000043 T add_index_null
0000000000214de0 0000000000000043 T php_lookup_class_name
0000000000246e10 0000000000000043 T php_set_sock_blocking
0000000000335600 0000000000000043 t ps_title_errno
000000000023e750 0000000000000043 T sapi_initialize_empty_request
0000000000278c60 0000000000000043 t shutdown_compiler
00000000002a6800 0000000000000043 T zend_declare_class_constant_double
000000000029d470 0000000000000043 T zend_parse_arg_bool_slow
000000000029d7e0 0000000000000043 T zend_parse_arg_double_slow
00000000002a6d70 0000000000000043 T zend_update_property_double
00000000002a7240 0000000000000043 T zend_update_static_property_double
00000000001d88b0 0000000000000043 t zm_deactivate_filestat
0000000000234310 0000000000000044 t OnUpdateTimeout
00000000000da3aa 0000000000000044 t ZEND_COALESCE_SPEC_CONST_HANDLER
00000000000d932c 0000000000000044 t ZEND_SEND_VAR_EX_SIMPLE_SPEC_CV_HANDLER
0000000000169b60 0000000000000044 t _pcre2_config_str
0000000000250590 0000000000000044 T _php_stream_flush
00000000002a80e0 0000000000000044 t _zend_hash_iterators_remove
00000000000cbc09 0000000000000044 t convert_compare_result_to_long
00000000002785e0 0000000000000044 t is_this_fetch.isra.14.part.15
00000000001ee6b0 0000000000000044 T make_digest_ex
00000000002460e0 0000000000000044 T php_any_addr
00000000001fde90 0000000000000044 T php_strcspn
0000000000254390 0000000000000044 t php_stream_bucket_delref.part.0
00000000001fde40 0000000000000044 T php_strspn
00000000002a67b0 0000000000000044 T zend_declare_class_constant_bool
000000000032fea0 0000000000000044 t zif_apache_response_headers
0000000000209420 0000000000000044 t zif_closelog
00000000001f4000 0000000000000044 t zif_getmypid
00000000001def80 0000000000000044 t zif_headers_list
000000000024e070 0000000000000044 t zif_ob_get_level
00000000001aa090 0000000000000044 t zim_spl_SplDoublyLinkedList_next
00000000001a9d20 0000000000000044 t zim_spl_SplDoublyLinkedList_rewind
00000000001a71c0 0000000000000044 t zim_spl_SplObjectStorage_rewind
000000000022b210 0000000000000044 t zm_startup_standard_filters
0000000000234170 0000000000000045 t OnChangeMemoryLimit
00000000002e0420 0000000000000045 t ZEND_GENERATOR_RETURN_SPEC_CONST_HANDLER
000000000029f230 0000000000000045 T add_get_index_long
000000000023c6e0 0000000000000045 T config_zval_dtor
000000000024eee0 0000000000000045 t forget_persistent_resource_id_numbers
00000000002539f0 0000000000000045 t php_stream_temp_read
00000000002a60b0 0000000000000045 T zend_declare_property_bool
0000000000299b50 0000000000000045 T zend_ptr_stack_reverse_apply
00000000002b8fd0 0000000000000045 T zend_register_iterator_wrapper
00000000002a6cd0 0000000000000045 T zend_update_property_bool
00000000002a71a0 0000000000000045 T zend_update_static_property_bool
000000000029f280 0000000000000046 T add_get_index_double
0000000000245880 0000000000000046 T php_add_tick_function
000000000023d3f0 0000000000000046 t php_ini_register_extensions
000000000011b560 0000000000000046 T php_pcre2_set_glob_escape
000000000019e870 0000000000000046 t spl_filesystem_dir_it_move_forward
000000000019ee10 0000000000000046 t spl_filesystem_dir_it_rewind
0000000000109a00 0000000000000046 t timelib_rel_time_clone
00000000002d0890 0000000000000046 T zend_check_protected
00000000002a6150 0000000000000046 T zend_declare_property_double
00000000002a86f0 0000000000000046 T zend_hash_discard
00000000002a7fb0 0000000000000046 T zend_load_extension
00000000002b9c90 0000000000000046 T zend_user_it_get_current_data
0000000000169b10 0000000000000046 t zm_activate_pcre
0000000000170740 0000000000000046 t zm_info_json
00000000000d70ef 0000000000000047 t ZEND_ADD_LONG_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7663 0000000000000047 t ZEND_ADD_LONG_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d693a 0000000000000047 t ZEND_SUB_LONG_SPEC_CONST_TMPVARCV_HANDLER
00000000000d7189 0000000000000047 t ZEND_SUB_LONG_SPEC_TMPVARCV_CONST_HANDLER
00000000000d76fb 0000000000000047 t ZEND_SUB_LONG_SPEC_TMPVARCV_TMPVARCV_HANDLER
0000000000251f60 0000000000000047 T _php_stream_rmdir
000000000029e850 0000000000000047 T add_index_long
000000000029e940 0000000000000047 T add_index_resource
000000000010b760 0000000000000047 t timelib_apply_localtime
00000000001c1360 0000000000000047 t user_shutdown_function_dtor
0000000000279ba0 0000000000000047 t zend_stop_lexing
00000000000db17b 0000000000000047 t zend_wrong_property_check
00000000000db0ae 0000000000000047 t zend_wrong_property_read
00000000000db21c 0000000000000047 t zend_wrong_property_unset
000000000071c120 0000000000000048 d _pcre2_default_compile_context_8
000000000029e990 0000000000000048 T add_index_double
00000000006b04c0 0000000000000048 d arginfo_MultipleIterator_attachIterator
00000000006b3100 0000000000000048 d arginfo_addcslashes
00000000006ba320 0000000000000048 d arginfo_array_change_key_case
00000000006b98e0 0000000000000048 d arginfo_array_combine
00000000006b9e80 0000000000000048 d arginfo_array_diff
00000000006b9dc0 0000000000000048 d arginfo_array_diff_assoc
00000000006b9f40 0000000000000048 d arginfo_array_diff_key
00000000006baaa0 0000000000000048 d arginfo_array_fill_keys
00000000006ba1a0 0000000000000048 d arginfo_array_intersect
00000000006ba0e0 0000000000000048 d arginfo_array_intersect_assoc
00000000006ba260 0000000000000048 d arginfo_array_intersect_key
00000000006aeda0 0000000000000048 d arginfo_array_iterator___construct
00000000006b99a0 0000000000000048 d arginfo_array_key_exists
00000000006b9a00 0000000000000048 d arginfo_array_map
00000000006ba760 0000000000000048 d arginfo_array_merge
00000000006ba700 0000000000000048 d arginfo_array_merge_recursive
00000000006aed00 0000000000000048 d arginfo_array_offsetSet
00000000006ba9a0 0000000000000048 d arginfo_array_push
00000000006b9ba0 0000000000000048 d arginfo_array_rand
00000000006ba6a0 0000000000000048 d arginfo_array_replace
00000000006ba640 0000000000000048 d arginfo_array_replace_recursive
00000000006ba420 0000000000000048 d arginfo_array_reverse
00000000006ba2c0 0000000000000048 d arginfo_array_unique
00000000006ba8c0 0000000000000048 d arginfo_array_unshift
0000000000707a00 0000000000000048 d arginfo_arrayaccess_offset_value
00000000006bb160 0000000000000048 d arginfo_arsort
00000000006bb1c0 0000000000000048 d arginfo_asort
00000000006b8c20 0000000000000048 d arginfo_assert
00000000006b8bc0 0000000000000048 d arginfo_assert_options
00000000006b5c00 0000000000000048 d arginfo_atan2
00000000006b08e0 0000000000000048 d arginfo_attach
00000000006b8b20 0000000000000048 d arginfo_base64_decode
00000000006b38a0 0000000000000048 d arginfo_basename
00000000006ad2c0 0000000000000048 d arginfo_caching_it___construct
00000000006ad1e0 0000000000000048 d arginfo_caching_it_offsetSet
00000000006acf40 0000000000000048 d arginfo_caching_rec_it___construct
00000000006b9460 0000000000000048 d arginfo_call_user_func
00000000006b9400 0000000000000048 d arginfo_call_user_func_array
00000000006adbc0 0000000000000048 d arginfo_callback_filter_it___construct
00000000006b74a0 0000000000000048 d arginfo_chgrp
00000000006b7320 0000000000000048 d arginfo_chmod
00000000006b7440 0000000000000048 d arginfo_chown
00000000007072c0 0000000000000048 d arginfo_class_exists
00000000006ac780 0000000000000048 d arginfo_class_implements
00000000006ac7e0 0000000000000048 d arginfo_class_parents
00000000006ac720 0000000000000048 d arginfo_class_uses
00000000006b7260 0000000000000048 d arginfo_clearstatcache
0000000000708200 0000000000000048 d arginfo_closure_bindto
0000000000708140 0000000000000048 d arginfo_closure_call
00000000006bb2a0 0000000000000048 d arginfo_count
00000000006b2bc0 0000000000000048 d arginfo_count_chars
0000000000707020 0000000000000048 d arginfo_create_function
00000000006b8a20 0000000000000048 d arginfo_crypt
000000000069ef20 0000000000000048 d arginfo_date
000000000069e5a0 0000000000000048 d arginfo_date_add
000000000069e840 0000000000000048 d arginfo_date_create
000000000069e6e0 0000000000000048 d arginfo_date_format
000000000069db20 0000000000000048 d arginfo_date_interval_format
000000000069e2e0 0000000000000048 d arginfo_date_method_diff
000000000069e640 0000000000000048 d arginfo_date_modify
000000000069e740 0000000000000048 d arginfo_date_parse_from_format
000000000069e500 0000000000000048 d arginfo_date_sub
000000000069dfa0 0000000000000048 d arginfo_date_timestamp_set
000000000069e420 0000000000000048 d arginfo_date_timezone_set
0000000000706ec0 0000000000000048 d arginfo_debug_backtrace
0000000000706e60 0000000000000048 d arginfo_debug_print_backtrace
00000000006b88a0 0000000000000048 d arginfo_dir
00000000006b3840 0000000000000048 d arginfo_dirname
00000000006b0e60 0000000000000048 d arginfo_dllist_offsetSet
00000000006b8580 0000000000000048 d arginfo_dns_check_record
00000000006b7dc0 0000000000000048 d arginfo_fgets
00000000006af580 0000000000000048 d arginfo_file_object_flock
00000000006af480 0000000000000048 d arginfo_file_object_fscanf
00000000006af520 0000000000000048 d arginfo_file_object_fseek
00000000006af420 0000000000000048 d arginfo_file_object_fwrite
00000000006b17e0 0000000000000048 d arginfo_fixedarray_fromArray
00000000006b1880 0000000000000048 d arginfo_fixedarray_offsetSet
00000000006b5420 0000000000000048 d arginfo_fmod
00000000006b93a0 0000000000000048 d arginfo_forward_static_call
00000000006b9340 0000000000000048 d arginfo_forward_static_call_array
00000000006b7760 0000000000000048 d arginfo_fread
00000000006b6a00 0000000000000048 d arginfo_ftok
00000000006b7860 0000000000000048 d arginfo_ftruncate
00000000006b8ac0 0000000000000048 d arginfo_get_browser
00000000006b81a0 0000000000000048 d arginfo_get_meta_tags
00000000006b9740 0000000000000048 d arginfo_getenv
00000000006b6360 0000000000000048 d arginfo_getimagesize
00000000006b8f60 0000000000000048 d arginfo_getservbyname
00000000006b8f00 0000000000000048 d arginfo_getservbyport
00000000006b8700 0000000000000048 d arginfo_glob
000000000069eec0 0000000000000048 d arginfo_gmdate
000000000069eb60 0000000000000048 d arginfo_gmstrftime
00000000006b6780 0000000000000048 d arginfo_headers_sent
00000000006b14a0 0000000000000048 d arginfo_heap_compare
00000000006b2ee0 0000000000000048 d arginfo_hebrev
00000000006b2e80 0000000000000048 d arginfo_hebrevc
00000000006b9280 0000000000000048 d arginfo_highlight_file
00000000006b91e0 0000000000000048 d arginfo_highlight_string
00000000006b6620 0000000000000048 d arginfo_htmlspecialchars_decode
00000000006b5760 0000000000000048 d arginfo_hypot
000000000069ee60 0000000000000048 d arginfo_idate
00000000006b63c0 0000000000000048 d arginfo_image_type_to_extension
00000000006b39e0 0000000000000048 d arginfo_implode
00000000006b9140 0000000000000048 d arginfo_ini_get_all
00000000006b90e0 0000000000000048 d arginfo_ini_set
00000000006b53c0 0000000000000048 d arginfo_intdiv
00000000006b24c0 0000000000000048 d arginfo_intval
00000000006ac8e0 0000000000000048 d arginfo_iterator_to_array
00000000006bb360 0000000000000048 d arginfo_krsort
00000000006bb300 0000000000000048 d arginfo_ksort
00000000006b73e0 0000000000000048 d arginfo_lchgrp
00000000006b7380 0000000000000048 d arginfo_lchown
00000000006b5fe0 0000000000000048 d arginfo_link
000000000069eb00 0000000000000048 d arginfo_localtime
00000000006b5840 0000000000000048 d arginfo_log
00000000006b3b20 0000000000000048 d arginfo_ltrim
00000000006b5360 0000000000000048 d arginfo_md5
00000000006b5300 0000000000000048 d arginfo_md5_file
00000000006b52a0 0000000000000048 d arginfo_metaphone
0000000000707380 0000000000000048 d arginfo_method_exists
00000000006b2860 0000000000000048 d arginfo_money_format
00000000006b8d40 0000000000000048 d arginfo_move_uploaded_file
00000000006b4ce0 0000000000000048 d arginfo_mt_rand
00000000006b4d40 0000000000000048 d arginfo_mt_srand
00000000006b2e20 0000000000000048 d arginfo_nl2br
00000000006b8900 0000000000000048 d arginfo_opendir
00000000006bb4a0 0000000000000048 d arginfo_output_add_rewrite_var
00000000006b5180 0000000000000048 d arginfo_pack
00000000006b2d00 0000000000000048 d arginfo_parse_str
00000000006b1fe0 0000000000000048 d arginfo_parse_url
00000000006b8360 0000000000000048 d arginfo_passthru
00000000006b4fc0 0000000000000048 d arginfo_password_verify
00000000006b37e0 0000000000000048 d arginfo_pathinfo
00000000006a97e0 0000000000000048 d arginfo_pcntl_getpriority
00000000006a9ae0 0000000000000048 d arginfo_pcntl_sigwaitinfo
00000000006b7ea0 0000000000000048 d arginfo_popen
00000000006b5960 0000000000000048 d arginfo_pow
00000000006b1440 0000000000000048 d arginfo_pqueue_insert
00000000006a8d20 0000000000000048 d arginfo_preg_quote
00000000006b9000 0000000000000048 d arginfo_print_r
00000000006b6cc0 0000000000000048 d arginfo_printf
00000000006b4f60 0000000000000048 d arginfo_proc_terminate
0000000000707320 0000000000000048 d arginfo_property_exists
00000000006afa60 0000000000000048 d arginfo_r_dir___construct
00000000006b4c40 0000000000000048 d arginfo_random_int
00000000006adb00 0000000000000048 d arginfo_recursive_callback_filter_it___construct
00000000006ae020 0000000000000048 d arginfo_recursive_tree_it_setPrefixPart
00000000006aa760 0000000000000048 d arginfo_reflection_class_constant___construct
00000000006ab800 0000000000000048 d arginfo_reflection_class_export
00000000006ab760 0000000000000048 d arginfo_reflection_class_getStaticPropertyValue
00000000006ab700 0000000000000048 d arginfo_reflection_class_setStaticPropertyValue
00000000006ac480 0000000000000048 d arginfo_reflection_export
00000000006aa0e0 0000000000000048 d arginfo_reflection_extension_export
00000000006ac360 0000000000000048 d arginfo_reflection_function_export
00000000006abc00 0000000000000048 d arginfo_reflection_method___construct
00000000006abba0 0000000000000048 d arginfo_reflection_method_invoke
00000000006abb40 0000000000000048 d arginfo_reflection_method_invokeArgs
00000000006aac80 0000000000000048 d arginfo_reflection_object_export
00000000006aa500 0000000000000048 d arginfo_reflection_parameter___construct
00000000006aab20 0000000000000048 d arginfo_reflection_property___construct
00000000006aaa80 0000000000000048 d arginfo_reflection_property_setValue
00000000006b92e0 0000000000000048 d arginfo_register_shutdown_function
00000000006b8e20 0000000000000048 d arginfo_register_tick_function
00000000006b7a60 0000000000000048 d arginfo_rmdir
00000000006bb0a0 0000000000000048 d arginfo_rsort
00000000006b3b80 0000000000000048 d arginfo_rtrim
0000000000707100 0000000000000048 d arginfo_set_error_handler
00000000006b2d60 0000000000000048 d arginfo_setlocale
00000000006b2520 0000000000000048 d arginfo_settype
00000000006b4be0 0000000000000048 d arginfo_sha1
00000000006b4b80 0000000000000048 d arginfo_sha1_file
00000000006bb100 0000000000000048 d arginfo_sort
00000000006ac6c0 0000000000000048 d arginfo_spl_autoload
00000000006b6d80 0000000000000048 d arginfo_sprintf
00000000006b2c20 0000000000000048 d arginfo_str_repeat
00000000006b2800 0000000000000048 d arginfo_str_split
00000000007076c0 0000000000000048 d arginfo_strcmp
00000000006b3c40 0000000000000048 d arginfo_strcoll
00000000006b1d80 0000000000000048 d arginfo_stream_bucket_append
00000000006b1d20 0000000000000048 d arginfo_stream_bucket_new
00000000006b1de0 0000000000000048 d arginfo_stream_bucket_prepend
00000000006b42c0 0000000000000048 d arginfo_stream_context_create
00000000006b43e0 0000000000000048 d arginfo_stream_context_set_params
00000000006b1cc0 0000000000000048 d arginfo_stream_filter_register
00000000006b40c0 0000000000000048 d arginfo_stream_set_blocking
00000000006b3f40 0000000000000048 d arginfo_stream_set_chunk_size
00000000006b4000 0000000000000048 d arginfo_stream_set_read_buffer
00000000006b3fa0 0000000000000048 d arginfo_stream_set_write_buffer
00000000006b48c0 0000000000000048 d arginfo_stream_socket_get_name
00000000006b3e60 0000000000000048 d arginfo_stream_socket_shutdown
000000000069ebc0 0000000000000048 d arginfo_strftime
00000000006b2dc0 0000000000000048 d arginfo_strip_tags
00000000006b2b00 0000000000000048 d arginfo_strnatcasecmp
00000000006b2b60 0000000000000048 d arginfo_strnatcmp
00000000006b27a0 0000000000000048 d arginfo_strpbrk
00000000006b8960 0000000000000048 d arginfo_strptime
00000000006b3540 0000000000000048 d arginfo_strrchr
00000000006b3980 0000000000000048 d arginfo_strtok
000000000069ee00 0000000000000048 d arginfo_strtotime
00000000006b6040 0000000000000048 d arginfo_symlink
00000000006b25c0 0000000000000048 d arginfo_syslog
00000000006b83c0 0000000000000048 d arginfo_system
00000000006b7fc0 0000000000000048 d arginfo_tempnam
00000000006b95c0 0000000000000048 d arginfo_time_nanosleep
000000000069dbc0 0000000000000048 d arginfo_timezone_identifiers_list
000000000069dc60 0000000000000048 d arginfo_timezone_method_transitions_get
000000000069dd60 0000000000000048 d arginfo_timezone_offset_get
0000000000707260 0000000000000048 d arginfo_trait_exists
0000000000707160 0000000000000048 d arginfo_trigger_error
00000000006b3be0 0000000000000048 d arginfo_trim
00000000006bafe0 0000000000000048 d arginfo_uasort
00000000006b3260 0000000000000048 d arginfo_ucwords
00000000006baf80 0000000000000048 d arginfo_uksort
00000000006b2040 0000000000000048 d arginfo_uniqid
00000000006b78c0 0000000000000048 d arginfo_unlink
00000000006b1ac0 0000000000000048 d arginfo_unserialize
00000000006bb040 0000000000000048 d arginfo_usort
00000000006b1b60 0000000000000048 d arginfo_var_export
00000000006b6c60 0000000000000048 d arginfo_vprintf
00000000006b6d20 0000000000000048 d arginfo_vsprintf
00000000006c0d20 0000000000000048 d ht_bucket_html4_003
00000000006c0cc0 0000000000000048 d ht_bucket_html4_006
00000000006c0aa0 0000000000000048 d ht_bucket_html4_020
00000000006c0980 0000000000000048 d ht_bucket_html4_02B
00000000006c0580 0000000000000048 d ht_bucket_html4_054
00000000006c0160 0000000000000048 d ht_bucket_html4_08E
00000000006c0100 0000000000000048 d ht_bucket_html4_091
00000000006bffe0 0000000000000048 d ht_bucket_html4_099
00000000006bfec0 0000000000000048 d ht_bucket_html4_0A7
00000000006bfe60 0000000000000048 d ht_bucket_html4_0A8
00000000006bfdc0 0000000000000048 d ht_bucket_html4_0AE
00000000006bfd20 0000000000000048 d ht_bucket_html4_0B2
00000000006bfcc0 0000000000000048 d ht_bucket_html4_0B4
00000000006bfaa0 0000000000000048 d ht_bucket_html4_0C6
00000000006bfa00 0000000000000048 d ht_bucket_html4_0C8
00000000006bf9a0 0000000000000048 d ht_bucket_html4_0CE
00000000006bf940 0000000000000048 d ht_bucket_html4_0D2
00000000006bf760 0000000000000048 d ht_bucket_html4_0E8
00000000006bf340 0000000000000048 d ht_bucket_html4_111
00000000006bf1e0 0000000000000048 d ht_bucket_html4_11B
00000000006be9a0 0000000000000048 d ht_bucket_html4_170
00000000006be800 0000000000000048 d ht_bucket_html4_17F
00000000006be720 0000000000000048 d ht_bucket_html4_186
00000000006be6c0 0000000000000048 d ht_bucket_html4_187
00000000006be300 0000000000000048 d ht_bucket_html4_1A0
00000000006be260 0000000000000048 d ht_bucket_html4_1A2
00000000006be1c0 0000000000000048 d ht_bucket_html4_1A6
00000000006bdf20 0000000000000048 d ht_bucket_html4_1B9
00000000006bde20 0000000000000048 d ht_bucket_html4_1BF
00000000006bdd00 0000000000000048 d ht_bucket_html4_1CC
00000000006bdca0 0000000000000048 d ht_bucket_html4_1CF
00000000006bdac0 0000000000000048 d ht_bucket_html4_1DF
00000000006bda60 0000000000000048 d ht_bucket_html4_1E6
00000000006ee440 0000000000000048 d ht_bucket_html5_000
00000000006ee3e0 0000000000000048 d ht_bucket_html5_001
00000000006ee300 0000000000000048 d ht_bucket_html5_007
00000000006ee1a0 0000000000000048 d ht_bucket_html5_022
00000000006edfe0 0000000000000048 d ht_bucket_html5_02B
00000000006edf00 0000000000000048 d ht_bucket_html5_030
00000000006ede20 0000000000000048 d ht_bucket_html5_040
00000000006edd40 0000000000000048 d ht_bucket_html5_04E
00000000006ed9c0 0000000000000048 d ht_bucket_html5_06E
00000000006ed560 0000000000000048 d ht_bucket_html5_090
00000000006ed500 0000000000000048 d ht_bucket_html5_094
00000000006ed460 0000000000000048 d ht_bucket_html5_09E
00000000006ed1a0 0000000000000048 d ht_bucket_html5_0B8
00000000006ed140 0000000000000048 d ht_bucket_html5_0B9
00000000006ed0e0 0000000000000048 d ht_bucket_html5_0BA
00000000006ed000 0000000000000048 d ht_bucket_html5_0CE
00000000006ece20 0000000000000048 d ht_bucket_html5_0E6
00000000006ecb00 0000000000000048 d ht_bucket_html5_103
00000000006ec920 0000000000000048 d ht_bucket_html5_10E
00000000006ec860 0000000000000048 d ht_bucket_html5_110
00000000006ec700 0000000000000048 d ht_bucket_html5_11C
00000000006ec560 0000000000000048 d ht_bucket_html5_12C
00000000006ec500 0000000000000048 d ht_bucket_html5_12E
00000000006ec360 0000000000000048 d ht_bucket_html5_13A
00000000006ec0e0 0000000000000048 d ht_bucket_html5_158
00000000006ebe00 0000000000000048 d ht_bucket_html5_173
00000000006ebbe0 0000000000000048 d ht_bucket_html5_18C
00000000006eb980 0000000000000048 d ht_bucket_html5_19F
00000000006eb8a0 0000000000000048 d ht_bucket_html5_1A2
00000000006eb6c0 0000000000000048 d ht_bucket_html5_1AD
00000000006eb1a0 0000000000000048 d ht_bucket_html5_1D4
00000000006eafc0 0000000000000048 d ht_bucket_html5_1E0
00000000006eaea0 0000000000000048 d ht_bucket_html5_1E7
00000000006eadc0 0000000000000048 d ht_bucket_html5_1EF
00000000006ead60 0000000000000048 d ht_bucket_html5_1F0
00000000006eac80 0000000000000048 d ht_bucket_html5_1F8
00000000006eabe0 0000000000000048 d ht_bucket_html5_1FA
00000000006eab80 0000000000000048 d ht_bucket_html5_1FC
00000000006eaa60 0000000000000048 d ht_bucket_html5_207
00000000006ea940 0000000000000048 d ht_bucket_html5_219
00000000006ea860 0000000000000048 d ht_bucket_html5_222
00000000006ea780 0000000000000048 d ht_bucket_html5_22B
00000000006ea6a0 0000000000000048 d ht_bucket_html5_22F
00000000006ea460 0000000000000048 d ht_bucket_html5_240
00000000006ea300 0000000000000048 d ht_bucket_html5_24A
00000000006e9f60 0000000000000048 d ht_bucket_html5_26B
00000000006e9e40 0000000000000048 d ht_bucket_html5_278
00000000006e9de0 0000000000000048 d ht_bucket_html5_27C
00000000006e9d80 0000000000000048 d ht_bucket_html5_27E
00000000006e9b40 0000000000000048 d ht_bucket_html5_2A0
00000000006e9aa0 0000000000000048 d ht_bucket_html5_2AE
00000000006e9980 0000000000000048 d ht_bucket_html5_2B9
00000000006e9920 0000000000000048 d ht_bucket_html5_2BF
00000000006e98c0 0000000000000048 d ht_bucket_html5_2C4
00000000006e9720 0000000000000048 d ht_bucket_html5_2DB
00000000006e96c0 0000000000000048 d ht_bucket_html5_2DC
00000000006e9460 0000000000000048 d ht_bucket_html5_300
00000000006e9380 0000000000000048 d ht_bucket_html5_305
00000000006e92e0 0000000000000048 d ht_bucket_html5_30B
00000000006e91e0 0000000000000048 d ht_bucket_html5_313
00000000006e9180 0000000000000048 d ht_bucket_html5_315
00000000006e8fe0 0000000000000048 d ht_bucket_html5_32A
00000000006e8d00 0000000000000048 d ht_bucket_html5_34D
00000000006e8be0 0000000000000048 d ht_bucket_html5_359
00000000006e8b40 0000000000000048 d ht_bucket_html5_35F
00000000006e8aa0 0000000000000048 d ht_bucket_html5_363
00000000006e8a00 0000000000000048 d ht_bucket_html5_367
00000000006e8960 0000000000000048 d ht_bucket_html5_36A
00000000006e8900 0000000000000048 d ht_bucket_html5_36B
00000000006e8820 0000000000000048 d ht_bucket_html5_36F
00000000006e8740 0000000000000048 d ht_bucket_html5_378
00000000006e8440 0000000000000048 d ht_bucket_html5_38A
00000000006e7f60 0000000000000048 d ht_bucket_html5_3BF
00000000006e78a0 0000000000000048 d ht_bucket_html5_40F
00000000006e7800 0000000000000048 d ht_bucket_html5_41A
00000000006e7660 0000000000000048 d ht_bucket_html5_426
00000000006e7280 0000000000000048 d ht_bucket_html5_446
00000000006e7020 0000000000000048 d ht_bucket_html5_45F
00000000006e6ec0 0000000000000048 d ht_bucket_html5_46B
00000000006e6d60 0000000000000048 d ht_bucket_html5_472
00000000006e6c80 0000000000000048 d ht_bucket_html5_479
00000000006e6ba0 0000000000000048 d ht_bucket_html5_47F
00000000006e6a00 0000000000000048 d ht_bucket_html5_48F
00000000006e68e0 0000000000000048 d ht_bucket_html5_495
00000000006e6840 0000000000000048 d ht_bucket_html5_498
00000000006e6680 0000000000000048 d ht_bucket_html5_4A7
00000000006e62a0 0000000000000048 d ht_bucket_html5_4CB
00000000006e6240 0000000000000048 d ht_bucket_html5_4CD
00000000006e61e0 0000000000000048 d ht_bucket_html5_4CF
00000000006e5f00 0000000000000048 d ht_bucket_html5_4E3
00000000006e5d60 0000000000000048 d ht_bucket_html5_4E9
00000000006e5bc0 0000000000000048 d ht_bucket_html5_4FE
00000000006e5b60 0000000000000048 d ht_bucket_html5_500
00000000006e5ac0 0000000000000048 d ht_bucket_html5_506
00000000006e5a60 0000000000000048 d ht_bucket_html5_507
00000000006e5a00 0000000000000048 d ht_bucket_html5_509
00000000006e58a0 0000000000000048 d ht_bucket_html5_518
00000000006e5800 0000000000000048 d ht_bucket_html5_51B
00000000006e56e0 0000000000000048 d ht_bucket_html5_526
00000000006e5680 0000000000000048 d ht_bucket_html5_52F
00000000006e54e0 0000000000000048 d ht_bucket_html5_53C
00000000006e5480 0000000000000048 d ht_bucket_html5_53F
00000000006e52a0 0000000000000048 d ht_bucket_html5_550
00000000006e5200 0000000000000048 d ht_bucket_html5_557
00000000006e5060 0000000000000048 d ht_bucket_html5_566
00000000006e5000 0000000000000048 d ht_bucket_html5_56C
00000000006e4d60 0000000000000048 d ht_bucket_html5_57B
00000000006e4a40 0000000000000048 d ht_bucket_html5_595
00000000006e4860 0000000000000048 d ht_bucket_html5_5A6
00000000006e4800 0000000000000048 d ht_bucket_html5_5A9
00000000006e4660 0000000000000048 d ht_bucket_html5_5B5
00000000006e4380 0000000000000048 d ht_bucket_html5_5D0
00000000006e3f40 0000000000000048 d ht_bucket_html5_5F6
00000000006e3d80 0000000000000048 d ht_bucket_html5_603
00000000006e3d20 0000000000000048 d ht_bucket_html5_606
00000000006e3c00 0000000000000048 d ht_bucket_html5_615
00000000006e3ba0 0000000000000048 d ht_bucket_html5_617
00000000006e3b00 0000000000000048 d ht_bucket_html5_61D
00000000006e39e0 0000000000000048 d ht_bucket_html5_626
00000000006e35e0 0000000000000048 d ht_bucket_html5_648
00000000006e3500 0000000000000048 d ht_bucket_html5_651
00000000006e33a0 0000000000000048 d ht_bucket_html5_658
00000000006e3000 0000000000000048 d ht_bucket_html5_67D
00000000006e2f20 0000000000000048 d ht_bucket_html5_684
00000000006e2ec0 0000000000000048 d ht_bucket_html5_685
00000000006e2e60 0000000000000048 d ht_bucket_html5_68A
00000000006e2be0 0000000000000048 d ht_bucket_html5_6A8
00000000006e2b40 0000000000000048 d ht_bucket_html5_6AA
00000000006e2a20 0000000000000048 d ht_bucket_html5_6B4
00000000006e2900 0000000000000048 d ht_bucket_html5_6BA
00000000006e28a0 0000000000000048 d ht_bucket_html5_6BC
00000000006e2800 0000000000000048 d ht_bucket_html5_6C0
00000000006e26a0 0000000000000048 d ht_bucket_html5_6C8
00000000006e2600 0000000000000048 d ht_bucket_html5_6CC
00000000006e2480 0000000000000048 d ht_bucket_html5_6D5
00000000006e20c0 0000000000000048 d ht_bucket_html5_704
00000000006e1f60 0000000000000048 d ht_bucket_html5_70C
00000000006e1f00 0000000000000048 d ht_bucket_html5_70E
00000000006e19e0 0000000000000048 d ht_bucket_html5_735
00000000006e1760 0000000000000048 d ht_bucket_html5_749
00000000006e1700 0000000000000048 d ht_bucket_html5_74B
00000000006e15a0 0000000000000048 d ht_bucket_html5_755
00000000006e13c0 0000000000000048 d ht_bucket_html5_766
00000000006e1320 0000000000000048 d ht_bucket_html5_76E
00000000006e1060 0000000000000048 d ht_bucket_html5_787
00000000006e0fc0 0000000000000048 d ht_bucket_html5_78C
00000000006e0f60 0000000000000048 d ht_bucket_html5_78D
00000000006e0ec0 0000000000000048 d ht_bucket_html5_790
00000000006e0da0 0000000000000048 d ht_bucket_html5_79A
00000000006e0c60 0000000000000048 d ht_bucket_html5_7A0
00000000006e0b40 0000000000000048 d ht_bucket_html5_7A8
00000000006e07a0 0000000000000048 d ht_bucket_html5_7BD
00000000006e0500 0000000000000048 d ht_bucket_html5_7D1
00000000006e0220 0000000000000048 d ht_bucket_html5_7E6
00000000006dff80 0000000000000048 d ht_bucket_html5_802
00000000006dff20 0000000000000048 d ht_bucket_html5_803
00000000006dfd80 0000000000000048 d ht_bucket_html5_812
00000000006dfca0 0000000000000048 d ht_bucket_html5_81C
00000000006dfb80 0000000000000048 d ht_bucket_html5_823
00000000006df8e0 0000000000000048 d ht_bucket_html5_838
00000000006df600 0000000000000048 d ht_bucket_html5_855
00000000006df3e0 0000000000000048 d ht_bucket_html5_866
00000000006defc0 0000000000000048 d ht_bucket_html5_896
00000000006def20 0000000000000048 d ht_bucket_html5_898
00000000006ded00 0000000000000048 d ht_bucket_html5_8B8
00000000006deb20 0000000000000048 d ht_bucket_html5_8C2
00000000006de760 0000000000000048 d ht_bucket_html5_8E3
00000000006de600 0000000000000048 d ht_bucket_html5_8F3
00000000006de380 0000000000000048 d ht_bucket_html5_90E
00000000006de1e0 0000000000000048 d ht_bucket_html5_91B
00000000006de180 0000000000000048 d ht_bucket_html5_91E
00000000006de120 0000000000000048 d ht_bucket_html5_91F
00000000006ddfc0 0000000000000048 d ht_bucket_html5_929
00000000006ddda0 0000000000000048 d ht_bucket_html5_93F
00000000006ddbe0 0000000000000048 d ht_bucket_html5_950
00000000006ddb00 0000000000000048 d ht_bucket_html5_954
00000000006dd9a0 0000000000000048 d ht_bucket_html5_95D
00000000006dd800 0000000000000048 d ht_bucket_html5_96C
00000000006dd7a0 0000000000000048 d ht_bucket_html5_96F
00000000006dd680 0000000000000048 d ht_bucket_html5_976
00000000006dd5e0 0000000000000048 d ht_bucket_html5_97C
00000000006dd4c0 0000000000000048 d ht_bucket_html5_985
00000000006dd140 0000000000000048 d ht_bucket_html5_9A0
00000000006dcfe0 0000000000000048 d ht_bucket_html5_9AC
00000000006dcf80 0000000000000048 d ht_bucket_html5_9B0
00000000006dcee0 0000000000000048 d ht_bucket_html5_9B5
00000000006dce80 0000000000000048 d ht_bucket_html5_9B6
00000000006dcda0 0000000000000048 d ht_bucket_html5_9BC
00000000006dcd40 0000000000000048 d ht_bucket_html5_9BD
00000000006dcce0 0000000000000048 d ht_bucket_html5_9C1
00000000006dcbc0 0000000000000048 d ht_bucket_html5_9C9
00000000006dc9e0 0000000000000048 d ht_bucket_html5_9DB
00000000006dc7c0 0000000000000048 d ht_bucket_html5_9EB
00000000006dc6a0 0000000000000048 d ht_bucket_html5_9F0
00000000006dc600 0000000000000048 d ht_bucket_html5_9F2
00000000006dc460 0000000000000048 d ht_bucket_html5_9FA
00000000006dc2e0 0000000000000048 d ht_bucket_html5_A06
00000000006dc1c0 0000000000000048 d ht_bucket_html5_A0E
00000000006dc120 0000000000000048 d ht_bucket_html5_A12
00000000006dc040 0000000000000048 d ht_bucket_html5_A16
00000000006dbfe0 0000000000000048 d ht_bucket_html5_A17
00000000006dbc40 0000000000000048 d ht_bucket_html5_A3B
00000000006dbb20 0000000000000048 d ht_bucket_html5_A43
00000000006dba40 0000000000000048 d ht_bucket_html5_A48
00000000006db9e0 0000000000000048 d ht_bucket_html5_A4F
00000000006db980 0000000000000048 d ht_bucket_html5_A53
00000000006db920 0000000000000048 d ht_bucket_html5_A54
00000000006db800 0000000000000048 d ht_bucket_html5_A5B
00000000006db5e0 0000000000000048 d ht_bucket_html5_A6D
00000000006db4c0 0000000000000048 d ht_bucket_html5_A78
00000000006db220 0000000000000048 d ht_bucket_html5_A8E
00000000006db0c0 0000000000000048 d ht_bucket_html5_A99
00000000006dafa0 0000000000000048 d ht_bucket_html5_AA3
00000000006daec0 0000000000000048 d ht_bucket_html5_AA7
00000000006dae20 0000000000000048 d ht_bucket_html5_AB2
00000000006dad40 0000000000000048 d ht_bucket_html5_ABA
00000000006dabe0 0000000000000048 d ht_bucket_html5_AC7
00000000006dab80 0000000000000048 d ht_bucket_html5_AC8
00000000006da800 0000000000000048 d ht_bucket_html5_AE7
00000000006da7a0 0000000000000048 d ht_bucket_html5_AE8
00000000006da540 0000000000000048 d ht_bucket_html5_B08
00000000006da440 0000000000000048 d ht_bucket_html5_B0C
00000000006da280 0000000000000048 d ht_bucket_html5_B1F
00000000006da160 0000000000000048 d ht_bucket_html5_B29
00000000006da0c0 0000000000000048 d ht_bucket_html5_B2B
00000000006da060 0000000000000048 d ht_bucket_html5_B2C
00000000006da000 0000000000000048 d ht_bucket_html5_B2D
00000000006d9f60 0000000000000048 d ht_bucket_html5_B2F
00000000006d9ec0 0000000000000048 d ht_bucket_html5_B35
00000000006d9e60 0000000000000048 d ht_bucket_html5_B36
00000000006d9d40 0000000000000048 d ht_bucket_html5_B40
00000000006d9ce0 0000000000000048 d ht_bucket_html5_B42
00000000006d9c40 0000000000000048 d ht_bucket_html5_B46
00000000006d9a20 0000000000000048 d ht_bucket_html5_B53
00000000006d9900 0000000000000048 d ht_bucket_html5_B5D
00000000006d9660 0000000000000048 d ht_bucket_html5_B77
00000000006d9600 0000000000000048 d ht_bucket_html5_B78
00000000006d93e0 0000000000000048 d ht_bucket_html5_B8D
00000000006d9160 0000000000000048 d ht_bucket_html5_BA5
00000000006d90c0 0000000000000048 d ht_bucket_html5_BAE
00000000006d9020 0000000000000048 d ht_bucket_html5_BB5
00000000006d8ec0 0000000000000048 d ht_bucket_html5_BBD
00000000006d8de0 0000000000000048 d ht_bucket_html5_BC2
00000000006d8c80 0000000000000048 d ht_bucket_html5_BC7
00000000006d8c20 0000000000000048 d ht_bucket_html5_BC8
00000000006d8bc0 0000000000000048 d ht_bucket_html5_BC9
00000000006d8ae0 0000000000000048 d ht_bucket_html5_BD1
00000000006d8800 0000000000000048 d ht_bucket_html5_BE4
00000000006d87a0 0000000000000048 d ht_bucket_html5_BE7
00000000006d8480 0000000000000048 d ht_bucket_html5_BFA
00000000006d83a0 0000000000000048 d ht_bucket_html5_C0B
00000000006d8340 0000000000000048 d ht_bucket_html5_C0C
00000000006d82e0 0000000000000048 d ht_bucket_html5_C11
00000000006d8040 0000000000000048 d ht_bucket_html5_C31
00000000006d7f60 0000000000000048 d ht_bucket_html5_C34
00000000006d7dc0 0000000000000048 d ht_bucket_html5_C40
00000000006d7be0 0000000000000048 d ht_bucket_html5_C4F
00000000006d7b80 0000000000000048 d ht_bucket_html5_C50
00000000006d79c0 0000000000000048 d ht_bucket_html5_C69
00000000006d76a0 0000000000000048 d ht_bucket_html5_C89
00000000006d7580 0000000000000048 d ht_bucket_html5_C94
00000000006d74a0 0000000000000048 d ht_bucket_html5_CA6
00000000006d7380 0000000000000048 d ht_bucket_html5_CAC
00000000006d7080 0000000000000048 d ht_bucket_html5_CC4
00000000006d6f20 0000000000000048 d ht_bucket_html5_CCB
00000000006d6e00 0000000000000048 d ht_bucket_html5_CD9
00000000006d6c20 0000000000000048 d ht_bucket_html5_CED
00000000006d6b40 0000000000000048 d ht_bucket_html5_CF3
00000000006d68a0 0000000000000048 d ht_bucket_html5_D11
00000000006d6800 0000000000000048 d ht_bucket_html5_D13
00000000006d6720 0000000000000048 d ht_bucket_html5_D19
00000000006d66c0 0000000000000048 d ht_bucket_html5_D1A
00000000006d6520 0000000000000048 d ht_bucket_html5_D26
00000000006d61c0 0000000000000048 d ht_bucket_html5_D4C
00000000006d6160 0000000000000048 d ht_bucket_html5_D4F
00000000006d5f80 0000000000000048 d ht_bucket_html5_D5B
00000000006d5ee0 0000000000000048 d ht_bucket_html5_D63
00000000006d5d40 0000000000000048 d ht_bucket_html5_D6F
00000000006d5ce0 0000000000000048 d ht_bucket_html5_D70
00000000006d5b80 0000000000000048 d ht_bucket_html5_D76
00000000006d5b20 0000000000000048 d ht_bucket_html5_D7C
00000000006d5ac0 0000000000000048 d ht_bucket_html5_D7D
00000000006d58a0 0000000000000048 d ht_bucket_html5_D8C
00000000006d57a0 0000000000000048 d ht_bucket_html5_D8F
00000000006d5360 0000000000000048 d ht_bucket_html5_DAC
00000000006d4d00 0000000000000048 d ht_bucket_html5_DE6
00000000006d4be0 0000000000000048 d ht_bucket_html5_DED
00000000006d4a80 0000000000000048 d ht_bucket_html5_DF7
00000000006d4960 0000000000000048 d ht_bucket_html5_E03
00000000006d4780 0000000000000048 d ht_bucket_html5_E1B
00000000006d4660 0000000000000048 d ht_bucket_html5_E20
00000000006d4600 0000000000000048 d ht_bucket_html5_E22
00000000006d4420 0000000000000048 d ht_bucket_html5_E2F
00000000006d3f40 0000000000000048 d ht_bucket_html5_E59
00000000006d3e20 0000000000000048 d ht_bucket_html5_E5F
00000000006d3b80 0000000000000048 d ht_bucket_html5_E70
00000000006d3a60 0000000000000048 d ht_bucket_html5_E7A
00000000006d3900 0000000000000048 d ht_bucket_html5_E89
00000000006d34e0 0000000000000048 d ht_bucket_html5_ECD
00000000006d33c0 0000000000000048 d ht_bucket_html5_ED8
00000000006d32a0 0000000000000048 d ht_bucket_html5_EDF
00000000006d3080 0000000000000048 d ht_bucket_html5_EF2
00000000006d2fe0 0000000000000048 d ht_bucket_html5_EF5
00000000006d2c40 0000000000000048 d ht_bucket_html5_F13
00000000006d2aa0 0000000000000048 d ht_bucket_html5_F1A
00000000006d2a40 0000000000000048 d ht_bucket_html5_F1F
00000000006d2920 0000000000000048 d ht_bucket_html5_F2C
00000000006d2800 0000000000000048 d ht_bucket_html5_F33
00000000006d2320 0000000000000048 d ht_bucket_html5_F60
00000000006d2240 0000000000000048 d ht_bucket_html5_F68
00000000006d2160 0000000000000048 d ht_bucket_html5_F6E
00000000006d1f80 0000000000000048 d ht_bucket_html5_F75
00000000006d1ea0 0000000000000048 d ht_bucket_html5_F78
00000000006d1dc0 0000000000000048 d ht_bucket_html5_F82
00000000006d1b20 0000000000000048 d ht_bucket_html5_F9A
00000000006d1a40 0000000000000048 d ht_bucket_html5_FA0
00000000006d18e0 0000000000000048 d ht_bucket_html5_FB0
00000000006d1740 0000000000000048 d ht_bucket_html5_FB9
00000000006d1300 0000000000000048 d ht_bucket_html5_FE1
00000000006d11a0 0000000000000048 d ht_bucket_html5_FF5
000000000012ea90 0000000000000048 t jump_if_utf_char_start.constprop.55
0000000000723aa0 0000000000000048 d multibyte_functions
00000000007261a0 0000000000000048 b multibyte_functions_dummy
00000000007045e0 0000000000000048 d php_ftp_dirstream_ops
0000000000705300 0000000000000048 D php_glob_stream_ops
000000000011b060 0000000000000048 T php_pcre2_general_context_create
0000000000704f20 0000000000000048 d php_plain_files_dirstream_ops
0000000000705220 0000000000000048 d php_stream_generic_socket_ops
0000000000704740 0000000000000048 d php_stream_input_ops
0000000000704e60 0000000000000048 D php_stream_memory_ops
00000000007047a0 0000000000000048 d php_stream_output_ops
0000000000704da0 0000000000000048 D php_stream_rfc2397_ops
00000000007051c0 0000000000000048 D php_stream_socket_ops
0000000000723940 0000000000000048 D php_stream_stdio_ops
0000000000704e00 0000000000000048 D php_stream_temp_ops
0000000000705160 0000000000000048 d php_stream_udp_socket_ops
0000000000705100 0000000000000048 d php_stream_unix_socket_ops
00000000007050a0 0000000000000048 d php_stream_unixdg_socket_ops
0000000000704f80 0000000000000048 D php_stream_userspace_dir_ops
0000000000704fe0 0000000000000048 D php_stream_userspace_ops
0000000000198df0 0000000000000048 t spl_array_create_ht_iter
000000000019f080 0000000000000048 t spl_filesystem_file_free_line
0000000000438d00 0000000000000048 r yydefact
0000000000438d60 0000000000000048 r yypact
0000000000438b80 0000000000000048 r yystos
000000000032aca0 0000000000000048 T zend_get_opcode_handler_func
00000000002c6220 0000000000000048 T zend_string_equal_val
0000000000193900 0000000000000048 t zim_spl_LimitIterator_valid
00000000000d7224 0000000000000049 t ZEND_MUL_LONG_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7794 0000000000000049 t ZEND_MUL_LONG_SPEC_TMPVARCV_TMPVARCV_HANDLER
0000000000275850 0000000000000049 T _efree_112
00000000002758a0 0000000000000049 T _efree_128
0000000000275580 0000000000000049 T _efree_16
00000000002755d0 0000000000000049 T _efree_24
0000000000275620 0000000000000049 T _efree_32
0000000000275670 0000000000000049 T _efree_40
00000000002756c0 0000000000000049 T _efree_48
0000000000275710 0000000000000049 T _efree_56
0000000000275760 0000000000000049 T _efree_64
0000000000275530 0000000000000049 T _efree_8
00000000002757b0 0000000000000049 T _efree_80
0000000000275800 0000000000000049 T _efree_96
0000000000255010 0000000000000049 T _php_stream_filter_append
000000000029e8f0 0000000000000049 T add_index_bool
000000000028ca10 0000000000000049 T get_active_function_name
00000000002922c0 0000000000000049 t hash_zval_identical_function
0000000000247380 0000000000000049 T php_open_temporary_file
00000000001ac2d0 0000000000000049 t spl_heap_object_free_storage
00000000002610c0 0000000000000049 t startup_scanner
0000000000292fd0 0000000000000049 T zend_binary_zval_strcmp
00000000002a8ad0 0000000000000049 T zend_hash_iterators_lower_pos
000000000017bb70 0000000000000049 t zim_reflection_extension_getName
000000000019dfd0 0000000000000049 t zim_spl_Array_key
000000000030bfb0 000000000000004a t ZEND_BOOL_XOR_SPEC_CV_CONST_HANDLER
00000000002fe050 000000000000004a t ZEND_DIV_SPEC_CV_CONST_HANDLER
0000000000309ab0 000000000000004a t ZEND_POW_SPEC_CV_CONST_HANDLER
00000000000d8209 000000000000004a t ZEND_RETURN_SPEC_TMP_HANDLER
000000000030aae0 000000000000004a t ZEND_SPACESHIP_SPEC_CV_CONST_HANDLER
000000000017bae0 000000000000004a t _default_load_name
0000000000254c00 000000000000004a T _php_stream_filter_alloc
0000000000285b00 000000000000004a t zend_delayed_compile_var
00000000002929e0 000000000000004a T zend_str_tolower_copy
000000000029cff0 000000000000004b T _zend_get_parameters_array_ex
0000000000124940 000000000000004b t add_label_addr.isra.44
0000000000238910 000000000000004b T ap_php_vsnprintf
000000000023d790 000000000000004b T cfg_get_string
0000000000124540 000000000000004b t sljit_alloc_memory
0000000000228400 000000000000004b t strfilter_strip_tags_dtor
00000000002bd9b0 000000000000004b T zend_exception_restore
00000000002af5d0 000000000000004b T zend_hash_internal_pointer_end_ex
00000000002deb30 000000000000004b t zend_interrupt_helper_SPEC
000000000027b5a0 000000000000004b T zend_is_auto_global
000000000027b550 000000000000004b T zend_is_auto_global_str
00000000002cebd0 000000000000004b T zend_objects_new
00000000001f54b0 000000000000004b t zif_mt_getrandmax
00000000000dd653 000000000000004c t ZEND_BW_NOT_SPEC_CONST_HANDLER
00000000002776c0 000000000000004c T __zend_calloc
0000000000277050 000000000000004c T _ecalloc
000000000029ec50 000000000000004c T add_next_index_null
0000000000299590 000000000000004c t hash_zval_compare_function
0000000000214ea0 000000000000004c t incomplete_class_get_method
00000000001d1c40 000000000000004c t php_if_tmpfile
0000000000235030 000000000000004c T php_register_extensions
0000000000724420 000000000000004c b sse2_data
000000000028e460 000000000000004c T zend_timeout
00000000001f40c0 000000000000004c t zif_getlastmod
00000000001f3fb0 000000000000004c t zif_getmygid
00000000001f4050 000000000000004c t zif_getmyinode
00000000001f3f60 000000000000004c t zif_getmyuid
000000000024e140 000000000000004c t zif_ob_list_handlers
00000000001aa040 000000000000004c t zim_spl_SplDoublyLinkedList_prev
00000000002d8390 000000000000004d t ZEND_TICKS_SPEC_HANDLER
00000000001af4b0 000000000000004d t array_bucketindex_swap
00000000001244f0 000000000000004d t ensure_abuf.part.20
0000000000124290 000000000000004d t ensure_buf.part.16
00000000002458d0 000000000000004d T php_remove_tick_function
000000000010b6a0 000000000000004d t timelib_set_timezone_from_abbr
00000000002822a0 000000000000004d t zend_compile_throw
00000000002c9410 000000000000004d t zend_generator_iterator_move_forward
00000000002aad60 000000000000004d T zend_hash_index_add_or_update
00000000002b7260 000000000000004d T zend_ini_long
0000000000319210 000000000000004d T zend_vm_stack_init
0000000000176c10 000000000000004d t zm_activate_pcntl
00000000002e8aa0 000000000000004e t ZEND_BOOL_XOR_SPEC_TMPVAR_CONST_HANDLER
00000000002e5d00 000000000000004e t ZEND_DIV_SPEC_CONST_TMPVAR_HANDLER
00000000002e5d50 000000000000004e t ZEND_DIV_SPEC_TMPVAR_CONST_HANDLER
00000000002f6ac0 000000000000004e t ZEND_FETCH_DIM_IS_SPEC_CONST_TMPVAR_HANDLER
00000000002f6c90 000000000000004e t ZEND_FETCH_DIM_IS_SPEC_CV_TMPVAR_HANDLER
00000000002f6b40 000000000000004e t ZEND_FETCH_DIM_IS_SPEC_TMPVAR_CONST_HANDLER
00000000002f6c10 000000000000004e t ZEND_FETCH_DIM_IS_SPEC_TMPVAR_CV_HANDLER
00000000002f80b0 000000000000004e t ZEND_FETCH_DIM_RW_SPEC_CV_TMPVAR_HANDLER
00000000002f7290 000000000000004e t ZEND_FETCH_DIM_R_SPEC_CONST_TMPVAR_HANDLER
00000000002f78c0 000000000000004e t ZEND_FETCH_DIM_UNSET_SPEC_CV_TMPVAR_HANDLER
00000000002f8920 000000000000004e t ZEND_FETCH_DIM_W_SPEC_CV_TMPVAR_HANDLER
00000000002f64a0 000000000000004e t ZEND_FETCH_LIST_R_SPEC_CONST_TMPVAR_HANDLER
00000000002f6550 000000000000004e t ZEND_FETCH_LIST_R_SPEC_TMPVARCV_TMPVAR_HANDLER
00000000002e63c0 000000000000004e t ZEND_POW_SPEC_CONST_TMPVAR_HANDLER
00000000002e6410 000000000000004e t ZEND_POW_SPEC_TMPVAR_CONST_HANDLER
00000000002e73f0 000000000000004e t ZEND_SPACESHIP_SPEC_CONST_TMPVAR_HANDLER
00000000002e76e0 000000000000004e t ZEND_SPACESHIP_SPEC_TMPVAR_CONST_HANDLER
0000000000182c40 000000000000004e t _free_function
00000000001620d0 000000000000004e t _pcre2_strncmp_8
0000000000162120 000000000000004e t _pcre2_strncmp_c8_8
000000000023d650 000000000000004e T php_ini_activate_per_host_config
00000000002474b0 000000000000004e t php_output_handler_default_func
000000000023f780 000000000000004e T sapi_get_stat
00000000001096d0 000000000000004e t timelib_timestamp_is_in_dst
00000000000c9524 000000000000004e t var_access.isra.0
00000000002d7080 000000000000004e t zend_check_deprecated_constructor
00000000002a24e0 000000000000004e T zend_disable_function
0000000000278b70 000000000000004e t zend_init_compiler_data_structures
00000000000d9e1a 000000000000004e t zend_non_static_method_call
000000000032b4a0 000000000000004e T zend_set_user_opcode_handler
0000000000199030 000000000000004e t zim_spl_Array_getFlags
00000000001a7380 000000000000004e t zim_spl_MultipleIterator_getFlags
00000000001a9ad0 000000000000004e t zim_spl_SplDoublyLinkedList_key
00000000001a11a0 000000000000004e t zim_spl_SplFileObject_ftell
00000000001ad780 000000000000004e t zim_spl_SplFixedArray_getSize
00000000001ad7e0 000000000000004e t zim_spl_SplFixedArray_key
00000000001a7210 000000000000004e t zim_spl_SplObjectStorage_key
00000000002ec3e0 000000000000004f t ZEND_ADD_ARRAY_ELEMENT_SPEC_CONST_UNUSED_HANDLER
00000000002e2200 000000000000004f t ZEND_UNSET_OBJ_SPEC_UNUSED_CONST_HANDLER
000000000027a450 000000000000004f T function_add_ref
000000000023d3a0 000000000000004f t php_shutdown_config
0000000000234030 000000000000004f t php_zend_stream_fsizer
000000000010b650 000000000000004f t timelib_set_timezone_from_offset
00000000002a8530 000000000000004f T zend_hash_real_init_packed
00000000002b72b0 000000000000004f T zend_ini_double
0000000000210720 000000000000004f t zif_debug_zval_dump
000000000020ffe0 000000000000004f t zif_var_dump
00000000006a8b00 0000000000000050 d _pcre2_default_match_context_8
00000000003f04a0 0000000000000050 r _pcre2_hspace_list_8
000000000029ec00 0000000000000050 T add_next_index_long
000000000029ed00 0000000000000050 T add_next_index_resource
00000000007066a0 0000000000000050 d expected_error.11374
00000000007066a0 0000000000000050 d expected_error.11382
0000000000727860 0000000000000050 B pcre_globals
0000000000717f60 0000000000000050 d settings.16749
000000000018e6d0 0000000000000050 t spl_add_interfaces
000000000018e720 0000000000000050 t spl_add_traits
00000000001ad390 0000000000000050 t spl_heap_it_get_current_data
00000000002caec0 0000000000000050 T virtual_getcwd_ex
00000000000da0cc 0000000000000050 t zend_cannot_pass_by_ref_helper_SPEC
00000000002a79c0 0000000000000050 T zend_is_countable
0000000000299b00 0000000000000050 T zend_ptr_stack_apply
000000000027b820 0000000000000050 t zendlex
0000000000186950 0000000000000050 t zim_reflection_function_getNumberOfRequiredParameters
0000000000186a00 0000000000000050 t zim_reflection_function_returnsReference
00000000002ed250 0000000000000051 t ZEND_UNSET_VAR_SPEC_CONST_UNUSED_HANDLER
000000000029ed50 0000000000000051 T add_next_index_double
00000000001f1780 0000000000000051 t php_pack
0000000000256f60 0000000000000051 t php_plain_files_stream_opener
00000000002a7d20 0000000000000051 T zend_get_extension
000000000028d040 0000000000000051 T zval_update_constant
00000000000dc0c3 0000000000000052 t ZEND_BW_AND_SPEC_CONST_CONST_HANDLER
00000000000dc071 0000000000000052 t ZEND_BW_OR_SPEC_CONST_CONST_HANDLER
00000000000dc115 0000000000000052 t ZEND_BW_XOR_SPEC_CONST_CONST_HANDLER
00000000000d6eb0 0000000000000052 t ZEND_PRE_DEC_LONG_OR_DOUBLE_SPEC_TMPVARCV_RETVAL_USED_HANDLER
00000000000d6d8a 0000000000000052 t ZEND_PRE_INC_LONG_OR_DOUBLE_SPEC_TMPVARCV_RETVAL_USED_HANDLER
00000000000d8327 0000000000000052 t ZEND_SEND_VAR_SPEC_VAR_HANDLER
00000000000dcd89 0000000000000052 t ZEND_SWITCH_STRING_SPEC_CONST_CONST_HANDLER
00000000000dc191 0000000000000052 t ZEND_UNSET_STATIC_PROP_SPEC_CONST_CONST_HANDLER
000000000029eca0 0000000000000052 T add_next_index_bool
0000000000236d60 0000000000000052 T ap_php_conv_p2
000000000025d260 0000000000000052 t php_glob_stream_close
0000000000253750 0000000000000052 t php_stream_temp_set_option
000000000032b500 0000000000000052 T zend_get_zval_ptr
00000000002b7420 0000000000000052 T zend_ini_parse_bool
00000000002b69e0 0000000000000052 T zend_ini_startup
00000000002a6dc0 0000000000000052 T zend_update_property_str
00000000001c9930 0000000000000053 t OnChangeBrowscap
000000000025d620 0000000000000053 T _php_glob_stream_get_path
000000000025d680 0000000000000053 T _php_glob_stream_get_pattern
00000000000cbc70 0000000000000053 T _zend_bailout
00000000001c84d0 0000000000000053 t browscap_entry_dtor_persistent
00000000002c37f0 0000000000000053 t gc_reset
00000000002be0e0 0000000000000053 t hi0bits
0000000000291410 0000000000000053 t instanceof_interface_only.isra.0
0000000000331e10 0000000000000053 t php_cli_server_client_read_request_on_headers_complete
000000000011b2a0 0000000000000053 T php_pcre2_compile_context_copy
000000000011b360 0000000000000053 T php_pcre2_convert_context_copy
000000000011b240 0000000000000053 T php_pcre2_general_context_copy
000000000011b300 0000000000000053 T php_pcre2_match_context_copy
000000000032d190 0000000000000053 T sapi_cli_single_write
00000000001ac4b0 0000000000000053 t spl_pqueue_extract_helper
0000000000292d50 0000000000000053 T zend_binary_strncmp
00000000002c5480 0000000000000053 t zend_closure_clone
0000000000281e70 0000000000000053 t zend_compile_clone
00000000002b6ab0 0000000000000053 T zend_ini_deactivate
00000000002b76f0 0000000000000053 t zend_sort_3.part.0
00000000002b76f0 0000000000000053 t zend_sort_4.part.1
0000000000176d10 0000000000000053 t zif_pcntl_fork
000000000029b280 0000000000000054 t OnUpdateScriptEncoding
00000000002fe110 0000000000000054 t ZEND_DIV_SPEC_CONST_CV_HANDLER
00000000003099e0 0000000000000054 t ZEND_POW_SPEC_CONST_CV_HANDLER
0000000000309e70 0000000000000054 t ZEND_SPACESHIP_SPEC_CONST_CV_HANDLER
00000000002516c0 0000000000000054 T _php_stream_copy_to_stream
000000000024ffa0 0000000000000054 T _php_stream_getc
000000000029f2d0 0000000000000054 T add_get_index_str
0000000000123b50 0000000000000054 t do_search_mark
000000000016c660 0000000000000054 T pcre_get_compiled_regex
000000000016c730 0000000000000054 T php_pcre_create_match_data
00000000002528a0 0000000000000054 T php_stream_context_set
0000000000253990 0000000000000054 t php_stream_temp_close
00000000003ea1c0 0000000000000054 r posix_names
000000000019ce60 0000000000000054 t spl_array_unset_property
0000000000282240 0000000000000054 t zend_compile_echo
00000000002b2670 0000000000000054 t zif_get_declared_classes
00000000002b25b0 0000000000000054 t zif_get_declared_interfaces
00000000002b2610 0000000000000054 t zif_get_declared_traits
00000000002ebbc0 0000000000000055 t ZEND_DECLARE_INHERITED_CLASS_SPEC_CONST_CONST_HANDLER
0000000000315e80 0000000000000055 t ZEND_THROW_SPEC_TMP_HANDLER
0000000000255400 0000000000000055 t do_fstat
00000000002c39b0 0000000000000055 T gc_remove_from_buffer
0000000000124870 0000000000000055 t load_from_mem_sse2.part.21
000000000021a160 0000000000000055 t php_ftp_dirstream_close
00000000001e9dd0 0000000000000055 t php_mail_log_to_file
00000000002cf000 0000000000000055 T zend_objects_clone_obj
00000000002d8ec0 0000000000000055 t zend_quick_check_constant
000000000028bf30 0000000000000055 t zend_unclean_zval_ptr_dtor
0000000000299fd0 0000000000000055 T zval_ptr_dtor
0000000000311320 0000000000000056 t ZEND_SEND_VAR_NO_REF_SPEC_VAR_HANDLER
000000000029e9e0 0000000000000056 T add_index_str
00000000000e4780 0000000000000056 t implement_date_interface_handler
0000000000246150 0000000000000056 T php_socket_strerror
00000000001adb10 0000000000000056 t spl_fixedarray_object_free_storage
000000000019e990 0000000000000056 t zim_spl_DirectoryIterator_valid
000000000019eac0 0000000000000056 t zim_spl_FilesystemIterator_getFlags
000000000018e9c0 0000000000000056 t zim_spl_RecursiveIteratorIterator_getDepth
00000000001a9a10 0000000000000056 t zim_spl_SplDoublyLinkedList_count
00000000001a9b20 0000000000000056 t zim_spl_SplDoublyLinkedList_valid
000000000019ec70 0000000000000056 t zim_spl_SplFileObject_getFlags
000000000019ecd0 0000000000000056 t zim_spl_SplFileObject_getMaxLineLen
000000000019ec10 0000000000000056 t zim_spl_SplFileObject_key
00000000001aba30 0000000000000056 t zim_spl_SplHeap_count
00000000001aba90 0000000000000056 t zim_spl_SplHeap_isEmpty
00000000001abc10 0000000000000056 t zim_spl_SplHeap_key
00000000001abc70 0000000000000056 t zim_spl_SplHeap_valid
00000000000d8502 0000000000000057 t ZEND_QM_ASSIGN_SPEC_VAR_HANDLER
0000000000274840 0000000000000057 T _emalloc_8
000000000020a340 0000000000000057 t php_htoi
000000000023d550 0000000000000057 T php_ini_activate_config
0000000000252a00 0000000000000057 T php_stream_context_get_option
0000000000292db0 0000000000000057 T zend_binary_strcasecmp
00000000002c1150 0000000000000057 T zend_freedtoa
0000000000299f70 0000000000000057 t zend_reference_destroy
00000000002bed50 0000000000000057 T zend_shutdown_strtod
00000000001ed110 0000000000000057 t zif_bindec
0000000000209b00 0000000000000057 t zif_floatval
00000000001ed170 0000000000000057 t zif_hexdec
00000000001ed1d0 0000000000000057 t zif_octdec
00000000001c9990 0000000000000057 t zm_startup_browscap
000000000031ba30 0000000000000058 t ZEND_INIT_DYNAMIC_CALL_SPEC_CONST_HANDLER
0000000000704580 0000000000000058 d ftp_stream_wops
0000000000704660 0000000000000058 d http_stream_wops
00000000007052a0 0000000000000058 d php_glob_stream_wrapper_ops
0000000000704ec0 0000000000000058 d php_plain_files_wrapper_ops
00000000007046e0 0000000000000058 d php_stdio_wops
0000000000704d40 0000000000000058 D php_stream_rfc2397_wops
0000000000705040 0000000000000058 d user_stream_wops
00000000002246c0 0000000000000058 T var_replace
000000000028b8d0 0000000000000058 T zend_register_null_constant
00000000002d0060 0000000000000058 T zend_std_get_gc
0000000000209c70 0000000000000058 t zif_is_resource
0000000000182160 0000000000000059 t _copy_function.part.2
0000000000275d10 0000000000000059 T _efree_1024
0000000000275d70 0000000000000059 T _efree_1280
0000000000275dd0 0000000000000059 T _efree_1536
00000000002758f0 0000000000000059 T _efree_160
0000000000275e30 0000000000000059 T _efree_1792
0000000000275950 0000000000000059 T _efree_192
0000000000275e90 0000000000000059 T _efree_2048
00000000002759b0 0000000000000059 T _efree_224
0000000000275a10 0000000000000059 T _efree_256
0000000000275ef0 0000000000000059 T _efree_2560
0000000000275f50 0000000000000059 T _efree_3072
0000000000275a70 0000000000000059 T _efree_320
0000000000275ad0 0000000000000059 T _efree_384
0000000000275b30 0000000000000059 T _efree_448
0000000000275b90 0000000000000059 T _efree_512
0000000000275bf0 0000000000000059 T _efree_640
0000000000275c50 0000000000000059 T _efree_768
0000000000275cb0 0000000000000059 T _efree_896
000000000011b000 0000000000000059 t _pcre2_memctl_malloc_8
000000000023d730 0000000000000059 T cfg_get_double
000000000023d6d0 0000000000000059 T cfg_get_long
00000000001e33d0 0000000000000059 t php_read2
00000000002b4f40 0000000000000059 t same_name.part.1
000000000010b950 0000000000000059 t timelib_string.isra.0
00000000000ec720 0000000000000059 t timelib_string.isra.0
00000000002c7d30 0000000000000059 t zend_generator_merge_child_nodes.isra.1
00000000002b7380 0000000000000059 T zend_ini_string
000000000032ad10 0000000000000059 T zend_vm_set_opcode_handler
0000000000176d70 0000000000000059 t zif_pcntl_wifexited
0000000000176f10 0000000000000059 t zif_pcntl_wstopsig
0000000000274c00 000000000000005a T _emalloc_112
0000000000274c60 000000000000005a T _emalloc_128
00000000002748a0 000000000000005a T _emalloc_16
0000000000274900 000000000000005a T _emalloc_24
0000000000274960 000000000000005a T _emalloc_32
00000000002749c0 000000000000005a T _emalloc_40
0000000000274a20 000000000000005a T _emalloc_48
0000000000274a80 000000000000005a T _emalloc_56
0000000000274ae0 000000000000005a T _emalloc_64
0000000000274b40 000000000000005a T _emalloc_80
0000000000274ba0 000000000000005a T _emalloc_96
0000000000243230 000000000000005a t php_auto_globals_create_files
000000000022a830 000000000000005a t php_conv_get_ulong_prop_ex.constprop.7
0000000000234650 000000000000005a T php_get_current_user
0000000000252920 000000000000005a T php_stream_context_free
00000000002cafd0 000000000000005a T realpath_cache_clean
000000000023d990 000000000000005a T sapi_startup
00000000002c4950 000000000000005a t zend_closure_internal_handler
000000000027c1c0 000000000000005a T zend_is_smart_branch
000000000028f900 000000000000005a T zend_llist_destroy
00000000000cc856 000000000000005a t zend_parse_parameters_debug_error
00000000000db1c2 000000000000005a t zend_wrong_property_assignment
0000000000169ab0 000000000000005a t zm_globals_ctor_pcre
00000000000db9b3 000000000000005b t ZEND_SL_SPEC_CONST_CONST_HANDLER
00000000000dba0e 000000000000005b t ZEND_SR_SPEC_CONST_CONST_HANDLER
000000000010a250 000000000000005b t do_range_limit
00000000002c3110 000000000000005b t gc_remove_compressed
00000000001e6030 000000000000005b T php_info_print_table_colspan_header
0000000000174b50 000000000000005b t php_json_scanner_copy_string
000000000025bb30 000000000000005b t php_sockop_close
0000000000122c90 000000000000005b t sljit_free_compiler
00000000002d8840 000000000000005b t zend_assign_to_object_dim
00000000002c4a70 000000000000005b t zend_closure_get_method
00000000002d40b0 000000000000005b t zend_duplicate_property_info_internal
00000000002972b0 000000000000005b T zend_dval_to_lval_slow
00000000002af6a0 000000000000005b T zend_hash_move_backwards_ex
000000000026b7f0 000000000000005b t zend_ini_init_string.part.0
000000000028fa00 000000000000005b T zend_llist_copy
00000000002ce7c0 000000000000005b T zend_object_std_init
00000000002a1d70 000000000000005b T zend_startup_module
00000000002b9de0 000000000000005b T zend_user_it_move_forward
00000000002b9e40 000000000000005b T zend_user_it_rewind
0000000000176eb0 000000000000005b t zif_pcntl_wtermsig
000000000024ff40 000000000000005c T _php_stream_putc
0000000000250000 000000000000005c T _php_stream_stat
0000000000246f70 000000000000005c T php_network_gethostbyname
0000000000277d10 000000000000005c t zend_ensure_valid_class_fetch_type
0000000000279160 000000000000005c t zend_separate_if_call_and_write
00000000001a76b0 000000000000005c t zim_spl_SplObjectStorage_valid
0000000000251f00 000000000000005d T _php_stream_mkdir
00000000002b6980 000000000000005d t ini_key_compare
00000000001a90d0 000000000000005d t spl_object_storage_addall
00000000002b7480 000000000000005d T zend_ini_boolean_displayer_cb
000000000028bd40 000000000000005d T zend_register_double_constant
000000000018e3b0 000000000000005d t zif_spl_object_hash
000000000019a220 000000000000005d t zim_spl_Array_rewind
00000000001a7010 000000000000005d t zim_spl_SplObjectStorage_getHash
000000000011b1e0 000000000000005e T php_pcre2_convert_context_create
0000000000255820 000000000000005e t php_stdiop_stat
00000000002a7b00 000000000000005e t zend_extension_message_dispatcher
00000000002af530 000000000000005e T zend_hash_index_exists
0000000000177010 000000000000005e t zif_pcntl_alarm
000000000019e930 000000000000005e t zim_spl_DirectoryIterator_current
00000000001a9a70 000000000000005e t zim_spl_SplDoublyLinkedList_getIteratorMode
00000000001abbb0 000000000000005e t zim_spl_SplHeap_isCorrupted
00000000001abb50 000000000000005e t zim_spl_SplHeap_recoverFromCorruption
00000000001abaf0 000000000000005e t zim_spl_SplPriorityQueue_getExtractFlags
00000000002754a0 000000000000005f T _emalloc_large
000000000029edb0 000000000000005f T add_next_index_str
0000000000123a80 000000000000005f t jit_machine_stack_exec
00000000002b0410 000000000000005f t plist_entry_destructor
00000000001af000 000000000000005f t spl_fixedarray_it_get_current_data
00000000002bd950 000000000000005f T zend_exception_save
00000000002a20b0 000000000000005f T zend_post_deactivate_modules
0000000000292a30 000000000000005f T zend_str_tolower_dup
00000000002d8690 0000000000000060 t ZEND_CHECK_FUNC_ARG_SPEC_UNUSED_HANDLER
000000000014d0d0 0000000000000060 t _pcre2_jit_free_8
00000000006aee00 0000000000000060 d arginfo_array___construct
00000000006b9940 0000000000000060 d arginfo_array_chunk
00000000006ba480 0000000000000060 d arginfo_array_column
00000000006b9d60 0000000000000060 d arginfo_array_diff_uassoc
00000000006b9ee0 0000000000000060 d arginfo_array_diff_ukey
00000000006bab00 0000000000000060 d arginfo_array_fill
00000000006b9a60 0000000000000060 d arginfo_array_filter
00000000006ba020 0000000000000060 d arginfo_array_intersect_uassoc
00000000006ba200 0000000000000060 d arginfo_array_intersect_ukey
00000000006ba5e0 0000000000000060 d arginfo_array_keys
00000000006ba3c0 0000000000000060 d arginfo_array_pad
00000000006b9ac0 0000000000000060 d arginfo_array_reduce
00000000006bac00 0000000000000060 d arginfo_array_search
00000000006b9e20 0000000000000060 d arginfo_array_udiff
00000000006b9d00 0000000000000060 d arginfo_array_udiff_assoc
00000000006ba140 0000000000000060 d arginfo_array_uintersect
00000000006ba080 0000000000000060 d arginfo_array_uintersect_assoc
00000000006bad20 0000000000000060 d arginfo_array_walk
00000000006bacc0 0000000000000060 d arginfo_array_walk_recursive
00000000006b5500 0000000000000060 d arginfo_base_convert
000000000069ec20 0000000000000060 d arginfo_checkdate
00000000006b34e0 0000000000000060 d arginfo_chunk_split
00000000007071c0 0000000000000060 d arginfo_class_alias
00000000007081a0 0000000000000060 d arginfo_closure_bind
00000000006b89c0 0000000000000060 d arginfo_convert_cyr_string
00000000006b77c0 0000000000000060 d arginfo_copy
000000000069e7e0 0000000000000060 d arginfo_date_create_from_format
000000000069e340 0000000000000060 d arginfo_date_diff
000000000069e0e0 0000000000000060 d arginfo_date_method_date_set
000000000069e000 0000000000000060 d arginfo_date_method_isodate_set
000000000069da80 0000000000000060 d arginfo_date_period_construct
000000000069e8a0 0000000000000060 d arginfo_date_sun_info
0000000000707580 0000000000000060 d arginfo_define
00000000006b8480 0000000000000060 d arginfo_dns_get_mx
0000000000707ec0 0000000000000060 d arginfo_exception___construct
00000000006b8420 0000000000000060 d arginfo_exec
00000000006b3a40 0000000000000060 d arginfo_explode
00000000006baba0 0000000000000060 d arginfo_extract
00000000006b7d20 0000000000000060 d arginfo_fgetss
00000000006b8020 0000000000000060 d arginfo_file
00000000006af660 0000000000000060 d arginfo_file_object_fgetcsv
00000000006b8200 0000000000000060 d arginfo_flock
00000000006b7580 0000000000000060 d arginfo_fnmatch
00000000006b6c00 0000000000000060 d arginfo_fprintf
00000000006b7cc0 0000000000000060 d arginfo_fscanf
00000000006b7b40 0000000000000060 d arginfo_fseek
00000000006b7c60 0000000000000060 d arginfo_fwrite
00000000006b1e80 0000000000000060 d arginfo_get_headers
00000000006b64e0 0000000000000060 d arginfo_get_html_translation_table
00000000006b96a0 0000000000000060 d arginfo_getopt
00000000006b69a0 0000000000000060 d arginfo_header
00000000006b65c0 0000000000000060 d arginfo_html_entity_decode
00000000006bac60 0000000000000060 d arginfo_in_array
00000000006b0140 0000000000000060 d arginfo_info_openFile
00000000006b6200 0000000000000060 d arginfo_iptcembed
00000000006b2120 0000000000000060 d arginfo_is_callable
00000000007074a0 0000000000000060 d arginfo_is_subclass_of
00000000006ac840 0000000000000060 d arginfo_iterator_apply
00000000006a9360 0000000000000060 d arginfo_json_encode
00000000006ad4a0 0000000000000060 d arginfo_limit_it___construct
00000000006bb580 0000000000000060 d arginfo_ob_start
00000000006b2620 0000000000000060 d arginfo_openlog
00000000006b8ce0 0000000000000060 d arginfo_parse_ini_file
00000000006b8c80 0000000000000060 d arginfo_parse_ini_string
00000000006b50c0 0000000000000060 d arginfo_password_hash
00000000006b5020 0000000000000060 d arginfo_password_needs_rehash
00000000006a9880 0000000000000060 d arginfo_pcntl_exec
00000000006a9780 0000000000000060 d arginfo_pcntl_setpriority
00000000006a9be0 0000000000000060 d arginfo_pcntl_signal
00000000006a9b40 0000000000000060 d arginfo_pcntl_sigprocmask
00000000006a9c40 0000000000000060 d arginfo_pcntl_wait
00000000006a8cc0 0000000000000060 d arginfo_preg_grep
00000000006baa40 0000000000000060 d arginfo_range
00000000006b7a00 0000000000000060 d arginfo_readfile
00000000006ae3e0 0000000000000060 d arginfo_recursive_it___construct
00000000006aa7c0 0000000000000060 d arginfo_reflection_class_constant_export
00000000006abc60 0000000000000060 d arginfo_reflection_method_export
00000000006aa560 0000000000000060 d arginfo_reflection_parameter_export
00000000006aab80 0000000000000060 d arginfo_reflection_property_export
00000000006b7920 0000000000000060 d arginfo_rename
00000000006b5de0 0000000000000060 d arginfo_round
00000000006b86a0 0000000000000060 d arginfo_scandir
00000000006b3160 0000000000000060 d arginfo_similar_text
00000000006ac5e0 0000000000000060 d arginfo_spl_autoload_register
00000000006b29a0 0000000000000060 d arginfo_sscanf
00000000006b28c0 0000000000000060 d arginfo_str_word_count
00000000006b4760 0000000000000060 d arginfo_stream_get_contents
00000000006b4120 0000000000000060 d arginfo_stream_get_line
00000000006b4060 0000000000000060 d arginfo_stream_set_timeout
00000000006b4920 0000000000000060 d arginfo_stream_socket_accept
00000000006b4ae0 0000000000000060 d arginfo_stream_socket_pair
00000000006bb440 0000000000000060 d arginfo_stream_wrapper_register
00000000006b3660 0000000000000060 d arginfo_stripos
00000000006b3780 0000000000000060 d arginfo_stristr
0000000000707660 0000000000000060 d arginfo_strncmp
00000000006b36c0 0000000000000060 d arginfo_strpos
00000000006b35a0 0000000000000060 d arginfo_strripos
00000000006b3600 0000000000000060 d arginfo_strrpos
00000000006b3720 0000000000000060 d arginfo_strstr
00000000006b3200 0000000000000060 d arginfo_strtr
00000000006b3480 0000000000000060 d arginfo_substr
000000000069ddc0 0000000000000060 d arginfo_timezone_name_from_abbr
000000000069dcc0 0000000000000060 d arginfo_timezone_transitions_get
00000000006b72c0 0000000000000060 d arginfo_touch
00000000006b5120 0000000000000060 d arginfo_unpack
00000000006b19e0 0000000000000060 d arginfo_version_compare
00000000006b6ba0 0000000000000060 d arginfo_vfprintf
0000000000707c20 0000000000000060 d error_exception_functions
00000000006c08a0 0000000000000060 d ht_bucket_html4_030
00000000006bf600 0000000000000060 d ht_bucket_html4_0FB
00000000006bf4a0 0000000000000060 d ht_bucket_html4_106
00000000006bf040 0000000000000060 d ht_bucket_html4_12F
00000000006bede0 0000000000000060 d ht_bucket_html4_14F
00000000006bea00 0000000000000060 d ht_bucket_html4_16F
00000000006be460 0000000000000060 d ht_bucket_html4_19A
00000000006be400 0000000000000060 d ht_bucket_html4_19C
00000000006be360 0000000000000060 d ht_bucket_html4_19F
00000000006be060 0000000000000060 d ht_bucket_html4_1AE
00000000006bdf80 0000000000000060 d ht_bucket_html4_1B5
00000000006bdec0 0000000000000060 d ht_bucket_html4_1BC
00000000006ee100 0000000000000060 d ht_bucket_html5_027
00000000006edc60 0000000000000060 d ht_bucket_html5_05D
00000000006ed240 0000000000000060 d ht_bucket_html5_0B0
00000000006ec8c0 0000000000000060 d ht_bucket_html5_10F
00000000006ec300 0000000000000060 d ht_bucket_html5_13B
00000000006ea580 0000000000000060 d ht_bucket_html5_239
00000000006ea0a0 0000000000000060 d ht_bucket_html5_25C
00000000006ea040 0000000000000060 d ht_bucket_html5_25D
00000000006e9ba0 0000000000000060 d ht_bucket_html5_29F
00000000006e9240 0000000000000060 d ht_bucket_html5_311
00000000006e84e0 0000000000000060 d ht_bucket_html5_386
00000000006e81e0 0000000000000060 d ht_bucket_html5_3A0
00000000006e80c0 0000000000000060 d ht_bucket_html5_3A6
00000000006e7b80 0000000000000060 d ht_bucket_html5_3ED
00000000006e6720 0000000000000060 d ht_bucket_html5_4A4
00000000006e6140 0000000000000060 d ht_bucket_html5_4D2
00000000006e6060 0000000000000060 d ht_bucket_html5_4D5
00000000006e5e60 0000000000000060 d ht_bucket_html5_4E6
00000000006e5e00 0000000000000060 d ht_bucket_html5_4E7
00000000006e53e0 0000000000000060 d ht_bucket_html5_543
00000000006e5300 0000000000000060 d ht_bucket_html5_54F
00000000006e4020 0000000000000060 d ht_bucket_html5_5ED
00000000006e3e20 0000000000000060 d ht_bucket_html5_601
00000000006e36c0 0000000000000060 d ht_bucket_html5_645
00000000006e32c0 0000000000000060 d ht_bucket_html5_65E
00000000006e3160 0000000000000060 d ht_bucket_html5_672
00000000006e2c40 0000000000000060 d ht_bucket_html5_6A4
00000000006e25a0 0000000000000060 d ht_bucket_html5_6CE
00000000006e2220 0000000000000060 d ht_bucket_html5_6EF
00000000006e1e20 0000000000000060 d ht_bucket_html5_714
00000000006e1b80 0000000000000060 d ht_bucket_html5_729
00000000006e18c0 0000000000000060 d ht_bucket_html5_73D
00000000006e1140 0000000000000060 d ht_bucket_html5_77F
00000000006e0cc0 0000000000000060 d ht_bucket_html5_79F
00000000006dea40 0000000000000060 d ht_bucket_html5_8CF
00000000006de460 0000000000000060 d ht_bucket_html5_907
00000000006ddc40 0000000000000060 d ht_bucket_html5_94F
00000000006dd3e0 0000000000000060 d ht_bucket_html5_98C
00000000006dc400 0000000000000060 d ht_bucket_html5_9FD
00000000006dab20 0000000000000060 d ht_bucket_html5_ACA
00000000006da4e0 0000000000000060 d ht_bucket_html5_B09
00000000006da2e0 0000000000000060 d ht_bucket_html5_B1E
00000000006d9240 0000000000000060 d ht_bucket_html5_B9A
00000000006d7ae0 0000000000000060 d ht_bucket_html5_C58
00000000006d7320 0000000000000060 d ht_bucket_html5_CAD
00000000006d5800 0000000000000060 d ht_bucket_html5_D8E
00000000006d55c0 0000000000000060 d ht_bucket_html5_D96
00000000006d2100 0000000000000060 d ht_bucket_html5_F6F
00000000006d20a0 0000000000000060 d ht_bucket_html5_F70
00000000006d14e0 0000000000000060 d ht_bucket_html5_FD0
000000000069c940 0000000000000060 d mon_full_names
000000000069c8e0 0000000000000060 d mon_short_names
00000000006bb6a0 0000000000000060 d mon_short_names
00000000007278e0 0000000000000060 b pcntl_globals
00000000003346c0 0000000000000060 t php_cli_server_get_system_time
00000000001e5760 0000000000000060 t php_info_print_html_esc
0000000000721fa0 0000000000000060 d php_post_entries
00000000006ac420 0000000000000060 d reflection_functions
00000000006aabe0 0000000000000060 d reflection_object_functions
00000000006ac3c0 0000000000000060 d reflector_functions
00000000006af7c0 0000000000000060 d spl_GlobIterator_functions
00000000006adb60 0000000000000060 d spl_funcs_CallbackFilterIterator
00000000006acbe0 0000000000000060 d spl_funcs_InfiniteIterator
00000000006ad960 0000000000000060 d spl_funcs_ParentIterator
00000000006ae4e0 0000000000000060 d spl_funcs_RecursiveArrayIterator
00000000006ae480 0000000000000060 d spl_funcs_RecursiveIterator
00000000006b0dc0 0000000000000060 d spl_funcs_SplQueue
0000000000282370 0000000000000060 t zend_compile_expr_list
00000000007078c0 0000000000000060 d zend_funcs_serializable
0000000000722000 0000000000000060 d zend_rc_dtor_func
000000000028b9a0 0000000000000060 T zend_register_long_constant
00000000000cda48 0000000000000060 T zend_throw_exception_object
00000000001869a0 0000000000000060 t zim_reflection_function_getNumberOfParameters
00000000000d84a1 0000000000000061 t ZEND_SEND_FUNC_ARG_SPEC_VAR_HANDLER
0000000000222ef0 0000000000000061 T php_var_unserialize_init
00000000000e42e0 0000000000000061 t set_timezone_from_timelib_time
000000000018ba00 0000000000000061 t spl_build_class_list_string
00000000002c48a0 0000000000000061 t zend_closure_free_storage
000000000029d040 0000000000000061 T zend_copy_parameters_array
000000000029ba90 0000000000000061 T zend_print_zval_r_to_str
00000000002b89f0 0000000000000061 T zend_stream_open
0000000000231f20 0000000000000061 t zm_startup_password
0000000000233820 0000000000000062 T php_hrtime_current
00000000002caba0 0000000000000062 t php_is_dir_ok
00000000002cac10 0000000000000062 t php_is_file_ok
0000000000114e10 0000000000000062 T php_pcre2_code_free
0000000000109850 0000000000000062 t timelib_get_current_offset
00000000002af8b0 0000000000000062 T zend_hash_get_current_data_ex
000000000028b930 0000000000000062 T zend_register_bool_constant
0000000000176e40 0000000000000062 t zif_pcntl_wifsignaled
0000000000198050 0000000000000062 t zim_spl_AppendIterator_next
00000000002e02f0 0000000000000063 t ZEND_FETCH_CLASS_SPEC_UNUSED_CONST_HANDLER
0000000000253bb0 0000000000000063 T _php_stream_memory_create
00000000002a8310 0000000000000063 T _zend_new_array_0
00000000001248d0 0000000000000063 t allocate_read_only_data.isra.22
00000000002b7580 0000000000000063 T display_link_numbers
00000000001c12f0 0000000000000063 t php_putenv_destructor
000000000025bac0 0000000000000063 t php_sockop_cast
0000000000212520 0000000000000063 T php_var_serialize_destroy
00000000002778e0 0000000000000063 t zend_declare_is_first_statement
000000000029c280 0000000000000064 t OnUpdateAssertions
00000000002281e0 0000000000000064 t chunked_filter_create
0000000000228250 0000000000000064 t consumed_filter_create
00000000003300a0 0000000000000064 t sapi_cli_server_read_post
00000000001ac820 0000000000000064 t spl_pqueue_it_get_current_data
000000000010b6f0 0000000000000064 t timelib_set_timezone
00000000002a8070 0000000000000064 T zend_extensions_op_array_persist
000000000032b430 0000000000000064 T zend_vm_call_opcode_handler
00000000000e6660 0000000000000064 t zim_DateInterval___wakeup
000000000019de30 0000000000000064 t zim_spl_Array_append
00000000001933c0 0000000000000064 t zim_spl_RecursiveTreeIterator_getEntry
00000000001a1230 0000000000000064 t zim_spl_SplFileObject_eof
00000000001a7260 0000000000000064 t zim_spl_SplObjectStorage_current
0000000000313690 0000000000000065 t ZEND_COALESCE_SPEC_CV_HANDLER
00000000003217e0 0000000000000065 t ZEND_FAST_RET_SPEC_HANDLER
00000000000d8c5d 0000000000000065 t ZEND_FETCH_CONSTANT_SPEC_UNUSED_CONST_HANDLER
00000000000d7023 0000000000000065 t ZEND_POST_DEC_LONG_OR_DOUBLE_SPEC_TMPVARCV_HANDLER
00000000000d6f60 0000000000000065 t ZEND_POST_INC_LONG_OR_DOUBLE_SPEC_TMPVARCV_HANDLER
00000000002d9f30 0000000000000065 t ZEND_SEND_VAL_EX_SPEC_TMP_HANDLER
0000000000256b00 0000000000000065 T _php_stream_fopen_from_pipe
00000000001f52f0 0000000000000065 T php_mt_rand_common
00000000002c57a0 0000000000000065 T zend_init_fpu
000000000028cc60 0000000000000065 t zend_timeout_handler
00000000001a7ec0 0000000000000065 t zim_spl_MultipleIterator_current
00000000001a7f30 0000000000000065 t zim_spl_MultipleIterator_key
00000000003070b0 0000000000000066 t ZEND_ROPE_INIT_SPEC_UNUSED_CV_HANDLER
00000000002388a0 0000000000000066 T ap_php_vslprintf
00000000000e4e10 0000000000000066 t date_period_it_rewind
0000000000224980 0000000000000066 T php_var_unserialize_destroy
00000000002c93a0 0000000000000066 t zend_generator_iterator_rewind
000000000028dfc0 0000000000000066 T zend_get_called_scope
00000000002af470 0000000000000066 T zend_hash_index_find
0000000000198fc0 0000000000000066 t zim_spl_Array_getIteratorClass
000000000019cde0 0000000000000066 t zim_spl_Array_offsetUnset
000000000019e8c0 0000000000000066 t zim_spl_DirectoryIterator_key
000000000018ea20 0000000000000066 t zim_spl_RecursiveIteratorIterator_getMaxDepth
000000000018ff10 0000000000000066 t zim_spl_RecursiveIteratorIterator_next
000000000018fe80 0000000000000066 t zim_spl_RecursiveIteratorIterator_rewind
000000000018ea90 0000000000000066 t zim_spl_RegexIterator_getRegex
00000000001a1950 0000000000000066 t zim_spl_SplFileObject_rewind
00000000001ad870 0000000000000066 t zim_spl_SplFixedArray_valid
00000000000dceb3 0000000000000067 t ZEND_INIT_METHOD_CALL_SPEC_CONST_TMPVAR_HANDLER
00000000000ddc07 0000000000000067 t ZEND_RETURN_BY_REF_SPEC_CONST_HANDLER
0000000000315e10 0000000000000067 t ZEND_ROPE_INIT_SPEC_UNUSED_TMPVAR_HANDLER
00000000000df500 0000000000000067 t date_object_new_date
00000000000df340 0000000000000067 t date_object_new_interval
00000000000df240 0000000000000067 t date_object_new_period
00000000000df400 0000000000000067 t date_object_new_timezone
0000000000181d50 0000000000000067 t reflection_objects_new
0000000000191ab0 0000000000000067 t spl_iterator_func_apply
0000000000281d00 0000000000000067 t zend_compile_func_count
0000000000281e00 0000000000000067 t zend_compile_func_gettype
00000000002a3de0 0000000000000067 T zend_fcall_info_init
00000000002b04c0 0000000000000067 t zend_fetch_resource.part.2
00000000002b04c0 0000000000000067 t zend_fetch_resource2.part.1
00000000002c7fb0 0000000000000067 t zend_generator_cleanup_unfinished_execution
000000000027eaa0 0000000000000067 t zend_is_allowed_in_const_expr
0000000000277870 0000000000000067 t zend_propagate_list_refs
0000000000193430 0000000000000067 t zim_spl_AppendIterator_valid
0000000000193860 0000000000000067 t zim_spl_CachingIterator_valid
0000000000193630 0000000000000067 t zim_spl_RecursiveCachingIterator_hasChildren
0000000000193b70 0000000000000067 t zim_spl_dual_it_valid
000000000028c9a0 0000000000000068 T get_active_class_name
00000000000e56a0 0000000000000068 t php_date_add.isra.20
00000000002a8000 0000000000000068 T zend_extensions_op_array_persist_calc
0000000000176dd0 0000000000000068 t zif_pcntl_wifstopped
0000000000183420 0000000000000068 t zim_reflection_generator_getExecutingLine
0000000000315da0 0000000000000069 t ZEND_BW_NOT_SPEC_CV_HANDLER
0000000000247a30 0000000000000069 T php_output_clean_all
00000000001798d0 0000000000000069 t reflection_type_factory
000000000026cf70 0000000000000069 T zend_parse_ini_string
00000000000da11c 0000000000000069 t zend_use_tmp_in_write_context_helper_SPEC
00000000000da1f5 0000000000000069 t zend_use_undef_in_read_context_helper_SPEC
00000000002c4270 0000000000000069 t zim_Closure___invoke
000000000030c000 000000000000006a t ZEND_BOOL_XOR_SPEC_CV_TMPVAR_HANDLER
00000000002fdfe0 000000000000006a t ZEND_DIV_SPEC_CV_TMPVAR_HANDLER
00000000002fe0a0 000000000000006a t ZEND_DIV_SPEC_TMPVAR_CV_HANDLER
0000000000309b00 000000000000006a t ZEND_POW_SPEC_CV_TMPVAR_HANDLER
0000000000309a40 000000000000006a t ZEND_POW_SPEC_TMPVAR_CV_HANDLER
00000000000d917f 000000000000006a t ZEND_QM_ASSIGN_SPEC_CV_HANDLER
000000000030b240 000000000000006a t ZEND_SPACESHIP_SPEC_CV_TMPVAR_HANDLER
000000000030a1b0 000000000000006a t ZEND_SPACESHIP_SPEC_TMPVAR_CV_HANDLER
0000000000275190 000000000000006a T _emalloc_1024
0000000000275200 000000000000006a T _emalloc_1280
0000000000275270 000000000000006a T _emalloc_1536
0000000000274cc0 000000000000006a T _emalloc_160
00000000002752e0 000000000000006a T _emalloc_1792
0000000000274d30 000000000000006a T _emalloc_192
0000000000275350 000000000000006a T _emalloc_2048
0000000000274da0 000000000000006a T _emalloc_224
0000000000274e10 000000000000006a T _emalloc_256
00000000002753c0 000000000000006a T _emalloc_2560
0000000000275430 000000000000006a T _emalloc_3072
0000000000274e80 000000000000006a T _emalloc_320
0000000000274ef0 000000000000006a T _emalloc_384
0000000000274f60 000000000000006a T _emalloc_448
0000000000274fd0 000000000000006a T _emalloc_512
0000000000275040 000000000000006a T _emalloc_640
00000000002750b0 000000000000006a T _emalloc_768
0000000000275120 000000000000006a T _emalloc_896
00000000002484e0 000000000000006a t php_output_deactivate.part.3
00000000001e5ec0 000000000000006a T php_print_info_htmlhead
000000000018e340 000000000000006a T php_spl_object_hash
00000000002a1f30 000000000000006a T zend_activate_modules
00000000002820a0 000000000000006a t zend_compile_static_var
00000000002c61b0 000000000000006a T zend_interned_strings_switch_storage
00000000000dcf1a 000000000000006b t ZEND_INIT_METHOD_CALL_SPEC_CONST_CV_HANDLER
00000000002b5900 000000000000006b t debug_print_backtrace_args
0000000000123ae0 000000000000006b t sljit_stack_resize
0000000000282ec0 000000000000006b t zend_compile_print
00000000000de8d0 000000000000006b t zm_deactivate_date
00000000002ff4c0 000000000000006c t ZEND_UNSET_OBJ_SPEC_UNUSED_CV_HANDLER
00000000001f7cd0 000000000000006c T localeconv_r
000000000016c6c0 000000000000006c T pcre_get_compiled_regex_ex
00000000001d30f0 000000000000006c T php_mkdir_ex
000000000016ebb0 000000000000006c T php_pcre_replace
00000000001e3430 000000000000006c t php_read4
00000000002537e0 000000000000006c t php_stream_temp_seek
00000000001a80b0 000000000000006c t spl_object_storage_compare_info
00000000000eb830 000000000000006c t timelib_days_in_month
0000000000418440 000000000000006c r unimap_iso885915
00000000004183c0 000000000000006c r unimap_win1252
00000000003ea280 000000000000006c r verbs
00000000002b8890 000000000000006c t zend_stream_stdio_fsizer
00000000001c2cf0 000000000000006c t zif_error_clear_last
0000000000193c50 000000000000006c t zim_spl_RecursiveTreeIterator_getPrefix
00000000001a72d0 000000000000006c t zim_spl_SplObjectStorage_getInfo
00000000002d9ec0 000000000000006d t ZEND_SEND_VAL_EX_SPEC_CONST_HANDLER
00000000001af500 000000000000006d T php_multisort_compare
000000000019d690 000000000000006d t spl_array_has_property
000000000019dc50 000000000000006d t spl_array_write_property
00000000002d8270 000000000000006d t zend_cpu_startup
00000000000dcb1a 000000000000006e t ZEND_EXIT_SPEC_CV_HANDLER
0000000000302990 000000000000006e t ZEND_GENERATOR_RETURN_SPEC_CV_HANDLER
0000000000275fb0 000000000000006e T _efree_large
00000000002c3750 000000000000006e t gc_globals_ctor
0000000000330650 000000000000006e t get_status_string
0000000000256330 000000000000006e t php_stdiop_seek
00000000001aee30 000000000000006e t spl_fixedarray_get_iterator
000000000027b7b0 000000000000006e T zend_activate_auto_globals
000000000029c0e0 000000000000006e T zend_call_destructors
000000000024e310 000000000000006e t zif_ob_implicit_flush
00000000000e1b80 000000000000006e t zim_DatePeriod_getDateInterval
0000000000198c40 000000000000006e t zim_spl_Array_setFlags
0000000000192580 000000000000006e t zim_spl_RecursiveIteratorIterator_valid
0000000000315d30 000000000000006f t ZEND_BW_NOT_SPEC_TMPVAR_HANDLER
00000000000db544 000000000000006f t ZEND_EXIT_SPEC_TMPVAR_HANDLER
00000000002e04b0 000000000000006f t ZEND_GENERATOR_RETURN_SPEC_VAR_HANDLER
00000000002e26d0 000000000000006f t ZEND_ROPE_ADD_SPEC_TMP_TMPVAR_HANDLER
00000000000d8432 000000000000006f t ZEND_SEND_VAR_EX_SPEC_VAR_QUICK_HANDLER
00000000000da705 000000000000006f t ZEND_SWITCH_LONG_SPEC_CONST_CONST_HANDLER
00000000002e2250 000000000000006f t ZEND_UNSET_OBJ_SPEC_UNUSED_TMPVAR_HANDLER
00000000000dc2bd 000000000000006f t ZEND_UNSET_STATIC_PROP_SPEC_TMPVAR_VAR_HANDLER
0000000000214e30 000000000000006f t incomplete_class_message
0000000000292e10 000000000000006f T zend_binary_strncasecmp
0000000000283c60 000000000000006f t zend_compile_ns_call
00000000001ed230 000000000000006f t zif_decbin
00000000001ed310 000000000000006f t zif_dechex
00000000001ed2a0 000000000000006f t zif_decoct
00000000001dd160 000000000000006f t zif_user_printf
0000000000445d60 0000000000000070 r HARDCODED_INI
00000000002e0390 0000000000000070 t ZEND_ADD_TRAIT_SPEC_HANDLER
00000000000da3ee 0000000000000070 t ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_CONST_CONST_HANDLER
0000000000321b10 0000000000000070 t ZEND_RETURN_BY_REF_SPEC_CV_HANDLER
00000000002770a0 0000000000000070 T _estrdup
0000000000277110 0000000000000070 T _estrndup
00000000002368d0 0000000000000070 T ap_php_conv_10
0000000000166de0 0000000000000070 t convert_glob_print_commit
00000000007041c0 0000000000000070 d enc_to_uni_index
0000000000725e80 0000000000000070 b extension_lists
000000000072aa40 0000000000000070 B ini_scanner_globals
00000000003ea080 0000000000000070 r posix_substitutes
00000000002818d0 0000000000000070 t zend_compile_func_cast
0000000000717b20 0000000000000070 D zend_pass_function
00000000000da185 0000000000000070 t zend_yield_in_closed_generator_helper_SPEC
0000000000184fb0 0000000000000070 t zim_reflection_function_getExtension
0000000000186bb0 0000000000000070 t zim_reflection_function_isDisabled
00000000001935c0 0000000000000070 t zim_spl_NoRewindIterator_valid
0000000000193be0 0000000000000070 t zim_spl_RecursiveTreeIterator_getPostfix
00000000000e4d90 0000000000000071 t date_object_period_get_iterator
00000000001d93b0 0000000000000071 T php_clear_stat_cache
0000000000255c00 0000000000000071 t php_stdiop_write
000000000023ef30 0000000000000071 T sapi_add_header_ex
00000000002cae00 0000000000000071 T virtual_cwd_activate
000000000028e4d0 0000000000000071 T zend_unset_timeout
00000000002b96c0 0000000000000071 t zend_user_it_get_iterator
00000000002e22c0 0000000000000072 t ZEND_ECHO_SPEC_CONST_HANDLER
00000000000d9b5d 0000000000000072 t ZEND_ISSET_ISEMPTY_CV_SPEC_CV_UNUSED_SET_HANDLER
00000000000dcc27 0000000000000072 t ZEND_UNSET_STATIC_PROP_SPEC_CV_VAR_HANDLER
000000000029cdb0 0000000000000072 t object_properties_init_ex.part.5
00000000002562b0 0000000000000072 t php_plain_files_url_stater
00000000002c8310 0000000000000072 t zend_generator_free_storage
000000000028cae0 0000000000000072 T zend_get_executed_lineno
00000000002b71b0 0000000000000072 T zend_restore_ini_entry
00000000002b8810 0000000000000072 t zend_stream_mmap_closer
0000000000319290 0000000000000072 T zend_vm_stack_extend
0000000000176c60 0000000000000072 t zm_deactivate_pcntl
00000000002e0960 0000000000000073 t ZEND_ADD_INTERFACE_SPEC_CONST_HANDLER
00000000000df570 0000000000000073 t date_object_clone_date
00000000002249f0 0000000000000073 T php_var_unserialize
00000000001a9ca0 0000000000000073 t spl_dllist_it_helper_rewind
00000000001a12e0 0000000000000073 t spl_filesystem_object_destroy_object
00000000000eb700 0000000000000073 t timelib_daynr_from_weeknr_ex
000000000019dbb0 0000000000000073 t zim_spl_Array_offsetSet
000000000030c070 0000000000000074 t ZEND_BOOL_XOR_SPEC_CV_CV_HANDLER
00000000002fdf60 0000000000000074 t ZEND_DIV_SPEC_CV_CV_HANDLER
00000000002f82a0 0000000000000074 t ZEND_FETCH_DIM_RW_SPEC_VAR_UNUSED_HANDLER
00000000002f8d50 0000000000000074 t ZEND_FETCH_DIM_W_SPEC_VAR_UNUSED_HANDLER
0000000000309b70 0000000000000074 t ZEND_POW_SPEC_CV_CV_HANDLER
00000000000d907a 0000000000000074 t ZEND_SEND_VAR_SPEC_CV_HANDLER
000000000030b9c0 0000000000000074 t ZEND_SPACESHIP_SPEC_CV_CV_HANDLER
00000000000df1c0 0000000000000074 t date_period_it_current_data
0000000000174bb0 0000000000000074 t php_json_ucs2_to_int_ex.isra.0
000000000024a970 0000000000000074 T php_output_start_default
000000000024a9f0 0000000000000074 T php_output_start_devnull
0000000000255300 0000000000000074 T php_stream_filter_remove
00000000002ce740 0000000000000074 T zend_ast_apply
000000000029b7d0 0000000000000074 T zend_print_zval
00000000001ab4c0 0000000000000074 t zim_spl_SplDoublyLinkedList_pop
00000000001ab540 0000000000000074 t zim_spl_SplDoublyLinkedList_shift
000000000018c9c0 0000000000000074 t zm_deactivate_spl
0000000000321910 0000000000000075 t ZEND_RETURN_BY_REF_SPEC_TMP_HANDLER
000000000023fd60 0000000000000075 t php_ap_basename
00000000001e7bd0 0000000000000075 t php_iptc_get1
00000000002124a0 0000000000000075 T php_var_serialize_init
000000000019d610 0000000000000075 t spl_array_read_property
0000000000191f50 0000000000000075 t spl_dual_it_new
00000000001a9840 0000000000000075 t spl_ptr_llist_push
0000000000278da0 0000000000000075 t zend_del_literal
00000000002af620 0000000000000075 T zend_hash_move_forward_ex
00000000002e00e0 0000000000000076 t ZEND_DECLARE_ANON_CLASS_SPEC_HANDLER
0000000000193290 0000000000000076 t spl_RecursiveIteratorIterator_dtor
00000000001aca30 0000000000000076 t spl_heap_it_move_forward
00000000002b0a40 0000000000000076 T zend_fetch_list_dtor_id
00000000002af830 0000000000000076 T zend_hash_get_current_key_type_ex
000000000027c450 0000000000000076 t zend_list_has_assign_to_self.part.35
0000000000183590 0000000000000076 t zim_reflection_parameter_isDefaultValueConstant
00000000002341c0 0000000000000077 t OnUpdateMailLog
00000000002e8af0 0000000000000077 t ZEND_BOOL_XOR_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002e8840 0000000000000077 t ZEND_BW_AND_SPEC_TMPVAR_CONST_HANDLER
00000000002e8710 0000000000000077 t ZEND_BW_OR_SPEC_TMPVAR_CONST_HANDLER
00000000002e8970 0000000000000077 t ZEND_BW_XOR_SPEC_TMPVAR_CONST_HANDLER
00000000002e5da0 0000000000000077 t ZEND_DIV_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002f6b90 0000000000000077 t ZEND_FETCH_DIM_IS_SPEC_TMPVAR_TMPVAR_HANDLER
00000000000db93c 0000000000000077 t ZEND_MOD_SPEC_CONST_CONST_HANDLER
00000000002e6460 0000000000000077 t ZEND_POW_SPEC_TMPVAR_TMPVAR_HANDLER
0000000000304900 0000000000000077 t ZEND_ROPE_ADD_SPEC_TMP_CV_HANDLER
00000000002e7a30 0000000000000077 t ZEND_SPACESHIP_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002c3930 0000000000000077 T gc_possible_root
00000000003ea000 0000000000000077 r opcode_possessify
0000000000247730 0000000000000077 T php_output_startup
0000000000254890 0000000000000077 T php_stream_bucket_unlink
000000000032d1f0 0000000000000077 t sapi_cli_ub_write
000000000019c350 0000000000000077 t spl_array_get_property_ptr_ptr
0000000000228380 0000000000000077 t strfilter_convert_dtor
0000000000277990 0000000000000077 t zend_check_already_in_use
0000000000282f30 0000000000000077 t zend_compile_exit
000000000028f980 0000000000000077 T zend_llist_remove_tail
000000000026cef0 0000000000000077 T zend_parse_ini_file
0000000000277e50 0000000000000077 t zend_register_seen_symbol
0000000000299ec0 0000000000000077 T zend_stack_clean
00000000000da25e 0000000000000077 t zend_this_not_in_object_context_helper_SPEC
00000000001b4bf0 0000000000000077 t zif_key
00000000001dd1d0 0000000000000077 t zif_vprintf
00000000001a7b20 0000000000000077 t zim_spl_MultipleIterator___construct
00000000002d8ab0 0000000000000078 t ZEND_SEND_REF_SPEC_CV_HANDLER
00000000003f02e0 0000000000000078 r _pcre2_ucp_gentype_8
00000000006b9c00 0000000000000078 d arginfo_array_multisort
00000000006ba7c0 0000000000000078 d arginfo_array_slice
00000000006ba840 0000000000000078 d arginfo_array_splice
00000000006b9c80 0000000000000078 d arginfo_array_udiff_uassoc
00000000006b9fa0 0000000000000078 d arginfo_array_uintersect_uassoc
000000000069e140 0000000000000078 d arginfo_date_date_set
000000000069e060 0000000000000078 d arginfo_date_isodate_set
000000000069e1c0 0000000000000078 d arginfo_date_method_time_set
00000000006b94c0 0000000000000078 d arginfo_error_log
00000000006af740 0000000000000078 d arginfo_file_object___construct
00000000006af5e0 0000000000000078 d arginfo_file_object_fputcsv
00000000006b8080 0000000000000078 d arginfo_file_put_contents
00000000006b7f40 0000000000000078 d arginfo_fopen
00000000006b6540 0000000000000078 d arginfo_htmlentities
00000000006b6680 0000000000000078 d arginfo_htmlspecialchars
00000000006b6460 0000000000000078 d arginfo_http_build_query
00000000006a92e0 0000000000000078 d arginfo_json_decode
00000000006b7ac0 0000000000000078 d arginfo_mkdir
00000000006b5480 0000000000000078 d arginfo_number_format
00000000006a9a60 0000000000000078 d arginfo_pcntl_sigtimedwait
00000000006a9ca0 0000000000000078 d arginfo_pcntl_waitpid
00000000007048c0 0000000000000078 d arginfo_php_user_filter_filter
00000000006a8e00 0000000000000078 d arginfo_preg_replace_callback_array
00000000006a8d80 0000000000000078 d arginfo_preg_split
00000000006ae080 0000000000000078 d arginfo_recursive_tree_it___construct
00000000006b2c80 0000000000000078 d arginfo_str_getcsv
00000000006b2f40 0000000000000078 d arginfo_str_ireplace
00000000006b2a00 0000000000000078 d arginfo_str_pad
00000000006b2fc0 0000000000000078 d arginfo_str_replace
00000000006b3ce0 0000000000000078 d arginfo_strcspn
00000000006b4440 0000000000000078 d arginfo_stream_context_set_option
00000000006b46e0 0000000000000078 d arginfo_stream_copy_to_stream
00000000006b41c0 0000000000000078 d arginfo_stream_filter_append
00000000006b4240 0000000000000078 d arginfo_stream_filter_prepend
00000000006b3ec0 0000000000000078 d arginfo_stream_socket_enable_crypto
00000000006b47c0 0000000000000078 d arginfo_stream_socket_recvfrom
00000000006b4840 0000000000000078 d arginfo_stream_socket_sendto
00000000006b3d60 0000000000000078 d arginfo_strspn
00000000006b2a80 0000000000000078 d arginfo_substr_count
00000000006b3400 0000000000000078 d arginfo_substr_replace
00000000006b3aa0 0000000000000078 d arginfo_wordwrap
0000000000439c80 0000000000000078 r bin_data_size
0000000000439c00 0000000000000078 r bin_elements
0000000000439b80 0000000000000078 r bin_pages
0000000000122d80 0000000000000078 t get_class_iterator_size
00000000006be580 0000000000000078 d ht_bucket_html4_18F
00000000006ea280 0000000000000078 d ht_bucket_html5_24B
00000000006e2160 0000000000000078 d ht_bucket_html5_6F7
00000000006e0660 0000000000000078 d ht_bucket_html5_7C1
00000000006df4c0 0000000000000078 d ht_bucket_html5_85E
00000000006d8a20 0000000000000078 d ht_bucket_html5_BD8
00000000006d5da0 0000000000000078 d ht_bucket_html5_D6C
00000000006d5c60 0000000000000078 d ht_bucket_html5_D71
00000000006d5620 0000000000000078 d ht_bucket_html5_D95
00000000000e7e10 0000000000000078 T php_format_date
0000000000248430 0000000000000078 T php_output_handler_dtor
00000000002483b0 0000000000000078 T php_output_handler_hook
0000000000109d90 0000000000000078 t timelib_strcasecmp
00000000002822f0 0000000000000078 t zend_compile_goto
00000000002c7890 0000000000000078 t zend_generator_create
00000000000cc9b8 0000000000000078 T zend_wrong_parameters_none_exception
00000000002b66c0 0000000000000078 t zif_debug_backtrace
00000000000ea650 0000000000000078 t zim_DateTime___wakeup
00000000000d82ae 0000000000000079 t ZEND_RETURN_SPEC_VAR_HANDLER
00000000002e08e0 0000000000000079 t ZEND_SWITCH_LONG_SPEC_TMPVARCV_CONST_HANDLER
00000000002debc0 0000000000000079 t ZEND_SWITCH_STRING_SPEC_TMPVARCV_CONST_HANDLER
000000000028db00 0000000000000079 T _call_user_function_ex
0000000000253c20 0000000000000079 T _php_stream_memory_open
00000000003e8fe0 0000000000000079 r propposstab
0000000000261110 0000000000000079 t shutdown_scanner
0000000000109d10 0000000000000079 t timelib_hms_to_decimal_hour
000000000027bde0 0000000000000079 T zend_dirname
000000000027ab30 0000000000000079 T zend_do_delayed_early_binding
00000000000cc8b0 0000000000000079 T zend_wrong_param_count
000000000024e0c0 0000000000000079 t zif_ob_get_length
0000000000255380 000000000000007a t _php_stream_fopen_from_fd_int
00000000002be140 000000000000007a t lo0bits
00000000000e5dd0 000000000000007a t php_date_timezone_initialize_from_hash.isra.28
0000000000170ef0 000000000000007a T php_json_encode_ex
00000000002461b0 000000000000007a T php_socket_error_str
00000000000e5f10 000000000000007a t zim_DateTimeZone___wakeup
00000000002f0430 000000000000007b t ZEND_PRE_DEC_SPEC_CV_RETVAL_UNUSED_HANDLER
00000000002effe0 000000000000007b t ZEND_PRE_INC_SPEC_CV_RETVAL_UNUSED_HANDLER
000000000010b7b0 000000000000007b t add_error
00000000000e6a10 000000000000007b T get_timezone_info
00000000000e5bd0 000000000000007b t php_date_isodate_set.isra.26
000000000025d2c0 000000000000007b t php_glob_stream_path_split.isra.0
00000000002be4b0 000000000000007b t sulp.isra.1
0000000000299da0 000000000000007b T zend_stack_apply
00000000000cd9cd 000000000000007b T zend_throw_error_exception
00000000001bc090 000000000000007b t zif_array_key_first
0000000000179be0 000000000000007b t zim_reflection_property_setAccessible
00000000002f8160 000000000000007c t ZEND_FETCH_DIM_RW_SPEC_VAR_CONST_HANDLER
00000000002f8320 000000000000007c t ZEND_FETCH_DIM_RW_SPEC_VAR_CV_HANDLER
00000000002f7940 000000000000007c t ZEND_FETCH_DIM_UNSET_SPEC_VAR_CONST_HANDLER
00000000002f7a80 000000000000007c t ZEND_FETCH_DIM_UNSET_SPEC_VAR_CV_HANDLER
00000000002f8bd0 000000000000007c t ZEND_FETCH_DIM_W_SPEC_VAR_CONST_HANDLER
00000000002f8df0 000000000000007c t ZEND_FETCH_DIM_W_SPEC_VAR_CV_HANDLER
0000000000313e10 000000000000007c t ZEND_VERIFY_RETURN_TYPE_SPEC_UNUSED_UNUSED_HANDLER
0000000000438be0 000000000000007c r yycheck
0000000000438c60 000000000000007c r yytable
0000000000282b50 000000000000007c t zend_compile_cast
00000000002b7300 000000000000007c T zend_ini_string_ex
00000000000ccf6b 000000000000007c T zend_wrong_callback_deprecated
00000000000cceef 000000000000007c T zend_wrong_callback_exception
00000000002b1740 000000000000007c t zif_get_included_files
0000000000227710 000000000000007c t zif_stream_get_filters
000000000019ed90 000000000000007c t zim_spl_DirectoryIterator_rewind
00000000001a98c0 000000000000007c t zim_spl_SplDoublyLinkedList_push
00000000001a1660 000000000000007c t zim_spl_SplFileObject_next
00000000002f8a30 000000000000007d t ZEND_FETCH_LIST_W_SPEC_VAR_CONST_HANDLER
00000000002f8b50 000000000000007d t ZEND_FETCH_LIST_W_SPEC_VAR_CV_HANDLER
0000000000109b30 000000000000007d t timelib_error_container_dtor
0000000000109a50 000000000000007d t timelib_time_tz_abbr_update
00000000002b8f30 000000000000007d T zend_compare_file_handles
000000000028ed90 000000000000007d T zend_detach_symbol_table
00000000001109d0 000000000000007e t manage_callouts.isra.1
0000000000114ca0 000000000000007e T php_pcre2_code_copy
00000000001f3ea0 000000000000007e T php_statpage
0000000000109950 000000000000007e t timelib_time_clone
00000000002cd390 000000000000007e T zend_ast_create_0
000000000027fb20 000000000000007e t zend_const_expr_to_zval
00000000002a7830 000000000000007e T zend_find_alias_name
000000000029b590 000000000000007e T zend_vstrpprintf
0000000000200fe0 000000000000007e t zif_chr
000000000019d2b0 000000000000007e t zim_spl_Array_offsetExists
00000000001abcf0 000000000000007e t zim_spl_SplPriorityQueue_setExtractFlags
00000000002e6060 000000000000007f t ZEND_SL_SPEC_CONST_TMPVAR_HANDLER
00000000002e60e0 000000000000007f t ZEND_SL_SPEC_TMPVAR_CONST_HANDLER
00000000002e6210 000000000000007f t ZEND_SR_SPEC_CONST_TMPVAR_HANDLER
00000000002e6290 000000000000007f t ZEND_SR_SPEC_TMPVAR_CONST_HANDLER
0000000000183510 000000000000007f t _reflection_param_get_default_param.isra.29
00000000000eca50 000000000000007f t add_pbf_error.isra.3
0000000000331b20 000000000000007f t php_cli_server_client_read_request_on_body
000000000023d5c0 000000000000007f T php_ini_activate_per_dir_config
00000000001e7c50 000000000000007f t php_iptc_skip_variable
00000000001f17e0 000000000000007f t php_pack_copy_float
00000000001a21d0 000000000000007f t spl_filesystem_tree_get_iterator
0000000000277a60 000000000000007f t zend_add_to_list
000000000027c590 000000000000007f t zend_compile_function_name
0000000000282fb0 000000000000007f t zend_compile_yield_from
00000000002b8170 000000000000007f T zend_multibyte_restore_functions
0000000000185480 000000000000007f t zim_reflection_class_newInstanceWithoutConstructor
000000000019e420 000000000000007f t zim_spl_FilesystemIterator_setFlags
0000000000193540 000000000000007f t zim_spl_NoRewindIterator_key
00000000001ac890 000000000000007f t zim_spl_SplMaxHeap_compare
00000000001ac920 000000000000007f t zim_spl_SplMinHeap_compare
00000000000da4f5 0000000000000080 t ZEND_GET_CLASS_SPEC_CONST_UNUSED_HANDLER
00000000007223c0 0000000000000080 d additional_functions
0000000000418740 0000000000000080 r enc_to_uni_s2_cp866_80
00000000004186c0 0000000000000080 r enc_to_uni_s2_cp866_C0
0000000000418a40 0000000000000080 r enc_to_uni_s2_iso885915_80
0000000000418d40 0000000000000080 r enc_to_uni_s2_iso88591_00
0000000000418cc0 0000000000000080 r enc_to_uni_s2_iso88591_40
0000000000418c40 0000000000000080 r enc_to_uni_s2_iso88591_80
0000000000418bc0 0000000000000080 r enc_to_uni_s2_iso88591_C0
0000000000418b40 0000000000000080 r enc_to_uni_s2_iso88595_80
0000000000418ac0 0000000000000080 r enc_to_uni_s2_iso88595_C0
0000000000418840 0000000000000080 r enc_to_uni_s2_koi8r_80
00000000004187c0 0000000000000080 r enc_to_uni_s2_koi8r_C0
0000000000418640 0000000000000080 r enc_to_uni_s2_macroman_00
00000000004185c0 0000000000000080 r enc_to_uni_s2_macroman_40
0000000000418540 0000000000000080 r enc_to_uni_s2_macroman_80
00000000004184c0 0000000000000080 r enc_to_uni_s2_macroman_C0
0000000000418940 0000000000000080 r enc_to_uni_s2_win1251_80
00000000004188c0 0000000000000080 r enc_to_uni_s2_win1251_C0
00000000004189c0 0000000000000080 r enc_to_uni_s2_win1252_80
0000000000726680 0000000000000080 b global_sigmask
00000000006bb7e0 0000000000000080 d ht_buckets_be_apos
00000000006bbfc0 0000000000000080 d ht_buckets_be_noapos
0000000000722500 0000000000000080 d ini_entries
0000000000291470 0000000000000080 t instanceof_interface
00000000006bb700 0000000000000080 d php_dir_class_functions
00000000001f1900 0000000000000080 t php_pack_parse_float
00000000002534b0 0000000000000080 t php_stream_memory_stat
00000000001697f0 0000000000000080 t preg_get_backref
00000000006acec0 0000000000000080 d spl_funcs_RecursiveCachingIterator
00000000006ada80 0000000000000080 d spl_funcs_RecursiveCallbackFilterIterator
00000000006ad9c0 0000000000000080 d spl_funcs_RecursiveFilterIterator
00000000006b0980 0000000000000080 d spl_funcs_SplSubject
0000000000704940 0000000000000080 d standard_filters
0000000000704840 0000000000000080 d user_filter_class_funcs
0000000000279d60 0000000000000080 t zend_add_class_modifier
00000000002d3d20 0000000000000080 T zend_objects_store_call_destructors
0000000000183490 0000000000000080 t zim_reflection_generator_getThis
000000000018a9f0 0000000000000080 t zim_reflection_method_getDeclaringClass
0000000000197f00 0000000000000080 t zim_spl_AppendIterator_rewind
00000000001937e0 0000000000000080 t zim_spl_CachingIterator_hasNext
0000000000193d70 0000000000000080 t zim_spl_RecursiveIteratorIterator_key
00000000000d8ff9 0000000000000081 t ZEND_RETURN_SPEC_CV_HANDLER
00000000000db5d1 0000000000000081 t ZEND_TYPE_CHECK_SPEC_CONST_HANDLER
000000000025d130 0000000000000081 T _php_stream_mmap_range
00000000000dcddb 0000000000000081 t is_null_constant.part.20
000000000032fb40 0000000000000081 t php_cli_server_poller_add
0000000000251720 0000000000000081 t php_shutdown_stream_hashes
00000000001a9c10 0000000000000081 t spl_ptr_llist_shift
00000000000eb7a0 0000000000000081 t timelib_day_of_year
00000000000cb708 0000000000000081 t yytnamerr
00000000002777c0 0000000000000081 t zend_reset_import_tables
00000000001ac140 0000000000000081 t zim_spl_SplHeap_next
00000000000dcc99 0000000000000082 t ZEND_UNSET_STATIC_PROP_SPEC_CV_UNUSED_HANDLER
0000000000183300 0000000000000082 t _reflection_param_get_default_precv.isra.5
00000000000ecad0 0000000000000082 t add_pbf_warning.isra.4
000000000010ec10 0000000000000082 t check_posix_syntax
0000000000122cf0 0000000000000082 t is_accelerated_repeat
00000000001c7d20 0000000000000082 T php_get_highlight_struct
0000000000247590 0000000000000082 t php_output_header
0000000000256680 0000000000000082 t php_plain_files_dir_opener
00000000002535f0 0000000000000082 t php_stream_memory_read
00000000002b8ea0 0000000000000082 T zend_file_handle_dtor
0000000000272920 0000000000000082 t zend_mm_size
0000000000299c70 0000000000000082 T zend_stack_push
00000000001a1080 0000000000000082 t zim_spl_SplFileObject_flock
00000000001a1110 0000000000000082 t zim_spl_SplFileObject_fstat
0000000000313100 0000000000000083 t ZEND_GET_CLASS_SPEC_UNUSED_UNUSED_HANDLER
0000000000291380 0000000000000083 t add_function_array
00000000001a18c0 0000000000000083 t spl_filesystem_file_rewind
000000000022f210 0000000000000083 t zif_stream_context_get_options
00000000001aa1d0 0000000000000083 t zim_spl_SplDoublyLinkedList_isEmpty
00000000002be530 0000000000000084 t Balloc
0000000000254300 0000000000000084 T _php_stream_temp_open
000000000024aa70 0000000000000084 T php_output_start_user
0000000000330110 0000000000000084 t sapi_cli_server_register_variable
000000000019f310 0000000000000084 t spl_filesystem_object_new_ex
00000000002a5af0 0000000000000084 T zend_get_module_version
00000000002bd670 0000000000000084 t zend_implement_throwable
0000000000209e50 0000000000000084 t zif_is_numeric
00000000001a1e10 0000000000000084 t zim_spl_DirectoryIterator_isDot
00000000001a0c80 0000000000000084 t zim_spl_GlobIterator_count
00000000002ebc20 0000000000000085 t ZEND_DECLARE_INHERITED_CLASS_DELAYED_SPEC_CONST_CONST_HANDLER
000000000018ba70 0000000000000085 t autoload_func_info_dtor
000000000022c540 0000000000000085 t decode_context_param
000000000023ff60 0000000000000085 t fill_buffer
000000000026d0c0 0000000000000085 t init_ini_scanner
0000000000292140 0000000000000085 T numeric_compare_function
0000000000221630 0000000000000085 t php_stream_url_wrap_http
00000000002a89b0 0000000000000085 T zend_hash_iterator_pos
000000000028bf90 0000000000000085 t zend_set_timeout_ex
0000000000209ba0 0000000000000085 t zif_strval
000000000030df20 0000000000000086 t ZEND_THROW_SPEC_CV_HANDLER
0000000000277ed0 0000000000000086 t get_next_op.isra.11
000000000025ba10 0000000000000086 T php_stream_xport_shutdown
00000000002a8a40 0000000000000086 T zend_hash_iterator_del
00000000002b0b40 0000000000000086 T zend_register_persistent_resource_ex
0000000000277180 0000000000000086 T zend_strndup
00000000001eb430 0000000000000086 t zif_ceil
00000000001eb4c0 0000000000000086 t zif_floor
0000000000183740 0000000000000086 t zim_reflection_parameter_getDefaultValue
00000000001901f0 0000000000000086 t zim_spl_RegexIterator_setFlags
00000000002de6a0 0000000000000087 t ZEND_UNSET_CV_SPEC_CV_UNUSED_HANDLER
00000000002b6750 0000000000000087 t free_ini_entry
000000000028ab10 0000000000000087 t free_zend_constant
00000000002c3170 0000000000000087 t gc_grow_root_buffer
0000000000253530 0000000000000087 t php_stream_memory_set_option
00000000001ad3e0 0000000000000087 t spl_heap_get_iterator
00000000000c93bb 0000000000000087 t spl_instantiate_arg_ex2
00000000002b9100 0000000000000087 t zend_implement_serializable
000000000028f740 0000000000000087 T zend_llist_add_element
00000000002b53d0 0000000000000087 t zif_func_num_args
000000000019e650 0000000000000087 t zim_spl_SplFileObject_setMaxLineLen
000000000030bc10 0000000000000088 t ZEND_BW_AND_SPEC_CV_CONST_HANDLER
000000000030ba40 0000000000000088 t ZEND_BW_OR_SPEC_CV_CONST_HANDLER
000000000030bde0 0000000000000088 t ZEND_BW_XOR_SPEC_CV_CONST_HANDLER
00000000002d87b0 0000000000000088 t ZEND_MAKE_REF_SPEC_VAR_UNUSED_HANDLER
00000000003093c0 0000000000000088 t ZEND_SL_SPEC_CONST_CV_HANDLER
00000000003094f0 0000000000000088 t ZEND_SL_SPEC_CV_CONST_HANDLER
00000000003096d0 0000000000000088 t ZEND_SR_SPEC_CONST_CV_HANDLER
0000000000309800 0000000000000088 t ZEND_SR_SPEC_CV_CONST_HANDLER
0000000000277dc0 0000000000000088 t zend_adjust_for_fetch_type.isra.9
00000000002d4120 0000000000000088 t zend_check_trait_usage
00000000002c6930 0000000000000088 T zend_interned_string_find_permanent
000000000028f7d0 0000000000000088 T zend_llist_prepend_element
000000000024e3b0 0000000000000088 t zif_output_add_rewrite_var
0000000000183390 0000000000000088 t zim_reflection_generator_getExecutingFile
000000000014d130 0000000000000089 T php_pcre2_jit_free_unused_memory
00000000001a9b80 0000000000000089 t spl_ptr_llist_pop
00000000002b0ca0 0000000000000089 t zm_startup_core
0000000000234240 000000000000008a t OnUpdateErrorLog
00000000001b0130 000000000000008a t php_array_data_compare
000000000029b130 000000000000008a t php_auto_globals_create_globals
00000000001c7980 000000000000008a T php_call_shutdown_functions
00000000002d0800 000000000000008a T zend_check_private
0000000000282760 000000000000008a t zend_compile_unary_op
00000000001a63e0 000000000000008a t zim_spl_SplFileInfo___construct
00000000000ec390 000000000000008b t add_error
00000000000ec420 000000000000008b t add_warning
00000000000c965d 000000000000008b t object_common1.isra.3
0000000000193200 000000000000008b t spl_recursive_it_get_iterator
00000000000ec4b0 000000000000008b t timelib_skip_day_suffix
0000000000278900 000000000000008b t zend_oparray_context_end
000000000019afb0 000000000000008b t zim_spl_Array_count
00000000000dca8e 000000000000008c t ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_CONST_CV_HANDLER
00000000000df2b0 000000000000008c t date_object_clone_period
0000000000240160 000000000000008c t next_line
00000000000e54b0 000000000000008c t php_date_sub.isra.22
000000000025b760 000000000000008c T php_stream_xport_crypto_enable
00000000002d7da0 000000000000008c T smart_str_realloc
0000000000281d70 000000000000008c t zend_compile_func_get_class
00000000002b19b0 000000000000008c t zif_extension_loaded
0000000000176f80 000000000000008c t zif_pcntl_async_signals
000000000022ea60 000000000000008c t zif_stream_get_transports
000000000022eaf0 000000000000008c t zif_stream_get_wrappers
0000000000310e20 000000000000008d t ZEND_UNSET_OBJ_SPEC_CV_CONST_HANDLER
00000000002b1400 000000000000008d t add_constant_info
00000000000df470 000000000000008d t date_object_clone_timezone
000000000011b150 000000000000008d T php_pcre2_match_context_create
00000000002296f0 000000000000008d t strfilter_rot13_filter
00000000002295d0 000000000000008d t strfilter_tolower_filter
0000000000229660 000000000000008d t strfilter_toupper_filter
0000000000173f00 000000000000008d t yydestruct.isra.0
00000000002af700 000000000000008d T zend_hash_get_current_key_ex
00000000000e4cb0 000000000000008d t zim_DatePeriod___set_state
0000000000190280 000000000000008d t zim_spl_RegexIterator_setPregFlags
000000000030bca0 000000000000008e t ZEND_BW_AND_SPEC_CV_TMPVAR_HANDLER
000000000030bad0 000000000000008e t ZEND_BW_OR_SPEC_CV_TMPVAR_HANDLER
000000000030be70 000000000000008e t ZEND_BW_XOR_SPEC_CV_TMPVAR_HANDLER
00000000002df250 000000000000008e t ZEND_GET_CLASS_SPEC_TMP_UNUSED_HANDLER
00000000002aeeb0 000000000000008e T _zend_hash_find_known_hash
00000000000dc884 000000000000008e t make_real_object_rw
00000000001a4020 000000000000008e t spl_filesystem_object_get_pathname
00000000001ac9a0 000000000000008e t spl_pqueue_get_iterator
00000000002cd850 000000000000008e T zend_ast_create_list_0
00000000002914f0 000000000000008e T zend_atoi
00000000002c8390 000000000000008e T zend_generator_check_placeholder_frame
00000000001d22a0 000000000000008e T zif_feof
0000000000198260 000000000000008e t zif_iterator_count
000000000022f720 000000000000008e t zif_stream_context_set_default
000000000025ab50 000000000000008e t zif_stream_wrapper_unregister
0000000000183e90 000000000000008e t zim_reflection_function_getClosure
0000000000198f30 000000000000008e t zim_spl_Array_setIteratorClass
00000000001a9d90 000000000000008e t zim_spl_SplDoublyLinkedList_current
0000000000161470 000000000000008f t _pcre2_ord2utf_8
00000000002509e0 000000000000008f T _php_stream_puts
0000000000246d80 000000000000008f T _php_stream_sock_open_host
00000000000e46f0 000000000000008f t date_object_compare_date
0000000000212290 000000000000008f T php_var_export
00000000002d7d10 000000000000008f T smart_str_erealloc
0000000000199830 000000000000008f t spl_array_get_iterator
00000000001a0d10 000000000000008f t spl_filesystem_dir_get_iterator
0000000000229540 000000000000008f t strfilter_strip_tags_filter
00000000001c5970 000000000000008f t user_tick_function_compare
000000000026d180 000000000000008f t zend_ini_open_file_for_scanning
000000000029bb00 000000000000008f T zend_print_zval_r
00000000000cc929 000000000000008f T zend_wrong_parameters_none_error
000000000069e240 0000000000000090 d arginfo_date_time_set
00000000006b84e0 0000000000000090 d arginfo_dns_get_record
00000000006b7620 0000000000000090 d arginfo_fgetcsv
00000000006b8100 0000000000000090 d arginfo_file_get_contents
00000000006b76c0 0000000000000090 d arginfo_fputcsv
00000000006b6b00 0000000000000090 d arginfo_fsockopen
00000000006b6120 0000000000000090 d arginfo_levenshtein
00000000006b5f00 0000000000000090 d arginfo_mail
00000000006b6a60 0000000000000090 d arginfo_pfsockopen
00000000006a9060 0000000000000090 d arginfo_preg_match
00000000006a8fc0 0000000000000090 d arginfo_preg_match_all
00000000006a8f20 0000000000000090 d arginfo_preg_replace
00000000006a8e80 0000000000000090 d arginfo_preg_replace_callback
00000000006ad620 0000000000000090 d arginfo_rec_regex_it___construct
00000000006ad8c0 0000000000000090 d arginfo_regex_it___construct
00000000006b4500 0000000000000090 d arginfo_stream_select
00000000006b4980 0000000000000090 d arginfo_stream_socket_server
00000000006b2700 0000000000000090 d arginfo_substr_compare
000000000072a220 0000000000000090 B file_globals
000000000023c540 0000000000000090 t php_ini_displayer_cb
00000000001f1980 0000000000000090 t php_pack_parse_double
000000000018e410 0000000000000090 t spl_register_interface
000000000010b9b0 0000000000000090 t timelib_get_unsigned_nr
0000000000292e80 0000000000000090 T zend_binary_strcasecmp_l
0000000000281840 0000000000000090 t zend_compile_func_typecheck
00000000000d90ee 0000000000000091 t ZEND_SEND_VAR_EX_SPEC_CV_QUICK_HANDLER
0000000000110a50 0000000000000091 t add_list_to_class.constprop.4
000000000025ad00 0000000000000091 T php_stream_xport_register
0000000000238710 0000000000000091 t strx_printv
000000000010a1b0 0000000000000091 t timelib_dump_rel_time
0000000000291580 0000000000000091 T zend_atol
00000000001d2d90 0000000000000091 T zif_fflush
00000000002307c0 0000000000000091 t zif_stream_supports_lock
0000000000310eb0 0000000000000092 t ZEND_UNSET_OBJ_SPEC_CV_TMPVAR_HANDLER
00000000002401f0 0000000000000092 t php_ap_memstr
0000000000203550 0000000000000092 T php_stripslashes
000000000023d8f0 0000000000000092 t sapi_header_add_op
000000000018e630 0000000000000092 t spl_add_class_name
00000000000ecb60 0000000000000092 t timelib_get_unsigned_nr
00000000002c7d90 0000000000000092 t zend_generator_get_iterator
000000000028f860 0000000000000092 T zend_llist_del_element
000000000027d180 0000000000000092 T zend_set_function_arg_flags
00000000002c74d0 0000000000000092 t zend_signal_init
00000000002cffc0 0000000000000092 T zend_std_get_closure
00000000002a70c0 0000000000000092 T zend_update_static_property
0000000000185500 0000000000000092 t zim_reflection_class_getModifiers
0000000000185900 0000000000000092 t zim_reflection_class_isAnonymous
0000000000185a40 0000000000000092 t zim_reflection_class_isInternal
00000000001859a0 0000000000000092 t zim_reflection_class_isUserDefined
00000000001850c0 0000000000000092 t zim_reflection_extension_isPersistent
0000000000185020 0000000000000092 t zim_reflection_extension_isTemporary
0000000000186010 0000000000000092 t zim_reflection_function_hasReturnType
0000000000186d60 0000000000000092 t zim_reflection_function_isClosure
0000000000186cc0 0000000000000092 t zim_reflection_function_isInternal
0000000000186c20 0000000000000092 t zim_reflection_function_isUserDefined
0000000000185e20 0000000000000092 t zim_reflection_method_getModifiers
0000000000185ec0 0000000000000092 t zim_reflection_method_isDestructor
0000000000186410 0000000000000092 t zim_reflection_parameter_isOptional
00000000001852a0 0000000000000092 t zim_reflection_property_getModifiers
00000000001862d0 0000000000000092 t zim_reflection_type_allowsNull
00000000001aa260 0000000000000092 t zim_spl_SplDoublyLinkedList_offsetExists
00000000001c15c0 0000000000000092 t zm_info_basic
0000000000310ff0 0000000000000093 t ZEND_SEND_USER_SPEC_CONST_HANDLER
0000000000247f40 0000000000000093 T php_output_handler_started
000000000011b0b0 0000000000000093 T php_pcre2_compile_context_create
0000000000256710 0000000000000093 t php_plain_files_rmdir
00000000002796c0 0000000000000093 t zend_add_class_name_literal
00000000002796c0 0000000000000093 t zend_add_func_name_literal
00000000000d395b 0000000000000093 t zend_ast_export_name
00000000002c77c0 0000000000000093 t zend_generator_throw_exception
00000000002b74e0 0000000000000093 T zend_ini_color_displayer_cb
00000000002c2810 0000000000000093 T zend_oct_strtod
00000000001bc110 0000000000000093 t zif_array_key_last
00000000001934a0 0000000000000093 t zim_spl_NoRewindIterator_next
00000000000ce066 0000000000000094 t zend_ast_export_indent
000000000024c5d0 0000000000000094 t zif_ob_clean
000000000024c530 0000000000000094 t zif_ob_flush
00000000002ebcb0 0000000000000095 t ZEND_DECLARE_ANON_INHERITED_CLASS_SPEC_CONST_CONST_HANDLER
00000000000e04b0 0000000000000095 t date_object_get_properties_timezone
0000000000313190 0000000000000095 t init_func_run_time_cache.isra.14
00000000001f1860 0000000000000095 t php_pack_copy_double
00000000001242e0 0000000000000095 t sljit_emit_op_custom
00000000001aade0 0000000000000095 t spl_dllist_object_get_gc
000000000027ed60 0000000000000095 t zend_compile_const_expr
00000000002b0530 0000000000000095 T zend_list_insert
00000000000ccdc3 0000000000000095 T zend_wrong_parameter_class_exception
00000000002c9510 0000000000000095 t zim_Generator_next
00000000001a8a20 0000000000000095 t zim_spl_SplObjectStorage_attach
00000000001a7070 0000000000000095 t zim_spl_SplObjectStorage_setInfo
0000000000233970 0000000000000096 t OnSetLogFilter
0000000000302350 0000000000000096 t ZEND_FETCH_CLASS_SPEC_UNUSED_CV_HANDLER
00000000002f01b0 0000000000000096 t ZEND_PRE_DEC_SPEC_VAR_RETVAL_UNUSED_HANDLER
00000000002efd60 0000000000000096 t ZEND_PRE_INC_SPEC_VAR_RETVAL_UNUSED_HANDLER
00000000003ea340 0000000000000096 r escapes
0000000000335650 0000000000000096 t set_ps_title
0000000000192300 0000000000000096 t spl_dual_it_get_method
0000000000283110 0000000000000096 t zend_compile_include_or_eval
000000000027c4f0 0000000000000096 T zend_get_call_op
00000000002b5820 0000000000000096 t zif_get_called_class
00000000000da45e 0000000000000097 t ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_CONST_TMPVAR_HANDLER
00000000002e20a0 0000000000000097 t ZEND_UNSET_OBJ_SPEC_VAR_CONST_HANDLER
0000000000278bc0 0000000000000097 t init_compiler
00000000002a5780 0000000000000097 T zend_fcall_info_argp
00000000002af790 0000000000000097 T zend_hash_get_current_key_zval_ex
00000000002b09a0 0000000000000097 T zend_register_list_destructors_ex
00000000000cce58 0000000000000097 T zend_wrong_callback_error
00000000003357f0 0000000000000097 t zif_cli_set_process_title
00000000000dc32c 0000000000000098 t ZEND_UNSET_STATIC_PROP_SPEC_TMPVAR_UNUSED_HANDLER
0000000000250dc0 0000000000000098 T _php_stream_set_option
0000000000174a80 0000000000000098 T php_json_parser_init_ex
00000000001d3860 0000000000000098 T zif_fpassthru
00000000001d2ed0 0000000000000098 T zif_ftell
00000000001d2e30 0000000000000098 T zif_rewind
00000000002d9860 0000000000000099 t ZEND_SEND_VAR_EX_SPEC_VAR_HANDLER
00000000002eef10 0000000000000099 t ZEND_THROW_SPEC_VAR_HANDLER
0000000000254410 0000000000000099 T php_stream_filter_register_factory
000000000025b6c0 0000000000000099 T php_stream_xport_crypto_setup
00000000002cad60 0000000000000099 T virtual_cwd_startup
00000000002c9650 0000000000000099 t zend_generator_iterator_valid
0000000000272040 0000000000000099 t zend_mm_mmap
000000000018f5b0 0000000000000099 t zim_spl_AppendIterator_getArrayIterator
00000000000e4190 000000000000009a t OnUpdate_date_timezone
00000000002d8a10 000000000000009a t ZEND_GET_CALLED_CLASS_SPEC_UNUSED_UNUSED_HANDLER
00000000002d8b90 000000000000009a t ZEND_MAKE_REF_SPEC_CV_UNUSED_HANDLER
00000000002739e0 000000000000009a T _zend_mm_alloc
0000000000273a80 000000000000009a T _zend_mm_free
000000000018f650 000000000000009a t spl_recursive_it_dtor
00000000002a81c0 000000000000009a t zend_hash_packed_grow
00000000002b1a40 000000000000009a t zif_get_loaded_extensions
00000000001c4af0 000000000000009a t zif_ini_restore
0000000000200f40 000000000000009a t zif_ord
00000000002b35f0 000000000000009a t zif_strlen
00000000000e66d0 000000000000009a t zim_DateInterval___set_state
000000000017bc10 000000000000009a t zim_reflection_class_inNamespace
0000000000183f20 000000000000009a t zim_reflection_function_getClosureThis
0000000000184dc0 000000000000009a t zim_reflection_named_type_getName
00000000001866d0 000000000000009a t zim_reflection_parameter_allowsNull
0000000000186590 000000000000009a t zim_reflection_parameter_canBePassedByValue
00000000001868b0 000000000000009a t zim_reflection_parameter_hasType
0000000000186810 000000000000009a t zim_reflection_parameter_isArray
0000000000186770 000000000000009a t zim_reflection_parameter_isCallable
0000000000186630 000000000000009a t zim_reflection_parameter_isPassedByReference
0000000000186370 000000000000009a t zim_reflection_parameter_isVariadic
0000000000184e60 000000000000009a t zim_reflection_type___toString
0000000000186230 000000000000009a t zim_reflection_type_isBuiltin
0000000000193ad0 000000000000009a t zim_spl_RegexIterator_getMode
00000000001ac350 000000000000009a t zim_spl_SplHeap_extract
0000000000307120 000000000000009b t ZEND_ECHO_SPEC_CV_HANDLER
0000000000256990 000000000000009b T _php_stream_fopen_from_fd
00000000001a9350 000000000000009b t spl_object_storage_contains
00000000002a8580 000000000000009b T zend_hash_real_init_mixed
0000000000193740 000000000000009b t zim_spl_CachingIterator_getFlags
0000000000193a30 000000000000009b t zim_spl_RegexIterator_getFlags
000000000011b6e0 000000000000009c t more_workspace
000000000024ab00 000000000000009c T php_output_start_internal
0000000000252e90 000000000000009c t php_stream_mode_sanitize_fdopen_fopencookie
000000000025af70 000000000000009c T php_stream_xport_listen
00000000002816f0 000000000000009c t zend_compile_simple_var
000000000029b1e0 000000000000009c t zend_fopen_wrapper
000000000028aba0 000000000000009c t zend_get_special_constant
00000000002adb00 000000000000009c T zend_hash_copy
00000000001900a0 000000000000009c t zim_spl_RecursiveIteratorIterator_setMaxDepth
00000000002f8ab0 000000000000009d t ZEND_FETCH_LIST_W_SPEC_VAR_TMPVAR_HANDLER
0000000000310f50 000000000000009d t ZEND_UNSET_OBJ_SPEC_CV_CV_HANDLER
00000000000c9bec 000000000000009d t get_safe_charset_hint
0000000000247210 000000000000009d T php_get_temporary_directory
0000000000247fe0 000000000000009d T php_output_handler_conflict
00000000003135f0 000000000000009e t ZEND_FE_RESET_R_SPEC_CONST_HANDLER
00000000002f04b0 000000000000009e t ZEND_PRE_DEC_SPEC_CV_RETVAL_USED_HANDLER
00000000002f0060 000000000000009e t ZEND_PRE_INC_SPEC_CV_RETVAL_USED_HANDLER
0000000000309580 000000000000009e t ZEND_SL_SPEC_CV_TMPVAR_HANDLER
0000000000309450 000000000000009e t ZEND_SL_SPEC_TMPVAR_CV_HANDLER
0000000000309890 000000000000009e t ZEND_SR_SPEC_CV_TMPVAR_HANDLER
0000000000309760 000000000000009e t ZEND_SR_SPEC_TMPVAR_CV_HANDLER
0000000000292370 000000000000009e T instanceof_function_ex
00000000002cce00 000000000000009e T zend_ast_create_znode
00000000002ccff0 000000000000009e T zend_ast_create_zval
00000000002cd140 000000000000009e T zend_ast_create_zval_from_long
00000000002ccea0 000000000000009e T zend_ast_create_zval_with_lineno
00000000002c49d0 000000000000009e T zend_get_closure_invoke_method
00000000002aee10 000000000000009e T zend_hash_find
00000000002b0310 000000000000009e t zend_resource_dtor
00000000002a7790 000000000000009e T zend_restore_error_handling
0000000000299e20 000000000000009e T zend_stack_apply_with_argument
00000000000e58b0 000000000000009e t zif_date_timestamp_set
00000000000e2190 000000000000009e t zif_timezone_name_get
00000000000e5950 000000000000009e t zim_DateTimeImmutable_setTimestamp
00000000001936a0 000000000000009e t zim_spl_CachingIterator_count
00000000001abd70 000000000000009e t zim_spl_SplHeap_current
00000000000dba93 000000000000009f t ZEND_IS_IDENTICAL_SPEC_CONST_CONST_HANDLER
00000000000dcb88 000000000000009f t ZEND_UNSET_STATIC_PROP_SPEC_CV_CONST_HANDLER
00000000002423d0 000000000000009f t insertionsort
00000000000c9485 000000000000009f t parse_iv2
00000000001f77e0 000000000000009f t php_needle_char
0000000000248310 000000000000009f T php_output_handler_alias_register
0000000000248080 000000000000009f T php_output_handler_conflict_register
00000000002563a0 000000000000009f t php_plain_files_unlink
00000000001ad080 000000000000009f t spl_ptr_heap_cmp_cb_helper.constprop.15
0000000000278e20 000000000000009f t zend_add_literal
00000000002c6c70 000000000000009f T zend_signal_handler_unblock
00000000001845a0 000000000000009f t zim_reflection_class_getDefaultProperties
00000000001a84b0 000000000000009f t zim_spl_SplObjectStorage_detach
00000000002ff090 00000000000000a0 t ZEND_ASSIGN_OBJ_SPEC_UNUSED_CV_OP_DATA_CONST_HANDLER
000000000029e1e0 00000000000000a0 T add_assoc_null_ex
000000000029e7b0 00000000000000a0 T add_assoc_zval_ex
00000000000e0410 00000000000000a0 t date_object_get_debug_info_timezone
00000000006a9240 00000000000000a0 d json_functions
00000000006aa180 00000000000000a0 d reflection_type_functions
0000000000183890 00000000000000a0 t reflection_type_name.isra.69
00000000001085a0 00000000000000a0 t seek_to_tz_position
00000000006ad580 00000000000000a0 d spl_funcs_RecursiveRegexIterator
000000000027aa90 00000000000000a0 T zend_build_delayed_early_binding_list
0000000000281940 00000000000000a0 t zend_compile_init_user_func.part.41
0000000000707960 00000000000000a0 d zend_funcs_arrayaccess
00000000002c95b0 00000000000000a0 t zend_generator_iterator_get_data
000000000029c560 00000000000000a0 T zend_make_compiled_string_description
0000000000299ba0 00000000000000a0 T zend_ptr_stack_clean
00000000002b28f0 00000000000000a0 t zif_restore_exception_handler
00000000001a9530 00000000000000a0 t zim_spl_SplObjectStorage_contains
00000000002a2150 00000000000000a1 T zend_class_implements
00000000002a78b0 00000000000000a1 T zend_resolve_method_name
00000000002e2620 00000000000000a2 t ZEND_ECHO_SPEC_TMPVAR_HANDLER
00000000000dbb32 00000000000000a2 t ZEND_IS_NOT_IDENTICAL_SPEC_CONST_CONST_HANDLER
0000000000245f80 00000000000000a2 T php_network_get_peer_name
0000000000246030 00000000000000a2 T php_network_get_sock_name
0000000000198e40 00000000000000a2 t spl_array_next_ex
00000000001a8400 00000000000000a2 t spl_object_storage_detach
00000000000cbb3d 00000000000000a2 t zend_mm_safe_error.isra.10
00000000001c4b90 00000000000000a2 t zif_restore_include_path
00000000002b0e30 00000000000000a2 t zif_zend_version
00000000001857a0 00000000000000a2 t zim_reflection_class_getEndLine
0000000000184f00 00000000000000a2 t zim_reflection_class_getExtension
0000000000185850 00000000000000a2 t zim_reflection_class_getStartLine
0000000000186a50 00000000000000a2 t zim_reflection_function_getEndLine
0000000000186b00 00000000000000a2 t zim_reflection_function_getStartLine
00000000001a7110 00000000000000a2 t zim_spl_SplObjectStorage_count
00000000002f0550 00000000000000a3 t ZEND_POST_DEC_SPEC_CV_HANDLER
00000000002f0100 00000000000000a3 t ZEND_POST_INC_SPEC_CV_HANDLER
000000000018e4a0 00000000000000a3 T spl_register_std_class
00000000002af180 00000000000000a3 T zend_hash_exists
0000000000278cb0 00000000000000a3 T zend_set_compiled_filename
000000000029bef0 00000000000000a3 t zend_shutdown
00000000000ccc71 00000000000000a3 T zend_wrong_parameter_type_exception
00000000001ebe60 00000000000000a3 t zif_asinh
00000000001ebaa0 00000000000000a3 t zif_atan
00000000001eb7e0 00000000000000a3 t zif_cos
00000000001eb730 00000000000000a3 t zif_sin
00000000001eb890 00000000000000a3 t zif_tan
00000000001ebdb0 00000000000000a3 t zif_tanh
0000000000193310 00000000000000a3 t zim_spl_AppendIterator_getIteratorIndex
00000000000d52c5 00000000000000a4 t ZEND_DO_UCALL_SPEC_RETVAL_UNUSED_HANDLER
0000000000253250 00000000000000a4 T _php_stream_open_wrapper_as_file
0000000000253cb0 00000000000000a4 T _php_stream_temp_create_ex
00000000002a8260 00000000000000a4 T _zend_hash_init
00000000001656d0 00000000000000a4 T php_pcre2_substring_copy_bynumber
0000000000182de0 00000000000000a4 t reflection_free_objects_storage
00000000001271e0 00000000000000a4 t sljit_get_local_base.constprop.62
00000000003f0500 00000000000000a5 r _pcre2_OP_lengths_8
00000000003eb040 00000000000000a5 r coptable
00000000000e52a0 00000000000000a5 t php_date_timezone_set.isra.24
00000000003eaf80 00000000000000a5 r poptable
00000000001c3e70 00000000000000a5 t user_shutdown_function_call
00000000002900f0 00000000000000a5 T zend_cleanup_internal_class_data
0000000000277710 00000000000000a5 t zend_is_reserved_class_name
000000000028bda0 00000000000000a5 T zend_register_stringl_constant
0000000000184bf0 00000000000000a5 t zim_reflection_class_getStaticProperties
00000000001c8ee0 00000000000000a6 t browscap_zval_copy_ctor
00000000000e4230 00000000000000a6 t date_period_read_property
00000000001ab5c0 00000000000000a6 t spl_dllist_get_iterator
000000000023fde0 00000000000000a6 t substring_conf
00000000002ccf40 00000000000000a6 T zend_ast_create_zval_ex
00000000002c28b0 00000000000000a6 T zend_bin_strtod
00000000002861f0 00000000000000a6 t zend_compile_pre_incdec
00000000000cba4f 00000000000000a6 t zend_ini_copy_typed_value.constprop.3
00000000000e5710 00000000000000a6 t zif_date_add
00000000000e5540 00000000000000a6 t zif_date_sub
00000000000e5350 00000000000000a6 t zif_date_timezone_set
00000000001c58c0 00000000000000a6 t zif_unregister_tick_function
00000000000e57c0 00000000000000a6 t zim_DateTimeImmutable_add
00000000000e5400 00000000000000a6 t zim_DateTimeImmutable_setTimezone
00000000000e55f0 00000000000000a6 t zim_DateTimeImmutable_sub
0000000000199b20 00000000000000a6 t zim_spl_ArrayIterator___construct
00000000002e88c0 00000000000000a7 t ZEND_BW_AND_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002e8790 00000000000000a7 t ZEND_BW_OR_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002e89f0 00000000000000a7 t ZEND_BW_XOR_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002fbc30 00000000000000a7 t ZEND_FETCH_OBJ_IS_SPEC_UNUSED_CV_HANDLER
00000000002da260 00000000000000a7 t ZEND_FETCH_OBJ_IS_SPEC_UNUSED_TMPVAR_HANDLER
00000000002e5e20 00000000000000a7 t ZEND_MOD_SPEC_CONST_TMPVAR_HANDLER
00000000002e5ed0 00000000000000a7 t ZEND_MOD_SPEC_TMPVAR_CONST_HANDLER
00000000002e6160 00000000000000a7 t ZEND_SL_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002e6310 00000000000000a7 t ZEND_SR_SPEC_TMPVAR_TMPVAR_HANDLER
0000000000243290 00000000000000a7 t php_auto_globals_create_cookie
0000000000243340 00000000000000a7 t php_auto_globals_create_get
0000000000331ba0 00000000000000a7 t php_cli_server_client_read_request_on_header_value
00000000000caf13 00000000000000a7 T php_error_docref1
0000000000122be0 00000000000000a7 T php_pcre2_get_error_message
00000000001a1ba0 00000000000000a7 t spl_filesystem_tree_it_move_forward
00000000001a8350 00000000000000a7 t spl_object_storage_get_hash.part.2
0000000000321b80 00000000000000a7 T zend_free_compiled_variables
000000000026d010 00000000000000a7 t zend_ini_copy_typed_value.part.0
000000000028fa60 00000000000000a7 T zend_llist_apply_with_del
00000000002a6990 00000000000000a7 T zend_update_property_ex
0000000000183fc0 00000000000000a7 t zim_reflection_class_isIterable
00000000001a9ed0 00000000000000a7 t zim_spl_SplDoublyLinkedList_bottom
00000000001a9e20 00000000000000a7 t zim_spl_SplDoublyLinkedList_top
000000000030bd30 00000000000000a8 t ZEND_BW_AND_SPEC_CV_CV_HANDLER
000000000030bb60 00000000000000a8 t ZEND_BW_OR_SPEC_CV_CV_HANDLER
000000000030bf00 00000000000000a8 t ZEND_BW_XOR_SPEC_CV_CV_HANDLER
0000000000309620 00000000000000a8 t ZEND_SL_SPEC_CV_CV_HANDLER
0000000000309930 00000000000000a8 t ZEND_SR_SPEC_CV_CV_HANDLER
00000000002a8380 00000000000000a8 T _zend_new_array
000000000029e280 00000000000000a8 T add_assoc_bool_ex
000000000029e3e0 00000000000000a8 T add_assoc_double_ex
000000000029e130 00000000000000a8 T add_assoc_long_ex
000000000029e330 00000000000000a8 T add_assoc_resource_ex
000000000069e9c0 00000000000000a8 d arginfo_date_sunrise
000000000069e900 00000000000000a8 d arginfo_date_sunset
0000000000707c80 00000000000000a8 d arginfo_error_exception___construct
000000000069ec80 00000000000000a8 d arginfo_gmmktime
000000000069ed40 00000000000000a8 d arginfo_mktime
00000000006b4e20 00000000000000a8 d arginfo_proc_open
00000000006b4a20 00000000000000a8 d arginfo_stream_socket_client
0000000000723740 00000000000000a8 d basic_functions_module
0000000000723d60 00000000000000a8 d cli_server_module_entry
0000000000723020 00000000000000a8 d date_module_entry
00000000002c3850 00000000000000a8 T gc_enable
00000000006d2ee0 00000000000000a8 d ht_bucket_html5_EFB
0000000000723440 00000000000000a8 d json_module_entry
0000000000723500 00000000000000a8 d pcntl_module_entry
0000000000723380 00000000000000a8 d pcre_module_entry
00000000003ea100 00000000000000a8 r posix_class_maps
00000000007235c0 00000000000000a8 d reflection_module_entry
0000000000723680 00000000000000a8 d spl_module_entry
000000000028ece0 00000000000000a8 T zend_attach_symbol_table
00000000007239a0 00000000000000a8 d zend_builtin_module
00000000000ccfe7 00000000000000a8 t zend_error_helper
00000000000ccfe7 00000000000000a8 t zend_error_va
0000000000278850 00000000000000a8 t zend_oparray_context_begin
000000000022b5a0 00000000000000a8 t zif_proc_close
000000000018eca0 00000000000000a8 t zim_spl_RecursiveIteratorIterator_current
0000000000292930 00000000000000a9 T boolean_not_function
000000000029db90 00000000000000a9 T object_properties_init
00000000001afee0 00000000000000a9 t php_array_key_compare_numeric
000000000023f7d0 00000000000000a9 T sapi_getenv
000000000023d840 00000000000000a9 t sapi_remove_header.constprop.0
00000000001e7530 00000000000000a9 t zif_phpinfo
000000000018f450 00000000000000a9 t zim_spl_RecursiveCachingIterator_getChildren
000000000019e4d0 00000000000000a9 t zim_spl_SplFileInfo_setFileClass
000000000019e580 00000000000000a9 t zim_spl_SplFileInfo_setInfoClass
00000000001aef50 00000000000000a9 t zim_spl_SplFixedArray_offsetUnset
000000000018ef80 00000000000000a9 t zim_spl_dual_it_current
000000000018eed0 00000000000000a9 t zim_spl_dual_it_key
00000000002df2e0 00000000000000aa t ZEND_GET_CLASS_SPEC_VAR_UNUSED_HANDLER
00000000002bda00 00000000000000aa T zend_clear_exception
00000000002a75e0 00000000000000aa T zend_read_static_property
00000000000e50f0 00000000000000aa t zif_date_modify
000000000022f670 00000000000000aa t zif_stream_context_get_default
00000000000e1a10 00000000000000aa t zim_DatePeriod_getStartDate
00000000002c9460 00000000000000aa t zim_Generator_rewind
0000000000185f60 00000000000000aa t zim_reflection_method_isConstructor
000000000018f500 00000000000000aa t zim_spl_NoRewindIterator_current
000000000018ed50 00000000000000aa t zim_spl_RecursiveIteratorIterator_getInnerIterator
0000000000190140 00000000000000aa t zim_spl_RegexIterator_setMode
00000000001aeea0 00000000000000aa t zim_spl_SplFixedArray_offsetExists
0000000000228760 00000000000000ab t consumed_filter_filter
0000000000108860 00000000000000ab t timelib_tzinfo_dtor
00000000000ebe40 00000000000000ab t timelib_valid_date
000000000027de90 00000000000000ab t zend_compile_implements
000000000028e760 00000000000000ab T zend_fetch_class_by_name
00000000002d3ea0 00000000000000ab T zend_objects_store_put
00000000002a7440 00000000000000ab T zend_read_property_ex
00000000001eb9f0 00000000000000ab t zif_acos
00000000001ebf10 00000000000000ab t zif_acosh
00000000001eb940 00000000000000ab t zif_asin
00000000001ebfc0 00000000000000ab t zif_atanh
00000000001ebd00 00000000000000ab t zif_cosh
00000000001ec300 00000000000000ab t zif_exp
00000000001ec3b0 00000000000000ab t zif_expm1
00000000001ec710 00000000000000ab t zif_log10
00000000001ec460 00000000000000ab t zif_log1p
00000000001ebc50 00000000000000ab t zif_sinh
000000000019d540 00000000000000ab t zim_spl_Array_offsetGet
0000000000291ee0 00000000000000ac T multi_convert_to_double_ex
00000000002936a0 00000000000000ac T multi_convert_to_string_ex
00000000001796f0 00000000000000ac t php_signal4
00000000002544d0 00000000000000ac T php_stream_filter_register_factory_volatile
0000000000109e10 00000000000000ac t timelib_strncasecmp
000000000029b430 00000000000000ac T zend_spprintf
000000000029b4e0 00000000000000ac T zend_spprintf_unchecked
00000000000e01c0 00000000000000ac t zif_timezone_version_get
0000000000183de0 00000000000000ac t zim_reflection_method_getPrototype
0000000000193cc0 00000000000000ac t zim_spl_RecursiveIteratorIterator_callGetChildren
00000000001698a0 00000000000000ac t zm_globals_dtor_pcre
0000000000247ad0 00000000000000ad T php_output_get_contents
00000000002d88a0 00000000000000ad t zend_binary_assign_op_simple_helper_SPEC_CV_CONST
0000000000261510 00000000000000ad T zend_lex_tstring
00000000000d5369 00000000000000ae t ZEND_DO_UCALL_SPEC_RETVAL_USED_HANDLER
000000000025adc0 00000000000000ae T php_stream_xport_bind
00000000002cd090 00000000000000ae T zend_ast_create_zval_from_str
000000000027e6c0 00000000000000ae T zend_binary_op_produces_numeric_string_error
00000000002b8610 00000000000000ae T zend_ts_hash_apply_with_arguments
00000000001ec990 00000000000000ae t zif_deg2rad
00000000001e77b0 00000000000000ae t zif_phpcredits
00000000001eca40 00000000000000ae t zif_rad2deg
00000000002dec40 00000000000000af t ZEND_COALESCE_SPEC_TMPVAR_HANDLER
000000000031d700 00000000000000af t ZEND_INIT_DYNAMIC_CALL_SPEC_CV_HANDLER
00000000001adc30 00000000000000af t spl_fixedarray_object_count_elements
0000000000281790 00000000000000af t zend_compile_func_strlen
00000000002b7840 00000000000000af t zend_sort_5
00000000000ccd14 00000000000000af T zend_wrong_parameter_class_error
00000000002e1df0 00000000000000b0 t ZEND_ASSIGN_OBJ_SPEC_UNUSED_TMPVAR_OP_DATA_CONST_HANDLER
00000000002f4d20 00000000000000b0 t init_opcode_serialiser
00000000001ca810 00000000000000b0 T php_std_date
000000000018b1d0 00000000000000b0 t spl_find_ce_by_name
00000000001ad2e0 00000000000000b0 t spl_ptr_heap_zval_min_cmp
00000000002cbab0 00000000000000b0 T virtual_filepath_ex
00000000003220b0 00000000000000b0 T zend_init_code_execute_data
000000000018f3a0 00000000000000b0 t zim_spl_CachingIterator_getCache
00000000001a7480 00000000000000b0 t zim_spl_MultipleIterator_next
00000000001a73d0 00000000000000b0 t zim_spl_MultipleIterator_rewind
00000000001add10 00000000000000b0 t zim_spl_SplFixedArray___construct
00000000001af060 00000000000000b0 t zim_spl_SplFixedArray_current
0000000000238a40 00000000000000b1 T ap_php_asprintf
00000000002995e0 00000000000000b1 T multi_convert_to_long_ex
00000000001e7280 00000000000000b1 T php_info_print_table_row_ex
000000000020bd40 00000000000000b1 T php_raw_url_decode
000000000019bac0 00000000000000b1 t spl_array_get_properties
000000000010b4a0 00000000000000b1 t timelib_update_from_sse
00000000002cd1e0 00000000000000b1 T zend_ast_create_constant
00000000002ccbd0 00000000000000b1 t zend_ast_tree_size
00000000002d86f0 00000000000000b1 t zend_copy_extra_args
00000000002a58e0 00000000000000b1 T zend_fcall_info_argn
000000000029b610 00000000000000b1 T zend_strpprintf
000000000029b6d0 00000000000000b1 T zend_strpprintf_unchecked
00000000000e51a0 00000000000000b1 t zim_DateTimeImmutable_modify
0000000000179e20 00000000000000b1 t zim_reflection_generator___construct
000000000018ebe0 00000000000000b1 t zim_spl_RecursiveIteratorIterator_callHasChildren
00000000001a9130 00000000000000b1 t zim_spl_SplObjectStorage_addAll
00000000001ac760 00000000000000b1 t zim_spl_SplPriorityQueue_current
0000000000335730 00000000000000b2 t cleanup_ps_args
00000000002533e0 00000000000000b2 t php_stream_memory_seek
00000000002d8030 00000000000000b2 T smart_str_append_printf
000000000029d720 00000000000000b2 T zend_parse_arg_double_weak
00000000002a76d0 00000000000000b2 T zend_replace_error_handling
00000000000d67ab 00000000000000b3 t ZEND_DEFINED_SPEC_CONST_HANDLER
00000000001273f0 00000000000000b3 t sljit_emit_icall.constprop.63
000000000018e770 00000000000000b3 t spl_add_classes
00000000001ad220 00000000000000b3 t spl_ptr_heap_zval_max_cmp
000000000027c220 00000000000000b3 t zend_emit_final_return
00000000002a5820 00000000000000b3 T zend_fcall_info_argv
00000000002d3de0 00000000000000b3 T zend_objects_store_free_object_storage
00000000002a5070 00000000000000b3 T zend_parse_parameters
0000000000299a10 00000000000000b3 T zend_ptr_stack_n_pop
000000000029a0b0 00000000000000b3 T zval_copy_ctor_func
0000000000261dc0 00000000000000b4 T compile_file
000000000028a720 00000000000000b4 t zend_compile_top_stmt
00000000002b4210 00000000000000b4 t zif_defined
00000000000ea590 00000000000000b4 t zim_DateTimeImmutable___set_state
00000000000ea4d0 00000000000000b4 t zim_DateTime___set_state
00000000000dc208 00000000000000b5 t ZEND_UNSET_STATIC_PROP_SPEC_TMPVAR_CONST_HANDLER
0000000000276050 00000000000000b5 T _emalloc
00000000001cfe50 00000000000000b5 t php_fgetcsv_lookup_trailing_spaces.constprop.1
0000000000234560 00000000000000b5 t php_module_shutdown.part.2
0000000000295780 00000000000000b5 T sub_function
00000000002b8930 00000000000000b5 t zend_stream_read
00000000001fd300 00000000000000b5 t zif_strtolower
00000000001fbde0 00000000000000b5 t zif_strtoupper
00000000001c6350 00000000000000b5 t zif_sys_getloadavg
00000000000e5e50 00000000000000b5 t zim_DateTimeZone___set_state
00000000001848f0 00000000000000b5 t zim_reflection_extension_getClassNames
00000000001849b0 00000000000000b5 t zim_reflection_extension_getClasses
0000000000184b30 00000000000000b5 t zim_reflection_extension_getConstants
0000000000184a70 00000000000000b5 t zim_reflection_extension_getINIEntries
00000000001ac3f0 00000000000000b5 t zim_spl_SplHeap_insert
00000000002fe2a0 00000000000000b6 t ZEND_SEND_VAR_EX_SPEC_CV_HANDLER
000000000030d940 00000000000000b6 t ZEND_UNSET_VAR_SPEC_CV_UNUSED_HANDLER
000000000017d5d0 00000000000000b6 t _addmethod_va
0000000000129300 00000000000000b6 t delayed_mem_copy_move
0000000000234360 00000000000000b6 t php_get_display_errors_mode
0000000000170f80 00000000000000b6 T php_json_decode_ex
00000000002a5130 00000000000000b6 T zend_parse_parameters_throw
00000000000dd161 00000000000000b6 t zend_verify_return_error
00000000001b4b30 00000000000000b6 t zif_current
00000000002b54a0 00000000000000b6 t zif_get_class
00000000001981a0 00000000000000b6 t zif_iterator_to_array
000000000022f4a0 00000000000000b6 t zif_stream_context_set_params
00000000000dc6ab 00000000000000b7 t ZEND_GET_TYPE_SPEC_CONST_UNUSED_HANDLER
00000000000cb998 00000000000000b7 t ini_error
00000000001c7a10 00000000000000b7 T php_free_shutdown_functions
0000000000233890 00000000000000b7 T tsrm_strtok_r
00000000002a4fb0 00000000000000b7 T zend_parse_parameters_ex
00000000002f81e0 00000000000000b8 t ZEND_FETCH_DIM_RW_SPEC_VAR_TMPVAR_HANDLER
00000000002f79c0 00000000000000b8 t ZEND_FETCH_DIM_UNSET_SPEC_VAR_TMPVAR_HANDLER
00000000002f8c70 00000000000000b8 t ZEND_FETCH_DIM_W_SPEC_VAR_TMPVAR_HANDLER
0000000000308fe0 00000000000000b8 t ZEND_MOD_SPEC_CONST_CV_HANDLER
0000000000309160 00000000000000b8 t ZEND_MOD_SPEC_CV_CONST_HANDLER
00000000002d81b0 00000000000000b8 T _smart_string_alloc
00000000002d80f0 00000000000000b8 T _smart_string_alloc_persistent
000000000029e490 00000000000000b8 T add_assoc_str_ex
00000000002c33a0 00000000000000b8 t gc_add_garbage
00000000000caca3 00000000000000b8 T php_error_docref0
0000000000221780 00000000000000b8 t php_stream_input_read
000000000041f440 00000000000000b8 r powers.14789
0000000000440ec0 00000000000000b8 r tens
00000000002d8d00 00000000000000b8 t zend_fetch_this_var
00000000000e71d0 00000000000000b8 t zif_date_default_timezone_get
00000000001c32a0 00000000000000b8 t zif_get_current_user
00000000001d21e0 00000000000000b8 t zif_pclose
00000000001d7550 00000000000000b8 t zif_sys_get_temp_dir
00000000001c2e70 00000000000000b8 t zif_usleep
000000000019f4e0 00000000000000b8 t zim_spl_SplFileObject_valid
00000000000d8379 00000000000000b9 t ZEND_SEND_VAR_NO_REF_EX_SPEC_VAR_QUICK_HANDLER
0000000000321850 00000000000000b9 t ZEND_USER_OPCODE_SPEC_HANDLER
0000000000260940 00000000000000b9 t copy_heredoc_label_stack
00000000000ccafa 00000000000000b9 T zend_wrong_parameters_count_exception
000000000019fa20 00000000000000b9 t zim_spl_SplFileObject_getCsvControl
00000000003025d0 00000000000000ba t ZEND_GET_CLASS_SPEC_CV_UNUSED_HANDLER
0000000000276110 00000000000000ba T _efree
00000000001ecaf0 00000000000000ba T _php_math_basetolong
00000000001a9f80 00000000000000ba t spl_dllist_it_helper_move_forward
00000000001a1ae0 00000000000000ba t spl_filesystem_tree_it_rewind
00000000002a8740 00000000000000ba T zend_array_count
000000000027adf0 00000000000000ba t zend_get_class_fetch_type
00000000002cf280 00000000000000ba t zend_std_call_getter
00000000002cf1c0 00000000000000ba t zend_std_call_issetter
00000000002b0ee0 00000000000000ba t zif_gc_disable
00000000002b0fa0 00000000000000ba t zif_gc_enable
00000000000e1ac0 00000000000000ba t zim_DatePeriod_getEndDate
00000000002ebd50 00000000000000bb t ZEND_DECLARE_CONST_SPEC_CONST_CONST_HANDLER
000000000023c730 00000000000000bb T display_ini_entries
000000000023b080 00000000000000bb T php_strip_url_passwd
00000000000e4630 00000000000000bb t zif_date_timezone_get
0000000000209560 00000000000000bb t zif_gettype
0000000000199ef0 00000000000000bb t zim_spl_Array_getArrayCopy
000000000017d510 00000000000000bc t _addmethod
000000000022ce60 00000000000000bc t parse_context_params.isra.4
000000000032d0c0 00000000000000bc t sapi_cli_select.constprop.2
00000000002caf10 00000000000000bc T virtual_getcwd
00000000002d9c70 00000000000000bc t zend_binary_assign_op_simple_helper_SPEC_CV_TMPVAR
0000000000292f10 00000000000000bc T zend_binary_strncasecmp_l
00000000002783b0 00000000000000bc t zend_delayed_compile_end
00000000001ab400 00000000000000bc t zim_spl_SplDoublyLinkedList_setIteratorMode
00000000001a5d80 00000000000000bc t zim_spl_SplFileInfo_getFileInfo
000000000018df10 00000000000000bc t zm_startup_spl
00000000002aff60 00000000000000bd T _zend_handle_numeric_str_ex
0000000000295330 00000000000000bd T add_function
00000000001e6230 00000000000000bd T php_info_print_table_row
00000000001aed70 00000000000000bd t spl_fixedarray_object_unset_dimension
00000000002fcf30 00000000000000bd t zend_binary_assign_op_simple_helper_SPEC_CV_CV
000000000029d990 00000000000000bd T zend_merge_properties
00000000001c54e0 00000000000000bd t zif_getprotobyname
00000000001ec090 00000000000000bd t zif_is_finite
00000000001ec150 00000000000000bd t zif_is_infinite
00000000001ec210 00000000000000bd t zif_is_nan
000000000020bc80 00000000000000bd t zif_rawurlencode
000000000020b830 00000000000000bd t zif_urlencode
000000000018a670 00000000000000bd t zim_reflection_function_getClosureScopeClass
0000000000309220 00000000000000be t ZEND_MOD_SPEC_CV_TMPVAR_HANDLER
00000000003090a0 00000000000000be t ZEND_MOD_SPEC_TMPVAR_CV_HANDLER
000000000023a3e0 00000000000000be T php_sprintf
00000000001adb70 00000000000000be t spl_fixedarray_object_get_properties
00000000000ccbb3 00000000000000be T zend_wrong_parameter_type_error
00000000000e5c50 00000000000000be t zif_date_isodate_set
00000000000e20d0 00000000000000be t zif_date_timestamp_get
00000000001d1ef0 00000000000000be T zif_fclose
0000000000230700 00000000000000be t zif_stream_is_local
00000000000e5d10 00000000000000be t zim_DateTimeImmutable_setISODate
00000000002db330 00000000000000bf t ZEND_ASSIGN_SPEC_CV_TMP_RETVAL_UNUSED_HANDLER
00000000002472b0 00000000000000bf T php_open_temporary_fd_ex
000000000019aef0 00000000000000bf t spl_array_object_count_elements
00000000001aa110 00000000000000bf t spl_dllist_object_count_elements
00000000001ac1f0 00000000000000bf t spl_heap_object_count_elements
000000000029b370 00000000000000bf T zend_vspprintf
00000000002decf0 00000000000000c0 t ZEND_FETCH_CLASS_SPEC_UNUSED_TMPVAR_HANDLER
00000000002e2140 00000000000000c0 t ZEND_UNSET_OBJ_SPEC_VAR_TMPVAR_HANDLER
000000000029f400 00000000000000c0 T add_get_index_stringl
00000000006b68a0 00000000000000c0 d arginfo_setcookie
00000000006b67e0 00000000000000c0 d arginfo_setrawcookie
0000000000705ec0 00000000000000c0 d builtin_types
0000000000708040 00000000000000c0 d closure_functions
000000000069cc00 00000000000000c0 d date_funcs_interval
0000000000165d70 00000000000000c0 T php_pcre2_substring_length_byname
0000000000722440 00000000000000c0 d server_additional_functions
00000000006af820 00000000000000c0 d spl_RecursiveDirectoryIterator_functions
00000000006acb20 00000000000000c0 d spl_funcs_EmptyIterator
00000000001919f0 00000000000000c0 t spl_iterator_to_array_apply
0000000000707ae0 00000000000000c0 d zend_funcs_iterator
00000000001c3620 00000000000000c0 t zif_error_get_last
0000000000170bf0 00000000000000c0 t zif_json_last_error_msg
0000000000184640 00000000000000c0 t zim_reflection_class_hasConstant
00000000001837d0 00000000000000c0 t zim_reflection_class_isInstance
0000000000199a60 00000000000000c0 t zim_spl_Array___construct
000000000019f250 00000000000000c0 t zim_spl_DirectoryIterator_getBasename
00000000001e9730 00000000000000c1 t php_mail_build_headers_elems
00000000002cc6e0 00000000000000c1 T virtual_rmdir
00000000002cc530 00000000000000c1 T virtual_unlink
000000000018ee00 00000000000000c1 t zim_spl_dual_it_getInnerIterator
000000000030efb0 00000000000000c2 t ZEND_ASSIGN_OBJ_SPEC_CV_CV_OP_DATA_CONST_HANDLER
0000000000243960 00000000000000c2 t php_auto_globals_create_env
0000000000197f80 00000000000000c2 t spl_append_it_next
00000000001949a0 00000000000000c2 t spl_dual_it_dtor
00000000002622f0 00000000000000c2 T zend_get_scanned_file_offset
00000000002a8620 00000000000000c2 T zend_hash_to_packed
00000000002a4b50 00000000000000c2 T zend_parse_parameter
00000000002b5300 00000000000000c2 t zif_trigger_error
00000000001856d0 00000000000000c2 t zim_reflection_class_isInstantiable
00000000002fce60 00000000000000c3 t ZEND_FETCH_OBJ_IS_SPEC_CV_CV_HANDLER
0000000000222f80 00000000000000c3 T var_tmp_var
00000000002ae6e0 00000000000000c3 T zend_hash_iterator_pos_ex
00000000002b5750 00000000000000c3 t zif_get_class_vars
00000000001239b0 00000000000000c4 t do_callout
0000000000253680 00000000000000c4 t php_stream_memory_write
00000000001a0310 00000000000000c4 t spl_filesystem_object_free_storage
00000000001a7fa0 00000000000000c4 t spl_object_storage_get_gc
0000000000311090 00000000000000c5 t ZEND_SEND_USER_SPEC_TMP_HANDLER
00000000002d8c30 00000000000000c5 t ZEND_YIELD_FROM_SPEC_CONST_HANDLER
000000000018e550 00000000000000c5 T spl_register_sub_class
00000000002a6ff0 00000000000000c5 T zend_update_static_property_ex
00000000002b0d60 00000000000000c5 t zif_gc_status
000000000024c460 00000000000000c5 t zif_ob_start
00000000001e7940 00000000000000c5 t zif_php_uname
00000000000e1680 00000000000000c5 t zim_DateTimeImmutable_createFromMutable
00000000000e15b0 00000000000000c5 t zim_DateTime_createFromImmutable
0000000000166d10 00000000000000c6 t convert_glob_print_wildcard
000000000025b5f0 00000000000000c6 T php_stream_xport_get_name
000000000020b8f0 00000000000000c6 T php_url_decode
00000000000ec020 00000000000000c6 t timelib_lookup_relunit
00000000002cc7b0 00000000000000c6 T virtual_opendir
0000000000278aa0 00000000000000c6 t zend_file_context_end
00000000002a8ea0 00000000000000c6 T zend_hash_packed_to_hash
00000000002a07e0 00000000000000c6 T zend_unregister_functions
0000000000212b00 00000000000000c6 t zif_memory_get_peak_usage
0000000000212a30 00000000000000c6 t zif_memory_get_usage
000000000017ca20 00000000000000c6 t zim_reflection_generator_getExecutingGenerator
000000000019fe00 00000000000000c6 t zim_spl_SplFileObject_fscanf
00000000002db120 00000000000000c7 t ZEND_ASSIGN_SPEC_CV_CONST_RETVAL_UNUSED_HANDLER
0000000000256a30 00000000000000c7 T _php_stream_fopen_from_file
0000000000236dc0 00000000000000c7 T ap_php_snprintf
00000000001b3b40 00000000000000c7 T php_count_recursive
0000000000192490 00000000000000c7 t spl_recursive_it_valid_ex
00000000002b0bd0 00000000000000c7 T zend_register_persistent_resource
00000000002ff3f0 00000000000000c8 t ZEND_UNSET_OBJ_SPEC_VAR_CV_HANDLER
000000000029eb10 00000000000000c8 T add_index_stringl
000000000029eee0 00000000000000c8 T add_next_index_stringl
000000000023fe90 00000000000000c8 t php_ap_getword_conf
0000000000165600 00000000000000c8 T php_pcre2_substring_length_bynumber
00000000001c2da0 00000000000000c9 t zif_sleep
000000000024e440 00000000000000ca t php_opt_error.isra.0.part.1
00000000001a0580 00000000000000ca t spl_filesystem_object_get_method_check
00000000002a1fa0 00000000000000ca T zend_deactivate_modules
00000000000cca30 00000000000000ca T zend_wrong_parameters_count_error
0000000000184820 00000000000000ca t zim_reflection_extension_info
00000000002d9df0 00000000000000cb t ZEND_FETCH_OBJ_IS_SPEC_CV_TMPVAR_HANDLER
0000000000253300 00000000000000cb T _php_stream_make_seekable
00000000002a74f0 00000000000000cb T zend_read_property
000000000022f920 00000000000000cb t zif_stream_filter_remove
00000000001a9940 00000000000000cb t zim_spl_SplDoublyLinkedList_unshift
0000000000311250 00000000000000cc t ZEND_SEND_USER_SPEC_CV_HANDLER
000000000020a3a0 00000000000000cc T php_url_free
00000000000ec650 00000000000000cc t timelib_meridian
00000000000d39ee 00000000000000cc t zend_ast_export_name_list_ex
00000000000cdae8 00000000000000cc t zend_ast_export_str
00000000002b9380 00000000000000cc t zend_implement_traversable
00000000000cd697 00000000000000cc T zend_throw_exception_internal
00000000001ec7c0 00000000000000cc t zif_sqrt
00000000002cc460 00000000000000cd T virtual_lstat
0000000000279de0 00000000000000cd t zend_add_member_modifier
00000000001c0e00 00000000000000cd t zif_base64_encode
00000000002ff130 00000000000000ce t ZEND_ASSIGN_OBJ_SPEC_UNUSED_CV_OP_DATA_TMP_HANDLER
000000000022cd90 00000000000000ce t parse_context_options.isra.3
0000000000110050 00000000000000ce t set_lookbehind_lengths
000000000027b6e0 00000000000000ce T zend_register_auto_global
00000000000e1ed0 00000000000000ce t zif_date_format
00000000002568b0 00000000000000cf T _php_stream_fopen_temporary_file
00000000002cfc70 00000000000000cf t zend_intenal_class_init_statics
00000000002b2eb0 00000000000000cf t zif_get_parent_class
00000000002bb220 00000000000000cf t zim_error_exception_getSeverity
00000000002bb080 00000000000000cf t zim_exception_getCode
00000000002bae10 00000000000000cf t zim_exception_getFile
00000000002baee0 00000000000000cf t zim_exception_getLine
00000000002bafb0 00000000000000cf t zim_exception_getMessage
00000000002bb150 00000000000000cf t zim_exception_getTrace
00000000001a0650 00000000000000cf t zim_spl_SplFileObject_fseek
00000000001abe10 00000000000000cf t zim_spl_SplHeap_top
000000000029f330 00000000000000d0 T add_get_index_string
000000000029ea40 00000000000000d0 T add_index_string
000000000029ee10 00000000000000d0 T add_next_index_string
0000000000165bd0 00000000000000d0 T php_pcre2_substring_copy_byname
0000000000165ca0 00000000000000d0 T php_pcre2_substring_get_byname
0000000000214f90 00000000000000d0 T php_store_class_name
00000000002a7370 00000000000000d0 T zend_update_static_property_stringl
00000000001eb360 00000000000000d0 t zif_abs
0000000000228010 00000000000000d0 t zif_convert_uuencode
00000000001c1b90 00000000000000d0 t zif_ip2long
00000000001cfd50 00000000000000d0 t zif_proc_nice
00000000000e4560 00000000000000d0 t zif_timezone_open
000000000019e9f0 00000000000000d0 t zim_spl_DirectoryIterator_getFilename
00000000002ed2b0 00000000000000d1 t ZEND_UNSET_VAR_SPEC_TMPVAR_UNUSED_HANDLER
000000000032bed0 00000000000000d1 t cli_seek_file_begin
00000000001980c0 00000000000000d1 T spl_iterator_apply
000000000027ec60 00000000000000d1 t zend_compile_const_expr_const
00000000000e59f0 00000000000000d1 t zif_date_date_set
00000000000e67d0 00000000000000d1 t zim_DateTimeImmutable_setDate
00000000001b0660 00000000000000d1 t zval_user_compare
00000000000d610f 00000000000000d2 t ZEND_INIT_FCALL_SPEC_CONST_HANDLER
00000000002f0350 00000000000000d2 t ZEND_POST_DEC_SPEC_VAR_HANDLER
00000000002eff00 00000000000000d2 t ZEND_POST_INC_SPEC_VAR_HANDLER
00000000003e8f00 00000000000000d2 r catposstab
00000000003334c0 00000000000000d2 t php_cli_server_client_send_through.isra.4
000000000023f900 00000000000000d2 T sapi_get_request_time
0000000000277c30 00000000000000d2 t zend_build_runtime_definition_key
0000000000283030 00000000000000d2 t zend_compile_instanceof
000000000028fb40 00000000000000d2 T zend_llist_sort
00000000001a1d30 00000000000000d2 t zim_spl_DirectoryIterator_next
00000000002de840 00000000000000d3 t ZEND_DISCARD_EXCEPTION_SPEC_HANDLER
00000000000db434 00000000000000d3 t ZEND_FE_RESET_RW_SPEC_CONST_HANDLER
00000000000e47e0 00000000000000d3 t guess_timezone
00000000001a6300 00000000000000d3 t spl_filesystem_info_set_filename
00000000002cd410 00000000000000d3 T zend_ast_create_1
00000000002a5510 00000000000000d3 T zend_fcall_info_args_clear
00000000001084c0 00000000000000d4 t fetch_timezone_offset
0000000000123d40 00000000000000d4 t next_opcode.isra.10
0000000000231e40 00000000000000d4 t php_password_salt_to64.constprop.3
000000000014cdd0 00000000000000d4 T php_pcre2_jit_compile
0000000000165780 00000000000000d4 T php_pcre2_substring_get_bynumber
0000000000277290 00000000000000d4 T start_memory_manager
000000000029bfd0 00000000000000d4 T zend_append_version_info
00000000002d9900 00000000000000d4 t zend_binary_assign_op_simple_helper_SPEC_VAR_CONST
000000000029d1c0 00000000000000d4 T zend_zval_get_type
00000000001c1660 00000000000000d4 t zif_is_uploaded_file
00000000000da2d5 00000000000000d5 t ZEND_FAST_CONCAT_SPEC_CONST_CONST_HANDLER
0000000000124790 00000000000000d5 t flush_stubs
00000000002561d0 00000000000000d5 t php_plain_files_dirstream_read
0000000000250060 00000000000000d5 T php_stream_locate_eol
00000000002cbc50 00000000000000d5 T virtual_access
00000000002cbe10 00000000000000d5 T virtual_chmod
00000000002cc110 00000000000000d5 T virtual_creat
00000000002cc600 00000000000000d5 T virtual_mkdir
00000000002cc380 00000000000000d5 T virtual_stat
00000000002cbd30 00000000000000d5 T virtual_utime
00000000001f4990 00000000000000d5 t zif_quoted_printable_encode
00000000002c96f0 00000000000000d5 t zim_Generator_getReturn
00000000001246b0 00000000000000d6 t sljit_emit_label
00000000002cac80 00000000000000d6 t virtual_cwd_main_cwd_init
000000000028fee0 00000000000000d6 t zend_check_finally_breakout
00000000002c76c0 00000000000000d6 t zend_generator_add_single_child
00000000002b82e0 00000000000000d6 T zend_multibyte_set_script_encoding_by_string
0000000000193950 00000000000000d6 t zim_spl_RegexIterator_getPregFlags
00000000002db3f0 00000000000000d7 t ZEND_ASSIGN_SPEC_CV_TMP_RETVAL_USED_HANDLER
00000000002e5f80 00000000000000d7 t ZEND_MOD_SPEC_TMPVAR_TMPVAR_HANDLER
0000000000201740 00000000000000d7 T php_strtr
00000000001623e0 00000000000000d7 t set_type_bits
00000000000d3884 00000000000000d7 t zend_ast_export_list
00000000002bb2f0 00000000000000d7 t zim_exception_getPrevious
00000000003092e0 00000000000000d8 t ZEND_MOD_SPEC_CV_CV_HANDLER
000000000029ff10 00000000000000d8 T add_property_zval_ex
0000000000238960 00000000000000d8 T ap_php_vasprintf
0000000000717e80 00000000000000d8 d method_strings
0000000000170660 00000000000000d8 t php_json_get_error_msg
0000000000254580 00000000000000d8 T php_stream_bucket_new
000000000028fc50 00000000000000d8 T zend_llist_apply_with_arguments
0000000000203470 00000000000000d8 t zif_addslashes
00000000001e7af0 00000000000000d8 t zif_php_ini_loaded_file
00000000001e7a10 00000000000000d8 t zif_php_ini_scanned_files
00000000001e7860 00000000000000d8 t zif_php_sapi_name
000000000018e860 00000000000000d9 T spl_offset_convert_to_long
00000000001982f0 00000000000000d9 t zif_iterator_apply
00000000001c9f00 00000000000000d9 t zm_startup_crypt
00000000001c9e20 00000000000000da t php_if_crc32
00000000002cbb70 00000000000000da T virtual_fopen
00000000001c4e90 00000000000000da t zif_get_include_path
0000000000177070 00000000000000da t zif_pcntl_signal_get_handler
000000000018aa70 00000000000000da t zim_reflection_class_constant_getDeclaringClass
0000000000185c20 00000000000000da t zim_reflection_class_constant_getModifiers
00000000001864b0 00000000000000da t zim_reflection_parameter_getPosition
00000000002fd8e0 00000000000000db t ZEND_FETCH_OBJ_IS_SPEC_TMPVAR_CV_HANDLER
0000000000334720 00000000000000db t sapi_cli_server_log_message
00000000002cd8e0 00000000000000db T zend_ast_create_list_1
00000000002afe80 00000000000000db T zend_hash_minmax
00000000001addc0 00000000000000db t zim_spl_SplFixedArray___wakeup
00000000002473d0 00000000000000dc t php_output_handler_compat_func
0000000000251a30 00000000000000dc T php_register_url_stream_wrapper_volatile
00000000000c913c 00000000000000dc t read_name.isra.0
0000000000285600 00000000000000dc t zend_compile_coalesce
000000000028f260 00000000000000dc T zend_html_puts
00000000002a7b60 00000000000000dc T zend_register_extension
00000000000d6bd9 00000000000000dd t ZEND_FETCH_DIM_R_INDEX_SPEC_CONST_TMPVARCV_HANDLER
00000000001b12c0 00000000000000dd t php_get_data_compare_func
00000000002b1d00 00000000000000dd t validate_constant_array
000000000027e5e0 00000000000000dd t zend_compile_halt_compiler
00000000002c2730 00000000000000dd T zend_hex_strtod
000000000018a590 00000000000000dd T zend_reflection_class_factory
00000000001b8490 00000000000000dd t zif_compact
000000000017eb70 00000000000000dd t zim_reflection_class_constant_getValue
000000000018f2c0 00000000000000dd t zim_spl_RecursiveRegexIterator_accept
00000000000e48c0 00000000000000dd t zm_info_date
000000000030e640 00000000000000de t ZEND_BIND_LEXICAL_SPEC_TMP_CV_HANDLER
0000000000236610 00000000000000de T php_lint_script
0000000000282680 00000000000000de t zend_compile_greater
000000000018b370 00000000000000de t zif_class_implements
000000000018b450 00000000000000de t zif_class_uses
0000000000181f50 00000000000000de t zim_reflection_class_getReflectionConstant
00000000001a1c50 00000000000000de t zim_spl_FilesystemIterator_rewind
0000000000246e90 00000000000000df t gethostname_re
000000000024f300 00000000000000df T php_stream_from_persistent_id
000000000028c300 00000000000000df t shutdown_destructors
00000000002d9130 00000000000000df t zend_check_string_offset
000000000027a190 00000000000000df t zend_try_ct_eval_const
00000000002f14a0 00000000000000e0 t ZEND_ASSIGN_OBJ_SPEC_CV_TMPVAR_OP_DATA_CONST_HANDLER
00000000000d7ef2 00000000000000e0 t ZEND_TYPE_CHECK_SPEC_TMPVAR_HANDLER
000000000029f7c0 00000000000000e0 T add_property_bool_ex
000000000029fa70 00000000000000e0 T add_property_double_ex
000000000029f6e0 00000000000000e0 T add_property_long_ex
000000000029f8a0 00000000000000e0 T add_property_null_ex
0000000000726540 00000000000000e0 b closure_handlers
000000000069d300 00000000000000e0 d date_funcs_interface
000000000069cb20 00000000000000e0 d date_funcs_period
0000000000724340 00000000000000e0 b date_object_handlers_date
0000000000724260 00000000000000e0 b date_object_handlers_immutable
00000000007240a0 00000000000000e0 b date_object_handlers_interval
0000000000723fc0 00000000000000e0 b date_object_handlers_period
0000000000724180 00000000000000e0 b date_object_handlers_timezone
00000000007263c0 00000000000000e0 b default_exception_handlers
00000000007077a0 00000000000000e0 d iterator_object_handlers
000000000072a960 00000000000000e0 B language_scanner_globals
0000000000725b60 00000000000000e0 b php_incomplete_object_handlers
0000000000724560 00000000000000e0 b reflection_object_handlers
0000000000705f80 00000000000000e0 d reserved_class_names
0000000000724820 00000000000000e0 b spl_filesystem_object_check_handlers
0000000000724900 00000000000000e0 b spl_filesystem_object_handlers
0000000000727aa0 00000000000000e0 b spl_handler_ArrayIterator
0000000000727b80 00000000000000e0 b spl_handler_ArrayObject
0000000000727e60 00000000000000e0 b spl_handler_SplDoublyLinkedList
0000000000728140 00000000000000e0 b spl_handler_SplFixedArray
0000000000728060 00000000000000e0 b spl_handler_SplHeap
0000000000727d40 00000000000000e0 B spl_handler_SplObjectStorage
0000000000727f60 00000000000000e0 b spl_handler_SplPriorityQueue
0000000000724660 00000000000000e0 b spl_handlers_dual_it
0000000000724740 00000000000000e0 b spl_handlers_rec_it_it
00000000007222a0 00000000000000e0 D std_object_handlers
0000000000726b20 00000000000000e0 b zend_generator_handlers
000000000029d4c0 00000000000000e0 T zend_parse_arg_long_weak
00000000002a6f10 00000000000000e0 T zend_update_property_stringl
00000000002a7290 00000000000000e0 T zend_update_static_property_string
0000000000311160 00000000000000e1 t ZEND_SEND_USER_SPEC_VAR_HANDLER
000000000024edf0 00000000000000e1 t _php_stream_write_buffer
00000000002be5c0 00000000000000e1 t multadd
00000000001b13a0 00000000000000e1 t php_natsort.isra.2
0000000000321fc0 00000000000000e1 T zend_init_func_execute_data
000000000017f960 00000000000000e2 t _reflection_write_property
00000000002387b0 00000000000000e2 T ap_php_slprintf
000000000027abb0 00000000000000e2 T zend_mangle_property_name
0000000000184290 00000000000000e2 t zim_reflection_function_getReturnType
000000000017b340 00000000000000e3 t reflection_property_factory_str
0000000000205390 00000000000000e3 T string_natural_compare_function_ex
00000000002921d0 00000000000000e3 T zend_is_identical
00000000000cd8ea 00000000000000e3 T zend_throw_exception_ex
00000000003023f0 00000000000000e4 t ZEND_INSTANCEOF_SPEC_CV_VAR_HANDLER
0000000000114d20 00000000000000e4 T php_pcre2_code_copy_with_tables
00000000002835d0 00000000000000e4 t zend_compile_var
00000000002aed20 00000000000000e4 T zend_hash_merge_ex
00000000001cfb20 00000000000000e4 t zif_escapeshellarg
00000000002b4b10 00000000000000e5 t copy_constant_array.isra.0
000000000022a890 00000000000000e5 t php_conv_get_string_prop_ex.constprop.8
000000000017eef0 00000000000000e6 t _addconstant
00000000002b7750 00000000000000e6 t zend_sort_4
000000000027b5f0 00000000000000e6 t zend_try_compile_cv.isra.30
000000000023da00 00000000000000e6 t zif_header_register_callback
00000000001a0220 00000000000000e6 t zim_spl_SplFileObject_ftruncate
00000000002e1ea0 00000000000000e7 t ZEND_ASSIGN_OBJ_SPEC_UNUSED_TMPVAR_OP_DATA_TMP_HANDLER
00000000001e5630 00000000000000e7 t php_info_printf
000000000029b9a0 00000000000000e7 t print_flat_hash.isra.2
0000000000272ac0 00000000000000e7 t zend_mm_chunk_alloc_int.constprop.16
0000000000177f90 00000000000000e7 t zif_pcntl_strerror
00000000002d9770 00000000000000e8 t ZEND_SEND_REF_SPEC_VAR_HANDLER
000000000029f980 00000000000000e8 T add_property_resource_ex
0000000000124990 00000000000000e8 t emit_load_imm64
00000000000e8d80 00000000000000e8 T php_parse_date
0000000000233f10 00000000000000e8 T php_printf
00000000000c9031 00000000000000e8 t timelib_get_frac_nr
0000000000283b70 00000000000000e8 t zend_compile_call_common
00000000002795d0 00000000000000e8 t zend_compile_rope_add
000000000029d0b0 00000000000000e8 T zend_get_type_by_const
00000000000db652 00000000000000e9 t ZEND_ADD_SPEC_CONST_CONST_HANDLER
00000000002c2960 00000000000000e9 t gc_compact
000000000023fc70 00000000000000e9 t php_ap_getword
00000000002971c0 00000000000000e9 T zend_memnrstr_ex
00000000002970d0 00000000000000e9 T zend_memnstr_ex
00000000001d95b0 00000000000000e9 t zif_fileperms
00000000002ff300 00000000000000ea t ZEND_ASSIGN_OBJ_SPEC_UNUSED_CV_OP_DATA_CV_HANDLER
00000000000db828 00000000000000ea t ZEND_MUL_SPEC_CONST_CONST_HANDLER
00000000001855a0 00000000000000ea t _class_check_flag.isra.53
0000000000185d00 00000000000000ea t _class_constant_check_flag.isra.41
00000000001860b0 00000000000000ea t _function_check_flag.isra.34
0000000000185340 00000000000000ea t _property_check_flag.isra.59
0000000000257470 00000000000000ea t php_userstreamop_rewinddir
00000000001bb9b0 00000000000000ea t zif_array_replace_recursive
00000000000e4470 00000000000000ea t zim_DateTimeZone___construct
000000000018a730 00000000000000ea t zim_reflection_parameter_getDeclaringClass
00000000000d5f22 00000000000000eb t ZEND_INIT_FCALL_BY_NAME_SPEC_CONST_HANDLER
00000000000dbbd4 00000000000000eb t ZEND_IS_SMALLER_SPEC_CONST_CONST_HANDLER
000000000027a6a0 00000000000000eb T do_bind_class
00000000002433f0 00000000000000eb t php_auto_globals_create_post
00000000001aacf0 00000000000000eb t spl_dllist_object_free_storage
00000000000c9572 00000000000000eb t unserialize_allowed_class.isra.2
00000000002cd4f0 00000000000000eb T zend_ast_create_2
00000000002cdad0 00000000000000eb T zend_ast_list_add
0000000000273040 00000000000000eb t zend_mm_alloc_small_slow
00000000001dde20 00000000000000eb t zif_header_remove
000000000032fbd0 00000000000000ec t php_cli_server_poller_remove
00000000001e3630 00000000000000ec t php_get_wbmp
00000000002831b0 00000000000000ec t zend_compile_silence
000000000029c150 00000000000000ec T zend_deactivate
00000000001dd360 00000000000000ec t zif_vfprintf
00000000003024e0 00000000000000ed t ZEND_INSTANCEOF_SPEC_CV_UNUSED_HANDLER
00000000000dbcbf 00000000000000ed t ZEND_IS_SMALLER_OR_EQUAL_SPEC_CONST_CONST_HANDLER
00000000000db73b 00000000000000ed t ZEND_SUB_SPEC_CONST_CONST_HANDLER
00000000002cd2a0 00000000000000ed T zend_ast_create_decl
00000000000d51d7 00000000000000ee t ZEND_DO_ICALL_SPEC_RETVAL_USED_HANDLER
00000000001923a0 00000000000000ee t spl_recursive_it_get_method
000000000031ea00 00000000000000ee t zend_vm_stack_copy_call_frame
000000000018b280 00000000000000ee t zif_class_parents
0000000000212590 00000000000000ee t zif_serialize
00000000001a2770 00000000000000ee t zim_spl_SplFileInfo_getBasename
0000000000250a70 00000000000000ef T _php_stream_printf
00000000001c6f70 00000000000000ef t php_ini_parser_cb_with_sections
000000000012cca0 00000000000000ef t skip_char_back.isra.36
00000000000ecc00 00000000000000ef t timelib_time_reset_unset_fields
00000000002266a0 00000000000000ef t userfilter_dtor
000000000027e970 00000000000000ef t zend_compile_resolve_class_name
00000000000cc558 00000000000000ef T zend_type_error
00000000001897f0 00000000000000ef t zim_reflection_class___toString
00000000001888b0 00000000000000ef t zim_reflection_function___toString
00000000001889a0 00000000000000ef t zim_reflection_method___toString
0000000000184730 00000000000000ef t zim_reflection_property___toString
00000000006c0dc0 00000000000000f0 d entity_ms_table_html4
00000000006ee4a0 00000000000000f0 d entity_ms_table_html5
000000000023ba50 00000000000000f0 t php_fopen_and_set_opened_path
000000000010b560 00000000000000f0 t timelib_unixtime2local
00000000002a6e20 00000000000000f0 T zend_update_property_string
00000000002280e0 00000000000000f0 t zif_convert_uudecode
00000000002b26d0 00000000000000f0 t zif_get_defined_functions
0000000000209470 00000000000000f0 t zif_syslog
000000000019eb20 00000000000000f0 t zim_spl_RecursiveDirectoryIterator_getSubPath
00000000002a9180 00000000000000f1 t zend_hash_do_resize
00000000001d3760 00000000000000f1 t zif_umask
00000000002fef90 00000000000000f2 t ZEND_ASSIGN_OBJ_SPEC_UNUSED_TMPVAR_OP_DATA_CV_HANDLER
00000000002e64e0 00000000000000f2 t ZEND_IS_IDENTICAL_SPEC_TMP_CONST_HANDLER
00000000002e65e0 00000000000000f2 t ZEND_IS_NOT_IDENTICAL_SPEC_TMP_CONST_HANDLER
00000000002832a0 00000000000000f2 t zend_compile_shell_exec
00000000001bb8b0 00000000000000f2 t zif_array_replace
00000000000eac80 00000000000000f2 t zif_date_parse
00000000001c4f70 00000000000000f2 t zif_print_r
00000000001909e0 00000000000000f2 t zim_spl_CachingIterator___toString
00000000000da774 00000000000000f3 t ZEND_BOOL_NOT_SPEC_CONST_HANDLER
00000000002ed8b0 00000000000000f3 t ZEND_GET_TYPE_SPEC_TMP_UNUSED_HANDLER
00000000002e1960 00000000000000f3 t ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_UNUSED_CONST_HANDLER
00000000000e49a0 00000000000000f3 t php_date_parse_tzfile
00000000001b5e50 00000000000000f3 T php_prefix_varname
0000000000232e90 00000000000000f3 t php_random_int.part.1
00000000002860f0 00000000000000f3 t zend_compile_post_incdec
00000000001f8940 00000000000000f3 t zif_strcoll
00000000001af110 00000000000000f3 t zim_spl_SplFixedArray_offsetGet
00000000002ff200 00000000000000f4 t ZEND_ASSIGN_OBJ_SPEC_UNUSED_CV_OP_DATA_VAR_HANDLER
000000000010f210 00000000000000f4 t find_recurse
0000000000292ac0 00000000000000f4 T zend_str_tolower_dup_ex
00000000001ebb50 00000000000000f4 t zif_atan2
00000000001edd50 00000000000000f4 t zif_fmod
00000000001ec890 00000000000000f4 t zif_hypot
000000000018ffa0 00000000000000f4 t zim_spl_RecursiveIteratorIterator_getSubIterator
00000000002f0250 00000000000000f5 t ZEND_PRE_DEC_SPEC_VAR_RETVAL_USED_HANDLER
00000000002efe00 00000000000000f5 t ZEND_PRE_INC_SPEC_VAR_RETVAL_USED_HANDLER
00000000001eaa30 00000000000000f5 t _php_math_longtobase.part.3
000000000025d340 00000000000000f5 t php_glob_stream_read
00000000002404c0 00000000000000f5 t php_rfc1867_register_constants
00000000002cbef0 00000000000000f5 T virtual_chown
0000000000292620 00000000000000f5 T zend_is_true
00000000000dd9e4 00000000000000f5 T zend_missing_arg_error
000000000017a1c0 00000000000000f5 t zim_reflection_parameter_isDefaultValueAvailable
00000000000d9a67 00000000000000f6 t ZEND_FETCH_DIM_R_INDEX_SPEC_CV_TMPVARCV_HANDLER
00000000002567b0 00000000000000f6 T php_stream_parse_fopen_modes
0000000000253a40 00000000000000f6 t php_stream_temp_write
00000000000ec0f0 00000000000000f7 t timelib_lookup_month
00000000002d8f20 00000000000000f7 t zend_isset_dim_slow
00000000002b0020 00000000000000f7 T zend_symtable_to_proptable
000000000029fb50 00000000000000f8 T add_property_str_ex
00000000001e4090 00000000000000f8 T php_image_type_to_mime_type
000000000025ae70 00000000000000f8 T php_stream_xport_connect
000000000041f500 00000000000000f8 r values.14785
000000000030d800 00000000000000f9 t ZEND_ADD_ARRAY_ELEMENT_SPEC_CV_UNUSED_HANDLER
00000000000da867 00000000000000f9 t ZEND_BOOL_SPEC_CONST_HANDLER
00000000002d8dc0 00000000000000f9 t ZEND_FETCH_CLASS_NAME_SPEC_UNUSED_HANDLER
0000000000176b00 00000000000000f9 t pcntl_signal_handler
0000000000331630 00000000000000f9 t php_cli_server_logf
00000000001f7880 00000000000000f9 t php_tag_find.part.1
00000000002a6850 00000000000000f9 T zend_declare_class_constant_stringl
00000000000e5ad0 00000000000000f9 t zif_date_time_set
00000000000e68b0 00000000000000f9 t zim_DateTimeImmutable_setTime
000000000017ce50 00000000000000f9 t zim_reflection_generator_getFunction
00000000002a1c70 00000000000000fa t do_register_internal_class
00000000002b9ce0 00000000000000fa T zend_user_it_get_current_key
000000000018ae10 00000000000000fa t zim_reflection_class_getParentClass
00000000002d9670 00000000000000fb t ZEND_FETCH_OBJ_IS_SPEC_TMPVAR_TMPVAR_HANDLER
0000000000246c80 00000000000000fb T _php_stream_sock_open_from_socket
00000000000cafba 00000000000000fb T php_error_docref2
00000000002a8430 00000000000000fb T zend_hash_real_init
000000000017a710 00000000000000fb t zim_reflection_function_getExtensionName
00000000001da5a0 00000000000000fc t php_if_lstat
00000000001da6a0 00000000000000fc t php_if_stat
00000000002a9880 00000000000000fc T zend_hash_add_new
00000000002ce820 00000000000000fc T zend_object_std_dtor
00000000001da4a0 00000000000000fc t zif_file_exists
00000000001d9aa0 00000000000000fc t zif_fileatime
00000000001d9ca0 00000000000000fc t zif_filectime
00000000001d99a0 00000000000000fc t zif_filegroup
00000000001d96a0 00000000000000fc t zif_fileinode
00000000001d9ba0 00000000000000fc t zif_filemtime
00000000001d98a0 00000000000000fc t zif_fileowner
00000000001d97a0 00000000000000fc t zif_filesize
00000000001d9da0 00000000000000fc t zif_filetype
00000000001da2a0 00000000000000fc t zif_is_dir
00000000001da0a0 00000000000000fc t zif_is_executable
00000000001da1a0 00000000000000fc t zif_is_file
00000000001da3a0 00000000000000fc t zif_is_link
00000000001d9fa0 00000000000000fc t zif_is_readable
00000000001d9ea0 00000000000000fc t zif_is_writable
00000000001a0000 00000000000000fc t zim_spl_SplFileObject_fwrite
00000000001797b0 00000000000000fd t reflection_function_factory
00000000001ad120 00000000000000fd t spl_ptr_pqueue_zval_cmp
000000000028cb60 00000000000000fd t zend_timeout_handler.part.1
00000000001e9800 00000000000000fd t zif_ezmlm_hash
00000000001286b0 00000000000000fe t emit_unary
00000000000d7cab 00000000000000ff t ZEND_JMPNZ_SPEC_TMPVAR_HANDLER
00000000000d7bac 00000000000000ff t ZEND_JMPZ_SPEC_TMPVAR_HANDLER
00000000000ec780 00000000000000ff t abbr_search
000000000029c700 00000000000000ff t zend_create_method_string
0000000000226040 0000000000000100 T PHP_SHA1Final
00000000002dede0 0000000000000100 t ZEND_INSTANCEOF_SPEC_TMPVAR_VAR_HANDLER
00000000004258c0 0000000000000100 r b64_tbl_enc
0000000000124a80 0000000000000100 t emit_do_imm32
00000000006a9100 0000000000000100 d ini_entries
0000000000446120 0000000000000100 r normal_url_char
00000000006abe40 0000000000000100 d reflection_function_functions
00000000006abcc0 0000000000000100 d reflection_generator_functions
00000000001c7ad0 0000000000000100 T register_user_shutdown_function
00000000006af8e0 0000000000000100 d spl_FilesystemIterator_functions
00000000006acd80 0000000000000100 d spl_funcs_IteratorIterator
00000000006acc40 0000000000000100 d spl_funcs_NoRewindIterator
00000000003e8700 0000000000000100 r timelib_tolower_map
0000000000446320 0000000000000100 r tokens
000000000043e320 0000000000000100 r tolower_map
0000000000446220 0000000000000100 r unhex
00000000003ea3e0 0000000000000100 r xdigitab
0000000000338620 0000000000000100 r yybm.10137
00000000004398e0 0000000000000100 r yybm.11084
00000000004397e0 0000000000000100 r yybm.11177
00000000004397e0 0000000000000100 r yybm.11209
00000000004396e0 0000000000000100 r yybm.11244
00000000004395e0 0000000000000100 r yybm.11400
00000000004394e0 0000000000000100 r yybm.11409
00000000004393e0 0000000000000100 r yybm.11421
00000000004392e0 0000000000000100 r yybm.11433
00000000004386e0 0000000000000100 r yybm.12331
00000000004385e0 0000000000000100 r yybm.13162
00000000004384e0 0000000000000100 r yybm.13169
00000000004384e0 0000000000000100 r yybm.13192
00000000004384e0 0000000000000100 r yybm.13216
00000000004384e0 0000000000000100 r yybm.13261
00000000004383e0 0000000000000100 r yybm.13269
0000000000408d00 0000000000000100 r yybm.13807
0000000000424ea0 0000000000000100 r yybm.14885
0000000000422480 0000000000000100 r yybm.15501
0000000000422380 0000000000000100 r yybm.15506
0000000000422280 0000000000000100 r yybm.15510
0000000000422180 0000000000000100 r yybm.15518
0000000000422080 0000000000000100 r yybm.15522
0000000000421f80 0000000000000100 r yybm.15528
00000000003e89c0 0000000000000100 r yybm.9902
00000000002c98e0 0000000000000100 t zend_generator_iterator_get_key
000000000028c020 0000000000000100 t zend_throw_or_error.constprop.3
00000000002ba0f0 0000000000000100 T zend_user_it_get_new_iterator
0000000000723b00 0000000000000100 d zend_user_opcodes
00000000001ac660 0000000000000100 t zim_spl_SplPriorityQueue_top
00000000001108c0 0000000000000101 t add_not_list_to_class
0000000000332e90 0000000000000101 t php_cli_server_dispatch_script
000000000025b900 0000000000000101 T php_stream_xport_sendto
0000000000213430 0000000000000102 t OnChangeCallback
00000000000d600d 0000000000000102 t ZEND_INIT_NS_FCALL_BY_NAME_SPEC_CONST_HANDLER
00000000001c7c10 0000000000000102 T append_user_shutdown_function
000000000010eca0 0000000000000102 t first_significant_code
000000000012ceb0 0000000000000102 t read_char7_type.isra.37
00000000002cd9c0 0000000000000102 T zend_ast_create_list_2
00000000002b06c0 0000000000000102 T zend_fetch_resource_ex
000000000028ac40 0000000000000102 t zend_get_constant_str_impl
00000000001821c0 0000000000000102 t zim_reflection_parameter_getType
0000000000234420 0000000000000103 t display_errors_mode
000000000023c5d0 0000000000000103 t php_ini_displayer
000000000012b230 0000000000000103 t sljit_emit_cmp
00000000002b34e0 0000000000000103 t zif_strcasecmp
00000000002b4a00 0000000000000103 t zif_strcmp
000000000030dc10 0000000000000104 t ZEND_GET_TYPE_SPEC_CV_UNUSED_HANDLER
000000000025b7f0 0000000000000104 T php_stream_xport_recvfrom
00000000002fd710 0000000000000104 t zend_binary_assign_op_simple_helper_SPEC_VAR_CV
00000000002d9aa0 0000000000000104 t zend_binary_assign_op_simple_helper_SPEC_VAR_TMPVAR
000000000027e4d0 0000000000000104 t zend_compile_group_use
00000000002729b0 0000000000000104 t zend_mm_free_huge
00000000000d9962 0000000000000105 t ZEND_FETCH_DIM_R_INDEX_SPEC_CV_CONST_HANDLER
00000000002827f0 0000000000000105 t zend_compile_unary_pm
000000000028f150 0000000000000105 T zend_html_putc
00000000001defd0 0000000000000105 t zif_http_response_code
000000000022b490 0000000000000105 t zif_proc_terminate
000000000025abe0 0000000000000105 t zif_stream_wrapper_restore
0000000000184070 0000000000000105 t zim_reflection_class_getDocComment
0000000000184380 0000000000000105 t zim_reflection_function_getDocComment
0000000000302880 0000000000000106 t ZEND_INSTANCEOF_SPEC_CV_CONST_HANDLER
00000000003018e0 0000000000000107 t ZEND_IS_NOT_IDENTICAL_SPEC_CV_CONST_HANDLER
00000000002517b0 0000000000000107 t php_init_stream_wrappers
000000000027a040 0000000000000107 t zend_hash_find_ptr_lc
00000000000cc74e 0000000000000107 T zend_internal_argument_count_error
00000000000cc647 0000000000000107 T zend_internal_type_error
00000000002da740 0000000000000108 t ZEND_ADD_ARRAY_ELEMENT_SPEC_TMP_CONST_HANDLER
00000000002d8460 0000000000000108 t zend_vm_get_opcode_handler_ex
000000000022f560 0000000000000108 t zif_stream_context_get_params
00000000001908d0 0000000000000108 t zim_spl_RecursiveTreeIterator_setPostfix
00000000002de730 0000000000000109 t ZEND_ROPE_END_SPEC_TMP_CONST_HANDLER
00000000001b03a0 0000000000000109 t php_array_user_compare
00000000002a6610 0000000000000109 T zend_declare_class_constant
0000000000278ec0 0000000000000109 t zend_emit_op
00000000002791c0 0000000000000109 t zend_emit_op_tmp
0000000000278990 0000000000000109 t zend_file_context_begin
00000000002c97d0 0000000000000109 t zim_Generator_valid
00000000002dbb40 000000000000010a t ZEND_ASSIGN_SPEC_VAR_TMP_RETVAL_UNUSED_HANDLER
00000000001ae780 000000000000010a t spl_fixedarray_object_has_dimension
00000000002939a0 000000000000010a T string_locale_compare_function
00000000002c8020 000000000000010a T zend_generator_freeze_call_stack
00000000002e1f90 000000000000010b t ZEND_ASSIGN_OBJ_SPEC_UNUSED_TMPVAR_OP_DATA_VAR_HANDLER
00000000002623c0 000000000000010b T compile_string
0000000000257360 000000000000010b t php_userstreamop_close
0000000000257560 000000000000010b t php_userstreamop_closedir
0000000000408be0 000000000000010b r yytranslate
000000000028ad50 000000000000010b t zend_get_constant_impl
000000000018af10 000000000000010b t zim_reflection_property_getDeclaringClass
00000000002ed9b0 000000000000010c t ZEND_GET_TYPE_SPEC_VAR_UNUSED_HANDLER
000000000023d440 000000000000010c T php_parse_user_ini_file
0000000000251900 000000000000010c T php_register_url_stream_wrapper
0000000000254910 000000000000010c T php_stream_bucket_make_writeable
00000000000ec540 000000000000010c t timelib_get_nr_ex
00000000002e8fb0 000000000000010c t zend_fetch_static_prop_helper_SPEC_CONST_VAR
00000000002305f0 000000000000010c t zif_stream_resolve_include_path
0000000000184180 000000000000010c t zim_reflection_class_getFileName
0000000000184490 000000000000010c t zim_reflection_function_getFileName
00000000002f1580 000000000000010d t ZEND_ASSIGN_OBJ_SPEC_CV_TMPVAR_OP_DATA_TMP_HANDLER
00000000000d8dcf 000000000000010d t ZEND_JMPNZ_SPEC_CV_HANDLER
00000000000d8cc2 000000000000010d t ZEND_JMPZ_SPEC_CV_HANDLER
00000000000e1c80 000000000000010d t date_period_it_has_more
0000000000247620 000000000000010d t php_output_stack_apply_status
00000000002a61a0 000000000000010d T zend_declare_property_string
00000000001dd250 000000000000010d t zif_fprintf
000000000019f3d0 000000000000010d t zim_spl_RecursiveDirectoryIterator_getSubPathname
000000000023e1d0 000000000000010e T sapi_activate_headers_only
000000000019a0e0 000000000000010e t spl_array_rewind
00000000002a62b0 000000000000010e T zend_declare_property_stringl
00000000000e29a0 000000000000010e t zif_date_diff
00000000000d7daa 000000000000010f t ZEND_JMPZNZ_SPEC_TMPVAR_HANDLER
0000000000212cf0 000000000000010f T php_canonicalize_version
0000000000255880 000000000000010f t php_stdiop_cast
00000000002d9020 000000000000010f t zend_isempty_dim_slow
0000000000187870 000000000000010f t zim_reflection_parameter___toString
00000000001a2290 000000000000010f t zim_spl_SplFileInfo_getPath
00000000003017d0 0000000000000110 t ZEND_IS_IDENTICAL_SPEC_CV_CONST_HANDLER
0000000000180320 0000000000000110 t _adddynproperty
00000000002a5f50 0000000000000110 T zend_declare_property
0000000000290a90 0000000000000110 T zend_function_dtor
0000000000299900 0000000000000110 T zend_ptr_stack_n_push
00000000002b2c60 0000000000000110 t zif_restore_error_handler
000000000030f2d0 0000000000000111 t ZEND_ASSIGN_OBJ_SPEC_CV_CV_OP_DATA_CV_HANDLER
00000000002be800 0000000000000111 t mult
00000000001f51d0 0000000000000111 T php_mt_rand_range
0000000000438dc0 0000000000000111 r yytranslate
00000000001c5230 0000000000000111 t zif_getservbyname
00000000001da980 0000000000000112 T php_flock
000000000025b4d0 0000000000000112 T php_stream_xport_accept
000000000010b830 0000000000000112 t timelib_get_nr
0000000000436940 0000000000000112 r yydefgoto
0000000000436a60 0000000000000112 r yypgoto
00000000002b07d0 0000000000000112 T zend_fetch_resource2_ex
00000000002cf480 0000000000000112 T zend_std_unset_dimension
00000000002a6bb0 0000000000000112 T zend_unset_property
00000000001cfa00 0000000000000112 t zif_escapeshellcmd
00000000001a8550 0000000000000112 t zim_spl_SplObjectStorage_removeAll
000000000017ff80 0000000000000113 t _addproperty
0000000000236320 0000000000000113 T php_execute_simple_script
0000000000124590 0000000000000113 t sljit_emit_jump
000000000029d5d0 0000000000000113 T zend_parse_arg_long_cap_weak
00000000000d80f5 0000000000000114 t ZEND_FETCH_DIM_R_INDEX_SPEC_TMPVAR_TMPVARCV_HANDLER
00000000002e6aa0 0000000000000114 t ZEND_IS_NOT_IDENTICAL_SPEC_VAR_CONST_HANDLER
00000000002624d0 0000000000000114 T highlight_file
00000000001a1540 0000000000000114 t spl_filesystem_file_read_line.constprop.21
00000000002d94d0 0000000000000115 t ZEND_SEND_VAR_NO_REF_EX_SPEC_VAR_HANDLER
00000000001f76c0 0000000000000115 t php_strnatcmp
00000000001c75b0 0000000000000116 T _php_error_log_ex
00000000002a1e10 0000000000000116 t module_destructor
0000000000247bc0 0000000000000116 T php_output_handler_create_internal
0000000000257920 0000000000000116 t php_userstreamop_flush
00000000001abee0 0000000000000116 t spl_ptr_heap_insert
00000000000e4350 0000000000000116 t timezone_initialize
00000000002cd5e0 0000000000000116 T zend_ast_create_3
0000000000230860 0000000000000116 t zif_stream_isatty
0000000000202520 0000000000000116 t zif_strrev
00000000002da440 0000000000000117 t ZEND_ADD_ARRAY_ELEMENT_SPEC_CONST_CONST_HANDLER
00000000002e1b90 0000000000000117 t ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_CV_CONST_HANDLER
00000000002559b0 0000000000000117 t php_stdiop_close
0000000000253850 0000000000000117 t php_stream_temp_cast
000000000023e0b0 0000000000000117 T sapi_apply_default_charset
00000000002cf080 0000000000000117 T zend_std_get_debug_info
00000000002b9ea0 0000000000000117 T zend_user_serialize
00000000001328b0 0000000000000118 t check_anynewline.isra.25
00000000001328b0 0000000000000118 t check_vspace.isra.27
0000000000723c00 0000000000000118 d cli_sapi_module
0000000000723e20 0000000000000118 d cli_server_sapi_module
000000000072a5c0 0000000000000118 B sapi_module
00000000002b6f70 0000000000000118 T zend_alter_ini_entry_chars
00000000002b7090 0000000000000118 T zend_alter_ini_entry_chars_ex
00000000002d8570 0000000000000118 t zend_vm_get_opcode_handler_func
00000000002fbce0 0000000000000119 t ZEND_FETCH_OBJ_RW_SPEC_UNUSED_CV_HANDLER
00000000002fbb10 0000000000000119 t ZEND_FETCH_OBJ_UNSET_SPEC_UNUSED_CV_HANDLER
00000000002fbe00 0000000000000119 t ZEND_FETCH_OBJ_W_SPEC_UNUSED_CV_HANDLER
0000000000212bd0 0000000000000119 t compare_special_version_forms
00000000001a19c0 0000000000000119 t zim_spl_SplFileObject_seek
00000000001af210 0000000000000119 t zim_spl_SplFixedArray_offsetSet
00000000002e5330 000000000000011a t ZEND_ADD_SPEC_CONST_TMPVAR_HANDLER
00000000002e5450 000000000000011a t ZEND_ADD_SPEC_TMPVAR_CONST_HANDLER
00000000002db870 000000000000011a t ZEND_ASSIGN_SPEC_VAR_CONST_RETVAL_UNUSED_HANDLER
000000000017e770 000000000000011a t _class_const_string
00000000001c3500 000000000000011a t add_config_entry_cb
00000000002b38f0 000000000000011a t zif_class_alias
0000000000184ca0 000000000000011a t zim_reflection_class_getConstructor
00000000001ad920 000000000000011a t zim_spl_SplFixedArray_toArray
0000000000301210 000000000000011b t ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_UNUSED_CV_HANDLER
00000000001d2660 000000000000011b T zif_fgetc
000000000030f080 000000000000011c t ZEND_ASSIGN_OBJ_SPEC_CV_CV_OP_DATA_TMP_HANDLER
00000000000d91e9 000000000000011c t ZEND_TYPE_CHECK_SPEC_CV_HANDLER
00000000002cb050 000000000000011c T realpath_cache_del
00000000002e93a0 000000000000011c t zend_fetch_static_prop_helper_SPEC_CONST_UNUSED
0000000000191750 000000000000011c t zim_spl_CachingIterator_offsetUnset
000000000019fce0 000000000000011c t zim_spl_SplFileObject_fgetss
00000000000d8edc 000000000000011d t ZEND_JMPZNZ_SPEC_CV_HANDLER
000000000027a790 000000000000011d T do_bind_inherited_class
00000000002148d0 000000000000011d t reference_levdist.part.1
00000000002cbff0 000000000000011d T virtual_open
00000000002e56d0 000000000000011e t ZEND_SUB_SPEC_CONST_TMPVAR_HANDLER
00000000002e57f0 000000000000011e t ZEND_SUB_SPEC_TMPVAR_CONST_HANDLER
0000000000243840 000000000000011e t check_http_proxy
000000000012cd90 000000000000011e t peek_char
00000000001a0100 000000000000011e t zim_spl_SplFileObject_fread
00000000002bebe0 000000000000011f t lshift
00000000001a91f0 000000000000011f t spl_object_storage_new_ex
000000000019a280 000000000000011f t zim_spl_Array_next
00000000001a40b0 000000000000011f t zim_spl_SplFileInfo_getPathname
00000000001c9ff0 0000000000000120 T php_crypt
00000000006adc20 0000000000000120 d spl_funcs_FilterIterator
000000000069f200 0000000000000120 d timelib_reltext_lookup
0000000000707f20 0000000000000120 d zend_funcs_throwable
00000000002a23c0 0000000000000120 T zend_set_hash_symbol
000000000030ee80 0000000000000121 t ZEND_ASSIGN_OBJ_SPEC_CV_TMPVAR_OP_DATA_CV_HANDLER
00000000002fdb50 0000000000000121 t ZEND_ASSIGN_SPEC_CV_CV_RETVAL_UNUSED_HANDLER
000000000029efd0 0000000000000121 T add_get_assoc_string_ex
000000000029f100 0000000000000121 T add_get_assoc_stringl_ex
0000000000110120 0000000000000121 t get_grouplength
0000000000109720 0000000000000121 t timelib_get_time_zone_info
00000000000e1fa0 0000000000000121 t zif_date_offset_get
0000000000183610 0000000000000121 t zim_reflection_parameter_getDefaultValueConstantName
00000000002fe170 0000000000000122 t ZEND_BOOL_NOT_SPEC_CV_HANDLER
00000000002e1a60 0000000000000122 t ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_UNUSED_TMPVAR_HANDLER
000000000029e680 0000000000000122 T add_assoc_stringl_ex
00000000000dc762 0000000000000122 t make_real_object
000000000022cac0 0000000000000122 t stream_array_to_fd_set.isra.0.part.1
00000000002a6a40 0000000000000122 T zend_update_property
00000000001e4190 0000000000000122 t zif_image_type_to_mime_type
000000000017aaa0 0000000000000122 t zim_reflection_zend_extension_getName
00000000000d7fd2 0000000000000123 t ZEND_FETCH_DIM_R_INDEX_SPEC_TMPVAR_CONST_HANDLER
00000000002da130 0000000000000123 t ZEND_FETCH_OBJ_RW_SPEC_UNUSED_TMPVAR_HANDLER
00000000002da310 0000000000000123 t ZEND_FETCH_OBJ_UNSET_SPEC_UNUSED_TMPVAR_HANDLER
00000000002da000 0000000000000123 t ZEND_FETCH_OBJ_W_SPEC_UNUSED_TMPVAR_HANDLER
00000000001e34d0 0000000000000123 t php_handle_jpc
00000000000ebcd0 0000000000000123 t timelib_date_from_isodate
0000000000285fc0 0000000000000123 t zend_compile_unset
00000000002c73a0 0000000000000123 t zend_signal_deactivate
000000000022fbd0 0000000000000123 t zif_stream_set_blocking
00000000002f1690 0000000000000124 t ZEND_ASSIGN_OBJ_SPEC_CV_TMPVAR_OP_DATA_VAR_HANDLER
00000000002e6970 0000000000000124 t ZEND_IS_IDENTICAL_SPEC_VAR_CONST_HANDLER
0000000000250f10 0000000000000124 T _php_stream_passthru
0000000000331fe0 0000000000000124 t php_cli_server_client_dtor_wrapper
0000000000244280 0000000000000124 T php_register_variable_safe
00000000001cc440 0000000000000124 T zif_dl
00000000002dffb0 0000000000000125 t ZEND_BEGIN_SILENCE_SPEC_HANDLER
0000000000288c20 0000000000000125 t zend_compile_new
00000000002330f0 0000000000000125 t zif_random_int
0000000000202b70 0000000000000125 t zif_stripcslashes
00000000002035f0 0000000000000125 t zif_stripslashes
00000000001805c0 0000000000000125 t zim_reflection_class_getInterfaceNames
00000000001806f0 0000000000000125 t zim_reflection_class_getTraitNames
000000000019fed0 0000000000000125 t zim_spl_SplFileObject_fgetc
00000000000daf88 0000000000000126 t ZEND_JMP_SET_SPEC_CONST_HANDLER
0000000000335890 0000000000000126 t zif_cli_get_process_title
00000000001ee730 0000000000000127 T PHP_MD5Update
0000000000307fb0 0000000000000127 t ZEND_ADD_SPEC_CONST_CV_HANDLER
0000000000308210 0000000000000127 t ZEND_ADD_SPEC_CV_CONST_HANDLER
00000000002fe360 0000000000000127 t ZEND_BOOL_SPEC_CV_HANDLER
00000000002e1540 0000000000000127 t ZEND_FETCH_OBJ_R_SPEC_UNUSED_TMPVAR_HANDLER
000000000019dea0 0000000000000127 t spl_array_iterator_key
0000000000281bd0 0000000000000127 t zend_compile_func_cuf
0000000000279eb0 0000000000000127 t zend_concat3
0000000000313e90 0000000000000127 t zend_find_array_dim_slow.isra.26
00000000002d3f50 0000000000000127 T zend_objects_store_del
0000000000182030 0000000000000127 t zim_reflection_class_getReflectionConstants
0000000000182b10 0000000000000127 t zim_reflection_parameter_getDeclaringFunction
00000000002a5640 0000000000000128 T zend_fcall_info_args_ex
00000000002346b0 0000000000000128 t zif_set_time_limit
00000000001898e0 0000000000000129 t _extension_class_string
000000000029e550 0000000000000129 T add_assoc_string_ex
00000000002b4fa0 0000000000000129 t copy_class_or_interface_name
0000000000205fa0 0000000000000129 t zif_sscanf
00000000002e5a70 000000000000012a t ZEND_MUL_SPEC_TMPVAR_CONST_HANDLER
000000000010e940 000000000000012a t read_number
00000000001a0da0 000000000000012a t spl_filesystem_file_read_csv
00000000000ebef0 000000000000012a t timelib_parse_tz_cor
000000000029d830 000000000000012a T zend_parse_arg_str_weak
000000000019a3a0 000000000000012a t zim_spl_Array_getIterator
000000000030f1a0 000000000000012b t ZEND_ASSIGN_OBJ_SPEC_CV_CV_OP_DATA_VAR_HANDLER
00000000003085c0 000000000000012b t ZEND_SUB_SPEC_CONST_CV_HANDLER
0000000000308830 000000000000012b t ZEND_SUB_SPEC_CV_CONST_HANDLER
0000000000282110 000000000000012b t zend_compile_closure_uses
000000000029c2f0 000000000000012b T zend_try_exception_handler
00000000001f7d40 000000000000012b t zif_bin2hex
000000000028ffc0 000000000000012c T init_op_array
0000000000255ad0 000000000000012c t php_stdiop_read
000000000021a310 000000000000012c t php_stream_ftp_stream_close
00000000002be920 000000000000012c t pow5mult
0000000000199fb0 000000000000012c t spl_array_it_move_forward
00000000002b9fc0 000000000000012c T zend_user_unserialize
00000000002b27c0 000000000000012d t copy_function_name
000000000020be00 000000000000012d t zif_rawurldecode
000000000020b9c0 000000000000012d t zif_urldecode
00000000002e09e0 000000000000012e t ZEND_BOOL_NOT_SPEC_TMPVAR_HANDLER
00000000000dad29 000000000000012e t ZEND_JMPZ_EX_SPEC_CONST_HANDLER
0000000000169980 000000000000012e t php_pcre_init_pcre2
00000000000ddad9 000000000000012e t zend_verify_arg_error
0000000000308340 000000000000012f t ZEND_ADD_SPEC_CV_TMPVAR_HANDLER
00000000003080e0 000000000000012f t ZEND_ADD_SPEC_TMPVAR_CV_HANDLER
00000000002deee0 000000000000012f t ZEND_INSTANCEOF_SPEC_TMPVAR_UNUSED_HANDLER
00000000002456d0 000000000000012f t php_startup_auto_globals
000000000022a700 000000000000012f t strfilter_convert_filter
00000000001a8670 000000000000012f t zim_spl_SplObjectStorage_offsetGet
000000000024ef60 0000000000000130 t _php_stream_write_filtered
000000000011b5b0 0000000000000130 t do_callout
000000000029dfd0 0000000000000130 T object_and_properties_init
00000000002c7010 0000000000000130 T zend_signal
000000000018f030 0000000000000130 t zim_spl_RecursiveFilterIterator_hasChildren
00000000002e6830 0000000000000131 t ZEND_IS_NOT_IDENTICAL_SPEC_TMP_TMP_HANDLER
00000000000dae57 0000000000000131 t ZEND_JMPNZ_EX_SPEC_CONST_HANDLER
00000000000d3c2c 0000000000000131 t zend_ast_export_stmt
00000000001fd560 0000000000000131 t zif_basename
0000000000301b40 0000000000000132 t ZEND_IS_NOT_IDENTICAL_SPEC_CV_TMP_HANDLER
0000000000277af0 0000000000000132 t zend_mark_function_as_generator
00000000000e1750 0000000000000132 t zif_date_interval_create_from_date_string
00000000000ead80 0000000000000132 t zif_date_parse_from_format
00000000000e2370 0000000000000132 t zif_timezone_location_get
0000000000308960 0000000000000133 t ZEND_SUB_SPEC_CV_TMPVAR_HANDLER
00000000003086f0 0000000000000133 t ZEND_SUB_SPEC_TMPVAR_CV_HANDLER
0000000000215070 0000000000000133 t php_url_scanner_ex_deactivate
00000000002cb170 0000000000000133 T realpath_cache_lookup
00000000000e4050 0000000000000133 t zif_date_default_timezone_set
00000000001786d0 0000000000000133 t zif_pcntl_getpriority
000000000017f140 0000000000000133 t zim_reflection_class_setStaticPropertyValue
000000000019f740 0000000000000133 t zim_spl_SplFileObject_fgets
00000000000e1d90 0000000000000133 t zval_from_error_container
000000000030e8a0 0000000000000134 t ZEND_ASSIGN_OBJ_SPEC_VAR_CV_OP_DATA_CONST_HANDLER
00000000002f1080 0000000000000134 t ZEND_ASSIGN_OBJ_SPEC_VAR_TMPVAR_OP_DATA_CONST_HANDLER
00000000002b2d70 0000000000000134 t zif_property_exists
00000000001cfc10 0000000000000134 t zif_shell_exec
0000000000230980 0000000000000134 t zif_stream_socket_shutdown
0000000000309bf0 0000000000000135 t ZEND_IS_SMALLER_SPEC_CONST_CV_HANDLER
000000000030a860 0000000000000135 t ZEND_IS_SMALLER_SPEC_CV_CONST_HANDLER
00000000000eb5c0 0000000000000135 t timelib_day_of_week_ex
000000000027ce80 0000000000000135 t zend_compile_label
000000000027b0f0 0000000000000135 t zend_compile_typename
0000000000212320 0000000000000135 t zif_var_export
00000000002c9b20 0000000000000135 t zim_Generator_current
00000000002c99e0 0000000000000135 t zim_Generator_key
00000000001800a0 0000000000000135 t zim_reflection_class_hasMethod
00000000002db1f0 0000000000000136 t ZEND_ASSIGN_SPEC_CV_CONST_RETVAL_USED_HANDLER
00000000002e0b10 0000000000000136 t ZEND_BOOL_SPEC_TMPVAR_HANDLER
00000000001a1ea0 0000000000000136 t spl_filesystem_dir_open
0000000000309d30 0000000000000137 t ZEND_IS_SMALLER_OR_EQUAL_SPEC_CONST_CV_HANDLER
000000000030a9a0 0000000000000137 t ZEND_IS_SMALLER_OR_EQUAL_SPEC_CV_CONST_HANDLER
00000000000da960 0000000000000137 t ZEND_JMPZ_SPEC_CONST_HANDLER
0000000000308bf0 0000000000000137 t ZEND_MUL_SPEC_CV_CONST_HANDLER
0000000000109bd0 0000000000000137 t timelib_decimal_hour_to_hms
00000000002cf340 0000000000000137 T zend_std_write_dimension
00000000002ce5e0 0000000000000138 T zend_ast_destroy
00000000001ac000 0000000000000138 t zim_spl_SplPriorityQueue_insert
0000000000301f60 0000000000000139 t ZEND_IS_IDENTICAL_SPEC_CV_CV_HANDLER
0000000000185ae0 0000000000000139 t zim_reflection_class_constant_getDocComment
0000000000185160 0000000000000139 t zim_reflection_property_getDocComment
00000000002e01b0 000000000000013a t ZEND_INSTANCEOF_SPEC_TMPVAR_CONST_HANDLER
00000000002e1cb0 000000000000013a t ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_CV_TMPVAR_HANDLER
00000000000daa97 000000000000013a t ZEND_JMPNZ_SPEC_CONST_HANDLER
0000000000222db0 000000000000013a T php_info_print_css
0000000000248c10 000000000000013a T php_output_handler_start
00000000001c3f20 000000000000013a t user_tick_function_call
0000000000273870 000000000000013a t zend_mm_init
00000000001c55a0 000000000000013a t zif_getprotobynumber
00000000001aa300 000000000000013a t zim_spl_SplDoublyLinkedList_offsetGet
00000000001f4a90 000000000000013b t zif_rand
00000000000e2230 000000000000013b t zif_timezone_offset_get
00000000000d85b6 000000000000013c t ZEND_FE_FETCH_R_SIMPLE_SPEC_VAR_CV_RETVAL_UNUSED_HANDLER
0000000000232f90 000000000000013c t zif_random_bytes
0000000000190dd0 000000000000013c t zim_spl_CallbackFilterIterator_accept
00000000001283b0 000000000000013d t emit_mov_half
00000000000d3747 000000000000013d t zend_ast_export_encaps_list
00000000002273b0 000000000000013d t zif_stream_bucket_make_writeable
000000000017a960 000000000000013d t zim_reflection_extension_getVersion
00000000001a93f0 000000000000013d t zim_spl_SplObjectStorage_removeAllExcept
00000000002be1c0 000000000000013e t b2d
000000000029c420 000000000000013e T zend_execute_scripts
00000000002c69c0 000000000000013e t zend_signal_handler
000000000017bcc0 000000000000013e t zim_reflection_class_getNamespaceName
0000000000191870 000000000000013e t zim_spl_CachingIterator_offsetExists
00000000002fe680 000000000000013f t ZEND_FETCH_OBJ_R_SPEC_UNUSED_CV_HANDLER
0000000000163800 000000000000013f t _pcre2_study_8
000000000023b7b0 000000000000013f T php_check_open_basedir_ex
00000000001e62f0 000000000000013f T php_info_print_module
0000000000198cb0 000000000000013f t spl_array_skip_protected
00000000001925f0 000000000000013f t spl_recursive_tree_iterator_get_entry.isra.27
000000000010d060 000000000000013f t timelib_sub
00000000000d3f95 000000000000013f T zend_ast_export
00000000002d6f40 000000000000013f T zend_do_implement_trait
00000000001cb7a0 000000000000013f t zif_getcwd
00000000001fb740 000000000000013f t zif_implode
000000000017e890 000000000000013f t zim_reflection_class_constant___toString
000000000017edb0 000000000000013f t zim_reflection_extension_getFunctions
000000000069ccc0 0000000000000140 d date_funcs_timezone
00000000007083e0 0000000000000140 d generator_functions
00000000007206a0 0000000000000140 d ini_entries
00000000007209a0 0000000000000140 d ini_entries
00000000001affa0 0000000000000140 t php_array_natural_general_compare
0000000000214ca0 0000000000000140 T php_create_incomplete_class
00000000006a9d20 0000000000000140 d reflection_zend_extension_functions
000000000032bd10 0000000000000140 t sapi_cli_ini_defaults
00000000006ad320 0000000000000140 d spl_funcs_LimitIterator
00000000006ad6c0 0000000000000140 d spl_funcs_RegexIterator
000000000029da50 0000000000000140 T zend_update_class_constants
00000000002b2990 0000000000000140 t zif_set_exception_handler
000000000018bb00 0000000000000140 t zif_spl_autoload_extensions
00000000001801e0 0000000000000140 t zim_reflection_class_getProperties
00000000002e66e0 0000000000000141 t ZEND_IS_IDENTICAL_SPEC_TMP_TMP_HANDLER
00000000002e6bc0 0000000000000141 t ZEND_IS_IDENTICAL_SPEC_VAR_TMP_HANDLER
0000000000252240 0000000000000141 T _php_stream_opendir
0000000000293c10 0000000000000141 T string_compare_function_ex
0000000000262770 0000000000000141 T zend_multibyte_yyinput_again
00000000001cb4d0 0000000000000141 t zif_chroot
00000000001c1740 0000000000000141 t zif_constant
000000000022f7b0 0000000000000141 t zif_stream_context_create
00000000003019f0 0000000000000142 t ZEND_IS_IDENTICAL_SPEC_CV_TMP_HANDLER
00000000001c8180 0000000000000142 t browscap_bdata_dtor
00000000002be6b0 0000000000000142 t d2b
000000000021a1c0 0000000000000142 t php_ftp_dirstream_read
00000000001e2020 0000000000000143 t zif_htmlspecialchars_decode
00000000001f5360 0000000000000143 t zif_mt_rand
0000000000318cc0 0000000000000144 t ZEND_ASSIGN_REF_SPEC_CV_CV_HANDLER
00000000000d9bcf 0000000000000144 t ZEND_ISSET_ISEMPTY_CV_SPEC_CV_UNUSED_EMPTY_HANDLER
000000000014d6c0 0000000000000144 t do_callout
000000000018fd30 0000000000000144 t spl_recursive_it_rewind_ex
0000000000293d60 0000000000000144 T string_case_compare_function
00000000002cd700 0000000000000144 T zend_ast_create_4
0000000000308470 0000000000000146 t ZEND_ADD_SPEC_CV_CV_HANDLER
0000000000191480 0000000000000146 t zim_spl_CachingIterator_offsetSet
000000000023b8f0 0000000000000147 T OnUpdateBaseDir
00000000001ee860 0000000000000147 T PHP_MD5Final
00000000002fe7e0 0000000000000147 t ZEND_FETCH_OBJ_R_SPEC_CV_TMPVAR_HANDLER
000000000012a4c0 0000000000000147 t sljit_emit_fast_enter.constprop.66
000000000027eb10 0000000000000147 t zend_compile_const_expr_class_const
00000000000dd6d4 0000000000000147 t zend_wrong_assign_to_variable_reference.constprop.37
00000000003020a0 0000000000000148 t ZEND_IS_NOT_IDENTICAL_SPEC_CV_CV_HANDLER
000000000027c300 0000000000000148 t zend_list_has_assign_to
000000000029b850 0000000000000148 T zend_print_flat_zval_r
000000000012a370 0000000000000149 t sljit_emit_cmov.constprop.61
00000000002c7570 0000000000000149 t zend_signal_startup
00000000002e1690 000000000000014a t ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_TMPVAR_CONST_HANDLER
0000000000308aa0 000000000000014a t ZEND_SUB_SPEC_CV_CV_HANDLER
0000000000292bc0 000000000000014a T zend_string_tolower_ex
000000000027aca0 000000000000014a T zend_unmangle_property_name_ex
00000000001ac510 000000000000014a t zim_spl_SplPriorityQueue_extract
000000000028ced0 000000000000014a t zval_update_constant_ex.part.2
0000000000331e70 000000000000014b t php_cli_server_client_read_request_on_header_field
00000000000e1890 000000000000014b t zif_checkdate
00000000001cda20 000000000000014b t zif_gethostbynamel
00000000000dbdd6 000000000000014c t ZEND_IS_EQUAL_SPEC_CONST_CONST_HANDLER
0000000000166bc0 000000000000014c t _pcre2_find_bracket_8
0000000000332fa0 000000000000014c t php_cli_server_dispatch_router.isra.9
00000000002792d0 000000000000014c t zend_try_compile_ct_bound_init_user_func
00000000002e7150 000000000000014d t ZEND_IS_SMALLER_SPEC_CONST_TMPVAR_HANDLER
00000000002e7440 000000000000014d t ZEND_IS_SMALLER_SPEC_TMPVAR_CONST_HANDLER
0000000000291d90 000000000000014d T convert_to_object
00000000001ab890 000000000000014d t spl_ptr_heap_delete_top
00000000002dfc50 000000000000014d t zend_fe_reset_iterator
000000000029c840 000000000000014d t zend_sort_modules
00000000000cc40b 000000000000014d T zend_throw_error
000000000017a810 000000000000014d t zim_reflection_class_getExtensionName
000000000017ad20 000000000000014d t zim_reflection_zend_extension_getAuthor
000000000017afc0 000000000000014d t zim_reflection_zend_extension_getCopyright
000000000017ae70 000000000000014d t zim_reflection_zend_extension_getURL
000000000017abd0 000000000000014d t zim_reflection_zend_extension_getVersion
0000000000221840 000000000000014e t php_stream_apply_filter_list
00000000003304c0 000000000000014e t sapi_cli_server_register_entry_cb
00000000000d5088 000000000000014f t ZEND_DO_ICALL_SPEC_RETVAL_UNUSED_HANDLER
00000000000dbf22 000000000000014f t ZEND_IS_NOT_EQUAL_SPEC_CONST_CONST_HANDLER
00000000002e72a0 000000000000014f t ZEND_IS_SMALLER_OR_EQUAL_SPEC_CONST_TMPVAR_HANDLER
00000000002e7590 000000000000014f t ZEND_IS_SMALLER_OR_EQUAL_SPEC_TMPVAR_CONST_HANDLER
0000000000308d30 000000000000014f t ZEND_MUL_SPEC_CV_TMPVAR_HANDLER
000000000019a6a0 000000000000014f t spl_array_it_get_current_data
00000000002a59a0 000000000000014f T zend_fcall_info_call
00000000001ede50 000000000000014f t zif_intdiv
0000000000173d70 0000000000000150 t php_json_parser_object_update
0000000000723220 0000000000000150 d pso_list
00000000001b4dc0 0000000000000150 t zif_max
00000000001b4c70 0000000000000150 t zif_min
0000000000182c90 0000000000000150 t zim_reflection_class_getMethods
00000000002fde00 0000000000000151 t ZEND_FETCH_OBJ_W_SPEC_CV_CV_HANDLER
00000000002e6d10 0000000000000151 t ZEND_IS_NOT_IDENTICAL_SPEC_VAR_TMP_HANDLER
000000000024f860 0000000000000151 T _php_stream_alloc
000000000011ae80 0000000000000151 T php_pcre2_config
00000000002cb7b0 0000000000000151 T virtual_chdir_file
000000000027bab0 0000000000000151 t zend_ast_append_str
00000000000ce0fa 0000000000000151 t zend_ast_export_ns_name.constprop.3
00000000001d9430 0000000000000151 t zif_clearstatcache
0000000000197da0 0000000000000151 t zim_spl_AppendIterator_append
0000000000169bb0 0000000000000151 t zm_info_pcre
000000000024f090 0000000000000152 t _php_stream_search_delim
0000000000128250 0000000000000152 t emit_mov_byte
0000000000110250 0000000000000152 t find_dupname_details
0000000000170480 0000000000000152 t zif_preg_grep
00000000002f1b60 0000000000000153 t ZEND_FETCH_OBJ_W_SPEC_CV_TMPVAR_HANDLER
00000000003021f0 0000000000000153 t ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_CV_CV_HANDLER
0000000000279760 0000000000000153 t zend_add_ns_func_name_literal
000000000014d1c0 0000000000000154 T php_pcre2_jit_stack_create
00000000000ec230 0000000000000154 t timelib_get_relative_text
000000000018f160 0000000000000154 t zim_spl_RecursiveFilterIterator_getChildren
0000000000225ee0 0000000000000155 T PHP_SHA1Update
0000000000181df0 0000000000000155 t reflection_class_constant_factory.isra.1
0000000000123bb0 0000000000000155 t sljit_free_exec
00000000002d5990 0000000000000155 T zend_do_inherit_interfaces
0000000000308e80 0000000000000156 t ZEND_MUL_SPEC_CV_CV_HANDLER
00000000002ecd10 0000000000000157 t ZEND_ASSIGN_DIM_SPEC_CV_UNUSED_OP_DATA_CONST_HANDLER
0000000000301e00 0000000000000157 t ZEND_IS_NOT_IDENTICAL_SPEC_CV_VAR_HANDLER
000000000030b700 0000000000000157 t ZEND_IS_SMALLER_SPEC_CV_CV_HANDLER
000000000016a310 0000000000000157 t make_subpats_table.isra.0
00000000001d2a70 0000000000000157 t zif_fscanf
00000000002eb8e0 0000000000000158 t ZEND_FETCH_CLASS_CONSTANT_SPEC_UNUSED_CONST_HANDLER
00000000000dabd1 0000000000000158 t ZEND_JMPZNZ_SPEC_CONST_HANDLER
000000000029fdb0 0000000000000158 T add_property_stringl_ex
000000000012b510 0000000000000158 t check_partial
00000000001d3dc0 0000000000000158 t php_if_ftruncate
00000000002e8b70 0000000000000158 t zend_fetch_static_prop_helper_SPEC_CONST_CONST
00000000002336c0 0000000000000158 t zif_hrtime
00000000000e3ef0 0000000000000158 t zif_timezone_abbreviations_list
000000000030b860 0000000000000159 t ZEND_IS_SMALLER_OR_EQUAL_SPEC_CV_CV_HANDLER
000000000032fef0 0000000000000159 t add_response_header
000000000017bfa0 0000000000000159 t zim_reflection_method_getClosure
00000000002e5570 000000000000015a t ZEND_ADD_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002ed390 000000000000015a t ZEND_DECLARE_LAMBDA_FUNCTION_SPEC_CONST_UNUSED_HANDLER
00000000002e5ba0 000000000000015a t ZEND_MUL_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002301a0 000000000000015a t zif_stream_set_read_buffer
000000000022fec0 000000000000015a t zif_stream_set_write_buffer
000000000018ab50 000000000000015a t zim_reflection_class_getInterfaces
000000000018acb0 000000000000015a t zim_reflection_class_getTraits
0000000000258aa0 000000000000015b t user_stream_create_object.isra.0
00000000002f11c0 000000000000015c t ZEND_ASSIGN_OBJ_SPEC_VAR_TMPVAR_OP_DATA_TMP_HANDLER
00000000002e6ff0 000000000000015c t ZEND_IS_NOT_IDENTICAL_SPEC_VAR_VAR_HANDLER
00000000001baf30 000000000000015c T php_array_merge
000000000044c5e0 000000000000015c r php_cli_server_css
000000000025a570 000000000000015c t php_userstreamop_stat
00000000002856e0 000000000000015c t zend_compile_yield
000000000018b020 000000000000015d t add_extension_class
000000000017c100 000000000000015d t zim_reflection_function_getStaticVariables
00000000002ecb70 000000000000015e t ZEND_ADD_ARRAY_ELEMENT_SPEC_VAR_UNUSED_HANDLER
00000000002e5910 000000000000015e t ZEND_SUB_SPEC_TMPVAR_TMPVAR_HANDLER
00000000001921a0 000000000000015e t spl_dual_it_free_storage
0000000000293ab0 000000000000015e T string_compare_function
00000000002c4470 000000000000015e t zend_closure_call_magic
00000000002eb780 000000000000015f t ZEND_FETCH_CLASS_CONSTANT_SPEC_VAR_CONST_HANDLER
00000000002e13c0 000000000000015f t ZEND_FETCH_OBJ_R_SPEC_TMPVAR_TMPVAR_HANDLER
000000000027b390 000000000000015f t zend_try_ct_eval_class_const
000000000017ec50 000000000000015f t zim_reflection_class_getConstant
000000000017efe0 000000000000015f t zim_reflection_class_getStaticPropertyValue
00000000000da5a5 0000000000000160 t ZEND_STRLEN_SPEC_CONST_HANDLER
000000000029fc50 0000000000000160 T add_property_string_ex
0000000000338720 0000000000000160 r default_format_map
00000000006a8b60 0000000000000160 d pcre_functions
00000000000c9c89 0000000000000160 T php_log_err_with_severity
00000000001fbee0 0000000000000160 T php_string_tolower
00000000001fbc80 0000000000000160 T php_string_toupper
0000000000127290 0000000000000160 t sljit_emit_ijump
00000000006ac980 0000000000000160 d spl_funcs_AppendIterator
00000000002786c0 0000000000000160 t zend_is_assign_to_self.part.34
000000000027b230 0000000000000160 t zend_try_compile_const_expr_resolve_class_name
00000000001caeb0 0000000000000160 t zif_rewinddir
0000000000310960 0000000000000161 t ZEND_FETCH_OBJ_UNSET_SPEC_CV_CV_HANDLER
00000000002c6b00 0000000000000161 t zend_signal_handler_defer
00000000002b2440 0000000000000161 t zif_func_get_arg
00000000002dbc50 0000000000000162 t ZEND_ASSIGN_SPEC_VAR_TMP_RETVAL_USED_HANDLER
00000000001b9890 0000000000000162 t zif_array_push
00000000001a34a0 0000000000000162 t zim_spl_SplFileInfo_getATime
00000000001a3780 0000000000000162 t zim_spl_SplFileInfo_getCTime
00000000001a3330 0000000000000162 t zim_spl_SplFileInfo_getGroup
00000000001a2ee0 0000000000000162 t zim_spl_SplFileInfo_getInode
00000000001a3610 0000000000000162 t zim_spl_SplFileInfo_getMTime
00000000001a31c0 0000000000000162 t zim_spl_SplFileInfo_getOwner
00000000001a2d70 0000000000000162 t zim_spl_SplFileInfo_getPerms
00000000001a3050 0000000000000162 t zim_spl_SplFileInfo_getSize
00000000001a38f0 0000000000000162 t zim_spl_SplFileInfo_getType
00000000001a2a90 0000000000000162 t zim_spl_SplFileInfo_isDir
00000000001a3d40 0000000000000162 t zim_spl_SplFileInfo_isExecutable
00000000001a3eb0 0000000000000162 t zim_spl_SplFileInfo_isFile
00000000001a2c00 0000000000000162 t zim_spl_SplFileInfo_isLink
00000000001a3bd0 0000000000000162 t zim_spl_SplFileInfo_isReadable
00000000001a3a60 0000000000000162 t zim_spl_SplFileInfo_isWritable
0000000000213540 0000000000000162 t zm_startup_assert
0000000000291210 0000000000000163 T get_binary_op
00000000001e1ea0 0000000000000163 t register_html_constants
0000000000191310 0000000000000163 t zim_spl_CachingIterator_setFlags
00000000001a0b10 0000000000000163 t zim_spl_SplTempFileObject___construct
000000000030c720 0000000000000164 t ZEND_CONCAT_SPEC_CV_CONST_HANDLER
000000000027c8f0 0000000000000164 t zend_compile_func_array_slice
0000000000286cf0 0000000000000164 t zend_compile_global_var
0000000000194120 0000000000000164 t zim_spl_RecursiveCallbackFilterIterator_getChildren
000000000030af60 0000000000000165 t ZEND_IS_SMALLER_SPEC_CV_TMPVAR_HANDLER
0000000000309ed0 0000000000000165 t ZEND_IS_SMALLER_SPEC_TMPVAR_CV_HANDLER
00000000003e9060 0000000000000165 r autoposstab
000000000023fff0 0000000000000165 t normalize_protected_variable
000000000010cef0 0000000000000165 t timelib_add
0000000000203080 0000000000000165 t zif_addcslashes
00000000001f5060 0000000000000165 t zif_mt_srand
00000000003014c0 0000000000000166 t ZEND_JMPNZ_EX_SPEC_CV_HANDLER
00000000001bf2b0 0000000000000166 t zif_array_product
00000000000dc544 0000000000000167 t ZEND_COUNT_SPEC_CONST_UNUSED_HANDLER
000000000030b0d0 0000000000000167 t ZEND_IS_SMALLER_OR_EQUAL_SPEC_CV_TMPVAR_HANDLER
000000000030a040 0000000000000167 t ZEND_IS_SMALLER_OR_EQUAL_SPEC_TMPVAR_CV_HANDLER
0000000000278470 0000000000000167 t lookup_cv.isra.13
00000000000e7e90 0000000000000167 t php_date
00000000002a3c70 0000000000000167 T zend_make_callable
00000000001b3fe0 0000000000000167 t zif_arsort
00000000001b3e70 0000000000000167 t zif_asort
00000000001cd3e0 0000000000000167 t zif_gethostname
00000000001b42c0 0000000000000167 t zif_rsort
00000000001b4150 0000000000000167 t zif_sort
00000000001c0b00 0000000000000168 T php_base64_encode
0000000000252a60 0000000000000168 T php_stream_context_set_option
00000000001c0ed0 0000000000000168 t zif_base64_decode
000000000030c320 0000000000000169 t ZEND_CONCAT_SPEC_CONST_CV_HANDLER
00000000001e8950 0000000000000169 T php_combined_lcg
00000000003010a0 000000000000016a t ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_TMPVAR_CV_HANDLER
00000000002dca40 000000000000016a t ZEND_YIELD_SPEC_UNUSED_UNUSED_HANDLER
0000000000240350 000000000000016a t multipart_buffer_read.constprop.1
00000000001c1a20 000000000000016a t php_inet_pton
00000000001bc1b0 000000000000016a t zif_array_values
00000000002b1de0 000000000000016a t zif_get_resource_type
00000000002a8840 000000000000016b T zend_hash_iterator_add
000000000022dca0 000000000000016b t zif_stream_socket_get_name
00000000002ccc90 000000000000016c t zend_ast_tree_copy
000000000030e9e0 000000000000016d t ZEND_ASSIGN_OBJ_SPEC_VAR_CV_OP_DATA_TMP_HANDLER
0000000000279bf0 000000000000016d t zend_do_free
00000000002b9b20 000000000000016d T zend_user_it_valid
00000000002063c0 000000000000016d t zif_str_shuffle
000000000019dcc0 000000000000016e t spl_array_iterator_append
00000000003330f0 000000000000016f t php_cli_server_client_read_request.constprop.14
000000000012a610 000000000000016f t sljit_emit_fast_return.constprop.67
000000000019a990 000000000000016f t spl_array_it_valid
00000000001aae80 000000000000016f t spl_dllist_object_get_debug_info
0000000000124380 0000000000000170 t fast_forward_char_pair_sse2_compare
00000000002fdc80 0000000000000171 t ZEND_FETCH_OBJ_RW_SPEC_CV_CV_HANDLER
00000000002e7730 0000000000000171 t ZEND_IS_SMALLER_SPEC_TMPVAR_TMPVAR_HANDLER
00000000001e5d40 0000000000000171 T php_get_uname
0000000000313700 0000000000000172 t ZEND_VERIFY_RETURN_TYPE_SPEC_TMP_UNUSED_HANDLER
00000000001c9250 0000000000000172 t browscap_entry_to_array.isra.1
00000000002625f0 0000000000000172 T highlight_string
00000000000d3aba 0000000000000172 t zend_ast_export_var.isra.1
00000000002eb120 0000000000000172 t zend_fetch_static_prop_helper_SPEC_CV_UNUSED
0000000000261190 0000000000000172 T zend_save_lexical_state
00000000001d2f70 0000000000000172 T zif_fseek
00000000001d33b0 0000000000000172 t zif_rmdir
000000000019f0d0 0000000000000172 t zim_spl_DirectoryIterator_getExtension
00000000001a7530 0000000000000172 t zim_spl_MultipleIterator_valid
0000000000310ad0 0000000000000173 t ZEND_FETCH_OBJ_UNSET_SPEC_CV_TMPVAR_HANDLER
00000000002e17e0 0000000000000173 t ZEND_ISSET_ISEMPTY_PROP_OBJ_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002e78b0 0000000000000173 t ZEND_IS_SMALLER_OR_EQUAL_SPEC_TMPVAR_TMPVAR_HANDLER
00000000001a8f50 0000000000000173 t zim_spl_MultipleIterator_attachIterator
0000000000321990 0000000000000174 t ZEND_RETURN_BY_REF_SPEC_VAR_HANDLER
000000000028a7e0 0000000000000174 t zend_compile_namespace
0000000000316290 0000000000000174 t zend_pre_incdec_property_helper_SPEC_UNUSED_CONST
00000000002b4700 0000000000000174 t zif_strncasecmp
00000000002b4880 0000000000000174 t zif_strncmp
00000000002f1320 0000000000000175 t ZEND_ASSIGN_OBJ_SPEC_VAR_TMPVAR_OP_DATA_VAR_HANDLER
00000000002e2740 0000000000000175 t ZEND_ROPE_END_SPEC_TMP_TMPVAR_HANDLER
0000000000280490 0000000000000175 t zend_compile_class_const_decl
00000000002b67e0 0000000000000175 t zend_restore_ini_entry_cb
000000000019b4d0 0000000000000175 t zim_spl_Array_exchangeArray
0000000000293160 0000000000000176 T zend_long_to_str
00000000001b9a00 0000000000000176 t zif_array_pop
00000000001915d0 0000000000000176 t zim_spl_CachingIterator_offsetGet
0000000000301c80 0000000000000177 t ZEND_IS_IDENTICAL_SPEC_CV_VAR_HANDLER
000000000028f580 0000000000000177 T zend_strip
00000000000cd763 0000000000000177 T zend_throw_exception
000000000017be10 0000000000000177 t zim_reflection_class_getShortName
000000000017b430 0000000000000177 t zim_reflection_class_hasProperty
00000000002dfad0 0000000000000178 t ZEND_BIND_STATIC_SPEC_CV_CONST_HANDLER
0000000000285e40 0000000000000178 t zend_compile_assign_ref
0000000000294c40 0000000000000179 t _zendi_convert_scalar_to_number
000000000024e190 0000000000000179 t zif_ob_get_status
00000000001af330 0000000000000179 t zm_startup_spl_fixedarray
000000000030e720 000000000000017a t ZEND_ASSIGN_OBJ_SPEC_VAR_TMPVAR_OP_DATA_CV_HANDLER
00000000002dc6e0 000000000000017a t ZEND_YIELD_SPEC_UNUSED_TMP_HANDLER
00000000000e8bd0 000000000000017a t zif_idate
00000000002aa060 000000000000017b T zend_hash_str_add_new
0000000000317890 000000000000017b t zend_post_incdec_property_helper_SPEC_UNUSED_CONST
0000000000317be0 000000000000017b t zend_post_incdec_property_helper_SPEC_UNUSED_CV
000000000028ee10 000000000000017c T zend_set_local_var
00000000002e6e70 000000000000017d t ZEND_IS_IDENTICAL_SPEC_VAR_VAR_HANDLER
0000000000230020 000000000000017d t zif_stream_set_chunk_size
00000000001aa980 000000000000017d t zim_spl_SplDoublyLinkedList_serialize
00000000002edce0 000000000000017e t ZEND_CLONE_SPEC_UNUSED_HANDLER
00000000000d86f2 000000000000017e t ZEND_FE_FETCH_R_SIMPLE_SPEC_VAR_CV_RETVAL_USED_HANDLER
0000000000321660 000000000000017e t ZEND_HANDLE_EXCEPTION_SPEC_HANDLER
00000000000dd217 000000000000017e t ZEND_VERIFY_RETURN_TYPE_SPEC_CONST_UNUSED_HANDLER
00000000000c9218 000000000000017e t get_ucp.isra.2.constprop.5
0000000000178810 000000000000017e t zif_pcntl_setpriority
000000000010f310 000000000000017f t find_firstassertedcu
00000000001af580 000000000000017f t php_array_key_compare
00000000002347e0 000000000000017f T php_stream_open_for_zend_ex
00000000001fdcc0 000000000000017f T php_stristr
0000000000199670 000000000000017f t spl_array_get_debug_info
00000000002c7e30 000000000000017f T zend_generator_restore_call_stack
00000000001cb620 000000000000017f t zif_chdir
000000000019ab00 000000000000017f t zim_spl_Array_valid
00000000000dc3c4 0000000000000180 t ZEND_IN_ARRAY_SPEC_CONST_CONST_HANDLER
0000000000707d40 0000000000000180 d default_exception_functions
000000000069c9a0 0000000000000180 d ini_entries
0000000000708260 0000000000000180 d known_strings
0000000000171370 0000000000000180 t php_json_encode_double
00000000002fd9c0 0000000000000181 t ZEND_ASSIGN_SPEC_CV_CV_RETVAL_USED_HANDLER
000000000012e0c0 0000000000000181 t do_casefulcmp.isra.49
000000000023dd00 0000000000000181 T sapi_get_default_content_type
00000000002d02e0 0000000000000181 T zend_std_compare_objects
0000000000209290 0000000000000181 t zif_openlog
000000000017a2c0 0000000000000181 t zim_reflection_class_isCloneable
0000000000180e70 0000000000000181 t zim_reflection_property_setValue
00000000002fd580 0000000000000182 t ZEND_ASSIGN_SPEC_VAR_CV_RETVAL_UNUSED_HANDLER
0000000000301330 0000000000000182 t ZEND_JMPZ_EX_SPEC_CV_HANDLER
000000000020baf0 0000000000000182 T php_raw_url_encode
0000000000280610 0000000000000182 t zend_compile_const_decl
0000000000180430 0000000000000182 t zim_reflection_class_getConstants
00000000001aa440 0000000000000182 t zim_spl_SplDoublyLinkedList_offsetSet
0000000000219fc0 0000000000000182 t zm_deactivate_url_scanner_ex
00000000002f1cc0 0000000000000183 t ZEND_FETCH_OBJ_RW_SPEC_CV_TMPVAR_HANDLER
00000000002bea50 0000000000000183 t diff
0000000000197c10 0000000000000183 t spl_append_it_fetch
0000000000278fd0 0000000000000183 t zend_emit_return_type_check
0000000000317a30 0000000000000183 t zend_post_incdec_property_helper_SPEC_UNUSED_TMPVAR
000000000029ce30 0000000000000183 t zend_startup_module_ex.part.6
00000000001bd930 0000000000000183 t zif_array_change_key_case
00000000001cad20 0000000000000183 t zif_closedir
000000000017d1d0 0000000000000183 t zim_reflection_class_isSubclassOf
00000000001e6490 0000000000000184 t php_info_print_stream_hash
00000000002a51f0 0000000000000184 T zend_parse_method_parameters
000000000028ef90 0000000000000184 T zend_set_local_var_str
00000000001ed380 0000000000000184 t zif_base_convert
00000000002b2ad0 0000000000000184 t zif_set_error_handler
000000000030eb50 0000000000000185 t ZEND_ASSIGN_OBJ_SPEC_VAR_CV_OP_DATA_VAR_HANDLER
0000000000304980 0000000000000185 t ZEND_ROPE_END_SPEC_TMP_CV_HANDLER
00000000002811e0 0000000000000185 t zend_compile_class_ref_ex
0000000000284e10 0000000000000185 t zend_compile_method_call
00000000002eac80 0000000000000186 t zend_fetch_static_prop_helper_SPEC_CV_VAR
00000000002a5380 0000000000000186 T zend_parse_method_parameters_ex
00000000002c42e0 0000000000000186 t zend_valid_closure_binding
00000000000e2ff0 0000000000000187 t date_interval_has_property
00000000001aab00 0000000000000187 t zim_spl_SplDoublyLinkedList_unserialize
0000000000247830 0000000000000188 T php_output_register_constants
00000000002049c0 0000000000000188 t zif_strip_tags
00000000000ea140 0000000000000188 t zim_DateTimeImmutable___construct
000000000031d570 0000000000000189 t ZEND_INIT_DYNAMIC_CALL_SPEC_TMPVAR_HANDLER
0000000000437a80 0000000000000189 r yytranslate
0000000000279420 0000000000000189 t zend_handle_loops_and_finally_ex
000000000019e6e0 000000000000018a t zim_spl_SplFileObject_setCsvControl
0000000000217bf0 000000000000018b t php_ini_on_update_hosts.isra.3
00000000001c1890 000000000000018b t zif_inet_ntop
0000000000246af0 000000000000018c T php_network_accept_incoming
00000000001f7980 000000000000018c t php_similar_char
000000000023f4c0 000000000000018c T sapi_register_post_entry
00000000002e9d40 000000000000018c t zend_fetch_static_prop_helper_SPEC_TMPVAR_VAR
00000000001c4240 000000000000018c t zif_php_strip_whitespace
00000000001c0c70 000000000000018d T php_base64_decode_ex
00000000002cc1f0 000000000000018d T virtual_rename
00000000002607b0 000000000000018d t zend_compile
000000000028a960 000000000000018d t zend_compile_compound_assign
0000000000277fb0 000000000000018d t zend_find_live_range
00000000001ddc90 000000000000018d t zif_header
0000000000281560 000000000000018e t zend_compile_simple_var_no_cv.isra.39
00000000002fe4d0 000000000000018f t ZEND_FETCH_OBJ_R_SPEC_TMPVAR_CV_HANDLER
0000000000236480 000000000000018f T php_handle_auth_data
00000000002f4dd0 0000000000000190 t init_func_run_time_cache_ex.isra.0
00000000001c5350 0000000000000190 t zif_getservbyport
000000000030ece0 0000000000000192 t ZEND_ASSIGN_OBJ_SPEC_VAR_CV_OP_DATA_CV_HANDLER
000000000019a7f0 0000000000000192 t spl_array_it_get_current_key
00000000001a03e0 0000000000000192 t spl_filesystem_object_cast
00000000002db4d0 0000000000000193 t ZEND_ASSIGN_SPEC_CV_VAR_RETVAL_UNUSED_HANDLER
0000000000127040 0000000000000193 t emit_lea_binary
00000000000e0270 0000000000000193 t php_timezone_to_string
000000000022cbf0 0000000000000193 t stream_array_from_fd_set.part.2
00000000002d0470 0000000000000193 T zend_std_get_constructor
0000000000190730 0000000000000193 t zim_spl_RecursiveTreeIterator_setPrefixPart
00000000002e35b0 0000000000000194 t ZEND_FE_RESET_R_SPEC_TMP_HANDLER
000000000010ea70 0000000000000194 t read_repeat_counts
00000000002cb910 0000000000000194 T virtual_realpath
000000000029d2a0 0000000000000194 T zend_parse_arg_class
0000000000316430 0000000000000194 t zend_pre_incdec_property_helper_SPEC_UNUSED_TMPVAR
000000000025a9b0 0000000000000194 t zif_stream_wrapper_register
00000000002cc880 0000000000000195 T virtual_popen
00000000001c1c60 0000000000000195 t zif_long2ip
000000000017e9d0 0000000000000196 t _extension_const_string
00000000001c3360 0000000000000196 t zif_get_cfg_var
00000000002ec240 0000000000000197 t ZEND_CONCAT_SPEC_CONST_TMPVAR_HANDLER
00000000002fe950 0000000000000197 t ZEND_FETCH_OBJ_R_SPEC_CV_CV_HANDLER
00000000003165f0 0000000000000197 t zend_pre_incdec_property_helper_SPEC_UNUSED_CV
0000000000307bc0 0000000000000198 t ZEND_FE_RESET_R_SPEC_CV_HANDLER
0000000000181000 0000000000000198 t _addinientry
00000000001fd3c0 0000000000000198 T php_basename
0000000000165a30 0000000000000198 T php_pcre2_substring_nametable_scan
000000000019f5a0 0000000000000198 t spl_filesystem_file_read
00000000000e9a40 0000000000000198 t zif_date_create
00000000000e9be0 0000000000000198 t zif_date_create_immutable
000000000028eb40 0000000000000199 T zend_rebuild_symbol_table
00000000002dd8f0 000000000000019a t ZEND_YIELD_SPEC_TMP_UNUSED_HANDLER
00000000002dc540 000000000000019a t ZEND_YIELD_SPEC_UNUSED_CONST_HANDLER
0000000000261e80 000000000000019a T compile_filename
0000000000254660 000000000000019a T php_stream_bucket_split
00000000002a2220 000000000000019a T zend_register_class_alias_ex
00000000001998c0 000000000000019b t spl_array_set_array.isra.8
00000000001aebd0 000000000000019b t spl_fixedarray_object_write_dimension
000000000027bc10 000000000000019b t zend_negate_num_string
000000000019f880 000000000000019b t zim_spl_SplFileObject_fputcsv
000000000017caf0 000000000000019c t zim_reflection_generator_getTrace
00000000002df530 000000000000019d t ZEND_FETCH_OBJ_RW_SPEC_UNUSED_CONST_HANDLER
00000000002df6d0 000000000000019d t ZEND_FETCH_OBJ_UNSET_SPEC_UNUSED_CONST_HANDLER
00000000002df390 000000000000019d t ZEND_FETCH_OBJ_W_SPEC_UNUSED_CONST_HANDLER
0000000000301630 000000000000019e t ZEND_JMP_SET_SPEC_CV_HANDLER
00000000001a6de0 000000000000019e t zm_startup_spl_exceptions
00000000001e6090 000000000000019f T php_info_print_table_header
000000000023db60 000000000000019f T sapi_read_standard_form_data
00000000002f92d0 000000000000019f t zend_fetch_dimension_address_inner_W_CONST
00000000002b83c0 000000000000019f T zend_multibyte_set_functions
00000000001df0e0 00000000000001a0 t determine_charset
00000000002c3200 00000000000001a0 t gc_possible_root_when_full
00000000001e39e0 00000000000001a0 t php_get_xbm
0000000000232cf0 00000000000001a0 T php_random_bytes
00000000006aa5c0 00000000000001a0 d reflection_class_constant_functions
00000000006afac0 00000000000001a0 d spl_DirectoryIterator_functions
00000000006b0260 00000000000001a0 d spl_funcs_MultipleIterator
00000000002b3a10 00000000000001a0 t zif_function_exists
000000000016bf00 00000000000001a1 t preg_replace_func_impl
000000000023e5a0 00000000000001a1 T sapi_deactivate
00000000003221b0 00000000000001a1 T zend_do_fcall_overloaded
0000000000232410 00000000000001a1 t zif_password_verify
00000000002db990 00000000000001a2 t ZEND_ASSIGN_SPEC_VAR_CONST_RETVAL_USED_HANDLER
0000000000178230 00000000000001a2 t pcntl_signal_dispatch
00000000002eb5d0 00000000000001a3 t ZEND_FETCH_CLASS_CONSTANT_SPEC_CONST_CONST_HANDLER
0000000000233220 00000000000001a3 T php_inet_ntop
00000000001b4470 00000000000001a3 t zif_end
00000000001b47d0 00000000000001a3 t zif_next
00000000001b4620 00000000000001a3 t zif_prev
00000000001b4980 00000000000001a3 t zif_reset
00000000001811a0 00000000000001a3 t zim_reflection_zend_extension___construct
00000000000ddc6e 00000000000001a4 t cli_register_file_handles
00000000002cca20 00000000000001a4 T tsrm_realpath
00000000001a0ed0 00000000000001a4 t zim_spl_SplFileObject_fgetcsv
0000000000178080 00000000000001a5 t pcntl_siginfo_to_zval.part.1
00000000001b04b0 00000000000001a5 t php_array_user_key_compare
000000000027aeb0 00000000000001a5 t zend_resolve_class_name
00000000002e28c0 00000000000001a6 t ZEND_CATCH_SPEC_CONST_HANDLER
000000000024fd90 00000000000001a7 T _php_stream_read
00000000002c5f50 00000000000001a7 T zend_hash_func
000000000028cd20 00000000000001a8 T zend_use_undefined_constant
00000000002901a0 00000000000001a9 t _destroy_zend_class_traits_info
000000000027a270 00000000000001a9 t zend_resolve_non_class_name
00000000001e8cd0 00000000000001a9 t zif_linkinfo
00000000002e0fe0 00000000000001aa t ZEND_JMP_SET_SPEC_TMP_HANDLER
0000000000243690 00000000000001aa t php_auto_globals_create_request
00000000002be300 00000000000001aa t quorem
000000000027c610 00000000000001aa t zend_compile_func_defined
0000000000179c70 00000000000001aa t zim_reflection_getModifierNames
00000000002e4870 00000000000001ab t ZEND_FETCH_OBJ_IS_SPEC_UNUSED_CONST_HANDLER
00000000002ba500 00000000000001ab t zim_exception___construct
0000000000291f90 00000000000001ab T zval_get_double_func
00000000001af710 00000000000001ac t php_array_key_compare_string_locale
000000000022c5d0 00000000000001ac t user_space_stream_notifier
00000000001c38a0 00000000000001ac t zif_call_user_func_array
0000000000201210 00000000000001ac t zif_lcfirst
0000000000201060 00000000000001ac t zif_ucfirst
00000000001c30f0 00000000000001ad t zif_time_sleep_until
00000000002434e0 00000000000001af t php_autoglobal_merge.isra.0
0000000000165860 00000000000001af T php_pcre2_substring_list_get
000000000017d360 00000000000001af t zim_reflection_class_implementsInterface
00000000001c0410 00000000000001b0 t zif_array_key_exists
00000000001da7d0 00000000000001b0 t zif_realpath_cache_get
0000000000300ee0 00000000000001b1 t ZEND_FETCH_OBJ_UNSET_SPEC_VAR_CV_HANDLER
0000000000128090 00000000000001b1 t emit_shift_with_flags
00000000001d2bd0 00000000000001b1 T zif_fwrite
00000000002ea760 00000000000001b2 t zend_fetch_static_prop_helper_SPEC_CV_CONST
00000000003185d0 00000000000001b3 t zend_post_incdec_property_helper_SPEC_CV_TMPVAR
0000000000203f30 00000000000001b3 t zif_parse_str
00000000001a0950 00000000000001b3 t zim_spl_SplFileObject___construct
00000000001c5070 00000000000001b4 t zif_ignore_user_abort
0000000000209f10 00000000000001b4 t zif_is_callable
00000000000d97ac 00000000000001b6 t ZEND_BIND_GLOBAL_SPEC_CV_CONST_HANDLER
00000000001c36e0 00000000000001b6 t zif_call_user_func
00000000002e0e20 00000000000001b7 t ZEND_JMPNZ_EX_SPEC_TMPVAR_HANDLER
0000000000331c50 00000000000001b7 t php_cli_server_client_save_header
000000000025cf70 00000000000001b7 T php_stream_generic_socket_factory
000000000027cfc0 00000000000001b7 t zend_handle_encoding_declaration
00000000001c56e0 00000000000001b7 t zif_register_tick_function
000000000019b650 00000000000001b7 t zim_spl_Array_current
000000000019ee60 00000000000001b7 t zim_spl_DirectoryIterator_seek
00000000002ece70 00000000000001b8 t ZEND_ASSIGN_DIM_SPEC_CV_UNUSED_OP_DATA_TMP_HANDLER
00000000001284f0 00000000000001b8 t emit_mov_int
00000000000cad5b 00000000000001b8 t php_message_handler_for_zend
0000000000248120 00000000000001b8 T php_output_handler_reverse_conflict_register
00000000002ea220 00000000000001b8 t zend_fetch_static_prop_helper_SPEC_TMPVAR_UNUSED
00000000001c2f30 00000000000001b8 t zif_time_nanosleep
00000000002dd190 00000000000001ba t ZEND_YIELD_SPEC_CONST_UNUSED_HANDLER
00000000002dd520 00000000000001ba t ZEND_YIELD_SPEC_TMP_TMP_HANDLER
0000000000108640 00000000000001ba t timelib_dump_tzinfo
00000000002e0720 00000000000001bc t ZEND_FUNC_GET_ARGS_SPEC_UNUSED_UNUSED_HANDLER
00000000002ec4e0 00000000000001bd t ZEND_ASSIGN_DIM_SPEC_VAR_UNUSED_OP_DATA_CONST_HANDLER
00000000002f17c0 00000000000001bd t ZEND_FETCH_OBJ_W_SPEC_CV_CONST_HANDLER
0000000000311700 00000000000001bd t zend_binary_assign_op_obj_helper_SPEC_UNUSED_CONST
0000000000261310 00000000000001bd T zend_restore_lexical_state
000000000022fd00 00000000000001bd t zif_stream_set_timeout
000000000022b2a0 00000000000001be t proc_open_rsrc_dtor
000000000017cc90 00000000000001be t reflection_method_factory
00000000001ae5c0 00000000000001be t zim_spl_SplFixedArray_setSize
00000000002ffab0 00000000000001bf t ZEND_ADD_ARRAY_ELEMENT_SPEC_TMP_CV_HANDLER
00000000002e4420 00000000000001bf t ZEND_FETCH_OBJ_IS_SPEC_CV_CONST_HANDLER
0000000000109510 00000000000001bf t timelib_tzinfo_clone
00000000002f8e90 00000000000001bf t zend_fetch_dimension_address_inner_RW_CONST
0000000000321c30 00000000000001bf T zend_fetch_function
00000000002ed4f0 00000000000001c0 t ZEND_COUNT_SPEC_TMP_UNUSED_HANDLER
0000000000406f80 00000000000001c0 r _pcre2_ucd_caseless_sets_8
00000000007207e0 00000000000001c0 d ini_entries
00000000001f7b10 00000000000001c0 t register_string_constants
00000000006b0fc0 00000000000001c0 d spl_funcs_SplHeap
0000000000725c60 00000000000001c0 b user_filter_class_entry
0000000000726200 00000000000001c0 b zend_iterator_class_entry
0000000000300d10 00000000000001c1 t ZEND_FETCH_OBJ_RW_SPEC_VAR_CV_HANDLER
0000000000300b20 00000000000001c1 t ZEND_FETCH_OBJ_W_SPEC_VAR_CV_HANDLER
000000000020b660 00000000000001c1 T php_url_encode
00000000001a8120 00000000000001c2 t spl_object_storage_debug_info
00000000002802c0 00000000000001c2 t zend_compile_prop_decl
0000000000273130 00000000000001c2 t zend_mm_alloc_huge
00000000002c64c0 00000000000001c2 t zend_new_interned_string_permanent.part.1
00000000001a23a0 00000000000001c2 t zim_spl_SplFileInfo_getFilename
00000000002f2560 00000000000001c3 t ZEND_FETCH_OBJ_RW_SPEC_VAR_TMPVAR_HANDLER
0000000000310c50 00000000000001c3 t ZEND_FETCH_OBJ_UNSET_SPEC_CV_CONST_HANDLER
00000000002daf50 00000000000001c3 t ZEND_FETCH_OBJ_UNSET_SPEC_VAR_TMPVAR_HANDLER
00000000002f2370 00000000000001c3 t ZEND_FETCH_OBJ_W_SPEC_VAR_TMPVAR_HANDLER
000000000021b220 00000000000001c3 t php_stream_ftp_rmdir
000000000021b3f0 00000000000001c3 t php_stream_ftp_unlink
00000000000cb545 00000000000001c3 t strip_multiline_string_indentation
00000000003183e0 00000000000001c3 t zend_post_incdec_property_helper_SPEC_CV_CONST
0000000000245db0 00000000000001c4 T php_network_populate_name_from_sockaddr
00000000002862a0 00000000000001c4 t zend_compile_isset_or_empty
000000000010edb0 00000000000001c5 t is_anchored
00000000002aab90 00000000000001c5 T zend_hash_next_index_insert_new
00000000001c43d0 00000000000001c5 t zif_ini_get
00000000002c8fc0 00000000000001c5 t zim_Generator_send
00000000002ffcb0 00000000000001c6 t ZEND_ADD_ARRAY_ELEMENT_SPEC_CV_CONST_HANDLER
000000000012b340 00000000000001c6 t check_newlinechar
00000000001bf0e0 00000000000001c6 t zif_array_sum
00000000002e0c50 00000000000001c7 t ZEND_JMPZ_EX_SPEC_TMPVAR_HANDLER
00000000002271a0 00000000000001c7 t zm_startup_user_filters
00000000001ecf40 00000000000001c8 T _php_math_zvaltobase
000000000019a4d0 00000000000001c8 t spl_array_compare_objects
0000000000292450 00000000000001c8 T zend_object_is_true
00000000002c4af0 00000000000001c8 t zend_register_closure_ce
0000000000294dc0 00000000000001c9 t _zendi_convert_scalar_to_number_noisy
00000000002586b0 00000000000001c9 t php_userstreamop_readdir
000000000022cf20 00000000000001c9 t zif_stream_socket_pair
00000000001cebe0 00000000000001c9 t zm_startup_dns
00000000002dcda0 00000000000001ca t ZEND_YIELD_SPEC_CONST_TMP_HANDLER
00000000002dd350 00000000000001ca t ZEND_YIELD_SPEC_TMP_CONST_HANDLER
0000000000191fd0 00000000000001cb t spl_RecursiveIteratorIterator_free_storage
00000000002d0630 00000000000001cb T zend_get_property_guard
000000000018a820 00000000000001cb t zim_reflection_parameter_getClass
00000000001aa7b0 00000000000001cb t zim_spl_SplDoublyLinkedList_add
0000000000281ed0 00000000000001cc t zend_compile_static_var_common
00000000002da850 00000000000001cd t ZEND_ADD_ARRAY_ELEMENT_SPEC_TMP_TMPVAR_HANDLER
0000000000246230 00000000000001cd T php_network_connect_socket
000000000017b5b0 00000000000001cd t reflection_extension_factory
0000000000311c10 00000000000001cd t zend_binary_assign_op_obj_helper_SPEC_UNUSED_CV
0000000000311980 00000000000001cd t zend_binary_assign_op_obj_helper_SPEC_UNUSED_TMPVAR
00000000002a9280 00000000000001cd T zend_hash_add
000000000016ffb0 00000000000001cd t zif_preg_split
0000000000180820 00000000000001cd t zim_reflection_class_getTraitAliases
00000000001a4e70 00000000000001cd t zim_spl_RecursiveDirectoryIterator_hasChildren
00000000001a5040 00000000000001ce t spl_filesystem_tree_it_current_key
00000000001c13f0 00000000000001ce t zm_deactivate_basic
000000000012ba70 00000000000001cf t compile_dnref_search
0000000000321df0 00000000000001cf T zend_fetch_function_str
00000000002d3190 00000000000001cf T zend_get_call_trampoline_func
000000000032bae0 00000000000001d0 t sapi_cli_register_variables
00000000000ec880 00000000000001d0 t timelib_set_relative.isra.2
0000000000705ce0 00000000000001d0 d yytname
00000000002c9e40 00000000000001d0 t zend_register_generator_ce
00000000001e75e0 00000000000001d0 t zif_phpversion
00000000001e8b00 00000000000001d0 t zif_readlink
00000000000db263 00000000000001d1 t ZEND_CAST_SPEC_CONST_HANDLER
00000000000d8a8c 00000000000001d1 t ZEND_INIT_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER
00000000001afb00 00000000000001d1 t php_array_key_compare_string
00000000001afcf0 00000000000001d1 t php_array_key_compare_string_case
00000000001af8d0 00000000000001d1 t php_array_key_compare_string_natural_general
00000000001c4060 00000000000001d1 t zif_register_shutdown_function
00000000002c9c60 00000000000001d1 t zim_Generator_throw
00000000002ff890 00000000000001d2 t ZEND_ADD_ARRAY_ELEMENT_SPEC_CONST_CV_HANDLER
00000000001e57c0 00000000000001d2 t php_info_print_table_row_internal
00000000001a1360 00000000000001d2 t spl_filesystem_file_read_line_ex.constprop.22
00000000002b0120 00000000000001d2 T zend_proptable_to_symtable
0000000000183bd0 00000000000001d3 t add_class_vars.isra.79
000000000025d440 00000000000001d3 t php_glob_stream_opener
00000000001c7fa0 00000000000001d4 t zif_highlight_string
000000000030d620 00000000000001d5 t ZEND_ASSIGN_DIM_SPEC_CV_UNUSED_OP_DATA_CV_HANDLER
00000000000e9d80 00000000000001d5 t zif_date_create_from_format
00000000000e9f60 00000000000001d5 t zif_date_create_immutable_from_format
00000000001eb550 00000000000001d5 t zif_round
00000000001d6770 00000000000001d6 t zif_realpath
00000000001a16e0 00000000000001d6 t zim_spl_SplFileObject_current
00000000002896d0 00000000000001d7 t zend_compile_do_while
00000000002c8130 00000000000001d7 T zend_generator_close
0000000000316e80 00000000000001d7 t zend_pre_incdec_property_helper_SPEC_CV_CONST
000000000032b560 00000000000001d8 T zend_check_internal_arg_type
0000000000319310 00000000000001d8 t zend_init_dynamic_call_object
000000000032fcc0 00000000000001d8 t zif_apache_request_headers
00000000001c8570 00000000000001d9 t browscap_intern_str_ci
000000000027a8b0 00000000000001d9 t zend_do_early_binding
00000000002fcc80 00000000000001da t ZEND_YIELD_SPEC_UNUSED_CV_HANDLER
00000000002dc860 00000000000001da t ZEND_YIELD_SPEC_UNUSED_VAR_HANDLER
00000000000decb0 00000000000001da t date_object_get_properties_period
0000000000224a70 00000000000001da t zif_ftok
000000000030caa0 00000000000001db t ZEND_CONCAT_SPEC_CV_CV_HANDLER
000000000030a680 00000000000001db t ZEND_IS_NOT_EQUAL_SPEC_CV_CONST_HANDLER
00000000000dcf85 00000000000001dc t zend_verify_type_error_common.isra.22
00000000001aa5d0 00000000000001dc t zim_spl_SplDoublyLinkedList_offsetUnset
00000000002f1980 00000000000001dd t ZEND_FETCH_OBJ_RW_SPEC_CV_CONST_HANDLER
0000000000177db0 00000000000001dd t zif_pcntl_sigprocmask
0000000000206ec0 00000000000001dd t zif_strpbrk
00000000002366f0 00000000000001de t __cvt.constprop.0
000000000028c120 00000000000001de t init_executor
0000000000254a20 00000000000001df T php_stream_filter_create
000000000022f9f0 00000000000001df t zif_stream_get_line
0000000000186e00 00000000000001df t zim_reflection_zend_extension___toString
00000000002da560 00000000000001e0 t ZEND_ADD_ARRAY_ELEMENT_SPEC_CONST_TMPVAR_HANDLER
000000000032aa30 00000000000001e0 T zend_execute
00000000001f3cc0 00000000000001e0 t zm_startup_pack
0000000000227520 00000000000001e1 t zif_stream_bucket_new
000000000020a150 00000000000001e2 t zif_uniqid
00000000003187b0 00000000000001e3 t zend_post_incdec_property_helper_SPEC_CV_CV
000000000019b040 00000000000001e3 t zim_spl_Array_hasChildren
00000000002b5560 00000000000001e4 t add_class_vars.isra.6
00000000001e7340 00000000000001e4 t register_phpinfo_constants
0000000000317290 00000000000001e4 t zend_pre_incdec_property_helper_SPEC_CV_CV
00000000002e7cb0 00000000000001e5 t ZEND_IS_NOT_EQUAL_SPEC_TMPVAR_CONST_HANDLER
00000000000ea2e0 00000000000001e5 t php_date_initialize_from_hash
0000000000259620 00000000000001e5 t user_wrapper_unlink
00000000002b42d0 00000000000001e6 t zif_error_reporting
000000000021a440 00000000000001e7 t php_fopen_do_pasv.constprop.1
0000000000317080 00000000000001e7 t zend_pre_incdec_property_helper_SPEC_CV_TMPVAR
00000000001b3760 00000000000001e7 t zif_krsort
00000000001b3950 00000000000001e7 t zif_ksort
00000000001f8750 00000000000001e7 t zif_nl_langinfo
000000000012b670 00000000000001e8 t detect_partial_match
00000000002819e0 00000000000001e8 t zend_compile_func_cufa
000000000019d350 00000000000001e9 t spl_array_read_dimension_ex
00000000002e7ea0 00000000000001ea t ZEND_CASE_SPEC_TMPVAR_CONST_HANDLER
00000000002dcbb0 00000000000001ea t ZEND_YIELD_SPEC_CONST_CONST_HANDLER
0000000000245bc0 00000000000001ea T php_network_parse_network_address_with_port
00000000001a1fe0 00000000000001ea t spl_filesystem_object_clone
0000000000177bc0 00000000000001ea t zif_pcntl_signal
00000000000d88a1 00000000000001eb t ZEND_FETCH_OBJ_R_SPEC_UNUSED_CONST_HANDLER
0000000000302690 00000000000001eb t ZEND_STRLEN_SPEC_CV_HANDLER
00000000002a2530 00000000000001eb T zend_disable_class
00000000002a9e30 00000000000001eb T zend_hash_str_add
00000000002b9190 00000000000001eb t zend_implement_aggregate
0000000000317d80 00000000000001eb t zend_post_incdec_property_helper_SPEC_VAR_CONST
00000000002b17c0 00000000000001eb t zif_get_extension_funcs
00000000001ff570 00000000000001eb t zif_strrchr
00000000001240a0 00000000000001ec t char_get_othercase_bit.isra.15
00000000001d0880 00000000000001ec t zif_flock
00000000001c3c80 00000000000001ec t zif_forward_static_call_array
0000000000318e10 00000000000001ed t ZEND_ASSIGN_REF_SPEC_CV_VAR_HANDLER
00000000002a9690 00000000000001ed T zend_hash_update_ind
00000000000d9ea1 00000000000001ed t zend_wrong_string_offset
00000000001c7db0 00000000000001ed t zif_highlight_file
0000000000281370 00000000000001ee t zend_compile_static_prop
00000000002833a0 00000000000001ee t zend_delayed_compile_prop
000000000014ceb0 00000000000001ef T php_pcre2_jit_match
00000000003199e0 00000000000001f0 t ZEND_INIT_STATIC_METHOD_CALL_SPEC_VAR_UNUSED_HANDLER
00000000002e97a0 00000000000001f0 t zend_fetch_static_prop_helper_SPEC_TMPVAR_CONST
00000000002d3ad0 00000000000001f0 T zend_std_get_static_property
00000000002dbdc0 00000000000001f1 t ZEND_ASSIGN_SPEC_VAR_VAR_RETVAL_UNUSED_HANDLER
000000000023c340 00000000000001f1 t php_load_zend_extension_cb
00000000002b6b30 00000000000001f1 T zend_register_ini_entries
000000000027a4a0 00000000000001f2 T do_bind_function
000000000042e8c0 00000000000001f2 r yyr2
00000000001a2570 00000000000001f2 t zim_spl_SplFileInfo_getExtension
00000000002db670 00000000000001f3 t ZEND_ASSIGN_SPEC_CV_VAR_RETVAL_USED_HANDLER
00000000002996a0 00000000000001f3 T bitwise_not_function
00000000000e4ab0 00000000000001f3 t php_date_period_initialize_from_hash
0000000000317f90 00000000000001f3 t zend_post_incdec_property_helper_SPEC_VAR_TMPVAR
000000000019fae0 00000000000001f4 t spl_filesystem_file_call
000000000022f2a0 00000000000001f4 t zif_stream_context_set_option
00000000000d64fe 00000000000001f5 t ZEND_RECV_SPEC_UNUSED_HANDLER
00000000001acab0 00000000000001f5 t spl_heap_object_get_debug_info_helper.isra.13
00000000002e0520 00000000000001f6 t ZEND_FUNC_GET_ARGS_SPEC_CONST_UNUSED_HANDLER
000000000030b500 00000000000001f6 t ZEND_IS_NOT_EQUAL_SPEC_CV_CV_HANDLER
0000000000124b80 00000000000001f6 t generate_far_jump_code
00000000002d7e30 00000000000001f6 T smart_str_append_escaped
000000000030dd20 00000000000001f7 t ZEND_CLONE_SPEC_CV_HANDLER
00000000002d00c0 00000000000001f7 t rebuild_object_properties.part.2
0000000000250140 00000000000001f8 T _php_stream_get_line
00000000001c82d0 00000000000001f8 t browscap_read_file
00000000001d1a40 00000000000001f9 t zif_tempnam
00000000001ec510 00000000000001fa t zif_log
00000000000e6a90 00000000000001fa t zif_strtotime
00000000002ed6b0 00000000000001fb t ZEND_COUNT_SPEC_VAR_UNUSED_HANDLER
000000000027ca60 00000000000001fb t zend_compile_break_continue
0000000000321240 00000000000001fc t ZEND_GENERATOR_CREATE_SPEC_HANDLER
0000000000126970 00000000000001fc t emit_mov
00000000004181c0 00000000000001fc r unimap_win1251
00000000002a9490 00000000000001fc T zend_hash_update
00000000001f7e70 00000000000001fc t zif_hex2bin
00000000001c45a0 00000000000001fc t zif_ini_get_all
00000000002b78f0 00000000000001fd T zend_qsort
000000000022e860 00000000000001fd t zif_stream_get_meta_data
00000000002e7ab0 00000000000001fe t ZEND_IS_EQUAL_SPEC_TMPVAR_CONST_HANDLER
000000000027e770 00000000000001fe t zend_compile_const
00000000001d8e30 00000000000001fe t zif_chmod
00000000002b6d60 00000000000001ff T zend_alter_ini_entry_ex
00000000001e2170 00000000000001ff t zif_html_entity_decode
00000000002ebe10 0000000000000200 t ZEND_IN_ARRAY_SPEC_TMP_CONST_HANDLER
00000000004118c0 0000000000000200 r _cyr_cp866
00000000004116c0 0000000000000200 r _cyr_iso88595
00000000004114c0 0000000000000200 r _cyr_mac
0000000000411ac0 0000000000000200 r _cyr_win1251
000000000040df00 0000000000000200 r base64_reverse_table
00000000006eeda0 0000000000000200 d empty_stage2_table
0000000000722060 0000000000000200 d ini_entries
00000000006a9ea0 0000000000000200 d reflection_extension_functions
00000000006b1180 0000000000000200 d spl_funcs_SplPriorityQueue
000000000071c180 0000000000000200 d spl_functions
00000000006c10c0 0000000000000200 d stage2_table_html4_00000
00000000006c0ec0 0000000000000200 d stage2_table_html4_02000
00000000006eeba0 0000000000000200 d stage2_table_html5_00000
00000000006ee9a0 0000000000000200 d stage2_table_html5_02000
00000000006ee7a0 0000000000000200 d stage2_table_html5_0F000
00000000006ee5a0 0000000000000200 d stage2_table_html5_1D000
0000000000417dc0 0000000000000200 r unimap_cp866
0000000000417fc0 0000000000000200 r unimap_koi8r
0000000000417bc0 0000000000000200 r unimap_macroman
0000000000202640 0000000000000200 t zif_similar_text
000000000030c890 0000000000000201 t ZEND_CONCAT_SPEC_CV_TMPVAR_HANDLER
00000000001d3bb0 0000000000000201 t zif_unlink
00000000002fd370 0000000000000202 t ZEND_ASSIGN_SPEC_VAR_CV_RETVAL_USED_HANDLER
00000000002c9190 0000000000000202 t zend_generator_dtor_storage
00000000002a8f70 0000000000000202 T zend_hash_extend
00000000002e3750 0000000000000203 t ZEND_FE_RESET_RW_SPEC_TMP_HANDLER
0000000000273300 0000000000000203 t zend_mm_realloc_slow
00000000003181b0 0000000000000203 t zend_post_incdec_property_helper_SPEC_VAR_CV
00000000002e8500 0000000000000204 t ZEND_CASE_SPEC_TMPVAR_TMPVAR_HANDLER
00000000001b8830 0000000000000204 t zif_array_fill_keys
00000000000e2ab0 0000000000000204 t zif_timezone_name_from_abbr
00000000002dfda0 0000000000000206 t ZEND_STRLEN_SPEC_TMPVAR_HANDLER
00000000001f4bd0 0000000000000207 T php_mt_srand
00000000002ac200 0000000000000207 T zend_hash_destroy
0000000000292720 0000000000000208 T boolean_xor_function
00000000002de920 0000000000000208 t cleanup_live_vars
0000000000258f70 0000000000000208 t user_wrapper_rmdir
000000000022e650 0000000000000208 t zif_stream_copy_to_stream
000000000030ad50 0000000000000209 t ZEND_IS_NOT_EQUAL_SPEC_CV_TMPVAR_HANDLER
0000000000232200 0000000000000209 t zif_password_needs_rehash
000000000030da00 000000000000020a t ZEND_COUNT_SPEC_CV_UNUSED_HANDLER
00000000002dd6e0 000000000000020a t ZEND_YIELD_SPEC_TMP_VAR_HANDLER
000000000023fa00 000000000000020a T sapi_add_request_header
00000000000d40f8 000000000000020b t zend_append_type_hint.isra.6
00000000001fd6b0 000000000000020b t zif_dirname
000000000017c260 000000000000020b t zim_reflection_function_invoke
0000000000196140 000000000000020c t zim_spl_AppendIterator_current
00000000001a5e40 000000000000020d t spl_filesystem_tree_it_current_data
0000000000284c00 000000000000020d t zend_compile_call
0000000000200d30 000000000000020d t zif_quotemeta
0000000000319000 000000000000020e t ZEND_ASSIGN_REF_SPEC_VAR_CV_HANDLER
00000000001c7060 000000000000020e t zm_shutdown_basic
00000000000cb789 000000000000020f t yysyntax_error
00000000001ded70 000000000000020f t zif_headers_sent
00000000002073a0 000000000000020f t zif_utf8_encode
0000000000704ac0 0000000000000210 d charset_map
0000000000704340 0000000000000210 d charset_map
000000000012b860 0000000000000210 t check_str_end
000000000028e550 0000000000000210 T zend_fetch_class
0000000000227790 0000000000000210 t zif_stream_filter_register
00000000001cb2a0 0000000000000210 t zm_startup_dir
00000000001b10a0 0000000000000211 t php_compact_var
00000000002e3960 0000000000000212 t ZEND_FE_RESET_R_SPEC_VAR_HANDLER
00000000002459a0 0000000000000213 T php_network_getaddresses
00000000002bd730 0000000000000213 T zend_exception_set_previous
0000000000296c00 0000000000000213 T zendi_smart_streq
000000000029f4c0 0000000000000214 T array_set_zval_key
00000000001a66d0 0000000000000214 t spl_filesystem_object_construct
00000000003167b0 0000000000000214 t zend_pre_incdec_property_helper_SPEC_VAR_CONST
00000000002edac0 0000000000000215 t ZEND_CLONE_SPEC_TMPVAR_HANDLER
00000000001f1250 0000000000000215 t _php_gettimeofday
0000000000283f40 0000000000000215 t zend_compile_assert
00000000002b3ff0 0000000000000215 t zif_class_exists
00000000002b3dd0 0000000000000215 t zif_interface_exists
00000000002b3bb0 0000000000000215 t zif_trait_exists
000000000025c280 0000000000000216 t php_sockop_read
00000000002aadb0 0000000000000216 T zend_hash_del_bucket
00000000002c5260 0000000000000216 t zim_Closure_bind
00000000002ed030 0000000000000217 t ZEND_ASSIGN_DIM_SPEC_CV_UNUSED_OP_DATA_VAR_HANDLER
0000000000310180 0000000000000217 t ZEND_UNSET_DIM_SPEC_CV_CONST_HANDLER
000000000072aae0 0000000000000218 B compiler_globals
000000000016bce0 0000000000000218 t php_replace_in_subject_func
000000000023de90 0000000000000218 T sapi_get_default_content_type_header
00000000002aa4b0 0000000000000218 T zend_hash_index_add_new
00000000002b1ae0 0000000000000218 t zif_get_resources
00000000001cd550 0000000000000218 t zif_gethostbyaddr
00000000002f5530 0000000000000219 t ZEND_FETCH_DIM_R_SPEC_CV_CONST_HANDLER
0000000000258880 0000000000000219 t php_userstreamop_write
00000000001ca8c0 0000000000000219 t zif_strptime
00000000000d9592 000000000000021a t ZEND_INIT_METHOD_CALL_SPEC_CV_CONST_HANDLER
00000000002dcf70 000000000000021a t ZEND_YIELD_SPEC_CONST_VAR_HANDLER
00000000002807a0 000000000000021a t zend_compile_class_const
000000000031c220 000000000000021b t ZEND_INIT_STATIC_METHOD_CALL_SPEC_VAR_CONST_HANDLER
0000000000316c40 000000000000021b t zend_pre_incdec_property_helper_SPEC_VAR_CV
000000000016c440 000000000000021b t zif_preg_replace_callback
000000000012e250 000000000000021c t do_caselesscmp.isra.50
0000000000163940 000000000000021c t find_text_end.isra.0
000000000027cc60 000000000000021c t zend_resolve_goto_label
00000000002ec6a0 000000000000021d t ZEND_ASSIGN_DIM_SPEC_VAR_UNUSED_OP_DATA_TMP_HANDLER
00000000001621c0 000000000000021d t set_table_bit
000000000027b870 000000000000021d T zend_initialize_class_data
0000000000321440 000000000000021e t zend_dispatch_try_catch_finally_helper_SPEC
00000000002e4200 000000000000021f t ZEND_FETCH_OBJ_IS_SPEC_TMPVAR_CONST_HANDLER
000000000030ab30 000000000000021f t ZEND_IS_EQUAL_SPEC_CV_TMPVAR_HANDLER
0000000000255c80 000000000000021f t php_plain_files_metadata
000000000024f640 000000000000021f T php_stream_wrapper_log_error
00000000001a5210 000000000000021f t zim_spl_FilesystemIterator_key
00000000001ab670 000000000000021f t zm_startup_spl_dllist
00000000001a95d0 000000000000021f t zm_startup_spl_observer
00000000006aa820 0000000000000220 d reflection_property_functions
00000000006b15c0 0000000000000220 d spl_funcs_SplFixedArray
00000000001d45f0 0000000000000220 t zif_copy
0000000000180c50 0000000000000220 t zim_reflection_property_getValue
0000000000206c90 0000000000000221 t zif_str_split
00000000000d9370 0000000000000222 t ZEND_FETCH_OBJ_R_SPEC_CV_CONST_HANDLER
00000000000dd431 0000000000000222 t ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CONST_CONST_HANDLER
00000000002e1190 0000000000000222 t ZEND_JMP_SET_SPEC_VAR_HANDLER
000000000017b110 0000000000000222 t reflection_property_factory
00000000002ac660 0000000000000222 T zend_hash_clean
00000000001d1fb0 0000000000000222 t zif_popen
00000000000e34b0 0000000000000222 t zim_DateInterval___construct
00000000002468c0 0000000000000223 T php_network_bind_socket_to_local_addr
0000000000312e10 0000000000000224 t zend_binary_assign_op_obj_helper_SPEC_CV_CV
00000000003169f0 0000000000000224 t zend_pre_incdec_property_helper_SPEC_VAR_TMPVAR
00000000001c3a50 0000000000000224 t zif_forward_static_call
00000000001d3530 0000000000000224 t zif_readfile
000000000030a220 0000000000000225 t ZEND_CASE_SPEC_TMPVAR_CV_HANDLER
000000000030a450 0000000000000225 t ZEND_IS_EQUAL_SPEC_CV_CONST_HANDLER
000000000024f3e0 0000000000000225 t php_stream_display_wrapper_errors
0000000000312820 0000000000000225 t zend_binary_assign_op_obj_helper_SPEC_CV_CONST
00000000002b2210 0000000000000225 t zif_func_get_args
00000000002ee9f0 0000000000000227 t ZEND_CONCAT_SPEC_TMPVAR_CONST_HANDLER
00000000002e82d0 0000000000000228 t ZEND_IS_NOT_EQUAL_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002c2a50 0000000000000228 t gc_mark_grey
00000000001d43c0 0000000000000228 T php_copy_file_ctx
0000000000258110 0000000000000228 t php_userstreamop_cast
000000000072a6e0 0000000000000228 B sapi_globals
0000000000259180 0000000000000228 t user_wrapper_mkdir
00000000002fed60 000000000000022a t ZEND_YIELD_SPEC_TMP_CV_HANDLER
00000000001a0720 000000000000022a t spl_filesystem_file_open.isra.4
0000000000226140 000000000000022a t zif_sha1
00000000002a7d80 000000000000022b T zend_load_extension_handle
0000000000229d80 000000000000022d t php_conv_base64_decode_convert
0000000000247ce0 000000000000022d T php_output_handler_create_user
00000000001a2860 000000000000022d t zim_spl_SplFileInfo_getRealPath
00000000002ec010 000000000000022e t ZEND_IN_ARRAY_SPEC_VAR_CONST_HANDLER
000000000030c0f0 000000000000022f t ZEND_IN_ARRAY_SPEC_CV_CONST_HANDLER
00000000002b50d0 000000000000022f t zif_get_class_methods
00000000000dff90 000000000000022f t zm_startup_date
00000000002a9bf0 0000000000000231 T zend_hash_str_update_ind
00000000002e8090 0000000000000232 t ZEND_IS_EQUAL_SPEC_TMPVAR_TMPVAR_HANDLER
0000000000251480 0000000000000232 T _php_stream_copy_to_stream_ex
000000000025c040 0000000000000232 t php_sockop_write
000000000028f340 0000000000000232 T zend_highlight
00000000001f5540 0000000000000233 t zif_soundex
00000000002b3690 0000000000000234 t is_a_impl
000000000010f490 0000000000000235 t parsed_skip
00000000000e6f90 0000000000000235 t zif_getdate
0000000000246fd0 0000000000000236 t php_do_open_temporary_file
00000000001d3170 0000000000000236 t zif_mkdir
000000000031ad00 0000000000000237 t ZEND_NEW_SPEC_VAR_UNUSED_HANDLER
00000000002c2ed0 0000000000000237 t gc_scan
0000000000312b10 0000000000000237 t zend_binary_assign_op_obj_helper_SPEC_CV_TMPVAR
00000000001d4830 0000000000000237 T zif_fread
0000000000252c10 0000000000000238 T _php_stream_scandir
00000000000d3d5d 0000000000000238 t zend_ast_export_class_no_header
00000000002af230 0000000000000238 T zend_hash_str_exists
00000000002aef40 0000000000000238 T zend_hash_str_find
00000000001fb070 0000000000000238 t zif_explode
00000000002d0b90 0000000000000239 T zend_check_property_access
00000000002a99b0 0000000000000239 T zend_hash_str_update
0000000000204db0 0000000000000239 t zif_str_repeat
00000000002c3a10 000000000000023a t gc_remove_nested_data_from_buffer
00000000002df010 000000000000023a t zend_verify_scalar_type_hint
00000000001caae0 000000000000023b t _php_do_opendir
000000000025a330 000000000000023b t user_wrapper_stat_url
00000000000cb0b5 000000000000023b t zend_yytnamerr
00000000002daa20 000000000000023d t ZEND_ADD_ARRAY_ELEMENT_SPEC_VAR_CONST_HANDLER
00000000001329d0 000000000000023d t check_hspace.isra.26
000000000016ddd0 000000000000023d t php_do_pcre_match
0000000000256440 000000000000023d t php_plain_files_rename
0000000000170cb0 000000000000023d t zif_json_encode
00000000001c5a00 000000000000023d t zif_move_uploaded_file
000000000017d8d0 000000000000023d t zim_reflection_class_getMethod
000000000017d690 000000000000023d t zim_reflection_extension___construct
000000000031c6a0 000000000000023e t ZEND_INIT_STATIC_METHOD_CALL_SPEC_VAR_CV_HANDLER
00000000001b3c10 000000000000023f t zif_count
000000000022b650 000000000000023f t zif_proc_get_status
000000000031b1b0 0000000000000240 t ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_UNUSED_HANDLER
00000000006acfa0 0000000000000240 d spl_funcs_CachingIterator
00000000002b44c0 0000000000000240 t zif_each
00000000002b32a0 0000000000000240 t zif_method_exists
0000000000282900 0000000000000241 t zend_compile_short_circuiting
000000000026b5a0 0000000000000242 t zend_ini_do_op
00000000001f4110 0000000000000243 T php_quot_print_decode
00000000002a63c0 0000000000000243 T zend_declare_class_constant_ex
00000000001c4c40 0000000000000243 t zif_set_include_path
000000000031e1f0 0000000000000244 t ZEND_INIT_USER_CALL_SPEC_CONST_CONST_HANDLER
00000000002f47c0 0000000000000244 t ZEND_UNSET_DIM_SPEC_VAR_CONST_HANDLER
0000000000160fa0 0000000000000244 t _pcre2_is_newline_8
0000000000193e10 0000000000000244 t zim_spl_RecursiveRegexIterator_getChildren
0000000000319bd0 0000000000000245 t ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_UNUSED_HANDLER
0000000000212e00 0000000000000245 T php_version_compare
0000000000250340 0000000000000246 T php_stream_get_record
00000000002e4cd0 0000000000000247 t zend_fetch_var_address_helper_SPEC_CONST_UNUSED
00000000002aa220 0000000000000247 T zend_hash_index_add
0000000000204b60 0000000000000247 t zif_str_getcsv
000000000030b2b0 0000000000000248 t ZEND_IS_EQUAL_SPEC_CV_CV_HANDLER
00000000002c2c80 0000000000000248 t gc_scan_black
00000000002075b0 0000000000000248 t zif_utf8_decode
000000000030d050 000000000000024a t ZEND_ASSIGN_DIM_SPEC_VAR_UNUSED_OP_DATA_CV_HANDLER
00000000002feb10 000000000000024a t ZEND_YIELD_SPEC_CONST_CV_HANDLER
00000000002969b0 000000000000024a T decrement_function
00000000001979c0 000000000000024a t spl_append_it_next_iterator
00000000002ac410 000000000000024a T zend_array_destroy
00000000002fa5d0 000000000000024a t zend_fetch_dimension_address_inner_W
0000000000250b70 000000000000024c T _php_stream_seek
0000000000311ea0 000000000000024c t zend_binary_assign_op_obj_helper_SPEC_VAR_CONST
00000000002bd400 000000000000024c t zend_default_exception_new_ex
00000000001d8b50 000000000000024d t zif_disk_free_space
00000000001d8900 000000000000024d t zif_disk_total_space
00000000001c6100 000000000000024d t zif_parse_ini_string
0000000000293750 000000000000024d T zval_get_string_func
00000000000d56dc 000000000000024e t ZEND_DO_FCALL_BY_NAME_SPEC_RETVAL_USED_HANDLER
00000000002c54e0 000000000000024e t zim_Closure_fromCallable
00000000002f9da0 000000000000024f t ZEND_ASSIGN_DIM_SPEC_CV_CONST_OP_DATA_CONST_HANDLER
00000000001ee9b0 000000000000024f t php_if_md5
00000000002aa940 000000000000024f T zend_hash_next_index_insert
00000000002c6270 000000000000024f t zend_new_interned_string_request
0000000000307d60 0000000000000250 t ZEND_FE_RESET_RW_SPEC_CV_HANDLER
00000000001c5c40 0000000000000250 t zif_parse_ini_file
0000000000290830 0000000000000252 T destroy_op_array
000000000012e830 0000000000000253 t do_utfreadtype8.isra.53
00000000001a6470 0000000000000253 t zim_spl_SplFileInfo_getPathInfo
00000000002194e0 0000000000000254 t php_url_scanner_output_handler
0000000000219740 0000000000000254 t php_url_scanner_session_handler
000000000010a2b0 0000000000000254 t timelib_do_rel_normalize
00000000002df870 0000000000000255 t ZEND_FETCH_OBJ_UNSET_SPEC_VAR_CONST_HANDLER
000000000031c440 0000000000000255 t ZEND_INIT_STATIC_METHOD_CALL_SPEC_VAR_TMPVAR_HANDLER
0000000000226f40 0000000000000255 t php_stream_bucket_attach.isra.0
00000000000cb2f0 0000000000000255 t yysyntax_error
0000000000289b50 0000000000000255 t zend_compile_if
0000000000203210 0000000000000256 T php_addslashes
00000000002a0010 0000000000000256 T zend_collect_module_handlers
00000000001c76d0 0000000000000256 t zif_error_log
0000000000291b30 0000000000000257 T convert_to_array
0000000000333260 0000000000000257 t php_cli_server_client_read_request_on_path
00000000002918d0 0000000000000258 T convert_to_boolean
00000000001d1c90 0000000000000258 t php_if_fopen
00000000001adea0 0000000000000258 t zim_spl_SplFixedArray_fromArray
00000000001bd070 0000000000000259 t zif_array_reverse
00000000002098a0 0000000000000259 t zif_intval
000000000022e3f0 0000000000000259 t zif_stream_get_contents
00000000002fc210 000000000000025a t ZEND_YIELD_SPEC_CV_UNUSED_HANDLER
00000000001fd0a0 000000000000025a t php_str_replace_common
00000000001b9eb0 000000000000025a t zif_array_unshift
00000000001cf160 000000000000025b t php_exec_ex
00000000002c7140 000000000000025c t zend_signal_activate
00000000001e3e30 000000000000025c t zm_startup_imagetypes
00000000000e1310 000000000000025d t date_object_get_properties
00000000001809f0 000000000000025d t zim_reflection_extension_getDependencies
0000000000196350 000000000000025d t zim_spl_LimitIterator_next
0000000000224720 000000000000025e T var_destroy
000000000031ba90 000000000000025f t ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CONST_HANDLER
0000000000717be0 0000000000000260 d OPTIONS
00000000006ab860 0000000000000260 d reflection_method_functions
00000000006ae100 0000000000000260 d spl_funcs_RecursiveIteratorIterator
00000000006add80 0000000000000260 d spl_funcs_RecursiveTreeIterator
000000000069efa0 0000000000000260 d timelib_month_lookup
00000000002149f0 0000000000000261 t zif_levenshtein
00000000000e4e80 0000000000000262 t php_date_modify.isra.18
00000000002b9450 0000000000000262 t zend_implement_iterator
0000000000289460 0000000000000263 t zend_compile_while
000000000031e790 0000000000000264 t ZEND_INIT_USER_CALL_SPEC_CONST_CV_HANDLER
00000000002e9530 0000000000000264 t ZEND_ISSET_ISEMPTY_STATIC_PROP_SPEC_CONST_UNUSED_HANDLER
00000000003121b0 0000000000000264 t zend_binary_assign_op_obj_helper_SPEC_VAR_TMPVAR
000000000031af40 0000000000000267 t ZEND_NEW_SPEC_UNUSED_UNUSED_HANDLER
00000000001f5ae0 0000000000000267 t php_strtr_ex
000000000019ac80 0000000000000267 t spl_array_object_count_elements_helper
0000000000283cd0 0000000000000267 t zend_compile_dynamic_call
00000000002aa6d0 0000000000000267 T zend_hash_index_update
00000000002e2a70 0000000000000268 t ZEND_ISSET_ISEMPTY_VAR_SPEC_CONST_UNUSED_HANDLER
0000000000161a90 0000000000000268 T php_pcre2_serialize_encode
00000000001d72e0 0000000000000268 t zif_fnmatch
00000000002e9130 0000000000000269 t ZEND_ISSET_ISEMPTY_STATIC_PROP_SPEC_CONST_VAR_HANDLER
00000000002c4630 0000000000000269 t zend_closure_get_debug_info
00000000001e9170 0000000000000269 t zif_link
00000000002e8d40 000000000000026c t ZEND_ISSET_ISEMPTY_STATIC_PROP_SPEC_CONST_CONST_HANDLER
00000000002ad010 000000000000026c T zend_hash_apply
00000000003194f0 000000000000026d t ZEND_INIT_METHOD_CALL_SPEC_UNUSED_TMPVAR_HANDLER
000000000031c8e0 000000000000026d t ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CONST_HANDLER
00000000001c5e90 000000000000026d t php_simple_ini_parser_cb
0000000000231f90 000000000000026d t zif_password_get_info
0000000000278140 000000000000026e t zend_check_live_ranges
00000000001c1080 000000000000026e t zm_activate_basic
00000000002ba290 000000000000026f T zend_register_interfaces
00000000001bd6c0 000000000000026f t zif_array_flip
00000000002593b0 0000000000000270 t user_wrapper_rename
0000000000271dd0 0000000000000270 t zend_mm_free_pages
00000000002f20f0 0000000000000271 t ZEND_FETCH_OBJ_RW_SPEC_VAR_CONST_HANDLER
00000000002f1e50 0000000000000271 t ZEND_FETCH_OBJ_W_SPEC_VAR_CONST_HANDLER
0000000000242fb0 0000000000000271 t _php_import_environment_variables
0000000000178430 0000000000000271 t pcntl_sigwaitinfo.isra.2
00000000001a87a0 0000000000000271 t spl_object_storage_attach
00000000002f9050 0000000000000271 t zend_fetch_dimension_address_inner_RW
00000000002f9ff0 0000000000000272 t ZEND_ASSIGN_DIM_SPEC_CV_CONST_OP_DATA_TMP_HANDLER
00000000002f5de0 0000000000000273 t ZEND_FETCH_DIM_R_SPEC_TMPVAR_CONST_HANDLER
0000000000234970 0000000000000273 T php_request_startup
0000000000277440 0000000000000273 T zend_mm_startup_ex
000000000017cf50 0000000000000273 t zim_reflection_class_constant___construct
00000000001f4de0 0000000000000274 T php_mt_rand
00000000002b7e40 0000000000000274 T zend_sort
00000000002ac890 0000000000000274 T zend_symtable_clean
00000000001bb090 0000000000000275 T php_array_replace_recursive
0000000000183930 0000000000000275 t reflection_class_object_ctor.isra.78
00000000002c66b0 0000000000000275 T zend_interned_strings_init
0000000000206a10 0000000000000275 t zif_money_format
0000000000296e20 0000000000000276 T zendi_smart_strcmp
00000000001611f0 0000000000000277 t _pcre2_was_newline_8
00000000000def40 0000000000000277 t date_interval_get_property_ptr_ptr
00000000002acd90 0000000000000277 T zend_hash_graceful_reverse_destroy
0000000000195ec0 0000000000000278 t zim_spl_dual_it_next
0000000000123e20 0000000000000279 t get_framesize
00000000002cfd40 0000000000000279 T zend_std_cast_object_tostring
00000000002fc750 000000000000027a t ZEND_YIELD_SPEC_CV_TMP_HANDLER
000000000018cf00 000000000000027b t zif_spl_autoload_functions
00000000003124e0 000000000000027c t zend_binary_assign_op_obj_helper_SPEC_VAR_CV
0000000000300190 000000000000027d t ZEND_ADD_ARRAY_ELEMENT_SPEC_CV_CV_HANDLER
0000000000319760 000000000000027e t ZEND_INIT_METHOD_CALL_SPEC_UNUSED_CV_HANDLER
00000000001cb010 000000000000027e t php_if_readdir
0000000000209620 000000000000027e t zif_settype
0000000000227d90 000000000000027f T php_uudecode
000000000012f3b0 000000000000027f t sljit_emit_op_flags.constprop.64
00000000002acb10 000000000000027f T zend_hash_graceful_destroy
000000000026b320 000000000000027f t zend_ini_add_string
00000000001bc320 000000000000027f t zif_array_count_values
000000000069d080 0000000000000280 d date_funcs_date
000000000069ce00 0000000000000280 d date_funcs_immutable
000000000030c490 0000000000000281 t ZEND_CONCAT_SPEC_TMPVAR_CV_HANDLER
0000000000332110 0000000000000282 t php_cli_server_send_event
000000000010ef80 0000000000000283 t is_startline
00000000003323a0 0000000000000284 t php_cli_server_log_response.isra.7
000000000031bcf0 0000000000000285 t ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_TMPVAR_HANDLER
000000000012f630 0000000000000285 t do_utfreadchar16.isra.52
00000000001d78b0 0000000000000285 t php_do_chown.isra.1
00000000002afbf0 0000000000000288 T zend_hash_compare
0000000000195c30 0000000000000288 t zim_spl_dual_it_rewind
000000000031ce30 0000000000000289 t ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_CV_HANDLER
0000000000251fb0 0000000000000289 T _php_stream_stat_path
00000000002e45e0 000000000000028a t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_UNUSED_CONST_HANDLER
00000000002ad280 000000000000028b T zend_hash_apply_with_argument
00000000002dbfc0 000000000000028c t ZEND_ASSIGN_SPEC_VAR_VAR_RETVAL_USED_HANDLER
000000000022de10 000000000000028d t zif_stream_socket_sendto
00000000002e4a20 000000000000028e t ZEND_FETCH_OBJ_R_SPEC_TMPVAR_CONST_HANDLER
00000000003064c0 000000000000028f t ZEND_ASSIGN_DIM_SPEC_CV_CV_OP_DATA_CONST_HANDLER
0000000000291620 000000000000028f T convert_to_double
00000000002ffec0 0000000000000290 t ZEND_ADD_ARRAY_ELEMENT_SPEC_CV_TMPVAR_HANDLER
000000000012cfc0 0000000000000290 t read_char8_type
00000000001a5ab0 0000000000000290 t zim_spl_FilesystemIterator_current
00000000001c0860 0000000000000292 t zif_array_combine
00000000002fb200 0000000000000293 t ZEND_ASSIGN_DIM_SPEC_CV_TMPVAR_OP_DATA_CONST_HANDLER
0000000000179940 0000000000000293 t zim_reflection_export
000000000023b140 0000000000000294 T expand_filepath_with_mode
00000000001d7610 0000000000000295 t php_do_chgrp.isra.0
0000000000255060 0000000000000298 T _php_stream_filter_flush
00000000002eae80 000000000000029a t ZEND_ISSET_ISEMPTY_STATIC_PROP_SPEC_CV_VAR_HANDLER
000000000019b230 000000000000029a t zim_spl_Array_seek
00000000002ad860 000000000000029b T zend_hash_reverse_apply
00000000003071c0 000000000000029c t ZEND_FAST_CONCAT_SPEC_CV_CONST_HANDLER
000000000031b3f0 000000000000029c t ZEND_NEW_SPEC_CONST_UNUSED_HANDLER
00000000002898b0 000000000000029c t zend_compile_for
00000000001c05c0 000000000000029c t zif_array_chunk
0000000000304200 000000000000029d t ZEND_FAST_CONCAT_SPEC_CONST_CV_HANDLER
000000000031bf80 000000000000029d t ZEND_INIT_STATIC_METHOD_CALL_SPEC_CONST_CV_HANDLER
00000000002f9470 000000000000029f t ZEND_ASSIGN_DIM_SPEC_VAR_CONST_OP_DATA_CONST_HANDLER
0000000000169d30 00000000000002a0 t zm_startup_pcre
0000000000306750 00000000000002a2 t ZEND_ASSIGN_DIM_SPEC_CV_CV_OP_DATA_TMP_HANDLER
000000000019b810 00000000000002a2 t zim_spl_Array_getChildren
00000000001b34a0 00000000000002a2 t zm_startup_array
00000000001cf750 00000000000002a3 T php_escape_shell_arg
00000000001cd770 00000000000002a3 t zif_gethostbyname
00000000001c1e00 00000000000002a4 t zif_getenv
00000000002823d0 00000000000002a5 t zend_compile_binary_op
00000000001e42c0 00000000000002a5 t zif_image_type_to_extension
000000000016a060 00000000000002a5 t zif_preg_quote
0000000000217da0 00000000000002a6 t php_ini_on_update_tags.isra.4
0000000000285b50 00000000000002a6 t zend_delayed_compile_dim
00000000001e3b80 00000000000002a7 t php_handle_tiff.isra.5
0000000000257670 00000000000002a7 t php_userstreamop_seek
00000000002ce920 00000000000002a7 T zend_objects_destroy_object
00000000002b1490 00000000000002a7 t zif_get_defined_constants
00000000001d3900 00000000000002a7 t zif_rename
000000000031aa50 00000000000002a8 t ZEND_INIT_METHOD_CALL_SPEC_CV_CV_HANDLER
000000000017c470 00000000000002a8 t zim_reflection_function_invokeArgs
00000000002ec8c0 00000000000002a9 t ZEND_ASSIGN_DIM_SPEC_VAR_UNUSED_OP_DATA_VAR_HANDLER
00000000002d08e0 00000000000002a9 T zend_get_property_info
00000000002fc9d0 00000000000002aa t ZEND_YIELD_SPEC_CV_CONST_HANDLER
00000000001a6050 00000000000002ab t zim_spl_SplFileInfo_getLinkTarget
0000000000179430 00000000000002ac t zm_startup_pcntl
00000000002bab60 00000000000002ad t zim_error_exception___construct
0000000000298910 00000000000002ae T shift_left_function
0000000000298bc0 00000000000002ae T shift_right_function
000000000072a300 00000000000002b0 B core_globals
00000000002fd0b0 00000000000002b1 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_CV_CONST_HANDLER
0000000000297b90 00000000000002b1 T mod_function
00000000002eb310 00000000000002b2 t ZEND_ISSET_ISEMPTY_STATIC_PROP_SPEC_CV_UNUSED_HANDLER
0000000000161500 00000000000002b2 T php_pcre2_pattern_info
0000000000297310 00000000000002b2 T zval_get_long_func
00000000002f4f60 00000000000002b3 t ZEND_FETCH_DIM_R_SPEC_CV_CV_HANDLER
00000000001c8f90 00000000000002b3 t browscap_convert_pattern.constprop.2
000000000030d2a0 00000000000002b3 t zend_binary_assign_op_dim_helper_SPEC_CV_UNUSED
0000000000285840 00000000000002b4 t zend_compile_array
00000000002978d0 00000000000002b5 t _zval_get_long_func_noisy
000000000017a450 00000000000002b5 t zim_reflection_class_newInstance
00000000001b8570 00000000000002b6 t zif_array_fill
00000000002fb4a0 00000000000002b7 t ZEND_ASSIGN_DIM_SPEC_CV_TMPVAR_OP_DATA_TMP_HANDLER
00000000001274b0 00000000000002b7 t emit_cmp_binary
00000000002b1f50 00000000000002b8 t zif_create_function
00000000001cbc50 00000000000002b8 t zif_scandir
0000000000203760 00000000000002b9 t zif_nl2br
0000000000313880 00000000000002bb t ZEND_VERIFY_RETURN_TYPE_SPEC_VAR_UNUSED_HANDLER
000000000023e2e0 00000000000002bb T sapi_activate
00000000002f9710 00000000000002bc t ZEND_ASSIGN_DIM_SPEC_VAR_CONST_OP_DATA_TMP_HANDLER
00000000002d9210 00000000000002bc t zend_fetch_dimension_address_read_R_slow
0000000000294970 00000000000002be t _convert_scalar_to_number
00000000001e3720 00000000000002bf t php_handle_jpeg
00000000007274e0 00000000000002c0 b server
00000000006b0520 00000000000002c0 d spl_funcs_SplObjectStorage
0000000000226370 00000000000002c1 t zif_sha1_file
00000000002c4f90 00000000000002c1 t zim_Closure_call
00000000002e32e0 00000000000002c2 t zend_include_or_eval
0000000000300810 00000000000002c3 t ZEND_ADD_ARRAY_ELEMENT_SPEC_VAR_CV_HANDLER
00000000002f3690 00000000000002c4 t ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_TMP_HANDLER
00000000003103a0 00000000000002c4 t ZEND_UNSET_DIM_SPEC_CV_TMPVAR_HANDLER
00000000001bb310 00000000000002c4 t zif_array_merge
00000000001bb5e0 00000000000002c4 t zif_array_merge_recursive
000000000022d9d0 00000000000002c4 t zif_stream_socket_accept
00000000000d5417 00000000000002c5 t ZEND_DO_FCALL_BY_NAME_SPEC_RETVAL_UNUSED_HANDLER
00000000001617c0 00000000000002c7 T php_pcre2_callout_enumerate
00000000002de3d0 00000000000002c8 t ZEND_YIELD_SPEC_VAR_UNUSED_HANDLER
000000000012ddf0 00000000000002c8 t do_revertframes.isra.48
00000000002d41b0 00000000000002ca t zend_do_perform_type_hint_check.isra.7
00000000002af920 00000000000002ca T zend_hash_sort_ex
000000000031a780 00000000000002cb t ZEND_INIT_METHOD_CALL_SPEC_CV_TMPVAR_HANDLER
0000000000313b40 00000000000002cb t ZEND_VERIFY_RETURN_TYPE_SPEC_CV_UNUSED_HANDLER
00000000000d5c49 00000000000002cc t ZEND_DO_FCALL_SPEC_RETVAL_USED_HANDLER
00000000002d4480 00000000000002cc t zend_do_perform_implementation_check
00000000002c4cc0 00000000000002cd T zend_create_closure
0000000000284fa0 00000000000002ce t zend_compile_static_call
0000000000262020 00000000000002ce T zend_prepare_string_for_scanning
00000000002fa820 00000000000002d2 t ZEND_ASSIGN_DIM_SPEC_VAR_TMPVAR_OP_DATA_CONST_HANDLER
00000000001a4b90 00000000000002d2 t zim_spl_RecursiveDirectoryIterator_getChildren
000000000027dbb0 00000000000002d4 t zend_compile_use_trait
000000000031cb50 00000000000002d5 t ZEND_INIT_STATIC_METHOD_CALL_SPEC_UNUSED_TMPVAR_HANDLER
00000000002798c0 00000000000002d5 t zend_add_const_name_literal
0000000000231b60 00000000000002d5 t zif_http_build_query
00000000002f4080 00000000000002d6 t ZEND_ASSIGN_OBJ_SPEC_CV_CONST_OP_DATA_TMP_HANDLER
0000000000335300 00000000000002d6 t save_ps_args
0000000000305ee0 00000000000002d7 t ZEND_ASSIGN_DIM_SPEC_CV_CONST_OP_DATA_CV_HANDLER
00000000002e3000 00000000000002d8 t ZEND_ISSET_ISEMPTY_VAR_SPEC_CV_UNUSED_HANDLER
00000000001e1bc0 00000000000002d9 t php_html_entities
000000000025a6d0 00000000000002d9 t zm_startup_user_streams
00000000002fc470 00000000000002da t ZEND_YIELD_SPEC_CV_VAR_HANDLER
00000000001ad470 00000000000002db t zm_startup_spl_heap
00000000002e9f40 00000000000002dc t ZEND_ISSET_ISEMPTY_STATIC_PROP_SPEC_TMPVAR_VAR_HANDLER
00000000002333d0 00000000000002dc t zif_net_get_interfaces
0000000000179ee0 00000000000002dc t zim_reflection_function___construct
00000000002f33b0 00000000000002dd t ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_CONST_HANDLER
0000000000288090 00000000000002de t zend_compile_declare
0000000000192730 00000000000002de t zim_spl_RecursiveTreeIterator_current
0000000000305180 00000000000002df t ZEND_ASSIGN_DIM_SPEC_VAR_CV_OP_DATA_CONST_HANDLER
00000000002975d0 00000000000002df T convert_to_long_base
00000000002e2340 00000000000002e0 t ZEND_FAST_CONCAT_SPEC_CONST_TMPVAR_HANDLER
00000000006aa220 00000000000002e0 d reflection_parameter_functions
00000000006ae860 00000000000002e0 d spl_funcs_ArrayObject
00000000001236c0 00000000000002e1 t do_extuni_no_utf
00000000001bf420 00000000000002e1 t zif_array_reduce
00000000001f1490 00000000000002e1 t zif_getrusage
00000000002ea990 00000000000002e2 t ZEND_ISSET_ISEMPTY_STATIC_PROP_SPEC_CV_CONST_HANDLER
00000000002a2720 00000000000002e3 T zend_get_callable_name_ex
000000000028b5e0 00000000000002e5 T zend_register_constant
00000000002060d0 00000000000002e6 t zif_str_rot13
0000000000259810 00000000000002e7 t user_wrapper_opendir
00000000002dc250 00000000000002e7 t zend_binary_assign_op_obj_dim
00000000002ddda0 00000000000002e8 t ZEND_YIELD_SPEC_VAR_TMP_HANDLER
00000000002b1110 00000000000002e8 t debug_backtrace_get_args
00000000001d2780 00000000000002e8 T zif_fgetss
0000000000230300 00000000000002e9 t zif_stream_socket_enable_crypto
00000000001e8e80 00000000000002e9 t zif_symlink
00000000002eec20 00000000000002ea t ZEND_CONCAT_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002fbf20 00000000000002ea t ZEND_YIELD_SPEC_CV_CV_HANDLER
00000000002c3460 00000000000002ea t gc_collect_white
0000000000190ae0 00000000000002ea t zim_spl_RecursiveTreeIterator_key
0000000000109ec0 00000000000002eb t timelib_dump_date
0000000000161d00 00000000000002ec T php_pcre2_serialize_decode
00000000002f3d90 00000000000002ed t ZEND_ASSIGN_OBJ_SPEC_CV_CONST_OP_DATA_CONST_HANDLER
0000000000310670 00000000000002ed t ZEND_UNSET_DIM_SPEC_CV_CV_HANDLER
00000000002a8bb0 00000000000002ed T zend_hash_rehash
00000000001df280 00000000000002ee T php_next_utf8_char
0000000000282bd0 00000000000002ef t zend_compile_conditional
00000000002dac60 00000000000002f0 t ZEND_ADD_ARRAY_ELEMENT_SPEC_VAR_TMPVAR_HANDLER
0000000000170180 00000000000002f1 T php_pcre_grep_impl
00000000002070a0 00000000000002f1 t zif_substr_compare
00000000002178f0 00000000000002f3 t handle_val
00000000001d6950 00000000000002f3 t php_next_meta_token
0000000000303670 00000000000002f6 t zend_binary_assign_op_dim_helper_SPEC_CV_CONST
00000000002e3b80 00000000000002f8 t ZEND_FE_RESET_RW_SPEC_VAR_HANDLER
00000000000e6c90 00000000000002f8 t zif_localtime
00000000001eda50 00000000000002f8 t zif_number_format
00000000002aafd0 00000000000002fb T zend_hash_del
0000000000305460 00000000000002fc t ZEND_ASSIGN_DIM_SPEC_VAR_CV_OP_DATA_TMP_HANDLER
00000000003189c0 00000000000002fc t ZEND_ASSIGN_REF_SPEC_VAR_VAR_HANDLER
00000000002cf5a0 00000000000002fc T zend_std_read_dimension
0000000000319e20 00000000000002fd t ZEND_INIT_METHOD_CALL_SPEC_TMPVAR_CONST_HANDLER
00000000002c8940 00000000000002fd T zend_generator_update_current
000000000017c720 00000000000002fe t zim_reflection_class_newInstanceArgs
00000000003061c0 00000000000002ff t ZEND_ASSIGN_DIM_SPEC_CV_TMPVAR_OP_DATA_CV_HANDLER
0000000000255ea0 00000000000002ff t php_plain_files_mkdir
00000000002a1950 00000000000002ff T zend_register_module_ex
00000000006a9400 0000000000000300 d pcntl_functions
00000000006b0ac0 0000000000000300 d spl_funcs_SplDoublyLinkedList
00000000002c6d10 0000000000000300 T zend_sigaction
0000000000303e30 0000000000000303 t zend_binary_assign_op_dim_helper_SPEC_CV_CV
00000000001f4360 0000000000000304 T php_quot_print_encode
00000000001b4f10 0000000000000304 t zif_array_walk
00000000001b5220 0000000000000304 t zif_array_walk_recursive
00000000002054b0 0000000000000305 t zif_localeconv
00000000002fab00 0000000000000306 t ZEND_ASSIGN_DIM_SPEC_VAR_TMPVAR_OP_DATA_TMP_HANDLER
00000000001eec00 0000000000000306 t php_if_md5_file
00000000002f5220 0000000000000307 t ZEND_FETCH_DIM_R_SPEC_CV_TMPVAR_HANDLER
00000000003343b0 0000000000000307 t php_cli_server_do_event_for_each_fd_callback
00000000002dda90 0000000000000308 t ZEND_YIELD_SPEC_VAR_CONST_HANDLER
00000000001dadc0 0000000000000308 t php_sprintf_append2n
00000000001ca500 0000000000000308 t zif_convert_cyr_string
00000000003152a0 0000000000000309 t ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CV_CONST_HANDLER
000000000030cc80 0000000000000309 t zend_binary_assign_op_dim_helper_SPEC_VAR_UNUSED
000000000029bb90 000000000000030a t zend_startup
0000000000306da0 000000000000030b t ZEND_ASSIGN_DIM_SPEC_CV_CV_OP_DATA_CV_HANDLER
000000000017f280 000000000000030b t zim_reflection_class_getProperty
00000000002ea450 000000000000030c t ZEND_ISSET_ISEMPTY_STATIC_PROP_SPEC_TMPVAR_UNUSED_HANDLER
000000000025a020 000000000000030d t statbuf_from_array.isra.2
00000000002f4a10 000000000000030e t ZEND_UNSET_DIM_SPEC_VAR_TMPVAR_HANDLER
00000000001c20b0 000000000000030e t zif_putenv
00000000000eccf0 000000000000030f t timelib_parse_zone
000000000071bde0 0000000000000310 d http_status_map
0000000000228450 0000000000000310 t php_chunked_filter
00000000001e8640 0000000000000310 t zif_iptcparse
000000000014d3a0 0000000000000311 T php_pcre2_maketables
0000000000254cf0 0000000000000311 T php_stream_filter_append_ex
0000000000199bd0 0000000000000312 t zim_spl_Array_unserialize
000000000016ec20 0000000000000313 t php_pcre_replace_array.isra.3
00000000001f4670 0000000000000313 t zif_quoted_printable_decode
0000000000252f30 0000000000000314 T _php_stream_cast
000000000030fe60 0000000000000315 t ZEND_UNSET_DIM_SPEC_VAR_CV_HANDLER
00000000002b2f80 0000000000000315 t zif_get_object_vars
00000000001b1490 0000000000000316 t php_array_intersect_key.isra.12
00000000002720e0 0000000000000317 t zend_mm_shutdown.part.12
00000000002d5650 0000000000000317 t zend_traits_copy_functions
000000000030f7f0 0000000000000318 t ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_CV_HANDLER
00000000002e2ce0 0000000000000318 t ZEND_ISSET_ISEMPTY_VAR_SPEC_TMPVAR_UNUSED_HANDLER
00000000001e59a0 0000000000000318 t php_print_gpcse_array
00000000001daaa0 0000000000000318 t php_sprintf_appenduint
000000000032b740 0000000000000319 T zend_check_arg_type
00000000002ee6d0 000000000000031a t zend_assign_to_string_offset
000000000028e810 000000000000031a t zend_verify_abstract_class
00000000002f5750 000000000000031b t ZEND_FETCH_DIM_R_SPEC_TMPVAR_CV_HANDLER
00000000001a7ba0 000000000000031b t spl_multiple_iterator_get_all
000000000043c700 000000000000031c r zend_vm_opcodes_flags
00000000001c7270 000000000000031c t zif_ini_set
00000000000d61e1 000000000000031d t ZEND_RECV_INIT_SPEC_CONST_HANDLER
000000000023bb40 000000000000031e T php_fopen_with_path
00000000003301a0 000000000000031e t sapi_cli_server_register_variables
00000000000d592a 000000000000031f t ZEND_DO_FCALL_SPEC_RETVAL_UNUSED_HANDLER
00000000002ab2d0 000000000000031f T zend_hash_del_ind
000000000031a460 0000000000000320 t ZEND_INIT_METHOD_CALL_SPEC_TMPVAR_CV_HANDLER
0000000000443bc0 0000000000000320 r specs.29191
00000000006ae540 0000000000000320 d spl_funcs_ArrayIterator
00000000002eefb0 0000000000000322 t ZEND_CAST_SPEC_TMP_HANDLER
00000000001bac00 0000000000000322 T php_array_merge_recursive
00000000000e2cc0 0000000000000323 t date_interval_read_property
0000000000171040 0000000000000324 t zif_json_decode
00000000001b9b80 0000000000000326 t zif_array_shift
0000000000304b10 0000000000000327 t ZEND_ASSIGN_DIM_SPEC_VAR_CONST_OP_DATA_CV_HANDLER
0000000000202840 0000000000000327 T php_stripcslashes
00000000001ce8b0 0000000000000327 t zif_dns_get_mx
00000000002c58a0 0000000000000328 t zend_string_init_interned_permanent
000000000030e310 000000000000032a t ZEND_YIELD_FROM_SPEC_CV_HANDLER
00000000002f5a90 000000000000032c t ZEND_FETCH_DIM_R_SPEC_TMPVAR_TMPVAR_HANDLER
00000000000e3180 000000000000032e t date_interval_write_property
00000000002e4f90 000000000000032f t zend_fetch_var_address_helper_SPEC_TMPVAR_UNUSED
00000000001d2330 000000000000032f T zif_fgets
000000000069f320 0000000000000330 d timelib_relunit_lookup
000000000022c780 0000000000000331 t apply_filter_to_stream
00000000000de970 0000000000000332 t date_object_get_properties_interval
00000000002d3790 0000000000000332 T zend_std_get_static_method
00000000002e9a00 0000000000000334 t ZEND_ISSET_ISEMPTY_STATIC_PROP_SPEC_TMPVAR_CONST_HANDLER
00000000001ae890 0000000000000334 t spl_fixedarray_object_read_dimension
000000000028ba00 0000000000000334 t zend_register_standard_constants
0000000000303a30 0000000000000336 t zend_binary_assign_op_dim_helper_SPEC_CV_TMPVAR
000000000031a120 0000000000000337 t ZEND_INIT_METHOD_CALL_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002de090 0000000000000338 t ZEND_YIELD_SPEC_VAR_VAR_HANDLER
0000000000261a80 0000000000000338 T open_file_for_scanning
00000000002b4c00 0000000000000338 t zif_define
00000000001dd950 000000000000033b t php_head_parse_cookie_options_array.isra.0
0000000000304e40 000000000000033c t ZEND_ASSIGN_DIM_SPEC_VAR_TMPVAR_OP_DATA_CV_HANDLER
00000000001fe610 000000000000033c t zif_strpos
00000000002ef640 000000000000033d t ZEND_YIELD_FROM_SPEC_TMP_HANDLER
00000000001accf0 000000000000033d t spl_heap_object_new_ex
00000000001fdee0 000000000000033e t zif_stristr
00000000002d4b50 000000000000033f t do_inherit_method
00000000001827d0 000000000000033f t zim_reflection_function_getParameters
00000000000e96f0 0000000000000341 T php_date_initialize
0000000000302a00 0000000000000342 t zend_binary_assign_op_dim_helper_SPEC_VAR_CONST
000000000028e070 0000000000000343 T zend_eval_stringl
00000000001e93e0 0000000000000344 t php_mail_build_headers_elem
0000000000300450 0000000000000345 t zend_fetch_var_address_helper_SPEC_CV_UNUSED
000000000031e440 0000000000000347 t ZEND_INIT_USER_CALL_SPEC_CONST_TMPVAR_HANDLER
0000000000314730 0000000000000347 t ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_TMPVAR_CONST_HANDLER
00000000002e3eb0 0000000000000347 t zend_quick_get_constant
000000000030fb10 0000000000000348 t ZEND_ASSIGN_OBJ_SPEC_CV_CONST_OP_DATA_CV_HANDLER
000000000031d7b0 0000000000000349 t ZEND_INCLUDE_OR_EVAL_SPEC_CONST_HANDLER
0000000000182e90 000000000000034b t _reflection_export.isra.4
00000000002ad510 000000000000034b T zend_hash_apply_with_arguments
00000000002b7af0 000000000000034c T zend_insert_sort
000000000022e0a0 000000000000034d t zif_stream_socket_recvfrom
00000000001c47a0 000000000000034e t php_ini_get_option
0000000000303260 000000000000034f t zend_binary_assign_op_dim_helper_SPEC_VAR_CV
000000000031f920 0000000000000350 t zend_verify_internal_arg_types
0000000000273510 0000000000000351 t zend_mm_realloc_huge
000000000030dfb0 0000000000000352 t ZEND_CAST_SPEC_CV_HANDLER
000000000027be60 0000000000000352 t zend_try_ct_eval_magic_const.isra.33
0000000000295840 0000000000000354 T mul_function
00000000002ef2e0 0000000000000355 t ZEND_CAST_SPEC_VAR_HANDLER
000000000017b780 0000000000000355 t _extension_ini_string
0000000000244d40 0000000000000357 T php_build_argv
00000000002ff530 0000000000000358 t ZEND_YIELD_SPEC_VAR_CV_HANDLER
00000000002abea0 0000000000000358 T zend_hash_index_del
000000000021bf90 0000000000000359 t php_stream_ftp_rename
00000000001e4570 000000000000035b T php_getimagetype
00000000001f5780 000000000000035d t php_spn_common_handler
00000000002fa270 000000000000035e t ZEND_ASSIGN_DIM_SPEC_CV_CONST_OP_DATA_VAR_HANDLER
00000000001f65c0 000000000000035e t php_char_to_str_ex
00000000001cf3f0 000000000000035f T php_escape_shell_cmd
0000000000127d30 0000000000000360 t emit_shift
00000000006abf40 0000000000000360 d reflection_function_abstract_functions
0000000000258340 0000000000000362 t php_userstreamop_read
00000000001fed10 0000000000000362 t zif_strrpos
000000000029dc60 0000000000000363 T object_properties_load
0000000000258c00 0000000000000363 t user_wrapper_metadata
00000000001ecbb0 0000000000000367 T _php_math_basetozval
00000000001cb8e0 0000000000000367 t zif_glob
00000000002021b0 0000000000000367 t zif_strtr
000000000031de80 0000000000000369 t ZEND_INCLUDE_OR_EVAL_SPEC_CV_HANDLER
000000000018dfd0 0000000000000369 t zif_spl_autoload
0000000000305b70 000000000000036d t ZEND_ASSIGN_DIM_SPEC_VAR_CV_OP_DATA_CV_HANDLER
0000000000177150 000000000000036f t zif_pcntl_waitpid
0000000000256fc0 0000000000000375 T _php_stream_fopen_with_path
00000000002ede60 0000000000000376 t ZEND_FAST_CONCAT_SPEC_TMPVAR_CONST_HANDLER
00000000001d9030 0000000000000376 t zif_touch
00000000001cdb70 0000000000000377 t zif_dns_check_record
00000000002013c0 0000000000000377 t zif_ucwords
00000000002932e0 0000000000000378 T _convert_to_string
000000000031db00 0000000000000379 t ZEND_INCLUDE_OR_EVAL_SPEC_TMPVAR_HANDLER
000000000010b120 0000000000000379 t timelib_unixtime2gmt
0000000000177840 000000000000037a t zif_pcntl_exec
00000000001774c0 000000000000037a t zif_pcntl_wait
0000000000311380 000000000000037b t zend_assign_op_overloaded_property.isra.12
0000000000313230 000000000000037e t cleanup_unfinished_calls.isra.15
00000000001cede0 000000000000037f T php_exec
0000000000307840 0000000000000380 t ZEND_FAST_CONCAT_SPEC_CV_CV_HANDLER
0000000000298210 0000000000000380 T bitwise_and_function
0000000000298590 0000000000000380 T bitwise_xor_function
000000000021aea0 0000000000000380 t php_stream_ftp_opendir
00000000002291c0 0000000000000380 t strfilter_strip_tags_create
00000000002c8c40 0000000000000380 t zend_generator_yield_from
00000000002c5bd0 0000000000000380 t zend_string_init_interned_request
0000000000302e10 0000000000000381 t zend_binary_assign_op_dim_helper_SPEC_VAR_TMPVAR
0000000000285270 0000000000000381 t zend_compile_return
000000000023a4a0 0000000000000384 T php_fopen_primary_script
00000000001b17b0 0000000000000385 t php_array_diff_key.isra.13
00000000001b9500 0000000000000386 t zif_shuffle
00000000002505e0 0000000000000387 T _php_stream_free
00000000002a4c20 0000000000000387 t zend_parse_va_args
000000000016c0b0 0000000000000387 t zif_preg_replace_callback_array
00000000002953f0 0000000000000388 t sub_function_slow
00000000001080f0 0000000000000388 t timelib_fill_holes
0000000000236e90 0000000000000389 T php_gcvt
00000000002f2730 0000000000000391 t ZEND_ASSIGN_OBJ_SPEC_VAR_CONST_OP_DATA_CONST_HANDLER
00000000001965b0 0000000000000392 t zim_spl_InfiniteIterator_next
0000000000204ff0 0000000000000393 t zif_count_chars
0000000000314390 0000000000000395 t ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CONST_CV_HANDLER
000000000031b690 0000000000000399 t zend_init_dynamic_call_array
00000000001ffc50 000000000000039a t zif_substr
0000000000315990 000000000000039b t ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CV_CV_HANDLER
000000000027f780 000000000000039b t zend_try_ct_eval_array
00000000003335a0 000000000000039c t sapi_cli_server_send_headers
0000000000306a00 000000000000039e t ZEND_ASSIGN_DIM_SPEC_CV_CV_OP_DATA_VAR_HANDLER
0000000000294f90 000000000000039e t add_function_slow
000000000018bc40 000000000000039f t zif_spl_autoload_call
00000000002d47b0 00000000000003a0 t do_inheritance_check_on_method
000000000019bb80 00000000000003a1 t zim_spl_Array_serialize
0000000000226b90 00000000000003a2 t user_filter_factory_create
0000000000212680 00000000000003a2 t zif_unserialize
0000000000122e00 00000000000003a6 t do_utf_caselesscmp
00000000002fb760 00000000000003a8 t ZEND_ASSIGN_DIM_SPEC_CV_TMPVAR_OP_DATA_VAR_HANDLER
0000000000251b50 00000000000003a8 T php_stream_locate_url_wrapper
000000000023b400 00000000000003a9 T php_check_specific_open_basedir
00000000002945c0 00000000000003ab T _is_numeric_string_ex
00000000001db0d0 00000000000003ab t php_sprintf_appendint
0000000000315ee0 00000000000003ab t zend_pre_incdec_overloaded_property.isra.34
00000000002f2ad0 00000000000003ac t ZEND_ASSIGN_OBJ_SPEC_VAR_CONST_OP_DATA_TMP_HANDLER
00000000003201c0 00000000000003ac t ZEND_RECV_VARIADIC_SPEC_UNUSED_HANDLER
00000000001aaff0 00000000000003ad t spl_dllist_object_new_ex
000000000019e020 00000000000003ae t zm_startup_spl_array
00000000000eb8a0 00000000000003af t timelib_isoweek_from_date
0000000000286470 00000000000003b1 t zend_compile_assign
0000000000297e50 00000000000003b2 T bitwise_or_function
0000000000255460 00000000000003b4 t php_stdiop_set_option
00000000001fe950 00000000000003b4 t zif_stripos
00000000001b0740 00000000000003b6 t php_usort
00000000000e8e70 00000000000003bb T php_mktime
0000000000214510 00000000000003bc T strnatcmp_ex
0000000000205be0 00000000000003bf t zif_str_pad
000000000012e470 00000000000003c0 t do_utfreadchar.isra.51
00000000001fb880 00000000000003c0 t zif_strtok
000000000022d600 00000000000003c2 t zif_stream_socket_server
000000000024f9c0 00000000000003c4 T _php_stream_fill_read_buffer
0000000000313fc0 00000000000003c5 t ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CONST_TMPVAR_HANDLER
00000000002b9750 00000000000003c6 T zend_call_method
000000000024ea10 00000000000003c8 T php_syslog
0000000000331750 00000000000003ca t php_cli_server_client_read_request_on_message_complete
00000000002cf8a0 00000000000003ca T zend_std_has_dimension
00000000002f99d0 00000000000003cc t ZEND_ASSIGN_DIM_SPEC_VAR_CONST_OP_DATA_VAR_HANDLER
000000000017f590 00000000000003ce t zim_reflection_property___construct
00000000002a5b80 00000000000003d0 T zend_declare_property_ex
0000000000202ca0 00000000000003d2 T php_addcslashes_str
00000000002cec20 00000000000003d2 T zend_objects_clone_members
00000000001b5530 00000000000003d3 t zif_in_array
0000000000307460 00000000000003d4 t ZEND_FAST_CONCAT_SPEC_CV_TMPVAR_HANDLER
00000000001ba820 00000000000003d6 t zif_array_slice
00000000001c9a40 00000000000003d7 t zif_get_browser
0000000000244940 00000000000003d9 T php_default_treat_data
00000000003155b0 00000000000003db t ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_CV_TMPVAR_HANDLER
00000000002ef980 00000000000003dd t ZEND_YIELD_FROM_SPEC_VAR_HANDLER
0000000000213050 00000000000003de t zif_version_compare
00000000006afce0 00000000000003e0 d spl_SplFileInfo_functions
00000000002279a0 00000000000003e1 T php_uuencode
000000000042eac0 00000000000003e4 r yyr1
00000000002f6080 00000000000003e4 t zend_fetch_dimension_address_LIST_r
00000000001fe220 00000000000003e5 t zif_strstr
000000000010cb00 00000000000003e6 t timelib_diff
00000000002fae10 00000000000003e7 t ZEND_ASSIGN_DIM_SPEC_VAR_TMPVAR_OP_DATA_VAR_HANDLER
00000000003174a0 00000000000003e8 t zend_post_incdec_overloaded_property.isra.35
00000000001d4f90 00000000000003e9 t zif_fputcsv
0000000000256b70 00000000000003ea T _php_stream_fopen
00000000001bd2d0 00000000000003ea t zif_array_pad
0000000000208e30 00000000000003ea t zm_startup_syslog
0000000000314eb0 00000000000003eb t ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_TMPVAR_CV_HANDLER
00000000001ca110 00000000000003ed t zif_crypt
000000000019cec0 00000000000003ef t spl_array_has_dimension_ex
00000000002c7940 00000000000003ef t zend_generator_get_gc
00000000000e3b00 00000000000003ef t zif_timezone_identifiers_list
00000000001fac70 00000000000003f1 T php_explode_negative_limit
0000000000226790 00000000000003f7 t userfilter_filter
000000000030f3f0 00000000000003f9 t ZEND_ASSIGN_OBJ_SPEC_VAR_CONST_OP_DATA_CV_HANDLER
0000000000235f20 00000000000003f9 T php_execute_script
00000000001fd8c0 00000000000003fd t zif_pathinfo
000000000010e540 00000000000003fe t _pcre2_auto_possessify_8
0000000000190f10 00000000000003ff t zim_spl_RegexIterator_accept
00000000004254c0 0000000000000400 r b64_tbl_dec
0000000000410e40 0000000000000400 r crc32tab
000000000041fde0 0000000000000400 r hexval_tbl.13580
000000000025d720 0000000000000402 t yydestruct.isra.0
0000000000191b20 0000000000000404 t spl_RecursiveIteratorIterator_new_ex
00000000001a7710 0000000000000404 t zim_spl_SplObjectStorage_serialize
00000000002057d0 0000000000000406 t zif_substr_count
0000000000131bb0 0000000000000408 t fast_forward_start_bits
000000000069f680 0000000000000408 d timelib_timezone_fallbackmap
0000000000234c10 000000000000040f T php_request_shutdown
0000000000305760 0000000000000410 t ZEND_ASSIGN_DIM_SPEC_VAR_CV_OP_DATA_VAR_HANDLER
0000000000726700 0000000000000410 b global_orig_handlers
00000000001d0a70 0000000000000410 t zif_file_get_contents
0000000000190310 0000000000000417 t spl_recursive_tree_iterator_get_prefix
000000000019bf30 0000000000000419 t spl_array_get_dimension_ptr.isra.0
0000000000194ea0 000000000000041a t zim_spl_FilterIterator_next
0000000000236940 000000000000041b T php_conv_fp
00000000000e36e0 000000000000041b t zim_DatePeriod___construct
0000000000170790 000000000000041d t zm_startup_json
000000000029c990 000000000000041f t zend_is_callable_check_class
0000000000287500 0000000000000422 t zend_compile_stmt
0000000000272bd0 0000000000000423 t zend_mm_alloc_pages
000000000028db80 0000000000000428 T zend_lookup_class_ex
00000000001becb0 0000000000000429 t zif_array_rand
0000000000194a70 000000000000042a t zim_spl_FilterIterator_rewind
00000000002d3360 000000000000042b T zend_std_get_method
0000000000314a80 000000000000042d t ZEND_ISSET_ISEMPTY_DIM_OBJ_SPEC_TMPVAR_TMPVAR_HANDLER
00000000002f3960 0000000000000430 t ZEND_ASSIGN_OBJ_SPEC_UNUSED_CONST_OP_DATA_VAR_HANDLER
00000000002aba60 0000000000000431 T zend_hash_str_del
0000000000251040 0000000000000432 T _php_stream_copy_to_mem
00000000002d6b00 0000000000000432 T zend_do_implement_interface
00000000002b8a60 0000000000000432 T zend_stream_fixup
0000000000228d80 0000000000000437 t php_conv_qprint_decode_convert
000000000020bf30 000000000000043c t zif_get_headers
00000000003e91e0 0000000000000440 r _pcre2_default_tables_8
00000000006aef20 0000000000000440 d spl_SplFileObject_functions
00000000001957e0 0000000000000445 t zim_spl_CachingIterator_next
00000000001de4d0 000000000000044d t zif_setcookie
00000000001de920 000000000000044d t zif_setrawcookie
0000000000169360 0000000000000455 t _pcre2_extuni_8
00000000002f4360 0000000000000458 t ZEND_ASSIGN_OBJ_SPEC_CV_CONST_OP_DATA_VAR_HANDLER
00000000003044a0 000000000000045c t ZEND_FAST_CONCAT_SPEC_TMPVAR_CV_HANDLER
0000000000296030 000000000000045e T div_function
00000000000e9250 0000000000000460 T php_strftime
00000000001ae100 0000000000000462 t spl_fixedarray_object_new_ex
00000000002ab5f0 0000000000000465 T zend_hash_str_del_ind
000000000019c3d0 0000000000000469 t spl_array_method
00000000001e9900 0000000000000476 T php_mail_build_headers
000000000012d970 0000000000000477 t compile_assert_backtrackingpath
0000000000165e40 0000000000000479 t _pcre2_valid_utf_8
00000000003ef7e0 0000000000000480 r _pcre2_utt_8
00000000001fb2b0 0000000000000482 T php_implode
00000000001f9440 0000000000000482 t zif_rtrim
0000000000295ba0 0000000000000485 T pow_function
00000000001a8ac0 0000000000000485 t zim_spl_SplObjectStorage_unserialize
00000000001d3f20 0000000000000491 t php_if_fstat
00000000001fa7d0 000000000000049c T php_explode
000000000021b5c0 000000000000049c t php_stream_ftp_mkdir
00000000002cb2e0 00000000000004a0 T virtual_file_ex
00000000002ba6b0 00000000000004a4 t zim_exception___wakeup
00000000001dd450 00000000000004a7 t php_fsockopen_stream
000000000025bb90 00000000000004a8 t php_sockop_set_option
00000000001bdac0 00000000000004a9 t zif_array_unique
00000000001a6930 00000000000004aa t zm_startup_spl_directory
000000000019d700 00000000000004ab t spl_array_write_dimension_ex
00000000002836c0 00000000000004ab t zend_compile_args
000000000031d0c0 00000000000004ac t zend_init_dynamic_call_string
000000000023be80 00000000000004af t php_ini_parser_cb
000000000018ca40 00000000000004b1 t zif_spl_autoload_unregister
00000000000cdbb4 00000000000004b2 t zend_ast_export_qstr
0000000000286830 00000000000004b2 t zend_compile_list_assign
00000000002615c0 00000000000004b2 T zend_multibyte_set_filter
00000000001d1580 00000000000004b7 t zif_file
00000000001f98d0 00000000000004ba t zif_ltrim
0000000000246400 00000000000004bb T php_network_connect_socket_to_host
000000000025b010 00000000000004bc T _php_stream_xport_create
00000000000e8710 00000000000004be T php_idate
000000000010a510 00000000000004be t timelib_do_normalize
00000000001cbf70 00000000000004c6 T php_load_extension
0000000000126b70 00000000000004c7 t emit_non_cum_binary
00000000001f8a40 00000000000004ca T php_trim
0000000000290350 00000000000004cc T destroy_zend_class
000000000018b530 00000000000004ce t zif_spl_classes
00000000001bf710 00000000000004d3 t zif_array_filter
00000000001d6290 00000000000004d4 t zif_fgetcsv
0000000000206530 00000000000004d6 t zif_str_word_count
000000000017e290 00000000000004d6 t zim_reflection_method___construct
00000000001822d0 00000000000004d7 t reflection_method_invoke
00000000002523c0 00000000000004da T _php_stream_open_wrapper_ex
000000000016ef40 00000000000004da t preg_replace_common
000000000019c900 00000000000004da t spl_array_unset_dimension_ex
00000000002ee1e0 00000000000004e2 t ZEND_FAST_CONCAT_SPEC_TMPVAR_TMPVAR_HANDLER
0000000000233a10 00000000000004e5 t OnSetFacility
00000000001ff760 00000000000004e7 t zif_chunk_split
0000000000249820 00000000000004ec t php_output_stack_apply_clean
00000000001ff080 00000000000004ec t zif_strripos
000000000020b170 00000000000004ed t zif_parse_url
00000000002f65d0 00000000000004ee t zend_fetch_dimension_address_read_IS
00000000000e24b0 00000000000004f0 t zif_date_interval_format
00000000002199a0 00000000000004fb T php_url_scanner_adapt_single_url
00000000002a02e0 00000000000004fc T zend_check_magic_method_implementation
000000000024e510 0000000000000500 T php_getopt
00000000001ed510 0000000000000501 T _php_math_number_format_ex
000000000023efb0 0000000000000502 T sapi_send_headers
00000000000c96e8 0000000000000504 t object_common2.part.5
0000000000203a20 0000000000000505 t zif_setlocale
00000000001e9e30 0000000000000507 T php_mail
00000000001231b0 000000000000050a t do_extuni_utf
00000000001103b0 0000000000000510 t add_to_class_internal
000000000022d0f0 0000000000000510 t zif_stream_socket_client
0000000000259b00 0000000000000511 t user_wrapper_opener
00000000001d4a70 0000000000000515 T php_fputcsv
00000000001952c0 0000000000000515 t zim_spl_CachingIterator_rewind
00000000002c8420 000000000000051b T zend_generator_resume
0000000000296490 000000000000051c T increment_function
00000000000e7290 000000000000051c t php_do_date_sunrise_sunset
0000000000272400 000000000000051c t zend_mm_gc.part.11
00000000002f0600 0000000000000521 t ZEND_FE_FETCH_R_SPEC_VAR_HANDLER
000000000017fa50 0000000000000522 t _property_string
00000000001f8f10 0000000000000522 t zif_trim
000000000021ba60 0000000000000526 t php_stream_ftp_url_stat
00000000002f83a0 000000000000052e t zend_fetch_dimension_address_W
00000000002f2e80 000000000000052f t ZEND_ASSIGN_OBJ_SPEC_VAR_CONST_OP_DATA_VAR_HANDLER
00000000002f7350 0000000000000531 t zend_fetch_dimension_address_UNSET
0000000000248d50 000000000000053a T php_output_clean
00000000001b5910 000000000000053b t zif_array_search
000000000014d810 0000000000000541 t match_ref
00000000002f0b30 0000000000000549 t ZEND_FE_FETCH_RW_SPEC_VAR_HANDLER
00000000002443e0 000000000000054a T php_std_post_handler
000000000031fc70 000000000000054e t ZEND_CALL_TRAMPOLINE_SPEC_HANDLER
00000000001c93d0 0000000000000556 t browser_reg_compare
00000000002c3c50 0000000000000559 T zend_gc_collect_cycles
0000000000228810 0000000000000566 t php_conv_qprint_encode_convert
00000000002ae7b0 000000000000056d T zend_hash_merge
00000000002f6d10 0000000000000573 t zend_fetch_dimension_address_read_R
0000000000128d80 0000000000000577 t init_frame.isra.32
00000000002f7b00 000000000000057d t zend_fetch_dimension_address_RW
0000000000253d60 0000000000000581 t php_stream_url_wrap_rfc2397
0000000000207800 0000000000000582 T ValidateFormat
00000000001ddf40 0000000000000586 T php_setcookie
000000000027df40 000000000000058e t zend_compile_use
0000000000249290 0000000000000590 T php_output_flush
00000000001b0b00 000000000000059a t php_array_walk
000000000012c700 00000000000005a0 t byte_sequence_compare
0000000000199080 00000000000005a1 t spl_array_object_new_ex
00000000002d24a0 00000000000005a2 T zend_std_unset_property
00000000000ea6d0 00000000000005b0 t php_date_do_return_parsed_time
0000000000249d10 00000000000005b6 t php_output_stack_apply_op
00000000002d1ee0 00000000000005b8 T zend_std_get_property_ptr_ptr
000000000028c3e0 00000000000005ba t shutdown_executor
0000000000127770 00000000000005bf t emit_cum_binary
00000000001be6e0 00000000000005c9 t zif_array_multisort
00000000001287b0 00000000000005cb t sljit_emit_op1
00000000002b5970 00000000000005d5 t zif_debug_print_backtrace
0000000000124d80 00000000000005dd t sljit_generate_code
000000000024b810 00000000000005de T php_output_discard
0000000000290bf0 00000000000005e1 T pass_two
00000000001be070 00000000000005e3 t zif_array_diff
00000000001bbaa0 00000000000005e9 t zif_array_keys
00000000003efc60 00000000000005ee r _pcre2_utt_names_8
00000000002450a0 00000000000005ef t php_auto_globals_create_server
0000000000330f30 00000000000005f6 t append_essential_headers
0000000000229780 00000000000005fa t php_conv_base64_encode_convert
00000000004175c0 0000000000000600 r empty_stage3_table
00000000006bb9a0 0000000000000600 d stage3_table_be_apos_00000
00000000006bc180 0000000000000600 d stage3_table_be_noapos_00000
00000000006c8ac0 0000000000000600 d stage3_table_html4_00000
00000000006c84c0 0000000000000600 d stage3_table_html4_00080
00000000006c7ec0 0000000000000600 d stage3_table_html4_000C0
00000000006c78c0 0000000000000600 d stage3_table_html4_00140
00000000006c72c0 0000000000000600 d stage3_table_html4_00180
00000000006c6cc0 0000000000000600 d stage3_table_html4_002C0
00000000006c66c0 0000000000000600 d stage3_table_html4_00380
00000000006c60c0 0000000000000600 d stage3_table_html4_003C0
00000000006c5ac0 0000000000000600 d stage3_table_html4_02000
00000000006c54c0 0000000000000600 d stage3_table_html4_02040
00000000006c4ec0 0000000000000600 d stage3_table_html4_02080
00000000006c48c0 0000000000000600 d stage3_table_html4_02100
00000000006c42c0 0000000000000600 d stage3_table_html4_02180
00000000006c3cc0 0000000000000600 d stage3_table_html4_021C0
00000000006c36c0 0000000000000600 d stage3_table_html4_02200
00000000006c30c0 0000000000000600 d stage3_table_html4_02240
00000000006c2ac0 0000000000000600 d stage3_table_html4_02280
00000000006c24c0 0000000000000600 d stage3_table_html4_022C0
00000000006c1ec0 0000000000000600 d stage3_table_html4_02300
00000000006c18c0 0000000000000600 d stage3_table_html4_025C0
00000000006c12c0 0000000000000600 d stage3_table_html4_02640
00000000007033a0 0000000000000600 d stage3_table_html5_00000
0000000000702da0 0000000000000600 d stage3_table_html5_00040
00000000007027a0 0000000000000600 d stage3_table_html5_00080
00000000007021a0 0000000000000600 d stage3_table_html5_000C0
0000000000701ba0 0000000000000600 d stage3_table_html5_00100
00000000007015a0 0000000000000600 d stage3_table_html5_00140
0000000000700fa0 0000000000000600 d stage3_table_html5_00180
00000000007009a0 0000000000000600 d stage3_table_html5_001C0
00000000007003a0 0000000000000600 d stage3_table_html5_00200
00000000006ffda0 0000000000000600 d stage3_table_html5_002C0
00000000006ff7a0 0000000000000600 d stage3_table_html5_00300
00000000006ff1a0 0000000000000600 d stage3_table_html5_00380
00000000006feba0 0000000000000600 d stage3_table_html5_003C0
00000000006fe5a0 0000000000000600 d stage3_table_html5_00400
00000000006fdfa0 0000000000000600 d stage3_table_html5_00440
00000000006fd9a0 0000000000000600 d stage3_table_html5_02000
00000000006fd3a0 0000000000000600 d stage3_table_html5_02040
00000000006fcda0 0000000000000600 d stage3_table_html5_02080
00000000006fc7a0 0000000000000600 d stage3_table_html5_020C0
00000000006fc1a0 0000000000000600 d stage3_table_html5_02100
00000000006fbba0 0000000000000600 d stage3_table_html5_02140
00000000006fb5a0 0000000000000600 d stage3_table_html5_02180
00000000006fafa0 0000000000000600 d stage3_table_html5_021C0
00000000006fa9a0 0000000000000600 d stage3_table_html5_02200
00000000006fa3a0 0000000000000600 d stage3_table_html5_02240
00000000006f9da0 0000000000000600 d stage3_table_html5_02280
00000000006f97a0 0000000000000600 d stage3_table_html5_022C0
00000000006f91a0 0000000000000600 d stage3_table_html5_02300
00000000006f8ba0 0000000000000600 d stage3_table_html5_02340
00000000006f85a0 0000000000000600 d stage3_table_html5_02380
00000000006f7fa0 0000000000000600 d stage3_table_html5_023C0
00000000006f79a0 0000000000000600 d stage3_table_html5_02400
00000000006f73a0 0000000000000600 d stage3_table_html5_024C0
00000000006f6da0 0000000000000600 d stage3_table_html5_02500
00000000006f67a0 0000000000000600 d stage3_table_html5_02540
00000000006f61a0 0000000000000600 d stage3_table_html5_02580
00000000006f5ba0 0000000000000600 d stage3_table_html5_025C0
00000000006f55a0 0000000000000600 d stage3_table_html5_02600
00000000006f4fa0 0000000000000600 d stage3_table_html5_02640
00000000006f49a0 0000000000000600 d stage3_table_html5_02700
00000000006f43a0 0000000000000600 d stage3_table_html5_02740
00000000006f3da0 0000000000000600 d stage3_table_html5_027C0
00000000006f37a0 0000000000000600 d stage3_table_html5_02900
00000000006f31a0 0000000000000600 d stage3_table_html5_02940
00000000006f2ba0 0000000000000600 d stage3_table_html5_02980
00000000006f25a0 0000000000000600 d stage3_table_html5_029C0
00000000006f1fa0 0000000000000600 d stage3_table_html5_02A00
00000000006f19a0 0000000000000600 d stage3_table_html5_02A40
00000000006f13a0 0000000000000600 d stage3_table_html5_02A80
00000000006f0da0 0000000000000600 d stage3_table_html5_02AC0
00000000006f07a0 0000000000000600 d stage3_table_html5_0FB00
00000000006f01a0 0000000000000600 d stage3_table_html5_1D480
00000000006efba0 0000000000000600 d stage3_table_html5_1D4C0
00000000006ef5a0 0000000000000600 d stage3_table_html5_1D500
00000000006eefa0 0000000000000600 d stage3_table_html5_1D540
00000000000cd08f 0000000000000608 T zend_exception_error
000000000024b200 000000000000060a T php_output_discard_all
00000000002bdab0 0000000000000610 t zend_register_default_exception
0000000000320c20 000000000000061d t zend_leave_helper_SPEC
000000000069d3e0 0000000000000620 d date_functions
000000000024ccf0 0000000000000620 t zif_ob_end_clean
000000000024bdf0 0000000000000626 T php_output_end
0000000000192a10 0000000000000630 t spl_dual_it_construct.isra.29
000000000010d1a0 0000000000000632 t get_chr_property_list
0000000000706060 0000000000000638 d zend_vm_opcodes_names
00000000000e77d0 000000000000063a t zif_date_sun_info
000000000018f6f0 000000000000063e t spl_recursive_it_move_forward_ex
000000000072ad00 0000000000000640 B executor_globals
00000000000ca660 0000000000000643 T php_verror
0000000000273b20 000000000000064a T _zend_mm_realloc
0000000000130bf0 0000000000000650 t fast_forward_newline
0000000000125ad0 0000000000000655 t detect_fast_fail
000000000024aba0 0000000000000659 T php_output_end_all
0000000000320570 000000000000065d T zend_fetch_dimension_const
0000000000298e70 0000000000000661 T compare_function
000000000028af60 0000000000000671 T zend_get_constant_ex
00000000001a5430 0000000000000678 t spl_filesystem_object_create_type
000000000024d9b0 000000000000067d t zif_ob_get_clean
00000000002761d0 000000000000067e T _erealloc
000000000024c670 0000000000000680 t zif_ob_end_flush
0000000000260a00 0000000000000682 t zend_scan_escape_string
000000000022eb80 0000000000000682 t zif_stream_select
00000000001d6c50 0000000000000687 t zif_get_meta_tags
00000000001f6920 000000000000068b t php_strtr_array
0000000000274170 0000000000000692 T _zend_mm_realloc2
0000000000248570 0000000000000692 T php_output_write
000000000024a2d0 0000000000000693 T php_output_flush_all
0000000000286e60 000000000000069c t zend_compile_foreach
000000000024d310 000000000000069c t zif_ob_get_flush
00000000001ea340 00000000000006a5 t zif_mail
00000000000eaec0 00000000000006af t timelib_astro_rise_set_altitude
000000000022a040 00000000000006b2 t strfilter_convert_append_bucket.isra.6
000000000032ad70 00000000000006b5 T zend_vm_set_opcode_handler_ex
00000000001f8090 00000000000006b5 t zm_startup_nl_langinfo
00000000001edfa0 00000000000006c1 t body
0000000000257a40 00000000000006c3 t php_userstreamop_set_option
00000000000e5f90 00000000000006cd t php_date_interval_initialize_from_hash.isra.30
000000000029aa50 00000000000006d5 t zend_print_zval_r_to_buf
0000000000276850 00000000000006d9 T _erealloc2
0000000000213740 00000000000006db t zif_assert
0000000000194290 00000000000006dd t spl_recursive_it_it_construct.isra.5
00000000006aace0 00000000000006e0 d reflection_class_functions
000000000020f8f0 00000000000006e2 T php_var_dump
000000000031eaf0 00000000000006e3 t ZEND_SEND_UNPACK_SPEC_HANDLER
00000000002325c0 00000000000006e8 t zif_password_hash
0000000000210030 00000000000006ee T php_debug_zval_dump
0000000000213e20 00000000000006ee t zif_assert_options
00000000000e8020 00000000000006f0 t zif_timezone_transitions_get
00000000001d0e80 00000000000006f7 t zif_file_put_contents
0000000000288d50 0000000000000706 t zend_compile_func_decl
00000000001f6fb0 0000000000000709 t php_hebrev
0000000000293eb0 0000000000000710 T concat_function
00000000001ba110 0000000000000710 t zif_array_splice
000000000012d250 000000000000071a t compile_ref_matchingpath
000000000027fba0 000000000000071c t zend_compile_params
0000000000706700 0000000000000720 d builtin_functions
00000000002bccd0 0000000000000725 t zim_exception___toString
000000000031f1e0 000000000000072f t ZEND_SEND_ARRAY_SPEC_HANDLER
00000000001fc960 000000000000073b t php_str_replace_in_subject
00000000002d2a50 000000000000073e T zend_std_has_property
00000000000cbcc3 0000000000000748 T zend_error
00000000000cbcc3 0000000000000748 T zend_error_noreturn
000000000010a9d0 000000000000074f t timelib_update_ts
00000000000d2ff7 0000000000000750 t zend_ast_export_zval
0000000000287930 000000000000075c t zend_compile_try
0000000000125360 0000000000000763 t set_then_offsets
00000000002b5f50 0000000000000765 T zend_fetch_debug_backtrace
0000000000436b80 0000000000000766 r yydefact
0000000000437300 0000000000000766 r yypact
000000000042eec0 0000000000000766 r yystos
000000000017db10 000000000000077b t zim_reflection_parameter___construct
00000000001c8750 0000000000000786 t php_browscap_parser_cb
000000000023e7a0 000000000000078e T sapi_header_op
0000000000172940 00000000000007b6 t php_json_encode_zval
00000000002d4e90 00000000000007be t zend_add_trait_method
00000000002d16f0 00000000000007e3 T zend_std_write_property
00000000001eab30 00000000000007e9 t _php_math_round.part.2
0000000000221990 00000000000007eb t php_stream_url_wrap_php
000000000072b500 0000000000000800 B zend_one_char_string
0000000000726ca0 0000000000000800 b zend_user_opcode_handlers
0000000000196950 0000000000000810 t zim_spl_LimitIterator_seek
00000000002809c0 000000000000081d t zend_compile_expr
00000000001bfbf0 0000000000000820 t zif_array_map
00000000001624c0 000000000000082a t set_start_bits
0000000000126130 0000000000000834 t emit_x86_instruction
000000000023a830 0000000000000844 T php_resolve_path
0000000000243a30 0000000000000850 T php_register_variable_ex
0000000000197160 0000000000000853 t zim_spl_LimitIterator_rewind
0000000000332630 0000000000000854 t php_cli_server_send_error_page
00000000001983d0 0000000000000863 t zm_startup_spl_iterators
00000000003306c0 0000000000000869 t append_http_status_line
00000000002883b0 000000000000086b t zend_compile_class_decl
00000000001f5d50 000000000000086d t php_str_to_str_ex
000000000021a630 000000000000086f t php_ftp_fopen_connect.isra.0
00000000000c9de9 0000000000000877 t php_error_cb
0000000000132c10 0000000000000878 t check_wordboundary
000000000022a980 0000000000000886 t strfilter_convert_create
0000000000186fe0 0000000000000887 t _parameter_string.constprop.98
0000000000204110 00000000000008a9 T php_strip_tags_ex
000000000012eae0 00000000000008c5 t fast_forward_first_char2
00000000000dde20 00000000000008cb t main
000000000029a180 00000000000008d0 t print_hash
00000000001c23c0 00000000000008d1 t zif_getopt
0000000000131fc0 00000000000008ee t mainloop_entry
00000000001662c0 00000000000008f2 t _pcre2_xclass_8
00000000001fc040 0000000000000911 t php_str_to_str_i_ex
00000000002d0dd0 0000000000000917 T zend_std_read_property
00000000001cff20 0000000000000926 t zm_startup_file
00000000003eb120 000000000000095d r match_error_texts
00000000001e7cd0 0000000000000965 t zif_iptcembed
0000000000131240 0000000000000967 t optimize_class
0000000000289db0 0000000000000969 t zend_compile_switch
000000000010f6d0 000000000000097b t get_branchlength
0000000000705360 0000000000000980 d yytname
000000000027ee00 0000000000000980 t zend_eval_const_expr
0000000000201820 0000000000000983 T php_str_to_str
000000000027d220 0000000000000987 t zend_begin_method_decl
00000000000df5f0 0000000000000998 t date_register_classes
00000000001cdef0 00000000000009b1 t zif_dns_get_record
00000000001a41d0 00000000000009b8 t spl_filesystem_object_get_debug_info
00000000002cdbc0 00000000000009d4 T zend_ast_evaluate
000000000018bfe0 00000000000009db t zif_spl_autoload_register
0000000000181370 00000000000009e0 t zm_startup_reflection
000000000021c2f0 00000000000009fa t php_stream_url_wrap_ftp
0000000000333970 0000000000000a36 t php_cli_server_recv_event_read_request
00000000001f9d90 0000000000000a3b t zif_wordwrap
000000000028d0a0 0000000000000a59 T zend_call_function
0000000000178990 0000000000000a98 t php_register_signal_constants
0000000000284160 0000000000000a9c t zend_try_compile_special_func
0000000000173fc0 0000000000000aa3 t php_json_yyparse
000000000012a780 0000000000000aaa t sljit_emit_op2
000000000012bc40 0000000000000aba t read_char_range
00000000001b8a40 0000000000000abb t zif_range
000000000025c4a0 0000000000000ac1 t php_tcp_sockop_set_option
00000000001bc5a0 0000000000000ac7 t zif_array_column
00000000001db480 0000000000000af4 t php_sprintf_appenddouble
0000000000334800 0000000000000af8 t do_cli_server
0000000000162cf0 0000000000000b02 t find_minlength
0000000000114e80 0000000000000b1b t _pcre2_check_escape_8
0000000000242470 0000000000000b38 T php_mergesort
00000000002adba0 0000000000000b3c T zend_array_dup
00000000001c6410 0000000000000b5d t zm_startup_basic
000000000016f440 0000000000000b61 T php_pcre_split_impl
000000000016b170 0000000000000b62 T pcre_get_compiled_regex_cache
000000000016e030 0000000000000b72 T php_pcre_replace_impl
0000000000189a10 0000000000000b75 t zim_reflection_extension___toString
00000000002ca010 0000000000000b8a t tsrm_realpath_r
000000000023c7f0 0000000000000ba1 t php_init_config
00000000001df570 0000000000000bdc T php_unescape_html_entities
0000000000108910 0000000000000bf1 t timelib_parse_tzfile
0000000000222180 0000000000000c30 T php_print_credits
00000000002d70d0 0000000000000c38 T zend_do_bind_traits
0000000000215e50 0000000000000c3b t php_url_scanner_reset_var_impl
000000000072bd20 0000000000000c40 B zend_signal_globals
00000000001e6620 0000000000000c52 T php_print_info
00000000001b2840 0000000000000c5a t php_array_diff.isra.15
0000000000173100 0000000000000c6e t php_json_encode_array
000000000020a4d0 0000000000000c72 T php_url_parse_ex
000000000022b890 0000000000000c7e t zif_proc_open
0000000000133490 0000000000000c88 t scan_prefix
00000000002151b0 0000000000000c9c t php_url_scanner_add_var_impl
000000000016a470 0000000000000cba t php_pcre_replace_func_impl
00000000002a3e50 0000000000000cf5 t zend_parse_arg
00000000001b1b40 0000000000000cf7 t php_array_intersect.isra.14
00000000001ffff0 0000000000000d31 t zif_substr_replace
00000000001e48d0 0000000000000d32 t php_getimagesize_from_any
000000000018d1d0 0000000000000d36 t zm_info_spl
00000000001d7b40 0000000000000d45 t php_stat.part.3
0000000000188a90 0000000000000d52 t _class_string
000000000010d7e0 0000000000000d56 t compare_opcodes
00000000000d4303 0000000000000d6f t zend_get_function_declaration
00000000000e0550 0000000000000db2 t date_format
00000000001cc5b0 0000000000000e27 t php_parserr
0000000000235080 0000000000000e2a T php_module_startup
0000000000216a90 0000000000000e5f t append_modified_url.isra.0
00000000001d5380 0000000000000f0a T php_fgetcsv
0000000000187980 0000000000000f30 t _function_string
00000000001293c0 0000000000000fae t copy_recurse_data.isra.34
0000000000728240 0000000000000fb0 B basic_globals
0000000000142e70 0000000000000fcb t compile_bracketpos_matchingpath.isra.46
00000000003eba80 0000000000000ff5 r compile_error_texts
00000000006bc7a0 0000000000001000 d ht_buckets_html4
00000000002d5af0 0000000000001004 T zend_do_inheritance
0000000000729200 0000000000001018 b browscap_globals
0000000000724a20 0000000000001018 b global_bdata
00000000001e2380 0000000000001043 t zif_get_html_translation_table
0000000000121b80 0000000000001055 T php_pcre2_dfa_match
00000000001f1a10 0000000000001062 t zif_pack
0000000000230af0 000000000000106d t php_url_encode_hash_ex.part.0
00000000002a08b0 0000000000001097 T zend_register_functions
0000000000207d90 000000000000109d T php_sscanf_internal
000000000010ba40 00000000000010bc t timelib_strtointerval
000000000032bfb0 00000000000010c5 t do_cli
00000000001dbf80 0000000000001158 t php_formatted_print
00000000001358e0 00000000000011b7 t compile_ref_iterator_matchingpath.isra.41
00000000002a2a20 0000000000001225 T zend_is_callable_ex
0000000000224c50 0000000000001233 t SHA1Transform
00000000001f2a80 0000000000001237 t zif_unpack
000000000012f8c0 0000000000001328 t compile_simple_assertion_matchingpath
000000000020c370 0000000000001334 t php_var_serialize_class
0000000000147a60 000000000000134a t compile_recurse
00000000001714f0 0000000000001450 t php_json_escape_string.isra.4
0000000000218070 000000000000146c t url_adapt_ext
0000000000720ae0 00000000000014c0 d ini_entries
0000000000237220 00000000000014e2 t format_converter
00000000002c11b0 000000000000157e T zend_dtoa
000000000016c7b0 0000000000001619 T php_pcre_match_impl
000000000026b8c0 0000000000001621 t ini_parse
0000000000223080 000000000000163b t php_var_unserialize_internal
00000000001069b0 000000000000171f t timelib_parse_from_format_with_map
0000000000134120 00000000000017bb t fast_forward_first_n_chars
0000000000238b00 00000000000018b7 t xbuf_format_converter
00000000002bb3d0 00000000000018fb t zim_exception_getTraceAsString
00000000001460f0 000000000000196a t compile_assert_matchingpath
00000000001e0150 0000000000001a5e T php_escape_html_entities_ex
0000000000163b60 0000000000001a77 T php_pcre2_substitute
00000000001413c0 0000000000001aac t compile_backtrackingpath
00000000004054c0 0000000000001ab0 r _pcre2_ucd_records_8
0000000000210770 0000000000001b19 T php_var_export_ex
0000000000240600 0000000000001ce2 T rfc1867_post_handler
0000000000174c50 0000000000001e72 t php_json_scan
000000000013d2e0 0000000000001ea0 t compile_matchingpath
0000000000136aa0 0000000000001ee8 t compile_char1_matchingpath
000000000072c980 0000000000002028 b cwd_globals
000000000013b160 000000000000217c t compile_iterator_matchingpath.isra.40
000000000013f180 0000000000002235 t compile_bracket_matchingpath
000000000020d6b0 000000000000223f t php_var_serialize_intern.part.0
0000000000143e40 00000000000022a1 t compile_bracket_backtrackingpath
00000000001eef10 0000000000002331 t zif_metaphone
00000000002bedb0 0000000000002397 T zend_strtod
0000000000166e50 00000000000024e2 T pcre2_pattern_convert_8
00000000006a65c0 0000000000002510 d timezonedb_idx_builtin
00000000001b5f50 0000000000002535 t zif_extract
0000000000138990 00000000000027c3 t compile_xclass_matchingpath
000000000032d2a0 00000000000027ea t php_http_parser_execute
000000000025db30 0000000000002ba4 T zendparse
000000000042f640 0000000000003974 r yycheck
0000000000432fc0 0000000000003974 r yytable
0000000000718040 0000000000003da0 d mime_type_map
0000000000148db0 000000000000401c t jit_compile
0000000000110af0 00000000000041ae t compile_regex
000000000071c380 0000000000004320 d basic_functions
00000000004010c0 0000000000004400 r _pcre2_ucd_stage1_8
000000000021cd00 0000000000004928 t php_stream_url_wrap_http_ex
000000000026d260 0000000000004ab7 t ini_lex
00000000000ce24b 0000000000004dac t zend_ast_export_ex
00000000001159a0 00000000000054da T php_pcre2_compile
000000000011b780 00000000000063f4 t internal_dfa_match
000000000069faa0 0000000000006af8 d timelib_timezone_lookup
0000000000710080 0000000000007a88 d labels.27775
00000000007085e0 0000000000007a88 d labels.29190
00000000006c90e0 0000000000008000 d ht_buckets_html5
0000000000322360 00000000000086d0 T execute_ex
00000000002628c0 0000000000008a55 T lex_scan
00000000003f05c0 0000000000010b00 r _pcre2_ucd_stage2_8
000000000014dd60 000000000001317d T php_pcre2_match
00000000000ed000 00000000000199a6 t timelib_strtotime
000000000033b640 00000000000acdf4 r timelib_timezone_db_data_builtin
+ find /usr/bin/local /usr/local/sbin -type f -perm +0111 -exec strip --strip-all '{}' +
find: /usr/bin/local: No such file or directory
find: /usr/local/sbin: No such file or directory
+ true
+ nm --print-size --size-sort /usr/local/bin/php
00000000003359db 0000000000000001 T _fini
00000000000c7ee0 0000000000000001 T _init
0000000000723f60 0000000000000001 b completed.5795
000000000072a2b0 0000000000000001 b machine_little_endian
0000000000724519 0000000000000001 b mdata_used
0000000000724518 0000000000000001 b pcre2_init_ok
0000000000723370 0000000000000001 d then_trap_opcode
000000000072b3c0 0000000000000001 B zend_dtrace_enabled
00000000000cc855 0000000000000001 T zend_output_debug_string
0000000000234100 0000000000000002 t OnUpdateDefaultCharset
00000000002340e0 0000000000000002 t OnUpdateInputEncoding
00000000002340f0 0000000000000002 t OnUpdateInternalEncoding
00000000002d9fc0 0000000000000002 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER
000000000072e9a8 0000000000000002 b cli_server_globals
0000000000725a3a 0000000000000002 b dirsep_str.15638
00000000002b8fc0 0000000000000002 t iter_wrapper_dtor
000000000042a67d 0000000000000002 r paths_separator.14226
0000000000725a38 0000000000000002 b pathsep_str.15639
0000000000235020 0000000000000002 T php_com_initialize
00000000002281d0 0000000000000002 t php_conv_base64_decode_dtor
0000000000235eb0 0000000000000002 T php_module_shutdown_for_exec
0000000000419351 0000000000000002 R php_sig_bmp
000000000032bab0 0000000000000002 t sapi_cli_send_header
00000000001ab9e0 0000000000000002 t spl_heap_it_rewind
00000000002509a0 0000000000000002 t stream_resource_regular_dtor
0000000000299f40 0000000000000002 t zend_empty_destroy
000000000032ac40 0000000000000002 t zend_vm_dtor
00000000001c2ce0 0000000000000002 t zif_get_magic_quotes_runtime
00000000002d8320 0000000000000002 t zif_pass
0000000000176f70 0000000000000002 t zif_pcntl_wexitstatus
0000000000226640 0000000000000002 t zif_user_filter_nop
000000000017bbe0 0000000000000002 t zim_reflection_class_constant_getName
000000000017bbd0 0000000000000002 t zim_reflection_class_getName
000000000017bbc0 0000000000000002 t zim_reflection_property_getName
00000000001ad7d0 0000000000000002 t zim_spl_SplFixedArray_count
00000000002b80f0 0000000000000003 t dummy_encoding_detector
00000000002b80c0 0000000000000003 t dummy_encoding_fetcher
00000000002b80e0 0000000000000003 t dummy_encoding_lexer_compatibility_checker
000000000023fc10 0000000000000003 t dummy_encoding_translation
00000000002b8110 0000000000000003 t dummy_internal_encoding_getter
000000000032fb20 0000000000000003 t php_cli_server_client_read_request_on_fragment
000000000032fb10 0000000000000003 t php_cli_server_client_read_request_on_message_begin
0000000000247500 0000000000000003 t php_output_handler_devnull_func
000000000011b530 0000000000000003 T php_pcre2_set_recursion_memory_management
0000000000419357 0000000000000003 R php_sig_gif
0000000000419334 0000000000000003 R php_sig_jpc
0000000000419348 0000000000000003 R php_sig_jpg
000000000041934b 0000000000000003 R php_sig_swc
000000000041934e 0000000000000003 R php_sig_swf
000000000025baa0 0000000000000003 t php_sockop_flush
00000000002533d0 0000000000000003 t php_stream_memory_flush
00000000002216d0 0000000000000003 t php_stream_output_close
000000000032ba90 0000000000000003 t sapi_cli_header_handler
000000000032ba80 0000000000000003 t sapi_cli_read_cookies
00000000002b9740 0000000000000003 t zend_implement_arrayaccess
00000000002b9080 0000000000000003 t zend_implement_countable
0000000000299c40 0000000000000003 T zend_ptr_stack_num_elements
00000000001b3750 0000000000000003 t zm_shutdown_array
00000000001c9fe0 0000000000000003 t zm_shutdown_crypt
0000000000176ad0 0000000000000003 t zm_shutdown_pcntl
00000000002336b0 0000000000000003 t zm_startup_hrtime
00000000003f03d8 0000000000000004 r _pcre2_utf8_table1_size
0000000000725b20 0000000000000004 b byte_map
0000000000725c40 0000000000000004 b cli_err.17101
0000000000725c48 0000000000000004 b cli_in.17099
0000000000725c44 0000000000000004 b cli_out.17100
000000000072446c 0000000000000004 b compiler_initialized
0000000000723374 0000000000000004 d cpu_has_cmov
0000000000726018 0000000000000004 b dash.13565
00000000002b80d0 0000000000000004 t dummy_encoding_name_getter
0000000000725ef4 0000000000000004 b has_per_dir_config
0000000000725ef0 0000000000000004 b has_per_host_config
0000000000725f40 0000000000000004 b is_special_section
000000000072615c 0000000000000004 b last_resource_number
0000000000725e20 0000000000000004 b le_bucket
0000000000725e24 0000000000000004 b le_bucket_brigade
000000000072b458 0000000000000004 B le_index_ptr
0000000000725e2c 0000000000000004 b le_proc_open
00000000007260b8 0000000000000004 b le_protocols
0000000000723910 0000000000000004 d le_pstream
0000000000723914 0000000000000004 d le_stream
00000000007237e8 0000000000000004 d le_stream_context
000000000072390c 0000000000000004 d le_stream_filter
0000000000725e28 0000000000000004 b le_userfilters
0000000000725e44 0000000000000004 b module_initialized
0000000000725e40 0000000000000004 b module_shutdown
00000000007238d0 0000000000000004 d module_startup
000000000072601c 0000000000000004 b optchr.13564
0000000000723d28 0000000000000004 d php_cli_output_is_tty
00000000007277e0 0000000000000004 b php_date_global_timezone_db_enabled
0000000000174a70 0000000000000004 T php_json_parser_error_code
0000000000723908 0000000000000004 D php_optidx
0000000000170630 0000000000000004 T php_pcre_pce_re
000000000041931c 0000000000000004 R php_sig_ico
0000000000419320 0000000000000004 R php_sig_iff
0000000000419353 0000000000000004 R php_sig_psd
0000000000419318 0000000000000004 R php_sig_riff
000000000041933b 0000000000000004 R php_sig_tif_ii
0000000000419337 0000000000000004 R php_sig_tif_mm
0000000000419314 0000000000000004 R php_sig_webp
000000000072a2e0 0000000000000004 B random_globals
00000000007277b8 0000000000000004 b save_argc
0000000000726158 0000000000000004 B zend_extension_flags
0000000000726c88 0000000000000004 b zend_handlers_count
00000000007260f8 0000000000000004 b zend_mm_use_huge_pages
0000000000299d90 0000000000000004 T zend_stack_count
00000000002b87c0 0000000000000004 T zend_ts_hash_num_elements
0000000000726128 0000000000000004 b zend_version_info_length
00000000000dd82f 0000000000000005 t ZEND_EXT_NOP_SPEC_HANDLER
00000000000d5f15 0000000000000005 t ZEND_NOP_SPEC_HANDLER
0000000000274810 0000000000000005 T _zend_mm_block_size
000000000011aff0 0000000000000005 t default_free
000000000011afe0 0000000000000005 t default_malloc
0000000000277a50 0000000000000005 T file_handle_dtor
00000000000e4aa0 0000000000000005 t php_date_parse_tzfile_wrapper
00000000001fd6a0 0000000000000005 T php_dirname
00000000002342e0 0000000000000005 t php_get_configuration_directive_for_zend
0000000000234640 0000000000000005 T php_html_puts
00000000001e3600 0000000000000005 t php_ifd_get32s.part.1
0000000000174b40 0000000000000005 T php_json_parse
0000000000233f00 0000000000000005 t php_output_wrapper
0000000000160f60 0000000000000005 T php_pcre2_get_mark
0000000000160f80 0000000000000005 T php_pcre2_get_ovector_count
0000000000160f70 0000000000000005 T php_pcre2_get_ovector_pointer
0000000000160f90 0000000000000005 T php_pcre2_get_startchar
0000000000169890 0000000000000005 t php_pcre_free
0000000000169870 0000000000000005 t php_pcre_malloc
0000000000170620 0000000000000005 T php_pcre_pce_decref
0000000000170610 0000000000000005 T php_pcre_pce_incref
00000000001f4a70 0000000000000005 T php_srand
0000000000222f60 0000000000000005 T php_var_unserialize_get_allowed_classes
0000000000222f70 0000000000000005 T php_var_unserialize_set_allowed_classes
0000000000234630 0000000000000005 T php_write
000000000019e3f0 0000000000000005 t spl_filesystem_dir_it_current_data
000000000019f3c0 0000000000000005 t spl_filesystem_object_new
0000000000252e80 0000000000000005 t stream_cookie_reader
0000000000252e60 0000000000000005 t stream_cookie_seeker
0000000000252e70 0000000000000005 t stream_cookie_writer
00000000002b0960 0000000000000005 t zend_destroy_rsrc_list
000000000028af50 0000000000000005 T zend_get_constant
000000000028af40 0000000000000005 T zend_get_constant_str
000000000028fd30 0000000000000005 T zend_llist_count
0000000000277420 0000000000000005 T zend_mm_get_storage
0000000000277430 0000000000000005 T zend_mm_startup
0000000000299d80 0000000000000005 T zend_stack_base
0000000000299f50 0000000000000005 t zend_string_destroy
00000000002b8590 0000000000000005 T zend_ts_hash_add
00000000002b85d0 0000000000000005 T zend_ts_hash_add_empty_element
00000000002b85f0 0000000000000005 T zend_ts_hash_apply
00000000002b8600 0000000000000005 T zend_ts_hash_apply_with_argument
00000000002b8750 0000000000000005 T zend_ts_hash_copy
00000000002b8760 0000000000000005 T zend_ts_hash_copy_to_hash
00000000002b86d0 0000000000000005 T zend_ts_hash_del
00000000002b8570 0000000000000005 T zend_ts_hash_destroy
00000000002b86f0 0000000000000005 T zend_ts_hash_find
00000000002b85e0 0000000000000005 T zend_ts_hash_graceful_destroy
00000000002b86e0 0000000000000005 T zend_ts_hash_index_del
00000000002b8700 0000000000000005 T zend_ts_hash_index_find
00000000002b85c0 0000000000000005 T zend_ts_hash_index_update
00000000002b8780 0000000000000005 T zend_ts_hash_merge_ex
00000000002b87b0 0000000000000005 T zend_ts_hash_minmax
00000000002b85b0 0000000000000005 T zend_ts_hash_next_index_insert
00000000002b87d0 0000000000000005 T zend_ts_hash_rehash
00000000002b86c0 0000000000000005 T zend_ts_hash_reverse_apply
00000000002b8800 0000000000000005 T zend_ts_hash_str_add
00000000002b87e0 0000000000000005 T zend_ts_hash_str_find
00000000002b87f0 0000000000000005 T zend_ts_hash_str_update
00000000002b85a0 0000000000000005 T zend_ts_hash_update
00000000000ea2d0 0000000000000005 t zim_DateTime___construct
000000000017bc00 0000000000000005 t zim_reflection_function_getName
000000000017be00 0000000000000005 t zim_reflection_function_getNamespaceName
000000000017bf90 0000000000000005 t zim_reflection_function_getShortName
000000000017bcb0 0000000000000005 t zim_reflection_function_inNamespace
0000000000179c60 0000000000000005 t zim_reflection_method_setAccessible
000000000017bbf0 0000000000000005 t zim_reflection_parameter_getName
00000000001ac910 0000000000000005 t zim_spl_SplPriorityQueue_compare
0000000000213730 0000000000000005 t zm_info_assert
0000000000330050 0000000000000005 t zm_info_cli_server
00000000001b02b0 0000000000000005 t zval_compare
00000000002b8120 0000000000000006 t dummy_internal_encoding_setter
00000000002b8fb0 0000000000000006 t iter_wrapper_free
000000000011b4b0 0000000000000006 T php_pcre2_set_compile_extra_options
000000000011b500 0000000000000006 T php_pcre2_set_depth_limit
000000000011b4e0 0000000000000006 T php_pcre2_set_heap_limit
000000000011b4f0 0000000000000006 T php_pcre2_set_match_limit
000000000011b4a0 0000000000000006 T php_pcre2_set_parens_nest_limit
000000000011b520 0000000000000006 T php_pcre2_set_recursion_limit
000000000021a150 0000000000000006 t php_stream_ftp_stream_stat
000000000021ccf0 0000000000000006 t php_stream_http_stream_stat
00000000002216f0 0000000000000006 t php_stream_input_flush
00000000002534a0 0000000000000006 t php_stream_memory_cast
00000000002cb2c0 0000000000000006 T realpath_cache_max_buckets
000000000032baa0 0000000000000006 t sapi_cli_send_headers
000000000032fb00 0000000000000006 t sapi_cli_server_discard_headers
00000000002b8230 0000000000000006 T zend_multibyte_check_lexer_compatibility
00000000002b8250 0000000000000006 T zend_multibyte_encoding_converter
00000000002b8240 0000000000000006 T zend_multibyte_encoding_detector
00000000002b8210 0000000000000006 T zend_multibyte_fetch_encoding
00000000002b8220 0000000000000006 T zend_multibyte_get_encoding_name
00000000002b8270 0000000000000006 T zend_multibyte_get_internal_encoding
00000000002b8260 0000000000000006 T zend_multibyte_parse_encoding_list
00000000002b82d0 0000000000000006 T zend_multibyte_set_internal_encoding
00000000002bed40 0000000000000006 T zend_startup_strtod
000000000032ad00 0000000000000006 T zend_vm_kind
00000000002e4f20 0000000000000007 t ZEND_FETCH_R_SPEC_CONST_UNUSED_HANDLER
00000000003007a0 0000000000000007 t ZEND_FETCH_R_SPEC_CV_UNUSED_HANDLER
00000000002e52c0 0000000000000007 t ZEND_FETCH_R_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e8cd0 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_CONST_CONST_HANDLER
00000000002e94c0 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_CONST_UNUSED_HANDLER
00000000002e90c0 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_CONST_VAR_HANDLER
00000000002ea920 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_CV_CONST_HANDLER
00000000002eb2a0 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_CV_UNUSED_HANDLER
00000000002eae10 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_CV_VAR_HANDLER
00000000002e9990 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_TMPVAR_CONST_HANDLER
00000000002ea3e0 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e9ed0 0000000000000007 t ZEND_FETCH_STATIC_PROP_R_SPEC_TMPVAR_VAR_HANDLER
00000000003185c0 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_CV_CONST_HANDLER
00000000003189b0 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_CV_CV_HANDLER
00000000003187a0 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_CV_TMPVAR_HANDLER
0000000000317a20 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_UNUSED_CONST_HANDLER
0000000000317d70 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_UNUSED_CV_HANDLER
0000000000317bd0 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_UNUSED_TMPVAR_HANDLER
0000000000317f80 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_VAR_CONST_HANDLER
00000000003183d0 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_VAR_CV_HANDLER
00000000003181a0 0000000000000007 t ZEND_POST_DEC_OBJ_SPEC_VAR_TMPVAR_HANDLER
0000000000317070 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_CV_CONST_HANDLER
0000000000317490 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_CV_CV_HANDLER
0000000000317280 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_CV_TMPVAR_HANDLER
0000000000316420 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_UNUSED_CONST_HANDLER
00000000003167a0 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_UNUSED_CV_HANDLER
00000000003165e0 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_UNUSED_TMPVAR_HANDLER
00000000003169e0 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_VAR_CONST_HANDLER
0000000000316e70 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_VAR_CV_HANDLER
0000000000316c30 0000000000000007 t ZEND_PRE_DEC_OBJ_SPEC_VAR_TMPVAR_HANDLER
00000000002542f0 0000000000000007 T _php_stream_temp_create
000000000028feb0 0000000000000007 t cmp_live_range
0000000000320bd0 0000000000000007 T execute_internal
00000000003ee728 0000000000000007 r freg_lmap
00000000003ee728 0000000000000007 r freg_map
000000000029e100 0000000000000007 T object_init_ex
00000000001afab0 0000000000000007 t php_array_key_compare_string_natural
00000000001b00e0 0000000000000007 t php_array_natural_compare
00000000001d4820 0000000000000007 T php_copy_file_ex
000000000024f270 0000000000000007 T php_file_le_pstream
000000000024f260 0000000000000007 T php_file_le_stream
000000000024f280 0000000000000007 T php_file_le_stream_filter
0000000000234620 0000000000000007 T php_get_module_initialized
000000000023d5b0 0000000000000007 T php_ini_has_per_dir_config
000000000023d640 0000000000000007 T php_ini_has_per_host_config
00000000001cff10 0000000000000007 T php_le_stream_context
00000000001d3160 0000000000000007 T php_mkdir
0000000000247370 0000000000000007 T php_open_temporary_fd
000000000024c450 0000000000000007 T php_output_get_start_lineno
000000000011b440 0000000000000007 T php_pcre2_set_character_tables
000000000011b470 0000000000000007 T php_pcre2_set_max_pattern_length
000000000011b510 0000000000000007 T php_pcre2_set_offset_limit
00000000001797a0 0000000000000007 t php_signal
00000000002216c0 0000000000000007 t php_stream_output_read
0000000000219f30 0000000000000007 T php_url_scanner_reset_var
0000000000191f40 0000000000000007 t spl_RecursiveIteratorIterator_new
00000000001a9340 0000000000000007 t spl_SplObjectStorage_new
000000000018e9b0 0000000000000007 t spl_iterator_count_apply
0000000000205490 0000000000000007 T string_natural_compare_function
00000000000eb780 0000000000000007 t timelib_day_of_week
00000000002bd660 0000000000000007 t zend_default_exception_new
00000000002a2a10 0000000000000007 T zend_get_callable_name
0000000000278d80 0000000000000007 T zend_get_compiled_lineno
000000000031f910 0000000000000007 T zend_get_compiled_variable_value
00000000000cbaf5 0000000000000007 t zend_ini_scanner_get_lineno
00000000002a2200 0000000000000007 T zend_register_internal_class
0000000000299d20 0000000000000007 T zend_stack_del_top
00000000000e77b0 0000000000000007 t zif_date_sunrise
00000000001cf3c0 0000000000000007 t zif_exec
00000000001dd900 0000000000000007 t zif_fsockopen
00000000001e5620 0000000000000007 t zif_getimagesizefromstring
00000000000e8010 0000000000000007 t zif_gmdate
0000000000203740 0000000000000007 t zif_hebrev
00000000001e2010 0000000000000007 t zif_htmlspecialchars
00000000002b38d0 0000000000000007 t zif_is_a
00000000001f1470 0000000000000007 t zif_microtime
00000000000e9230 0000000000000007 t zif_mktime
00000000001cb4b0 0000000000000007 t zif_opendir
000000000016e020 0000000000000007 t zif_preg_match
000000000016f430 0000000000000007 t zif_preg_replace
0000000000203730 0000000000000007 t zif_str_ireplace
00000000000e96b0 0000000000000007 t zif_strftime
00000000002054a0 0000000000000007 t zif_strnatcmp
00000000001f8070 0000000000000007 t zif_strspn
0000000000183bb0 0000000000000007 t zim_reflection_class___construct
00000000001827c0 0000000000000007 t zim_reflection_method_invokeArgs
00000000001a68f0 0000000000000007 t zim_spl_DirectoryIterator___construct
00000000000d5f1a 0000000000000008 t ZEND_JMP_FORWARD_SPEC_HANDLER
0000000000723f40 0000000000000008 B __environ
000000000014d380 0000000000000008 t _pcre2_jit_get_target_8
0000000000723378 0000000000000008 d _pcre2_unicode_version_8
00000000003ef7c0 0000000000000008 r _pcre2_utt_size_8
00000000000e15a0 0000000000000008 t _php_date_tzinfo_dtor
0000000000250970 0000000000000008 T _php_stream_free_enclosed
0000000000250b60 0000000000000008 T _php_stream_tell
0000000000723988 0000000000000008 d _real_page_size
000000000023d7f0 0000000000000008 t _type_dtor
00000000002b8560 0000000000000008 T _zend_ts_hash_init
0000000000725f38 0000000000000008 b active_ini_hash
0000000000726100 0000000000000008 b alloc_globals
0000000000724478 0000000000000008 b allocated_size
0000000000728228 0000000000000008 b array_globals
0000000000725b40 0000000000000008 b assertion_error_ce
000000000029a170 0000000000000008 t auto_global_dtor
0000000000725af8 0000000000000008 b big_endian_short_map
0000000000724530 0000000000000008 b cctx
0000000000331530 0000000000000008 t char_ptr_dtor_p
00000000007049c0 0000000000000008 d chunked_filter_factory
0000000000726138 0000000000000008 b class_cleanup_handlers
0000000000725a48 0000000000000008 b cmd_max_len
00000000007049e8 0000000000000008 d consumed_filter_factory
0000000000727808 0000000000000008 b date_ce_date
00000000007277f0 0000000000000008 b date_ce_immutable
0000000000727800 0000000000000008 b date_ce_interface
00000000007277f8 0000000000000008 b date_ce_interval
0000000000727810 0000000000000008 b date_ce_period
00000000007277e8 0000000000000008 b date_ce_timezone
0000000000725a40 0000000000000008 b dir_class_entry_ptr
000000000072a218 0000000000000008 b dir_globals
00000000007264a0 0000000000000008 b dtoa_result
0000000000723f68 0000000000000008 b dtor_idx.5797
00000000002b8100 0000000000000008 t dummy_encoding_converter
00000000007277c8 0000000000000008 b empty_environ
0000000000723f40 0000000000000008 V environ
0000000000724480 0000000000000008 b free_blocks
000000000029c600 0000000000000008 T free_estring
00000000007277a8 0000000000000008 b frozen_environ
000000000072b4e8 0000000000000008 B gc_collect_cycles
00000000002c3900 0000000000000008 T gc_enabled
00000000002c3920 0000000000000008 T gc_protected
0000000000724538 0000000000000008 b gctx
000000000029c0b0 0000000000000008 T get_zend_version
00000000002606e0 0000000000000008 t heredoc_label_dtor
0000000000724a18 0000000000000008 b incomplete_class_entry
0000000000726638 0000000000000008 b interned_string_copy_storage
0000000000723ae8 0000000000000008 d interned_string_init_request_handler
0000000000723af0 0000000000000008 d interned_string_request_handler
0000000000726630 0000000000000008 b interned_string_restore_storage
0000000000724540 0000000000000008 b jit_stack
0000000000277ae0 0000000000000008 t label_ptr_dtor
0000000000725e30 0000000000000008 b lastCodeset.20427
0000000000725e38 0000000000000008 b lastHint.20426
00000000002b0470 0000000000000008 t list_destructors_dtor
0000000000725af0 0000000000000008 b little_endian_short_map
0000000000725b00 0000000000000008 b machine_endian_short_map
0000000000724528 0000000000000008 b mctx
0000000000724520 0000000000000008 b mdata
0000000000726140 0000000000000008 b module_post_deactivate_handlers
0000000000726148 0000000000000008 b module_request_shutdown_handlers
0000000000726150 0000000000000008 b module_request_startup_handlers
00000000007277a0 0000000000000008 b new_environ
0000000000724548 0000000000000008 b orig_interrupt_function
00000000002d4110 0000000000000008 t overriden_ptr_dtor
00000000007264a8 0000000000000008 b p5s
000000000032d180 0000000000000008 T php_cli_get_shell_callbacks
00000000000e69b0 0000000000000008 T php_date_get_date_ce
00000000000e69c0 0000000000000008 T php_date_get_immutable_ce
00000000000e69d0 0000000000000008 T php_date_get_interface_ce
00000000000e69f0 0000000000000008 T php_date_get_interval_ce
00000000000e6a00 0000000000000008 T php_date_get_period_ce
00000000000e69e0 0000000000000008 T php_date_get_timezone_ce
0000000000727818 0000000000000008 b php_date_global_timezone_db
00000000002543e0 0000000000000008 T php_get_stream_filters_hash_global
00000000007238f8 0000000000000008 D php_import_environment_variables
000000000023d7e0 0000000000000008 T php_ini_get_configuration_hash
0000000000725e70 0000000000000008 B php_ini_opened_path
0000000000725e60 0000000000000008 B php_ini_scanned_files
0000000000725e68 0000000000000008 B php_ini_scanned_path
00000000007278b8 0000000000000008 B php_json_exception_ce
00000000007278b0 0000000000000008 B php_json_serializable_ce
0000000000723900 0000000000000008 d php_output_direct
0000000000247bb0 0000000000000008 T php_output_get_active_handler
000000000024c440 0000000000000008 T php_output_get_start_filename
0000000000170600 0000000000000008 T php_pcre_cctx
0000000000169880 0000000000000008 t php_pcre_free_char_table
00000000001705f0 0000000000000008 T php_pcre_gctx
00000000001705e0 0000000000000008 T php_pcre_mctx
00000000007238d8 0000000000000008 D php_register_internal_extensions_func
0000000000725f50 0000000000000008 b php_rfc1867_basename
0000000000725f48 0000000000000008 B php_rfc1867_callback
00000000007238f0 0000000000000008 d php_rfc1867_encoding_translation
0000000000725f58 0000000000000008 b php_rfc1867_get_detect_order
00000000007238e8 0000000000000008 d php_rfc1867_getword
00000000007238e0 0000000000000008 d php_rfc1867_getword_conf
0000000000723d20 0000000000000008 d php_self
0000000000419340 0000000000000008 R php_sig_png
000000000024f2b0 0000000000000008 T php_stream_get_url_stream_wrappers_hash_global
00000000002216e0 0000000000000008 t php_stream_input_write
000000000025acf0 0000000000000008 T php_stream_xport_get_hash
0000000000204b50 0000000000000008 T php_strip_tags
0000000000219eb0 0000000000000008 T php_url_scanner_add_var
0000000000726020 0000000000000008 b prev_optarg.13566
00000000007277d8 0000000000000008 b ps_buffer
00000000007277c0 0000000000000008 b ps_buffer_cur_len
00000000007277d0 0000000000000008 b ps_buffer_size
00000000002cb2d0 0000000000000008 T realpath_cache_get_buckets
00000000002cb2b0 0000000000000008 T realpath_cache_size
00000000007279a0 0000000000000008 B reflection_class_constant_ptr
00000000007279a8 0000000000000008 B reflection_class_ptr
0000000000727990 0000000000000008 B reflection_exception_ptr
00000000007279b0 0000000000000008 B reflection_extension_ptr
0000000000727958 0000000000000008 B reflection_function_abstract_ptr
0000000000727960 0000000000000008 B reflection_function_ptr
0000000000727970 0000000000000008 B reflection_generator_ptr
0000000000727978 0000000000000008 B reflection_method_ptr
0000000000727968 0000000000000008 B reflection_named_type_ptr
0000000000727988 0000000000000008 B reflection_object_ptr
00000000007279b8 0000000000000008 B reflection_parameter_ptr
0000000000727940 0000000000000008 B reflection_property_ptr
0000000000727948 0000000000000008 B reflection_ptr
0000000000727980 0000000000000008 B reflection_type_ptr
0000000000727950 0000000000000008 B reflection_zend_extension_ptr
0000000000727998 0000000000000008 B reflector_ptr
0000000000726198 0000000000000008 b registered_zend_ini_directives
0000000000247550 0000000000000008 t reverse_conflict_dtor
00000000007274b8 0000000000000008 b s_in_process
000000000023d800 0000000000000008 T sapi_free_header
00000000007277b0 0000000000000008 b save_argv
0000000000723d18 0000000000000008 d script_filename
00000000007274c0 0000000000000008 b send_header_func.16854
0000000000724488 0000000000000008 b sljit_page_align
0000000000724640 0000000000000008 b spl_autoload_call_fn
0000000000724648 0000000000000008 b spl_autoload_fn
00000000007279e8 0000000000000008 B spl_ce_AppendIterator
0000000000727c60 0000000000000008 B spl_ce_ArrayIterator
0000000000727c68 0000000000000008 B spl_ce_ArrayObject
0000000000727cd0 0000000000000008 B spl_ce_BadFunctionCallException
0000000000727cc8 0000000000000008 B spl_ce_BadMethodCallException
0000000000727a28 0000000000000008 B spl_ce_CachingIterator
0000000000727a68 0000000000000008 B spl_ce_CallbackFilterIterator
0000000000727c90 0000000000000008 B spl_ce_DirectoryIterator
0000000000727cd8 0000000000000008 B spl_ce_DomainException
00000000007279f8 0000000000000008 B spl_ce_EmptyIterator
0000000000727c80 0000000000000008 B spl_ce_FilesystemIterator
00000000007279f0 0000000000000008 B spl_ce_FilterIterator
0000000000727c88 0000000000000008 B spl_ce_GlobIterator
0000000000727a78 0000000000000008 B spl_ce_InfiniteIterator
0000000000727cb0 0000000000000008 B spl_ce_InvalidArgumentException
0000000000727a40 0000000000000008 B spl_ce_IteratorIterator
0000000000727cf0 0000000000000008 B spl_ce_LengthException
0000000000727a38 0000000000000008 B spl_ce_LimitIterator
0000000000727d10 0000000000000008 B spl_ce_LogicException
0000000000727e28 0000000000000008 B spl_ce_MultipleIterator
0000000000727a48 0000000000000008 B spl_ce_NoRewindIterator
0000000000727ce8 0000000000000008 B spl_ce_OutOfBoundsException
0000000000727d00 0000000000000008 B spl_ce_OutOfRangeException
0000000000727a08 0000000000000008 B spl_ce_OuterIterator
0000000000727d08 0000000000000008 B spl_ce_OverflowException
0000000000727a00 0000000000000008 B spl_ce_ParentIterator
0000000000727cb8 0000000000000008 B spl_ce_RangeException
0000000000727c70 0000000000000008 B spl_ce_RecursiveArrayIterator
0000000000727a50 0000000000000008 B spl_ce_RecursiveCachingIterator
0000000000727a80 0000000000000008 B spl_ce_RecursiveCallbackFilterIterator
0000000000727ca0 0000000000000008 B spl_ce_RecursiveDirectoryIterator
0000000000727a60 0000000000000008 B spl_ce_RecursiveFilterIterator
0000000000727a20 0000000000000008 B spl_ce_RecursiveIterator
0000000000727a30 0000000000000008 B spl_ce_RecursiveIteratorIterator
0000000000727a18 0000000000000008 B spl_ce_RecursiveRegexIterator
0000000000727a58 0000000000000008 B spl_ce_RecursiveTreeIterator
0000000000727a10 0000000000000008 B spl_ce_RegexIterator
0000000000727cc0 0000000000000008 B spl_ce_RuntimeException
0000000000727a70 0000000000000008 B spl_ce_SeekableIterator
0000000000727f48 0000000000000008 B spl_ce_SplDoublyLinkedList
0000000000727c78 0000000000000008 B spl_ce_SplFileInfo
0000000000727ca8 0000000000000008 B spl_ce_SplFileObject
0000000000728220 0000000000000008 B spl_ce_SplFixedArray
0000000000728058 0000000000000008 B spl_ce_SplHeap
0000000000728048 0000000000000008 B spl_ce_SplMaxHeap
0000000000728050 0000000000000008 B spl_ce_SplMinHeap
0000000000727d20 0000000000000008 B spl_ce_SplObjectStorage
0000000000727d28 0000000000000008 B spl_ce_SplObserver
0000000000728040 0000000000000008 B spl_ce_SplPriorityQueue
0000000000727f40 0000000000000008 B spl_ce_SplQueue
0000000000727e40 0000000000000008 B spl_ce_SplStack
0000000000727e20 0000000000000008 B spl_ce_SplSubject
0000000000727c98 0000000000000008 B spl_ce_SplTempFileObject
0000000000727ce0 0000000000000008 B spl_ce_UnderflowException
0000000000727cf8 0000000000000008 B spl_ce_UnexpectedValueException
000000000018e620 0000000000000008 t spl_register_property
000000000071c0f0 0000000000000008 D stderr
000000000071c100 0000000000000008 D stdin
000000000071c0f8 0000000000000008 D stdout
0000000000704a08 0000000000000008 d strfilter_convert_factory
0000000000704a98 0000000000000008 d strfilter_rot13_factory
0000000000704a28 0000000000000008 d strfilter_strip_tags_factory
0000000000704a48 0000000000000008 d strfilter_tolower_factory
0000000000704a50 0000000000000008 d strfilter_toupper_factory
0000000000215060 0000000000000008 t tag_dtor
0000000000108800 0000000000000008 t timelib_builtin_db
00000000001084b0 0000000000000008 t timelib_timezone_abbreviations_list
0000000000724470 0000000000000008 b total_size
000000000043fa38 0000000000000008 r uninitialized_bucket
0000000000704800 0000000000000008 d user_filter_factory
000000000024ef30 0000000000000008 t wrapper_error_dtor
00000000002b6f60 0000000000000008 T zend_alter_ini_entry
0000000000726c10 0000000000000008 B zend_ast_process
000000000072c960 0000000000000008 B zend_ce_ClosedGeneratorException
000000000072b468 0000000000000008 B zend_ce_aggregate
000000000072b4c8 0000000000000008 B zend_ce_argument_count_error
000000000072b4c0 0000000000000008 B zend_ce_arithmetic_error
000000000072b478 0000000000000008 B zend_ce_arrayaccess
000000000072b4f0 0000000000000008 B zend_ce_closure
000000000072b490 0000000000000008 B zend_ce_compile_error
000000000072b488 0000000000000008 B zend_ce_countable
000000000072b498 0000000000000008 B zend_ce_division_by_zero_error
000000000072b4d0 0000000000000008 B zend_ce_error
000000000072b4e0 0000000000000008 B zend_ce_error_exception
000000000072b4b0 0000000000000008 B zend_ce_exception
000000000072c968 0000000000000008 B zend_ce_generator
000000000072b470 0000000000000008 B zend_ce_iterator
000000000072b4b8 0000000000000008 B zend_ce_parse_error
000000000072b480 0000000000000008 B zend_ce_serializable
000000000072b4a0 0000000000000008 B zend_ce_throwable
000000000072b460 0000000000000008 B zend_ce_traversable
000000000072b4d8 0000000000000008 B zend_ce_type_error
0000000000290820 0000000000000008 t zend_class_add_ref
000000000072aac0 0000000000000008 B zend_compile_file
000000000072acf8 0000000000000008 B zend_compile_string
0000000000726628 0000000000000008 B zend_empty_string
000000000072b398 0000000000000008 B zend_error_cb
00000000002be0c0 0000000000000008 T zend_exception_get_default
000000000072b340 0000000000000008 B zend_execute_ex
000000000072b348 0000000000000008 B zend_execute_internal
000000000072b350 0000000000000008 B zend_fopen
00000000002c4ad0 0000000000000008 T zend_get_closure_method_def
0000000000278d70 0000000000000008 T zend_get_compiled_filename
0000000000726118 0000000000000008 b zend_get_configuration_directive_p
00000000002be0d0 0000000000000008 T zend_get_error_exception
000000000032acf0 0000000000000008 T zend_get_halt_op
000000000072b358 0000000000000008 B zend_getenv
0000000000726c40 0000000000000008 b zend_handlers_table
000000000072b3b0 0000000000000008 B zend_interrupt_function
0000000000278d90 0000000000000008 T zend_is_compiling
0000000000726620 0000000000000008 B zend_known_strings
0000000000726120 0000000000000008 b zend_message_dispatcher_p
0000000000277380 0000000000000008 T zend_mm_get_heap
0000000000723a70 0000000000000008 D zend_multibyte_encoding_utf16be
0000000000723a68 0000000000000008 D zend_multibyte_encoding_utf16le
0000000000723a80 0000000000000008 D zend_multibyte_encoding_utf32be
0000000000723a78 0000000000000008 D zend_multibyte_encoding_utf32le
0000000000723a60 0000000000000008 D zend_multibyte_encoding_utf8
00000000002b8280 0000000000000008 T zend_multibyte_get_script_encoding
000000000072bd00 0000000000000008 B zend_new_interned_string
000000000072b3b8 0000000000000008 B zend_on_timeout
0000000000726c80 0000000000000008 b zend_opcode_handler_funcs
0000000000726c90 0000000000000008 b zend_opcode_handlers
0000000000726108 0000000000000008 B zend_post_startup_cb
000000000072b390 0000000000000008 B zend_printf
000000000072b370 0000000000000008 b zend_printf_to_smart_str
000000000072b3c8 0000000000000008 b zend_printf_to_smart_string
000000000072b368 0000000000000008 B zend_resolve_path
0000000000278d60 0000000000000008 T zend_restore_compiled_filename
0000000000726c98 0000000000000008 b zend_spec_handlers
0000000000726110 0000000000000008 B zend_standard_class_def
000000000072b360 0000000000000008 B zend_stream_open_function
000000000072bd08 0000000000000008 B zend_string_init_interned
000000000072b4a8 0000000000000008 B zend_throw_exception_hook
000000000072b3a8 0000000000000008 B zend_ticks_function
00000000002b87a0 0000000000000008 T zend_ts_hash_compare
00000000002b8770 0000000000000008 T zend_ts_hash_merge
00000000002b8790 0000000000000008 T zend_ts_hash_sort
0000000000726130 0000000000000008 b zend_version_info
000000000072b3a0 0000000000000008 B zend_write
00000000001796e0 0000000000000008 t zif_pcntl_wifcontinued
00000000001d4810 0000000000000009 T php_copy_file
00000000001c75a0 0000000000000009 T php_get_inf
00000000001c7590 0000000000000009 T php_get_nan
0000000000233960 0000000000000009 t php_on_timeout
0000000000165e30 0000000000000009 T php_pcre2_substring_number_from_name
00000000002561a0 0000000000000009 t php_plain_files_dirstream_close
0000000000199630 0000000000000009 t spl_array_object_new
00000000001ab3e0 0000000000000009 t spl_dllist_object_new
00000000001ae5b0 0000000000000009 t spl_fixedarray_new
00000000001ad070 0000000000000009 t spl_heap_object_new
0000000000217d80 000000000000000a t OnUpdateOutputHosts
0000000000218050 000000000000000a t OnUpdateOutputTags
00000000002e4f80 000000000000000a t ZEND_FETCH_IS_SPEC_CONST_UNUSED_HANDLER
0000000000300800 000000000000000a t ZEND_FETCH_IS_SPEC_CV_UNUSED_HANDLER
00000000002e5320 000000000000000a t ZEND_FETCH_IS_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e4f40 000000000000000a t ZEND_FETCH_RW_SPEC_CONST_UNUSED_HANDLER
00000000003007c0 000000000000000a t ZEND_FETCH_RW_SPEC_CV_UNUSED_HANDLER
00000000002e52e0 000000000000000a t ZEND_FETCH_RW_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e8d30 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_CONST_CONST_HANDLER
00000000002e9520 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_CONST_UNUSED_HANDLER
00000000002e9120 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_CONST_VAR_HANDLER
00000000002ea980 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_CV_CONST_HANDLER
00000000002eb300 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_CV_UNUSED_HANDLER
00000000002eae70 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_CV_VAR_HANDLER
00000000002e99f0 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_TMPVAR_CONST_HANDLER
00000000002ea440 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e9f30 000000000000000a t ZEND_FETCH_STATIC_PROP_IS_SPEC_TMPVAR_VAR_HANDLER
00000000002e8cf0 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_CONST_CONST_HANDLER
00000000002e94e0 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_CONST_UNUSED_HANDLER
00000000002e90e0 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_CONST_VAR_HANDLER
00000000002ea940 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_CV_CONST_HANDLER
00000000002eb2c0 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_CV_UNUSED_HANDLER
00000000002eae30 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_CV_VAR_HANDLER
00000000002e99b0 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_TMPVAR_CONST_HANDLER
00000000002ea400 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e9ef0 000000000000000a t ZEND_FETCH_STATIC_PROP_RW_SPEC_TMPVAR_VAR_HANDLER
00000000002e8d20 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_CONST_CONST_HANDLER
00000000002e9510 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_CONST_UNUSED_HANDLER
00000000002e9110 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_CONST_VAR_HANDLER
00000000002ea970 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_CV_CONST_HANDLER
00000000002eb2f0 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_CV_UNUSED_HANDLER
00000000002eae60 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_CV_VAR_HANDLER
00000000002e99e0 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_TMPVAR_CONST_HANDLER
00000000002ea430 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e9f20 000000000000000a t ZEND_FETCH_STATIC_PROP_UNSET_SPEC_TMPVAR_VAR_HANDLER
00000000002e8ce0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_CONST_CONST_HANDLER
00000000002e94d0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_CONST_UNUSED_HANDLER
00000000002e90d0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_CONST_VAR_HANDLER
00000000002ea930 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_CV_CONST_HANDLER
00000000002eb2b0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_CV_UNUSED_HANDLER
00000000002eae20 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_CV_VAR_HANDLER
00000000002e99a0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_TMPVAR_CONST_HANDLER
00000000002ea3f0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e9ee0 000000000000000a t ZEND_FETCH_STATIC_PROP_W_SPEC_TMPVAR_VAR_HANDLER
00000000002e4f70 000000000000000a t ZEND_FETCH_UNSET_SPEC_CONST_UNUSED_HANDLER
00000000003007f0 000000000000000a t ZEND_FETCH_UNSET_SPEC_CV_UNUSED_HANDLER
00000000002e5310 000000000000000a t ZEND_FETCH_UNSET_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e4f30 000000000000000a t ZEND_FETCH_W_SPEC_CONST_UNUSED_HANDLER
00000000003007b0 000000000000000a t ZEND_FETCH_W_SPEC_CV_UNUSED_HANDLER
00000000002e52d0 000000000000000a t ZEND_FETCH_W_SPEC_TMPVAR_UNUSED_HANDLER
00000000003185b0 000000000000000a t ZEND_POST_INC_OBJ_SPEC_CV_CONST_HANDLER
00000000003189a0 000000000000000a t ZEND_POST_INC_OBJ_SPEC_CV_CV_HANDLER
0000000000318790 000000000000000a t ZEND_POST_INC_OBJ_SPEC_CV_TMPVAR_HANDLER
0000000000317a10 000000000000000a t ZEND_POST_INC_OBJ_SPEC_UNUSED_CONST_HANDLER
0000000000317d60 000000000000000a t ZEND_POST_INC_OBJ_SPEC_UNUSED_CV_HANDLER
0000000000317bc0 000000000000000a t ZEND_POST_INC_OBJ_SPEC_UNUSED_TMPVAR_HANDLER
0000000000317f70 000000000000000a t ZEND_POST_INC_OBJ_SPEC_VAR_CONST_HANDLER
00000000003183c0 000000000000000a t ZEND_POST_INC_OBJ_SPEC_VAR_CV_HANDLER
0000000000318190 000000000000000a t ZEND_POST_INC_OBJ_SPEC_VAR_TMPVAR_HANDLER
0000000000317060 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_CV_CONST_HANDLER
0000000000317480 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_CV_CV_HANDLER
0000000000317270 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_CV_TMPVAR_HANDLER
0000000000316410 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_UNUSED_CONST_HANDLER
0000000000316790 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_UNUSED_CV_HANDLER
00000000003165d0 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_UNUSED_TMPVAR_HANDLER
00000000003169d0 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_VAR_CONST_HANDLER
0000000000316e60 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_VAR_CV_HANDLER
0000000000316c20 000000000000000a t ZEND_PRE_INC_OBJ_SPEC_VAR_TMPVAR_HANDLER
0000000000214f20 000000000000000a t incomplete_class_unset_property
0000000000214f10 000000000000000a t incomplete_class_write_property
0000000000225e90 000000000000000a T make_sha1_digest
00000000001afad0 000000000000000a t php_array_key_compare_string_natural_case
00000000001b00f0 000000000000000a t php_array_natural_case_compare
000000000023ba40 000000000000000a T php_check_open_basedir
0000000000234960 000000000000000a t php_stream_open_for_zend
0000000000219f20 000000000000000a T php_url_scanner_reset_session_var
0000000000234000 000000000000000a t php_zend_stream_closer
0000000000191f30 000000000000000a t spl_RecursiveTreeIterator_new
0000000000205480 000000000000000a T string_natural_case_compare_function
00000000000eb790 000000000000000a t timelib_iso_day_of_week
0000000000108810 000000000000000a t timelib_timezone_identifiers_list
00000000002bd650 000000000000000a t zend_error_exception_new
00000000002a5770 000000000000000a T zend_fcall_info_args
00000000002c4ae0 000000000000000a T zend_get_closure_this_ptr
0000000000277390 000000000000000a T zend_mm_is_custom_heap
00000000002a2110 000000000000000a T zend_next_free_module
00000000002a2210 000000000000000a T zend_register_internal_interface
00000000001be680 000000000000000a t zif_array_diff_assoc
00000000001bdfe0 000000000000000a t zif_array_intersect_assoc
00000000000e8000 000000000000000a t zif_date
00000000000e77c0 000000000000000a t zif_date_sunset
00000000001cb4c0 000000000000000a t zif_getdir
00000000001e5610 000000000000000a t zif_getimagesize
00000000001f1480 000000000000000a t zif_gettimeofday
00000000000e9240 000000000000000a t zif_gmmktime
00000000000e96c0 000000000000000a t zif_gmstrftime
0000000000203750 000000000000000a t zif_hebrevc
00000000001e2370 000000000000000a t zif_htmlentities
00000000002b38e0 000000000000000a t zif_is_subclass_of
00000000001cf3e0 000000000000000a t zif_passthru
00000000001786b0 000000000000000a t zif_pcntl_sigwaitinfo
00000000001dd910 000000000000000a t zif_pfsockopen
000000000016f420 000000000000000a t zif_preg_filter
000000000016e010 000000000000000a t zif_preg_match_all
0000000000203720 000000000000000a t zif_str_replace
00000000001f8080 000000000000000a t zif_strcspn
00000000002057c0 000000000000000a t zif_strnatcasecmp
00000000001cf3d0 000000000000000a t zif_system
00000000001827b0 000000000000000a t zim_reflection_method_invoke
0000000000183bc0 000000000000000a t zim_reflection_object___construct
00000000001a6900 000000000000000a t zim_spl_FilesystemIterator___construct
00000000001a6920 000000000000000a t zim_spl_GlobIterator___construct
00000000001a6910 000000000000000a t zim_spl_RecursiveDirectoryIterator___construct
000000000023b3e0 000000000000000b T expand_filepath_ex
000000000032fb30 000000000000000b t php_cli_server_sigint_handler
00000000001e1bb0 000000000000000b T php_escape_html_entities
000000000011b4d0 000000000000000b T php_pcre2_set_callout
000000000011b4c0 000000000000000b T php_pcre2_set_compile_recursion_guard
000000000025bab0 000000000000000b t php_sockop_stat
0000000000219ea0 000000000000000b T php_url_scanner_add_session_var
0000000000299d50 000000000000000b T zend_stack_is_empty
00000000001d8dc0 000000000000000b t zif_chgrp
00000000001d8e00 000000000000000b t zif_chown
00000000001b3e50 000000000000000b t zif_natsort
0000000000233950 000000000000000c t OnChangeMailForceExtra
0000000000303970 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_CONST_DIM_HANDLER
00000000002d8950 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_CONST_HANDLER
0000000000312a50 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_CONST_OBJ_HANDLER
0000000000304140 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_CV_DIM_HANDLER
00000000002fcff0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_CV_HANDLER
0000000000313040 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_CV_OBJ_HANDLER
0000000000303d70 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d30 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_TMPVAR_HANDLER
0000000000312d50 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d560 000000000000000c t ZEND_ASSIGN_ADD_SPEC_CV_UNUSED_DIM_HANDLER
00000000003118c0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311de0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311b50 000000000000000c t ZEND_ASSIGN_ADD_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302d50 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_CONST_DIM_HANDLER
00000000002d99e0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_CONST_HANDLER
00000000003120f0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_CONST_OBJ_HANDLER
00000000003035b0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_CV_DIM_HANDLER
00000000002fd820 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_CV_HANDLER
0000000000312760 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_CV_OBJ_HANDLER
00000000003031a0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9bb0 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_TMPVAR_HANDLER
0000000000312420 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cf90 000000000000000c t ZEND_ASSIGN_ADD_SPEC_VAR_UNUSED_DIM_HANDLER
0000000000303a00 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_CONST_DIM_HANDLER
00000000002d89e0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_CONST_HANDLER
0000000000312ae0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_CONST_OBJ_HANDLER
00000000003041d0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_CV_DIM_HANDLER
00000000002fd080 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_CV_HANDLER
00000000003130d0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_CV_OBJ_HANDLER
0000000000303e00 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9dc0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_TMPVAR_HANDLER
0000000000312de0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d5f0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311950 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e70 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311be0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302de0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a70 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_CONST_HANDLER
0000000000312180 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303640 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_CV_DIM_HANDLER
00000000002fd8b0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_CV_HANDLER
00000000003127f0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_CV_OBJ_HANDLER
0000000000303230 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c40 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_TMPVAR_HANDLER
00000000003124b0 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030d020 000000000000000c t ZEND_ASSIGN_BW_AND_SPEC_VAR_UNUSED_DIM_HANDLER
00000000003039f0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_CONST_DIM_HANDLER
00000000002d89d0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_CONST_HANDLER
0000000000312ad0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_CONST_OBJ_HANDLER
00000000003041c0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_CV_DIM_HANDLER
00000000002fd070 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_CV_HANDLER
00000000003130c0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_CV_OBJ_HANDLER
0000000000303df0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9db0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_TMPVAR_HANDLER
0000000000312dd0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d5e0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311940 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e60 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311bd0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302dd0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a60 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_CONST_HANDLER
0000000000312170 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303630 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_CV_DIM_HANDLER
00000000002fd8a0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_CV_HANDLER
00000000003127e0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_CV_OBJ_HANDLER
0000000000303220 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c30 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_TMPVAR_HANDLER
00000000003124a0 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030d010 000000000000000c t ZEND_ASSIGN_BW_OR_SPEC_VAR_UNUSED_DIM_HANDLER
0000000000303a10 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_CONST_DIM_HANDLER
00000000002d89f0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_CONST_HANDLER
0000000000312af0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_CONST_OBJ_HANDLER
00000000003041e0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_CV_DIM_HANDLER
00000000002fd090 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_CV_HANDLER
00000000003130e0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_CV_OBJ_HANDLER
0000000000303e10 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9dd0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_TMPVAR_HANDLER
0000000000312df0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d600 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311960 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e80 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311bf0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302df0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a80 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_CONST_HANDLER
0000000000312190 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303650 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_CV_DIM_HANDLER
00000000002fd8c0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_CV_HANDLER
0000000000312800 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_CV_OBJ_HANDLER
0000000000303240 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c50 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_TMPVAR_HANDLER
00000000003124c0 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030d030 000000000000000c t ZEND_ASSIGN_BW_XOR_SPEC_VAR_UNUSED_DIM_HANDLER
00000000003039e0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_CONST_DIM_HANDLER
00000000002d89c0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_CONST_HANDLER
0000000000312ac0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_CONST_OBJ_HANDLER
00000000003041b0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_CV_DIM_HANDLER
00000000002fd060 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_CV_HANDLER
00000000003130b0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_CV_OBJ_HANDLER
0000000000303de0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9da0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_TMPVAR_HANDLER
0000000000312dc0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d5d0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311930 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e50 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311bc0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302dc0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a50 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_CONST_HANDLER
0000000000312160 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303620 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_CV_DIM_HANDLER
00000000002fd890 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_CV_HANDLER
00000000003127d0 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_CV_OBJ_HANDLER
0000000000303210 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c20 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_TMPVAR_HANDLER
0000000000312490 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030d000 000000000000000c t ZEND_ASSIGN_CONCAT_SPEC_VAR_UNUSED_DIM_HANDLER
00000000003039a0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_CONST_DIM_HANDLER
00000000002d8980 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_CONST_HANDLER
0000000000312a80 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_CONST_OBJ_HANDLER
0000000000304170 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_CV_DIM_HANDLER
00000000002fd020 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_CV_HANDLER
0000000000313070 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_CV_OBJ_HANDLER
0000000000303da0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d60 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_TMPVAR_HANDLER
0000000000312d80 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d590 000000000000000c t ZEND_ASSIGN_DIV_SPEC_CV_UNUSED_DIM_HANDLER
00000000003118f0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e10 000000000000000c t ZEND_ASSIGN_DIV_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311b80 000000000000000c t ZEND_ASSIGN_DIV_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302d80 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a10 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_CONST_HANDLER
0000000000312120 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_CONST_OBJ_HANDLER
00000000003035e0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_CV_DIM_HANDLER
00000000002fd850 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_CV_HANDLER
0000000000312790 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_CV_OBJ_HANDLER
00000000003031d0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9be0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_TMPVAR_HANDLER
0000000000312450 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cfc0 000000000000000c t ZEND_ASSIGN_DIV_SPEC_VAR_UNUSED_DIM_HANDLER
00000000003039b0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_CONST_DIM_HANDLER
00000000002d8990 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_CONST_HANDLER
0000000000312a90 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_CONST_OBJ_HANDLER
0000000000304180 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_CV_DIM_HANDLER
00000000002fd030 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_CV_HANDLER
0000000000313080 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_CV_OBJ_HANDLER
0000000000303db0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d70 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_TMPVAR_HANDLER
0000000000312d90 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d5a0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311900 000000000000000c t ZEND_ASSIGN_MOD_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e20 000000000000000c t ZEND_ASSIGN_MOD_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311b90 000000000000000c t ZEND_ASSIGN_MOD_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302d90 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a20 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_CONST_HANDLER
0000000000312130 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_CONST_OBJ_HANDLER
00000000003035f0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_CV_DIM_HANDLER
00000000002fd860 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_CV_HANDLER
00000000003127a0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_CV_OBJ_HANDLER
00000000003031e0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9bf0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_TMPVAR_HANDLER
0000000000312460 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cfd0 000000000000000c t ZEND_ASSIGN_MOD_SPEC_VAR_UNUSED_DIM_HANDLER
0000000000303990 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_CONST_DIM_HANDLER
00000000002d8970 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_CONST_HANDLER
0000000000312a70 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_CONST_OBJ_HANDLER
0000000000304160 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_CV_DIM_HANDLER
00000000002fd010 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_CV_HANDLER
0000000000313060 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_CV_OBJ_HANDLER
0000000000303d90 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d50 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_TMPVAR_HANDLER
0000000000312d70 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d580 000000000000000c t ZEND_ASSIGN_MUL_SPEC_CV_UNUSED_DIM_HANDLER
00000000003118e0 000000000000000c t ZEND_ASSIGN_MUL_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e00 000000000000000c t ZEND_ASSIGN_MUL_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311b70 000000000000000c t ZEND_ASSIGN_MUL_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302d70 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a00 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_CONST_HANDLER
0000000000312110 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_CONST_OBJ_HANDLER
00000000003035d0 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_CV_DIM_HANDLER
00000000002fd840 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_CV_HANDLER
0000000000312780 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_CV_OBJ_HANDLER
00000000003031c0 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9bd0 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_TMPVAR_HANDLER
0000000000312440 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cfb0 000000000000000c t ZEND_ASSIGN_MUL_SPEC_VAR_UNUSED_DIM_HANDLER
0000000000303a20 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_CONST_DIM_HANDLER
00000000002d8a00 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_CONST_HANDLER
0000000000312b00 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_CONST_OBJ_HANDLER
00000000003041f0 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_CV_DIM_HANDLER
00000000002fd0a0 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_CV_HANDLER
00000000003130f0 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_CV_OBJ_HANDLER
0000000000303e20 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9de0 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_TMPVAR_HANDLER
0000000000312e00 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d610 000000000000000c t ZEND_ASSIGN_POW_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311970 000000000000000c t ZEND_ASSIGN_POW_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e90 000000000000000c t ZEND_ASSIGN_POW_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311c00 000000000000000c t ZEND_ASSIGN_POW_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302e00 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a90 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_CONST_HANDLER
00000000003121a0 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303660 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_CV_DIM_HANDLER
00000000002fd8d0 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_CV_HANDLER
0000000000312810 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_CV_OBJ_HANDLER
0000000000303250 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c60 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_TMPVAR_HANDLER
00000000003124d0 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030d040 000000000000000c t ZEND_ASSIGN_POW_SPEC_VAR_UNUSED_DIM_HANDLER
00000000003039c0 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_CONST_DIM_HANDLER
00000000002d89a0 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_CONST_HANDLER
0000000000312aa0 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_CONST_OBJ_HANDLER
0000000000304190 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_CV_DIM_HANDLER
00000000002fd040 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_CV_HANDLER
0000000000313090 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_CV_OBJ_HANDLER
0000000000303dc0 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d80 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_TMPVAR_HANDLER
0000000000312da0 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d5b0 000000000000000c t ZEND_ASSIGN_SL_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311910 000000000000000c t ZEND_ASSIGN_SL_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e30 000000000000000c t ZEND_ASSIGN_SL_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311ba0 000000000000000c t ZEND_ASSIGN_SL_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302da0 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a30 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_CONST_HANDLER
0000000000312140 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303600 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_CV_DIM_HANDLER
00000000002fd870 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_CV_HANDLER
00000000003127b0 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_CV_OBJ_HANDLER
00000000003031f0 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c00 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_TMPVAR_HANDLER
0000000000312470 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cfe0 000000000000000c t ZEND_ASSIGN_SL_SPEC_VAR_UNUSED_DIM_HANDLER
00000000003039d0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_CONST_DIM_HANDLER
00000000002d89b0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_CONST_HANDLER
0000000000312ab0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_CONST_OBJ_HANDLER
00000000003041a0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_CV_DIM_HANDLER
00000000002fd050 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_CV_HANDLER
00000000003130a0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_CV_OBJ_HANDLER
0000000000303dd0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d90 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_TMPVAR_HANDLER
0000000000312db0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d5c0 000000000000000c t ZEND_ASSIGN_SR_SPEC_CV_UNUSED_DIM_HANDLER
0000000000311920 000000000000000c t ZEND_ASSIGN_SR_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311e40 000000000000000c t ZEND_ASSIGN_SR_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311bb0 000000000000000c t ZEND_ASSIGN_SR_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302db0 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_CONST_DIM_HANDLER
00000000002d9a40 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_CONST_HANDLER
0000000000312150 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_CONST_OBJ_HANDLER
0000000000303610 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_CV_DIM_HANDLER
00000000002fd880 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_CV_HANDLER
00000000003127c0 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_CV_OBJ_HANDLER
0000000000303200 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9c10 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_TMPVAR_HANDLER
0000000000312480 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cff0 000000000000000c t ZEND_ASSIGN_SR_SPEC_VAR_UNUSED_DIM_HANDLER
0000000000303980 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_CONST_DIM_HANDLER
00000000002d8960 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_CONST_HANDLER
0000000000312a60 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_CONST_OBJ_HANDLER
0000000000304150 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_CV_DIM_HANDLER
00000000002fd000 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_CV_HANDLER
0000000000313050 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_CV_OBJ_HANDLER
0000000000303d80 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_TMPVAR_DIM_HANDLER
00000000002d9d40 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_TMPVAR_HANDLER
0000000000312d60 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_TMPVAR_OBJ_HANDLER
000000000030d570 000000000000000c t ZEND_ASSIGN_SUB_SPEC_CV_UNUSED_DIM_HANDLER
00000000003118d0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_UNUSED_CONST_OBJ_HANDLER
0000000000311df0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_UNUSED_CV_OBJ_HANDLER
0000000000311b60 000000000000000c t ZEND_ASSIGN_SUB_SPEC_UNUSED_TMPVAR_OBJ_HANDLER
0000000000302d60 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_CONST_DIM_HANDLER
00000000002d99f0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_CONST_HANDLER
0000000000312100 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_CONST_OBJ_HANDLER
00000000003035c0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_CV_DIM_HANDLER
00000000002fd830 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_CV_HANDLER
0000000000312770 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_CV_OBJ_HANDLER
00000000003031b0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_TMPVAR_DIM_HANDLER
00000000002d9bc0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_TMPVAR_HANDLER
0000000000312430 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_TMPVAR_OBJ_HANDLER
000000000030cfa0 000000000000000c t ZEND_ASSIGN_SUB_SPEC_VAR_UNUSED_DIM_HANDLER
0000000000294c30 000000000000000c T convert_scalar_to_number
00000000004134f0 000000000000000c r flock_values
00000000007278c0 000000000000000c B json_globals
0000000000725a50 000000000000000c b lcg_globals
0000000000440e18 000000000000000c r p05.9028
0000000000245860 000000000000000c t php_deactivate_ticks
0000000000170f70 000000000000000c T php_json_encode
00000000002342d0 000000000000000c t php_resolve_path_for_zend
0000000000245870 000000000000000c t php_shutdown_ticks
0000000000419328 000000000000000c R php_sig_jp2
00000000003e8ee0 000000000000000c r posspropstab
000000000023d9f0 000000000000000c T sapi_shutdown
000000000042c7d0 000000000000000c r shutdown_how.14403
00000000002cbb60 000000000000000c T virtual_filepath
00000000002b0950 000000000000000c t zend_close_rsrc_list
00000000002b0b00 000000000000000c t zend_destroy_rsrc_list_dtors
00000000002c6180 000000000000000c T zend_interned_strings_deactivate
000000000028cd10 000000000000000c T zend_is_executing
000000000028dfb0 000000000000000c T zend_lookup_class
00000000002b8580 000000000000000c T zend_ts_hash_clean
0000000000176c00 000000000000000c t zm_globals_ctor_pcntl
0000000000217d90 000000000000000d t OnUpdateSessionHosts
0000000000218060 000000000000000d t OnUpdateSessionTags
00000000000d6ddc 000000000000000d t ZEND_PRE_DEC_LONG_NO_OVERFLOW_SPEC_TMPVARCV_RETVAL_UNUSED_HANDLER
00000000000d6cb6 000000000000000d t ZEND_PRE_INC_LONG_NO_OVERFLOW_SPEC_TMPVARCV_RETVAL_UNUSED_HANDLER
000000000014d390 000000000000000d t _pcre2_jit_get_size_8
00000000001af570 000000000000000d t array_bucket_p_sawp
000000000028bef0 000000000000000d t clean_non_persistent_class_full
000000000028bee0 000000000000000d t clean_non_persistent_function_full
000000000023a3d0 000000000000000d T php_printf_to_smart_str
00000000001a97f0 000000000000000d t spl_dllist_it_valid
0000000000438ce0 000000000000000d r yydefgoto
0000000000438cf0 000000000000000d r yypgoto
00000000002c41e0 000000000000000d t zend_closure_compare_objects
000000000028f700 000000000000000d t zend_llist_swap
00000000001be040 000000000000000d t zif_array_diff_key
00000000001bdf70 000000000000000d t zif_array_intersect_key
00000000001be6b0 000000000000000d t zif_array_udiff_assoc
00000000001be010 000000000000000d t zif_array_uintersect_assoc
00000000001786c0 000000000000000d t zif_pcntl_sigtimedwait
000000000022f900 000000000000000d t zif_stream_filter_prepend
00000000001e8ac0 000000000000000d t zm_startup_lcg
0000000000232cb0 000000000000000d t zm_startup_random
000000000024ede0 000000000000000e t _php_stream_free_persistent
00000000000dce5c 000000000000000e t is_null_constant
00000000001af700 000000000000000e t php_array_reverse_key_compare
00000000001aff90 000000000000000e t php_array_reverse_key_compare_numeric
00000000001afce0 000000000000000e t php_array_reverse_key_compare_string
00000000001afed0 000000000000000e t php_array_reverse_key_compare_string_case
00000000001af8c0 000000000000000e t php_array_reverse_key_compare_string_locale
0000000000244930 000000000000000e T php_default_input_filter
000000000032fa90 000000000000000e t php_http_method_str
0000000000245820 000000000000000e t php_tick_iterator
0000000000277280 000000000000000e T shutdown_memory_manager
000000000018e850 000000000000000e T spl_instantiate
00000000001ac340 000000000000000e t spl_ptr_heap_zval_ctor
0000000000252e50 000000000000000e t stream_cookie_closer
000000000044c570 000000000000000e r template.16803
00000000003eaf58 000000000000000e r toptable1
00000000003eaf48 000000000000000e r toptable2
00000000002739b0 000000000000000e T zend_mm_gc
000000000029bea0 000000000000000e t zend_register_standard_ini_entries
000000000027a420 000000000000000e t zend_resolve_function_name
00000000001d8dd0 000000000000000e t zif_lchgrp
00000000001b3e60 000000000000000e t zif_natcasesort
00000000002274f0 000000000000000e t zif_stream_bucket_prepend
00000000001b4450 000000000000000e t zif_uasort
00000000001b4460 000000000000000e t zif_uksort
0000000000185e00 000000000000000e t zim_reflection_class_constant_isPrivate
0000000000185e10 000000000000000e t zim_reflection_class_constant_isProtected
0000000000185df0 000000000000000e t zim_reflection_class_constant_isPublic
00000000001856c0 000000000000000e t zim_reflection_class_isAbstract
00000000001856b0 000000000000000e t zim_reflection_class_isFinal
0000000000185690 000000000000000e t zim_reflection_class_isInterface
00000000001856a0 000000000000000e t zim_reflection_class_isTrait
0000000000186200 000000000000000e t zim_reflection_function_isDeprecated
0000000000186210 000000000000000e t zim_reflection_function_isGenerator
0000000000186220 000000000000000e t zim_reflection_function_isVariadic
00000000001861b0 000000000000000e t zim_reflection_method_isAbstract
00000000001861a0 000000000000000e t zim_reflection_method_isFinal
00000000001861d0 000000000000000e t zim_reflection_method_isPrivate
00000000001861e0 000000000000000e t zim_reflection_method_isProtected
00000000001861c0 000000000000000e t zim_reflection_method_isPublic
00000000001861f0 000000000000000e t zim_reflection_method_isStatic
0000000000185470 000000000000000e t zim_reflection_property_isDefault
0000000000185440 000000000000000e t zim_reflection_property_isPrivate
0000000000185450 000000000000000e t zim_reflection_property_isProtected
0000000000185430 000000000000000e t zim_reflection_property_isPublic
0000000000185460 000000000000000e t zim_reflection_property_isStatic
0000000000194970 000000000000000e t zim_spl_RecursiveIteratorIterator___construct
00000000001cb290 000000000000000e t zm_activate_dir
0000000000209220 000000000000000e t zm_activate_syslog
0000000000253ca0 000000000000000f T _php_stream_memory_get_buffer
000000000023d6a0 000000000000000f T cfg_get_entry_ex
00000000002b0300 000000000000000f t clean_module_resource
000000000028bed0 000000000000000f t clean_non_persistent_constant_full
00000000000de880 000000000000000f t date_period_it_current_key
000000000044c560 000000000000000f r epilogue_template.16806
000000000023b3f0 000000000000000f T expand_filepath
00000000002c3910 000000000000000f T gc_protect
000000000044c740 000000000000000f r php_cli_server_request_error_unexpected_eof
000000000023c330 000000000000000f t php_load_php_extension_cb
000000000014d320 000000000000000f T php_pcre2_jit_stack_assign
00000000002529d0 000000000000000f T php_stream_notification_alloc
00000000003ea1a8 000000000000000f r posix_name_lengths
00000000001a9830 000000000000000f t spl_dllist_it_get_current_key
00000000001ab3f0 000000000000000f t spl_ptr_llist_zval_ctor
00000000001099d0 000000000000000f t timelib_rel_time_ctor
00000000001098e0 000000000000000f t timelib_time_ctor
0000000000109ad0 000000000000000f t timelib_time_offset_ctor
00000000002c5750 000000000000000f t zend_closure_bind_var
000000000028eb30 000000000000000f T zend_delete_global_variable
00000000002c61a0 000000000000000f T zend_interned_strings_set_permanent_storage_copy_handlers
00000000002c6190 000000000000000f T zend_interned_strings_set_request_storage_handlers
0000000000277370 000000000000000f T zend_mm_set_heap
00000000002b6740 000000000000000f t zend_remove_ini_entries
0000000000441620 0000000000000010 r __func__.9779
00000000000c93ab 0000000000000010 t _class_check_flag.isra.53.part.54
00000000000c93ab 0000000000000010 t _class_constant_check_flag.isra.41.part.42
00000000000c93ab 0000000000000010 t _function_check_flag.isra.34.part.35
0000000000256980 0000000000000010 T _php_stream_fopen_tmpfile
00000000000c93ab 0000000000000010 t _property_check_flag.isra.59.part.60
0000000000725ad0 0000000000000010 b big_endian_long_map
0000000000408890 0000000000000010 r charmap.13993
00000000003ea220 0000000000000010 r chartypeoffset
00000000000de940 0000000000000010 t date_period_write_property
000000000069ef80 0000000000000010 d default_format_config
00000000006bb7c0 0000000000000010 d ent_ht_be_apos
00000000006bbfa0 0000000000000010 d ent_ht_be_noapos
00000000006bc780 0000000000000010 d ent_ht_html4
00000000006c90c0 0000000000000010 d ent_ht_html5
0000000000725b10 0000000000000010 b int_map
0000000000725ac0 0000000000000010 b little_endian_long_map
0000000000725ae0 0000000000000010 b machine_endian_long_map
0000000000726c00 0000000000000010 b main_cwd_state
00000000002a20a0 0000000000000010 t module_registry_unload_temp
00000000001b01c0 0000000000000010 t php_array_reverse_data_compare
00000000001afac0 0000000000000010 t php_array_reverse_key_compare_string_natural
00000000001b0100 0000000000000010 t php_array_reverse_natural_compare
000000000023a3c0 0000000000000010 T php_printf_to_smart_string
00000000001f4a80 0000000000000010 T php_rand
0000000000725b30 0000000000000010 b prev_tv
0000000000299f60 0000000000000010 T rc_dtor_func
000000000019ce50 0000000000000010 t spl_array_unset_dimension
0000000000408b30 0000000000000010 r yydefgoto
0000000000408b40 0000000000000010 r yypgoto
00000000000d9d78 0000000000000010 t zend_access_undefined_propery_in_overloaded_object
00000000002c45d0 0000000000000010 t zend_closure_unset_property
00000000002c4620 0000000000000010 t zend_closure_write_property
000000000032b4f0 0000000000000010 T zend_get_user_opcode_handler
00000000002b8920 0000000000000010 t zend_stream_stdio_reader
00000000000d9d68 0000000000000010 t zend_use_new_element_for_string
00000000000d9d13 0000000000000010 t zend_use_object_as_array
000000000072b380 0000000000000010 B zend_uv
000000000022f910 0000000000000010 t zif_stream_filter_append
00000000000cdaa8 0000000000000010 t zim_Closure___construct
00000000000cd8da 0000000000000010 t zim_exception___clone
00000000000c93ab 0000000000000010 t zim_reflection_class_constant_getDeclaringClass.part.94
00000000000c93ab 0000000000000010 t zim_reflection_class_constant_getDocComment.part.44
00000000000c93ab 0000000000000010 t zim_reflection_class_constant_getModifiers.part.43
00000000000c93ab 0000000000000010 t zim_reflection_class_getConstructor.part.77
00000000000c93ab 0000000000000010 t zim_reflection_class_getEndLine.part.50
00000000000c93ab 0000000000000010 t zim_reflection_class_getExtension.part.68
00000000000c93ab 0000000000000010 t zim_reflection_class_getModifiers.part.55
00000000000c93ab 0000000000000010 t zim_reflection_class_getParentClass.part.95
00000000000c93ab 0000000000000010 t zim_reflection_class_getStartLine.part.49
00000000000c93ab 0000000000000010 t zim_reflection_class_getStaticProperties.part.80
00000000000c93ab 0000000000000010 t zim_reflection_class_isAnonymous.part.47
00000000000c93ab 0000000000000010 t zim_reflection_class_isInstantiable.part.52
00000000000c93ab 0000000000000010 t zim_reflection_class_isInternal.part.45
00000000000c93ab 0000000000000010 t zim_reflection_class_isUserDefined.part.46
00000000000c93ab 0000000000000010 t zim_reflection_class_newInstanceWithoutConstructor.part.57
00000000000c93ab 0000000000000010 t zim_reflection_extension_getClassNames.part.89
00000000000c93ab 0000000000000010 t zim_reflection_extension_getClasses.part.88
00000000000c93ab 0000000000000010 t zim_reflection_extension_getConstants.part.86
00000000000c93ab 0000000000000010 t zim_reflection_extension_getINIEntries.part.87
00000000000c93ab 0000000000000010 t zim_reflection_extension_info.part.90
00000000000c93ab 0000000000000010 t zim_reflection_extension_isPersistent.part.63
00000000000c93ab 0000000000000010 t zim_reflection_extension_isTemporary.part.64
00000000000c93ab 0000000000000010 t zim_reflection_function_getClosureScopeClass.part.91
00000000000c93ab 0000000000000010 t zim_reflection_function_getEndLine.part.16
00000000000c93ab 0000000000000010 t zim_reflection_function_getExtension.part.67
00000000000c93ab 0000000000000010 t zim_reflection_function_getNumberOfParameters.part.19
00000000000c93ab 0000000000000010 t zim_reflection_function_getNumberOfRequiredParameters.part.20
00000000000c93ab 0000000000000010 t zim_reflection_function_getStartLine.part.15
00000000000c93ab 0000000000000010 t zim_reflection_function_hasReturnType.part.36
00000000000c93ab 0000000000000010 t zim_reflection_function_isClosure.part.10
00000000000c93ab 0000000000000010 t zim_reflection_function_isDisabled.part.13
00000000000c93ab 0000000000000010 t zim_reflection_function_isInternal.part.11
00000000000c93ab 0000000000000010 t zim_reflection_function_isUserDefined.part.12
00000000000c93ab 0000000000000010 t zim_reflection_function_returnsReference.part.18
00000000000c93ab 0000000000000010 t zim_reflection_method_getDeclaringClass.part.93
00000000000c93ab 0000000000000010 t zim_reflection_method_getModifiers.part.40
00000000000c93ab 0000000000000010 t zim_reflection_method_isConstructor.part.38
00000000000c93ab 0000000000000010 t zim_reflection_method_isDestructor.part.39
00000000000c93ab 0000000000000010 t zim_reflection_named_type_getName.part.71
00000000000c93ab 0000000000000010 t zim_reflection_parameter_allowsNull.part.24
00000000000c93ab 0000000000000010 t zim_reflection_parameter_canBePassedByValue.part.26
00000000000c93ab 0000000000000010 t zim_reflection_parameter_getDeclaringClass.part.92
00000000000c93ab 0000000000000010 t zim_reflection_parameter_getPosition.part.27
00000000000c93ab 0000000000000010 t zim_reflection_parameter_hasType.part.21
00000000000c93ab 0000000000000010 t zim_reflection_parameter_isArray.part.22
00000000000c93ab 0000000000000010 t zim_reflection_parameter_isCallable.part.23
00000000000c93ab 0000000000000010 t zim_reflection_parameter_isOptional.part.28
00000000000c93ab 0000000000000010 t zim_reflection_parameter_isPassedByReference.part.25
00000000000c93ab 0000000000000010 t zim_reflection_parameter_isVariadic.part.31
00000000000c93ab 0000000000000010 t zim_reflection_property_getDocComment.part.62
00000000000c93ab 0000000000000010 t zim_reflection_property_getModifiers.part.61
00000000000c93ab 0000000000000010 t zim_reflection_type___toString.part.70
00000000000c93ab 0000000000000010 t zim_reflection_type_allowsNull.part.32
00000000000c93ab 0000000000000010 t zim_reflection_type_isBuiltin.part.33
0000000000413970 0000000000000011 r HEXCHARS
00000000000dc9f1 0000000000000011 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CONST_CONST_HANDLER
00000000000db11e 0000000000000011 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_CONST_CONST_HANDLER
00000000000dca7d 0000000000000011 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_CONST_CV_HANDLER
00000000000db16a 0000000000000011 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_CONST_TMPVAR_HANDLER
00000000004088a0 0000000000000011 r digits
0000000000413990 0000000000000011 r hexchars
0000000000421680 0000000000000011 r hexchars
0000000000420930 0000000000000011 r hexconvtab
000000000041f630 0000000000000011 r hexits.14604
0000000000428ce0 0000000000000011 r low_digits.13771
000000000032ba60 0000000000000011 T php_register_internal_extensions
00000000004254a0 0000000000000011 r qp_digits.15943
00000000003ee730 0000000000000011 r reg_lmap
00000000003ee750 0000000000000011 r reg_map
000000000019e3d0 0000000000000011 t spl_filesystem_dir_it_valid
0000000000228300 0000000000000011 t strfilter_rot13_create
00000000002282c0 0000000000000011 t strfilter_tolower_create
00000000002282e0 0000000000000011 t strfilter_toupper_create
0000000000428d00 0000000000000011 r upper_digits.13772
00000000002b0650 0000000000000011 T zend_register_resource
000000000027a430 0000000000000011 t zend_resolve_const_name
00000000002b8710 0000000000000011 T zend_ts_hash_exists
00000000002b8730 0000000000000011 T zend_ts_hash_index_exists
0000000000227500 0000000000000011 t zif_stream_bucket_append
00000000001b4430 0000000000000011 t zif_usort
0000000000194980 0000000000000011 t zim_spl_RecursiveTreeIterator___construct
00000000002f8900 0000000000000012 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CV_CONST_HANDLER
00000000002f8a10 0000000000000012 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CV_CV_HANDLER
00000000002f8970 0000000000000012 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CV_TMPVAR_HANDLER
00000000002f89c0 0000000000000012 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CV_UNUSED_HANDLER
00000000002e4f50 0000000000000012 t ZEND_FETCH_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER
00000000003007d0 0000000000000012 t ZEND_FETCH_FUNC_ARG_SPEC_CV_UNUSED_HANDLER
00000000002e52f0 0000000000000012 t ZEND_FETCH_FUNC_ARG_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e8d00 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_CONST_CONST_HANDLER
00000000002e94f0 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_CONST_UNUSED_HANDLER
00000000002e90f0 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_CONST_VAR_HANDLER
00000000002ea950 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_CV_CONST_HANDLER
00000000002eb2d0 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_CV_UNUSED_HANDLER
00000000002eae40 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_CV_VAR_HANDLER
00000000002e99c0 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_TMPVAR_CONST_HANDLER
00000000002ea410 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_TMPVAR_UNUSED_HANDLER
00000000002e9f00 0000000000000012 t ZEND_FETCH_STATIC_PROP_FUNC_ARG_SPEC_TMPVAR_VAR_HANDLER
00000000000dca02 0000000000000012 t _get_zval_cv_lookup_BP_VAR_R.isra.6
00000000000dca02 0000000000000012 t _get_zval_cv_lookup_BP_VAR_UNSET.isra.8
000000000023d6b0 0000000000000012 T cfg_get_entry
000000000028aaf0 0000000000000012 t clean_module_constant
00000000002978b0 0000000000000012 T convert_to_long
00000000002918b0 0000000000000012 T convert_to_null
00000000000e6790 0000000000000012 t date_object_get_gc
00000000000e6770 0000000000000012 t date_object_get_gc_interval
00000000000de950 0000000000000012 t date_object_get_gc_period
00000000000e67b0 0000000000000012 t date_object_get_gc_timezone
0000000000274820 0000000000000012 T is_zend_mm
0000000000226650 0000000000000012 t php_bucket_dtor
00000000001e3610 0000000000000012 t php_ifd_get32s
000000000011b3e0 0000000000000012 T php_pcre2_compile_context_free
000000000011b420 0000000000000012 T php_pcre2_convert_context_free
000000000011b3c0 0000000000000012 T php_pcre2_general_context_free
000000000011b400 0000000000000012 T php_pcre2_match_context_free
0000000000160f40 0000000000000012 T php_pcre2_match_data_free
000000000016c790 0000000000000012 T php_pcre_free_match_data
000000000020a4b0 0000000000000012 T php_replace_controlchars
0000000000254800 0000000000000012 T php_stream_bucket_delref
0000000000252900 0000000000000012 T php_stream_notification_notify
000000000023f9e0 0000000000000012 T sapi_terminate_process
000000000019d330 0000000000000012 t spl_array_has_dimension
00000000001accd0 0000000000000012 t spl_heap_object_get_debug_info
00000000001accb0 0000000000000012 t spl_pqueue_object_get_debug_info
00000000001099e0 0000000000000012 t timelib_rel_time_dtor
00000000002c5730 0000000000000012 T zend_create_fake_closure
000000000032ac80 0000000000000012 T zend_deserialize_opcode_handler
000000000028be90 0000000000000012 t zend_extension_activator
000000000028beb0 0000000000000012 t zend_extension_deactivator
00000000002d8350 0000000000000012 t zend_extension_fcall_begin_handler
00000000002d8370 0000000000000012 t zend_extension_fcall_end_handler
000000000028fe50 0000000000000012 t zend_extension_op_array_ctor_handler
000000000028fe70 0000000000000012 t zend_extension_op_array_dtor_handler
000000000028fe90 0000000000000012 t zend_extension_op_array_handler
00000000002a7a10 0000000000000012 t zend_extension_shutdown
00000000002d8330 0000000000000012 t zend_extension_statement_handler
00000000002b6a60 0000000000000012 T zend_ini_dtor
00000000002a3c50 0000000000000012 T zend_is_callable
000000000029c240 0000000000000012 T zend_message_dispatcher
00000000002cf1a0 0000000000000012 t zend_property_guard_dtor
000000000029fff0 0000000000000012 T zend_startup_module_ex
0000000000176ae0 0000000000000012 t zif_pcntl_get_last_error
0000000000330060 0000000000000012 t zm_shutdown_cli_server
0000000000169d10 0000000000000012 t zm_shutdown_pcre
0000000000219f60 0000000000000012 t zm_shutdown_url_scanner_ex
00000000002b75f0 0000000000000013 T OnUpdateBool
000000000029ebe0 0000000000000013 T add_index_zval
0000000000260770 0000000000000013 t encoding_filter_intermediate_to_script
0000000000260790 0000000000000013 t encoding_filter_script_to_intermediate
000000000032be90 0000000000000013 t extension_name_cmp
000000000032beb0 0000000000000013 t module_name_cmp
00000000001e5740 0000000000000013 t module_name_cmp
00000000001afae0 0000000000000013 t php_array_reverse_key_compare_string_natural_case
00000000001b0110 0000000000000013 t php_array_reverse_natural_case_compare
00000000002423b0 0000000000000013 T php_explicit_bzero
0000000000160f20 0000000000000013 T php_pcre2_match_data_create_from_pattern
0000000000252bd0 0000000000000013 T php_stream_dirent_alphasort
000000000024f2e0 0000000000000013 T php_stream_encloses
00000000002040f0 0000000000000013 t php_tag_find
00000000001c58a0 0000000000000013 t run_user_tick_functions
0000000000198ef0 0000000000000013 t spl_array_it_dtor
000000000019dc30 0000000000000013 t spl_array_write_dimension
00000000001ada90 0000000000000013 t spl_fixedarray_it_dtor
00000000001ac2b0 0000000000000013 t spl_heap_it_dtor
000000000032fae0 0000000000000013 t status_comp
00000000000d9e68 0000000000000013 t zend_cannot_add_element
000000000027b0d0 0000000000000013 t zend_get_class_fetch_type_ast
000000000029c260 0000000000000013 T zend_get_configuration_directive
00000000000d9db5 0000000000000013 t zend_illegal_offset
00000000002cf060 0000000000000013 T zend_std_get_class_name
00000000000d9e8e 0000000000000013 t zend_unsupported_property_reference
00000000000d9e7b 0000000000000013 t zend_use_scalar_as_array
00000000001bdfa0 0000000000000013 t zif_array_intersect
00000000001c1060 0000000000000013 t zif_connection_status
00000000000dd81b 0000000000000014 t _get_zval_cv_lookup.constprop.38
0000000000726c20 0000000000000014 b cpuinfo
000000000043e420 0000000000000014 r long_min_digits
00000000004387e0 0000000000000014 r long_min_digits
000000000029c680 0000000000000014 t module_registry_unload_temp_wrapper
00000000000e96d0 0000000000000014 T php_date_instantiate
00000000002342f0 0000000000000014 t php_fopen_wrapper_for_zend
000000000042b4c0 0000000000000014 r php_output_devnull_handler_name
00000000002561b0 0000000000000014 t php_plain_files_dirstream_rewind
0000000000221700 0000000000000014 t php_stream_output_write
000000000018ff80 0000000000000014 t spl_recursive_it_move_forward
000000000018fef0 0000000000000014 t spl_recursive_it_rewind
0000000000192560 0000000000000014 t spl_recursive_it_valid
0000000000109bb0 0000000000000014 t timelib_date_to_int
00000000002c6690 0000000000000014 t zend_new_interned_string_permanent
0000000000178410 0000000000000014 t zif_pcntl_signal_dispatch
00000000001ec070 0000000000000014 t zif_pi
00000000001832a0 0000000000000014 t zim_reflection_class_constant_export
0000000000183240 0000000000000014 t zim_reflection_class_export
00000000001832c0 0000000000000014 t zim_reflection_extension_export
00000000001831e0 0000000000000014 t zim_reflection_function_export
0000000000183220 0000000000000014 t zim_reflection_method_export
0000000000183260 0000000000000014 t zim_reflection_object_export
0000000000183200 0000000000000014 t zim_reflection_parameter_export
0000000000183280 0000000000000014 t zim_reflection_property_export
00000000001832e0 0000000000000014 t zim_reflection_zend_extension_export
000000000019c8e0 0000000000000014 t zim_spl_Array_natcasesort
000000000019c8c0 0000000000000014 t zim_spl_Array_natsort
00000000002f7330 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CONST_CV_HANDLER
00000000002f72e0 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_CONST_TMPVAR_HANDLER
00000000002f6060 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_TMP_CONST_HANDLER
00000000002f5a70 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_TMP_CV_HANDLER
00000000002f5dc0 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_TMP_TMPVAR_HANDLER
00000000002d9fa0 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_TMP_UNUSED_HANDLER
00000000002f8c50 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_VAR_CONST_HANDLER
00000000002f8e70 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_VAR_CV_HANDLER
00000000002f8d30 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_VAR_TMPVAR_HANDLER
00000000002f8dd0 0000000000000015 t ZEND_FETCH_DIM_FUNC_ARG_SPEC_VAR_UNUSED_HANDLER
00000000002feaf0 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_CV_CV_HANDLER
00000000002fe930 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_CV_TMPVAR_HANDLER
00000000002e4cb0 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_TMP_CONST_HANDLER
00000000002fe660 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_TMP_CV_HANDLER
00000000002e1520 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_TMP_TMPVAR_HANDLER
00000000002fe7c0 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_UNUSED_CV_HANDLER
00000000002e1670 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_UNUSED_TMPVAR_HANDLER
00000000002f20d0 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_VAR_CONST_HANDLER
0000000000300cf0 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_VAR_CV_HANDLER
00000000002f2540 0000000000000015 t ZEND_FETCH_OBJ_FUNC_ARG_SPEC_VAR_TMPVAR_HANDLER
00000000002c5880 0000000000000015 t _str_dtor
0000000000214f30 0000000000000015 t incomplete_class_has_property
000000000029b1c0 0000000000000015 t module_destructor_zval
00000000001f3f40 0000000000000015 t php_getgid
00000000001f40a0 0000000000000015 T php_getlastmod
00000000001f3f20 0000000000000015 t php_getuid
0000000000174c30 0000000000000015 t php_json_scanner_init
0000000000209270 0000000000000015 T php_openlog
0000000000248550 0000000000000015 T php_output_deactivate
00000000002479c0 0000000000000015 T php_output_set_status
000000000020b150 0000000000000015 T php_url_parse
00000000002d0610 0000000000000015 T rebuild_object_properties
0000000000181350 0000000000000015 t reflection_get_gc
0000000000198f10 0000000000000015 t spl_array_get_gc
000000000019d5f0 0000000000000015 t spl_array_read_dimension
00000000000c9470 0000000000000015 t spl_fixedarray_object_unset_dimension_helper.isra.8.part.9
00000000000c9470 0000000000000015 t spl_fixedarray_object_write_dimension_helper.isra.6.part.7
00000000001ac1d0 0000000000000015 t spl_ptr_heap_zval_dtor
000000000024ef40 0000000000000015 t wrapper_list_dtor
000000000027b510 0000000000000015 t zend_do_extended_fcall_begin
000000000027b530 0000000000000015 t zend_do_extended_fcall_end
000000000027b4f0 0000000000000015 t zend_do_extended_info
00000000002c77a0 0000000000000015 t zend_generator_iterator_dtor
0000000000322160 0000000000000015 T zend_init_execute_data
00000000002b9040 0000000000000015 T zend_iterator_dtor
000000000027c4d0 0000000000000015 t zend_list_has_assign_to_self
00000000002d3d00 0000000000000015 T zend_objects_store_destroy
00000000002c6100 0000000000000015 T zend_string_hash_func
00000000001c1040 0000000000000015 t zif_connection_aborted
00000000001d8e10 0000000000000015 t zif_lchown
00000000001798b0 0000000000000015 t zim_reflection___clone
00000000000c9396 0000000000000015 t zim_reflection_generator_getExecutingFile.part.8
00000000000c9396 0000000000000015 t zim_reflection_generator_getExecutingLine.part.7
00000000000c9396 0000000000000015 t zim_reflection_generator_getThis.part.9
000000000018ebc0 0000000000000015 t zim_spl_EmptyIterator_next
0000000000194060 0000000000000015 t zim_spl_EmptyIterator_rewind
0000000000193df0 0000000000000015 t zim_spl_NoRewindIterator_rewind
00000000001940c0 0000000000000015 t zim_spl_RecursiveIteratorIterator_beginChildren
0000000000194080 0000000000000015 t zim_spl_RecursiveIteratorIterator_beginIteration
00000000001940e0 0000000000000015 t zim_spl_RecursiveIteratorIterator_endChildren
00000000001940a0 0000000000000015 t zim_spl_RecursiveIteratorIterator_endIteration
0000000000194100 0000000000000015 t zim_spl_RecursiveIteratorIterator_nextElement
000000000019ed70 0000000000000015 t zim_spl_SplFileObject_getChildren
00000000001abcd0 0000000000000015 t zim_spl_SplHeap_rewind
0000000000170640 0000000000000015 t zm_globals_ctor_json
000000000028d020 0000000000000015 T zval_update_constant_ex
00000000000d5072 0000000000000016 t ZEND_JMP_SPEC_HANDLER
00000000002543f0 0000000000000016 T _php_get_stream_filters_hash
000000000024f290 0000000000000016 T _php_stream_get_url_stream_wrappers_hash
00000000000deed0 0000000000000016 t date_object_free_storage_interval
00000000002031f0 0000000000000016 T php_addcslashes
00000000001e5720 0000000000000016 t php_info_print
0000000000174b20 0000000000000016 T php_json_parser_init
00000000001e9db0 0000000000000016 t php_mail_log_to_syslog
0000000000247a10 0000000000000016 T php_output_write_unbuffered
000000000011b450 0000000000000016 T php_pcre2_set_bsr
000000000011b480 0000000000000016 T php_pcre2_set_newline
00000000002330d0 0000000000000016 T php_random_int
0000000000252bf0 0000000000000016 T php_stream_dirent_alphasortr
000000000023f8a0 0000000000000016 T sapi_force_http_10
000000000023f880 0000000000000016 T sapi_get_fd
000000000023f8e0 0000000000000016 T sapi_get_target_gid
000000000023f8c0 0000000000000016 T sapi_get_target_uid
000000000019e400 0000000000000016 t spl_filesystem_dir_it_current_key
00000000001ab9f0 0000000000000016 t spl_heap_it_valid
00000000001080d0 0000000000000016 t timelib_parse_from_format
00000000002ce720 0000000000000016 T zend_ast_ref_destroy
000000000027ba90 0000000000000016 T zend_get_compiled_variable_name
00000000000cbafc 0000000000000016 t zend_ini_scanner_get_filename
00000000000d9d88 0000000000000016 t zend_undefined_offset
00000000001be690 0000000000000016 t zif_array_diff_uassoc
00000000001be050 0000000000000016 t zif_array_diff_ukey
00000000001bdff0 0000000000000016 t zif_array_intersect_uassoc
00000000001bdf80 0000000000000016 t zif_array_intersect_ukey
00000000001be660 0000000000000016 t zif_array_udiff
00000000001bdfc0 0000000000000016 t zif_array_uintersect
00000000002b7690 0000000000000017 T OnUpdateString
00000000000d9e03 0000000000000017 t _get_zval_cv_lookup_BP_VAR_RW
0000000000173ec0 0000000000000017 t php_json_parser_array_create
000000000042b4e0 0000000000000017 r php_output_default_handler_name
0000000000242390 0000000000000017 t php_setup_sapi_content_types
0000000000234010 0000000000000017 t php_zend_stream_mmap_closer
00000000000c9459 0000000000000017 t spl_filesystem_file_rewind.part.11
00000000001ac320 0000000000000017 t spl_heap_object_get_gc
000000000023fc20 0000000000000017 t unlink_filename
0000000000279fe0 0000000000000017 t zend_concat_names
00000000000d9d9e 0000000000000017 t zend_undefined_index
00000000000c9442 0000000000000017 t zim_spl_AppendIterator_getIteratorIndex.part.39
00000000000c9442 0000000000000017 t zim_spl_AppendIterator_next.part.43
00000000000c9442 0000000000000017 t zim_spl_AppendIterator_rewind.part.42
00000000000c9442 0000000000000017 t zim_spl_AppendIterator_valid.part.25
000000000019c840 0000000000000017 t zim_spl_Array_asort
000000000019c860 0000000000000017 t zim_spl_Array_ksort
000000000019c880 0000000000000017 t zim_spl_Array_uasort
000000000019c8a0 0000000000000017 t zim_spl_Array_uksort
00000000000c9442 0000000000000017 t zim_spl_CachingIterator_count.part.20
00000000000c9442 0000000000000017 t zim_spl_CachingIterator_getFlags.part.19
00000000000c9442 0000000000000017 t zim_spl_CachingIterator_hasNext.part.18
00000000000c9442 0000000000000017 t zim_spl_CachingIterator_next.part.38
00000000000c9442 0000000000000017 t zim_spl_CachingIterator_rewind.part.37
00000000000c9442 0000000000000017 t zim_spl_CachingIterator_valid.part.17
00000000000c9442 0000000000000017 t zim_spl_FilterIterator_next.part.32
00000000000c9442 0000000000000017 t zim_spl_FilterIterator_rewind.part.26
00000000000c9442 0000000000000017 t zim_spl_LimitIterator_getPosition.part.16
00000000000c9442 0000000000000017 t zim_spl_LimitIterator_next.part.35
00000000000c9442 0000000000000017 t zim_spl_LimitIterator_rewind.part.33
00000000000c9442 0000000000000017 t zim_spl_LimitIterator_valid.part.15
00000000000c9442 0000000000000017 t zim_spl_NoRewindIterator_key.part.23
00000000000c9442 0000000000000017 t zim_spl_NoRewindIterator_next.part.24
00000000000c9442 0000000000000017 t zim_spl_NoRewindIterator_valid.part.22
00000000000c9442 0000000000000017 t zim_spl_RecursiveCachingIterator_hasChildren.part.21
00000000000c9442 0000000000000017 t zim_spl_RecursiveIteratorIterator_callGetChildren.part.7
00000000000c9442 0000000000000017 t zim_spl_RecursiveIteratorIterator_key.part.6
00000000000c9442 0000000000000017 t zim_spl_RecursiveTreeIterator_getEntry.part.28
00000000000c9442 0000000000000017 t zim_spl_RecursiveTreeIterator_getPostfix.part.9
00000000000c9442 0000000000000017 t zim_spl_RecursiveTreeIterator_getPrefix.part.8
00000000000c9442 0000000000000017 t zim_spl_RegexIterator_getFlags.part.13
00000000000c9442 0000000000000017 t zim_spl_RegexIterator_getMode.part.12
00000000000c9442 0000000000000017 t zim_spl_RegexIterator_getPregFlags.part.14
000000000019e630 0000000000000017 t zim_spl_SplFileInfo__bad_state_ex
00000000000c9459 0000000000000017 t zim_spl_SplFileObject_eof.part.8
00000000000c9459 0000000000000017 t zim_spl_SplFileObject_fflush.part.14
00000000000c9459 0000000000000017 t zim_spl_SplFileObject_fpassthru.part.16
00000000000c9459 0000000000000017 t zim_spl_SplFileObject_ftell.part.15
00000000000c9442 0000000000000017 t zim_spl_dual_it_next.part.31
00000000000c9442 0000000000000017 t zim_spl_dual_it_rewind.part.10
00000000000c9442 0000000000000017 t zim_spl_dual_it_valid.part.11
000000000018b180 0000000000000017 t zm_globals_ctor_spl
0000000000219f40 0000000000000017 t zm_startup_url_scanner_ex
00000000003ee710 0000000000000018 r CSWTCH.486
00000000002b7670 0000000000000018 T OnUpdateReal
00000000000d68fb 0000000000000018 t ZEND_FETCH_OBJ_IS_SPEC_CONST_CONST_HANDLER
00000000004460f0 0000000000000018 r __func__.3406
00000000003f03e0 0000000000000018 r _pcre2_utf8_table1
00000000003f03c0 0000000000000018 r _pcre2_utf8_table2
00000000003f03a0 0000000000000018 r _pcre2_utf8_table3
000000000040cf80 0000000000000018 r arginfo_SplSubject_void
000000000040c420 0000000000000018 r arginfo_array_void
0000000000445dd0 0000000000000018 r arginfo_cli_get_process_title
000000000044c750 0000000000000018 r arginfo_cli_get_process_title
0000000000410680 0000000000000018 r arginfo_closelog
00000000004109a0 0000000000000018 r arginfo_connection_aborted
0000000000410980 0000000000000018 r arginfo_connection_status
00000000004407d0 0000000000000018 r arginfo_countable_count
0000000000337360 0000000000000018 r arginfo_date_default_timezone_get
0000000000337340 0000000000000018 r arginfo_date_get_last_errors
0000000000337300 0000000000000018 r arginfo_date_method_offset_get
00000000003372e0 0000000000000018 r arginfo_date_method_timestamp_get
0000000000337320 0000000000000018 r arginfo_date_method_timezone_get
000000000040d190 0000000000000018 r arginfo_dllist_void
0000000000410a00 0000000000000018 r arginfo_error_clear_last
0000000000410a20 0000000000000018 r arginfo_error_get_last
0000000000410a60 0000000000000018 r arginfo_flush
00000000004415d0 0000000000000018 r arginfo_generator_void
0000000000410a40 0000000000000018 r arginfo_get_current_user
00000000004109e0 0000000000000018 r arginfo_get_include_path
0000000000410aa0 0000000000000018 r arginfo_get_magic_quotes_gpc
0000000000410a80 0000000000000018 r arginfo_get_magic_quotes_runtime
0000000000410940 0000000000000018 r arginfo_getcwd
0000000000410920 0000000000000018 r arginfo_gethostname
0000000000410720 0000000000000018 r arginfo_getlastmod
0000000000410780 0000000000000018 r arginfo_getmygid
0000000000410740 0000000000000018 r arginfo_getmyinode
0000000000410760 0000000000000018 r arginfo_getmypid
00000000004107a0 0000000000000018 r arginfo_getmyuid
0000000000410860 0000000000000018 r arginfo_headers_list
00000000004086a0 0000000000000018 r arginfo_json_last_error
0000000000408680 0000000000000018 r arginfo_json_last_error_msg
00000000004107e0 0000000000000018 r arginfo_lcg_value
00000000004106a0 0000000000000018 r arginfo_localeconv
0000000000410700 0000000000000018 r arginfo_mt_getrandmax
0000000000410900 0000000000000018 r arginfo_net_get_interfaces
000000000044c5b0 0000000000000018 r arginfo_no_args
0000000000410be0 0000000000000018 r arginfo_ob_clean
0000000000410ba0 0000000000000018 r arginfo_ob_end_clean
0000000000410bc0 0000000000000018 r arginfo_ob_end_flush
0000000000410c00 0000000000000018 r arginfo_ob_flush
0000000000410b60 0000000000000018 r arginfo_ob_get_clean
0000000000410b40 0000000000000018 r arginfo_ob_get_contents
0000000000410b80 0000000000000018 r arginfo_ob_get_flush
0000000000410b00 0000000000000018 r arginfo_ob_get_length
0000000000410b20 0000000000000018 r arginfo_ob_get_level
0000000000410ae0 0000000000000018 r arginfo_ob_list_handlers
0000000000410ac0 0000000000000018 r arginfo_output_reset_rewrite_vars
00000000004097a0 0000000000000018 r arginfo_pcntl_void
0000000000410800 0000000000000018 r arginfo_php_ini_loaded_file
0000000000410820 0000000000000018 r arginfo_php_ini_scanned_files
0000000000410840 0000000000000018 r arginfo_php_sapi_name
00000000004252e0 0000000000000018 r arginfo_php_user_filter_onClose
0000000000425300 0000000000000018 r arginfo_php_user_filter_onCreate
00000000004107c0 0000000000000018 r arginfo_pi
0000000000408160 0000000000000018 r arginfo_preg_last_error
0000000000410880 0000000000000018 r arginfo_realpath_cache_get
00000000004108a0 0000000000000018 r arginfo_realpath_cache_size
000000000040be10 0000000000000018 r arginfo_recursive_it_void
000000000040af60 0000000000000018 r arginfo_reflection__void
000000000040af40 0000000000000018 r arginfo_reflection_class_newInstanceWithoutConstructor
00000000004109c0 0000000000000018 r arginfo_restore_include_path
000000000040b2a0 0000000000000018 r arginfo_spl_autoload_functions
000000000040b2c0 0000000000000018 r arginfo_spl_classes
000000000040cbe0 0000000000000018 r arginfo_splfileinfo_void
000000000040d490 0000000000000018 r arginfo_splfixedarray_void
000000000040d340 0000000000000018 r arginfo_splheap_void
000000000040cf60 0000000000000018 r arginfo_splobject_void
0000000000410660 0000000000000018 r arginfo_stream_get_filters
00000000004106e0 0000000000000018 r arginfo_stream_get_transports
00000000004106c0 0000000000000018 r arginfo_stream_get_wrappers
00000000004108c0 0000000000000018 r arginfo_sys_get_temp_dir
0000000000410960 0000000000000018 r arginfo_sys_getloadavg
0000000000337380 0000000000000018 r arginfo_time
0000000000337280 0000000000000018 r arginfo_timezone_abbreviations_list
00000000003372a0 0000000000000018 r arginfo_timezone_method_location_get
00000000003372c0 0000000000000018 r arginfo_timezone_method_name_get
0000000000337260 0000000000000018 r arginfo_timezone_version_get
00000000004108e0 0000000000000018 r arginfo_tmpfile
00000000004404f0 0000000000000018 r arginfo_zend__void
00000000007049d0 0000000000000018 d chunked_filter_ops
00000000007274a0 0000000000000018 b cli_shell_callbacks
00000000007049f0 0000000000000018 d consumed_filter_ops
00000000004175a0 0000000000000018 r ht_bucket_empty
0000000000723d40 0000000000000018 d index_files.16608
0000000000408660 0000000000000018 r json_serialize_arginfo
0000000000705280 0000000000000018 D php_glob_stream_wrapper
000000000024c420 0000000000000018 T php_output_set_implicit_flush
0000000000723920 0000000000000018 D php_plain_files_wrapper
0000000000704560 0000000000000018 D php_stream_ftp_wrapper
0000000000704640 0000000000000018 D php_stream_http_wrapper
00000000002529e0 0000000000000018 T php_stream_notification_free
00000000007046c0 0000000000000018 D php_stream_php_wrapper
0000000000704d20 0000000000000018 D php_stream_rfc2397_wrapper
000000000032bac0 0000000000000018 t sapi_cli_log_message
00000000001a9d70 0000000000000018 t spl_dllist_it_rewind
0000000000704a10 0000000000000018 d strfilter_convert_ops
0000000000704aa0 0000000000000018 d strfilter_rot13_ops
0000000000704a30 0000000000000018 d strfilter_strip_tags_ops
0000000000704a60 0000000000000018 d strfilter_tolower_ops
0000000000704a80 0000000000000018 d strfilter_toupper_ops
000000000069f650 0000000000000018 d timelib_timezone_utc
0000000000704810 0000000000000018 d userfilter_ops
00000000000cdab8 0000000000000018 t zend_closure_get_constructor
00000000000cdad0 0000000000000018 t zend_generator_get_constructor
00000000002b9060 0000000000000018 T zend_iterator_unwrap
0000000000277260 0000000000000018 T zend_memory_peak_usage
0000000000277240 0000000000000018 T zend_memory_usage
00000000000dc971 0000000000000018 t zend_undefined_method.isra.4
00000000000dc989 0000000000000018 t zend_use_resource_as_offset.isra.5
00000000002d5970 0000000000000018 t zend_visibility_string
00000000002b10f0 0000000000000019 t add_zendext_info
000000000043c130 0000000000000019 r haltoff.11146
0000000000173ee0 0000000000000019 t php_json_parser_array_append
000000000011b540 0000000000000019 T php_pcre2_set_glob_separator
0000000000221760 0000000000000019 t php_stream_input_close
000000000019f020 0000000000000019 t spl_filesystem_dir_it_dtor
000000000019f3a0 0000000000000019 t spl_filesystem_object_new_check
00000000002cb030 0000000000000019 T virtual_cwd_shutdown
00000000002a8170 0000000000000019 T zend_hash_bucket_renum_swap
00000000002b81f0 0000000000000019 T zend_multibyte_get_functions
00000000001be6c0 0000000000000019 t zif_array_udiff_uassoc
00000000001be020 0000000000000019 t zif_array_uintersect_uassoc
0000000000193040 0000000000000019 t zim_spl_FilterIterator___construct
00000000001930c0 0000000000000019 t zim_spl_ParentIterator___construct
00000000001930a0 0000000000000019 t zim_spl_RecursiveFilterIterator___construct
00000000001d8890 0000000000000019 t zm_activate_filestat
00000000002d8440 000000000000001a t ZEND_FUNC_NUM_ARGS_SPEC_UNUSED_UNUSED_HANDLER
0000000000338600 000000000000001a r __func__.12052
000000000041f780 000000000000001a r _codes
0000000000240290 000000000000001a t free_filename
0000000000214ef0 000000000000001a t incomplete_class_get_property_ptr_ptr
000000000029dc40 000000000000001a T object_properties_init_ex
0000000000169340 000000000000001a T pcre2_converted_pattern_free_8
0000000000331fc0 000000000000001a t php_cli_server_chunk_dtor.part.2
00000000001cbf10 000000000000001a t php_load_shlib.part.0
0000000000162030 000000000000001a T php_pcre2_serialize_free
00000000001655e0 000000000000001a T php_pcre2_substring_free
0000000000165a10 000000000000001a T php_pcre2_substring_list_free
00000000001d9590 000000000000001a T php_stat
0000000000420230 000000000000001a r soundex_table.13957
00000000001a82f0 000000000000001a t spl_object_storage_free_hash.isra.0
0000000000277850 000000000000001a t str_dtor
00000000000eb570 000000000000001a t timelib_ts_to_julianday
000000000028f960 000000000000001a T zend_llist_clean
00000000002c5810 000000000000001a T zend_shutdown_fpu
00000000002b8900 000000000000001a t zend_stream_stdio_closer
00000000001cc590 000000000000001a t zm_info_dl
000000000029b2e0 000000000000001b t OnUpdateGCEnabled
00000000002340c0 000000000000001b t OnUpdateOutputEncoding
0000000000276f30 000000000000001b T _zend_mem_block_size
00000000000def20 000000000000001b t date_object_free_storage_date
00000000004259e0 000000000000001b r lowercase
0000000000255990 000000000000001b t php_stdiop_flush
00000000001aba10 000000000000001b t spl_heap_it_get_current_key
0000000000109b10 000000000000001b t timelib_get_tz_abbr_ptr
00000000004259c0 000000000000001b r uppercase
0000000000293050 000000000000001b T zend_binary_zval_strcasecmp
00000000002c45e0 000000000000001b t zend_closure_get_property_ptr_ptr
00000000002930a0 000000000000001b T zend_compare_symbol_tables
000000000027ed40 000000000000001b t zend_compile_const_expr_magic_const
000000000028fe30 000000000000001b T zend_get_opcode_flags
00000000002a1c50 000000000000001b T zend_register_internal_module
00000000002b6960 000000000000001b t zend_restore_ini_entry_wrapper
0000000000299c50 000000000000001b T zend_stack_init
0000000000299d00 000000000000001b T zend_stack_top
00000000002b7610 000000000000001c T OnUpdateLong
00000000000d9d23 000000000000001c t ZEND_THROW_SPEC_CONST_HANDLER
000000000029efb0 000000000000001c T add_next_index_zval
0000000000331730 000000000000001c t get_last_error
00000000001cc570 000000000000001c T php_dl
00000000001e5f60 000000000000001c T php_info_print_table_end
000000000023be60 000000000000001c t php_ini_available
0000000000234bf0 000000000000001c T php_request_shutdown_for_exec
0000000000246130 000000000000001c T php_sockaddr_size
00000000002544b0 000000000000001c T php_stream_filter_unregister_factory
000000000025ada0 000000000000001c T php_stream_xport_unregister
0000000000251a10 000000000000001c T php_unregister_url_stream_wrapper
000000000032be70 000000000000001c t print_extension_info
00000000001098c0 000000000000001c t timelib_get_error_message
000000000029c0c0 000000000000001c T zend_activate
00000000002a7a30 000000000000001c t zend_extension_op_array_persist_calc_handler
00000000002a55f0 000000000000001c T zend_fcall_info_args_save
00000000002b6a40 000000000000001c T zend_ini_shutdown
00000000002b6b10 000000000000001c T zend_ini_sort_entries
000000000028e4b0 000000000000001c T zend_set_timeout
0000000000441390 000000000000001c r zend_sigs
00000000001931e0 000000000000001c t zim_spl_AppendIterator___construct
0000000000193140 000000000000001c t zim_spl_CachingIterator___construct
0000000000193060 000000000000001c t zim_spl_CallbackFilterIterator___construct
00000000001931c0 000000000000001c t zim_spl_InfiniteIterator___construct
0000000000193180 000000000000001c t zim_spl_IteratorIterator___construct
0000000000193120 000000000000001c t zim_spl_LimitIterator___construct
00000000001931a0 000000000000001c t zim_spl_NoRewindIterator___construct
0000000000193160 000000000000001c t zim_spl_RecursiveCachingIterator___construct
0000000000193080 000000000000001c t zim_spl_RecursiveCallbackFilterIterator___construct
0000000000193100 000000000000001c t zim_spl_RecursiveRegexIterator___construct
00000000001930e0 000000000000001c t zim_spl_RegexIterator___construct
00000000001c9a20 000000000000001c t zm_shutdown_browscap
0000000000271d20 000000000000001d T __zend_malloc
0000000000271d40 000000000000001d T __zend_realloc
00000000001ecf20 000000000000001d T _php_math_longtobase
00000000002b10d0 000000000000001d t add_extension_info
000000000032bcf0 000000000000001d t php_cli_startup
0000000000247530 000000000000001d t php_output_stderr
0000000000247510 000000000000001d t php_output_stdout
0000000000244d20 000000000000001d t php_std_auto_global_callback
00000000007237f0 000000000000001d d psheader
00000000001ada40 000000000000001d t spl_fixedarray_it_rewind
000000000018e830 000000000000001d t spl_gen_private_prop_name
0000000000250980 000000000000001d t stream_resource_persistent_dtor
00000000002b06a0 000000000000001d T zend_fetch_resource
00000000002b9020 000000000000001d T zend_iterator_init
00000000000db5b3 000000000000001e t ZEND_EXIT_SPEC_UNUSED_HANDLER
0000000000162170 000000000000001e t _pcre2_strlen_8
00000000003355e0 000000000000001e t is_ps_title_available
000000000029e110 000000000000001e T object_init
00000000001d8da0 000000000000001e T php_get_gid_by_name
00000000001d8de0 000000000000001e T php_get_uid_by_name
0000000000253970 000000000000001e t php_stream_temp_flush
00000000001a6fc0 000000000000001e t spl_object_storage_dtor
00000000002739c0 000000000000001e T zend_mm_shutdown
0000000000299d60 000000000000001e T zend_stack_destroy
0000000000299d30 000000000000001e T zend_stack_int_top
00000000002a7c80 000000000000001e t zend_startup_extensions
00000000002d02c0 000000000000001e T zend_std_get_properties
000000000024f2c0 000000000000001e t zm_deactivate_streams
00000000000d6880 000000000000001f t ZEND_QM_ASSIGN_NOREF_SPEC_CONST_HANDLER
00000000000d70a9 000000000000001f t ZEND_QM_ASSIGN_NOREF_SPEC_TMPVARCV_HANDLER
00000000000d828f 000000000000001f t ZEND_QM_ASSIGN_SPEC_TMP_HANDLER
0000000000299540 000000000000001f T is_smaller_function
0000000000245800 000000000000001f t php_compare_tick_functions
00000000001e5d20 000000000000001f T php_info_html_esc
0000000000257340 000000000000001f t stream_wrapper_dtor
000000000028fec0 000000000000001f t swap_live_range
00000000002a7cd0 000000000000001f T zend_extension_dispatch_message
00000000002795b0 000000000000001f t zend_handle_loops_and_finally
000000000027c2e0 000000000000001f t zend_is_assign_to_self
000000000029d1a0 000000000000001f T zend_zval_type_name
00000000000de860 000000000000001f t zm_globals_ctor_date
00000000002e0400 0000000000000020 t ZEND_BIND_TRAITS_SPEC_HANDLER
00000000000d689f 0000000000000020 t ZEND_SEND_VAL_SIMPLE_SPEC_CONST_HANDLER
00000000000dd834 0000000000000020 t ZEND_SEND_VAL_SPEC_TMPVAR_HANDLER
00000000000d8559 0000000000000020 t ZEND_SEND_VAR_SIMPLE_SPEC_VAR_HANDLER
00000000002e0160 0000000000000020 t ZEND_VERIFY_ABSTRACT_CLASS_SPEC_HANDLER
00000000003385e0 0000000000000020 r __func__.12056
00000000006a8ae0 0000000000000020 d _pcre2_default_convert_context_8
00000000003f0480 0000000000000020 r _pcre2_vspace_list_8
000000000072a2c0 0000000000000020 b assert_globals
0000000000725a80 0000000000000020 b big_endian_longlong_map
0000000000704ce0 0000000000000020 d cast_names.14424
000000000040dea0 0000000000000020 r charset.17813
000000000040de80 0000000000000020 r charset2.17814
000000000043f740 0000000000000020 r disabled_class_new
000000000043c540 0000000000000020 R empty_fcall_info_cache
0000000000704260 0000000000000020 d enc_to_uni_cp866
0000000000704320 0000000000000020 d enc_to_uni_iso88591
00000000007042e0 0000000000000020 d enc_to_uni_iso885915
0000000000704300 0000000000000020 d enc_to_uni_iso88595
0000000000704280 0000000000000020 d enc_to_uni_koi8r
0000000000704240 0000000000000020 d enc_to_uni_macroman
00000000007042a0 0000000000000020 d enc_to_uni_win1251
00000000007042c0 0000000000000020 d enc_to_uni_win1252
0000000000726c60 0000000000000020 b hybrid_halt_op
0000000000725a60 0000000000000020 b little_endian_longlong_map
0000000000725aa0 0000000000000020 b machine_endian_longlong_map
00000000007041a0 0000000000000020 d multi_cp_html5_0003C
0000000000704180 0000000000000020 d multi_cp_html5_0003D
0000000000704160 0000000000000020 d multi_cp_html5_0003E
0000000000704140 0000000000000020 d multi_cp_html5_00066
0000000000704120 0000000000000020 d multi_cp_html5_0205F
0000000000704100 0000000000000020 d multi_cp_html5_0219D
00000000007040e0 0000000000000020 d multi_cp_html5_02202
00000000007040c0 0000000000000020 d multi_cp_html5_02220
00000000007040a0 0000000000000020 d multi_cp_html5_02229
0000000000704080 0000000000000020 d multi_cp_html5_0222A
0000000000704060 0000000000000020 d multi_cp_html5_0223C
0000000000704040 0000000000000020 d multi_cp_html5_0223D
0000000000704020 0000000000000020 d multi_cp_html5_0223E
0000000000704000 0000000000000020 d multi_cp_html5_02242
0000000000703fe0 0000000000000020 d multi_cp_html5_0224B
0000000000703fc0 0000000000000020 d multi_cp_html5_0224D
0000000000703fa0 0000000000000020 d multi_cp_html5_0224E
0000000000703f80 0000000000000020 d multi_cp_html5_0224F
0000000000703f60 0000000000000020 d multi_cp_html5_02250
0000000000703f40 0000000000000020 d multi_cp_html5_02261
0000000000703f20 0000000000000020 d multi_cp_html5_02264
0000000000703f00 0000000000000020 d multi_cp_html5_02265
0000000000703ee0 0000000000000020 d multi_cp_html5_02266
0000000000703ec0 0000000000000020 d multi_cp_html5_02267
0000000000703ea0 0000000000000020 d multi_cp_html5_02268
0000000000703e80 0000000000000020 d multi_cp_html5_02269
0000000000703de0 0000000000000020 d multi_cp_html5_0227F
0000000000703dc0 0000000000000020 d multi_cp_html5_02282
0000000000703da0 0000000000000020 d multi_cp_html5_02283
0000000000703d80 0000000000000020 d multi_cp_html5_0228A
0000000000703d60 0000000000000020 d multi_cp_html5_0228B
0000000000703d40 0000000000000020 d multi_cp_html5_0228F
0000000000703d20 0000000000000020 d multi_cp_html5_02290
0000000000703d00 0000000000000020 d multi_cp_html5_02293
0000000000703ce0 0000000000000020 d multi_cp_html5_02294
0000000000703cc0 0000000000000020 d multi_cp_html5_022B4
0000000000703ca0 0000000000000020 d multi_cp_html5_022B5
0000000000703c80 0000000000000020 d multi_cp_html5_022D8
0000000000703c60 0000000000000020 d multi_cp_html5_022D9
0000000000703c40 0000000000000020 d multi_cp_html5_022DA
0000000000703c20 0000000000000020 d multi_cp_html5_022DB
0000000000703c00 0000000000000020 d multi_cp_html5_022F5
0000000000703be0 0000000000000020 d multi_cp_html5_022F9
0000000000703bc0 0000000000000020 d multi_cp_html5_02933
0000000000703ba0 0000000000000020 d multi_cp_html5_029CF
0000000000703b80 0000000000000020 d multi_cp_html5_029D0
0000000000703b60 0000000000000020 d multi_cp_html5_02A6D
0000000000703b40 0000000000000020 d multi_cp_html5_02A70
0000000000703b20 0000000000000020 d multi_cp_html5_02A7D
0000000000703b00 0000000000000020 d multi_cp_html5_02A7E
0000000000703ae0 0000000000000020 d multi_cp_html5_02AA1
0000000000703ac0 0000000000000020 d multi_cp_html5_02AA2
0000000000703aa0 0000000000000020 d multi_cp_html5_02AAC
0000000000703a80 0000000000000020 d multi_cp_html5_02AAD
0000000000703a60 0000000000000020 d multi_cp_html5_02AAF
0000000000703a40 0000000000000020 d multi_cp_html5_02AB0
0000000000703a20 0000000000000020 d multi_cp_html5_02AC5
0000000000703a00 0000000000000020 d multi_cp_html5_02AC6
00000000007039e0 0000000000000020 d multi_cp_html5_02ACB
00000000007039c0 0000000000000020 d multi_cp_html5_02ACC
00000000007039a0 0000000000000020 d multi_cp_html5_02AFD
000000000032be50 0000000000000020 t print_module_info
000000000040af80 0000000000000020 r reflection_exception_functions
000000000040af20 0000000000000020 r reflection_ext_functions
0000000000704d00 0000000000000020 d stream_cookie_functions
00000000006a65a0 0000000000000020 d timezonedb_builtin
00000000002c49b0 0000000000000020 t zend_closure_has_property
00000000002c4600 0000000000000020 t zend_closure_read_property
00000000002b05d0 0000000000000020 T zend_list_delete
00000000002b05f0 0000000000000020 T zend_list_free
0000000000272bb0 0000000000000020 t zend_mm_chunk_alloc.isra.7.constprop.15
00000000002a75c0 0000000000000020 T zend_read_static_property_ex
0000000000330080 0000000000000020 t zm_startup_cli_server
0000000000234530 0000000000000021 t OnUpdateDisplayErrors
00000000000dce92 0000000000000021 t ZEND_INIT_METHOD_CALL_SPEC_CONST_CONST_HANDLER
00000000000d7088 0000000000000021 t ZEND_QM_ASSIGN_DOUBLE_SPEC_TMPVARCV_HANDLER
0000000000226670 0000000000000021 t filter_item_dtor
00000000002994e0 0000000000000021 T is_equal_function
0000000000292310 0000000000000021 T is_identical_function
0000000000299510 0000000000000021 T is_not_equal_function
0000000000292340 0000000000000021 T is_not_identical_function
0000000000299560 0000000000000021 T is_smaller_or_equal_function
00000000000c9010 0000000000000021 t php_date_add.isra.20.part.21
00000000000c9010 0000000000000021 t php_date_date_set.isra.6.part.7
00000000000c9010 0000000000000021 t php_date_isodate_set.isra.26.part.27
00000000000c9010 0000000000000021 t php_date_sub.isra.22.part.23
00000000000c9010 0000000000000021 t php_date_time_set.isra.4.part.5
00000000000c9010 0000000000000021 t php_date_timestamp_set.isra.14.part.15
00000000000c9010 0000000000000021 t php_date_timezone_set.isra.24.part.25
0000000000293070 0000000000000021 T zend_binary_zval_strncasecmp
0000000000293020 0000000000000021 T zend_binary_zval_strncmp
0000000000278660 0000000000000021 t zend_do_extended_fcall_begin.part.28
0000000000278690 0000000000000021 t zend_do_extended_fcall_end.part.29
0000000000278630 0000000000000021 t zend_do_extended_info.part.27
00000000002d4080 0000000000000021 T zend_register_default_classes
0000000000277210 0000000000000021 T zend_set_memory_limit
00000000002dedb0 0000000000000022 t ZEND_FETCH_CLASS_SPEC_UNUSED_UNUSED_HANDLER
00000000000d685e 0000000000000022 t ZEND_QM_ASSIGN_DOUBLE_SPEC_CONST_HANDLER
0000000000250eb0 0000000000000022 T _php_stream_eof
000000000025d1c0 0000000000000022 T _php_stream_mmap_unmap
0000000000252390 0000000000000022 T _php_stream_readdir
0000000000250ee0 0000000000000022 T _php_stream_truncate_set_size
00000000001783e0 0000000000000022 t pcntl_interrupt_function
000000000023fc40 0000000000000022 t php_free_hdr_entry
0000000000169950 0000000000000022 t php_free_pcre_cache
00000000001dd920 0000000000000022 t php_head_apply_header_list_to_hash
00000000002484b0 0000000000000022 T php_output_handler_free
00000000000eb590 0000000000000022 t timelib_ts_to_j2000
00000000002998d0 0000000000000022 T zend_ptr_stack_init
00000000002998a0 0000000000000022 T zend_ptr_stack_init_ex
00000000002f8100 0000000000000023 t ZEND_FETCH_DIM_RW_SPEC_CV_UNUSED_HANDLER
00000000002f8990 0000000000000023 t ZEND_FETCH_DIM_W_SPEC_CV_UNUSED_HANDLER
00000000000d6fc5 0000000000000023 t ZEND_POST_DEC_LONG_NO_OVERFLOW_SPEC_TMPVARCV_HANDLER
00000000000d6f02 0000000000000023 t ZEND_POST_INC_LONG_NO_OVERFLOW_SPEC_TMPVARCV_HANDLER
0000000000253b80 0000000000000023 T _php_stream_mode_to_str
00000000002509b0 0000000000000023 T _php_stream_write
000000000029c6a0 0000000000000023 t exec_done_cb
00000000002b03e0 0000000000000023 t list_entry_destructor
0000000000247aa0 0000000000000023 T php_output_get_level
0000000000245830 0000000000000023 t php_startup_ticks
0000000000333940 0000000000000023 t sapi_cli_server_ub_write
000000000023f6c0 0000000000000023 T sapi_register_default_post_reader
000000000023f6f0 0000000000000023 T sapi_register_treat_data
00000000001a9800 0000000000000023 t spl_dllist_it_get_current_data
00000000001098f0 0000000000000023 t timelib_time_dtor
0000000000109ae0 0000000000000023 t timelib_time_offset_dtor
00000000000c9119 0000000000000023 t timelib_time_reset_fields.part.6
0000000000408ac0 0000000000000023 r yycheck
0000000000408b00 0000000000000023 r yytable
00000000002a2070 0000000000000023 T zend_cleanup_internal_classes
00000000002b03b0 0000000000000023 t zend_close_rsrc
00000000002930c0 0000000000000023 T zend_compare_arrays
000000000028fe00 0000000000000023 T zend_get_opcode_name
00000000002b6a80 0000000000000023 T zend_ini_global_shutdown
000000000028fd40 0000000000000023 T zend_llist_get_first_ex
000000000028fd70 0000000000000023 T zend_llist_get_last_ex
000000000028f710 0000000000000023 T zend_llist_init
000000000029d440 0000000000000023 T zend_parse_arg_bool_weak
000000000028aed0 0000000000000023 t zend_shutdown_constants
00000000000dc94e 0000000000000023 t zend_undefined_function_helper_SPEC.isra.3
000000000032ac10 0000000000000023 t zend_vm_init
00000000000cbc4d 0000000000000023 t zenderror
000000000029c6d0 0000000000000023 T zif_display_disabled_function
000000000018b1a0 0000000000000023 t zm_activate_spl
00000000001d0850 0000000000000023 t zm_shutdown_file
00000000002d83e0 0000000000000024 t ZEND_END_SILENCE_SPEC_TMP_HANDLER
00000000003f0400 0000000000000024 r _pcre2_callout_end_delims_8
00000000003f0440 0000000000000024 r _pcre2_callout_start_delims_8
00000000002402e0 0000000000000024 t add_protected_variable
00000000000e1c50 0000000000000024 t date_period_it_dtor
00000000001cfe20 0000000000000024 t file_context_dtor
00000000002402b0 0000000000000024 t is_protected_variable
00000000001697c0 0000000000000024 t pcre_clean_cache
00000000002422f0 0000000000000024 T php_rfc1867_set_multibyte_callbacks
0000000000230ac0 0000000000000024 T php_url_encode_hash_ex
000000000018e940 0000000000000024 t spl_recursive_it_get_current_data
0000000000108480 0000000000000024 t timelib_timezone_id_from_abbr
0000000000223050 0000000000000024 T var_push_dtor
00000000002a5610 0000000000000024 T zend_fcall_info_args_restore
00000000002c41b0 0000000000000024 T zend_gc_get_status
00000000002c7910 0000000000000024 t zend_generator_get_child.part.0
00000000000d40d4 0000000000000024 T zend_std_unset_static_property
0000000000443b80 0000000000000024 r zend_vm_decode.29225
0000000000443b80 0000000000000024 r zend_vm_decode.29232
0000000000319260 0000000000000024 T zend_vm_stack_destroy
00000000000dc1e3 0000000000000025 t ZEND_UNSET_STATIC_PROP_SPEC_CONST_VAR_HANDLER
000000000028ae60 0000000000000025 t clean_module_constants
000000000041f400 0000000000000025 r digits.15595
000000000041f400 0000000000000025 r digits.15606
00000000001e9d80 0000000000000025 t php_mail_log_crlf_to_spaces
0000000000235ef0 0000000000000025 T php_module_shutdown
0000000000247560 0000000000000025 t php_output_stack_apply_list
0000000000245920 0000000000000025 t php_run_ticks
0000000000331580 0000000000000025 t sapi_cli_server_startup
00000000001adab0 0000000000000025 t spl_fixedarray_it_get_current_key
0000000000408a40 0000000000000025 r yyr1
0000000000408a00 0000000000000025 r yyr2
00000000002b0970 0000000000000025 t zend_clean_module_rsrc_dtors
00000000002b08f0 0000000000000025 t zend_init_rsrc_list
0000000000292a90 0000000000000025 T zend_str_tolower
00000000002b6d30 0000000000000025 T zend_unregister_ini_entries
00000000000d763d 0000000000000026 t ZEND_ADD_LONG_NO_OVERFLOW_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000002e0360 0000000000000026 t ZEND_NULL_HANDLER
00000000000d6785 0000000000000026 t ZEND_QM_ASSIGN_SPEC_CONST_HANDLER
00000000000d76d5 0000000000000026 t ZEND_SUB_LONG_NO_OVERFLOW_SPEC_TMPVARCV_TMPVARCV_HANDLER
0000000000276020 0000000000000026 T _efree_huge
0000000000275500 0000000000000026 T _emalloc_huge
000000000029c610 0000000000000026 t clean_module_class
00000000000e1bf0 0000000000000026 t date_period_it_invalidate_current
00000000000e1c20 0000000000000026 t date_period_it_move_forward
00000000002c37c0 0000000000000026 t gc_globals_dtor
00000000002537b0 0000000000000026 t php_stream_temp_stat
000000000023f750 0000000000000026 T sapi_flush
000000000019a1f0 0000000000000026 t spl_array_it_rewind
00000000001ada60 0000000000000026 t spl_fixedarray_it_move_forward
00000000001ad750 0000000000000026 t spl_fixedarray_object_get_gc
00000000001aa0e0 0000000000000026 t spl_ptr_llist_zval_dtor
000000000022c510 0000000000000026 t user_space_stream_notifier_dtor
0000000000278820 0000000000000026 t zend_assert_valid_class_name
000000000027c840 0000000000000026 t zend_compile_func_get_called_class
00000000002a7960 0000000000000026 T zend_get_object_type
00000000002a7cf0 0000000000000026 T zend_get_resource_handle
000000000029cfc0 0000000000000026 t zend_startup_module_zval
00000000002b9090 0000000000000026 T zend_user_it_invalidate_current
00000000001cedb0 0000000000000026 t zm_startup_exec
000000000016a000 0000000000000027 t OnUpdateBacktrackLimit
0000000000169fd0 0000000000000027 t OnUpdateRecursionLimit
00000000000d70c8 0000000000000027 t ZEND_ADD_LONG_NO_OVERFLOW_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7299 0000000000000027 t ZEND_IS_EQUAL_LONG_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7808 0000000000000027 t ZEND_IS_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d72f1 0000000000000027 t ZEND_IS_NOT_EQUAL_LONG_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7860 0000000000000027 t ZEND_IS_NOT_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d69ad 0000000000000027 t ZEND_IS_SMALLER_LONG_SPEC_CONST_TMPVARCV_HANDLER
00000000000d7411 0000000000000027 t ZEND_IS_SMALLER_LONG_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7980 0000000000000027 t ZEND_IS_SMALLER_LONG_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d6ac3 0000000000000027 t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_CONST_TMPVARCV_HANDLER
00000000000d7527 0000000000000027 t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7a96 0000000000000027 t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d776d 0000000000000027 t ZEND_MUL_LONG_NO_OVERFLOW_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d6de9 0000000000000027 t ZEND_PRE_DEC_LONG_NO_OVERFLOW_SPEC_TMPVARCV_RETVAL_USED_HANDLER
00000000000d6e10 0000000000000027 t ZEND_PRE_DEC_LONG_SPEC_TMPVARCV_RETVAL_UNUSED_HANDLER
00000000000d6cc3 0000000000000027 t ZEND_PRE_INC_LONG_NO_OVERFLOW_SPEC_TMPVARCV_RETVAL_USED_HANDLER
00000000000d6cea 0000000000000027 t ZEND_PRE_INC_LONG_SPEC_TMPVARCV_RETVAL_UNUSED_HANDLER
00000000000d671b 0000000000000027 t ZEND_SEND_VAL_SPEC_CONST_HANDLER
00000000000d9305 0000000000000027 t ZEND_SEND_VAR_SIMPLE_SPEC_CV_HANDLER
00000000000d6913 0000000000000027 t ZEND_SUB_LONG_NO_OVERFLOW_SPEC_CONST_TMPVARCV_HANDLER
00000000000d7162 0000000000000027 t ZEND_SUB_LONG_NO_OVERFLOW_SPEC_TMPVARCV_CONST_HANDLER
00000000001e6430 0000000000000027 t _display_module_info_def
000000000024f230 0000000000000027 t _php_stream_write.part.1
0000000000173f90 0000000000000027 t php_json_parser_object_create
000000000028e3c0 0000000000000027 T zend_eval_string
00000000002a7ca0 0000000000000027 t zend_shutdown_extensions
00000000002e0180 0000000000000028 t ZEND_DECLARE_FUNCTION_SPEC_HANDLER
00000000000dc9a1 0000000000000028 t ZEND_FETCH_DIM_IS_SPEC_CONST_CONST_HANDLER
00000000000dc9c9 0000000000000028 t ZEND_FETCH_DIM_R_SPEC_CONST_CONST_HANDLER
00000000000d71fc 0000000000000028 t ZEND_MUL_LONG_NO_OVERFLOW_SPEC_TMPVARCV_CONST_HANDLER
00000000000d66f3 0000000000000028 t ZEND_RETURN_SPEC_CONST_HANDLER
00000000002d8b60 0000000000000028 t ZEND_ROPE_INIT_SPEC_UNUSED_CONST_HANDLER
00000000000de701 0000000000000028 T _start_c
00000000007244a0 0000000000000028 b allocator_mutex
0000000000440e80 0000000000000028 r bigtens
0000000000727820 0000000000000028 b date_globals
00000000002911e0 0000000000000028 T get_unary_op
00000000002535c0 0000000000000028 t php_stream_memory_close
00000000007279c0 0000000000000028 b spl_globals
0000000000440e40 0000000000000028 r tinytens
000000000026cfe0 0000000000000028 t yy_pop_state
0000000000261090 0000000000000028 t yy_pop_state
00000000002ba260 0000000000000028 T zend_class_unserialize_deny
00000000002b0920 0000000000000028 t zend_init_rsrc_plist
00000000000dce6a 0000000000000028 t zend_invalid_method_call.isra.21
000000000022b460 0000000000000028 t zm_startup_proc_open
00000000000d9d3f 0000000000000029 t ZEND_CLONE_SPEC_CONST_HANDLER
00000000000db0f5 0000000000000029 t ZEND_FETCH_OBJ_R_SPEC_CONST_CONST_HANDLER
00000000002d8410 0000000000000029 t ZEND_ISSET_ISEMPTY_THIS_SPEC_UNUSED_UNUSED_HANDLER
00000000001b0330 0000000000000029 t php_array_data_compare_numeric
00000000001b0240 0000000000000029 t php_array_data_compare_string
00000000001b02c0 0000000000000029 t php_array_data_compare_string_case
00000000001b01d0 0000000000000029 t php_array_data_compare_string_locale
00000000001e5cf0 0000000000000029 T php_info_print_style
00000000002a7a50 0000000000000029 t zend_extension_op_array_persist_handler
00000000002d4780 0000000000000029 t zend_visibility_string.part.9
000000000016a030 0000000000000029 t zif_preg_last_error
00000000001a6fe0 0000000000000029 t zim_spl_MultipleIterator_setFlags
00000000001c99f0 0000000000000029 t zm_deactivate_browscap
000000000028bf00 0000000000000029 t zval_call_destructor
00000000001ee700 000000000000002a T PHP_MD5Init
00000000000dc167 000000000000002a t ZEND_BOOL_XOR_SPEC_CONST_CONST_HANDLER
00000000000db912 000000000000002a t ZEND_DIV_SPEC_CONST_CONST_HANDLER
00000000000dba69 000000000000002a t ZEND_POW_SPEC_CONST_CONST_HANDLER
00000000000dbdac 000000000000002a t ZEND_SPACESHIP_SPEC_CONST_CONST_HANDLER
00000000001e6460 000000000000002a t _display_module_info_func
000000000014d0a0 000000000000002a t _pcre2_jit_free_rodata_8
0000000000228350 000000000000002a t consumed_filter_dtor
00000000000deef0 000000000000002a t date_object_free_storage_timezone
0000000000228320 000000000000002a t php_chunked_dtor
0000000000229fb0 000000000000002a t php_conv_base64_encode_dtor
000000000022a010 000000000000002a t php_conv_qprint_decode_dtor
0000000000229fe0 000000000000002a t php_conv_qprint_encode_dtor
00000000001ddf10 000000000000002a T php_header
000000000032d270 000000000000002a t php_http_should_keep_alive
0000000000247b80 000000000000002a T php_output_get_length
00000000002443b0 000000000000002a T php_register_variable
000000000023f720 000000000000002a T sapi_register_input_filter
000000000023f690 000000000000002a T sapi_unregister_post_entry
0000000000123d10 000000000000002a t sljit_has_cpu_feature.part.9
00000000001aacc0 000000000000002a t spl_dllist_it_dtor
000000000028e3f0 000000000000002a T zend_eval_stringl_ex
00000000000cbbdf 000000000000002a t zend_mm_panic.constprop.14
0000000000299ad0 000000000000002a T zend_ptr_stack_destroy
000000000027b060 000000000000002a t zend_resolve_class_name_ast
00000000000d76aa 000000000000002b t ZEND_ADD_DOUBLE_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000002f6b10 000000000000002b t ZEND_FETCH_DIM_IS_SPEC_CONST_CV_HANDLER
00000000002f6c60 000000000000002b t ZEND_FETCH_DIM_IS_SPEC_CV_CONST_HANDLER
00000000002f6ce0 000000000000002b t ZEND_FETCH_DIM_IS_SPEC_CV_CV_HANDLER
00000000002f8080 000000000000002b t ZEND_FETCH_DIM_RW_SPEC_CV_CONST_HANDLER
00000000002f8130 000000000000002b t ZEND_FETCH_DIM_RW_SPEC_CV_CV_HANDLER
00000000002f7300 000000000000002b t ZEND_FETCH_DIM_R_SPEC_CONST_CV_HANDLER
00000000002f7890 000000000000002b t ZEND_FETCH_DIM_UNSET_SPEC_CV_CONST_HANDLER
00000000002f7910 000000000000002b t ZEND_FETCH_DIM_UNSET_SPEC_CV_CV_HANDLER
00000000002f88d0 000000000000002b t ZEND_FETCH_DIM_W_SPEC_CV_CONST_HANDLER
00000000002f89e0 000000000000002b t ZEND_FETCH_DIM_W_SPEC_CV_CV_HANDLER
00000000002f6470 000000000000002b t ZEND_FETCH_LIST_R_SPEC_CONST_CONST_HANDLER
00000000002f64f0 000000000000002b t ZEND_FETCH_LIST_R_SPEC_CONST_CV_HANDLER
00000000002f6520 000000000000002b t ZEND_FETCH_LIST_R_SPEC_TMPVARCV_CONST_HANDLER
00000000002f65a0 000000000000002b t ZEND_FETCH_LIST_R_SPEC_TMPVARCV_CV_HANDLER
00000000000d6a32 000000000000002b t ZEND_IS_SMALLER_DOUBLE_SPEC_CONST_TMPVARCV_HANDLER
00000000000d7496 000000000000002b t ZEND_IS_SMALLER_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7a05 000000000000002b t ZEND_IS_SMALLER_DOUBLE_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d6b48 000000000000002b t ZEND_IS_SMALLER_OR_EQUAL_DOUBLE_SPEC_CONST_TMPVARCV_HANDLER
00000000000d75ac 000000000000002b t ZEND_IS_SMALLER_OR_EQUAL_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER
00000000000d7b1b 000000000000002b t ZEND_IS_SMALLER_OR_EQUAL_DOUBLE_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d77dd 000000000000002b t ZEND_MUL_DOUBLE_SPEC_TMPVARCV_TMPVARCV_HANDLER
00000000000d7742 000000000000002b t ZEND_SUB_DOUBLE_SPEC_TMPVARCV_TMPVARCV_HANDLER
0000000000246e60 000000000000002b T _php_emit_fd_setsize_warning
00000000000e8d50 000000000000002b T php_date_set_tzdb
0000000000219ec0 000000000000002b T php_url_scanner_reset_session_vars
0000000000219ef0 000000000000002b T php_url_scanner_reset_vars
00000000003ea300 000000000000002b r verbnames
00000000002a8190 000000000000002b T zend_hash_bucket_packed_swap
000000000028fda0 000000000000002b T zend_llist_get_next_ex
000000000028fdd0 000000000000002b T zend_llist_get_prev_ex
00000000000cbb12 000000000000002b t zend_out_of_memory
000000000029d6f0 000000000000002b T zend_parse_arg_long_cap_slow
000000000029d5a0 000000000000002b T zend_parse_arg_long_slow
000000000029d960 000000000000002b T zend_parse_arg_str_slow
000000000027bdb0 000000000000002b t zend_verify_namespace
0000000000184700 000000000000002b t zim_reflection_class___toString.part.83
0000000000183db0 000000000000002b t zim_reflection_class_getDefaultProperties.part.81
0000000000183db0 000000000000002b t zim_reflection_class_getDocComment.part.51
0000000000183db0 000000000000002b t zim_reflection_class_getFileName.part.48
0000000000183db0 000000000000002b t zim_reflection_class_isIterable.part.58
0000000000184700 000000000000002b t zim_reflection_extension___toString.part.85
0000000000184700 000000000000002b t zim_reflection_function___toString.part.72
0000000000183db0 000000000000002b t zim_reflection_function_getClosure.part.75
0000000000183db0 000000000000002b t zim_reflection_function_getClosureThis.part.74
0000000000183db0 000000000000002b t zim_reflection_function_getDocComment.part.17
0000000000183db0 000000000000002b t zim_reflection_function_getFileName.part.14
0000000000183db0 000000000000002b t zim_reflection_function_getReturnType.part.37
0000000000184700 000000000000002b t zim_reflection_method___toString.part.73
0000000000183db0 000000000000002b t zim_reflection_method_getPrototype.part.76
0000000000184700 000000000000002b t zim_reflection_property___toString.part.84
0000000000184700 000000000000002b t zim_reflection_zend_extension___toString.part.66
0000000000232cc0 000000000000002b t zm_shutdown_random
00000000000d7136 000000000000002c t ZEND_ADD_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER
00000000002e3e80 000000000000002c t ZEND_DECLARE_CLASS_SPEC_CONST_HANDLER
00000000000d726d 000000000000002c t ZEND_MUL_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER
00000000000d6981 000000000000002c t ZEND_SUB_DOUBLE_SPEC_CONST_TMPVARCV_HANDLER
00000000000d71d0 000000000000002c t ZEND_SUB_DOUBLE_SPEC_TMPVARCV_CONST_HANDLER
00000000001eda20 000000000000002c T _php_math_number_format
0000000000254cc0 000000000000002c T _php_stream_filter_prepend
000000000025d230 000000000000002c t php_glob_stream_rewind
00000000001e5cc0 000000000000002c t php_info_print_box_start.part.0
00000000001e6000 000000000000002c T php_info_print_hr
00000000001e5f30 000000000000002c T php_info_print_table_start
00000000001e34a0 000000000000002c t php_skip_variable
0000000000254820 000000000000002c T php_stream_bucket_prepend
00000000003ef100 000000000000002c r rep_max
00000000003ef140 000000000000002c r rep_min
00000000001aac90 000000000000002c t spl_dllist_it_move_forward
00000000003ea240 000000000000002c r verbops
0000000000322180 000000000000002c T zend_cleanup_unfinished_execution
00000000002a02b0 000000000000002c T zend_destroy_modules
00000000002c6120 000000000000002c T zend_interned_strings_dtor
000000000029bfa0 000000000000002c t zend_set_utility_values
00000000002b0d30 000000000000002c t zif_gc_collect_cycles
00000000002b1060 000000000000002c t zif_gc_enabled
00000000001e8ad0 000000000000002c t zif_lcg_value
000000000024e380 000000000000002c t zif_output_reset_rewrite_vars
00000000001da7a0 000000000000002c t zif_realpath_cache_size
00000000000e19e0 000000000000002c t zif_time
000000000019e4a0 000000000000002c t zim_spl_SplFileObject_setFlags
0000000000176ce0 000000000000002c t zm_info_pcntl
0000000000181dc0 000000000000002c t zm_info_reflection
000000000029b300 000000000000002d t OnUpdateErrorReporting
00000000002d9fd0 000000000000002d t ZEND_FETCH_THIS_SPEC_UNUSED_UNUSED_HANDLER
0000000000242320 000000000000002d T php_default_post_reader
000000000026d150 000000000000002d t shutdown_ini_scanner
00000000001a9310 000000000000002d t spl_object_storage_clone
0000000000109920 000000000000002d t timelib_time_compare
0000000000408b60 000000000000002d r yydefact
0000000000408ba0 000000000000002d r yypact
0000000000408a80 000000000000002d r yystos
00000000002b0670 000000000000002d T zend_fetch_resource2
00000000002bd700 000000000000002d T zend_get_exception_base
00000000002a9980 000000000000002d T zend_hash_add_or_update
00000000002b7230 000000000000002d T zend_ini_register_displayer
000000000028fb10 000000000000002d T zend_llist_apply
0000000000293130 000000000000002d T zend_locale_sprintf_double
00000000002a2120 000000000000002d T zend_register_internal_class_ex
000000000026b850 000000000000002d t zval_ini_dtor.isra.1.part.2
00000000002479e0 000000000000002e T php_output_get_status
0000000000247f10 000000000000002e T php_output_handler_set_context
0000000000254c50 000000000000002e T php_stream_filter_free
000000000024f610 000000000000002e t php_stream_tidy_wrapper_error_log
00000000001adce0 000000000000002e t spl_fixedarray_init.part.1
00000000001adae0 000000000000002e t spl_fixedarray_it_valid
00000000002cb780 000000000000002e T virtual_chdir
00000000002c6150 000000000000002e T zend_interned_strings_activate
00000000002a7990 000000000000002e T zend_is_iterable
000000000032ac50 000000000000002e T zend_serialize_opcode_handler
00000000001938d0 000000000000002e t zim_spl_LimitIterator_getPosition
00000000000e1570 000000000000002e t zm_shutdown_date
0000000000234110 000000000000002f t OnSetPrecision
0000000000234140 000000000000002f t OnSetSerializePrecision
00000000000dd8b8 000000000000002f t ZEND_IS_EQUAL_LONG_SPEC_TMPVARCV_CONST_JMPNZ_HANDLER
00000000000dd889 000000000000002f t ZEND_IS_EQUAL_LONG_SPEC_TMPVARCV_CONST_JMPZ_HANDLER
00000000000dd980 000000000000002f t ZEND_IS_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_JMPNZ_HANDLER
00000000000dd951 000000000000002f t ZEND_IS_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_JMPZ_HANDLER
00000000000d7347 000000000000002f t ZEND_IS_NOT_EQUAL_LONG_SPEC_TMPVARCV_CONST_JMPNZ_HANDLER
00000000000d7318 000000000000002f t ZEND_IS_NOT_EQUAL_LONG_SPEC_TMPVARCV_CONST_JMPZ_HANDLER
00000000000d78b6 000000000000002f t ZEND_IS_NOT_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_JMPNZ_HANDLER
00000000000d7887 000000000000002f t ZEND_IS_NOT_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_JMPZ_HANDLER
00000000000d6a03 000000000000002f t ZEND_IS_SMALLER_LONG_SPEC_CONST_TMPVARCV_JMPNZ_HANDLER
00000000000d69d4 000000000000002f t ZEND_IS_SMALLER_LONG_SPEC_CONST_TMPVARCV_JMPZ_HANDLER
00000000000d7467 000000000000002f t ZEND_IS_SMALLER_LONG_SPEC_TMPVARCV_CONST_JMPNZ_HANDLER
00000000000d7438 000000000000002f t ZEND_IS_SMALLER_LONG_SPEC_TMPVARCV_CONST_JMPZ_HANDLER
00000000000d79d6 000000000000002f t ZEND_IS_SMALLER_LONG_SPEC_TMPVARCV_TMPVARCV_JMPNZ_HANDLER
00000000000d79a7 000000000000002f t ZEND_IS_SMALLER_LONG_SPEC_TMPVARCV_TMPVARCV_JMPZ_HANDLER
00000000000d6b19 000000000000002f t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_CONST_TMPVARCV_JMPNZ_HANDLER
00000000000d6aea 000000000000002f t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_CONST_TMPVARCV_JMPZ_HANDLER
00000000000d757d 000000000000002f t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_TMPVARCV_CONST_JMPNZ_HANDLER
00000000000d754e 000000000000002f t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_TMPVARCV_CONST_JMPZ_HANDLER
00000000000d7aec 000000000000002f t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_JMPNZ_HANDLER
00000000000d7abd 000000000000002f t ZEND_IS_SMALLER_OR_EQUAL_LONG_SPEC_TMPVARCV_TMPVARCV_JMPZ_HANDLER
00000000002970a0 000000000000002f T is_numeric_str_function
00000000002482e0 000000000000002f T php_output_handler_alias
000000000023db30 000000000000002f T sapi_read_post_block
00000000002ba230 000000000000002f T zend_class_serialize_deny
000000000028f120 000000000000002f T zend_forbid_dynamic_call
000000000028fc20 000000000000002f T zend_llist_apply_with_argument
00000000002b0b10 000000000000002f T zend_rsrc_list_get_rsrc_type
0000000000209ee0 000000000000002f t zif_is_scalar
00000000001ec2d0 000000000000002f t zif_pow
00000000002c7860 000000000000002f t zim_Generator___wakeup
00000000002ec430 0000000000000030 t ZEND_INIT_ARRAY_SPEC_CONST_UNUSED_HANDLER
00000000002ec4b0 0000000000000030 t ZEND_INIT_ARRAY_SPEC_TMP_UNUSED_HANDLER
00000000002d8b30 0000000000000030 t ZEND_ROPE_ADD_SPEC_TMP_CONST_HANDLER
0000000000162190 0000000000000030 t _pcre2_strcpy_c8_8
00000000006b0440 0000000000000030 d arginfo_MultipleIterator_containsIterator
00000000006b0480 0000000000000030 d arginfo_MultipleIterator_detachIterator
00000000006b0400 0000000000000030 d arginfo_MultipleIterator_setflags
00000000006b0940 0000000000000030 d arginfo_Object
00000000006b08a0 0000000000000030 d arginfo_Serialized
00000000006b0a80 0000000000000030 d arginfo_SplObserver_update
00000000006b0a00 0000000000000030 d arginfo_SplSubject_attach
00000000006b5ec0 0000000000000030 d arginfo_abs
00000000006b5ca0 0000000000000030 d arginfo_acos
00000000006b5ac0 0000000000000030 d arginfo_acosh
00000000006b30c0 0000000000000030 d arginfo_addslashes
00000000006acae0 0000000000000030 d arginfo_append_it_append
00000000006aecc0 0000000000000030 d arginfo_array_append
00000000006ba4e0 0000000000000030 d arginfo_array_count_values
00000000006aec40 0000000000000030 d arginfo_array_exchangeArray
00000000006ba380 0000000000000030 d arginfo_array_flip
00000000006ba5a0 0000000000000030 d arginfo_array_key_first
00000000006ba560 0000000000000030 d arginfo_array_key_last
00000000006aed60 0000000000000030 d arginfo_array_offsetGet
00000000006ba960 0000000000000030 d arginfo_array_pop
00000000006b9b20 0000000000000030 d arginfo_array_product
00000000006aec80 0000000000000030 d arginfo_array_seek
00000000006aec00 0000000000000030 d arginfo_array_setFlags
00000000006aebc0 0000000000000030 d arginfo_array_setIteratorClass
00000000006ba920 0000000000000030 d arginfo_array_shift
00000000006b9b60 0000000000000030 d arginfo_array_sum
00000000006aeb80 0000000000000030 d arginfo_array_uXsort
00000000006aeb40 0000000000000030 d arginfo_array_unserialize
00000000006ba520 0000000000000030 d arginfo_array_values
0000000000707aa0 0000000000000030 d arginfo_arrayaccess_offset
0000000000707a60 0000000000000030 d arginfo_arrayaccess_offset_get
00000000006b5ce0 0000000000000030 d arginfo_asin
00000000006b5b00 0000000000000030 d arginfo_asinh
00000000006b5c60 0000000000000030 d arginfo_atan
00000000006b5a80 0000000000000030 d arginfo_atanh
00000000006b8b80 0000000000000030 d arginfo_base64_encode
00000000006b3e20 0000000000000030 d arginfo_bin2hex
00000000006b56a0 0000000000000030 d arginfo_bindec
00000000006b2400 0000000000000030 d arginfo_boolval
00000000006ad240 0000000000000030 d arginfo_caching_it_offsetGet
00000000006ad280 0000000000000030 d arginfo_caching_it_setFlags
00000000006b5e80 0000000000000030 d arginfo_ceil
00000000006b87e0 0000000000000030 d arginfo_chdir
00000000006b3340 0000000000000030 d arginfo_chr
00000000006b8820 0000000000000030 d arginfo_chroot
0000000000718000 0000000000000030 d arginfo_cli_set_process_title
0000000000717e40 0000000000000030 d arginfo_cli_set_process_title
00000000006b8860 0000000000000030 d arginfo_closedir
0000000000708100 0000000000000030 d arginfo_closure_fromcallable
00000000006bab60 0000000000000030 d arginfo_compact
00000000006b98a0 0000000000000030 d arginfo_constant
00000000006b1c40 0000000000000030 d arginfo_convert_uudecode
00000000006b1c80 0000000000000030 d arginfo_convert_uuencode
00000000006b5d60 0000000000000030 d arginfo_cos
00000000006b5b80 0000000000000030 d arginfo_cosh
00000000006b8a80 0000000000000030 d arginfo_crc32
00000000006bae40 0000000000000030 d arginfo_current
000000000069ea80 0000000000000030 d arginfo_date_default_timezone_set
000000000069da00 0000000000000030 d arginfo_date_interval_construct
000000000069db80 0000000000000030 d arginfo_date_interval_create_from_date_string
000000000069e560 0000000000000030 d arginfo_date_method_add
000000000069dee0 0000000000000030 d arginfo_date_method_create_from_immutable
000000000069dea0 0000000000000030 d arginfo_date_method_create_from_mutable
000000000069e6a0 0000000000000030 d arginfo_date_method_format
000000000069dae0 0000000000000030 d arginfo_date_method_interval_format
000000000069e600 0000000000000030 d arginfo_date_method_modify
000000000069e4c0 0000000000000030 d arginfo_date_method_sub
000000000069df60 0000000000000030 d arginfo_date_method_timestamp_set
000000000069e3e0 0000000000000030 d arginfo_date_method_timezone_set
000000000069e3a0 0000000000000030 d arginfo_date_offset_get
000000000069e7a0 0000000000000030 d arginfo_date_parse
000000000069da40 0000000000000030 d arginfo_date_set_state
000000000069df20 0000000000000030 d arginfo_date_timestamp_get
000000000069e480 0000000000000030 d arginfo_date_timezone_get
00000000006b1bc0 0000000000000030 d arginfo_debug_zval_dump
00000000006b55e0 0000000000000030 d arginfo_decbin
00000000006b5560 0000000000000030 d arginfo_dechex
00000000006b55a0 0000000000000030 d arginfo_decoct
0000000000707540 0000000000000030 d arginfo_defined
00000000006b5720 0000000000000030 d arginfo_deg2rad
00000000006bb780 0000000000000030 d arginfo_dir
00000000006afca0 0000000000000030 d arginfo_dir___construct
00000000006afc60 0000000000000030 d arginfo_dir_it_seek
00000000006b7500 0000000000000030 d arginfo_disk_free_space
00000000006b7540 0000000000000030 d arginfo_disk_total_space
0000000000717ba0 0000000000000030 d arginfo_dl
00000000006b0ec0 0000000000000030 d arginfo_dllist_offsetGet
00000000006b0f00 0000000000000030 d arginfo_dllist_push
00000000006b0e20 0000000000000030 d arginfo_dllist_serialized
00000000006b0f40 0000000000000030 d arginfo_dllist_setiteratormode
0000000000707620 0000000000000030 d arginfo_each
00000000006baf40 0000000000000030 d arginfo_end
00000000007075e0 0000000000000030 d arginfo_error_reporting
00000000006b82e0 0000000000000030 d arginfo_escapeshellarg
00000000006b8320 0000000000000030 d arginfo_escapeshellcmd
00000000006b5920 0000000000000030 d arginfo_exp
00000000006b58e0 0000000000000030 d arginfo_expm1
0000000000706e20 0000000000000030 d arginfo_extension_loaded
00000000006b5fa0 0000000000000030 d arginfo_ezmlm_hash
00000000006b7f00 0000000000000030 d arginfo_fclose
00000000006b7e20 0000000000000030 d arginfo_feof
00000000006b7c20 0000000000000030 d arginfo_fflush
00000000006b7d80 0000000000000030 d arginfo_fgetc
00000000006b6e60 0000000000000030 d arginfo_file_exists
00000000006af4e0 0000000000000030 d arginfo_file_object_fgetss
00000000006af3e0 0000000000000030 d arginfo_file_object_fread
00000000006af3a0 0000000000000030 d arginfo_file_object_ftruncate
00000000006af360 0000000000000030 d arginfo_file_object_seek
00000000006af700 0000000000000030 d arginfo_file_object_setFlags
00000000006af6c0 0000000000000030 d arginfo_file_object_setMaxLineLen
00000000006b70e0 0000000000000030 d arginfo_fileatime
00000000006b7060 0000000000000030 d arginfo_filectime
00000000006b7120 0000000000000030 d arginfo_filegroup
00000000006b71e0 0000000000000030 d arginfo_fileinode
00000000006b70a0 0000000000000030 d arginfo_filemtime
00000000006b7160 0000000000000030 d arginfo_fileowner
00000000006b7220 0000000000000030 d arginfo_fileperms
00000000006b71a0 0000000000000030 d arginfo_filesize
00000000006b7020 0000000000000030 d arginfo_filetype
00000000006add40 0000000000000030 d arginfo_filter_it___construct
00000000006b18e0 0000000000000030 d arginfo_fixedarray_offsetGet
00000000006b1840 0000000000000030 d arginfo_fixedarray_setSize
00000000006b2480 0000000000000030 d arginfo_floatval
00000000006b5e40 0000000000000030 d arginfo_floor
00000000006b7980 0000000000000030 d arginfo_fpassthru
00000000006b7820 0000000000000030 d arginfo_fstat
00000000006b7ba0 0000000000000030 d arginfo_ftell
0000000000707760 0000000000000030 d arginfo_func_get_arg
0000000000707220 0000000000000030 d arginfo_function_exists
0000000000708560 0000000000000030 d arginfo_generator_send
0000000000708520 0000000000000030 d arginfo_generator_throw
00000000006b0820 0000000000000030 d arginfo_getHash
00000000006b9540 0000000000000030 d arginfo_get_cfg_var
0000000000707500 0000000000000030 d arginfo_get_class
00000000007073e0 0000000000000030 d arginfo_get_class_methods
0000000000707460 0000000000000030 d arginfo_get_class_vars
0000000000706f20 0000000000000030 d arginfo_get_defined_constants
0000000000707080 0000000000000030 d arginfo_get_defined_functions
0000000000706f60 0000000000000030 d arginfo_get_loaded_extensions
0000000000707420 0000000000000030 d arginfo_get_object_vars
0000000000706fe0 0000000000000030 d arginfo_get_resource_type
0000000000706fa0 0000000000000030 d arginfo_get_resources
000000000069eac0 0000000000000030 d arginfo_getdate
00000000006b8660 0000000000000030 d arginfo_gethostbyaddr
00000000006b8620 0000000000000030 d arginfo_gethostbyname
00000000006b85e0 0000000000000030 d arginfo_gethostbynamel
00000000006b8ec0 0000000000000030 d arginfo_getprotobyname
00000000006b8e80 0000000000000030 d arginfo_getprotobynumber
00000000006b51e0 0000000000000030 d arginfo_getrusage
00000000006b5220 0000000000000030 d arginfo_gettimeofday
00000000006b2580 0000000000000030 d arginfo_gettype
00000000006bb5e0 0000000000000030 d arginfo_header_register_callback
00000000006b6960 0000000000000030 d arginfo_header_remove
00000000006b1500 0000000000000030 d arginfo_heap_insert
00000000006b3de0 0000000000000030 d arginfo_hex2bin
00000000006b5660 0000000000000030 d arginfo_hexdec
00000000006b6700 0000000000000030 d arginfo_hrtime
00000000006b6740 0000000000000030 d arginfo_http_response_code
00000000006b8fc0 0000000000000030 d arginfo_ignore_user_abort
00000000006b6420 0000000000000030 d arginfo_image_type_to_mime_type
00000000006b9860 0000000000000030 d arginfo_inet_ntop
00000000006b9820 0000000000000030 d arginfo_inet_pton
00000000006b01a0 0000000000000030 d arginfo_info___construct
00000000006b0100 0000000000000030 d arginfo_info_optinalFileClass
00000000006b91a0 0000000000000030 d arginfo_ini_get
00000000006b90a0 0000000000000030 d arginfo_ini_restore
00000000006b97e0 0000000000000030 d arginfo_ip2long
00000000006b61c0 0000000000000030 d arginfo_iptcparse
00000000006b2240 0000000000000030 d arginfo_is_array
00000000006b2340 0000000000000030 d arginfo_is_bool
00000000006b20a0 0000000000000030 d arginfo_is_countable
00000000006b6ee0 0000000000000030 d arginfo_is_dir
00000000006b6f60 0000000000000030 d arginfo_is_executable
00000000006b6f20 0000000000000030 d arginfo_is_file
00000000006b5a40 0000000000000030 d arginfo_is_finite
00000000006b22c0 0000000000000030 d arginfo_is_float
00000000006b5a00 0000000000000030 d arginfo_is_infinite
00000000006b2300 0000000000000030 d arginfo_is_int
00000000006b20e0 0000000000000030 d arginfo_is_iterable
00000000006b6ea0 0000000000000030 d arginfo_is_link
00000000006b59c0 0000000000000030 d arginfo_is_nan
00000000006b23c0 0000000000000030 d arginfo_is_null
00000000006b21c0 0000000000000030 d arginfo_is_numeric
00000000006b2200 0000000000000030 d arginfo_is_object
00000000006b6fa0 0000000000000030 d arginfo_is_readable
00000000006b2380 0000000000000030 d arginfo_is_resource
00000000006b2180 0000000000000030 d arginfo_is_scalar
00000000006b2280 0000000000000030 d arginfo_is_string
00000000006b8da0 0000000000000030 d arginfo_is_uploaded_file
00000000006b6fe0 0000000000000030 d arginfo_is_writable
00000000006ac8a0 0000000000000030 d arginfo_iterator
00000000006ace80 0000000000000030 d arginfo_iterator_it___construct
00000000006bae00 0000000000000030 d arginfo_key
00000000006b32c0 0000000000000030 d arginfo_lcfirst
00000000006ad460 0000000000000030 d arginfo_limit_it_seek
00000000006b60a0 0000000000000030 d arginfo_linkinfo
00000000006b5800 0000000000000030 d arginfo_log10
00000000006b58a0 0000000000000030 d arginfo_log1p
00000000006b97a0 0000000000000030 d arginfo_long2ip
00000000006b6e20 0000000000000030 d arginfo_lstat
00000000006bad80 0000000000000030 d arginfo_max
00000000006b1a40 0000000000000030 d arginfo_memory_get_peak_usage
00000000006b1a80 0000000000000030 d arginfo_memory_get_usage
00000000006b5260 0000000000000030 d arginfo_microtime
00000000006badc0 0000000000000030 d arginfo_min
00000000006bb220 0000000000000030 d arginfo_natcasesort
00000000006bb260 0000000000000030 d arginfo_natsort
00000000006baec0 0000000000000030 d arginfo_next
00000000006b3ca0 0000000000000030 d arginfo_nl_langinfo
00000000006acd40 0000000000000030 d arginfo_norewind_it___construct
00000000006bb540 0000000000000030 d arginfo_ob_get_status
00000000006bb500 0000000000000030 d arginfo_ob_implicit_flush
00000000006b5620 0000000000000030 d arginfo_octdec
00000000006b07e0 0000000000000030 d arginfo_offsetGet
00000000006b00c0 0000000000000030 d arginfo_optinalSuffix
00000000006b3380 0000000000000030 d arginfo_ord
00000000006ada40 0000000000000030 d arginfo_parent_it___construct
00000000006b5080 0000000000000030 d arginfo_password_get_info
00000000006b7e60 0000000000000030 d arginfo_pclose
00000000006a9840 0000000000000030 d arginfo_pcntl_alarm
00000000006a9700 0000000000000030 d arginfo_pcntl_async_signals
00000000006a9ba0 0000000000000030 d arginfo_pcntl_signal_get_handler
00000000006a9740 0000000000000030 d arginfo_pcntl_strerror
00000000006a9a20 0000000000000030 d arginfo_pcntl_wifexited
00000000006a9960 0000000000000030 d arginfo_pcntl_wifexitstatus
00000000006a99a0 0000000000000030 d arginfo_pcntl_wifsignaled
00000000006a99e0 0000000000000030 d arginfo_pcntl_wifstopped
00000000006a98e0 0000000000000030 d arginfo_pcntl_wstopsig
00000000006a9920 0000000000000030 d arginfo_pcntl_wtermsig
00000000006b9240 0000000000000030 d arginfo_php_strip_whitespace
00000000006b6260 0000000000000030 d arginfo_php_uname
00000000006b62a0 0000000000000030 d arginfo_phpcredits
00000000006b6320 0000000000000030 d arginfo_phpinfo
00000000006b62e0 0000000000000030 d arginfo_phpversion
00000000006b1400 0000000000000030 d arginfo_pqueue_setflags
00000000006baf00 0000000000000030 d arginfo_prev
00000000006b4f20 0000000000000030 d arginfo_proc_close
00000000006b4ee0 0000000000000030 d arginfo_proc_get_status
00000000006b8260 0000000000000030 d arginfo_proc_nice
00000000006b9700 0000000000000030 d arginfo_putenv
00000000006b4de0 0000000000000030 d arginfo_quoted_printable_decode
00000000006b4da0 0000000000000030 d arginfo_quoted_printable_encode
00000000006b33c0 0000000000000030 d arginfo_quotemeta
00000000006afa20 0000000000000030 d arginfo_r_dir_hasChildren
00000000006af9e0 0000000000000030 d arginfo_r_dir_setFlags
00000000006b56e0 0000000000000030 d arginfo_rad2deg
00000000006b4ca0 0000000000000030 d arginfo_random_bytes
00000000006b1ee0 0000000000000030 d arginfo_rawurldecode
00000000006b1f20 0000000000000030 d arginfo_rawurlencode
00000000006b8760 0000000000000030 d arginfo_readdir
00000000006b60e0 0000000000000030 d arginfo_readlink
00000000006b75e0 0000000000000030 d arginfo_realpath
00000000006ae3a0 0000000000000030 d arginfo_recursive_it_getSubIterator
00000000006ae360 0000000000000030 d arginfo_recursive_it_setMaxDepth
00000000006adfe0 0000000000000030 d arginfo_recursive_tree_it_setPostfix
00000000006ab7c0 0000000000000030 d arginfo_reflection_class___construct
00000000006ab500 0000000000000030 d arginfo_reflection_class_getConstant
00000000006ab680 0000000000000030 d arginfo_reflection_class_getMethod
00000000006ab640 0000000000000030 d arginfo_reflection_class_getMethods
00000000006ab580 0000000000000030 d arginfo_reflection_class_getProperties
00000000006ab5c0 0000000000000030 d arginfo_reflection_class_getProperty
00000000006ab540 0000000000000030 d arginfo_reflection_class_hasConstant
00000000006ab6c0 0000000000000030 d arginfo_reflection_class_hasMethod
00000000006ab600 0000000000000030 d arginfo_reflection_class_hasProperty
00000000006ab3c0 0000000000000030 d arginfo_reflection_class_implementsInterface
00000000006ab4c0 0000000000000030 d arginfo_reflection_class_isInstance
00000000006ab400 0000000000000030 d arginfo_reflection_class_isSubclassOf
00000000006ab480 0000000000000030 d arginfo_reflection_class_newInstance
00000000006ab440 0000000000000030 d arginfo_reflection_class_newInstanceArgs
00000000006aa0a0 0000000000000030 d arginfo_reflection_extension___construct
00000000006ac320 0000000000000030 d arginfo_reflection_function___construct
00000000006ac2e0 0000000000000030 d arginfo_reflection_function_invoke
00000000006ac2a0 0000000000000030 d arginfo_reflection_function_invokeArgs
00000000006abe00 0000000000000030 d arginfo_reflection_generator___construct
00000000006abdc0 0000000000000030 d arginfo_reflection_generator_trace
00000000006ac4e0 0000000000000030 d arginfo_reflection_getModifierNames
00000000006abac0 0000000000000030 d arginfo_reflection_method_getClosure
00000000006abb00 0000000000000030 d arginfo_reflection_method_setAccessible
00000000006aac40 0000000000000030 d arginfo_reflection_object___construct
00000000006aaae0 0000000000000030 d arginfo_reflection_property_getValue
00000000006aaa40 0000000000000030 d arginfo_reflection_property_setAccessible
00000000006a9e60 0000000000000030 d arginfo_reflection_zend_extension___construct
00000000006ad840 0000000000000030 d arginfo_regex_it_set_flags
00000000006ad880 0000000000000030 d arginfo_regex_it_set_mode
00000000006ad800 0000000000000030 d arginfo_regex_it_set_preg_flags
00000000006bae80 0000000000000030 d arginfo_reset
00000000006b7be0 0000000000000030 d arginfo_rewind
00000000006b87a0 0000000000000030 d arginfo_rewinddir
00000000006ad540 0000000000000030 d arginfo_seekable_it_seek
0000000000707920 0000000000000030 d arginfo_serializable_serialize
00000000006b1b20 0000000000000030 d arginfo_serialize
00000000006b0860 0000000000000030 d arginfo_setInfo
00000000007070c0 0000000000000030 d arginfo_set_exception_handler
00000000006b9060 0000000000000030 d arginfo_set_include_path
00000000006bb620 0000000000000030 d arginfo_set_time_limit
00000000006b82a0 0000000000000030 d arginfo_shell_exec
00000000006baa00 0000000000000030 d arginfo_shuffle
00000000006b5da0 0000000000000030 d arginfo_sin
00000000006b5bc0 0000000000000030 d arginfo_sinh
00000000006b9660 0000000000000030 d arginfo_sleep
00000000006b4b40 0000000000000030 d arginfo_soundex
00000000006ac640 0000000000000030 d arginfo_spl_autoload_call
00000000006ac680 0000000000000030 d arginfo_spl_autoload_extensions
00000000006ac5a0 0000000000000030 d arginfo_spl_autoload_unregister
00000000006ac560 0000000000000030 d arginfo_spl_object_hash
00000000006ac520 0000000000000030 d arginfo_spl_object_id
00000000006b1920 0000000000000030 d arginfo_splfixedarray_construct
00000000006b57c0 0000000000000030 d arginfo_sqrt
00000000006b6de0 0000000000000030 d arginfo_stat
00000000006b2960 0000000000000030 d arginfo_str_rot13
00000000006b2920 0000000000000030 d arginfo_str_shuffle
00000000006b1e40 0000000000000030 d arginfo_stream_bucket_make_writeable
00000000006b4360 0000000000000030 d arginfo_stream_context_get_default
00000000006b44c0 0000000000000030 d arginfo_stream_context_get_options
00000000006b43a0 0000000000000030 d arginfo_stream_context_get_params
00000000006b4320 0000000000000030 d arginfo_stream_context_set_default
00000000006b4180 0000000000000030 d arginfo_stream_filter_remove
00000000006b46a0 0000000000000030 d arginfo_stream_get_meta_data
00000000006b4620 0000000000000030 d arginfo_stream_is_local
00000000006b45a0 0000000000000030 d arginfo_stream_isatty
00000000006b4660 0000000000000030 d arginfo_stream_resolve_include_path
00000000006b45e0 0000000000000030 d arginfo_stream_supports_lock
00000000006bb3c0 0000000000000030 d arginfo_stream_wrapper_restore
00000000006bb400 0000000000000030 d arginfo_stream_wrapper_unregister
00000000006b3080 0000000000000030 d arginfo_stripcslashes
00000000006b3040 0000000000000030 d arginfo_stripslashes
0000000000707720 0000000000000030 d arginfo_strlen
00000000006b31c0 0000000000000030 d arginfo_strrev
00000000006b3900 0000000000000030 d arginfo_strtolower
00000000006b3940 0000000000000030 d arginfo_strtoupper
00000000006b2440 0000000000000030 d arginfo_strval
00000000006b5d20 0000000000000030 d arginfo_tan
00000000006b5b40 0000000000000030 d arginfo_tanh
00000000006aeee0 0000000000000030 d arginfo_temp_file_object___construct
00000000006b9580 0000000000000030 d arginfo_time_sleep_until
000000000069dc20 0000000000000030 d arginfo_timezone_location_get
000000000069dd20 0000000000000030 d arginfo_timezone_method_offset_get
000000000069de20 0000000000000030 d arginfo_timezone_name_get
000000000069de60 0000000000000030 d arginfo_timezone_open
00000000006b3300 0000000000000030 d arginfo_ucfirst
00000000006b79c0 0000000000000030 d arginfo_umask
00000000006b8de0 0000000000000030 d arginfo_unregister_tick_function
00000000006b1f60 0000000000000030 d arginfo_urldecode
00000000006b1fa0 0000000000000030 d arginfo_urlencode
00000000006b9620 0000000000000030 d arginfo_usleep
00000000006b2680 0000000000000030 d arginfo_utf8_decode
00000000006b26c0 0000000000000030 d arginfo_utf8_encode
00000000006b1c00 0000000000000030 d arginfo_var_dump
0000000000726500 0000000000000030 b gc_globals
00000000006bb960 0000000000000030 d ht_bucket_be_apos_000
00000000006bb920 0000000000000030 d ht_bucket_be_apos_003
00000000006bb8e0 0000000000000030 d ht_bucket_be_apos_005
00000000006bb8a0 0000000000000030 d ht_bucket_be_apos_008
00000000006bb860 0000000000000030 d ht_bucket_be_apos_00E
00000000006bc140 0000000000000030 d ht_bucket_be_noapos_000
00000000006bc100 0000000000000030 d ht_bucket_be_noapos_003
00000000006bc0c0 0000000000000030 d ht_bucket_be_noapos_004
00000000006bc080 0000000000000030 d ht_bucket_be_noapos_005
00000000006bc040 0000000000000030 d ht_bucket_be_noapos_00E
00000000006c0d80 0000000000000030 d ht_bucket_html4_000
00000000006c0c80 0000000000000030 d ht_bucket_html4_008
00000000006c0c40 0000000000000030 d ht_bucket_html4_00B
00000000006c0c00 0000000000000030 d ht_bucket_html4_00E
00000000006c0bc0 0000000000000030 d ht_bucket_html4_012
00000000006c0b80 0000000000000030 d ht_bucket_html4_016
00000000006c0b40 0000000000000030 d ht_bucket_html4_018
00000000006c0b00 0000000000000030 d ht_bucket_html4_01B
00000000006c0a60 0000000000000030 d ht_bucket_html4_023
00000000006c0a20 0000000000000030 d ht_bucket_html4_026
00000000006c09e0 0000000000000030 d ht_bucket_html4_027
00000000006c0940 0000000000000030 d ht_bucket_html4_02C
00000000006c0900 0000000000000030 d ht_bucket_html4_02F
00000000006c0860 0000000000000030 d ht_bucket_html4_034
00000000006c0820 0000000000000030 d ht_bucket_html4_036
00000000006c07e0 0000000000000030 d ht_bucket_html4_03B
00000000006c07a0 0000000000000030 d ht_bucket_html4_03C
00000000006c0760 0000000000000030 d ht_bucket_html4_040
00000000006c0720 0000000000000030 d ht_bucket_html4_046
00000000006c06e0 0000000000000030 d ht_bucket_html4_047
00000000006c06a0 0000000000000030 d ht_bucket_html4_04B
00000000006c0660 0000000000000030 d ht_bucket_html4_04F
00000000006c0620 0000000000000030 d ht_bucket_html4_050
00000000006c05e0 0000000000000030 d ht_bucket_html4_051
00000000006c0540 0000000000000030 d ht_bucket_html4_056
00000000006c0500 0000000000000030 d ht_bucket_html4_059
00000000006c04c0 0000000000000030 d ht_bucket_html4_05B
00000000006c0480 0000000000000030 d ht_bucket_html4_05C
00000000006c0440 0000000000000030 d ht_bucket_html4_064
00000000006c0400 0000000000000030 d ht_bucket_html4_067
00000000006c03c0 0000000000000030 d ht_bucket_html4_069
00000000006c0380 0000000000000030 d ht_bucket_html4_071
00000000006c0340 0000000000000030 d ht_bucket_html4_072
00000000006c0300 0000000000000030 d ht_bucket_html4_074
00000000006c02c0 0000000000000030 d ht_bucket_html4_076
00000000006c0280 0000000000000030 d ht_bucket_html4_078
00000000006c0240 0000000000000030 d ht_bucket_html4_07C
00000000006c0200 0000000000000030 d ht_bucket_html4_089
00000000006c01c0 0000000000000030 d ht_bucket_html4_08D
00000000006c00c0 0000000000000030 d ht_bucket_html4_092
00000000006c0080 0000000000000030 d ht_bucket_html4_096
00000000006c0040 0000000000000030 d ht_bucket_html4_098
00000000006bffa0 0000000000000030 d ht_bucket_html4_09D
00000000006bff60 0000000000000030 d ht_bucket_html4_0A0
00000000006bff20 0000000000000030 d ht_bucket_html4_0A5
00000000006bfe20 0000000000000030 d ht_bucket_html4_0AA
00000000006bfd80 0000000000000030 d ht_bucket_html4_0B0
00000000006bfc80 0000000000000030 d ht_bucket_html4_0B8
00000000006bfc40 0000000000000030 d ht_bucket_html4_0B9
00000000006bfc00 0000000000000030 d ht_bucket_html4_0BA
00000000006bfbc0 0000000000000030 d ht_bucket_html4_0BC
00000000006bfb80 0000000000000030 d ht_bucket_html4_0C2
00000000006bfb40 0000000000000030 d ht_bucket_html4_0C4
00000000006bfb00 0000000000000030 d ht_bucket_html4_0C5
00000000006bfa60 0000000000000030 d ht_bucket_html4_0C7
00000000006bf900 0000000000000030 d ht_bucket_html4_0D8
00000000006bf8c0 0000000000000030 d ht_bucket_html4_0DB
00000000006bf880 0000000000000030 d ht_bucket_html4_0DC
00000000006bf840 0000000000000030 d ht_bucket_html4_0E2
00000000006bf800 0000000000000030 d ht_bucket_html4_0E5
00000000006bf7c0 0000000000000030 d ht_bucket_html4_0E6
00000000006bf720 0000000000000030 d ht_bucket_html4_0EB
00000000006bf6e0 0000000000000030 d ht_bucket_html4_0EE
00000000006bf6a0 0000000000000030 d ht_bucket_html4_0F9
00000000006bf660 0000000000000030 d ht_bucket_html4_0FA
00000000006bf5c0 0000000000000030 d ht_bucket_html4_0FE
00000000006bf580 0000000000000030 d ht_bucket_html4_0FF
00000000006bf540 0000000000000030 d ht_bucket_html4_100
00000000006bf500 0000000000000030 d ht_bucket_html4_105
00000000006bf460 0000000000000030 d ht_bucket_html4_108
00000000006bf420 0000000000000030 d ht_bucket_html4_10D
00000000006bf3e0 0000000000000030 d ht_bucket_html4_10E
00000000006bf3a0 0000000000000030 d ht_bucket_html4_10F
00000000006bf300 0000000000000030 d ht_bucket_html4_113
00000000006bf2c0 0000000000000030 d ht_bucket_html4_117
00000000006bf280 0000000000000030 d ht_bucket_html4_118
00000000006bf240 0000000000000030 d ht_bucket_html4_11A
00000000006bf1a0 0000000000000030 d ht_bucket_html4_11E
00000000006bf160 0000000000000030 d ht_bucket_html4_11F
00000000006bf120 0000000000000030 d ht_bucket_html4_125
00000000006bf0e0 0000000000000030 d ht_bucket_html4_126
00000000006bf0a0 0000000000000030 d ht_bucket_html4_12E
00000000006bf000 0000000000000030 d ht_bucket_html4_135
00000000006befc0 0000000000000030 d ht_bucket_html4_136
00000000006bef80 0000000000000030 d ht_bucket_html4_138
00000000006bef40 0000000000000030 d ht_bucket_html4_13A
00000000006bef00 0000000000000030 d ht_bucket_html4_13F
00000000006beec0 0000000000000030 d ht_bucket_html4_143
00000000006bee80 0000000000000030 d ht_bucket_html4_149
00000000006bee40 0000000000000030 d ht_bucket_html4_14B
00000000006beda0 0000000000000030 d ht_bucket_html4_150
00000000006bed60 0000000000000030 d ht_bucket_html4_153
00000000006bed20 0000000000000030 d ht_bucket_html4_154
00000000006bece0 0000000000000030 d ht_bucket_html4_155
00000000006beca0 0000000000000030 d ht_bucket_html4_156
00000000006bec60 0000000000000030 d ht_bucket_html4_158
00000000006bec20 0000000000000030 d ht_bucket_html4_15C
00000000006bebe0 0000000000000030 d ht_bucket_html4_15F
00000000006beba0 0000000000000030 d ht_bucket_html4_160
00000000006beb60 0000000000000030 d ht_bucket_html4_163
00000000006beb20 0000000000000030 d ht_bucket_html4_166
00000000006beae0 0000000000000030 d ht_bucket_html4_16B
00000000006beaa0 0000000000000030 d ht_bucket_html4_16C
00000000006bea60 0000000000000030 d ht_bucket_html4_16E
00000000006be960 0000000000000030 d ht_bucket_html4_173
00000000006be920 0000000000000030 d ht_bucket_html4_175
00000000006be8e0 0000000000000030 d ht_bucket_html4_176
00000000006be8a0 0000000000000030 d ht_bucket_html4_178
00000000006be860 0000000000000030 d ht_bucket_html4_17C
00000000006be7c0 0000000000000030 d ht_bucket_html4_181
00000000006be780 0000000000000030 d ht_bucket_html4_183
00000000006be680 0000000000000030 d ht_bucket_html4_18C
00000000006be640 0000000000000030 d ht_bucket_html4_18D
00000000006be600 0000000000000030 d ht_bucket_html4_18E
00000000006be540 0000000000000030 d ht_bucket_html4_194
00000000006be500 0000000000000030 d ht_bucket_html4_196
00000000006be4c0 0000000000000030 d ht_bucket_html4_197
00000000006be3c0 0000000000000030 d ht_bucket_html4_19D
00000000006be2c0 0000000000000030 d ht_bucket_html4_1A1
00000000006be220 0000000000000030 d ht_bucket_html4_1A4
00000000006be180 0000000000000030 d ht_bucket_html4_1A7
00000000006be140 0000000000000030 d ht_bucket_html4_1A8
00000000006be100 0000000000000030 d ht_bucket_html4_1A9
00000000006be0c0 0000000000000030 d ht_bucket_html4_1AC
00000000006be020 0000000000000030 d ht_bucket_html4_1AF
00000000006bdfe0 0000000000000030 d ht_bucket_html4_1B0
00000000006bde80 0000000000000030 d ht_bucket_html4_1BE
00000000006bdde0 0000000000000030 d ht_bucket_html4_1C2
00000000006bdda0 0000000000000030 d ht_bucket_html4_1C4
00000000006bdd60 0000000000000030 d ht_bucket_html4_1C9
00000000006bdc60 0000000000000030 d ht_bucket_html4_1D0
00000000006bdc20 0000000000000030 d ht_bucket_html4_1D4
00000000006bdbe0 0000000000000030 d ht_bucket_html4_1D7
00000000006bdba0 0000000000000030 d ht_bucket_html4_1D8
00000000006bdb60 0000000000000030 d ht_bucket_html4_1D9
00000000006bdb20 0000000000000030 d ht_bucket_html4_1DD
00000000006bda20 0000000000000030 d ht_bucket_html4_1E8
00000000006bd9e0 0000000000000030 d ht_bucket_html4_1E9
00000000006bd9a0 0000000000000030 d ht_bucket_html4_1ED
00000000006bd960 0000000000000030 d ht_bucket_html4_1EF
00000000006bd920 0000000000000030 d ht_bucket_html4_1F1
00000000006bd8e0 0000000000000030 d ht_bucket_html4_1F2
00000000006bd8a0 0000000000000030 d ht_bucket_html4_1F3
00000000006bd860 0000000000000030 d ht_bucket_html4_1F4
00000000006bd820 0000000000000030 d ht_bucket_html4_1F6
00000000006bd7e0 0000000000000030 d ht_bucket_html4_1F8
00000000006bd7a0 0000000000000030 d ht_bucket_html4_1F9
00000000006ee3a0 0000000000000030 d ht_bucket_html5_003
00000000006ee360 0000000000000030 d ht_bucket_html5_005
00000000006ee2c0 0000000000000030 d ht_bucket_html5_00D
00000000006ee280 0000000000000030 d ht_bucket_html5_00F
00000000006ee240 0000000000000030 d ht_bucket_html5_017
00000000006ee200 0000000000000030 d ht_bucket_html5_020
00000000006ee160 0000000000000030 d ht_bucket_html5_024
00000000006ee0c0 0000000000000030 d ht_bucket_html5_028
00000000006ee080 0000000000000030 d ht_bucket_html5_029
00000000006ee040 0000000000000030 d ht_bucket_html5_02A
00000000006edfa0 0000000000000030 d ht_bucket_html5_02C
00000000006edf60 0000000000000030 d ht_bucket_html5_02E
00000000006edec0 0000000000000030 d ht_bucket_html5_034
00000000006ede80 0000000000000030 d ht_bucket_html5_038
00000000006edde0 0000000000000030 d ht_bucket_html5_047
00000000006edda0 0000000000000030 d ht_bucket_html5_04C
00000000006edd00 0000000000000030 d ht_bucket_html5_051
00000000006edcc0 0000000000000030 d ht_bucket_html5_059
00000000006edc20 0000000000000030 d ht_bucket_html5_05F
00000000006edbe0 0000000000000030 d ht_bucket_html5_060
00000000006edba0 0000000000000030 d ht_bucket_html5_061
00000000006edb60 0000000000000030 d ht_bucket_html5_063
00000000006edb20 0000000000000030 d ht_bucket_html5_064
00000000006edae0 0000000000000030 d ht_bucket_html5_065
00000000006edaa0 0000000000000030 d ht_bucket_html5_069
00000000006eda60 0000000000000030 d ht_bucket_html5_06A
00000000006eda20 0000000000000030 d ht_bucket_html5_06D
00000000006ed980 0000000000000030 d ht_bucket_html5_06F
00000000006ed940 0000000000000030 d ht_bucket_html5_071
00000000006ed900 0000000000000030 d ht_bucket_html5_073
00000000006ed8c0 0000000000000030 d ht_bucket_html5_074
00000000006ed880 0000000000000030 d ht_bucket_html5_07A
00000000006ed840 0000000000000030 d ht_bucket_html5_07B
00000000006ed800 0000000000000030 d ht_bucket_html5_07C
00000000006ed7c0 0000000000000030 d ht_bucket_html5_07F
00000000006ed780 0000000000000030 d ht_bucket_html5_082
00000000006ed740 0000000000000030 d ht_bucket_html5_084
00000000006ed700 0000000000000030 d ht_bucket_html5_085
00000000006ed6c0 0000000000000030 d ht_bucket_html5_086
00000000006ed680 0000000000000030 d ht_bucket_html5_088
00000000006ed640 0000000000000030 d ht_bucket_html5_089
00000000006ed600 0000000000000030 d ht_bucket_html5_08C
00000000006ed5c0 0000000000000030 d ht_bucket_html5_08E
00000000006ed4c0 0000000000000030 d ht_bucket_html5_097
00000000006ed420 0000000000000030 d ht_bucket_html5_0A4
00000000006ed3e0 0000000000000030 d ht_bucket_html5_0A6
00000000006ed3a0 0000000000000030 d ht_bucket_html5_0AB
00000000006ed360 0000000000000030 d ht_bucket_html5_0AC
00000000006ed320 0000000000000030 d ht_bucket_html5_0AD
00000000006ed2e0 0000000000000030 d ht_bucket_html5_0AE
00000000006ed2a0 0000000000000030 d ht_bucket_html5_0AF
00000000006ed200 0000000000000030 d ht_bucket_html5_0B2
00000000006ed0a0 0000000000000030 d ht_bucket_html5_0C0
00000000006ed060 0000000000000030 d ht_bucket_html5_0C4
00000000006ecfc0 0000000000000030 d ht_bucket_html5_0D1
00000000006ecf80 0000000000000030 d ht_bucket_html5_0D2
00000000006ecf40 0000000000000030 d ht_bucket_html5_0D3
00000000006ecf00 0000000000000030 d ht_bucket_html5_0D5
00000000006ecec0 0000000000000030 d ht_bucket_html5_0DF
00000000006ece80 0000000000000030 d ht_bucket_html5_0E5
00000000006ecde0 0000000000000030 d ht_bucket_html5_0E8
00000000006ecda0 0000000000000030 d ht_bucket_html5_0EC
00000000006ecd60 0000000000000030 d ht_bucket_html5_0EF
00000000006ecd20 0000000000000030 d ht_bucket_html5_0F3
00000000006ecce0 0000000000000030 d ht_bucket_html5_0F4
00000000006ecca0 0000000000000030 d ht_bucket_html5_0FA
00000000006ecc60 0000000000000030 d ht_bucket_html5_0FB
00000000006ecc20 0000000000000030 d ht_bucket_html5_0FD
00000000006ecbe0 0000000000000030 d ht_bucket_html5_0FE
00000000006ecba0 0000000000000030 d ht_bucket_html5_100
00000000006ecb60 0000000000000030 d ht_bucket_html5_101
00000000006ecac0 0000000000000030 d ht_bucket_html5_105
00000000006eca80 0000000000000030 d ht_bucket_html5_106
00000000006eca40 0000000000000030 d ht_bucket_html5_109
00000000006eca00 0000000000000030 d ht_bucket_html5_10A
00000000006ec9c0 0000000000000030 d ht_bucket_html5_10B
00000000006ec980 0000000000000030 d ht_bucket_html5_10D
00000000006ec820 0000000000000030 d ht_bucket_html5_111
00000000006ec7e0 0000000000000030 d ht_bucket_html5_113
00000000006ec7a0 0000000000000030 d ht_bucket_html5_116
00000000006ec760 0000000000000030 d ht_bucket_html5_11B
00000000006ec6c0 0000000000000030 d ht_bucket_html5_11E
00000000006ec680 0000000000000030 d ht_bucket_html5_121
00000000006ec640 0000000000000030 d ht_bucket_html5_124
00000000006ec600 0000000000000030 d ht_bucket_html5_129
00000000006ec5c0 0000000000000030 d ht_bucket_html5_12A
00000000006ec4c0 0000000000000030 d ht_bucket_html5_12F
00000000006ec480 0000000000000030 d ht_bucket_html5_130
00000000006ec440 0000000000000030 d ht_bucket_html5_134
00000000006ec400 0000000000000030 d ht_bucket_html5_135
00000000006ec3c0 0000000000000030 d ht_bucket_html5_137
00000000006ec2c0 0000000000000030 d ht_bucket_html5_145
00000000006ec280 0000000000000030 d ht_bucket_html5_147
00000000006ec240 0000000000000030 d ht_bucket_html5_149
00000000006ec200 0000000000000030 d ht_bucket_html5_14B
00000000006ec1c0 0000000000000030 d ht_bucket_html5_14C
00000000006ec180 0000000000000030 d ht_bucket_html5_14E
00000000006ec140 0000000000000030 d ht_bucket_html5_14F
00000000006ec0a0 0000000000000030 d ht_bucket_html5_159
00000000006ec060 0000000000000030 d ht_bucket_html5_15B
00000000006ec020 0000000000000030 d ht_bucket_html5_15E
00000000006ebfe0 0000000000000030 d ht_bucket_html5_15F
00000000006ebfa0 0000000000000030 d ht_bucket_html5_161
00000000006ebf60 0000000000000030 d ht_bucket_html5_164
00000000006ebf20 0000000000000030 d ht_bucket_html5_165
00000000006ebee0 0000000000000030 d ht_bucket_html5_168
00000000006ebea0 0000000000000030 d ht_bucket_html5_16A
00000000006ebe60 0000000000000030 d ht_bucket_html5_170
00000000006ebdc0 0000000000000030 d ht_bucket_html5_17A
00000000006ebd80 0000000000000030 d ht_bucket_html5_17B
00000000006ebd40 0000000000000030 d ht_bucket_html5_17C
00000000006ebd00 0000000000000030 d ht_bucket_html5_17F
00000000006ebcc0 0000000000000030 d ht_bucket_html5_181
00000000006ebc80 0000000000000030 d ht_bucket_html5_189
00000000006ebc40 0000000000000030 d ht_bucket_html5_18B
00000000006ebba0 0000000000000030 d ht_bucket_html5_18E
00000000006ebb60 0000000000000030 d ht_bucket_html5_18F
00000000006ebb20 0000000000000030 d ht_bucket_html5_190
00000000006ebae0 0000000000000030 d ht_bucket_html5_191
00000000006ebaa0 0000000000000030 d ht_bucket_html5_193
00000000006eba60 0000000000000030 d ht_bucket_html5_195
00000000006eba20 0000000000000030 d ht_bucket_html5_19A
00000000006eb9e0 0000000000000030 d ht_bucket_html5_19C
00000000006eb940 0000000000000030 d ht_bucket_html5_1A0
00000000006eb900 0000000000000030 d ht_bucket_html5_1A1
00000000006eb860 0000000000000030 d ht_bucket_html5_1A3
00000000006eb820 0000000000000030 d ht_bucket_html5_1A4
00000000006eb7e0 0000000000000030 d ht_bucket_html5_1A5
00000000006eb7a0 0000000000000030 d ht_bucket_html5_1A8
00000000006eb760 0000000000000030 d ht_bucket_html5_1AB
00000000006eb720 0000000000000030 d ht_bucket_html5_1AC
00000000006eb680 0000000000000030 d ht_bucket_html5_1AE
00000000006eb640 0000000000000030 d ht_bucket_html5_1AF
00000000006eb600 0000000000000030 d ht_bucket_html5_1B0
00000000006eb5c0 0000000000000030 d ht_bucket_html5_1B2
00000000006eb580 0000000000000030 d ht_bucket_html5_1B5
00000000006eb540 0000000000000030 d ht_bucket_html5_1B9
00000000006eb500 0000000000000030 d ht_bucket_html5_1BD
00000000006eb4c0 0000000000000030 d ht_bucket_html5_1BE
00000000006eb480 0000000000000030 d ht_bucket_html5_1C0
00000000006eb440 0000000000000030 d ht_bucket_html5_1C1
00000000006eb400 0000000000000030 d ht_bucket_html5_1C4
00000000006eb3c0 0000000000000030 d ht_bucket_html5_1C6
00000000006eb380 0000000000000030 d ht_bucket_html5_1C9
00000000006eb340 0000000000000030 d ht_bucket_html5_1CA
00000000006eb300 0000000000000030 d ht_bucket_html5_1CD
00000000006eb2c0 0000000000000030 d ht_bucket_html5_1CE
00000000006eb280 0000000000000030 d ht_bucket_html5_1D0
00000000006eb240 0000000000000030 d ht_bucket_html5_1D1
00000000006eb200 0000000000000030 d ht_bucket_html5_1D2
00000000006eb160 0000000000000030 d ht_bucket_html5_1D5
00000000006eb120 0000000000000030 d ht_bucket_html5_1D6
00000000006eb0e0 0000000000000030 d ht_bucket_html5_1D8
00000000006eb0a0 0000000000000030 d ht_bucket_html5_1D9
00000000006eb060 0000000000000030 d ht_bucket_html5_1DA
00000000006eb020 0000000000000030 d ht_bucket_html5_1DF
00000000006eaf80 0000000000000030 d ht_bucket_html5_1E1
00000000006eaf40 0000000000000030 d ht_bucket_html5_1E5
00000000006eaf00 0000000000000030 d ht_bucket_html5_1E6
00000000006eae60 0000000000000030 d ht_bucket_html5_1E8
00000000006eae20 0000000000000030 d ht_bucket_html5_1EB
00000000006ead20 0000000000000030 d ht_bucket_html5_1F2
00000000006eace0 0000000000000030 d ht_bucket_html5_1F4
00000000006eac40 0000000000000030 d ht_bucket_html5_1F9
00000000006eab40 0000000000000030 d ht_bucket_html5_1FE
00000000006eab00 0000000000000030 d ht_bucket_html5_1FF
00000000006eaac0 0000000000000030 d ht_bucket_html5_205
00000000006eaa20 0000000000000030 d ht_bucket_html5_20E
00000000006ea9e0 0000000000000030 d ht_bucket_html5_212
00000000006ea9a0 0000000000000030 d ht_bucket_html5_213
00000000006ea900 0000000000000030 d ht_bucket_html5_21D
00000000006ea8c0 0000000000000030 d ht_bucket_html5_220
00000000006ea820 0000000000000030 d ht_bucket_html5_227
00000000006ea7e0 0000000000000030 d ht_bucket_html5_229
00000000006ea740 0000000000000030 d ht_bucket_html5_22C
00000000006ea700 0000000000000030 d ht_bucket_html5_22D
00000000006ea660 0000000000000030 d ht_bucket_html5_230
00000000006ea620 0000000000000030 d ht_bucket_html5_232
00000000006ea5e0 0000000000000030 d ht_bucket_html5_234
00000000006ea540 0000000000000030 d ht_bucket_html5_23C
00000000006ea500 0000000000000030 d ht_bucket_html5_23D
00000000006ea4c0 0000000000000030 d ht_bucket_html5_23E
00000000006ea420 0000000000000030 d ht_bucket_html5_241
00000000006ea3e0 0000000000000030 d ht_bucket_html5_242
00000000006ea3a0 0000000000000030 d ht_bucket_html5_246
00000000006ea360 0000000000000030 d ht_bucket_html5_249
00000000006ea240 0000000000000030 d ht_bucket_html5_24D
00000000006ea200 0000000000000030 d ht_bucket_html5_251
00000000006ea1c0 0000000000000030 d ht_bucket_html5_252
00000000006ea180 0000000000000030 d ht_bucket_html5_257
00000000006ea140 0000000000000030 d ht_bucket_html5_25A
00000000006ea100 0000000000000030 d ht_bucket_html5_25B
00000000006ea000 0000000000000030 d ht_bucket_html5_263
00000000006e9fc0 0000000000000030 d ht_bucket_html5_26A
00000000006e9f20 0000000000000030 d ht_bucket_html5_26E
00000000006e9ee0 0000000000000030 d ht_bucket_html5_274
00000000006e9ea0 0000000000000030 d ht_bucket_html5_277
00000000006e9d40 0000000000000030 d ht_bucket_html5_283
00000000006e9d00 0000000000000030 d ht_bucket_html5_28A
00000000006e9cc0 0000000000000030 d ht_bucket_html5_294
00000000006e9c80 0000000000000030 d ht_bucket_html5_297
00000000006e9c40 0000000000000030 d ht_bucket_html5_298
00000000006e9c00 0000000000000030 d ht_bucket_html5_29D
00000000006e9b00 0000000000000030 d ht_bucket_html5_2A9
00000000006e9a60 0000000000000030 d ht_bucket_html5_2B1
00000000006e9a20 0000000000000030 d ht_bucket_html5_2B2
00000000006e99e0 0000000000000030 d ht_bucket_html5_2B3
00000000006e9880 0000000000000030 d ht_bucket_html5_2C5
00000000006e9840 0000000000000030 d ht_bucket_html5_2CE
00000000006e9800 0000000000000030 d ht_bucket_html5_2CF
00000000006e97c0 0000000000000030 d ht_bucket_html5_2D3
00000000006e9780 0000000000000030 d ht_bucket_html5_2DA
00000000006e9680 0000000000000030 d ht_bucket_html5_2E3
00000000006e9640 0000000000000030 d ht_bucket_html5_2E4
00000000006e9600 0000000000000030 d ht_bucket_html5_2EB
00000000006e95c0 0000000000000030 d ht_bucket_html5_2EC
00000000006e9580 0000000000000030 d ht_bucket_html5_2EE
00000000006e9540 0000000000000030 d ht_bucket_html5_2F0
00000000006e9500 0000000000000030 d ht_bucket_html5_2F2
00000000006e94c0 0000000000000030 d ht_bucket_html5_2F8
00000000006e9420 0000000000000030 d ht_bucket_html5_301
00000000006e93e0 0000000000000030 d ht_bucket_html5_304
00000000006e9340 0000000000000030 d ht_bucket_html5_308
00000000006e92a0 0000000000000030 d ht_bucket_html5_30F
00000000006e9140 0000000000000030 d ht_bucket_html5_319
00000000006e9100 0000000000000030 d ht_bucket_html5_31A
00000000006e90c0 0000000000000030 d ht_bucket_html5_31B
00000000006e9080 0000000000000030 d ht_bucket_html5_326
00000000006e9040 0000000000000030 d ht_bucket_html5_329
00000000006e8fa0 0000000000000030 d ht_bucket_html5_32D
00000000006e8f60 0000000000000030 d ht_bucket_html5_330
00000000006e8f20 0000000000000030 d ht_bucket_html5_331
00000000006e8ee0 0000000000000030 d ht_bucket_html5_336
00000000006e8ea0 0000000000000030 d ht_bucket_html5_338
00000000006e8e60 0000000000000030 d ht_bucket_html5_33B
00000000006e8e20 0000000000000030 d ht_bucket_html5_33F
00000000006e8de0 0000000000000030 d ht_bucket_html5_340
00000000006e8da0 0000000000000030 d ht_bucket_html5_341
00000000006e8d60 0000000000000030 d ht_bucket_html5_347
00000000006e8cc0 0000000000000030 d ht_bucket_html5_350
00000000006e8c80 0000000000000030 d ht_bucket_html5_356
00000000006e8c40 0000000000000030 d ht_bucket_html5_358
00000000006e8ba0 0000000000000030 d ht_bucket_html5_35D
00000000006e8b00 0000000000000030 d ht_bucket_html5_361
00000000006e8a60 0000000000000030 d ht_bucket_html5_365
00000000006e89c0 0000000000000030 d ht_bucket_html5_369
00000000006e88c0 0000000000000030 d ht_bucket_html5_36D
00000000006e8880 0000000000000030 d ht_bucket_html5_36E
00000000006e87e0 0000000000000030 d ht_bucket_html5_372
00000000006e87a0 0000000000000030 d ht_bucket_html5_374
00000000006e8700 0000000000000030 d ht_bucket_html5_37A
00000000006e86c0 0000000000000030 d ht_bucket_html5_37C
00000000006e8680 0000000000000030 d ht_bucket_html5_37D
00000000006e8640 0000000000000030 d ht_bucket_html5_37E
00000000006e8600 0000000000000030 d ht_bucket_html5_37F
00000000006e85c0 0000000000000030 d ht_bucket_html5_380
00000000006e8580 0000000000000030 d ht_bucket_html5_382
00000000006e8540 0000000000000030 d ht_bucket_html5_383
00000000006e84a0 0000000000000030 d ht_bucket_html5_387
00000000006e8400 0000000000000030 d ht_bucket_html5_38D
00000000006e83c0 0000000000000030 d ht_bucket_html5_38E
00000000006e8380 0000000000000030 d ht_bucket_html5_391
00000000006e8340 0000000000000030 d ht_bucket_html5_394
00000000006e8300 0000000000000030 d ht_bucket_html5_397
00000000006e82c0 0000000000000030 d ht_bucket_html5_398
00000000006e8280 0000000000000030 d ht_bucket_html5_39C
00000000006e8240 0000000000000030 d ht_bucket_html5_39F
00000000006e81a0 0000000000000030 d ht_bucket_html5_3A1
00000000006e8160 0000000000000030 d ht_bucket_html5_3A4
00000000006e8120 0000000000000030 d ht_bucket_html5_3A5
00000000006e8080 0000000000000030 d ht_bucket_html5_3A7
00000000006e8040 0000000000000030 d ht_bucket_html5_3AC
00000000006e8000 0000000000000030 d ht_bucket_html5_3B2
00000000006e7fc0 0000000000000030 d ht_bucket_html5_3B4
00000000006e7f20 0000000000000030 d ht_bucket_html5_3C0
00000000006e7ee0 0000000000000030 d ht_bucket_html5_3C4
00000000006e7ea0 0000000000000030 d ht_bucket_html5_3C9
00000000006e7e60 0000000000000030 d ht_bucket_html5_3CD
00000000006e7e20 0000000000000030 d ht_bucket_html5_3D0
00000000006e7de0 0000000000000030 d ht_bucket_html5_3D3
00000000006e7da0 0000000000000030 d ht_bucket_html5_3D9
00000000006e7d60 0000000000000030 d ht_bucket_html5_3DE
00000000006e7d20 0000000000000030 d ht_bucket_html5_3E0
00000000006e7ce0 0000000000000030 d ht_bucket_html5_3E1
00000000006e7ca0 0000000000000030 d ht_bucket_html5_3E3
00000000006e7c60 0000000000000030 d ht_bucket_html5_3E4
00000000006e7c20 0000000000000030 d ht_bucket_html5_3E6
00000000006e7be0 0000000000000030 d ht_bucket_html5_3E9
00000000006e7b40 0000000000000030 d ht_bucket_html5_3F1
00000000006e7b00 0000000000000030 d ht_bucket_html5_3F2
00000000006e7ac0 0000000000000030 d ht_bucket_html5_3F7
00000000006e7a80 0000000000000030 d ht_bucket_html5_3FC
00000000006e7a40 0000000000000030 d ht_bucket_html5_3FE
00000000006e7a00 0000000000000030 d ht_bucket_html5_402
00000000006e79c0 0000000000000030 d ht_bucket_html5_405
00000000006e7980 0000000000000030 d ht_bucket_html5_407
00000000006e7940 0000000000000030 d ht_bucket_html5_409
00000000006e7900 0000000000000030 d ht_bucket_html5_40E
00000000006e7860 0000000000000030 d ht_bucket_html5_413
00000000006e77c0 0000000000000030 d ht_bucket_html5_41B
00000000006e7780 0000000000000030 d ht_bucket_html5_421
00000000006e7740 0000000000000030 d ht_bucket_html5_423
00000000006e7700 0000000000000030 d ht_bucket_html5_424
00000000006e76c0 0000000000000030 d ht_bucket_html5_425
00000000006e7620 0000000000000030 d ht_bucket_html5_429
00000000006e75e0 0000000000000030 d ht_bucket_html5_42C
00000000006e75a0 0000000000000030 d ht_bucket_html5_42F
00000000006e7560 0000000000000030 d ht_bucket_html5_430
00000000006e7520 0000000000000030 d ht_bucket_html5_432
00000000006e74e0 0000000000000030 d ht_bucket_html5_436
00000000006e74a0 0000000000000030 d ht_bucket_html5_439
00000000006e7460 0000000000000030 d ht_bucket_html5_43C
00000000006e7420 0000000000000030 d ht_bucket_html5_43D
00000000006e73e0 0000000000000030 d ht_bucket_html5_43E
00000000006e73a0 0000000000000030 d ht_bucket_html5_43F
00000000006e7360 0000000000000030 d ht_bucket_html5_440
00000000006e7320 0000000000000030 d ht_bucket_html5_441
00000000006e72e0 0000000000000030 d ht_bucket_html5_443
00000000006e7240 0000000000000030 d ht_bucket_html5_447
00000000006e7200 0000000000000030 d ht_bucket_html5_44A
00000000006e71c0 0000000000000030 d ht_bucket_html5_44F
00000000006e7180 0000000000000030 d ht_bucket_html5_450
00000000006e7140 0000000000000030 d ht_bucket_html5_454
00000000006e7100 0000000000000030 d ht_bucket_html5_457
00000000006e70c0 0000000000000030 d ht_bucket_html5_458
00000000006e7080 0000000000000030 d ht_bucket_html5_45D
00000000006e6fe0 0000000000000030 d ht_bucket_html5_465
00000000006e6fa0 0000000000000030 d ht_bucket_html5_466
00000000006e6f60 0000000000000030 d ht_bucket_html5_469
00000000006e6f20 0000000000000030 d ht_bucket_html5_46A
00000000006e6e80 0000000000000030 d ht_bucket_html5_46D
00000000006e6e40 0000000000000030 d ht_bucket_html5_46F
00000000006e6e00 0000000000000030 d ht_bucket_html5_470
00000000006e6dc0 0000000000000030 d ht_bucket_html5_471
00000000006e6d20 0000000000000030 d ht_bucket_html5_473
00000000006e6ce0 0000000000000030 d ht_bucket_html5_475
00000000006e6c40 0000000000000030 d ht_bucket_html5_47C
00000000006e6c00 0000000000000030 d ht_bucket_html5_47D
00000000006e6b60 0000000000000030 d ht_bucket_html5_480
00000000006e6b20 0000000000000030 d ht_bucket_html5_485
00000000006e6ae0 0000000000000030 d ht_bucket_html5_488
00000000006e6aa0 0000000000000030 d ht_bucket_html5_48C
00000000006e6a60 0000000000000030 d ht_bucket_html5_48E
00000000006e69c0 0000000000000030 d ht_bucket_html5_490
00000000006e6980 0000000000000030 d ht_bucket_html5_491
00000000006e6940 0000000000000030 d ht_bucket_html5_493
00000000006e68a0 0000000000000030 d ht_bucket_html5_496
00000000006e6800 0000000000000030 d ht_bucket_html5_499
00000000006e67c0 0000000000000030 d ht_bucket_html5_49F
00000000006e6780 0000000000000030 d ht_bucket_html5_4A2
00000000006e66e0 0000000000000030 d ht_bucket_html5_4A6
00000000006e6640 0000000000000030 d ht_bucket_html5_4AA
00000000006e6600 0000000000000030 d ht_bucket_html5_4AB
00000000006e65c0 0000000000000030 d ht_bucket_html5_4AE
00000000006e6580 0000000000000030 d ht_bucket_html5_4AF
00000000006e6540 0000000000000030 d ht_bucket_html5_4B2
00000000006e6500 0000000000000030 d ht_bucket_html5_4B6
00000000006e64c0 0000000000000030 d ht_bucket_html5_4B8
00000000006e6480 0000000000000030 d ht_bucket_html5_4BC
00000000006e6440 0000000000000030 d ht_bucket_html5_4C0
00000000006e6400 0000000000000030 d ht_bucket_html5_4C2
00000000006e63c0 0000000000000030 d ht_bucket_html5_4C3
00000000006e6380 0000000000000030 d ht_bucket_html5_4C4
00000000006e6340 0000000000000030 d ht_bucket_html5_4C5
00000000006e6300 0000000000000030 d ht_bucket_html5_4C8
00000000006e61a0 0000000000000030 d ht_bucket_html5_4D0
00000000006e6100 0000000000000030 d ht_bucket_html5_4D3
00000000006e60c0 0000000000000030 d ht_bucket_html5_4D4
00000000006e6020 0000000000000030 d ht_bucket_html5_4D8
00000000006e5fe0 0000000000000030 d ht_bucket_html5_4DA
00000000006e5fa0 0000000000000030 d ht_bucket_html5_4DE
00000000006e5f60 0000000000000030 d ht_bucket_html5_4DF
00000000006e5ec0 0000000000000030 d ht_bucket_html5_4E4
00000000006e5dc0 0000000000000030 d ht_bucket_html5_4E8
00000000006e5d20 0000000000000030 d ht_bucket_html5_4ED
00000000006e5ce0 0000000000000030 d ht_bucket_html5_4F1
00000000006e5ca0 0000000000000030 d ht_bucket_html5_4F7
00000000006e5c60 0000000000000030 d ht_bucket_html5_4F9
00000000006e5c20 0000000000000030 d ht_bucket_html5_4FB
00000000006e5b20 0000000000000030 d ht_bucket_html5_504
00000000006e59c0 0000000000000030 d ht_bucket_html5_50E
00000000006e5980 0000000000000030 d ht_bucket_html5_50F
00000000006e5940 0000000000000030 d ht_bucket_html5_513
00000000006e5900 0000000000000030 d ht_bucket_html5_516
00000000006e5860 0000000000000030 d ht_bucket_html5_519
00000000006e57c0 0000000000000030 d ht_bucket_html5_51C
00000000006e5780 0000000000000030 d ht_bucket_html5_524
00000000006e5740 0000000000000030 d ht_bucket_html5_525
00000000006e5640 0000000000000030 d ht_bucket_html5_530
00000000006e5600 0000000000000030 d ht_bucket_html5_532
00000000006e55c0 0000000000000030 d ht_bucket_html5_533
00000000006e5580 0000000000000030 d ht_bucket_html5_534
00000000006e5540 0000000000000030 d ht_bucket_html5_53B
00000000006e5440 0000000000000030 d ht_bucket_html5_542
00000000006e53a0 0000000000000030 d ht_bucket_html5_545
00000000006e5360 0000000000000030 d ht_bucket_html5_548
00000000006e5260 0000000000000030 d ht_bucket_html5_551
00000000006e51c0 0000000000000030 d ht_bucket_html5_55B
00000000006e5180 0000000000000030 d ht_bucket_html5_55D
00000000006e5140 0000000000000030 d ht_bucket_html5_55F
00000000006e5100 0000000000000030 d ht_bucket_html5_564
00000000006e50c0 0000000000000030 d ht_bucket_html5_565
00000000006e4fc0 0000000000000030 d ht_bucket_html5_56F
00000000006e4f80 0000000000000030 d ht_bucket_html5_570
00000000006e4f40 0000000000000030 d ht_bucket_html5_571
00000000006e4f00 0000000000000030 d ht_bucket_html5_572
00000000006e4ec0 0000000000000030 d ht_bucket_html5_575
00000000006e4e80 0000000000000030 d ht_bucket_html5_576
00000000006e4e40 0000000000000030 d ht_bucket_html5_577
00000000006e4e00 0000000000000030 d ht_bucket_html5_578
00000000006e4dc0 0000000000000030 d ht_bucket_html5_57A
00000000006e4d20 0000000000000030 d ht_bucket_html5_57C
00000000006e4ce0 0000000000000030 d ht_bucket_html5_580
00000000006e4ca0 0000000000000030 d ht_bucket_html5_582
00000000006e4c60 0000000000000030 d ht_bucket_html5_583
00000000006e4c20 0000000000000030 d ht_bucket_html5_586
00000000006e4be0 0000000000000030 d ht_bucket_html5_588
00000000006e4ba0 0000000000000030 d ht_bucket_html5_589
00000000006e4b60 0000000000000030 d ht_bucket_html5_58D
00000000006e4b20 0000000000000030 d ht_bucket_html5_58E
00000000006e4ae0 0000000000000030 d ht_bucket_html5_58F
00000000006e4aa0 0000000000000030 d ht_bucket_html5_590
00000000006e4a00 0000000000000030 d ht_bucket_html5_596
00000000006e49c0 0000000000000030 d ht_bucket_html5_59A
00000000006e4980 0000000000000030 d ht_bucket_html5_59D
00000000006e4940 0000000000000030 d ht_bucket_html5_59F
00000000006e4900 0000000000000030 d ht_bucket_html5_5A0
00000000006e48c0 0000000000000030 d ht_bucket_html5_5A3
00000000006e47c0 0000000000000030 d ht_bucket_html5_5AC
00000000006e4780 0000000000000030 d ht_bucket_html5_5AD
00000000006e4740 0000000000000030 d ht_bucket_html5_5AE
00000000006e4700 0000000000000030 d ht_bucket_html5_5B0
00000000006e46c0 0000000000000030 d ht_bucket_html5_5B1
00000000006e4620 0000000000000030 d ht_bucket_html5_5B6
00000000006e45e0 0000000000000030 d ht_bucket_html5_5B7
00000000006e45a0 0000000000000030 d ht_bucket_html5_5BB
00000000006e4560 0000000000000030 d ht_bucket_html5_5BC
00000000006e4520 0000000000000030 d ht_bucket_html5_5BD
00000000006e44e0 0000000000000030 d ht_bucket_html5_5BF
00000000006e44a0 0000000000000030 d ht_bucket_html5_5C0
00000000006e4460 0000000000000030 d ht_bucket_html5_5C1
00000000006e4420 0000000000000030 d ht_bucket_html5_5C2
00000000006e43e0 0000000000000030 d ht_bucket_html5_5C4
00000000006e4340 0000000000000030 d ht_bucket_html5_5D1
00000000006e4300 0000000000000030 d ht_bucket_html5_5D3
00000000006e42c0 0000000000000030 d ht_bucket_html5_5D5
00000000006e4280 0000000000000030 d ht_bucket_html5_5D8
00000000006e4240 0000000000000030 d ht_bucket_html5_5D9
00000000006e4200 0000000000000030 d ht_bucket_html5_5DB
00000000006e41c0 0000000000000030 d ht_bucket_html5_5DD
00000000006e4180 0000000000000030 d ht_bucket_html5_5DF
00000000006e4140 0000000000000030 d ht_bucket_html5_5E2
00000000006e4100 0000000000000030 d ht_bucket_html5_5E4
00000000006e40c0 0000000000000030 d ht_bucket_html5_5E7
00000000006e4080 0000000000000030 d ht_bucket_html5_5EA
00000000006e3fe0 0000000000000030 d ht_bucket_html5_5F0
00000000006e3fa0 0000000000000030 d ht_bucket_html5_5F3
00000000006e3f00 0000000000000030 d ht_bucket_html5_5F8
00000000006e3ec0 0000000000000030 d ht_bucket_html5_5FA
00000000006e3e80 0000000000000030 d ht_bucket_html5_5FD
00000000006e3de0 0000000000000030 d ht_bucket_html5_602
00000000006e3ce0 0000000000000030 d ht_bucket_html5_609
00000000006e3ca0 0000000000000030 d ht_bucket_html5_60D
00000000006e3c60 0000000000000030 d ht_bucket_html5_613
00000000006e3b60 0000000000000030 d ht_bucket_html5_61A
00000000006e3ac0 0000000000000030 d ht_bucket_html5_61F
00000000006e3a80 0000000000000030 d ht_bucket_html5_622
00000000006e3a40 0000000000000030 d ht_bucket_html5_624
00000000006e39a0 0000000000000030 d ht_bucket_html5_628
00000000006e3960 0000000000000030 d ht_bucket_html5_62C
00000000006e3920 0000000000000030 d ht_bucket_html5_630
00000000006e38e0 0000000000000030 d ht_bucket_html5_632
00000000006e38a0 0000000000000030 d ht_bucket_html5_636
00000000006e3860 0000000000000030 d ht_bucket_html5_63A
00000000006e3820 0000000000000030 d ht_bucket_html5_63C
00000000006e37e0 0000000000000030 d ht_bucket_html5_63D
00000000006e37a0 0000000000000030 d ht_bucket_html5_63E
00000000006e3760 0000000000000030 d ht_bucket_html5_641
00000000006e3720 0000000000000030 d ht_bucket_html5_642
00000000006e3680 0000000000000030 d ht_bucket_html5_646
00000000006e3640 0000000000000030 d ht_bucket_html5_647
00000000006e35a0 0000000000000030 d ht_bucket_html5_649
00000000006e3560 0000000000000030 d ht_bucket_html5_64A
00000000006e34c0 0000000000000030 d ht_bucket_html5_652
00000000006e3480 0000000000000030 d ht_bucket_html5_653
00000000006e3440 0000000000000030 d ht_bucket_html5_655
00000000006e3400 0000000000000030 d ht_bucket_html5_657
00000000006e3360 0000000000000030 d ht_bucket_html5_659
00000000006e3320 0000000000000030 d ht_bucket_html5_65C
00000000006e3280 0000000000000030 d ht_bucket_html5_660
00000000006e3240 0000000000000030 d ht_bucket_html5_669
00000000006e3200 0000000000000030 d ht_bucket_html5_670
00000000006e31c0 0000000000000030 d ht_bucket_html5_671
00000000006e3120 0000000000000030 d ht_bucket_html5_673
00000000006e30e0 0000000000000030 d ht_bucket_html5_676
00000000006e30a0 0000000000000030 d ht_bucket_html5_678
00000000006e3060 0000000000000030 d ht_bucket_html5_679
00000000006e2fc0 0000000000000030 d ht_bucket_html5_680
00000000006e2f80 0000000000000030 d ht_bucket_html5_682
00000000006e2e20 0000000000000030 d ht_bucket_html5_68C
00000000006e
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment