Skip to content

Commit 5236215

Browse files
author
Git for Windows Build Agent
committed
Update 4 packages
curl (8.8.0-1 -> 8.9.0-1) libcurl (8.8.0-1 -> 8.9.0-1) mingw-w64-i686-curl-openssl-alternate (8.8.0-2 -> 8.9.0-1) mingw-w64-i686-curl-winssl (8.8.0-2 -> 8.9.0-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent 041b774 commit 5236215

File tree

1,047 files changed

+131
-113
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,047 files changed

+131
-113
lines changed

etc/rebase.db.i386

0 Bytes
Binary file not shown.

mingw32/bin/curl-config

Lines changed: 12 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323
#
2424
###########################################################################
2525

26+
# shellcheck disable=SC2006
27+
2628
prefix="/mingw32"
2729
# Used in ${exec_prefix}/lib
2830
# shellcheck disable=SC2034
@@ -81,7 +83,7 @@ while test "$#" -gt 0; do
8183
;;
8284

8385
--feature|--features)
84-
for feature in AsynchDNS HSTS HTTPS-proxy IDN IPv6 Kerberos Largefile NTLM PSL SPNEGO SSL SSPI UnixSockets alt-svc brotli libz threadsafe zstd ""; do
86+
for feature in alt-svc AsynchDNS brotli HSTS HTTPS-proxy IDN IPv6 Kerberos Largefile libz NTLM PSL SPNEGO SSL SSPI threadsafe UnixSockets zstd ""; do
8587
test -n "$feature" && echo "$feature"
8688
done
8789
;;
@@ -94,23 +96,23 @@ while test "$#" -gt 0; do
9496
;;
9597

9698
--version)
97-
echo 'libcurl 8.8.0'
99+
echo 'libcurl 8.9.0'
98100
exit 0
99101
;;
100102

101103
--checkfor)
102104
checkfor=$2
103-
cmajor=$(echo "$checkfor" | cut -d. -f1)
104-
cminor=$(echo "$checkfor" | cut -d. -f2)
105+
cmajor=`echo "$checkfor" | cut -d. -f1`
106+
cminor=`echo "$checkfor" | cut -d. -f2`
105107
# when extracting the patch part we strip off everything after a
106108
# dash as that's used for things like version 1.2.3-pre1
107-
cpatch=$(echo "$checkfor" | cut -d. -f3 | cut -d- -f1)
109+
cpatch=`echo "$checkfor" | cut -d. -f3 | cut -d- -f1`
108110

109-
vmajor=$(echo '8.8.0' | cut -d. -f1)
110-
vminor=$(echo '8.8.0' | cut -d. -f2)
111+
vmajor=`echo '8.9.0' | cut -d. -f1`
112+
vminor=`echo '8.9.0' | cut -d. -f2`
111113
# when extracting the patch part we strip off everything after a
112114
# dash as that's used for things like version 1.2.3-pre1
113-
vpatch=$(echo '8.8.0' | cut -d. -f3 | cut -d- -f1)
115+
vpatch=`echo '8.9.0' | cut -d. -f3 | cut -d- -f1`
114116

115117
if test "$vmajor" -gt "$cmajor"; then
116118
exit 0
@@ -126,12 +128,12 @@ while test "$#" -gt 0; do
126128
fi
127129
fi
128130

129-
echo "requested version $checkfor is newer than existing 8.8.0"
131+
echo "requested version $checkfor is newer than existing 8.9.0"
130132
exit 1
131133
;;
132134

133135
--vernum)
134-
echo '080800'
136+
echo '080900'
135137
exit 0
136138
;;
137139

mingw32/bin/curl.exe

3.5 KB
Binary file not shown.

mingw32/bin/libcurl-4.dll

14 KB
Binary file not shown.

mingw32/bin/libcurl-openssl-4.dll

14 KB
Binary file not shown.

mingw32/include/curl/curl.h

Lines changed: 68 additions & 57 deletions
Large diffs are not rendered by default.

mingw32/include/curl/curlver.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@
3232

3333
/* This is the version number of the libcurl package from which this header
3434
file origins: */
35-
#define LIBCURL_VERSION "8.8.0"
35+
#define LIBCURL_VERSION "8.9.0"
3636

3737
/* The numeric version number is also available "in parts" by using these
3838
defines: */
3939
#define LIBCURL_VERSION_MAJOR 8
40-
#define LIBCURL_VERSION_MINOR 8
40+
#define LIBCURL_VERSION_MINOR 9
4141
#define LIBCURL_VERSION_PATCH 0
4242

