stirante / lol-client-java-api

Simple library which provides access to internal League of Legends Client API.
GNU General Public License v3.0
67 stars 14 forks source link

Getting Live Game Data returns null #38

Open unrealxqt opened 1 year ago

unrealxqt commented 1 year ago

Hi,

So I am trying to get live game data every time an event happens, however it returns null.

DO you have some tips on how to fix the issue?

This is my code:

//Initialize API
        ClientApi api = new ClientApi();
        api.addClientConnectionListener(new ClientConnectionListener() {
            @Override
            public void onClientConnected() {
                System.out.println("Client connected");
                try {
                    //open web socket
                    socket = api.openWebSocket();
                    //add event handler, which prints every received event
                    socket.setSocketListener(new ClientWebSocket.SocketListener() {
                        @Override
                        public void onEvent(ClientWebSocket.Event event) {
                            try {
                                ApiResponse<GameData> summ = api.executeLiveGet("/liveclientdata/allgamedata", GameData.class);
                                System.out.println(summ.getResponseObject());
                            } catch (IOException e) {
                                System.out.println(e);
                                throw new RuntimeException(e);
                            }
                        }

                        @Override
                        public void onClose(int code, String reason) {
                            System.out.println("Socket closed, reason: " + reason);
                        }
                    });
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }

            @Override
            public void onClientDisconnected() {
                System.out.println("Client disconnected");
                socket.close();
            }
        });
        //close socket when user enters something into console
        BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
        reader.readLine();
        api.stop();
        socket.close();

If I visit https://127.0.0.1:2999/liveclientdata/allgamedata in the browser, the data is present

Java logs:

Client connected 2023-06-05 18:40:27 DEBUG [WebSocketConnectReadThread-199] sun.util.logging.internal.LoggingProviderImpl$JULWrapper: X509Certificate: Alg:SHA256withRSA, Serial:61, Subject:CN=rclient, Issuer:EMAILADDRESS=gametechnologies@riotgames.com, CN=LoL Game Engineering Certificate Authority, OU=LoL Game Engineering, O=Riot Games, L=Santa Monica, ST=California, C=US, Key type:RSA, Length:2048, Cert Id:1433927858, Valid from:1/7/16, 9:03 PM, Valid until:1/4/26, 9:03 PM 2023-06-05 18:40:27 DEBUG [WebSocketConnectReadThread-199] sun.util.logging.internal.LoggingProviderImpl$JULWrapper: ValidationChain: -201846506, 1433927858 2023-06-05 18:40:27 DEBUG [WebSocketConnectReadThread-199] sun.util.logging.internal.LoggingProviderImpl$JULWrapper: TLSHandshake: localhost:61912, TLSv1.3, TLS_AES_256_GCM_SHA384, 1433927858 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: CookieSpec selected: default 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Auth cache not set in the context 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Connection request: [route: {s}->https://127.0.0.1:2999][total kept alive: 0; route allocated: 0 of 2; total allocated: 0 of 20] 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Connection leased: [id: 0][route: {s}->https://127.0.0.1:2999][total kept alive: 0; route allocated: 1 of 2; total allocated: 1 of 20] 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Opening connection {s}->https://127.0.0.1:2999 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Connecting to /127.0.0.1:2999 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Connecting socket to /127.0.0.1:2999 with timeout 5000 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Enabled protocols: [TLSv1.3, TLSv1.2] 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Enabled cipher suites:[TLS_AES_256_GCM_SHA384, TLS_AES_128_GCM_SHA256, TLS_CHACHA20_POLY1305_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDHE_RSA_WITH_CHACHA20_POLY1305_SHA256, TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_RSA_WITH_AES_256_GCM_SHA384, TLS_DHE_RSA_WITH_CHACHA20_POLY1305_SHA256, TLS_DHE_DSS_WITH_AES_256_GCM_SHA384, TLS_DHE_RSA_WITH_AES_128_GCM_SHA256, TLS_DHE_DSS_WITH_AES_128_GCM_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256, TLS_DHE_RSA_WITH_AES_256_CBC_SHA256, TLS_DHE_DSS_WITH_AES_256_CBC_SHA256, TLS_DHE_RSA_WITH_AES_128_CBC_SHA256, TLS_DHE_DSS_WITH_AES_128_CBC_SHA256, TLS_ECDH_ECDSA_WITH_AES_256_GCM_SHA384, TLS_ECDH_RSA_WITH_AES_256_GCM_SHA384, TLS_ECDH_ECDSA_WITH_AES_128_GCM_SHA256, TLS_ECDH_RSA_WITH_AES_128_GCM_SHA256, TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA384, TLS_ECDH_RSA_WITH_AES_256_CBC_SHA384, TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA256, TLS_ECDH_RSA_WITH_AES_128_CBC_SHA256, TLS_ECDHE_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA, TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_RSA_WITH_AES_256_CBC_SHA, TLS_DHE_DSS_WITH_AES_256_CBC_SHA, TLS_DHE_RSA_WITH_AES_128_CBC_SHA, TLS_DHE_DSS_WITH_AES_128_CBC_SHA, TLS_ECDH_ECDSA_WITH_AES_256_CBC_SHA, TLS_ECDH_RSA_WITH_AES_256_CBC_SHA, TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA, TLS_ECDH_RSA_WITH_AES_128_CBC_SHA, TLS_RSA_WITH_AES_256_GCM_SHA384, TLS_RSA_WITH_AES_128_GCM_SHA256, TLS_RSA_WITH_AES_256_CBC_SHA256, TLS_RSA_WITH_AES_128_CBC_SHA256, TLS_RSA_WITH_AES_256_CBC_SHA, TLS_RSA_WITH_AES_128_CBC_SHA, TLS_EMPTY_RENEGOTIATION_INFO_SCSV] 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Starting handshake 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] sun.util.logging.internal.LoggingProviderImpl$JULWrapper: ValidationChain: -201846506, 1433927858 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] sun.util.logging.internal.LoggingProviderImpl$JULWrapper: TLSHandshake: 127.0.0.1:2999, TLSv1.3, TLS_AES_256_GCM_SHA384, 1433927858 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Secure session established 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: negotiated protocol: TLSv1.3 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: negotiated cipher suite: TLS_AES_256_GCM_SHA384 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: peer principal: CN=rclient 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: peer alternative names: [127.0.0.1, localhost] 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: issuer principal: EMAILADDRESS=gametechnologies@riotgames.com, CN=LoL Game Engineering Certificate Authority, OU=LoL Game Engineering, O=Riot Games, L=Santa Monica, ST=California, C=US 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Connection established 127.0.0.1:50053<->127.0.0.1:2999 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0: set socket timeout to 5000 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Executing request GET /liveclientdata/allgamedata HTTP/1.1 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Proxy auth state: UNCHALLENGED 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> GET /liveclientdata/allgamedata HTTP/1.1 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> Authorization: Basic cmlvdDpDOUhjTWZhbEF6TU9iY3BjS2RNZ0Z3 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> Accept: */* 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> Host: 127.0.0.1:2999 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> Connection: Keep-Alive 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> User-Agent: Apache-HttpClient/4.5.3 (Java/11.0.16.1) 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> Accept-Encoding: gzip,deflate 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> "GET /liveclientdata/allgamedata HTTP/1.1[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> "Authorization: Basic cmlvdDpDOUhjTWZhbEF6TU9iY3BjS2RNZ0Z3[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> "Accept: */*[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> "Host: 127.0.0.1:2999[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> "Connection: Keep-Alive[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> "User-Agent: Apache-HttpClient/4.5.3 (Java/11.0.16.1)[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> "Accept-Encoding: gzip,deflate[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 >> "[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "HTTP/1.1 200 OK[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "vary: origin[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "content-length: 2165[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "content-type: application/json[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "content-encoding: gzip[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "access-control-allow-origin: https://127.0.0.1:2999[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "access-control-expose-headers: content-length, content-encoding[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[\r][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[0x1f][0x8b][0x8][0x0][0x0][0x0][0x0][0x0][0x4][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[0xd5]YIo[0xdc]6[0x14]>[0xbb]@[0xff][0x83][0xa0]K/[0xc5]@[0xfb][0xe2][0x9b][0xe3]q[0x9c][0x0]v[0xed][0xce]L[0x93]C[0x10][0x18][0x8c]D{[0x8]k[0x83][0x16];[0x83] [0xff][0xbd][0x8f][0x14]IQ[0xcb]x4q[0x1a][0xa0]9[0xd8]1[0xc9][0xf7][0xf4][0xbd][0xfd]=[0xf2][0xdb][0xef][0xbf][0x9d][0xe8]([0xaa][0xc9][0x13][0xbe]M[0xd0][0xe][0x97][0xfa][0xa9][0xf6][\r][0xd6][0xf1][0xb]IHMp%VN[0xf4][0xb][0xf9][0xb1][0xbd][0xbb][0xc2]O8[0x81]e[0xf7]OJ[0x4]d1[0xa9][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[0xf4][0x17]J1,[0xeb][0xeb][0x1a]e[0xb1]vV[0x91][0x18][0xeb][0xe2][0x8][0x89][0xe9][0xce][0xb2]DO8[[0xe6][0xcd][0x97][0x4][0xaf][0xb7]y-[0xb7]K[0xf4][0xbc][0xc4]UT[0x92][0xa2]&yF[0x8f]^[0xe2][0xc][0x97][0xa8][0xc6][0xf1][0x86][0x14]w[0xeb][0x2]'[0xc9][0xdd][0x90][0xfa]N%[0x11][0x1f][0xa2][0x9c][0xfa]pfqRH[0x98]P[0xdf][~[0xfa]-[0xaa]*[0xd0][0x13] b[0x1a][0x1a][0xb]{[0x85][0xd1]C[0x83][0xb5][0xfc]^k[0xe1]I[0x91]T[0x89][0x5][0x17][0x15][0xe4][0xb][0xe2][0xf2][0xe3]\[0xf9][0x97]B[0xa1]2R[0xa0][0xf][0xf5]&I[0x99][0xde][0xe5][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "EO[0xd8][0xbf][0x15]1[W8l[0xeb][0x82]d[0x19][0xc9][0x1e][0xb4][0xb3][0xaf][0xd3][0xc6]^[0xf3][0x3]R/G[0x98]Z[0xd0][0xbe][0xd6][0xd0][0x1d][0x9f]}[0x92][0xaf][0xf6]Kn[0xb]][0xf][0xbc][0xfc][0xe3][0x96][0x94][0x9][0x95]|[0x89]Q[0xbd][0x95][0xe2][0xa9]f[0x9d][0xa3][0xea][0x87]|[0x9c][0x11][0xbe]Vj[0xce]d[0x9f][0xc8][0x1f][0xf7][0x8b][0xbc]/[0xb0][0xdf]$y[0x1e]k[0xab][0xa6][0x9a][0x16][0xf7]mS[0xee][0xa4][0x1e][0x8e]03[0xa5]{[0xad][0xb0]-[0x8f][0x91][0xac][0xd4][0xbd][0xdb]P[0xd6][0xa3]-J[0xb]H.[0x90][0x9d]j%[0xbf]q?[0x7][0x96][0xa2]Qn,[0xc][0x1e][0xf9]|[0xe3]6f[0x9]R[0xd9]([0xd3][0x9c][0xa6]L[0xd3]4[0x17][0xae][0x1][0xff]|[0xcf][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[0xed][0xd0]q[0xb9][0xa7][0xe8][0x88][0x1e][0xb8][0x85][0xfc]UC[0x2][0x83]/[0xbe]MP[0xdd]g=8p[0x8b][0xcb][0x8]g[0xed][0x19]/d[0xff][0x82][0xc0][0xf0]C[0xc3]7[0x5][0x98][0xba]F[0xd1][0xe3][0x12][0xa5][0xe8][0x81][0xa2]tl{[0xe1][0xd1]O{[0xa6]a[0xbb][0xa6][0xeb][0xf5][0x8e][0xad]P[0xc6]N[0xb9][0xae][0x2][0x9a]1[0x80]<[0x8a]i"6[0x17][0x8e][0x15]x[0xa6]g8^h[0xb8][0xae][0xe9][0xb][0x6][0xf2][0xac][0xa9][0xce][0xf6][0xc2]3[0xa5]v[0xd8][0xc1]k[0xf4]@"E[0xd0]N[0x8e][0xee] [0xe4][0xf4][0xfa]|[0x8b][0xb2][0x88][0xe2][0xee]/Kq,#\P[0xa9][0x3][0xc7]wL[0xcb]4B[0xee][0x80]z[0xd4][0x94]%([0xe6][0x1d]F[0x9][0x84][0xd8][0xa9]f9[0x8e][0xbd][0x0][0xb1][0xe1][0xb7][0xe9][0x18][0x9e]%[0xce]m[0xe1][0xc0]zKp[0x12][0x8f][0xcd]E[0xf7][0xea][0xed][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "?[0xe0]l[0x5][0xf5][0x4][0xb8][0xd8][0xb][0xd3][0xa6][0xca][0xb3]]+pC'[0xf4][0xb9][0xf6][0x12]r[0x8f][0xd7]5[0x1c][0x87]3[0xc6][0xc2][0xc][0xe8][0x19][0xb0][0xae][0xe9]Z[0xae][0xeb][0xdb][0x1]?[0x5]& [0xd1][0x15][0xae][0xb7][0x8]J[0xe5][0x8e][0x1d][0x15].[0xc3][0xb6][0x14]}[0x8c][0xc]?<0[0xa5]0vf[0x85]+[0x2][0xa9][0x3]j[0xac][0xb5]0)[\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[0xcb][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[0x82][0xc0][0xc]la[0xa8][0x14]}=[0xa8][0x95]4[0xc2][0xc2][0xe2][0x8e]a.,[0xf0]V[0xdb][0x0]k[0xbb]~ [0x1c]+O3[0xf2][0x4][0x81][0xd1][0x93][0xa3][0xd8][0xee][0x12][0xa1]D[0x95][0xd2][0xc][0xa4][0xed][0xc5][0xf6][0x87]!][0x89][0xab][0xbc][0x1]W[0xbe]F[0x81][0x9f][0x9]f[0x92]4b[0xab]o[0x87][0xc0][0xa2][0xb2][0x99][0xbe][0xe9]y[0xa6][0xed][0xb];[0x88][0xb3][0x9b]]A[0xcd][0xa5][0x9f][0xfd]u[0xc6][0xf3][0x8a].[0xf6]>[0xa0][0xa4]a[0x1e][0xa5]~[0xa4][0xa2]m[0xc2][0x8]U[0x8d]3[0x14][0xb5][0xa6]r[0x17][0x86][0x9a][0x11]Z[0xef][0xba][0xcc][0x13][0x1a][0x13][0xae][0xf][0xaa]Yx[0xa1]k[0x9b][0xdc][0xaf][0xf4][0xfb]&IVM[0xa6][0xb6]C[0xe0]E[0xd0][0x96][0xc8][0xd5]O[0xac]~[0x9e][0xf0][0xde]`[0xd4][0x9][0xb5][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[0xd4]68-r[0x91][0x19]OtV"[0xc0][0xbb][0xb8]GAO1N[0x96][0x5].[0x1f][0xef][0xea]<OjhZ6[0x3].[0xe3]F[0x87][0xd1][0xf0][0x95]A/[0xd6][0xa3]k[0x81][0xf2][0xb6]f/[0xe0]MI[0x9a][0xb4][0x90][0xe9][0x9d]c[\r]![0xd5][0xb5][0xde][0x18]+=[0xdb][0x89]:[0x3]$#[0x98][0x87][0xee][0x8a][0x6]q|[0xaa][0x9d]%[0x88][0xa6][0x15]Yl$L[0xc3][0x99][0xf][0xd3]p[0x8e][0x84][0x9][0x4][0xf3][0x9e][0xe7]M[0xa1][0xc5]X[0xbb],[0x11]d=[0x89][0x88][0x9b][0xdd][0x9c][0x8d][0x91][0xf2]Y[0xe2][0x1][0x97][0x19][0x1a]U[0xe9][0xe6]![0xde][0xd0][0xea]G{XV[0xe1][0x87][0x90]M;[0x94]B[0x1c][0xf0]T[0xc6][0xe8][0xe6]~[0xc0]f[0x6][0xe6][0x1e][0xe1]L[0xd0]%FUSb[0xed]][0x93][0xd5]P[0xa3]%[0xc6]V[0xd1][0xa6]-[0xda][0x98][0x83][0xf1][0xb5][0xe1][0x9c][0x86][0x8c][0xe6][0xe0][0xee][0x93]r[0xe4][0xec][0xd7][0xe7][0x16][0x90][0xfe][0x88]wU[0x9d]g4[[0xed][0x9d]!h5[0xe9][0xa7][0x89]Q[0x96][0xf8][0x81]$[0xc1]H[0x94][0x9e][0x8]r[0xe9][0xe1][0x1c]!&[0x9f][0xa2]$)*w4[0xff][0x81]~^@[[0xe2][0x88]Ttl[0xe3][0x16][0x90][0xd0]y][0xdc][0xa7][0xff][0xaa][0xde]%X&9[0xdf]2d[0xe2][0xd8][0x3][0xbc]%P3[0x1c]#b[0xda][0x16][0xb0]+[0x1c][0xe5]Y<[0xb][0xf8]2OI[0xc6]:[0xb4][0x1]r[0xa8][0xb8]B[0x94]i[0x1f]!7$[0x87]i[0x9f][0x99]Dn[0xb4][0xf9]D"[0x87][0xc6]TT[0x9b]a]a.[\r][0xe5]{[0xb6]K[0xd3].[0xf7]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << HTTP/1.1 200 OK 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << vary: origin 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << content-length: 2165 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << content-type: application/json 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << content-encoding: gzip 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << access-control-allow-origin: https://127.0.0.1:2999 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << access-control-expose-headers: content-length, content-encoding 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Connection can be kept alive indefinitely 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << ":[0x8f][0xcf][0x94][0xb6]oOT[0x9][0xd6][0xb3][0xab][0x91][0x1d]#[0x18][0xd6]a4>[0xc0][0xd7][0x92]q9[0xad]K[0xe9][0x0][0x82]/k[0xaf]9S[0xf6][0xeb]3[0xfd][0xd9]jIO[0xf8][0xdd][0x83][0xd9][0xc2][0xd5][0xab]&M![0xb6]Jq[0xf7]p[0x8d]k[0x94]D9[0xf8]@[0xc3]'/[0x1d]:[0xba]t[0x85][0xa1][0x7][0x7][0xb0][0xe7]y[0x92][0x97][0xb4][0xfb][0xaf][0xcb][0x6][0x3][[0xc6]UGI[0xd2]^[0x84][0xd0][0x1d][0xa6][0xfa]6P[0xe5][0xcc] [0xb8][0xf7]F|[0x9d]To[0xe0][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[0xe3]T[0xbb]GI[0x85]y[0xb0][0x93][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[0xc6]A[0xda]N[0xf4][0x16]k[0x9c]J[0xd6]'][0xf1][0x8d]P[0xf6]OE#K9[0xc][0x15][0x16][0xc0][0x83]X[0x8][0xee]H&[0xb6] [0xd7][0xc1]jW[0x8e][0x7]S[0xe9][0xfb][0xec][0x9e]dP[0x1a][0xb5][0x8b][0x18]f[0x0][0xa9]z[0x2][0x8][0xde]/[0x81][0xd0]6[0xec][0x8e][0x16]B[0x9c][0xb5][0xe5][0xb2][0x91][0x9e],[0xef][0xbd][0xfb][0x93][0xf7][0xc0][0xe8][0x8e]2[0x99][0x1a][0xd8][0xda]@[0xef]'[0x9c][0x8e][0x80])Q"[0xaa][0x12][0xa6];[0xd6][0x8f][0x9][0xeb][0xfe][0xb7][0xaa]aE[0xa9][0x86][0xa9][0x1d]j[0x9d]Z-:[0xd5][0xf8][0x9d][0xaf][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[0xd5]82[0x15]Le[0xb1])[0xd5][0xf8][0xd6][0x91][0xaa][0x1][0x82]I[0xd5][0x98]<[0x6][0xb8][0xca]x[0xed][0x0][0xf7][0xf8][0xf9]^[0xf3][0x6][0x97][0x15]4[0x9c][0xb8][0xfc][0xa3][0x82][0xae][0x5][0xc3]%]5[0xe9];[0x6][0x1f]?[0xc0]O[0x84][0x82] )I[0x9b][0x8e][0x3]|JA[0x86]w[0xa4][0x82][0x80]RA[0xd6][0xaf]S[0xd0][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[0x15]$[0xd6][0xde][0x12](u([0xcb][0xba]R[0x7][0x9d]g[0xe7]>a[0xd7][0xd9][0x9][0xed][0x4][0xee][0xb1][0xda][0x9][0x9d]#[0xb5][0x3][0x4][0x93][0xda][0xb1][0x9d]v[0xae][0xf2]2[0xd6]X5%[0x8f][0xe0]A0[0xe3][0xa1]2[0x9e][0xf6] 1[0xc0]*[0x1e][0x14][0x1e][0xad]#[0xfb]X[0xf][0x2][0x82]I[0x1d]9[0xbf]NG[0x9b]-[0xd6][0xa0][0xfa]$8[0xaa][0xe1][0xf6]H[0x86][0x8c]t[0x1f][0xcf][0x13][0x97]0[0x8a]j[0x1c]q[0xc3]131S&G[0xb9][0xf]#[0x98]T[0x8d]{H5[0xb4][0x82]J1^S[0xb2][0xd8][0x95]K[0xbd][0xd5]>[0x82][0xd3]L([0xc6][0xb6][0x9d].[0x86]D\u+[0xb3]r[0xe][0xb0]8J-[0xf4][0x9b][0xd3][0x1e][0xe3]q[0xb5][0xb0]_[0x9f][[0xf9][0x87]M[0x9]$[0xc7][0xbc][0x82]g[0x94][0xf6]![0x83][0x8b]D[Z[0xb8][0x7]cW[0x90]L[0xe1][0xd0][0x8c]?[0xd0]![0x1d][0xee]%aN[0x84][0x92]t[0xa7]6[0xb6][0xfd]N[0x3]h[0xd7][0x8f]$[0xdb]CW[0xc1][0xd6][0x4][0xf1][0x9d]%[0xba]RzkR[0xa0][0xe7]lC[0xd2][0xc1]]f[0xd9][0xbb][0xdd]8[0x99][0x98]U[0xfe]?w[0x1a][0xb4]$MO,#[0x19]F#Kw)[0xf3][0x92]g[0xd1][0xe1]i[0xd4][0xfa][0xcb][0xa1]e[0xaa][0xfb][0xe9](T[0xe3]vS[0xb]ok![0xbc]_[0x98][F[0xf0][0xc7][0x83][0x8b][0xc0][0xdf]M.S[0xed]J[0x87]F[0xdc],[0x1][0x12][0xe1]$<[0xc5][0xf4][0xbb][0xb7][0x8e]b[0x80][0x9f][0xcf].'[0xdf]Y [0xc8][0x11]&[0xca][0xc1][0xd5][0xa0][0xcd][0xe4][0xcd][0x8a]N_[0xcf]*v[0xdd].[0xf4][0xaa]G0L[0x16]kz[0x10][0xce]Yr9[0xa6][0xaf]([0x94]T[0xae]<[0x92]$[0xe9]-<C[0x82][0x10][0x84]p[0xb3][0xdd][0xff]2[0xc4][0x0]kp[0x5]G[0x9d]F[0x85][0x8][0x98]UC2[0xc]%[0x8a]=[0x83][0x89][0x80]<<:[0x80]U[0xf8]x[0x1][0xd7][0xa8]-[0x18]!Xo[0xe3]F[0x1d][0xee]G[0xd6][0xba][0xdc][0xe6][0xdd]+[0xd0][0x94]YzM[0xd2]Z[0xfd][0xe2][0x9d][0xf8][0x8b]=O[0xcc]Ma[0xf3][0xf9])[0xc6][0xe6]y[0x8d]g[0xf4][0xbe][0xe0][0x9b][0xe7][0xbc][0xb3][0xe9]H>[0xb8][0xe5][0xee][0x1e][0x84]~P>[0xc6][0xe3]'[0xca][0xc7][0xf9][0x8d][0xe5][0xeb]9[\r][0x9d][0xc]A0[0xfd]f[0xb5][0xbc]X[0xb1]9[0x96][0xba]3[0xcb][0xea]:[0xcc][0x99]Y[0xf7]N[0xa4]_[0x88]??1[0xe][0xc2][\r][0xd8]2[0xf3];[0xe9][0xb6]lI8[0xde]%dx[0x98]k[0xcb][0xee][0x15][0x90]m[0xd3]DL]}a[0x98][0x81][0x1f]:N[0x18][0xda][0xb6][0xef][0xf9][0xb6][0x19][0x4]*[0xc0][0xf1]W[0xc4][0xec][0xd6][0xe2][0x11]_[0xb9][0x86][0x91][0xf]f[0xc6]5[0xcd][0xf1][0xf0]")[0x8a]h{[0x88][0xcb][0x83][0xbb]o[0xdb][0xb]\[0x1f][0x1e]}[0xc2][0xc0]p[0xfc][0xf6]C[0xf4]'[0x9d][0xaf][0xdb]A[0x98][0x16][0xa4]%[0xaa][0x91][0xb0]6[0xab]Pp[0x8d]@[0xc1][0xea][0xb7][0xab][0xb3][0xf3][0xcd][0xfb][0xf3][0x8b][0xcd][0xcd][0xcd]U[0xfb][0x9][0xb6][0xcd][0xf9][0x9b][0x81]c-<x*[0x9][0xfc] [0x94]O3z[0x8a][\n]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: http-outgoing-0 << "[0x89][0x12][0x15][0xe2]j[0x98]-7[0xe9][0x17]V[0x8d][0xf8][0xdd]2][0xdb][0xe0][0xb2]D[0x84][0xbd][0xff]/[0xf1]=j[0x92][0x9a]Z[0x5][0x8c][0xf2][0xfd]_[0xda][0xc8][0x8e]h[0xb4] [0x0][0x0]" 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Connection [id: 0][route: {s}->https://127.0.0.1:2999] can be kept alive indefinitely 2023-06-05 18:40:34 DEBUG [WebSocketConnectReadThread-199] com.stirante.lolclient.libs.org.apache.commons.logging.impl.Jdk14Logger: Connection released: [id: 0][route: {s}->https://127.0.0.1:2999][total kept alive: 1; route allocated: 1 of 2; total allocated: 1 of 20] null 2023-06-05 18:40:34 DEBUG [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool: HikariPool-1 - Pool stats (total=10, active=0, idle=10, waiting=0) 2023-06-05 18:40:34 DEBUG [HikariPool-1 housekeeper] com.zaxxer.hikari.pool.HikariPool: HikariPool-1 - Fill pool skipped, pool is at sufficient level.