4343
/* This is the numeric version of the libcurl version number, meant for easier
@@ -48,7 +48,7 @@
4848
4949
Where XX, YY and ZZ are the main version, release and patch numbers in
5050
hexadecimal (using 8 bits each). All three numbers are always represented
51-
using two digits. 1.2 would appear as "0x010200" while version 9.11.7
51+
using two digits. 1.2 would appear as "0x010200" while version 9.11.7
5252
appears as "0x090b07".
5353
5454
This 6-digit (24 bits) hexadecimal number does not show pre-release number,
@@ -59,7 +59,7 @@
5959
CURL_VERSION_BITS() macro since curl's own configure script greps for it
6060
and needs it to contain the full number.
6161
*/
62-
#define LIBCURL_VERSION_NUM 0x080800
62+
#define LIBCURL_VERSION_NUM 0x080900
6363

6464
/*
6565
* This is the date and time when the full source package was created. The
@@ -70,7 +70,7 @@
7070
*
7171
* "2007-11-23"
7272
*/
73-
#define LIBCURL_TIMESTAMP "2024-05-22"
73+
#define LIBCURL_TIMESTAMP "2024-07-24"
7474

7575
#define CURL_VERSION_BITS(x,y,z) ((x)<<16|(y)<<8|(z))
7676
#define CURL_AT_LEAST_VERSION(x,y,z) \

mingw32/include/curl/easy.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ CURL_EXTERN void curl_easy_cleanup(CURL *curl);
5050
*
5151
* Request internal information from the curl session with this function.
5252
* The third argument MUST be pointing to the specific type of the used option
53-
* which is documented in each man page of the option. The data pointed to
53+
* which is documented in each manpage of the option. The data pointed to
5454
* will be filled in accordingly and can be relied upon only if the function
5555
* returns CURLE_OK. This function is intended to get used *AFTER* a performed
5656
* transfer, all results from this function are undefined until the transfer

mingw32/include/curl/mprintf.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
extern "C" {
3333
#endif
3434

35-
#if (defined(__GNUC__) || defined(__clang__)) && \
35+
#if (defined(__GNUC__) || defined(__clang__) || \
36+
defined(__IAR_SYSTEMS_ICC__)) && \
3637
defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L) && \
3738
!defined(CURL_NO_FMT_CHECKS)
3839
#if defined(__MINGW32__) && !defined(__clang__)

mingw32/include/curl/multi.h

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
*
2525
***************************************************************************/
2626
/*
27-
This is an "external" header file. Don't give away any internals here!
27+
This is an "external" header file. Do not give away any internals here!
2828
2929
GOALS
3030
@@ -66,7 +66,7 @@ typedef enum {
6666
CURLM_OK,
6767
CURLM_BAD_HANDLE, /* the passed-in handle is not a valid CURLM handle */
6868
CURLM_BAD_EASY_HANDLE, /* an easy handle was not good/valid */
69-
CURLM_OUT_OF_MEMORY, /* if you ever get this, you're in deep sh*t */
69+
CURLM_OUT_OF_MEMORY, /* if you ever get this, you are in deep sh*t */
7070
CURLM_INTERNAL_ERROR, /* this is a libcurl bug */
7171
CURLM_BAD_SOCKET, /* the passed in socket argument did not match */
7272
CURLM_UNKNOWN_OPTION, /* curl_multi_setopt() with unsupported option */
@@ -109,7 +109,7 @@ struct CURLMsg {
109109
typedef struct CURLMsg CURLMsg;
110110

111111
/* Based on poll(2) structure and values.
112-
* We don't use pollfd and POLL* constants explicitly
112+
* We do not use pollfd and POLL* constants explicitly
113113
* to cover platforms without poll(). */
114114
#define CURL_WAIT_POLLIN 0x0001
115115
#define CURL_WAIT_POLLPRI 0x0002
@@ -205,7 +205,7 @@ CURL_EXTERN CURLMcode curl_multi_wakeup(CURLM *multi_handle);
205205
/*
206206
* Name: curl_multi_perform()
207207
*
208-
* Desc: When the app thinks there's data available for curl it calls this
208+
* Desc: When the app thinks there is data available for curl it calls this
209209
* function to read/write whatever there is right now. This returns
210210
* as soon as the reads and writes are done. This function does not
211211
* require that there actually is data available for reading or that
@@ -236,7 +236,7 @@ CURL_EXTERN CURLMcode curl_multi_cleanup(CURLM *multi_handle);
236236
/*
237237
* Name: curl_multi_info_read()
238238
*
239-
* Desc: Ask the multi handle if there's any messages/informationals from
239+
* Desc: Ask the multi handle if there is any messages/informationals from
240240
* the individual transfers. Messages include informationals such as
241241
* error code from the transfer or just the fact that a transfer is
242242
* completed. More details on these should be written down as well.
@@ -253,7 +253,7 @@ CURL_EXTERN CURLMcode curl_multi_cleanup(CURLM *multi_handle);
253253
* we will provide the particular "transfer handle" in that struct
254254
* and that should/could/would be used in subsequent
255255
* curl_easy_getinfo() calls (or similar). The point being that we
256-
* must never expose complex structs to applications, as then we'll
256+
* must never expose complex structs to applications, as then we will
257257
* undoubtably get backwards compatibility problems in the future.
258258
*
259259
* Returns: A pointer to a filled-in struct, or NULL if it failed or ran out
@@ -268,7 +268,7 @@ CURL_EXTERN CURLMsg *curl_multi_info_read(CURLM *multi_handle,
268268
* Name: curl_multi_strerror()
269269
*
270270
* Desc: The curl_multi_strerror function may be used to turn a CURLMcode
271-
* value into the equivalent human readable error string. This is
271+
* value into the equivalent human readable error string. This is
272272
* useful for printing meaningful error messages.
273273
*
274274
* Returns: A pointer to a null-terminated error message.
@@ -282,7 +282,7 @@ CURL_EXTERN const char *curl_multi_strerror(CURLMcode);
282282
* Desc: An alternative version of curl_multi_perform() that allows the
283283
* application to pass in one of the file descriptors that have been
284284
* detected to have "action" on them and let libcurl perform.
285-
* See man page for details.
285+
* See manpage for details.
286286
*/
287287
#define CURL_POLL_NONE 0
288288
#define CURL_POLL_IN 1

mingw32/include/curl/system.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* As a general rule, curl_off_t shall not be mapped to off_t. This rule shall
4747
* only be violated if off_t is the only 64-bit data type available and the
4848
* size of off_t is independent of large file support settings. Keep your
49-
* build on the safe side avoiding an off_t gating. If you have a 64-bit
49+
* build on the safe side avoiding an off_t gating. If you have a 64-bit
5050
* off_t then take for sure that another 64-bit data type exists, dig deeper
5151
* and you will find it.
5252
*
@@ -402,7 +402,7 @@
402402
# define CURL_PULL_SYS_SOCKET_H 1
403403

404404
#else
405-
/* generic "safe guess" on old 32 bit style */
405+
/* generic "safe guess" on old 32-bit style */
406406
# define CURL_TYPEOF_CURL_OFF_T long
407407
# define CURL_FORMAT_CURL_OFF_T "ld"
408408
# define CURL_FORMAT_CURL_OFF_TU "lu"

mingw32/include/curl/typecheck-gcc.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
* _curl_easy_setopt_err_sometype below
3535
*
3636
* NOTE: We use two nested 'if' statements here instead of the && operator, in
37-
* order to work around gcc bug #32061. It affects only gcc 4.3.x/4.4.x
37+
* order to work around gcc bug #32061. It affects only gcc 4.3.x/4.4.x
3838
* when compiling with -Wlogical-op.
3939
*
40-
* To add an option that uses the same type as an existing option, you'll just
41-
* need to extend the appropriate _curl_*_option macro
40+
* To add an option that uses the same type as an existing option, you will
41+
* just need to extend the appropriate _curl_*_option macro
4242
*/
4343
#define curl_easy_setopt(handle, option, value) \
4444
__extension__({ \
@@ -245,7 +245,7 @@ CURLWARNING(_curl_easy_getinfo_err_curl_off_t,
245245

246246
/* To add a new option to one of the groups, just add
247247
* (option) == CURLOPT_SOMETHING
248-
* to the or-expression. If the option takes a long or curl_off_t, you don't
248+
* to the or-expression. If the option takes a long or curl_off_t, you do not
249249
* have to do anything
250250
*/
251251

@@ -678,7 +678,7 @@ typedef CURLcode (*_curl_ssl_ctx_callback4)(CURL *, const void *,
678678
const void *);
679679
#ifdef HEADER_SSL_H
680680
/* hack: if we included OpenSSL's ssl.h, we know about SSL_CTX
681-
* this will of course break if we're included before OpenSSL headers...
681+
* this will of course break if we are included before OpenSSL headers...
682682
*/
683683
typedef CURLcode (*_curl_ssl_ctx_callback5)(CURL *, SSL_CTX *, void *);
684684
typedef CURLcode (*_curl_ssl_ctx_callback6)(CURL *, SSL_CTX *, const void *);

mingw32/include/curl/urlapi.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,11 +97,12 @@ typedef enum {
9797
#define CURLU_NO_AUTHORITY (1<<10) /* Allow empty authority when the
9898
scheme is unknown. */
9999
#define CURLU_ALLOW_SPACE (1<<11) /* Allow spaces in the URL */
100-
#define CURLU_PUNYCODE (1<<12) /* get the host name in punycode */
100+
#define CURLU_PUNYCODE (1<<12) /* get the hostname in punycode */
101101
#define CURLU_PUNY2IDN (1<<13) /* punycode => IDN conversion */
102102
#define CURLU_GET_EMPTY (1<<14) /* allow empty queries and fragments
103103
when extracting the URL or the
104104
components */
105+
#define CURLU_NO_GUESS_SCHEME (1<<15) /* for get, do not accept a guess */
105106

106107
typedef struct Curl_URL CURLU;
107108

@@ -142,7 +143,7 @@ CURL_EXTERN CURLUcode curl_url_set(CURLU *handle, CURLUPart what,
142143

143144
/*
144145
* curl_url_strerror() turns a CURLUcode value into the equivalent human
145-
* readable error string. This is useful for printing meaningful error
146+
* readable error string. This is useful for printing meaningful error
146147
* messages.
147148
*/
148149
CURL_EXTERN const char *curl_url_strerror(CURLUcode);

mingw32/lib/pkgconfig/libcurl.pc

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,20 +22,19 @@
2222
#
2323
###########################################################################
2424

25-
# This should most probably benefit from getting a "Requires:" field added
26-
# dynamically by configure.
27-
#
2825
prefix=/mingw32
2926
exec_prefix=${prefix}
3027
libdir=${exec_prefix}/lib
3128
includedir=${prefix}/include
3229
supported_protocols="DICT FILE FTP FTPS GOPHER GOPHERS HTTP HTTPS IMAP IMAPS IPFS IPNS LDAP LDAPS MQTT POP3 POP3S RTSP SCP SFTP SMB SMBS SMTP SMTPS TELNET TFTP"
33-
supported_features="AsynchDNS HSTS HTTPS-proxy IDN IPv6 Kerberos Largefile NTLM PSL SPNEGO SSL SSPI UnixSockets alt-svc brotli libz threadsafe zstd"
30+
supported_features="alt-svc AsynchDNS brotli HSTS HTTPS-proxy IDN IPv6 Kerberos Largefile libz NTLM PSL SPNEGO SSL SSPI threadsafe UnixSockets zstd"
3431

3532
Name: libcurl
3633
URL: https://curl.se/
3734
Description: Library to transfer files with ftp, http, etc.
38-
Version: 8.8.0
35+
Version: 8.9.0
36+
Requires:
37+
Requires.private: libidn2,zlib,libbrotlidec,libzstd,libpsl,libssh2
3938
Libs: -L${libdir} -lcurl
4039
Libs.private: -lidn2 -lssh2 -lssh2 -lpsl -lbcrypt -ladvapi32 -lcrypt32 -lwldap32 -lzstd -lzstd -lbrotlidec -lbrotlidec -lz -lws2_32
4140
Cflags: -I${includedir}
1.33 KB
Binary file not shown.

mingw32/share/man/man1/curl.1.gz

2.36 KB
Binary file not shown.
25 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
18 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
8 Bytes
Binary file not shown.
Binary file not shown.
29 Bytes
Binary file not shown.
Binary file not shown.
25 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
20 Bytes
Binary file not shown.
23 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
9 Bytes
Binary file not shown.
9 Bytes
Binary file not shown.
Binary file not shown.
31 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
22 Bytes
Binary file not shown.
27 Bytes
Binary file not shown.
29 Bytes
Binary file not shown.
22 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
29 Bytes
Binary file not shown.
31 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
32 Bytes
Binary file not shown.
27 Bytes
Binary file not shown.
27 Bytes
Binary file not shown.
36 Bytes
Binary file not shown.
Binary file not shown.
29 Bytes
Binary file not shown.
Binary file not shown.
30 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
23 Bytes
Binary file not shown.
22 Bytes
Binary file not shown.
30 Bytes
Binary file not shown.
Binary file not shown.
26 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
22 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
38 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
42 Bytes
Binary file not shown.
Binary file not shown.
-4 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-8 Bytes
Binary file not shown.
17 Bytes
Binary file not shown.
32 Bytes
Binary file not shown.
34 Bytes
Binary file not shown.
28 Bytes
Binary file not shown.
26 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
24 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
41 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
18 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
31 Bytes
Binary file not shown.
Binary file not shown.
25 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
30 Bytes
Binary file not shown.
25 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
39 Bytes
Binary file not shown.
19 Bytes
Binary file not shown.
33 Bytes
Binary file not shown.
5 Bytes
Binary file not shown.
33 Bytes
Binary file not shown.
27 Bytes
Binary file not shown.
13 Bytes
Binary file not shown.
Binary file not shown.
47 Bytes
Binary file not shown.
Binary file not shown.
26 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
29 Bytes
Binary file not shown.
22 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
23 Bytes
Binary file not shown.
20 Bytes
Binary file not shown.
22 Bytes
Binary file not shown.
31 Bytes
Binary file not shown.
23 Bytes
Binary file not shown.
Binary file not shown.
0 Bytes
Binary file not shown.
17 Bytes
Binary file not shown.
12 Bytes
Binary file not shown.
-46 Bytes
Binary file not shown.
39 Bytes
Binary file not shown.
33 Bytes
Binary file not shown.
Binary file not shown.
37 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
32 Bytes
Binary file not shown.
32 Bytes
Binary file not shown.
32 Bytes
Binary file not shown.
25 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 Bytes
Binary file not shown.
17 Bytes
Binary file not shown.
17 Bytes
Binary file not shown.
34 Bytes
Binary file not shown.
Binary file not shown.
19 Bytes
Binary file not shown.
6 Bytes
Binary file not shown.
27 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
37 Bytes
Binary file not shown.
31 Bytes
Binary file not shown.
9 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
23 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
25 Bytes
Binary file not shown.
22 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 Bytes
Binary file not shown.
37 Bytes
Binary file not shown.
Binary file not shown.
21 Bytes
Binary file not shown.
21 Bytes
Binary file not shown.
18 Bytes
Binary file not shown.
Binary file not shown.
18 Bytes
Binary file not shown.
Binary file not shown.
7 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
23 Bytes
Binary file not shown.
26 Bytes
Binary file not shown.
26 Bytes
Binary file not shown.
34 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
21 Bytes
Binary file not shown.
Binary file not shown.
40 Bytes
Binary file not shown.
Binary file not shown.
96 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
10 Bytes
Binary file not shown.
13 Bytes
Binary file not shown.
36 Bytes
Binary file not shown.
9 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
33 Bytes
Binary file not shown.
38 Bytes
Binary file not shown.
31 Bytes
Binary file not shown.
Binary file not shown.
23 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
19 Bytes
Binary file not shown.
24 Bytes
Binary file not shown.
-1 Bytes
Binary file not shown.
Binary file not shown.
18 Bytes
Binary file not shown.
30 Bytes
Binary file not shown.
36 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
21 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
22 Bytes
Binary file not shown.
16 Bytes
Binary file not shown.
106 Bytes
Binary file not shown.
31 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
35 Bytes
Binary file not shown.
37 Bytes
Binary file not shown.
26 Bytes
Binary file not shown.
25 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
27 Bytes
Binary file not shown.
23 Bytes
Binary file not shown.
Binary file not shown.
20 Bytes
Binary file not shown.
23 Bytes
Binary file not shown.
30 Bytes
Binary file not shown.
22 Bytes
Binary file not shown.
26 Bytes
Binary file not shown.
Binary file not shown.
8 Bytes
Binary file not shown.
27 Bytes
Binary file not shown.
14 Bytes
Binary file not shown.
29 Bytes
Binary file not shown.
Binary file not shown.
9 Bytes
Binary file not shown.
27 Bytes
Binary file not shown.
16 Bytes
Binary file not shown.
Binary file not shown.
26 Bytes
Binary file not shown.
23 Bytes
Binary file not shown.
-22 Bytes
Binary file not shown.
29 Bytes
Binary file not shown.
27 Bytes
Binary file not shown.
27 Bytes
Binary file not shown.
73 Bytes
Binary file not shown.
33 Bytes
Binary file not shown.
25 Bytes
Binary file not shown.
22 Bytes
Binary file not shown.
22 Bytes
Binary file not shown.
Binary file not shown.
5 Bytes
Binary file not shown.
16 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
17 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
3 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)