From e57718a3041d87071c101e69019f113d445295d2 Mon Sep 17 00:00:00 2001 From: wwartana Date: Sun, 25 Jan 2026 11:27:46 +0800 Subject: [PATCH] initial commit --- .env | 24 + .env.example | 23 + README.md | 164 + README.md.backup | 162 + __pycache__/context_optimizer.cpython-313.pyc | Bin 0 -> 13136 bytes ...emini_mikrotik_integration.cpython-313.pyc | Bin 0 -> 6793 bytes __pycache__/update_data.cpython-313.pyc | Bin 0 -> 4844 bytes .../context_optimizer.cpython-313.pyc | Bin 0 -> 13140 bytes ...emini_mikrotik_integration.cpython-313.pyc | Bin 0 -> 7931 bytes app/__pycache__/update_data.cpython-313.pyc | Bin 0 -> 4850 bytes app/api_server.py | 153 + app/context_optimizer.py | 256 + app/gemini_mikrotik_integration.py | 159 + app/list_models.py | 10 + app/realtime_monitor.py | 119 + app/test_history.py | 20 + app/update_data.py | 114 + config.yaml | 64 + data/mikrotik_mcp_data.json | 48215 ++++++++++++++++ docker-compose.yml | 52 + example_prompts.md | 130 + requirements.txt | 8 + 22 files changed, 49673 insertions(+) create mode 100644 .env create mode 100644 .env.example create mode 100644 README.md create mode 100644 README.md.backup create mode 100644 __pycache__/context_optimizer.cpython-313.pyc create mode 100644 __pycache__/gemini_mikrotik_integration.cpython-313.pyc create mode 100644 __pycache__/update_data.cpython-313.pyc create mode 100644 app/__pycache__/context_optimizer.cpython-313.pyc create mode 100644 app/__pycache__/gemini_mikrotik_integration.cpython-313.pyc create mode 100644 app/__pycache__/update_data.cpython-313.pyc create mode 100644 app/api_server.py create mode 100644 app/context_optimizer.py create mode 100644 app/gemini_mikrotik_integration.py create mode 100644 app/list_models.py create mode 100644 app/realtime_monitor.py create mode 100644 app/test_history.py create mode 100644 app/update_data.py create mode 100644 config.yaml create mode 100644 data/mikrotik_mcp_data.json create mode 100644 docker-compose.yml create mode 100644 example_prompts.md create mode 100644 requirements.txt diff --git a/.env b/.env new file mode 100644 index 0000000..3fd034b --- /dev/null +++ b/.env @@ -0,0 +1,24 @@ +# MikroTik Gemini Integration - Environment Variables + +# Google Gemini API Key (required) +# Dapatkan dari: https://makersuite.google.com/app/apikey +GEMINI_API_KEY=AIzaSyC9RXt7VHVIlvxU_OuI7xONzwIuu56iS-g + +# MikroTik Connection (optional, for data updates) +MIKROTIK_HOST=192.168.7.1 +MIKROTIK_PORT=80 +MIKROTIK_USER=admin11 +MIKROTIK_PASSWORD=Dua75316__ + +# API Server Configuration +API_HOST=0.0.0.0 +API_PORT=8010 +API_DEBUG=true +API_KEY=mkmcp_secret_key_2026 + +# Data File Path +DATA_FILE=data/mikrotik_mcp_data.json + +# Logging +LOG_LEVEL=INFO +LOG_FILE=logs/app.log diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..6ebb8c0 --- /dev/null +++ b/.env.example @@ -0,0 +1,23 @@ +# MikroTik Gemini Integration - Environment Variables + +# Google Gemini API Key (required) +# Dapatkan dari: https://makersuite.google.com/app/apikey +GEMINI_API_KEY=your_gemini_api_key_here + +# MikroTik Connection (optional, for data updates) +MIKROTIK_HOST=192.168.1.1 +MIKROTIK_PORT=8728 +MIKROTIK_USER=admin +MIKROTIK_PASSWORD=password + +# API Server Configuration +API_HOST=0.0.0.0 +API_PORT=8000 +API_DEBUG=true + +# Data File Path +DATA_FILE=../mikrotik_mcp_data.json + +# Logging +LOG_LEVEL=INFO +LOG_FILE=logs/app.log diff --git a/README.md b/README.md new file mode 100644 index 0000000..cbc207a --- /dev/null +++ b/README.md @@ -0,0 +1,164 @@ +# šŸš€ Integrasi MikroTik MCP dengan Gemini AI + +## šŸ“‹ **Daftar Isi** +1. [Overview](#overview) +2. [Prerequisites](#prerequisites) +3. [Struktur File](#struktur-file) +4. [Instalasi Cepat](#instalasi-cepat) +5. [Penggunaan](#penggunaan) +6. [Deployment](#deployment) +7. [Contoh Penggunaan](#contoh-penggunaan) +8. [Troubleshooting](#troubleshooting) + +## šŸ” **Overview** + +Integrasi ini memungkinkan Anda bertanya tentang perangkat MikroTik menggunakan **Google Gemini AI** dengan konteks data real-time dari perangkat. + +**Fitur Utama:** +- āœ… Query natural language tentang MikroTik +- āœ… Context-aware responses +- āœ… Real-time monitoring +- āœ… Web API interface +- āœ… Docker deployment +- āœ… Optimized token usage + +## šŸ“¦ **Prerequisites** + +### **1. Google Cloud Account** +- API Key Gemini dari [Google AI Studio](https://makersuite.google.com/app/apikey) + +### **2. Python 3.11+** +```bash +python --version +``` + +### **3. MikroTik Data** +File: `mikrotik_mcp_data.json` (sudah ada di project) + +## šŸ“ **Struktur File** + +``` +gemini_integration/ +ā”œā”€ā”€ README.md # File ini +ā”œā”€ā”€ gemini_mikrotik_integration.py # Script utama +ā”œā”€ā”€ api_server.py # FastAPI server +ā”œā”€ā”€ realtime_monitor.py # Monitoring real-time +ā”œā”€ā”€ context_optimizer.py # Optimasi context +ā”œā”€ā”€ update_data.py # Script update data MikroTik +ā”œā”€ā”€ requirements.txt # Dependencies +ā”œā”€ā”€ docker-compose.yml # Docker deployment +ā”œā”€ā”€ config.yaml # Konfigurasi +ā”œā”€ā”€ example_prompts.md # Contoh prompt +ā”œā”€ā”€ .env.example # Template environment +└── logs/ # Log directory (auto-created) +``` +``` + +## ⚔ **Instalasi Cepat** + +### **Step 1: Setup Environment** +```bash +cd /a0/usr/projects/project_1/gemini_integration + +# Copy environment template +cp .env.example .env + +# Edit .env dengan API key Anda +nano .env +``` + +### **Step 2: Install Dependencies** +```bash +pip install -r requirements.txt +``` + +### **Step 3: Test Integration** +```bash +python gemini_mikrotik_integration.py +``` + +## šŸŽÆ **Penggunaan** + +### **1. Interactive Chat** +```bash +python gemini_mikrotik_integration.py +``` + +### **2. Web API** +```bash +python api_server.py +# Akses: http://localhost:8000/docs +``` + +### **3. Real-time Monitoring** +```bash +python realtime_monitor.py +``` + +## 🐳 **Deployment dengan Docker** + +### **Build dan Run** +```bash +docker-compose up -d +``` + +### **Check Status** +```bash +docker-compose ps +curl http://localhost:8000/health +``` + +## šŸ’” **Contoh Penggunaan** + +### **Via Python Script** +```python +from gemini_mikrotik_integration import MikroTikGeminiAssistant + +assistant = MikroTikGeminiAssistant() +answer = assistant.ask_question("Berapa CPU usage router?") +print(answer) +``` + +### **Via API** +```bash +curl -X POST http://localhost:8000/ask \ + -H "Content-Type: application/json" \ + -d '{"question": "Ada berapa interface yang running?"}' +``` + +## šŸ”§ **Troubleshooting** + +### **Error: API Key Invalid** +```bash +# Periksa .env file +cat .env | grep GEMINI_API_KEY +``` + +### **Error: MikroTik Data Not Found** +```bash +# Pastikan file data ada +ls -la ../mikrotik_mcp_data.json +``` + +### **Error: Port Already in Use** +```bash +# Ganti port di api_server.py atau kill process +lsof -i :8000 +kill -9 +``` + +## šŸ“ž **Support** + +- **Issues**: Check error logs +- **Questions**: Lihat example_prompts.md +- **Updates**: Pantau perubahan API Gemini + +## šŸ“„ **License** + +MIT License - Bebas digunakan untuk keperluan apapun. + +--- + +**Dibuat oleh:** Agent Zero AI Assistant +**Tanggal:** 2026-01-20 +**Versi:** 1.0.0 diff --git a/README.md.backup b/README.md.backup new file mode 100644 index 0000000..763f41a --- /dev/null +++ b/README.md.backup @@ -0,0 +1,162 @@ +# šŸš€ Integrasi MikroTik MCP dengan Gemini AI + +## šŸ“‹ **Daftar Isi** +1. [Overview](#overview) +2. [Prerequisites](#prerequisites) +3. [Struktur File](#struktur-file) +4. [Instalasi Cepat](#instalasi-cepat) +5. [Penggunaan](#penggunaan) +6. [Deployment](#deployment) +7. [Contoh Penggunaan](#contoh-penggunaan) +8. [Troubleshooting](#troubleshooting) + +## šŸ” **Overview** + +Integrasi ini memungkinkan Anda bertanya tentang perangkat MikroTik menggunakan **Google Gemini AI** dengan konteks data real-time dari perangkat. + +**Fitur Utama:** +- āœ… Query natural language tentang MikroTik +- āœ… Context-aware responses +- āœ… Real-time monitoring +- āœ… Web API interface +- āœ… Docker deployment +- āœ… Optimized token usage + +## šŸ“¦ **Prerequisites** + +### **1. Google Cloud Account** +- API Key Gemini dari [Google AI Studio](https://makersuite.google.com/app/apikey) + +### **2. Python 3.11+** +```bash +python --version +``` + +### **3. MikroTik Data** +File: `mikrotik_mcp_data.json` (sudah ada di project) + +## šŸ“ **Struktur File** + +``` +gemini_integration/ +ā”œā”€ā”€ README.md # File ini +ā”œā”€ā”€ gemini_mikrotik_integration.py # Script utama +ā”œā”€ā”€ api_server.py # FastAPI server +ā”œā”€ā”€ realtime_monitor.py # Monitoring real-time +ā”œā”€ā”€ context_optimizer.py # Optimasi context +ā”œā”€ā”€ requirements.txt # Dependencies +ā”œā”€ā”€ docker-compose.yml # Docker deployment +ā”œā”€ā”€ nginx.conf # Nginx config +ā”œā”€ā”€ example_prompts.md # Contoh prompt +ā”œā”€ā”€ .env.example # Template environment +└── config.yaml # Konfigurasi +``` + +## ⚔ **Instalasi Cepat** + +### **Step 1: Setup Environment** +```bash +cd /a0/usr/projects/project_1/gemini_integration + +# Copy environment template +cp .env.example .env + +# Edit .env dengan API key Anda +nano .env +``` + +### **Step 2: Install Dependencies** +```bash +pip install -r requirements.txt +``` + +### **Step 3: Test Integration** +```bash +python gemini_mikrotik_integration.py +``` + +## šŸŽÆ **Penggunaan** + +### **1. Interactive Chat** +```bash +python gemini_mikrotik_integration.py +``` + +### **2. Web API** +```bash +python api_server.py +# Akses: http://localhost:8000/docs +``` + +### **3. Real-time Monitoring** +```bash +python realtime_monitor.py +``` + +## 🐳 **Deployment dengan Docker** + +### **Build dan Run** +```bash +docker-compose up -d +``` + +### **Check Status** +```bash +docker-compose ps +curl http://localhost:8000/health +``` + +## šŸ’” **Contoh Penggunaan** + +### **Via Python Script** +```python +from gemini_mikrotik_integration import MikroTikGeminiAssistant + +assistant = MikroTikGeminiAssistant() +answer = assistant.ask_question("Berapa CPU usage router?") +print(answer) +``` + +### **Via API** +```bash +curl -X POST http://localhost:8000/ask \ + -H "Content-Type: application/json" \ + -d '{"question": "Ada berapa interface yang running?"}' +``` + +## šŸ”§ **Troubleshooting** + +### **Error: API Key Invalid** +```bash +# Periksa .env file +cat .env | grep GEMINI_API_KEY +``` + +### **Error: MikroTik Data Not Found** +```bash +# Pastikan file data ada +ls -la ../mikrotik_mcp_data.json +``` + +### **Error: Port Already in Use** +```bash +# Ganti port di api_server.py atau kill process +lsof -i :8000 +kill -9 +``` + +## šŸ“ž **Support** + +- **Issues**: Check error logs +- **Questions**: Lihat example_prompts.md +- **Updates**: Pantau perubahan API Gemini + +## šŸ“„ **License** + +MIT License - Bebas digunakan untuk keperluan apapun. + +--- + +**Dibuat oleh:** Agent Zero AI Assistant +**Tanggal:** 2026-01-20 +**Versi:** 1.0.0 diff --git a/__pycache__/context_optimizer.cpython-313.pyc b/__pycache__/context_optimizer.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..18e7fe7914d08cf0915e828136069e0e44e0e7ea GIT binary patch literal 13136 zcmcIKX>c3Yc@Nmd4e-9eb4ighLGu(3QIthplqgCfC2Nlg!~FWw4YfmJh`YRc-2IUfF2_nY8xmlp5a7>hYh}iy@Q72GXm7^ZAqcAJ7`>4 z=5B?Vb93RqY#_?z z_*4{1M-~3)2;-gh@{GU<5ibC8!D(-h35RZSL1qR<3Jcc9IMp#1CDB6xUs$5g286Ig z9SzR=ve%GigwwDM_sApx1|Yni)$tUo=V`Wqr6vtMdL;fE^bH+vWDQ98lja_pHDMiZ zVa=0Ps4+l|MXs^2Rv=B|q#bH(a*c!C1EiTZX_tw`F=>ES^{dCo=Bc>z*+w>Bs|PaO z4ppc^6#!IG8mf2)REY{z$TqR1X{fRtP~|FA5xbYINJBYyKvk+x#q0}g6|AUQUZ)*q zT%)#>u(k4TSYf4gSjU&L3|}@~?`oC`)U!_?{bL(!eAK0VXJ|k^=BW^`5rcZ-l6BU5 z%Ojtu;8Vqpd~{f*;O|K-B=^YWf*H9Q6ISOYGjNj1Z(8r7qRrNkU?3du&H(u_p)?(; zBm+YzWFuIol}_=)V=g@ptVARyCji-c!<=88hG&lBJ-+K+-ldmlft#6<;RKuz!$_US z2PQ}7kIv0aPRms731p~xQeBiMJ%jeSdCBYnm_XR$k(@hst6gi#1LQ&>ByW;UGpTC& zll+vcZGryCy!Q!I63OtocP7F~MxF~t_~5pUqM=>hsBb{w9=V#{7`N_fdP6k{s>uT{ zw77MR+o2JY{Cftv7@@~aT6-qfq&KS@I7LV!kq_gnc4fJBl*^8At&sO4JM&&z%Sq5oTGp4kt|s=%nf19K(MxUQ;>2~Kq~fVRa*EeXTb!5Aa_B+ zf!>wOJST)AypM}ouZ6t4zb)vU<-VZCI*vxozPU)-OvvkxTCn5`fijNTrg)BPo8@Lh z{5+51Bx( zfgyU~$B?{9J}ItUJbd?XY+#iai}x*d2>AVE6%O$pNOMgS_~E+)B)3~vOfFJ_z5|3sF*)@j zA)(G(?B}L(kvp4~XBt~%;~#YaLs94TqiuxP2t$H25bIYo9%{B{#xn$|4iYrFX%>VE zOSJ(EO<e4 z<(v3OFbMX-*kd?NP{Sy1_(r)Ho}c3+YBn5+n)q97*XF}q)D%_jsI)G&MgPn41hVz5;$#g!57!E<=qIf5kTOpB*-nlt0 z=y#bEIn{*?`>;V5;CnDf%pMgp-wrhbnpG&a;HOBg;A_>-B%%^z)_%7IENovh~bj*Yb@8Q@rTx#|^Dw z*~B|7OBdcBeQ)$Z{XaE*(6nI@kBujL*u~f0ZdtI!%O*CBq_i9)kdYKQ^(JaN#KO)mJ80z#sp^`Q6U!%J zEvuYZ-LqveAYy}pxNEaOk*A;kx|bA>>OPmsCIpORe7E_8mHrzeBp(=?Pvp}d>@z|t znFP)UR=6P9P}-^=+eB^J()l02l1tQrC<5^ZUW{HALg11FXty~NQ&>r6SlCnk z^?;9)*-0|Z@u8`}45xA1N!S&+g&&3zaN8hOAh*eU=Q1d)b{s2)FhQ;Yc2)*M(VoRy z8LMD!ZcaPC-(?kKflUA^;Wi}5U1c(NsT`3it67>^`UA1-#f6huoKU-BUAD&hR(r*Y zu2fb1%E0nKEC6;w)qXGlRz{acSNFc#a=&Hmir8{QtUkIOWE+{5w`ydnsC^?JiiAPs z%ign6&P{{0ARKei;12Z*#(k(e7X@O#P*Z0tg`q$+7)C2qg$~a7E(-n2Vtiv4j2V>; zDp%%{mw``Apscga8aNF6xlOyw-Kfod7YK;*JO{%3TnI}B0u*t!db^rd#59;4hBlB4 z@=8GYe3dH!Zy+lKIeOqZO4c4NNpq<}N-~2+ZGIu#=Jor*V-O?~wRE=2|2jIycyyT+ zU2B?#$jKXCh;o3ER9tj};0w(G_evBX;LjoGc}y-q0#4~Tma!JfG7}>^yUYp`gF!&} zvyezSUdr=xQ{Ko7s7r;|?V<2>2+b&83YQy{4>RWm36&OEwwMh|Ay^*D!W6V8V!t~<*H4aq&pqwck2g= z;4XoIkuBpGF5B?~-vN5(>Zu5^%uK{AFza{-^gkHJ(W(<}%j z?=SpNLq88rDpWY3N0a?^a?b#J4ts)%Yntq*rgSdd*nKc8 zBz=3Qq?_Yk1uy}TG0dBaG_kxi%>}tzbNryxwYwdT%WZ#YCIkx<2HVqJ?jbseppxG{ z2FoE{)b~?ItZT{mX9s`k_*{-ze6z4b2Vq1AqsTH9EF7Q+B2NRn7-4!0f-1D^^FZ_l z<1CzCaW*J#a9**7Fi0*LAqz ze{Cerqq+r$EFn{c#S6x#Mp9n&R)1{h$Ae-SxE;SLu3b2uDy>+&bobKINfY1(%PlK(ye$&^Md7(EpK7| zJA+H7L|bE8nlD|9Hx9-w|BPB2`Rlwy(_p;j@I(8NPx33$0UNv57Y@A6c_Lu*3X%nd zr(E17J&_}2>50BvZrQobg;@BCU5H(rg^ZkqAZQLLyQ}k%D~S5#`{xLvvX=I=>jK>U zZB+)M6Jm`vq-E3fP*|7)&t5qLM&5YE80j=b!;MwF zsmj`w=H+HN6j|AwiCEI_o8L39S3ZD<<*-9JFG(Hg12a}A%G9EECh`C z$iG~-Ck+tI)HIZqXZpI+#xdMl;f=Z(v>?7r(9r~9gMjrMxaMFX7}}``lIzwBE-!NE ze%6?|yvQ+X?mnhWpPV>N9q9{^G|r4ZCt$6ZWozaCjQv?_Cu_%YW4AnK?$#W02YIIa zcG*MQb8y<9#mPF_4RB7mteD*M{yp{_@aJnY&*ZzT;rG}Vz+afbtCe=a|9k8a;71E& z$8Q(>dC%@K^hZBn$8VSZ`Oi7Sf@krwh3y8msGSN@nLF!UI6G}Q2Wgm9`Hm^Ur#tO} zyD7F9MJihY278wD$Uv~AvIHoBUK*_Y{w9m|)7aX8@6PGi@-$=xVwEr5oYAJ^JO`d| z`t5-~=aZJl7@!@CQtj>SQl(~(d9HcEqJz7!**SEz@e+-a9AGj}2ZG)ij{r{^;8T6m z;K%zg$qbG)j5a+FVJ`W;mG1(?+l*l&RLI6Ks+euYFsPfLZX)NMA{;0R+#NqQeHE>V zpk@_9js>;giwxDQ?o`ccy=+!fa>)BJ@;pAba6&E{uAmeBSU!viO8ITpHa`V5(o4^1 zI*1*@n$vG9aL43#M>$OHUm#8v64~V5B&73Y{f7s`Yu@;++hBpt>rU#olnmO2^{4bu zIjld6m6$>0sQ#k<34UF|wt3xU{rkH2bb#Y?0n`Qgrt5%i&2m5|Q4k;GkK=?*K`#78 zh`-67fiF<<-@?j*Ol)4g{H#!8|5+DxYD-~Os8Ox5E5Qrpi${ZAGHIrOQ88j%2B|P> z5Wzb;H^WIq*|^j?hl))7wDFve3x*YwKTpN#QIS&M)^lMm-r_^VJ2E@#<>w`nAF2W~ z0>3CPO?xDuy_=EkBmSGv#)Cadq{1wU_Q=n^Ty|b|ROlN5TtyrFk=Z$c@4yb|vB9g3 z$Si*pKSwaRgo%I&#$5S2NHp8&53%Cwn4s+>*;PvL;6n)6h(~FbZKFXPI2)^2-Ltw6!a1cM z*7wE7ucWH`!P{`=fujMp!Ij;K%I>w%WY392&xr@u&w`HlIm0pG!2Ki=Us2zw)Zs>=hfYJ!Wg#JV&8SK zK9H*0ldS7X)OD@3CHEaq>^uJ80K+_3Hh%866@5#?({zxMKaG|_u{<8Y$)>cdyO@oPcx zmC%R1A%HrkKd(=t>PndRWqX7+*`x5tFTA!rnE|U;wSS>-kJM&su(W-P&tzD={6-h# z>@>XVg?L8=hExaDW?#vj_-5K@ofe2j*uP^NBuBdI4D zO?(w+BL8~yCgKGZfp0*kbyGxr1!|5qos^%LFv_bAMqU!UQDUw~X5rlzNNzvgphl@q z=9nxeAmF1rCh5<>-zfYIADdPNxO3zSs=aGU(lJqrnK%ZT&@ct>N5YczBEEn-fng)b zG65I7a#4E^@(%QtDA+>qE{$IZ3BeOgKitKJ%k=kI+&bQb5w#TAZ^dd>#*vkG=RjOwe@V@hVi& z+~rt8Da-=_5JheyVeBrlW7sNheyPWU*XseF#~X%Me%J8w3dZswKmjIbz4In5!G#O$ zK+oSIAJg4iw879G>;9BLwwY%%lrH%;31l(2Zv!eQuETU7+vtg(pZMp2PqDl;&;%fjvGCh1n*@sMl$<@7 z*l7IV%BNVfHKxmhp(fTE?_b#@P<#L@fGmE&9lv-bapCHx__f8})KgMHT#aZfZ!SLGiTlGmJ0Q?B&Wgkty+8tmbsOSIvN3s7}{~p6!Qi8?<+LaD7 z8wpO|48YTHj-LT3!Cd16FCQt!E^qx&8VaY)oIB$x<=3Hwe+v=_D$mcssuhZsiCHFk znGk=502J8Q5)JoRK}k1-Hy-emjh4+K1K95nL8ZA{fpF#(8qdcNIZju$b@)HW67uj4 zVwcP>DXclj|0A>ltrOt_q#zJ zD&MJG9TDsM#G3u_>i%_O+usd(*38u`N6C1=vvmTUW3wZkH~5kH@Gr5j=Oc6DW(T1wKeNL6K5}&b_a?1}eZaPchvq#gv+aB4 xZ=3HFe%JPefHLwgEkjoFZt?L0)CYPq6#wCXb;xA;1w}#m7bZEiRu45({|lq9R)zoo literal 0 HcmV?d00001 diff --git a/__pycache__/gemini_mikrotik_integration.cpython-313.pyc b/__pycache__/gemini_mikrotik_integration.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..743ef23e1522c09d874465e6be5dbe68dbdd405e GIT binary patch literal 6793 zcma(#U2Gdidb3>qESHq{Ba!-}q!DGwqAbyleR6EYx*RRbj^s%8ky4sgx)N(~MXgCL zLqR7lEafhh0u-={3s4mW3cuArU+U)N9$J756^PkW0v8PmX6@Z<_!OEPW@KnhPa^zEwosW;6aGAYWHDZXl+Di40Sr)C}JS3^#;lz(io;UNx`~1EcwfEj{EH}4qTwA|ZYVLzh zD|B}D&BThw&xxwzMdYV$~eepj-oVj$fa{Z-WwrZgz1cn{)L+=Vc;_cv?)Q$tp!pX;97v zBXcWMz0%IC2IcI~sj26*484}yR8yzroCmsR(-|R&sj4SS!lJ0aI8Qmg(#m;jDA%uF z2j#v<#0jiih*KLi=l`& zgt!1VATEhSl;JM2fGY&?l#~!~R)Jf&Ares9s{-~*nJkvmBqb!@^bg_X?2W7(*QiyD zkU(2h=Kygf$WIA(gd4Cx67&hCPm{tIg=Ikz;FPhnEGm+KS78nYRkQ@Hv% zrnSkUy{lmBhH>mEdwiPLcEc73lEeXl+C7ksZ3d}Eq2dPGf!>0R*q5yU~_9WTrotziH#tAHb%!# z4;rdFlCbWQ0i$k&;V)iwjd}o%fZaaDD28sBQFWM%Gb#gyOQiNI*Q`my3sx~;RE_Bs zQPymZYP_j{O)^rG6);p7g;`SQIWVp;MiaoQ|D}vkGj>!zD?fqieY9^dT1WO=p0(J9 zye@Ao?zjfGg}s)Jjn$7It>z+vm2)*M^+oAfsvsFD^ytmbQKe~#7trwFUL>|jjh*a%B)$~D-5 z%+9e#u565$bjmNm06+8<7?xLJaIeI$)-ev8>gXHg>$i2}nfQ~n8`p2;l{9UyplSah z&6m7)!z(B?)=wI71i51<;LNpzC92{T>RD0)qRWJ8R#w5}rc@3*yL6T;ii8SKj=zx> zNNiXZQeuvsIT^}vU^IuRz~pR8U^Ry;wvu2#COx$BL#47{(?DBSjGD@�*$=(D27# zFu;*cir7V~Zdzel)h3f(+SD*jq#0n91#tIV%HYv&hV^!c|gbFV? z3zb6E7KTz0{(eg0rB>m9C8FVy@_$f)Rj@lBOx~N!Gi8^1!?W&LySwEsxsK({;0`vo zZ;Y;wZrE8yD6uZ1LL@rKZzmZo&Q0N=_=&jn_9K6(Yh<_Ue6j2NxnEfQXHMf1S)O~Wd z`%JO>%%jQ2q||+})G=OeYk%nZ#Iu>(K3!@H?zWvSww-?T#=n?KZI_?9tWJI(S*?7< ziqOZ`3%yQFEBzY)FVjl8wupf@4z}e8{iHj;80-*W=+qBi-#2+m@<#+=-(EckEGp-I1f(@VE8ZFox65l(eB%^ckLUE)}C@p$8O6&v1MSlWu(|L z@@To#@@D=m%5Y=rV+A|@{hp)sIbr}2ypo@8j<1biXQAhNg^J~``$If>!t zvXq79Yb*x&uIegBF_6x7)NIz66xe&Z7Z{ZZ*TQ~%pY|QgVKV0X~84qO9rZb0Dw&|zDlpZ8XUMvSi<-m^Za|Vbp?Prd@>4rMh z>3;y_?8x=gtN=t75V&X@U-9rkG-BBVL<_j;$L9k4*dJN4)EnA=_~~Ec>B+0%YqOJA zaV6`4Cue3S!lCim$#*93_*A8v@m3aUbA@1*`j31B0x$@( zZf4=rgJIH#s!3ZROIeKHfB36k;OjNg5ZKa4HYN>gIC}i68C|$p8uJGEtfw*)ZYDH2 zif5N4IRW-L7!0ZmpKBgIqRa%$s%eG5^Qb0CUdh5o$q;EpH6_z`z-6W}5V-=C9y2kw zRI?x}Fm@`Ea%1J6m#`1-ycH zXvaBRc6w?z-)0#I?$y3pw6B4SqwqWpNN>4$h z7FVM5fr2!kfaE9Sps3>mIVe6Fg(O)vNnv|5dMhg=t0Rsmq|AttNlLOPr=wBQMiN#jfA%8;0Snx3kjd92|T20YDtDvWp$rx=L1romvAzfOM$t8+Kd6~@8 zie4ZYr`2UzQSPi?o623NywH!yG7QiIDPKbcrj22q84Zl_Ifoejx5)Mt>ir6JeT6!o znGs|EMZ@omafb0dL$uzXWs%XI&z0D=-x?dA+8Q35|KNPV)3)PH_57-}AOp?`hT3H4_#^Y{?^S&MD_IQ!Xg H6Ttrulz-Ww literal 0 HcmV?d00001 diff --git a/__pycache__/update_data.cpython-313.pyc b/__pycache__/update_data.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5b0c39283f786a8ed8f3ee251ab1e9f6f0e4017f GIT binary patch literal 4844 zcmcf^TW}NC_3lI3)myeD8ym3KhQ=r%62=&?;-eY0FpoDI+tOjnippe)y^h%%n+vdhSZQ7EChv z>(%Jod(S=h+_UGLd(OG{0s$|A_W3U~<--6%|0WZ=x$1*^f1wb%j6{TyNQv|@3R6~3 zW7_H&%s|f^V~?_!6$lM`%yra_-2$3+_n?6~8<;T@L7VwT--AS#=pLYJ7|eeo6({lz zmFF9&Jfhd3@_r+gPxL!fJ~1%O2ay<@_5cj^yRd)SJMG&;?W8^jhIMVHev8cyqmWE6FieO}j8(=+m7MlKi%3|$4Rs78!6d0EXC zG#Hyq5$6a$y`ZVOY*MmLR4+g?A3ZoUed0p0P?(;T!2^^u(95$}BCMusu9+sT882Kg zy_U4r6n6oGcKGY(0L-CJ1JU`T3(_LLP^x%)<_@mYZddbK%jPS?mxjyCAGUu$FSk4~ z&#&^~n|${&-@U?bTMf0n{?e;2{pzO`zVp9pzQ{d9!xlcU5GwPFrKRSjOmgTN=S{|$Yfa6`7;|kKMaD4~zzh&LjVRx8%0GhJfm1pT zD^eSV{x+Ai9chBN_(RQJ6X_}5UJ{u&Gvzp>=(tn^&Sjt8fOCHhjl8U9Ba?{27IhhukYjH# zd7IYcY$6vS(oHXkFnC7F$hzrq#wD*(NJ!Z%Fwjdpj4?z>8RDj2DWvOo*xJo1bfeF2822zA!Q8Zyj%)3pe#XY(_LG_#5H1^$>(K5B4G|R zVSPJ}!Gg)DvH_{@oXNl`CJXH0Qavuq&{qVmx0bm=H9+$y9ZKL)EKsmimbmq$)tk=~F1|HVBX=w9B`Oa0E%OMwfy49$>o816SR zeX3@p>r$FtlARRYP%=6uiupfli_a>$^juEP9>)9O^f5dLFh=7cA}FOdY6}ko4nGM1 zD#%7foVwn6!NfN~*MVXAMy#O~t*J^hglh9@5S#WGwH5t8_ z2VjtU#u8t}PZ0u3_gwv4C$HBWA@q>-@fhsb4u5?Pya=*3>#2AjTVZ$J=TS$`J6qn` z@|(_^?S0Gbebx5<)z;Wrr28(%M!om_sC`>y+n(yCfwfIN^+8*ArDu1wt$!`rRd!dS zy>~sX7Vmlx1=`*ERKwk$whEQ*J=N9$U|bRUs?punj=PD?e)rs=^!;wmc6#U8`RQf8V{v$y-?8o|j7NU<59Hx;I)@T(U^IB zKY8@XYDUXK?7KsBbr^1)TTw|SGX0QzidarddPY&ktjo6k&ZWQBZkrCAvjT9PEVa~% zZNQN1Nbb&%5ObNVR*+TP229~X74wDKU4#!pF%};uXr2h8N_h}y29wJ3p$q0Ahtvw< zAHpj6>(2w2L+dQ(imnBk7IrKiTVYWbW4{Efiwui)4e#SjI*myft{Ixv^jfra*Iv$;g(cGs zFDwwf7IMk+6B8H5cc^~0%LTTkE-;pX~$Z#BHTalWq_?uU7#^~&g_(Mo6E)uC$SKm|1ck6?7+^ul<#uY9^Z zes!SY8=QkjShUi%qr%1J*w0uG)%;oO9x8l4M|r5|dMjf6^Q9`&ev71r_zIf=H+W0MhQ>A&} VhJWuTWbpV6e|&v2VmmC|{0|yqS}6bk literal 0 HcmV?d00001 diff --git a/app/__pycache__/context_optimizer.cpython-313.pyc b/app/__pycache__/context_optimizer.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..34cecb30b1822c122f0e644f271dbda379cb709d GIT binary patch literal 13140 zcmcIKX>c3Yc@Nmd4e-9eb4ighLGu(3QIthplqgCfC2Nlg!~FWw4YfmJh`YRc-2IUfF2_nY8xmlp5a7>hYh}iy@Q72GXm7^ZAqcAJ7`>4 z=5B?Vb93RqY#_?z z_*4{1M-~3)2;-gh@{GU<5ibC8!D(-h35RZSL1qR<3Jcc9IMp#1CDB6xUs$5g286Ig z9SzR=ve%GigwwDM_sApx1|Yni)$tUo=V`Wqr6vtMdL;fE^bH+vWDQ98lja_pHDMiZ zVa=0Ps4+l|MXs^2Rv=B|q#bH(a*c!C1EiTZX_tw`F=>ES^{dCo=Bc>z*+w>Bs|PaO z4ppc^6#!IG8mf2)REY{z$TqR1X{fRtP~|FA5xbYINJBYyKvk+x#q0}g6|AUQUZ)*q zT%)#>u(k4TSYf4gSjU&L3|}@~?`oC`)U!_?{bL(!eAK0VXJ|k^=BW^`5rcZ-l6BU5 z%Ojtu;8Vqpd~{f*;O|K-B=^YWf*H9Q6ISOYGjNj1Z(8r7qRrNkU?3du&H(u_p)?(; zBm+YzWFuIol}_=)V=g@ptVARyCji-c!<=88hG&lBJ-+K+-ldmlft#6<;RKuz!$>{H z2PQ}7kIv0aPRms731p~x(hJqg>#n9ZRgMrDY?1oL4 z7sA}E2U&jGrl6@JZ^{)}4g)!*2^Ct@AFJym8u117ZhcM|JxggYyFk#-g)n46kn!}f zX!8Ja&po!0HECmO#{&oW<@=j+^v^w#C2NMcA*>k)*4AzcQf>-J#U8Cn3t;6em_QI@ zFGxAiy^@*dgiwU{aZ&5FkeBzj1--M}7t~nC(Wu!s7ipUbdHqofmV6;l$WhxA&v9+D z+-!)S=TV$Q?cq?^JEK-f#s~^rPBOjD@d6CsGD!+z4W)Np$C~+l z`+N5FS2iw)o#({r^Qp4h#hJS^vHn%JSk|2?uUou*_jYV#H6oVxZsnUxtqYdT5>nud zn=2H4v!V*(r@TH+kn&KSX1;ydWQh_1zn`qaA>IRNu4w{4e0PB4cI%4CMM}_jfUqbg zr(Pr^)R~L@+*B@dXVdabV~cG3qb^`5>b!omjSw4QNRS3%{ffpz&GyWAh9K2Jf<`yZ zf>2?pHh`fCtnwxyFcafAO6(oKUDiowJfvM9z<|_5#4Zq~=R%mD3t`DXfInw#H){LN zkkMIXm)!<=wYKzXN50zCvi4op>&TjGUOSyN(=+N!jg3Hc4EzPDsjQMKKU$F%W*Nc; z2LLR66CVi%!Cn}945tZd808J$C>O)?bDTuYh9glEf2-}jtGxYibQR}P?%8%kj#FtQ?AW$evm$y&Ib|0AxK;l@5FK|B$5%# zKrZNanG`wIg$?_#K^NeAFh|TD6*J!sH3FJdD7N6INUq|vNXo2PYTR9LWuR~*VGtDS zo8&+9ovGr|g^?{IsdI@%XMc2Ksqo#=`=jgif8X@;rUw>r;B>O}%wpH_jRjM@=l2kPiiNEUM^pCFq`f*}uTE7sR}9OBrKuPvRI=`V<*J&mQ-2!B6pWt z8i_^3vbG&xm3y`vrrNyU5R)T+iy}pBn`NY^CSKFA6kPQtYCFWj&M!M?&mIP^F9XPg~KR2CI*k)Tm zxgoMGAd*wO43`8Xp5Mm&NTa;KYt#ad3oz({vA_TNoH8s zQ~vdUkCWL+GR^U!slW`Uaob7Q6}g2Uh7xewAXXr^$$aNBD6DoID~2#Zt^#&e21C)F z#akJxU~Xq^T zkPPxlK>2)?D*8Km`@v%nBoeiBw#)xII>&f) znH61Ynuh4f8(xTVfRa>Pbc5gv%>nmH6d>TwA?SHbE`B^7-2LuN= zggjMumTJ0lZ>#9M^v=bY?%l}!$lBK)91}Z+Hx4E`F0RzSeQ_Z#?!5Hz9+z0|ey4BA z`>y-Gd+pGJ2C?nLMpdG1Vnz3M--10}?*62tOxBuZjj>~~3u5UD3nwyCqP%)>{_cFN zX3Zd$_ob?sl>^HMVlTs2RbQ&Qer05NBz9x1Nv!TqIcry(%g)&T)f1v~-!}13*1TCn z${J#A;HG%ren~9t{E{PV87S0+l&lNOx;E{aE_{(xUItxQ?iMgc@?GbUf&MEaB=0+i zKp~bGA(iNv(6k_#Q4eBin*hQSk^PNNU`JoE<`O|25X`%vlPz-^RH7jhxyltM(G(I` z@kX%R|5RonQ!dp8_YCO(!K@V+KZkYCW+}*^`D!|{<+k?dSOWw)&2FkVeLta%t@$+G z7eM6D;}}BR@!Msztgyj^)oo_Y?UaTS?Dgw_&G7$*?RzS_L$DeRjG*PJO`D`U9qV`N z2a4c6fq{`N;}|a6@dMuhdgtn?2(irU-4;;v*63hbgm{B~2Glorr3_L9(|n!}g!n+% zD-19`$OAs_Oe@3je28yl-th8h!@EFQn6*a9AU8@TwNavd-Z?=shC_1!pTLj7R3+0a z2qo_{=gT&lklwoC?+J>PLERq0pz1?E4^ApnIH5 z-#!M*Azsw?Q%9_8$@pgnf9m*Lj#+%OutW!8L#Q1H2evdJKXpwCwXh z^akTBoL_M^C~t6Hv4${EE*T*Vh`xtSk)@z734a9}9M=QW*FAH}Im}Cz!0cRz2VotS zjIu}tV^)9)h=R);O+m_gu{T;$%61?PX%d!UjwsvWNQ+RpU+wSSnr{FK;WJ2ni}q8o zEMb3bB+jF{1&1slQ-#F~#-~P7UiDUgZ0N^>Vi~v{zbdX>IG!r4SiE%i($eJ^FP64| zjaBAcoW47~6j&`1%UTzPp;JNe!=k?X4zZ{&nctVl?@JXplLbtofJs%?tqd;@$4-LS ztlpQZZA?`)Y?Vfmutu45OlIt6UYNlNNA_ma}urNGjycuDhu<&iCK zVg5UVOQ%FzV_KRoU5qyl#xDPiS{wQ6yhPJryyoyj`;kxbE7AcQyVn;Eyv}(dVDk!+ z1%;zK$~hNuMG1DVSd{whfGmpXB& zes>mALGB}-MM#jzs$?cpn5%?|RmNOmN$bK;np{&A)hp&@bF6F?f|nf-u3YI~?w7-j zRlTXo+Lh+zW;qmD*`0}4((jw!Gp|=ZfQaR=SbZv0Q=hEqOw@F)mAqf^Ud8&04_*_y zM#P%aTQ(z_7Dm~$C~e#Bzc^;`emESsDPI&w=GP*46;5Y5yyl$K}uy3@un+*;wSx*4<}zE0551Y(1L^&Gh7U?CXVsR@$n)(b8# za_D~6n7O>jF>3BUrc9rlI87bt3z0O=j6Nq|t(awN<^PQRS!*Y2$8ux0JZJ9K9CHVG zru=r=EEc z3uMP{7yNn8?lJU7KVZjim;U+BIm3cy@w0{P2DYf33R0On>s>fIZ8-;Nm{s|XDZ!^Z z?Si{0wirb!TLK1qmh{L#u%)sDD1lxYto#Nii}usl+JNuQ>Dcl#WCdcCFWsEcrsF&Z zo^bm8fj{T7md6;N9g9-!?d?*fW{-KUdBLKCyRq3hbhYskjglN-GEWDB-WiVo&l=!U zeb?Z}`!LB2jx~%nJr7|n`M#C!0>s;lVIx$?#xSawZN@ODo1ktY=ba)PC<@#iKQ?_8 zt%;y!6+(^$wcx7^)vWGR&1$`DR#S4w`!Vu7KDls0E*q|(6a82|j0sBlZPqqF1vS!3 z&uBV`9m1N^Z!2)eq2g7UL_^sPufzInr>bH~(+J^O~ z^iVmhKZ})^LFK6aqW%efUBb3`-DUmzy7zQ|<8uMj1^K4yfNsrlKqpZUALNhYgiS#% z{6>hs$)ABQQ1aix%7RR6UcLORP-FjD7jznJ*Rm3OYJImD(xvHtL*fkW%p|F&(TK^!<6t61H$x(~uR zr61P!#mBFts{6s)aOQ!d0k^@G-HFQXwb5kHiA2wd2iN20$Hg92tekk%_`<3q*?b_; zd|E%bvp4e!zu{Y7!yB2s*BsLBu8&4$~Pi<7hS-04DQDiQGDOZsP2Hf73WYeKU)1md* zw6RRy=$|{zTrgQ@P-A4?z@=myOQX;62Iz;bJJqq zb+JB>s@s#S>q^vht+gfh9Z&2#{@~=sF>&8HvF?1TVQ;cwf1+Xkx+B>?lIU00*nc_M zKbh#CjDL-bPY1;Q8)Cyvc|BWIC3v0ww4GE`FGjx~1>3m1b-|wM=}-2YO7xuCs1|!J zE?DlgB+NDO+RlWz>yhv}NQPUwA>7=s?gYw-Q~D9*Yec{H@_IDUdwSz=qW9{yup>U7XW^1steT&azSiSsC z7v$_TyzPZ}M+Jy@3T;?9$^&6%C>!7ftIqsK&N$6M12Wrjy9c?pO`Sps}4q961-7ju199!-4{r1Ki;55 zsZQpYEGHn~qdO+)&%oa({0$$QRtC6p z!`4sM3y#{T53D*!L1Chy&!eX?=F$a@fBrjllt8wbXEc;9`8Ek;G5=G{HVgEI!?EL=1hUoRPchpx=Np`B z^d^C9z2qroTMdlCx$0l*xqoAmKyhP_oW(C)jZeOsxa9p5E4PMp0J=J~R&xKe-1z}3 zXYuii0GJq`{8T|zWpKv)t37W6Dk!eQbRgU4iJzbN=YdbLyfx4SAdRu`+bx>}itCh| zJ($>N{NT!`ShF>z%Y&gN)*A0$*(6YW04snje!(5TcqMV+>Zka%#niw;{F?-_2QUm| zarV-um~Rf|8R}N|V5hpZJ)dEwY$fg@(!i`Y5cGJW&i3|>w6{I$o0C26cGSQ;3y{$w znUNq?>-FR7OH}!?{*F4}jKYlOnMd=_sTL`N7U=*ZTLH4Vj~W$zj}~Zw7QYG;Ek2&H zY8lxEfQ~=LV_wBs>TbdC+7n#$Nh1LK2_lh(H`0(G4WH3hDP7$b!F2PskQ(4tC!hW z$xkZZsazcq>-)r-{qgGlbz|Im_#u5n2B?c!R$CHGZ@h0L!JOXcj@O;rcr9+d@Q@yt z+iRERS1S{BJ@MY*MBS-)?MNE=!r3Kf(%F`9w#6&jWcmd~LHQRZIki>~HB) literal 0 HcmV?d00001 diff --git a/app/__pycache__/gemini_mikrotik_integration.cpython-313.pyc b/app/__pycache__/gemini_mikrotik_integration.cpython-313.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bc90e3ba2cd6ebdacd1437dcd82f270e35d55297 GIT binary patch literal 7931 zcma)BTWlLwdOpM9WjLfH>VBi8k!;JREYXf_#kLYI()vUQ~ZTUd(?u=;Id1thKvY{L4dMgNuRf{HCHTZY1%agFn z>PY{$$L&rXt%}<0#F~RPPu53X+l98dG@=zxGudi=3uMLyG!_dhNUbIuF=Oi@lkF}d z!VOcu!H=3re>FK~E6>wOqBiOu_RrYN_cSw2hS*Lr%>;b8@A6?KE6q?*m4#6`LDS=M zLKq#sB%Bemq7avq8Br0=ODS2Ag-}@N7v7O542?>0iO!0O$bXGH8w)VHV@6U$87iJ+ zT8ziy>8zyOfKM(iW~Hp0lA!JzPQz-qvKKSZAm=0+u<123Vs=)dF)^8p$;xzEcdOzJ zDF#&HRK=-D5jW)7X=uGiCJA7bAWkV8^+auL%ivuLaHjOSy9P;T?;ErS?l2*?C{6J-?Jt|Uanx9@kA;|725!B zjKzJ$Heo9v)G6>as8Cvc^x4 z2yXv{$HELyxvj1%fEn|t=!HF+Pn5t|uk{79wp;b`+oA&`l7M4OuRecvG&~lLg)W6- zBWK^u_3Zo>vT|HZ2yrdqMn@uc(bh)GR4OKF-?yb;|woRlRct2?L6HQY<&8P_VLcqOw1jnbWx#w8+_5OfSja3s4MNBkFKn1&R;IS9J}G zfsX>K{=Pz8f8O=mnx?Hf|LUHzg}QUA-g93ywJ#<=O0Jw(YdV&<-|=j=^unuZnw?=UO*8?*`Yh#VT(JOINI zK&>_yTdcym<=vFT3&6=%wA(GQgLX&2nd=XwuF6RPK_O%%dR3&FkQ9{}Ra0i5l~$-l zfVGA?od5FfFHi%*C?SO!^4l{Qgfy+ejKN?~I}TJ|{^YMrrFs=Lr;2OJ8FN7y7E%NN zpDZBaprhZwUvOMQsr&LD?g;0_88Hc~r7B3WV(?tRsXHcEWr+aE6#LRIcApxp4E)@Zu9G;jG*PBTINGw_3NZfP?c&bqlT#C|p}LiQ12` zpu$PSaHYz#VJ%Wpj^*}9O}TE>fZAu(%kRS^>No{6m(?+hLm_|RiJ;bb;hCt!wlm<$ zosOWkLI9!mDq_eq-3c_f3ALnON*JF*^u}dF0|FXz{}WQ;q9De_q&O=;g9_?a5NDHR z{0D{enj#u{8-?XU^x~KRSe6qSE`1dM3VuOoe4-zVv3Em)s->V`NJv+~GoXNQ*i2jo zkeh-bs3Kq;6kt%`FNDUzQsZR)B>JwmLO#maE)l|Va zfoW1;+h|M-A;t-L{!C~*Bt$MwjGv7N2QOY4508fb?Ccq1(}6+$YZL+SN1U<(E>2eb zK78|hcq}>|nHY(N2l>~6!UZ`Y3YrQBfJ1;=Fo*g9#sb@BK@`;ti0d>sO9xd6WHKw4 zw`%UvIAowtNXn*23&0^6m~bF2Wkoru9uP9PZG(-lcQ~0EG1{)G*Z^D7`7Jxgzd$<9U5yod+Hn^cGVn&@!!{u0f=8wVj;!W`?+*cCpC`^$Q zQ^IKx^pPlpm3Uf#Ly0D5Gc-L7Uugvni|T1QO;d0yDUl}P>6=QBKOPh&vT#SZFEODR zE~K$1RDQWW=Nl95&SO!S1AdL+Uo!*{w%anbE^Mi&<{R=2QAdkUy7+V?L%$qajf}7QkFWYC4DaJHdLON8To71-N7(otdgL67d@l!JFtY_$=Exl*zayZIjAaF-l-)fR>DI9lP4>?2*IuN;Pg zb(*#bq>~8nZ>AVnbwM3%$Pq@hb&`EnxMd&H8LB%Z^j>ofXAJq>=@JL*x;>qd6w`(u z!W*`u>uMQsX1daP( zzBu>M+;Z)Y-~Sy;>JDwx_QL-^Y}*<4z-B}H>Yih(^~e9sd;Gb&A13)>Q^-x0nohF+ zSk>@5J4+)&`&l~Ob`!CEdtlr`dgh_xozD2pN2Mc9GDPO!VKY>zsunO`yj zBGFfjaJ_N__sS9O@`#F4?aooY%&lF|#2+qk+~UeB=k&Z{PVcwpe93)Ry<(>7@=2pL zL2e&`JVtW_%tivt7(|sQSC&lZPIV4knUv0fmz&n;ltfVvIK)yvSS8Tdx>LgtQPN#EFz*3cnJ;-Hs?KII8QrBypp`*6b15+FxVY{{ z67W(|nEdFU{-1RSO%V8J@Ul3;f* zGXb;MlVD18HYq6qyQ%D%IDG>rdJ_s2^_l>W>D+sOItE@C*zCENtNV&UmvD|hLILXD z>$@Ai9nLeGwRMY)3yt%)mg@?&`|?f*6dT$W2NwpHuC0L6-=F8UJmB$vV&CxWU-RtW z>ItkI{8{ROSm-$cG|WeT{xFh%8;F`a7n2Lg}ajXQ&eOx9F{s3(B~;ZEb6q{cLR_GyUH9)9N;~=7l6t{T-N@|Z;K-8Le(OI z`L5UlXRQVPPSq>u-3C3xwIC2BQ~T|81Tre`Sc5OG0hGJsd@6;aVsD-ajM_cNcIRou zPX(jPpk%9aJ)@8_jYfw7P2{nv2_$b&e2aAT0_p6Iw_xdXk2T3f?$)C_E^P&qAmKCK<9{I>YB0`geK80#4cm zRJub}GFn!5s96Xcbw@IN6I^5fC!y~^VMR5}b=@f{D)j9LW^_BoM!NrHdINhiFpc^P zD2$XChf z{0b9bz3bjXn~klDmlrNCi9f!QKL=^C`P1_^=4Y3#&L3X)cH{TKI~SkqB{lViH3Ci< zniem|@C?iV!H5GfqJ$q{a_#7Q98Oue=G0WiNa_VKn1o+DAlZ!G4kVlTSPbG)Es1q+ zEOuQJlf|Bz805>TnuQo#Qqr*)MSW=A1f~*=c!Q2&4KIdHL!mduVwjMTr($9j?hkSi zk{XNsBQf@EhMSl@qgdcC6GjN}*W?>py`%kUugB5&w5{H8mOu_?v=&dH=6b_3Dg3(XR>Y z(Ooh4S!xOx)otnQKcude646ew$ z8V8+4LKfUk3XT9V5KiC4Hn(W~!bC^#+b+_X8xZWLWrap@sKHb;at3E921#@Rixd`^ zA~pRw?oIRl-l92Z!$YcHK>;?5VV>A+jQtr$82&fJ^95=7f^>XA_IyEt|4xoRaT3P+ zmsP*B-(nd56N2UT4VKuw`CNf*{f)i)v8U?psUMwMZQQ@%=~?sie2yvF*Vnldo1Et^ z_akn;_Ks)U?se?>yx~xxp+E2b4^MSoy?g8Stq+HmUMqO~kDJ>TZ!O$fW`EB8lv}A? zsay6In)|{0Hg+ujVBrVLCku^z`E#EGynFt36r94Urn_Ue$3FA=xAziz+wZsc5pN?H zXIOx%ns+TR^J+e|!THxXKU!$Vp64oZ;nB%Z!*D10w91ENr*n9a{dB))c!2$MzybCD E0}?wN8vpQZ#OU{8c$JkS6(PXOFxS zZ6wHFm*DK~?Ck8^%EX zPX{-3hQrfgYqv;thk$$iX=HcH1G@=kOFd?mjK zN%=fhC*|`n!!kcHB24m$Q=^`{MCh?7WpIR4mva(~y;)Vvq%x{5DHja?$z$)dM+urJoTcYmxm)?2rBYJ6hSVE6Cq+h2!F3L_JSL(Jr4#b~hEoJt7755^}B z8(d!0wC7cvDZ0+-dVVM#H>jbaBaS6aPuEm!>eL00f&a!G09VkIi6j6FNhJaHGYZv# zrfSZG&;)Cf*n@7Aq^6wKRGj-+oBgIU!@749Z;h<=9jFUU`7EppiQ5oT zn5m$J5m+Lf;7BqcBfDv?IMV1&Bsdi&!R)B@Gt>-vg6TvvRMb`MIwI-mb5+aDU^TaC zKFe|j6~9X^b(A((v7nzbT*P>4K`#bJFjg@?LpaFFEMKID_^~Kwa8D(KkyLWxgu!9y zM+H!_W-zmoZm@~unIz(2G?legeKq{j=2<+M1q^7t17f3 z=01d`Agfi|gESTog{r%hk+z38HQCwArl*rsl771Jaj>w^9Aj**Ej@4y%(j?v1PHX{ z*z=Gabu>2LdO2E6IqImsMh*t#V1%|9ZJ%jMQ0Hmwo8LYKxue>W$U4#LAq;Kpw{sN_ z->?Hkw-r0TC+g=U%!}FVW{i;)hypqDq87+aTz~hiOMI1(1eCf|0yj4nD>m2|D>_9P z!%gB5M3P+IaB6A+rzL|ur)m(Nw2PW9bz(4Cb+*_5d(WvlggZShrgiy(R1DUkOhIYGSzW@!HKHzq%SpOO z!W?MA{B|6L1;eFCI;6kz1_P%UEU<@@Ys??WeFE%)!du2-x^=o$z1uo>!Rb9+t zxZlX|Dyp8UNojaUhLSa1PHUJb=KriME+cE=vso!~1n-B_$M7J)D2<1Rpp;gxEj$c3 z`~(1~BI^}#`bO8j#l)Wnen0S+w#tDM>F^F|{mDdw>j zqR<3nci#Caf0$HwRa;1zA-?G3pS`F{TGWk662&A%8H}Pn4>v+nt9Kid&}HUXaBN92 z7_E>4pp$#X5?{qn5&~2AuG+bFZm&8*@FDBtG1##K{@NUP5oB%FUG_Y-!tT1yp|J*6ro(dn#K7*0yxl1}$CX?!HP(|5~K8 zz=h{zSLG}-gVExggxsXj(1XMWpJ;>oH`#Rre-aoX&zBl?_ zpxhZ>x={A)U19gFdV_PvH^2}mZI{F_A-Bt{R_?&y3W9>!4joDJtw%~?8Y%R*RV+`_ z0!v+4(X9r_azl>O?&J#+`A^l`rUB;+4_qgU zP1S-MFeE#YyEDW`9R{oBB?Y$tQ@ButT)ui2;e$|=#U}`wBf=jHRFl^StkuSB! z;J8=32_L%Da)5ci83upwB;2m+4i^ls`^*}-IY4S;vpP1oR4OORN-9<8hMiD2yvirZ zEA)Z7;pCxHrkbF3DD(o^owrN>{_qWcv#@~VYt{mgN_dF-ye8?qtne{-kD3N7k_Sdo zBTS_iNFJ!^-CX2VC3~^ZMfgH!G*6fKw3^FjB^^wr71B@}XfuT@P?7L>=U1=uM?|oM zY0hd)GsTNi#dc!Nc#gcCb@_ZMm(Ew8E97MqjTo*Jypq$Y6efYVYHC{5s`1uYeLrIs zmJBDnvq1Q2&?S#hOq?8(_XBPuAVL7Cwag%jiK&S$iE{vZBBsGWmNot61BAy3rJ0Sn z;hdT&WTk^R4LG<`Nc$4NIzv&^J(i|eNUBumBjo)Exj#nRK1Ln)oQU$h>R*SD*mTu> z*}WKFdZH2fD{LIZ z@dX$Bi!YU9PnLtNwA|5 bool: + """Helper untuk cek boolean dari MikroTik (bisa bool atau string 'true')""" + if isinstance(value, bool): + return value + if isinstance(value, str): + return value.lower() == "true" + return False + + def estimate_tokens(self, text: str) -> int: + """Estimasi jumlah tokens dari text""" + return int(len(text) * self.estimated_tokens_per_char) + + def optimize_system_info(self, system_data: Dict) -> Dict: + """Optimize system information""" + resource = system_data.get("resource", {}) + + # Ambil hanya field penting + optimized = { + "board_name": resource.get("board-name", "N/A"), + "cpu_load": resource.get("cpu-load", "N/A"), + "cpu_count": resource.get("cpu-count", "N/A"), + "free_memory": self._format_memory(resource.get("free-memory", 0)), + "total_memory": self._format_memory(resource.get("total-memory", 0)), + "uptime": resource.get("uptime", "N/A"), + "version": resource.get("version", "N/A"), + } + + return optimized + + def optimize_interfaces(self, interfaces: List[Dict], max_interfaces: int = 20) -> List[Dict]: + """Optimize interfaces list""" + if not interfaces: + return [] + + # Prioritize: running interfaces, then physical, then others + running = [i for i in interfaces if self._is_true(i.get("running"))] + not_running = [i for i in interfaces if not self._is_true(i.get("running"))] + + # Ambil sample dari masing-masing + optimized = [] + + # Running interfaces (prioritas tinggi) + for i in running[:max_interfaces//2]: + optimized.append({ + "name": i.get("name", "N/A"), + "type": i.get("type", "N/A"), + "mtu": i.get("mtu", "N/A"), + "rx": i.get("rx-byte", "N/A"), + "tx": i.get("tx-byte", "N/A"), + "status": "running" + }) + + # Non-running interfaces + for i in not_running[:max_interfaces//4]: + optimized.append({ + "name": i.get("name", "N/A"), + "type": i.get("type", "N/A"), + "status": "not running", + "disabled": i.get("disabled", "N/A") + }) + + return optimized + + def optimize_ppp_secrets(self, secrets: List[Dict], max_secrets: int = 10) -> List[Dict]: + """Optimize PPP secrets list""" + if not secrets: + return [] + + # Ambil hanya field penting + optimized = [] + for secret in secrets[:max_secrets]: + optimized.append({ + "name": secret.get("name", "N/A"), + "service": secret.get("service", "N/A"), + "disabled": self._is_true(secret.get("disabled")), + "profile": secret.get("profile", "N/A") + }) + + return optimized + + def optimize_routes(self, routes: List[Dict], max_routes: int = 10) -> List[Dict]: + """Optimize routes list""" + if not routes: + return [] + + # Prioritize default routes dan active routes + default_routes = [r for r in routes if r.get("dst-address", "") == "0.0.0.0/0"] + other_routes = [r for r in routes if r.get("dst-address", "") != "0.0.0.0/0"] + + optimized = [] + + # Default routes + for route in default_routes[:2]: + optimized.append({ + "dst": route.get("dst-address", "N/A"), + "gateway": route.get("gateway", "N/A"), + "distance": route.get("distance", "N/A"), + "scope": route.get("scope", "N/A") + }) + + # Other important routes + for route in other_routes[:max_routes-2]: + optimized.append({ + "dst": route.get("dst-address", "N/A"), + "gateway": route.get("gateway", "N/A") + }) + + return optimized + + def optimize_logs(self, logs: List[Dict], max_logs: int = 40) -> List[Dict]: + """Optimize and filter logs (Prioritas: critical, error, warning)""" + if not logs: + return [] + + # Prioritas topik + high_priority = ['critical', 'error', 'warning', 'caps'] + + important = [] + others = [] + + # Sort logs (MikroTik biasanya kasih dari terlama ke terbaru, kita mau terbaru dulu) + sorted_logs = list(reversed(logs)) + + for log in sorted_logs: + topics = log.get("topics", "") + message = log.get("message", "") + + # Cek apakah mengandung topik prioritas + if any(p in topics for p in high_priority): + important.append({ + "time": log.get("time", "N/A"), + "topics": topics, + "msg": message + }) + else: + others.append({ + "time": log.get("time", "N/A"), + "topics": topics, + "msg": message + }) + + # Gabungkan: Important dulu, lalu others sampai limit + optimized = important[:max_logs] + if len(optimized) < max_logs: + optimized.extend(others[:max_logs - len(optimized)]) + + return optimized + + def optimize_hotspot(self, active_users: List[Dict], max_users: int = 15) -> List[Dict]: + """Optimize hotspot active users list""" + if not active_users: + return [] + + optimized = [] + for user in active_users[:max_users]: + optimized.append({ + "user": user.get("user", "N/A"), + "address": user.get("address", "N/A"), + "uptime": user.get("uptime", "N/A"), + "bytes_in": self._format_memory(user.get("bytes-in", 0)), + "bytes_out": self._format_memory(user.get("bytes-out", 0)) + }) + return optimized + + def create_optimized_context(self, mikrotik_data: Dict, question: str = "") -> Dict: + """Create optimized context untuk Gemini""" + optimized = { + "metadata": { + "original_size": len(json.dumps(mikrotik_data)), + "optimized_for": question[:50] + "..." if len(question) > 50 else question, + "strategy": "priority_based_compression" + }, + "summary": { + "system": self.optimize_system_info(mikrotik_data.get("system", {})), + "interfaces_count": len(mikrotik_data.get("interfaces", {}).get("interfaces", [])), + "running_interfaces_count": sum(1 for i in mikrotik_data.get("interfaces", {}).get("interfaces", []) if self._is_true(i.get("running"))), + "ppp_secrets_count": len(mikrotik_data.get("ppp", {}).get("secrets", [])), + "routes_count": len(mikrotik_data.get("network", {}).get("routes", [])), + }, + "details": { + "interfaces_sample": self.optimize_interfaces(mikrotik_data.get("interfaces", {}).get("interfaces", [])), + "ppp_secrets_sample": self.optimize_ppp_secrets(mikrotik_data.get("ppp", {}).get("secrets", [])), + "routes_sample": self.optimize_routes(mikrotik_data.get("network", {}).get("routes", [])), + "recent_logs": self.optimize_logs(mikrotik_data.get("logs", [])), + "hotspot_active": self.optimize_hotspot(mikrotik_data.get("hotspot", {}).get("active", [])), + } + } + + # Estimate tokens + context_text = json.dumps(optimized) + optimized["metadata"]["estimated_tokens"] = self.estimate_tokens(context_text) + optimized["metadata"]["compression_ratio"] = optimized["metadata"]["original_size"] / len(context_text) if len(context_text) > 0 else 1 + + return optimized + + def _format_memory(self, bytes_value: Any) -> str: + """Format memory bytes to human readable""" + try: + val = float(bytes_value) + except (ValueError, TypeError): + return "0 B" + + if val == 0: + return "0 B" + + for unit in ['B', 'KB', 'MB', 'GB']: + if val < 1024.0: + return f"{val:.1f} {unit}" + val /= 1024.0 + return f"{val:.1f} TB" + +# Example usage +if __name__ == "__main__": + import sys + + # Load sample data + try: + with open("../mikrotik_mcp_data.json", "r") as f: + data = json.load(f) + except: + print("Error loading data") + sys.exit(1) + + optimizer = ContextOptimizer() + optimized = optimizer.create_optimized_context(data, "test question") + + print(f"Original size: {optimized['metadata']['original_size']} bytes") + print(f"Optimized size: {len(json.dumps(optimized))} bytes") + print(f"Compression ratio: {optimized['metadata']['compression_ratio']:.1f}x") + print(f"Estimated tokens: {optimized['metadata']['estimated_tokens']}") + print(f"Max tokens: {optimizer.max_tokens}") + + if optimized["metadata"]["estimated_tokens"] > optimizer.max_tokens: + print("āš ļø Warning: Context mungkin terlalu besar") + else: + print("āœ… Context size OK") diff --git a/app/gemini_mikrotik_integration.py b/app/gemini_mikrotik_integration.py new file mode 100644 index 0000000..95f2151 --- /dev/null +++ b/app/gemini_mikrotik_integration.py @@ -0,0 +1,159 @@ +#!/usr/bin/env python3 +""" +Integrasi MikroTik MCP Data dengan Gemini AI - Versi Sederhana +""" + +import os +import json +from google import genai +from dotenv import load_dotenv +from datetime import datetime +from context_optimizer import ContextOptimizer +from update_data import gather_all_info, save_data + +# Load environment +load_dotenv() + +class MikroTikGeminiAssistant: + def __init__(self, data_file="data/mikrotik_mcp_data.json"): + # Setup Gemini Client (SDK Baru) + api_key = os.getenv("GEMINI_API_KEY") + if not api_key: + raise ValueError("GEMINI_API_KEY tidak ditemukan di .env") + + self.client = genai.Client(api_key=api_key) + self.model_id = "gemini-2.0-flash" + + + # Load data + self.data_file = data_file + self.data = self._load_data() + + # Setup Optimizer + self.optimizer = ContextOptimizer() + + # Inisialisasi Chat Session + self.chat_session = None + self._reset_chat() + + def refresh_data(self): + """Ambil data terbaru langsung dari MikroTik API""" + print("\nā³ Sedang mengambil data terbaru dari router...") + new_data = gather_all_info() + if new_data: + save_data(new_data, self.data_file) + self.data = new_data + self._reset_chat() + print("āœ… Data berhasil diperbarui dan sesi chat di-reset.") + return True + print("āŒ Gagal memperbarui data.") + return False + + def _reset_chat(self): + """Reset session chat dengan konteks MikroTik terbaru yang dioptimasi""" + optimized = self.optimizer.create_optimized_context(self.data) + + context = f"""Anda adalah asisten ahli MikroTik. Gunakan data JSON berikut sebagai SATU-SATUNYA sumber kebenaran kondisi router saat ini. +JANGAN membuat-buat nama interface, IP, atau status yang tidak ada di data ini. + +DATA ROUTER (OPTIMIZED JSON): +{json.dumps(optimized, indent=2)} + +INSTRUKSI: +1. Jika user bertanya tentang hal spesifik (seperti interface atau route), lihat di bagian 'details' pada JSON di atas. +2. Jika data tidak ada, katakan jujur bahwa data tersebut tidak tersedia di snapshot saat ini. +3. Jawab selalu dalam Bahasa Indonesia yang profesional dan format markdown. +4. Utamakan akurasi data daripada memberikan nasihat umum. +5. Jika user meminta data paling baru ("live" atau "sekarang"), beritahukan bahwa Anda menggunakan data terakhir yang diambil. User bisa mengetik `sync` atau `refresh` untuk melakukan sinkronisasi ulang data langsung dari router.""" + + self.chat_session = self.client.chats.create(model=self.model_id, history=[]) + # Kirim konteks awal + self.chat_session.send_message(context) + + def _load_data(self): + try: + with open(self.data_file, 'r') as f: + return json.load(f) + except: + return {"error": "Data tidak ditemukan"} + + def get_summary(self): + """Ringkasan data MikroTik""" + d = self.data + system = d.get("system", {}) + + # Handle cases where resource might be a list or missing + resource = system.get("resource", {}) + if isinstance(resource, list): + resource = resource[0] if len(resource) > 0 else {} + + return { + "device": resource.get("board-name", "N/A"), + "cpu": resource.get("cpu-load", "N/A"), + "memory": resource.get("free-memory", "N/A"), + "uptime": resource.get("uptime", "N/A"), + "version": resource.get("version", "N/A"), + "interfaces": len(d.get("interfaces", {}).get("interfaces", [])), + "ppp_secrets": len(d.get("ppp", {}).get("secrets", [])), + "timestamp": d.get("metadata", {}).get("timestamp", "N/A") + } + + def ask(self, question): + """Tanya Gemini menggunakan session chat yang aktif""" + if not self.chat_session: + self._reset_chat() + + try: + response = self.chat_session.send_message(question) + return response.text + except Exception as e: + return f"Error: {e}" + + def chat(self): + """Mode interaktif yang mendukung history""" + print("\n" + "="*40) + print("šŸ¤– MIKROTIK GEMINI INTERACTIVE CHAT") + print("="*40) + print("Ketik 'exit' untuk keluar") + print("Ketik 'reset' untuk mengulang percakapan\n") + + while True: + q = input("šŸ‘¤ Anda: ").strip() + + if not q: + continue + + if q.lower() in ['exit', 'quit', 'keluar']: + print("\nSampai jumpa! šŸ‘‹") + break + + if q.lower() in ['reset', 'refresh', 'sync', 'update']: + self.refresh_data() + continue + + print("\nšŸ¤– AI: Thinking...") + answer = self.ask(q) + print(f"\n{answer}\n") + print("-" * 20) + +# Main execution +if __name__ == "__main__": + import sys + + if not os.getenv("GEMINI_API_KEY"): + print("ERROR: Set GEMINI_API_KEY di .env file") + sys.exit(1) + + try: + assistant = MikroTikGeminiAssistant() + + if len(sys.argv) > 1: + # Command line mode + question = " ".join(sys.argv[1:]) + answer = assistant.ask(question) + print(answer) + else: + # Interactive mode + assistant.chat() + except Exception as e: + print(f"Error: {e}") diff --git a/app/list_models.py b/app/list_models.py new file mode 100644 index 0000000..5c41849 --- /dev/null +++ b/app/list_models.py @@ -0,0 +1,10 @@ +import google.generativeai as genai +import os +from dotenv import load_dotenv + +load_dotenv() +genai.configure(api_key=os.getenv("GEMINI_API_KEY")) + +for m in genai.list_models(): + if 'generateContent' in m.supported_generation_methods: + print(m.name) diff --git a/app/realtime_monitor.py b/app/realtime_monitor.py new file mode 100644 index 0000000..e1f80de --- /dev/null +++ b/app/realtime_monitor.py @@ -0,0 +1,119 @@ +#!/usr/bin/env python3 +""" +Real-time Monitoring untuk MikroTik dengan Gemini AI +""" + +import time +import json +from datetime import datetime +from gemini_mikrotik_integration import MikroTikGeminiAssistant + +class RealTimeMonitor: + def __init__(self, interval=60): + """Initialize monitor dengan interval detik""" + self.interval = interval + self.assistant = MikroTikGeminiAssistant() + self.metrics_history = [] + + def collect_metrics(self): + """Kumpulkan metrics dari MikroTik""" + summary = self.assistant.get_summary() + + metrics = { + "timestamp": datetime.now().isoformat(), + "cpu": summary["cpu"], + "memory": summary["memory"], + "interfaces": summary["interfaces"], + "ppp_secrets": summary["ppp_secrets"], + } + + self.metrics_history.append(metrics) + # Keep only last 100 readings + if len(self.metrics_history) > 100: + self.metrics_history = self.metrics_history[-100:] + + return metrics + + def check_alerts(self, metrics): + """Check untuk alert conditions""" + alerts = [] + + # CPU alert + try: + cpu = int(metrics["cpu"].replace("%", "")) + if cpu > 80: + alerts.append(f"CPU tinggi: {cpu}%") + except: + pass + + return alerts + + def generate_report(self, hours=1): + """Generate report untuk periode tertentu""" + # Filter metrics untuk periode terakhir + cutoff = datetime.now().timestamp() - (hours * 3600) + recent_metrics = [ + m for m in self.metrics_history + if datetime.fromisoformat(m["timestamp"]).timestamp() > cutoff + ] + + if not recent_metrics: + return "Tidak ada data untuk periode ini" + + # Analisis sederhana + avg_cpu = sum(int(m["cpu"].replace("%", "")) for m in recent_metrics) / len(recent_metrics) + + report = f"""šŸ“Š **Laporan Monitoring ({hours} jam)** + +**Statistik:** +- Periode: {len(recent_metrics)} readings +- CPU Rata-rata: {avg_cpu:.1f}% +- Interfaces: {recent_metrics[-1]['interfaces']} +- PPP Secrets: {recent_metrics[-1]['ppp_secrets']} + +**Status:** {'āš ļø' if avg_cpu > 70 else 'āœ…'}""" + + return report + + def start_monitoring(self): + """Start real-time monitoring loop""" + print(f"šŸ” Starting real-time monitoring (interval: {self.interval}s)") + print("Press Ctrl+C to stop\n") + + try: + while True: + metrics = self.collect_metrics() + alerts = self.check_alerts(metrics) + + print(f"[{metrics['timestamp'][11:19]}] ", end="") + print(f"CPU: {metrics['cpu']} ", end="") + print(f"Intf: {metrics['interfaces']} ", end="") + + if alerts: + print(f" āš ļø Alerts: {', '.join(alerts)}") + else: + print(" āœ…") + + time.sleep(self.interval) + + except KeyboardInterrupt: + print("\n\nšŸ›‘ Monitoring stopped") + print(f"Total readings: {len(self.metrics_history)}") + + # Generate final report + if self.metrics_history: + report = self.generate_report() + print("\n" + report) + +if __name__ == "__main__": + import sys + + interval = 60 # default 60 seconds + if len(sys.argv) > 1: + try: + interval = int(sys.argv[1]) + except: + pass + + monitor = RealTimeMonitor(interval=interval) + monitor.start_monitoring() diff --git a/app/test_history.py b/app/test_history.py new file mode 100644 index 0000000..94d11f5 --- /dev/null +++ b/app/test_history.py @@ -0,0 +1,20 @@ +from gemini_mikrotik_integration import MikroTikGeminiAssistant +import os + +def test(): + assistant = MikroTikGeminiAssistant() + + print("--- Test 1: CPU Load ---") + ans1 = assistant.ask("Berapa CPU load router saat ini?") + print(f"A: {ans1}") + + print("\n--- Test 2: History (Uptime) ---") + ans2 = assistant.ask("Berapa uptimenya?") + print(f"A: {ans2}") + + print("\n--- Test 3: Context Connection ---") + ans3 = assistant.ask("Apakah angka-angka tersebut masih dalam batas normal?") + print(f"A: {ans3}") + +if __name__ == "__main__": + test() diff --git a/app/update_data.py b/app/update_data.py new file mode 100644 index 0000000..3b2de02 --- /dev/null +++ b/app/update_data.py @@ -0,0 +1,114 @@ +#!/usr/bin/env python3 +""" +Script untuk update data MikroTik dari REST API +""" + +import requests +import json +import os +from datetime import datetime +from dotenv import load_dotenv + +# Load environment +load_dotenv() + +# MikroTik credentials +MIKROTIK_HOST = os.getenv("MIKROTIK_HOST", "192.168.1.1") +MIKROTIK_PORT = os.getenv("MIKROTIK_PORT", "8728") +MIKROTIK_USER = os.getenv("MIKROTIK_USER", "admin") +MIKROTIK_PASSWORD = os.getenv("MIKROTIK_PASSWORD", "password") + +# API endpoints +BASE_URL = f"http://{MIKROTIK_HOST}:{MIKROTIK_PORT}/rest" +AUTH = (MIKROTIK_USER, MIKROTIK_PASSWORD) + +def fetch_data(endpoint): + """Fetch data from MikroTik REST API""" + url = f"{BASE_URL}/{endpoint}" + try: + response = requests.get(url, auth=AUTH, timeout=10) + response.raise_for_status() + return response.json() + except Exception as e: + print(f"Error fetching {endpoint}: {e}") + return [] + +def gather_all_info(): + """Gather all MikroTik information""" + print("šŸ” Gathering MikroTik data...") + + data = { + "metadata": { + "timestamp": datetime.now().isoformat(), + "source": "MikroTik REST API", + "host": MIKROTIK_HOST + }, + "system": { + "resource": fetch_data("system/resource"), + "identity": fetch_data("system/identity"), + "license": fetch_data("system/license"), + "users": fetch_data("user") + }, + "interfaces": { + "interfaces": fetch_data("interface") + }, + "network": { + "ip_addresses": fetch_data("ip/address"), + "routes": fetch_data("ip/route") + }, + "ppp": { + "secrets": fetch_data("ppp/secret") + }, + "logs": fetch_data("log"), + "hotspot": { + "active": fetch_data("ip/hotspot/active"), + "users": fetch_data("ip/hotspot/user") + } + } + + # Calculate statistics + if data["interfaces"]["interfaces"]: + total = len(data["interfaces"]["interfaces"]) + running = sum(1 for i in data["interfaces"]["interfaces"] if i.get("running") == True) + data["interfaces"]["statistics"] = { + "total": total, + "running": running, + "not_running": total - running + } + + if data["ppp"]["secrets"]: + total = len(data["ppp"]["secrets"]) + enabled = sum(1 for s in data["ppp"]["secrets"] if s.get("disabled") == False) + data["ppp"]["statistics"] = { + "total_secrets": total, + "enabled_secrets": enabled + } + + print(f"āœ… Data gathered: {len(str(data))} bytes") + return data + +def save_data(data, filename="data/mikrotik_mcp_data.json"): + """Save data to JSON file""" + try: + with open(filename, 'w', encoding='utf-8') as f: + json.dump(data, f, indent=2, ensure_ascii=False) + print(f"šŸ’¾ Data saved to {filename}") + return True + except Exception as e: + print(f"Error saving data: {e}") + return False + +if __name__ == "__main__": + print("šŸ”„ Updating MikroTik MCP data...") + + # Check credentials + if not all([MIKROTIK_HOST, MIKROTIK_USER, MIKROTIK_PASSWORD]): + print("āš ļø MikroTik credentials not set in .env file") + print(" Using existing data file only") + else: + data = gather_all_info() + if data: + save_data(data) + print("āœ… Update completed successfully") + else: + print("āŒ Failed to gather data") diff --git a/config.yaml b/config.yaml new file mode 100644 index 0000000..e291928 --- /dev/null +++ b/config.yaml @@ -0,0 +1,64 @@ +# Konfigurasi MikroTik Gemini Integration + +# Gemini AI Settings +gemini: + model: "gemini-1.5-flash-latest" + temperature: 0.1 + max_output_tokens: 2048 + safety_settings: "BLOCK_NONE" + +# MikroTik Settings +mikrotik: + data_file: "data/mikrotik_mcp_data.json" + update_interval: 300 # seconds (5 minutes) + + # REST API settings (for data updates) + api: + host: "192.168.1.1" + port: 8728 + timeout: 10 + +# Context Optimization +context: + max_tokens: 8000 + max_interfaces_sample: 20 + max_ppp_secrets_sample: 10 + max_routes_sample: 10 + +# Monitoring +monitoring: + interval: 60 # seconds + alert_thresholds: + cpu: 80 # percentage + memory: 90 # percentage + interfaces_down: 10 # count + +# API Server +api_server: + host: "0.0.0.0" + port: 8000 + debug: false + cors_origins: + - "http://localhost:3000" + - "http://localhost:8000" + +# Logging +logging: + level: "INFO" + file: "logs/app.log" + max_size: 10485760 # 10MB + backup_count: 5 + +# Features +features: + enable_realtime_monitoring: true + enable_context_optimization: true + enable_auto_update: false + enable_alerts: true + +# Security +security: + require_api_key: true + allowed_ips: + - "127.0.0.1" + - "192.168.1.0/24" diff --git a/data/mikrotik_mcp_data.json b/data/mikrotik_mcp_data.json new file mode 100644 index 0000000..027402e --- /dev/null +++ b/data/mikrotik_mcp_data.json @@ -0,0 +1,48215 @@ +{ + "metadata": { + "timestamp": "2026-01-20T21:58:26.725610", + "source": "MikroTik REST API", + "host": "192.168.7.1" + }, + "system": { + "resource": { + "architecture-name": "x86_64", + "board-name": "x86", + "build-time": "2026-01-12 12:56:47", + "cpu": "Intel(R)", + "cpu-count": "2", + "cpu-frequency": "2229", + "cpu-load": "0", + "free-hdd-space": "5156110336", + "free-memory": "7730839552", + "platform": "MikroTik", + "total-hdd-space": "7751421952", + "total-memory": "8489271296", + "uptime": "6d14h15m36s", + "version": "7.21 (stable)", + "write-sect-since-reboot": "9569679", + "write-sect-total": "9569679" + }, + "identity": { + "name": "myHome-x86-level6" + }, + "license": { + "features": "", + "nlevel": "6", + "software-id": "4MZF-SFTR" + }, + "users": [ + { + ".id": "*2", + "address": "", + "disabled": "false", + "expired": "false", + "group": "full", + "inactivity-policy": "none", + "inactivity-timeout": "10m", + "last-logged-in": "2026-01-20 21:44:00", + "name": "admin11" + }, + { + ".id": "*3", + "address": "", + "disabled": "false", + "expired": "false", + "group": "full", + "inactivity-policy": "none", + "inactivity-timeout": "10m", + "last-logged-in": "2026-01-12 12:16:37", + "name": "chatbot" + } + ] + }, + "interfaces": { + "interfaces": [ + { + ".id": "*D", + "actual-mtu": "1500", + "default-name": "ether1", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "last-link-up-time": "2026-01-14 07:43:09", + "link-downs": "0", + "mac-address": "C0:3F:D5:6E:EF:29", + "mtu": "1500", + "name": "ether1", + "running": "true", + "rx-byte": "432973653895", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "543181690", + "tx-byte": "432612524536", + "tx-drop": "0", + "tx-error": "0", + "tx-packet": "541914350", + "tx-queue-drop": "213630", + "type": "ether", + "vrf": "main" + }, + { + ".id": "*11", + "actual-mtu": "1500", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "last-link-down-time": "2026-01-20 17:13:37", + "last-link-up-time": "2026-01-20 17:13:38", + "link-downs": "2", + "mac-address": "FE:2A:A2:A8:07:99", + "mtu": "1500", + "name": "aw", + "running": "true", + "rx-byte": "93148022", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "280844", + "tx-byte": "36239928", + "tx-drop": "0", + "tx-error": "0", + "tx-packet": "311434", + "tx-queue-drop": "0", + "type": "ovpn-out", + "vrf": "main" + }, + { + ".id": "*3", + "actual-mtu": "1500", + "disabled": "false", + "dynamic": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "l2mtu": "65535", + "last-link-up-time": "2026-01-14 07:42:57", + "link-downs": "0", + "mac-address": "06:BF:0F:2D:B7:89", + "mtu": "auto", + "name": "bridge-docker", + "running": "true", + "rx-byte": "99035781", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "280362", + "tx-byte": "123011927", + "tx-drop": "0", + "tx-error": "0", + "tx-packet": "338983", + "tx-queue-drop": "0", + "type": "bridge", + "vrf": "main" + }, + { + ".id": "*17", + "actual-mtu": "1500", + "disabled": "false", + "dynamic": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "l2mtu": "65535", + "last-link-up-time": "2026-01-14 07:42:58", + "link-downs": "0", + "mac-address": "6C:86:93:D8:57:4F", + "mtu": "auto", + "name": "dockers", + "running": "true", + "rx-byte": "0", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "0", + "tx-byte": "9690876", + "tx-drop": "0", + "tx-error": "0", + "tx-packet": "65940", + "tx-queue-drop": "0", + "type": "bridge", + "vrf": "main" + }, + { + ".id": "*1", + "actual-mtu": "65536", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "last-link-up-time": "2026-01-14 07:42:57", + "link-downs": "0", + "mac-address": "00:00:00:00:00:00", + "mtu": "65536", + "name": "lo", + "running": "true", + "rx-byte": "14875547", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "180703", + "tx-byte": "14875547", + "tx-drop": "0", + "tx-error": "0", + "tx-packet": "180703", + "tx-queue-drop": "0", + "type": "loopback", + "vrf": "main" + }, + { + ".id": "*12", + "actual-mtu": "1500", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "last-link-down-time": "2026-01-20 17:13:40", + "last-link-up-time": "2026-01-20 17:13:41", + "link-downs": "2", + "mac-address": "FE:C3:D0:10:99:8C", + "mtu": "1500", + "name": "ovpn-import1759218976", + "running": "true", + "rx-byte": "909648", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "56541", + "tx-byte": "10903158", + "tx-drop": "0", + "tx-error": "0", + "tx-packet": "99795", + "tx-queue-drop": "0", + "type": "ovpn-out", + "vrf": "main" + }, + { + ".id": "*C", + "disabled": "true", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "link-downs": "0", + "name": "tunnel", + "running": "false", + "rx-byte": "0", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "0", + "tx-byte": "0", + "tx-drop": "0", + "tx-error": "0", + "tx-packet": "0", + "tx-queue-drop": "0", + "type": "l2tp-out", + "vrf": "main" + }, + { + ".id": "*16", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "link-downs": "0", + "mac-address": "6C:86:93:D8:57:4F", + "mtu": "1500", + "name": "veth-ha", + "running": "false", + "rx-byte": "0", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "0", + "tx-byte": "0", + "tx-drop": "0", + "tx-error": "0", + "tx-packet": "0", + "tx-queue-drop": "0", + "type": "veth", + "vrf": "main" + }, + { + ".id": "*4", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "link-downs": "0", + "mac-address": "08:02:FF:60:C8:7E", + "mtu": "1500", + "name": "veth1", + "running": "false", + "rx-byte": "0", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "0", + "tx-byte": "0", + "tx-drop": "0", + "tx-error": "0", + "tx-packet": "0", + "tx-queue-drop": "0", + "type": "veth", + "vrf": "main" + }, + { + ".id": "*5", + "actual-mtu": "1500", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "last-link-up-time": "2026-01-14 07:43:17", + "link-downs": "0", + "mac-address": "00:C7:0C:4E:30:8D", + "mtu": "1500", + "name": "veth2", + "running": "true", + "rx-byte": "11716", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "166", + "slave": "true", + "tx-byte": "32028111", + "tx-drop": "0", + "tx-error": "0", + "tx-packet": "464413", + "tx-queue-drop": "0", + "type": "veth", + "vrf": "main" + }, + { + ".id": "*7", + "actual-mtu": "1500", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "last-link-up-time": "2026-01-14 07:43:09", + "link-downs": "0", + "mac-address": "C0:3F:D5:6E:EF:29", + "mtu": "1500", + "name": "vlan04_CCTV", + "running": "true", + "rx-byte": "0", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "0", + "tx-byte": "15053694", + "tx-drop": "19", + "tx-error": "0", + "tx-packet": "170822", + "tx-queue-drop": "0", + "type": "vlan", + "vrf": "main" + }, + { + ".id": "*8", + "actual-mtu": "1500", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "last-link-up-time": "2026-01-14 07:43:09", + "link-downs": "0", + "mac-address": "C0:3F:D5:6E:EF:29", + "mtu": "1500", + "name": "vlan07_IoT", + "running": "true", + "rx-byte": "0", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "0", + "tx-byte": "16518378", + "tx-drop": "21", + "tx-error": "0", + "tx-packet": "179714", + "tx-queue-drop": "0", + "type": "vlan", + "vrf": "main" + }, + { + ".id": "*9", + "actual-mtu": "1500", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "last-link-up-time": "2026-01-14 07:43:09", + "link-downs": "0", + "mac-address": "C0:3F:D5:6E:EF:29", + "mtu": "1500", + "name": "vlan15_hs", + "running": "true", + "rx-byte": "28345519994", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "122601646", + "tx-byte": "256671085850", + "tx-drop": "26105", + "tx-error": "0", + "tx-packet": "228410659", + "tx-queue-drop": "0", + "type": "vlan", + "vrf": "main" + }, + { + ".id": "*A", + "actual-mtu": "1500", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "last-link-up-time": "2026-01-14 07:43:09", + "link-downs": "0", + "mac-address": "C0:3F:D5:6E:EF:29", + "mtu": "1500", + "name": "vlan999_jujung", + "running": "true", + "rx-byte": "364425333452", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "333165387", + "tx-byte": "62800678197", + "tx-drop": "178112", + "tx-error": "0", + "tx-packet": "205583836", + "tx-queue-drop": "0", + "type": "vlan", + "vrf": "main" + }, + { + ".id": "*B", + "actual-mtu": "1500", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "last-link-up-time": "2026-01-14 07:43:09", + "link-downs": "0", + "mac-address": "C0:3F:D5:6E:EF:29", + "mtu": "1500", + "name": "vlan_100_proxmox", + "running": "true", + "rx-byte": "249583482", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "1011154", + "tx-byte": "1817531611", + "tx-drop": "285", + "tx-error": "0", + "tx-packet": "1798730", + "tx-queue-drop": "0", + "type": "vlan", + "vrf": "main" + }, + { + ".id": "*13", + "disabled": "false", + "fp-rps-drop": "0", + "fp-rx-byte": "0", + "fp-rx-packet": "0", + "fp-tx-byte": "0", + "fp-tx-packet": "0", + "last-link-down-time": "2026-01-19 21:14:52", + "last-link-up-time": "2026-01-14 07:43:18", + "link-downs": "1", + "mac-address": "72:39:33:BD:E0:B5", + "mtu": "1500", + "name": "wa-bot", + "running": "false", + "rx-byte": "102950165", + "rx-drop": "0", + "rx-error": "0", + "rx-packet": "280208", + "tx-byte": "149300898", + "tx-drop": "0", + "tx-error": "0", + "tx-packet": "721959", + "tx-queue-drop": "0", + "type": "veth", + "vrf": "main" + } + ], + "statistics": { + "total": 16, + "running": 0, + "not_running": 16 + } + }, + "network": { + "ip_addresses": [ + { + ".id": "*3", + "actual-interface": "ether1", + "address": "192.168.7.1/24", + "disabled": "false", + "dynamic": "false", + "interface": "ether1", + "invalid": "false", + "network": "192.168.7.0", + "slave": "false", + "vrf": "main" + }, + { + ".id": "*4", + "actual-interface": "vlan07_IoT", + "address": "192.168.77.1/24", + "disabled": "false", + "dynamic": "false", + "interface": "vlan07_IoT", + "invalid": "false", + "network": "192.168.77.0", + "slave": "false", + "vrf": "main" + }, + { + ".id": "*5", + "actual-interface": "vlan15_hs", + "address": "10.5.50.1/24", + "disabled": "false", + "dynamic": "false", + "interface": "vlan15_hs", + "invalid": "false", + "network": "10.5.50.0", + "slave": "false", + "vrf": "main" + }, + { + ".id": "*6", + "actual-interface": "ether1", + "address": "192.168.1.254/24", + "disabled": "true", + "dynamic": "false", + "interface": "ether1", + "invalid": "false", + "network": "192.168.1.0", + "slave": "false", + "vrf": "main" + }, + { + ".id": "*7", + "actual-interface": "vlan_100_proxmox", + "address": "192.168.200.1/24", + "disabled": "false", + "dynamic": "false", + "interface": "vlan_100_proxmox", + "invalid": "false", + "network": "192.168.200.0", + "slave": "false", + "vrf": "main" + }, + { + ".id": "*8", + "actual-interface": "bridge-docker", + "address": "172.19.0.1/24", + "disabled": "false", + "dynamic": "false", + "interface": "bridge-docker", + "invalid": "false", + "network": "172.19.0.0", + "slave": "false", + "vrf": "main" + }, + { + ".id": "*13", + "actual-interface": "dockers", + "address": "172.17.0.1/24", + "disabled": "false", + "dynamic": "false", + "interface": "dockers", + "invalid": "false", + "network": "172.17.0.0", + "slave": "false", + "vrf": "main" + }, + { + ".id": "*14", + "actual-interface": "vlan999_jujung", + "address": "192.168.10.100/24", + "disabled": "false", + "dynamic": "true", + "interface": "vlan999_jujung", + "invalid": "false", + "network": "192.168.10.0", + "slave": "false", + "vrf": "main" + }, + { + ".id": "*19", + "actual-interface": "aw", + "address": "10.8.0.17/24", + "disabled": "false", + "dynamic": "true", + "interface": "aw", + "invalid": "false", + "network": "10.8.0.0", + "slave": "false", + "vrf": "main" + }, + { + ".id": "*1A", + "actual-interface": "ovpn-import1759218976", + "address": "10.8.1.2/24", + "disabled": "false", + "dynamic": "true", + "interface": "ovpn-import1759218976", + "invalid": "false", + "network": "10.8.1.0", + "slave": "false", + "vrf": "main" + } + ], + "routes": [ + { + ".id": "*80000007", + "active": "true", + "dhcp": "true", + "distance": "1", + "dst-address": "0.0.0.0/0", + "dynamic": "true", + "gateway": "192.168.10.1", + "immediate-gw": "192.168.10.1%vlan999_jujung", + "inactive": "false", + "routing-table": "main", + "scope": "30", + "target-scope": "10" + }, + { + ".id": "*20194040", + "active": "true", + "connect": "true", + "distance": "0", + "dst-address": "10.5.50.0/24", + "dynamic": "true", + "gateway": "vlan15_hs", + "immediate-gw": "vlan15_hs", + "inactive": "false", + "local-address": "10.5.50.1%vlan15_hs", + "routing-table": "main", + "scope": "10", + "target-scope": "5" + }, + { + ".id": "*20194080", + "active": "true", + "connect": "true", + "distance": "0", + "dst-address": "10.8.0.0/24", + "dynamic": "true", + "gateway": "aw", + "immediate-gw": "aw", + "inactive": "false", + "local-address": "10.8.0.17%aw", + "routing-table": "main", + "scope": "10", + "target-scope": "5" + }, + { + ".id": "*20194050", + "active": "true", + "connect": "true", + "distance": "0", + "dst-address": "10.8.1.0/24", + "dynamic": "true", + "gateway": "ovpn-import1759218976", + "immediate-gw": "ovpn-import1759218976", + "inactive": "false", + "local-address": "10.8.1.2%ovpn-import1759218976", + "routing-table": "main", + "scope": "10", + "target-scope": "5" + }, + { + ".id": "*80000006", + "active": "true", + "disabled": "false", + "distance": "1", + "dst-address": "10.100.0.0/23", + "dynamic": "false", + "gateway": "192.168.7.118", + "immediate-gw": "192.168.7.118%ether1", + "inactive": "false", + "routing-table": "main", + "scope": "30", + "static": "true", + "target-scope": "10" + }, + { + ".id": "*80000004", + "active": "true", + "disabled": "false", + "distance": "1", + "dst-address": "10.169.168.0/21", + "dynamic": "false", + "gateway": "192.168.7.111", + "immediate-gw": "192.168.7.111%ether1", + "inactive": "false", + "routing-table": "main", + "scope": "30", + "static": "true", + "target-scope": "10" + }, + { + ".id": "*20194010", + "active": "true", + "connect": "true", + "distance": "0", + "dst-address": "172.17.0.0/24", + "dynamic": "true", + "gateway": "dockers", + "immediate-gw": "dockers", + "inactive": "false", + "local-address": "172.17.0.1%dockers", + "routing-table": "main", + "scope": "10", + "target-scope": "5" + }, + { + ".id": "*20194000", + "active": "true", + "connect": "true", + "distance": "0", + "dst-address": "172.19.0.0/24", + "dynamic": "true", + "gateway": "bridge-docker", + "immediate-gw": "bridge-docker", + "inactive": "false", + "local-address": "172.19.0.1%bridge-docker", + "routing-table": "main", + "scope": "10", + "target-scope": "5" + }, + { + ".id": "*20194020", + "active": "true", + "connect": "true", + "distance": "0", + "dst-address": "192.168.7.0/24", + "dynamic": "true", + "gateway": "ether1", + "immediate-gw": "ether1", + "inactive": "false", + "local-address": "192.168.7.1%ether1", + "routing-table": "main", + "scope": "10", + "target-scope": "5" + }, + { + ".id": "*20194070", + "active": "true", + "connect": "true", + "distance": "0", + "dst-address": "192.168.10.0/24", + "dynamic": "true", + "gateway": "vlan999_jujung", + "immediate-gw": "vlan999_jujung", + "inactive": "false", + "local-address": "192.168.10.100%vlan999_jujung", + "routing-table": "main", + "scope": "10", + "target-scope": "5" + }, + { + ".id": "*20194030", + "active": "true", + "connect": "true", + "distance": "0", + "dst-address": "192.168.77.0/24", + "dynamic": "true", + "gateway": "vlan07_IoT", + "immediate-gw": "vlan07_IoT", + "inactive": "false", + "local-address": "192.168.77.1%vlan07_IoT", + "routing-table": "main", + "scope": "10", + "target-scope": "5" + }, + { + ".id": "*80000002", + "active": "true", + "disabled": "false", + "distance": "1", + "dst-address": "192.168.88.0/24", + "dynamic": "false", + "gateway": "192.168.7.111", + "immediate-gw": "192.168.7.111%ether1", + "inactive": "false", + "routing-table": "main", + "scope": "30", + "static": "true", + "target-scope": "10" + }, + { + ".id": "*20194060", + "active": "true", + "connect": "true", + "distance": "0", + "dst-address": "192.168.200.0/24", + "dynamic": "true", + "gateway": "vlan_100_proxmox", + "immediate-gw": "vlan_100_proxmox", + "inactive": "false", + "local-address": "192.168.200.1%vlan_100_proxmox", + "routing-table": "main", + "scope": "10", + "target-scope": "5" + } + ] + }, + "ppp": { + "secrets": [ + { + ".id": "*C9", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-30 00:02:43", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user1", + "password": "user1", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*CA", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-30 00:02:43", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user2", + "password": "user2", + "profile": "EXPIRED", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*CB", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:26", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user3", + "password": "user3", + "profile": "EXPIRED", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*CC", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-logged-out": "2025-10-11 07:39:22", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user4", + "password": "user4", + "profile": "EXPIRED", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*CD", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:27", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user5", + "password": "user5", + "profile": "EXPIRED", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*CE", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:28", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user6", + "password": "user6", + "profile": "EXPIRED", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*CF", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:28", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user7", + "password": "user7", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*D0", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:26", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user8", + "password": "user8", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*D1", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:28", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user9", + "password": "user9", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*D2", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:29", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user10", + "password": "user10", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*D3", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:28", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user11", + "password": "user11", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*D4", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:24", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user12", + "password": "user12", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*D5", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:26", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user13", + "password": "user13", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*D6", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:28", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user14", + "password": "user14", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*D7", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:27", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user15", + "password": "user15", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*D8", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:25", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user16", + "password": "user16", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*D9", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:28", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user17", + "password": "user17", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*DA", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:27", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user18", + "password": "user18", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*DB", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:29", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user19", + "password": "user19", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*DC", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:26", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user20", + "password": "user20", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*DD", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:04", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user21", + "password": "user21", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*DE", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:04", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user22", + "password": "user22", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*DF", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:05", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user23", + "password": "user23", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*E0", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:05", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user24", + "password": "user24", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*E1", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:06", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user25", + "password": "user25", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*E2", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:06", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user26", + "password": "user26", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*E3", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:06", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user27", + "password": "user27", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*E4", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:06", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user28", + "password": "user28", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*E5", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:06", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user29", + "password": "user29", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*E6", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:07", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user30", + "password": "user30", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*E7", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:07", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user31", + "password": "user31", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*E8", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:07", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user32", + "password": "user32", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*E9", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:07", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user33", + "password": "user33", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*EA", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:07", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user34", + "password": "user34", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*EB", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:07", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user35", + "password": "user35", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*EC", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-logged-out": "2025-12-29 22:46:08", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user36", + "password": "user36", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*ED", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:08", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user37", + "password": "user37", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*EE", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:08", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user38", + "password": "user38", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*EF", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:08", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user39", + "password": "user39", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*F0", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:08", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user40", + "password": "user40", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*F1", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:12", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user41", + "password": "user41", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*F2", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:08", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user42", + "password": "user42", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*F3", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:09", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user43", + "password": "user43", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*F4", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:09", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user44", + "password": "user44", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*F5", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:09", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user45", + "password": "user45", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*F6", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:09", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user46", + "password": "user46", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*F7", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:09", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user47", + "password": "user47", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*F8", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:10", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user48", + "password": "user48", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*F9", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:10", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user49", + "password": "user49", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*FA", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:10", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user50", + "password": "user50", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*FB", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:10", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user51", + "password": "user51", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*FC", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:10", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user52", + "password": "user52", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*FD", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:10", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user53", + "password": "user53", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*FE", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:10", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user54", + "password": "user54", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*FF", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:11", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user55", + "password": "user55", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*100", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:11", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user56", + "password": "user56", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*101", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:11", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user57", + "password": "user57", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*102", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:11", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user58", + "password": "user58", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*103", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:11", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user59", + "password": "user59", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*104", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:12", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user60", + "password": "user60", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*105", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:12", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user61", + "password": "user61", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*106", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:12", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user62", + "password": "user62", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*107", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:12", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user63", + "password": "user63", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*108", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-12-29 22:46:12", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user64", + "password": "user64", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*109", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:18", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user65", + "password": "user65", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*10A", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:17", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user66", + "password": "user66", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*10B", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:19", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user67", + "password": "user67", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*10C", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:18", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user68", + "password": "user68", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*10D", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:20", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user69", + "password": "user69", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*10E", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:20", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user70", + "password": "user70", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*10F", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:17", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user71", + "password": "user71", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*110", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:20", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user72", + "password": "user72", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*111", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:21", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user73", + "password": "user73", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*112", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:19", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user74", + "password": "user74", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*113", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:22", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user75", + "password": "user75", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*114", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:16", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user76", + "password": "user76", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*115", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-logged-out": "2025-10-11 07:39:22", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user77", + "password": "user77", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*116", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:21", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user78", + "password": "user78", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*117", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:21", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user79", + "password": "user79", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*118", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:20", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user80", + "password": "user80", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*119", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-logged-out": "2025-10-11 07:39:22", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user81", + "password": "user81", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*11A", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:16", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user82", + "password": "user82", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*11B", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:21", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user83", + "password": "user83", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*11C", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:18", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user84", + "password": "user84", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*11D", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:22", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user85", + "password": "user85", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*11E", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:29", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user86", + "password": "user86", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*11F", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:24", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user87", + "password": "user87", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*120", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:25", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user88", + "password": "user88", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*121", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-11 07:39:25", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user89", + "password": "user89", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*122", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-12 17:22:10", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user90", + "password": "user90", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*123", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-12 17:22:10", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user91", + "password": "user91", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*124", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-12 17:22:09", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user92", + "password": "user92", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*125", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-12 17:22:09", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user93", + "password": "user93", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*126", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-12 17:22:10", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user94", + "password": "user94", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*127", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-12 17:22:09", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user95", + "password": "user95", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*128", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-12 17:22:09", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user96", + "password": "user96", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*129", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-12 17:22:10", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user97", + "password": "user97", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*12A", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-12 17:22:09", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user98", + "password": "user98", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*12B", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-12 17:22:09", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user99", + "password": "user99", + "profile": "profile1", + "routes": "", + "service": "pppoe" + }, + { + ".id": "*12C", + "caller-id": "", + "disabled": "false", + "ipv6-routes": "", + "last-caller-id": "00:0C:42:AE:6C:4A", + "last-disconnect-reason": "peer-request", + "last-logged-out": "2025-10-12 17:22:09", + "limit-bytes-in": "0", + "limit-bytes-out": "0", + "name": "user100", + "password": "user100", + "profile": "profile1", + "routes": "", + "service": "pppoe" + } + ], + "statistics": { + "total_secrets": 100, + "enabled_secrets": 0 + } + }, + "logs": [ + { + ".id": "*257", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-04 09:55:17", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*256", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-04 10:05:19", + "topics": "hotspot,info,debug" + }, + { + ".id": "*255", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-04 10:08:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*254", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-04 10:08:07", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*253", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-04 11:28:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*252", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-04 11:38:20", + "topics": "hotspot,info,debug" + }, + { + ".id": "*251", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-04 11:38:20", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*250", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-04 12:53:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*24F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-04 13:02:19", + "topics": "hotspot,info,debug" + }, + { + ".id": "*24E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-04 13:02:19", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*24D", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-04 13:07:58", + "topics": "hotspot,info,debug" + }, + { + ".id": "*24C", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-04 14:02:06", + "topics": "hotspot,info,debug" + }, + { + ".id": "*24B", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-04 14:02:06", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*24A", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-04 16:12:27", + "topics": "hotspot,info,debug" + }, + { + ".id": "*249", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-04 16:18:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*248", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-04 16:18:41", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*247", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-04 16:24:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*246", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-04 16:34:54", + "topics": "hotspot,info,debug" + }, + { + ".id": "*245", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-04 16:34:54", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*244", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-04 17:44:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*243", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-04 18:00:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*242", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-04 18:00:05", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*241", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-04 19:19:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*240", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-04 19:25:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*23F", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-04 19:25:11", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*23E", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-04 19:32:55", + "topics": "hotspot,info,debug" + }, + { + ".id": "*23D", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-04 19:40:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*23C", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-04 19:40:32", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*23B", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-04 21:13:40", + "topics": "hotspot,info,debug" + }, + { + ".id": "*23A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-04 21:38:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*239", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): trying to log in by mac-cookie", + "time": "2026-01-04 21:41:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*238", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged in", + "time": "2026-01-04 21:41:32", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*237", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-04 21:41:34", + "topics": "hotspot,info,debug" + }, + { + ".id": "*236", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-04 21:41:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*235", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-04 21:41:37", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*234", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-04 21:51:38", + "topics": "hotspot,info,debug" + }, + { + ".id": "*233", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-04 21:51:38", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*232", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-04 22:03:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*231", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): trying to log in by mac-cookie", + "time": "2026-01-04 22:24:43", + "topics": "hotspot,info,debug" + }, + { + ".id": "*230", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged in", + "time": "2026-01-04 22:24:43", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*22F", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-04 22:24:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*22E", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-04 22:24:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*22D", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-04 22:24:48", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*22C", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-05 07:05:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*22B", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-05 07:38:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*22A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-05 07:38:31", + "topics": "hotspot,info,debug" + }, + { + ".id": "*229", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-05 07:38:31", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*228", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-05 07:49:42", + "topics": "hotspot,info,debug" + }, + { + ".id": "*227", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-05 07:58:01", + "topics": "hotspot,info,debug" + }, + { + ".id": "*226", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-05 07:58:01", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*225", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-05 08:53:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*224", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-05 08:58:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*223", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-05 08:58:41", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*222", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-05 09:00:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*221", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-05 09:11:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*220", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-05 09:11:47", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*21F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-05 09:13:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*21E", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged out: keepalive timeout", + "time": "2026-01-05 09:39:43", + "topics": "hotspot,info,debug" + }, + { + ".id": "*21D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-05 11:08:08", + "topics": "hotspot,info,debug" + }, + { + ".id": "*21C", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-05 11:08:08", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*21B", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-05 11:51:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*21A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-05 11:57:24", + "topics": "hotspot,info,debug" + }, + { + ".id": "*219", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-05 11:57:24", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*218", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-05 12:31:01", + "topics": "hotspot,info,debug" + }, + { + ".id": "*217", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-05 12:31:06", + "topics": "hotspot,info,debug" + }, + { + ".id": "*216", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-05 12:31:06", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*215", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-05 12:52:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*214", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-05 12:58:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*213", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-05 12:58:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*212", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): trying to log in by mac-cookie", + "time": "2026-01-05 13:04:30", + "topics": "hotspot,info,debug" + }, + { + ".id": "*211", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged in", + "time": "2026-01-05 13:04:30", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*210", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-05 13:06:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*20F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-05 13:14:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*20E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-05 13:14:23", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*20D", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-05 14:14:42", + "topics": "hotspot,info,debug" + }, + { + ".id": "*20C", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-05 14:14:42", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*20B", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-05 14:41:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*20A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-05 14:43:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*209", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-05 14:44:25", + "topics": "hotspot,info,debug" + }, + { + ".id": "*208", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-05 14:49:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*207", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-05 14:49:02", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*206", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-05 14:50:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*205", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-05 14:50:09", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*204", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-05 19:12:06", + "topics": "hotspot,info,debug" + }, + { + ".id": "*203", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-05 19:12:34", + "topics": "hotspot,info,debug" + }, + { + ".id": "*202", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-05 19:12:34", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*201", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-05 19:13:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*200", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-05 19:13:48", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1FF", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-05 20:53:29", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1FE", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-05 21:09:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1FD", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-05 21:09:11", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1FC", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-05 22:15:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1FB", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-05 22:17:59", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1FA", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-05 22:17:59", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1F9", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-05 23:55:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F8", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-06 02:44:29", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F7", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-06 04:08:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F6", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-06 04:20:24", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F5", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-06 04:20:24", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1F4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-06 06:39:20", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F3", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-06 06:39:20", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1F2", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-06 06:46:25", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F1", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-06 06:57:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F0", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by http-chap", + "time": "2026-01-06 07:31:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1EF", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-06 07:31:15", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1EE", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-06 08:35:58", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1ED", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-06 08:35:58", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1EC", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-06 08:44:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1EB", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-06 08:56:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1EA", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-06 08:56:23", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1E9", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged out: keepalive timeout", + "time": "2026-01-06 09:47:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1E8", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.108): trying to log in by http-chap", + "time": "2026-01-06 09:54:51", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1E7", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.108): logged in", + "time": "2026-01-06 09:54:51", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1E6", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): trying to log in by mac-cookie", + "time": "2026-01-06 10:13:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1E5", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged in", + "time": "2026-01-06 10:13:47", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1E4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-06 10:42:59", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1E3", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-06 10:43:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1E2", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-06 10:43:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1E1", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-06 11:40:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1E0", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-06 11:41:30", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1DF", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-06 11:41:30", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1DE", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.108): logged out: keepalive timeout", + "time": "2026-01-06 11:43:54", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1DD", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-06 11:46:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1DC", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-06 11:47:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1DB", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-06 11:47:21", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1DA", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-06 12:08:20", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D9", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-06 12:10:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D8", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged out: keepalive timeout", + "time": "2026-01-06 12:10:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D7", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-06 12:32:50", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D6", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-06 12:32:50", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1D5", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-06 12:52:59", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.128): trying to log in by mac-cookie", + "time": "2026-01-06 13:00:18", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D3", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.128): logged in", + "time": "2026-01-06 13:00:18", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1D2", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.128): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-06 13:00:20", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D1", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.108): trying to log in by mac-cookie", + "time": "2026-01-06 14:22:54", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D0", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.108): logged in", + "time": "2026-01-06 14:22:54", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1CF", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by cookie", + "time": "2026-01-06 14:27:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1CE", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-06 14:27:09", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1CD", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-06 14:31:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1CC", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): trying to log in by mac-cookie", + "time": "2026-01-06 14:38:29", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1CB", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged in", + "time": "2026-01-06 14:38:29", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1CA", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by http-chap", + "time": "2026-01-06 14:38:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1C9", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-06 14:38:49", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1C8", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): trying to log in by mac-cookie", + "time": "2026-01-06 16:20:34", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1C7", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged in", + "time": "2026-01-06 16:20:34", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1C6", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-06 16:20:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1C5", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-06 17:37:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1C4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-06 17:37:05", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1C3", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.108): logged out: keepalive timeout", + "time": "2026-01-06 17:38:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1C2", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-06 18:01:08", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1C1", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-06 18:01:08", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1C0", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-06 18:19:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1BF", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-06 18:25:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1BE", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-06 18:25:17", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1BD", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-06 18:46:29", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1BC", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-06 18:57:12", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1BB", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-06 18:57:12", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1BA", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged out: keepalive timeout", + "time": "2026-01-06 19:30:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B9", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): trying to log in by mac-cookie", + "time": "2026-01-06 19:32:56", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B8", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged in", + "time": "2026-01-06 19:32:56", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1B7", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-06 20:30:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B6", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-06 21:45:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B5", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-06 21:45:36", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1B4", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-06 22:05:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B3", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-06 22:44:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B2", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): trying to log in by mac-cookie", + "time": "2026-01-07 02:57:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B1", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged in", + "time": "2026-01-07 02:57:14", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1B0", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-07 02:57:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1AF", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-07 02:57:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1AE", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-07 02:57:17", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1AD", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by cookie", + "time": "2026-01-07 06:00:58", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1AC", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-07 06:00:58", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1AB", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-07 06:31:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1AA", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-07 06:45:29", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A9", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-07 07:16:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A8", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-07 07:26:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A7", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-07 07:26:11", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1A6", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged out: keepalive timeout", + "time": "2026-01-07 07:50:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A5", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-07 08:07:20", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A4", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): trying to log in by mac-cookie", + "time": "2026-01-07 10:18:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A3", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged in", + "time": "2026-01-07 10:18:45", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1A2", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged out: keepalive timeout", + "time": "2026-01-07 10:22:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A1", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): trying to log in by mac-cookie", + "time": "2026-01-07 10:22:38", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A0", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged in", + "time": "2026-01-07 10:22:38", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*19F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-07 11:10:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*19E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-07 11:10:35", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*19D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-07 11:55:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*19C", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-07 12:03:28", + "topics": "hotspot,info,debug" + }, + { + ".id": "*19B", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-07 12:03:28", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*19A", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-07 12:39:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*199", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-07 12:39:39", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*198", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by http-chap", + "time": "2026-01-07 14:23:57", + "topics": "hotspot,info,debug" + }, + { + ".id": "*197", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-07 14:23:57", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*196", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-07 15:32:27", + "topics": "hotspot,info,debug" + }, + { + ".id": "*195", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-07 15:40:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*194", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by cookie", + "time": "2026-01-07 16:32:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*193", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-07 16:32:22", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*192", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-07 16:41:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*191", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-07 16:41:53", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*190", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-07 17:54:57", + "topics": "hotspot,info,debug" + }, + { + ".id": "*18F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.128): trying to log in by mac-cookie", + "time": "2026-01-07 18:04:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*18E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.128): logged in", + "time": "2026-01-07 18:04:11", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*18D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.128): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-07 18:04:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*18C", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-07 18:06:29", + "topics": "hotspot,info,debug" + }, + { + ".id": "*18B", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-07 18:06:29", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*18A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-07 18:19:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*189", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-07 18:28:52", + "topics": "hotspot,info,debug" + }, + { + ".id": "*188", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-07 18:28:52", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*187", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-07 20:09:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*186", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-07 20:18:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*185", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-07 20:18:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*184", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-07 22:30:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*183", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by http-chap", + "time": "2026-01-07 22:32:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*182", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-07 22:32:39", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*181", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-08 00:10:43", + "topics": "hotspot,info,debug" + }, + { + ".id": "*180", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by cookie", + "time": "2026-01-08 06:15:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*17F", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-08 06:15:23", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*17E", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-08 06:35:26", + "topics": "hotspot,info,debug" + }, + { + ".id": "*17D", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-08 06:55:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*17C", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-08 11:01:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*17B", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-08 11:01:45", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*17A", + "extra-info": "", + "message": "->: koming123 (10.5.50.136): logged out: session timeout", + "time": "2026-01-08 12:04:56", + "topics": "hotspot,info,debug" + }, + { + ".id": "*179", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by http-chap", + "time": "2026-01-08 16:43:42", + "topics": "hotspot,info,debug" + }, + { + ".id": "*178", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-08 16:43:42", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*177", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-08 17:23:08", + "topics": "hotspot,info,debug" + }, + { + ".id": "*176", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-08 17:25:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*175", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-08 17:25:02", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*174", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by http-chap", + "time": "2026-01-08 22:06:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*173", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-08 22:06:53", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*172", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-08 22:34:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*171", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-08 22:34:34", + "topics": "hotspot,info,debug" + }, + { + ".id": "*170", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-08 22:34:34", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*16F", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-08 22:36:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*16E", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-08 22:37:30", + "topics": "hotspot,info,debug" + }, + { + ".id": "*16D", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-08 22:37:30", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*16C", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-08 23:11:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*16B", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-08 23:50:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*16A", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-08 23:59:01", + "topics": "hotspot,info,debug" + }, + { + ".id": "*169", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-09 01:40:52", + "topics": "hotspot,info,debug" + }, + { + ".id": "*168", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-09 01:40:52", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*167", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-09 04:40:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*166", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-09 04:40:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*165", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-09 04:40:22", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*164", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-09 05:14:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*163", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by cookie", + "time": "2026-01-09 06:13:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*162", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-09 06:13:05", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*161", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.122): trying to log in by cookie", + "time": "2026-01-09 06:27:08", + "topics": "hotspot,info,debug" + }, + { + ".id": "*160", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.122): logged in", + "time": "2026-01-09 06:27:08", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*15F", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-09 06:31:24", + "topics": "hotspot,info,debug" + }, + { + ".id": "*15E", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-09 06:56:08", + "topics": "hotspot,info,debug" + }, + { + ".id": "*15D", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.100): trying to log in by http-chap", + "time": "2026-01-09 06:57:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*15C", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.100): logged in", + "time": "2026-01-09 06:57:36", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*15B", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.100): logged out: keepalive timeout", + "time": "2026-01-09 08:14:38", + "topics": "hotspot,info,debug" + }, + { + ".id": "*15A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-09 08:30:42", + "topics": "hotspot,info,debug" + }, + { + ".id": "*159", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-09 08:30:42", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*158", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-09 09:18:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*157", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-09 09:19:12", + "topics": "hotspot,info,debug" + }, + { + ".id": "*156", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-09 09:19:12", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*155", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-09 10:31:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*154", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-09 10:33:19", + "topics": "hotspot,info,debug" + }, + { + ".id": "*153", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-09 10:33:19", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*152", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-09 10:38:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*151", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-09 10:38:14", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*150", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-09 10:42:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*14F", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.100): trying to log in by mac-cookie", + "time": "2026-01-09 10:43:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*14E", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.100): logged in", + "time": "2026-01-09 10:43:48", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*14D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-09 10:53:50", + "topics": "hotspot,info,debug" + }, + { + ".id": "*14C", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-09 11:05:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*14B", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-09 11:05:23", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*14A", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): trying to log in by mac-cookie", + "time": "2026-01-09 11:07:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*149", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged in", + "time": "2026-01-09 11:07:53", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*148", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-09 11:07:55", + "topics": "hotspot,info,debug" + }, + { + ".id": "*147", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-09 11:07:57", + "topics": "hotspot,info,debug" + }, + { + ".id": "*146", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-09 11:07:57", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*145", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-09 11:18:54", + "topics": "hotspot,info,debug" + }, + { + ".id": "*144", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-09 11:25:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*143", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-09 11:25:11", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*142", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.122): trying to log in by http-chap", + "time": "2026-01-09 11:44:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*141", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.122): logged in", + "time": "2026-01-09 11:44:37", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*140", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-09 11:58:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*13F", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-09 12:10:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*13E", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-09 12:15:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*13D", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-09 12:18:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*13C", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-09 12:18:05", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*13B", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-09 12:58:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*13A", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.100): logged out: keepalive timeout", + "time": "2026-01-09 13:15:28", + "topics": "hotspot,info,debug" + }, + { + ".id": "*139", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): trying to log in by mac-cookie", + "time": "2026-01-09 13:21:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*138", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged in", + "time": "2026-01-09 13:21:36", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*137", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-09 13:21:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*136", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-09 14:01:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*135", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-09 14:01:09", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*134", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-09 14:54:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*133", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-09 15:25:59", + "topics": "hotspot,info,debug" + }, + { + ".id": "*132", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-09 15:25:59", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*131", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-09 15:29:06", + "topics": "hotspot,info,debug" + }, + { + ".id": "*130", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-09 15:37:01", + "topics": "hotspot,info,debug" + }, + { + ".id": "*12F", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-09 15:37:01", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*12E", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by http-chap", + "time": "2026-01-09 15:56:57", + "topics": "hotspot,info,debug" + }, + { + ".id": "*12D", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-09 15:56:57", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*12C", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-09 17:11:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*12B", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-09 17:11:41", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*12A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-09 21:16:55", + "topics": "hotspot,info,debug" + }, + { + ".id": "*129", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-09 21:17:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*128", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-09 21:17:37", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*127", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-09 21:59:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*126", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-09 22:00:19", + "topics": "hotspot,info,debug" + }, + { + ".id": "*125", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-09 22:00:19", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*124", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-09 22:03:55", + "topics": "hotspot,info,debug" + }, + { + ".id": "*123", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-09 22:17:31", + "topics": "hotspot,info,debug" + }, + { + ".id": "*122", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-09 22:17:31", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*121", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged out: lost dhcp lease", + "time": "2026-01-09 22:23:12", + "topics": "hotspot,info,debug" + }, + { + ".id": "*120", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-09 23:31:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*11F", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-10 00:14:46", + "topics": "hotspot,info,debug" + }, + { + ".id": "*11E", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-10 06:45:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*11D", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-10 06:45:04", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*11C", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.139): trying to log in by http-chap", + "time": "2026-01-10 07:01:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*11B", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.139): logged in", + "time": "2026-01-10 07:01:07", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*11A", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.136): trying to log in by http-chap", + "time": "2026-01-10 07:02:43", + "topics": "hotspot,info,debug" + }, + { + ".id": "*119", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.136): login failed: no more sessions are allowed for user", + "time": "2026-01-10 07:02:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*118", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-10 07:03:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*117", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.136): trying to log in by http-chap", + "time": "2026-01-10 07:04:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*116", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.136): logged in", + "time": "2026-01-10 07:04:09", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*115", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-10 07:07:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*114", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.136): logged out: keepalive timeout", + "time": "2026-01-10 07:34:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*113", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): trying to log in by mac-cookie", + "time": "2026-01-10 07:44:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*112", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged in", + "time": "2026-01-10 07:44:05", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*111", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.144): trying to log in by http-chap", + "time": "2026-01-10 07:44:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*110", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.144): trying to log in by http-chap", + "time": "2026-01-10 07:44:18", + "topics": "hotspot,info,debug" + }, + { + ".id": "*10F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.144): login failed: already authorizing, retry later", + "time": "2026-01-10 07:44:18", + "topics": "hotspot,info,debug" + }, + { + ".id": "*10E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.144): login failed: no more sessions are allowed for user", + "time": "2026-01-10 07:44:19", + "topics": "hotspot,info,debug" + }, + { + ".id": "*10D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.130): logged out: keepalive timeout", + "time": "2026-01-10 07:46:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*10C", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-10 08:14:57", + "topics": "hotspot,info,debug" + }, + { + ".id": "*10B", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.139): trying to log in by cookie", + "time": "2026-01-10 08:27:51", + "topics": "hotspot,info,debug" + }, + { + ".id": "*10A", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.139): logged in", + "time": "2026-01-10 08:27:51", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*109", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-10 08:34:56", + "topics": "hotspot,info,debug" + }, + { + ".id": "*108", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-10 08:34:56", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*107", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-10 09:34:52", + "topics": "hotspot,info,debug" + }, + { + ".id": "*106", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-10 10:05:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*105", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-10 10:05:15", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*104", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-10 11:29:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*103", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-10 11:52:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*102", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-10 11:52:39", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*101", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.146): trying to log in by http-chap", + "time": "2026-01-10 11:57:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*100", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.146): logged in", + "time": "2026-01-10 11:57:36", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*FF", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): trying to log in by http-chap", + "time": "2026-01-10 12:18:57", + "topics": "hotspot,info,debug" + }, + { + ".id": "*FE", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged in", + "time": "2026-01-10 12:18:57", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*FD", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.146): logged out: keepalive timeout", + "time": "2026-01-10 13:01:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*FC", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-10 13:17:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*FB", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-10 14:20:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*FA", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-10 14:20:17", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*F9", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.146): trying to log in by mac-cookie", + "time": "2026-01-10 16:58:12", + "topics": "hotspot,info,debug" + }, + { + ".id": "*F8", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.146): logged in", + "time": "2026-01-10 16:58:12", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*F7", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): trying to log in by http-chap", + "time": "2026-01-10 16:59:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*F6", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): login failed: no more sessions are allowed for user", + "time": "2026-01-10 16:59:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*F5", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): trying to log in by http-chap", + "time": "2026-01-10 16:59:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*F4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): trying to log in by http-chap", + "time": "2026-01-10 16:59:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*F3", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): login failed: already authorizing, retry later", + "time": "2026-01-10 16:59:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*F2", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): login failed: no more sessions are allowed for user", + "time": "2026-01-10 16:59:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*F1", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): trying to log in by http-chap", + "time": "2026-01-10 17:00:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*F0", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): trying to log in by http-chap", + "time": "2026-01-10 17:00:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*EF", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): login failed: already authorizing, retry later", + "time": "2026-01-10 17:00:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*EE", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): login failed: no more sessions are allowed for user", + "time": "2026-01-10 17:00:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*ED", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.146): logged out: keepalive timeout", + "time": "2026-01-10 17:00:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*EC", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): trying to log in by http-chap", + "time": "2026-01-10 17:00:18", + "topics": "hotspot,info,debug" + }, + { + ".id": "*EB", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): logged in", + "time": "2026-01-10 17:00:18", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*EA", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.145): trying to log in by http-chap", + "time": "2026-01-10 18:23:58", + "topics": "hotspot,info,debug" + }, + { + ".id": "*E9", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.145): login failed: no more sessions are allowed for user", + "time": "2026-01-10 18:24:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*E8", + "extra-info": "", + "message": "->: kaduk133 (10.5.50.145): trying to log in by http-chap", + "time": "2026-01-10 18:25:20", + "topics": "hotspot,info,debug" + }, + { + ".id": "*E7", + "extra-info": "", + "message": "->: kaduk133 (10.5.50.145): login failed: invalid username or password", + "time": "2026-01-10 18:25:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*E6", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): trying to log in by http-chap", + "time": "2026-01-10 18:25:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*E5", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): trying to log in by http-chap", + "time": "2026-01-10 18:25:46", + "topics": "hotspot,info,debug" + }, + { + ".id": "*E4", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): login failed: already authorizing, retry later", + "time": "2026-01-10 18:25:46", + "topics": "hotspot,info,debug" + }, + { + ".id": "*E3", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): login failed: your uptime limit is reached", + "time": "2026-01-10 18:25:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*E2", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): logged out: keepalive timeout", + "time": "2026-01-10 18:55:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*E1", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-10 19:13:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*E0", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-10 19:30:57", + "topics": "hotspot,info,debug" + }, + { + ".id": "*DF", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-10 19:30:57", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*DE", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-10 21:26:08", + "topics": "hotspot,info,debug" + }, + { + ".id": "*DD", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-10 21:27:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*DC", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-10 21:27:44", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*DB", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-10 21:51:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*DA", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): trying to log in by mac-cookie", + "time": "2026-01-10 22:48:25", + "topics": "hotspot,info,debug" + }, + { + ".id": "*D9", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): logged in", + "time": "2026-01-10 22:48:25", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*D8", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-10 23:31:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*D7", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-10 23:44:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*D6", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-10 23:44:37", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*D5", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-11 00:35:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*D4", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-11 02:38:12", + "topics": "hotspot,info,debug" + }, + { + ".id": "*D3", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): trying to log in by mac-cookie", + "time": "2026-01-11 03:42:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*D2", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged in", + "time": "2026-01-11 03:42:45", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*D1", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.249): logged out: keepalive timeout", + "time": "2026-01-11 03:44:46", + "topics": "hotspot,info,debug" + }, + { + ".id": "*D0", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): trying to log in by mac-cookie", + "time": "2026-01-11 04:09:01", + "topics": "hotspot,info,debug" + }, + { + ".id": "*CF", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged in", + "time": "2026-01-11 04:09:01", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*CE", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-11 04:47:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*CD", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-11 04:47:44", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*CC", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged out: lost dhcp lease", + "time": "2026-01-11 04:50:43", + "topics": "hotspot,info,debug" + }, + { + ".id": "*CB", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-11 04:52:24", + "topics": "hotspot,info,debug" + }, + { + ".id": "*CA", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-11 05:12:29", + "topics": "hotspot,info,debug" + }, + { + ".id": "*C9", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-11 05:12:29", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*C8", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-11 06:03:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*C7", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-11 06:03:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*C6", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-11 06:03:15", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*C5", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-11 06:03:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*C4", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-11 06:03:51", + "topics": "hotspot,info,debug" + }, + { + ".id": "*C3", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-11 06:03:51", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*C2", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by http-chap", + "time": "2026-01-11 06:15:59", + "topics": "hotspot,info,debug" + }, + { + ".id": "*C1", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-11 06:15:59", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*C0", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): logged out: keepalive timeout", + "time": "2026-01-11 07:58:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*BF", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-11 08:30:26", + "topics": "hotspot,info,debug" + }, + { + ".id": "*BE", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-11 08:30:28", + "topics": "hotspot,info,debug" + }, + { + ".id": "*BD", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-11 08:30:28", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*BC", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): trying to log in by http-chap", + "time": "2026-01-11 09:08:42", + "topics": "hotspot,info,debug" + }, + { + ".id": "*BB", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged in", + "time": "2026-01-11 09:08:42", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*BA", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-11 10:43:26", + "topics": "hotspot,info,debug" + }, + { + ".id": "*B9", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged out: keepalive timeout", + "time": "2026-01-11 11:13:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*B8", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.146): trying to log in by mac-cookie", + "time": "2026-01-11 11:56:10", + "topics": "hotspot,info,debug" + }, + { + ".id": "*B7", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.146): logged in", + "time": "2026-01-11 11:56:10", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*B6", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.146): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-11 11:56:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*B5", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): trying to log in by mac-cookie", + "time": "2026-01-11 11:56:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*B4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): logged in", + "time": "2026-01-11 11:56:13", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*B3", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): trying to log in by http-chap", + "time": "2026-01-11 12:20:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*B2", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged in", + "time": "2026-01-11 12:20:16", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*B1", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): trying to log in by mac-cookie", + "time": "2026-01-11 12:50:42", + "topics": "hotspot,info,debug" + }, + { + ".id": "*B0", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged in", + "time": "2026-01-11 12:50:42", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*AF", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): logged out: keepalive timeout", + "time": "2026-01-11 12:54:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*AE", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): trying to log in by mac-cookie", + "time": "2026-01-11 12:56:10", + "topics": "hotspot,info,debug" + }, + { + ".id": "*AD", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): logged in", + "time": "2026-01-11 12:56:10", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*AC", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): logged out: keepalive timeout", + "time": "2026-01-11 13:00:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*AB", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-11 14:12:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*AA", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-11 17:15:38", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A9", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-11 17:15:38", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*A8", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): trying to log in by mac-cookie", + "time": "2026-01-11 17:16:27", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A7", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): logged in", + "time": "2026-01-11 17:16:27", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*A6", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.150): trying to log in by http-chap", + "time": "2026-01-11 17:16:40", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A5", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.150): login failed: no more sessions are allowed for user", + "time": "2026-01-11 17:16:42", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): trying to log in by http-chap", + "time": "2026-01-11 17:17:08", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A3", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): login failed: no more sessions are allowed for user", + "time": "2026-01-11 17:17:10", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A2", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): trying to log in by http-chap", + "time": "2026-01-11 17:17:28", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A1", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): trying to log in by http-chap", + "time": "2026-01-11 17:17:28", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A0", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): login failed: already authorizing, retry later", + "time": "2026-01-11 17:17:28", + "topics": "hotspot,info,debug" + }, + { + ".id": "*9F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): login failed: no more sessions are allowed for user", + "time": "2026-01-11 17:17:30", + "topics": "hotspot,info,debug" + }, + { + ".id": "*9E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): trying to log in by http-chap", + "time": "2026-01-11 17:17:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*9D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): login failed: no more sessions are allowed for user", + "time": "2026-01-11 17:17:50", + "topics": "hotspot,info,debug" + }, + { + ".id": "*9C", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.147): logged out: keepalive timeout", + "time": "2026-01-11 17:18:28", + "topics": "hotspot,info,debug" + }, + { + ".id": "*9B", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-11 17:58:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*9A", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-11 17:58:36", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*99", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-11 18:07:59", + "topics": "hotspot,info,debug" + }, + { + ".id": "*98", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-11 18:08:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*97", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-11 18:08:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*96", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-11 19:54:27", + "topics": "hotspot,info,debug" + }, + { + ".id": "*95", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by cookie", + "time": "2026-01-11 19:55:51", + "topics": "hotspot,info,debug" + }, + { + ".id": "*94", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-11 19:55:51", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*93", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-11 20:27:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*92", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-11 20:27:54", + "topics": "hotspot,info,debug" + }, + { + ".id": "*91", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-11 20:27:54", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*90", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-11 23:32:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*8F", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged out: keepalive timeout", + "time": "2026-01-12 00:03:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*8E", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged out: keepalive timeout", + "time": "2026-01-12 00:11:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*8D", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-12 00:25:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*8C", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-12 00:25:37", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*8B", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-12 00:49:30", + "topics": "hotspot,info,debug" + }, + { + ".id": "*8A", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-12 01:10:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*89", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-12 05:18:59", + "topics": "hotspot,info,debug" + }, + { + ".id": "*88", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-12 05:18:59", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*87", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): trying to log in by http-chap", + "time": "2026-01-12 05:32:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*86", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged in", + "time": "2026-01-12 05:32:14", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*85", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-12 05:56:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*84", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-12 05:58:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*83", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-12 05:58:37", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*82", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-12 06:24:18", + "topics": "hotspot,info,debug" + }, + { + ".id": "*81", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-12 06:36:20", + "topics": "hotspot,info,debug" + }, + { + ".id": "*80", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-12 06:36:20", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*7F", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-12 06:39:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*7E", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-12 06:43:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*7D", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-12 06:43:17", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*7C", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-12 06:48:56", + "topics": "hotspot,info,debug" + }, + { + ".id": "*7B", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): trying to log in by http-chap", + "time": "2026-01-12 07:03:12", + "topics": "hotspot,info,debug" + }, + { + ".id": "*7A", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged in", + "time": "2026-01-12 07:03:12", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*79", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): trying to log in by mac-cookie", + "time": "2026-01-12 08:18:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*78", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged in", + "time": "2026-01-12 08:18:35", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*77", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged out: lost dhcp lease", + "time": "2026-01-12 10:00:55", + "topics": "hotspot,info,debug" + }, + { + ".id": "*76", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): trying to log in by mac-cookie", + "time": "2026-01-12 10:03:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*75", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged in", + "time": "2026-01-12 10:03:36", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*74", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-12 10:51:08", + "topics": "hotspot,info,debug" + }, + { + ".id": "*73", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-12 10:55:59", + "topics": "hotspot,info,debug" + }, + { + ".id": "*72", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-12 10:55:59", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*71", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-12 11:26:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*70", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-12 11:26:53", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*6F", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-12 11:47:06", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6E", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-12 11:47:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6D", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-12 11:47:09", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*6C", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged out: keepalive timeout", + "time": "2026-01-12 11:53:40", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6B", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): trying to log in by mac-cookie", + "time": "2026-01-12 11:54:52", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6A", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged in", + "time": "2026-01-12 11:54:52", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*69", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged out: keepalive timeout", + "time": "2026-01-12 12:25:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*68", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged out: keepalive timeout", + "time": "2026-01-12 13:02:33", + "topics": "hotspot,info,debug" + }, + { + ".id": "*67", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): trying to log in by mac-cookie", + "time": "2026-01-12 13:49:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*66", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged in", + "time": "2026-01-12 13:49:11", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*65", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by http-chap", + "time": "2026-01-12 15:14:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*64", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-12 15:14:13", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*63", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged out: keepalive timeout", + "time": "2026-01-12 15:42:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*62", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): trying to log in by mac-cookie", + "time": "2026-01-12 15:45:19", + "topics": "hotspot,info,debug" + }, + { + ".id": "*61", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged in", + "time": "2026-01-12 15:45:19", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*60", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged out: keepalive timeout", + "time": "2026-01-12 15:47:19", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.152): trying to log in by mac-cookie", + "time": "2026-01-12 16:58:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.152): logged in", + "time": "2026-01-12 16:58:45", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*5D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.152): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-12 16:58:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5C", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): trying to log in by mac-cookie", + "time": "2026-01-12 16:58:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5B", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged in", + "time": "2026-01-12 16:58:48", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*5A", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): trying to log in by mac-cookie", + "time": "2026-01-12 18:31:26", + "topics": "hotspot,info,debug" + }, + { + ".id": "*59", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged in", + "time": "2026-01-12 18:31:26", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*58", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): trying to log in by http-chap", + "time": "2026-01-12 18:32:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*57", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): login failed: no more sessions are allowed for user", + "time": "2026-01-12 18:32:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*56", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.148): logged out: keepalive timeout", + "time": "2026-01-12 18:33:27", + "topics": "hotspot,info,debug" + }, + { + ".id": "*55", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): trying to log in by http-chap", + "time": "2026-01-12 18:34:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*54", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): logged in", + "time": "2026-01-12 18:34:14", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*53", + "extra-info": "", + "message": "->: ew27 (10.5.50.252): trying to log in by mac-cookie", + "time": "2026-01-12 20:20:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*52", + "extra-info": "", + "message": "->: ew27 (10.5.50.252): logged in", + "time": "2026-01-12 20:20:48", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*51", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): logged out: keepalive timeout", + "time": "2026-01-12 20:54:08", + "topics": "hotspot,info,debug" + }, + { + ".id": "*50", + "extra-info": "", + "message": "->: ew27 (10.5.50.252): logged out: keepalive timeout", + "time": "2026-01-12 20:54:19", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4F", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): trying to log in by mac-cookie", + "time": "2026-01-12 22:08:59", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4E", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): logged in", + "time": "2026-01-12 22:08:59", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*4D", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): logged out: keepalive timeout", + "time": "2026-01-12 23:05:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4C", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): trying to log in by mac-cookie", + "time": "2026-01-12 23:14:06", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4B", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): logged in", + "time": "2026-01-12 23:14:06", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*4A", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): logged out: keepalive timeout", + "time": "2026-01-12 23:24:27", + "topics": "hotspot,info,debug" + }, + { + ".id": "*49", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-12 23:31:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*48", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-13 01:37:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*47", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-13 05:11:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*46", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-13 05:11:44", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*45", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-13 05:49:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*44", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by cookie", + "time": "2026-01-13 06:18:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*43", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-13 06:18:11", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*42", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-13 06:45:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*41", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-13 06:45:04", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*40", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged out: keepalive timeout", + "time": "2026-01-13 06:54:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*3F", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-13 07:03:54", + "topics": "hotspot,info,debug" + }, + { + ".id": "*3E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): trying to log in by mac-cookie", + "time": "2026-01-13 07:21:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*3D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged in", + "time": "2026-01-13 07:21:41", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*3C", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged out: keepalive timeout", + "time": "2026-01-13 07:59:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*3B", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): trying to log in by mac-cookie", + "time": "2026-01-13 08:30:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*3A", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): logged in", + "time": "2026-01-13 08:30:47", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*39", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): trying to log in by http-chap", + "time": "2026-01-13 08:31:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*38", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): login failed: no more sessions are allowed for user", + "time": "2026-01-13 08:31:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*37", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): trying to log in by http-chap", + "time": "2026-01-13 08:31:52", + "topics": "hotspot,info,debug" + }, + { + ".id": "*36", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): login failed: no more sessions are allowed for user", + "time": "2026-01-13 08:31:54", + "topics": "hotspot,info,debug" + }, + { + ".id": "*35", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): trying to log in by http-chap", + "time": "2026-01-13 08:32:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*34", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): login failed: no more sessions are allowed for user", + "time": "2026-01-13 08:32:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*33", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): trying to log in by http-chap", + "time": "2026-01-13 08:32:31", + "topics": "hotspot,info,debug" + }, + { + ".id": "*32", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): login failed: no more sessions are allowed for user", + "time": "2026-01-13 08:32:33", + "topics": "hotspot,info,debug" + }, + { + ".id": "*31", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.153): logged out: keepalive timeout", + "time": "2026-01-13 08:32:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*30", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): trying to log in by http-chap", + "time": "2026-01-13 08:32:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2F", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): logged in", + "time": "2026-01-13 08:32:49", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2E", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): logged out: keepalive timeout", + "time": "2026-01-13 10:31:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.152): trying to log in by mac-cookie", + "time": "2026-01-13 11:56:28", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2C", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.152): logged in", + "time": "2026-01-13 11:56:28", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.152): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-13 11:56:29", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): trying to log in by mac-cookie", + "time": "2026-01-13 11:58:55", + "topics": "hotspot,info,debug" + }, + { + ".id": "*29", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged in", + "time": "2026-01-13 11:58:55", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*28", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by http-chap", + "time": "2026-01-13 12:27:43", + "topics": "hotspot,info,debug" + }, + { + ".id": "*27", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-13 12:27:43", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*26", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): trying to log in by mac-cookie", + "time": "2026-01-13 12:39:55", + "topics": "hotspot,info,debug" + }, + { + ".id": "*25", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged in", + "time": "2026-01-13 12:39:55", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*24", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.142): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-13 12:39:56", + "topics": "hotspot,info,debug" + }, + { + ".id": "*23", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): trying to log in by mac-cookie", + "time": "2026-01-13 12:39:58", + "topics": "hotspot,info,debug" + }, + { + ".id": "*22", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): logged in", + "time": "2026-01-13 12:39:58", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*21", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged out: keepalive timeout", + "time": "2026-01-13 12:55:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*20", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.155): trying to log in by http-chap", + "time": "2026-01-13 13:02:25", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.155): logged in", + "time": "2026-01-13 13:02:25", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1E", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): logged out: keepalive timeout", + "time": "2026-01-13 13:14:24", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): trying to log in by mac-cookie", + "time": "2026-01-13 13:23:40", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1C", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): logged in", + "time": "2026-01-13 13:23:40", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1B", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.155): logged out: keepalive timeout", + "time": "2026-01-13 13:47:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.152): trying to log in by mac-cookie", + "time": "2026-01-13 16:57:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*19", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.152): logged in", + "time": "2026-01-13 16:57:22", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*18", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.152): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-13 16:57:24", + "topics": "hotspot,info,debug" + }, + { + ".id": "*17", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): trying to log in by mac-cookie", + "time": "2026-01-13 16:57:26", + "topics": "hotspot,info,debug" + }, + { + ".id": "*16", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged in", + "time": "2026-01-13 16:57:26", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*15", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-13 20:04:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*14", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): logged out: keepalive timeout", + "time": "2026-01-13 20:40:56", + "topics": "hotspot,info,debug" + }, + { + ".id": "*13", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-13 21:12:42", + "topics": "hotspot,info,debug" + }, + { + ".id": "*12", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-13 21:12:42", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*11", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-13 23:32:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*10", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): trying to log in by mac-cookie", + "time": "2026-01-14 01:12:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*F", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): logged in", + "time": "2026-01-14 01:12:44", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*E", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-14 02:15:54", + "topics": "hotspot,info,debug" + }, + { + ".id": "*D", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-14 02:33:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*C", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-14 02:33:47", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*B", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-14 02:44:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by cookie", + "time": "2026-01-14 06:15:59", + "topics": "hotspot,info,debug" + }, + { + ".id": "*9", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-14 06:15:59", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*8", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.154): logged out: keepalive timeout", + "time": "2026-01-14 06:29:10", + "topics": "hotspot,info,debug" + }, + { + ".id": "*7", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-14 06:45:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-14 06:45:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*5", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: admin reboot", + "time": "2026-01-14 07:42:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: admin reboot", + "time": "2026-01-14 07:42:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*3", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged out: admin reboot", + "time": "2026-01-14 07:42:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged out: admin reboot", + "time": "2026-01-14 07:42:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged out: admin reboot", + "time": "2026-01-14 07:42:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*0", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: admin reboot", + "time": "2026-01-14 07:42:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*480", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): trying to log in by mac-cookie", + "time": "2026-01-14 07:37:31", + "topics": "hotspot,info,debug" + }, + { + ".id": "*482", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged in", + "time": "2026-01-14 07:37:31", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*488", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): trying to log in by mac-cookie", + "time": "2026-01-14 07:37:34", + "topics": "hotspot,info,debug" + }, + { + ".id": "*48A", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged in", + "time": "2026-01-14 07:37:34", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*49D", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by http-chap", + "time": "2026-01-14 07:37:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*49F", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-14 07:37:45", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*4A4", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-14 07:44:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4A6", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-14 07:44:35", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*4BA", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged out: keepalive timeout", + "time": "2026-01-14 07:56:52", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4CF", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-14 11:13:18", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4D2", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-14 11:13:33", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4D4", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-14 11:13:33", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*4D7", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-14 11:14:01", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4DB", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-14 11:14:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4DD", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-14 11:14:17", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*4E0", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.125): trying to log in by mac-cookie", + "time": "2026-01-14 11:56:59", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4E2", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.125): logged in", + "time": "2026-01-14 11:56:59", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*4E5", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.125): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-14 11:57:01", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4EA", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-14 12:09:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4EC", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-14 12:09:53", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*4F2", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): trying to log in by mac-cookie", + "time": "2026-01-14 12:11:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*4F4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged in", + "time": "2026-01-14 12:11:41", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*500", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-14 12:51:06", + "topics": "hotspot,info,debug" + }, + { + ".id": "*502", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-14 12:51:06", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*506", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged out: keepalive timeout", + "time": "2026-01-14 12:56:55", + "topics": "hotspot,info,debug" + }, + { + ".id": "*50F", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): trying to log in by http-chap", + "time": "2026-01-14 13:46:31", + "topics": "hotspot,info,debug" + }, + { + ".id": "*511", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): logged in", + "time": "2026-01-14 13:46:31", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*514", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-14 14:14:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*51E", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-14 15:14:59", + "topics": "hotspot,info,debug" + }, + { + ".id": "*52B", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-14 15:30:55", + "topics": "hotspot,info,debug" + }, + { + ".id": "*52D", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-14 15:30:55", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*535", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-14 15:46:56", + "topics": "hotspot,info,debug" + }, + { + ".id": "*537", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): logged out: lost dhcp lease", + "time": "2026-01-14 15:46:56", + "topics": "hotspot,info,debug" + }, + { + ".id": "*53C", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): trying to log in by mac-cookie", + "time": "2026-01-14 16:59:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*53E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged in", + "time": "2026-01-14 16:59:02", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*541", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.151): logged out: keepalive timeout", + "time": "2026-01-14 17:01:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*543", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): trying to log in by http-chap", + "time": "2026-01-14 17:01:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*545", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): logged in", + "time": "2026-01-14 17:01:16", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*549", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-14 17:58:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*54C", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-14 17:58:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*54E", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-14 17:58:23", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*551", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-14 18:14:08", + "topics": "hotspot,info,debug" + }, + { + ".id": "*553", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-14 18:14:08", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*556", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-14 18:19:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*558", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-14 18:19:37", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*55A", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): trying to log in by http-chap", + "time": "2026-01-14 18:23:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*55C", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged in", + "time": "2026-01-14 18:23:04", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*561", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-14 19:12:58", + "topics": "hotspot,info,debug" + }, + { + ".id": "*565", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-14 19:31:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*567", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-14 19:31:23", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*569", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-14 19:33:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*56C", + "extra-info": "", + "message": "->: ew27 (10.5.50.117): trying to log in by mac-cookie", + "time": "2026-01-14 19:47:51", + "topics": "hotspot,info,debug" + }, + { + ".id": "*56E", + "extra-info": "", + "message": "->: ew27 (10.5.50.117): logged in", + "time": "2026-01-14 19:47:51", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*570", + "extra-info": "", + "message": "->: ew27 (10.5.50.117): logged out: keepalive timeout", + "time": "2026-01-14 19:52:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*574", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-14 20:04:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*576", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-14 20:04:17", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*579", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-14 20:23:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*57B", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-14 20:24:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*57D", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-14 20:24:47", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*57F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): logged out: keepalive timeout", + "time": "2026-01-14 20:38:10", + "topics": "hotspot,info,debug" + }, + { + ".id": "*581", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-14 20:40:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*590", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-14 23:32:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*599", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-15 01:01:42", + "topics": "hotspot,info,debug" + }, + { + ".id": "*59B", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-15 01:01:42", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*5A6", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-15 06:45:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5A8", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-15 06:45:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*5AB", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): trying to log in by mac-cookie", + "time": "2026-01-15 06:57:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5AD", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): logged in", + "time": "2026-01-15 06:57:39", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*5AF", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): logged out: keepalive timeout", + "time": "2026-01-15 07:01:46", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5B3", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-15 07:11:31", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5B5", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): trying to log in by mac-cookie", + "time": "2026-01-15 07:20:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5B7", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): logged in", + "time": "2026-01-15 07:20:32", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*5BA", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): logged out: keepalive timeout", + "time": "2026-01-15 07:27:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5BC", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): trying to log in by mac-cookie", + "time": "2026-01-15 07:43:50", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5BE", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): logged in", + "time": "2026-01-15 07:43:50", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*5C0", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): logged out: keepalive timeout", + "time": "2026-01-15 07:58:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5C2", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): trying to log in by mac-cookie", + "time": "2026-01-15 08:04:12", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5C4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): logged in", + "time": "2026-01-15 08:04:12", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*5C6", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): logged out: keepalive timeout", + "time": "2026-01-15 08:08:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5D3", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): trying to log in by mac-cookie", + "time": "2026-01-15 11:26:08", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5D5", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): logged in", + "time": "2026-01-15 11:26:08", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*5D7", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): logged out: keepalive timeout", + "time": "2026-01-15 11:32:19", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5D9", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): trying to log in by mac-cookie", + "time": "2026-01-15 11:55:50", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5DB", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): logged in", + "time": "2026-01-15 11:55:50", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*5DE", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.115): trying to log in by http-chap", + "time": "2026-01-15 11:56:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5E0", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.115): trying to log in by http-chap", + "time": "2026-01-15 11:56:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5E2", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.115): login failed: already authorizing, retry later", + "time": "2026-01-15 11:56:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5E4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.115): login failed: no more sessions are allowed for user", + "time": "2026-01-15 11:56:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5E8", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): trying to log in by http-chap", + "time": "2026-01-15 11:56:33", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5EA", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): login failed: no more sessions are allowed for user", + "time": "2026-01-15 11:56:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5EC", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.119): logged out: keepalive timeout", + "time": "2026-01-15 11:57:52", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5F4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): trying to log in by http-chap", + "time": "2026-01-15 13:14:30", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5F6", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged in", + "time": "2026-01-15 13:14:30", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*5FA", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged out: keepalive timeout", + "time": "2026-01-15 13:27:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*5FF", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-15 14:19:46", + "topics": "hotspot,info,debug" + }, + { + ".id": "*601", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-15 14:19:46", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*608", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): trying to log in by mac-cookie", + "time": "2026-01-15 16:57:52", + "topics": "hotspot,info,debug" + }, + { + ".id": "*60A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): logged in", + "time": "2026-01-15 16:57:52", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*60D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-15 16:57:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*60F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): trying to log in by mac-cookie", + "time": "2026-01-15 16:57:55", + "topics": "hotspot,info,debug" + }, + { + ".id": "*611", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged in", + "time": "2026-01-15 16:57:55", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*615", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): trying to log in by mac-cookie", + "time": "2026-01-15 17:46:42", + "topics": "hotspot,info,debug" + }, + { + ".id": "*617", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): logged in", + "time": "2026-01-15 17:46:42", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*626", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): logged out: keepalive timeout", + "time": "2026-01-15 18:36:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*62A", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: session timeout", + "time": "2026-01-15 19:15:24", + "topics": "hotspot,info,debug" + }, + { + ".id": "*62C", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by http-chap", + "time": "2026-01-15 19:20:10", + "topics": "hotspot,info,debug" + }, + { + ".id": "*62E", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): login failed: your uptime limit is reached", + "time": "2026-01-15 19:20:12", + "topics": "hotspot,info,debug" + }, + { + ".id": "*636", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by http-chap", + "time": "2026-01-15 20:01:24", + "topics": "hotspot,info,debug" + }, + { + ".id": "*638", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-15 20:01:24", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*63A", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-15 21:47:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*63D", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-15 22:11:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*63F", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-15 22:12:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*641", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-15 22:12:32", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*643", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged out: keepalive timeout", + "time": "2026-01-15 23:01:28", + "topics": "hotspot,info,debug" + }, + { + ".id": "*646", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-15 23:31:50", + "topics": "hotspot,info,debug" + }, + { + ".id": "*649", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-16 01:23:27", + "topics": "hotspot,info,debug" + }, + { + ".id": "*64D", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-16 02:21:31", + "topics": "hotspot,info,debug" + }, + { + ".id": "*64F", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-16 02:21:31", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*651", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-16 02:24:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*656", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-16 04:22:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*658", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-16 04:22:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*65E", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-16 04:32:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*662", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-16 05:11:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*664", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-16 05:11:36", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*66A", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-16 05:35:42", + "topics": "hotspot,info,debug" + }, + { + ".id": "*66C", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-16 05:35:42", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*673", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-16 06:26:26", + "topics": "hotspot,info,debug" + }, + { + ".id": "*676", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): trying to log in by mac-cookie", + "time": "2026-01-16 06:37:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*678", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged in", + "time": "2026-01-16 06:37:49", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*67B", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-16 06:45:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*67D", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-16 06:45:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*680", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged out: keepalive timeout", + "time": "2026-01-16 06:55:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*682", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged out: keepalive timeout", + "time": "2026-01-16 07:08:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*686", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): trying to log in by mac-cookie", + "time": "2026-01-16 07:16:34", + "topics": "hotspot,info,debug" + }, + { + ".id": "*688", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): logged in", + "time": "2026-01-16 07:16:34", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*68B", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-16 07:17:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*68D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): trying to log in by mac-cookie", + "time": "2026-01-16 07:17:18", + "topics": "hotspot,info,debug" + }, + { + ".id": "*68F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged in", + "time": "2026-01-16 07:17:18", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*691", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-16 07:53:25", + "topics": "hotspot,info,debug" + }, + { + ".id": "*693", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged out: keepalive timeout", + "time": "2026-01-16 07:57:19", + "topics": "hotspot,info,debug" + }, + { + ".id": "*695", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-16 08:03:30", + "topics": "hotspot,info,debug" + }, + { + ".id": "*697", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-16 08:03:30", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*69D", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-16 09:36:43", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6A5", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): trying to log in by mac-cookie", + "time": "2026-01-16 11:07:10", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6A7", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged in", + "time": "2026-01-16 11:07:10", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*6AA", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.111): trying to log in by mac-cookie", + "time": "2026-01-16 11:42:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6AC", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.111): logged in", + "time": "2026-01-16 11:42:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*6AF", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.111): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-16 11:42:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6B1", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-16 11:42:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6B3", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-16 11:42:07", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*6BF", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): trying to log in by mac-cookie", + "time": "2026-01-16 11:56:52", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6C1", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): logged in", + "time": "2026-01-16 11:56:52", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*6C4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-16 11:56:54", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6D5", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): trying to log in by mac-cookie", + "time": "2026-01-16 12:04:40", + "topics": "hotspot,info,debug" + }, + { + ".id": "*6D7", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged in", + "time": "2026-01-16 12:04:40", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*721", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-16 12:45:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*738", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged out: keepalive timeout", + "time": "2026-01-16 12:57:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*787", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-16 13:39:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*789", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-16 13:39:53", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*7E3", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-16 14:29:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*7E5", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-16 14:29:33", + "topics": "hotspot,info,debug" + }, + { + ".id": "*7E7", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-16 14:29:33", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*845", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-16 15:22:12", + "topics": "hotspot,info,debug" + }, + { + ".id": "*849", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-16 15:22:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*84B", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-16 15:22:23", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*8B7", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-16 16:24:10", + "topics": "hotspot,info,debug" + }, + { + ".id": "*928", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-16 17:27:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*92A", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-16 17:27:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*92D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): trying to log in by mac-cookie", + "time": "2026-01-16 17:27:08", + "topics": "hotspot,info,debug" + }, + { + ".id": "*92F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged in", + "time": "2026-01-16 17:27:08", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*A07", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged out: keepalive timeout", + "time": "2026-01-16 19:31:34", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A26", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-16 19:48:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A2E", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-16 19:52:12", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A30", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-16 19:52:12", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*A66", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-16 20:20:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A68", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-16 20:20:36", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*A7A", + "extra-info": "", + "message": "->: ew27 (10.5.50.117): trying to log in by mac-cookie", + "time": "2026-01-16 20:28:33", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A7C", + "extra-info": "", + "message": "->: ew27 (10.5.50.117): logged in", + "time": "2026-01-16 20:28:33", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*A99", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): trying to log in by mac-cookie", + "time": "2026-01-16 20:44:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*A9B", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged in", + "time": "2026-01-16 20:44:02", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*AA8", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-16 20:50:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*AAA", + "extra-info": "", + "message": "->: ew27 (10.5.50.117): logged out: keepalive timeout", + "time": "2026-01-16 20:50:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*B03", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged out: keepalive timeout", + "time": "2026-01-16 21:37:54", + "topics": "hotspot,info,debug" + }, + { + ".id": "*B6D", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-16 22:37:34", + "topics": "hotspot,info,debug" + }, + { + ".id": "*B6F", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-16 22:37:34", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*BD3", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-16 23:32:33", + "topics": "hotspot,info,debug" + }, + { + ".id": "*C98", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged out: keepalive timeout", + "time": "2026-01-17 01:26:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*CD9", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-17 02:02:29", + "topics": "hotspot,info,debug" + }, + { + ".id": "*D40", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-17 03:00:30", + "topics": "hotspot,info,debug" + }, + { + ".id": "*D42", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-17 03:00:30", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*D5A", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-17 03:13:29", + "topics": "hotspot,info,debug" + }, + { + ".id": "*D9C", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-17 03:49:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*D9E", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-17 03:49:41", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*DA7", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-17 03:53:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*DA9", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-17 03:53:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*F46", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): trying to log in by mac-cookie", + "time": "2026-01-17 07:52:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*F48", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged in", + "time": "2026-01-17 07:52:53", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*F5D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged out: keepalive timeout", + "time": "2026-01-17 08:03:43", + "topics": "hotspot,info,debug" + }, + { + ".id": "*FCD", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-17 09:02:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*FD1", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-17 09:02:58", + "topics": "hotspot,info,debug" + }, + { + ".id": "*FD3", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-17 09:02:58", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*FE9", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): trying to log in by mac-cookie", + "time": "2026-01-17 09:15:19", + "topics": "hotspot,info,debug" + }, + { + ".id": "*FEB", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged in", + "time": "2026-01-17 09:15:19", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1077", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-17 10:33:51", + "topics": "hotspot,info,debug" + }, + { + ".id": "*107C", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-17 10:34:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*107E", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-17 10:34:07", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*10FD", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-17 11:47:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1112", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): trying to log in by mac-cookie", + "time": "2026-01-17 11:57:29", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1114", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): logged in", + "time": "2026-01-17 11:57:29", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1117", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-17 11:57:30", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1125", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-17 12:04:01", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1127", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-17 12:04:01", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*112C", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): trying to log in by mac-cookie", + "time": "2026-01-17 12:05:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*112E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged in", + "time": "2026-01-17 12:05:02", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*115F", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-17 12:31:42", + "topics": "hotspot,info,debug" + }, + { + ".id": "*116C", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-17 12:38:01", + "topics": "hotspot,info,debug" + }, + { + ".id": "*116E", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-17 12:38:01", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1193", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged out: keepalive timeout", + "time": "2026-01-17 12:56:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*12AB", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-17 15:32:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*12AD", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-17 15:32:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*12AF", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-17 15:32:48", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1324", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-17 16:40:02", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1326", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-17 16:40:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1328", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-17 16:40:04", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1348", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): trying to log in by mac-cookie", + "time": "2026-01-17 16:56:27", + "topics": "hotspot,info,debug" + }, + { + ".id": "*134A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged in", + "time": "2026-01-17 16:56:27", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1351", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.114): logged out: keepalive timeout", + "time": "2026-01-17 16:58:28", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1357", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): trying to log in by http-chap", + "time": "2026-01-17 17:01:26", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1359", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-17 17:01:26", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1361", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-17 17:04:40", + "topics": "hotspot,info,debug" + }, + { + ".id": "*138D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-17 17:28:31", + "topics": "hotspot,info,debug" + }, + { + ".id": "*138F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-17 17:28:31", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*13E5", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged out: keepalive timeout", + "time": "2026-01-17 18:14:38", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1440", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): trying to log in by mac-cookie", + "time": "2026-01-17 18:56:10", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1442", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged in", + "time": "2026-01-17 18:56:10", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*144A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-17 18:59:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*14F3", + "extra-info": "", + "message": "->: ew27 (10.5.50.117): trying to log in by mac-cookie", + "time": "2026-01-17 19:58:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*14F5", + "extra-info": "", + "message": "->: ew27 (10.5.50.117): logged in", + "time": "2026-01-17 19:58:21", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*14FA", + "extra-info": "", + "message": "->: ew27 (10.5.50.117): logged out: lost dhcp lease", + "time": "2026-01-17 19:58:57", + "topics": "hotspot,info,debug" + }, + { + ".id": "*152C", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-17 20:13:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*16C0", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-17 23:14:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*16E3", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-17 23:31:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*16F9", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-17 23:43:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*170E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-17 23:53:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1710", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-17 23:53:39", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1767", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-18 00:41:06", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1769", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-18 00:41:06", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*176E", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-18 00:43:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*178B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:00:38", + "topics": "container,info,debug" + }, + { + ".id": "*178C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:00:58", + "topics": "container,info,debug" + }, + { + ".id": "*178D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:01:18", + "topics": "container,info,debug" + }, + { + ".id": "*178E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:01:38", + "topics": "container,info,debug" + }, + { + ".id": "*178F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:01:58", + "topics": "container,info,debug" + }, + { + ".id": "*1790", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:03:09", + "topics": "container,info,debug" + }, + { + ".id": "*1791", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:04:09", + "topics": "container,info,debug" + }, + { + ".id": "*1792", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:04:29", + "topics": "container,info,debug" + }, + { + ".id": "*1793", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:04:49", + "topics": "container,info,debug" + }, + { + ".id": "*1794", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:05:09", + "topics": "container,info,debug" + }, + { + ".id": "*1795", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:05:29", + "topics": "container,info,debug" + }, + { + ".id": "*1796", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:06:41", + "topics": "container,info,debug" + }, + { + ".id": "*1797", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:07:41", + "topics": "container,info,debug" + }, + { + ".id": "*1798", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:08:01", + "topics": "container,info,debug" + }, + { + ".id": "*1799", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:08:21", + "topics": "container,info,debug" + }, + { + ".id": "*179A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:08:41", + "topics": "container,info,debug" + }, + { + ".id": "*179B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:09:01", + "topics": "container,info,debug" + }, + { + ".id": "*179C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:10:12", + "topics": "container,info,debug" + }, + { + ".id": "*179D", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-18 01:11:06", + "topics": "dhcp,info" + }, + { + ".id": "*179E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:11:12", + "topics": "container,info,debug" + }, + { + ".id": "*179F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:11:32", + "topics": "container,info,debug" + }, + { + ".id": "*17A0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:11:52", + "topics": "container,info,debug" + }, + { + ".id": "*17A1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:12:12", + "topics": "container,info,debug" + }, + { + ".id": "*17A2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:12:32", + "topics": "container,info,debug" + }, + { + ".id": "*17A3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:13:44", + "topics": "container,info,debug" + }, + { + ".id": "*17A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:14:44", + "topics": "container,info,debug" + }, + { + ".id": "*17A5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:15:04", + "topics": "container,info,debug" + }, + { + ".id": "*17A6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:15:24", + "topics": "container,info,debug" + }, + { + ".id": "*17A7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:15:44", + "topics": "container,info,debug" + }, + { + ".id": "*17A8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:16:04", + "topics": "container,info,debug" + }, + { + ".id": "*17A9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:17:16", + "topics": "container,info,debug" + }, + { + ".id": "*17AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:18:16", + "topics": "container,info,debug" + }, + { + ".id": "*17AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:18:36", + "topics": "container,info,debug" + }, + { + ".id": "*17AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:18:56", + "topics": "container,info,debug" + }, + { + ".id": "*17AD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:19:16", + "topics": "container,info,debug" + }, + { + ".id": "*17AE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:19:36", + "topics": "container,info,debug" + }, + { + ".id": "*17AF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:20:47", + "topics": "container,info,debug" + }, + { + ".id": "*17B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:21:47", + "topics": "container,info,debug" + }, + { + ".id": "*17B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:22:07", + "topics": "container,info,debug" + }, + { + ".id": "*17B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:22:27", + "topics": "container,info,debug" + }, + { + ".id": "*17B3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:22:47", + "topics": "container,info,debug" + }, + { + ".id": "*17B4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:23:07", + "topics": "container,info,debug" + }, + { + ".id": "*17B5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:24:19", + "topics": "container,info,debug" + }, + { + ".id": "*17B6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:25:19", + "topics": "container,info,debug" + }, + { + ".id": "*17B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:25:39", + "topics": "container,info,debug" + }, + { + ".id": "*17B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:25:59", + "topics": "container,info,debug" + }, + { + ".id": "*17B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:26:19", + "topics": "container,info,debug" + }, + { + ".id": "*17BA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:26:39", + "topics": "container,info,debug" + }, + { + ".id": "*17BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:27:50", + "topics": "container,info,debug" + }, + { + ".id": "*17BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:28:50", + "topics": "container,info,debug" + }, + { + ".id": "*17BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:29:10", + "topics": "container,info,debug" + }, + { + ".id": "*17BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:29:30", + "topics": "container,info,debug" + }, + { + ".id": "*17BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:29:50", + "topics": "container,info,debug" + }, + { + ".id": "*17C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:30:10", + "topics": "container,info,debug" + }, + { + ".id": "*17C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:31:22", + "topics": "container,info,debug" + }, + { + ".id": "*17C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:32:22", + "topics": "container,info,debug" + }, + { + ".id": "*17C3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:32:42", + "topics": "container,info,debug" + }, + { + ".id": "*17C4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:33:02", + "topics": "container,info,debug" + }, + { + ".id": "*17C5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:33:22", + "topics": "container,info,debug" + }, + { + ".id": "*17C6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:33:42", + "topics": "container,info,debug" + }, + { + ".id": "*17C7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:34:53", + "topics": "container,info,debug" + }, + { + ".id": "*17C8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:35:53", + "topics": "container,info,debug" + }, + { + ".id": "*17C9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:36:13", + "topics": "container,info,debug" + }, + { + ".id": "*17CA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:36:33", + "topics": "container,info,debug" + }, + { + ".id": "*17CB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:36:53", + "topics": "container,info,debug" + }, + { + ".id": "*17CC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:37:13", + "topics": "container,info,debug" + }, + { + ".id": "*17CD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:38:25", + "topics": "container,info,debug" + }, + { + ".id": "*17CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:39:25", + "topics": "container,info,debug" + }, + { + ".id": "*17CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:39:45", + "topics": "container,info,debug" + }, + { + ".id": "*17D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:40:05", + "topics": "container,info,debug" + }, + { + ".id": "*17D1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:40:25", + "topics": "container,info,debug" + }, + { + ".id": "*17D2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:40:45", + "topics": "container,info,debug" + }, + { + ".id": "*17D3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:41:56", + "topics": "container,info,debug" + }, + { + ".id": "*17D4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:42:56", + "topics": "container,info,debug" + }, + { + ".id": "*17D5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:43:16", + "topics": "container,info,debug" + }, + { + ".id": "*17D6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:43:36", + "topics": "container,info,debug" + }, + { + ".id": "*17D7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:43:56", + "topics": "container,info,debug" + }, + { + ".id": "*17D8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:44:16", + "topics": "container,info,debug" + }, + { + ".id": "*17D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:45:28", + "topics": "container,info,debug" + }, + { + ".id": "*17DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:46:28", + "topics": "container,info,debug" + }, + { + ".id": "*17DB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:46:48", + "topics": "container,info,debug" + }, + { + ".id": "*17DC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:47:08", + "topics": "container,info,debug" + }, + { + ".id": "*17DD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:47:28", + "topics": "container,info,debug" + }, + { + ".id": "*17DE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:47:48", + "topics": "container,info,debug" + }, + { + ".id": "*17DF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:48:59", + "topics": "container,info,debug" + }, + { + ".id": "*17E0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:49:59", + "topics": "container,info,debug" + }, + { + ".id": "*17E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:50:19", + "topics": "container,info,debug" + }, + { + ".id": "*17E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:50:39", + "topics": "container,info,debug" + }, + { + ".id": "*17E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:50:59", + "topics": "container,info,debug" + }, + { + ".id": "*17E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:51:19", + "topics": "container,info,debug" + }, + { + ".id": "*17E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:52:31", + "topics": "container,info,debug" + }, + { + ".id": "*17E6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:53:31", + "topics": "container,info,debug" + }, + { + ".id": "*17E7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:53:51", + "topics": "container,info,debug" + }, + { + ".id": "*17E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:54:11", + "topics": "container,info,debug" + }, + { + ".id": "*17E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:54:31", + "topics": "container,info,debug" + }, + { + ".id": "*17EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:54:51", + "topics": "container,info,debug" + }, + { + ".id": "*17EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:56:02", + "topics": "container,info,debug" + }, + { + ".id": "*17EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:57:02", + "topics": "container,info,debug" + }, + { + ".id": "*17ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:57:22", + "topics": "container,info,debug" + }, + { + ".id": "*17EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:57:42", + "topics": "container,info,debug" + }, + { + ".id": "*17EF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:58:02", + "topics": "container,info,debug" + }, + { + ".id": "*17F0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:58:22", + "topics": "container,info,debug" + }, + { + ".id": "*17F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 01:59:34", + "topics": "container,info,debug" + }, + { + ".id": "*17F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:00:34", + "topics": "container,info,debug" + }, + { + ".id": "*17F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:00:54", + "topics": "container,info,debug" + }, + { + ".id": "*17F4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:01:14", + "topics": "container,info,debug" + }, + { + ".id": "*17F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:01:34", + "topics": "container,info,debug" + }, + { + ".id": "*17F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:01:54", + "topics": "container,info,debug" + }, + { + ".id": "*17F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:03:05", + "topics": "container,info,debug" + }, + { + ".id": "*17F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:04:05", + "topics": "container,info,debug" + }, + { + ".id": "*17F9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:04:25", + "topics": "container,info,debug" + }, + { + ".id": "*17FA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:04:45", + "topics": "container,info,debug" + }, + { + ".id": "*17FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:05:05", + "topics": "container,info,debug" + }, + { + ".id": "*17FC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:05:25", + "topics": "container,info,debug" + }, + { + ".id": "*17FD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:06:37", + "topics": "container,info,debug" + }, + { + ".id": "*17FE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:07:37", + "topics": "container,info,debug" + }, + { + ".id": "*17FF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:07:57", + "topics": "container,info,debug" + }, + { + ".id": "*1800", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:08:17", + "topics": "container,info,debug" + }, + { + ".id": "*1801", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:08:37", + "topics": "container,info,debug" + }, + { + ".id": "*1802", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:08:57", + "topics": "container,info,debug" + }, + { + ".id": "*1803", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-18 02:09:17", + "topics": "dhcp,info" + }, + { + ".id": "*1804", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-18 02:09:17", + "topics": "dhcp,info" + }, + { + ".id": "*1805", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:10:08", + "topics": "container,info,debug" + }, + { + ".id": "*1806", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:11:08", + "topics": "container,info,debug" + }, + { + ".id": "*1807", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:11:28", + "topics": "container,info,debug" + }, + { + ".id": "*1808", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:11:48", + "topics": "container,info,debug" + }, + { + ".id": "*1809", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:12:08", + "topics": "container,info,debug" + }, + { + ".id": "*180A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:12:28", + "topics": "container,info,debug" + }, + { + ".id": "*180B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:13:40", + "topics": "container,info,debug" + }, + { + ".id": "*180C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:14:40", + "topics": "container,info,debug" + }, + { + ".id": "*180D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:15:00", + "topics": "container,info,debug" + }, + { + ".id": "*180E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:15:20", + "topics": "container,info,debug" + }, + { + ".id": "*180F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:15:40", + "topics": "container,info,debug" + }, + { + ".id": "*1810", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:16:00", + "topics": "container,info,debug" + }, + { + ".id": "*1811", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:17:11", + "topics": "container,info,debug" + }, + { + ".id": "*1812", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:18:11", + "topics": "container,info,debug" + }, + { + ".id": "*1813", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:18:31", + "topics": "container,info,debug" + }, + { + ".id": "*1814", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:18:51", + "topics": "container,info,debug" + }, + { + ".id": "*1815", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:19:11", + "topics": "container,info,debug" + }, + { + ".id": "*1816", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:19:31", + "topics": "container,info,debug" + }, + { + ".id": "*1817", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:20:43", + "topics": "container,info,debug" + }, + { + ".id": "*1818", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:21:43", + "topics": "container,info,debug" + }, + { + ".id": "*1819", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:22:03", + "topics": "container,info,debug" + }, + { + ".id": "*181A", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-18 02:22:04", + "topics": "dhcp,info" + }, + { + ".id": "*181B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:22:23", + "topics": "container,info,debug" + }, + { + ".id": "*181C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:22:43", + "topics": "container,info,debug" + }, + { + ".id": "*181D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:23:03", + "topics": "container,info,debug" + }, + { + ".id": "*181E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:24:14", + "topics": "container,info,debug" + }, + { + ".id": "*181F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:25:14", + "topics": "container,info,debug" + }, + { + ".id": "*1820", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:25:34", + "topics": "container,info,debug" + }, + { + ".id": "*1821", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:25:54", + "topics": "container,info,debug" + }, + { + ".id": "*1822", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:26:14", + "topics": "container,info,debug" + }, + { + ".id": "*1823", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:26:34", + "topics": "container,info,debug" + }, + { + ".id": "*1824", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:27:45", + "topics": "container,info,debug" + }, + { + ".id": "*1825", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:28:45", + "topics": "container,info,debug" + }, + { + ".id": "*1826", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:29:05", + "topics": "container,info,debug" + }, + { + ".id": "*1827", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:29:25", + "topics": "container,info,debug" + }, + { + ".id": "*1828", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:29:45", + "topics": "container,info,debug" + }, + { + ".id": "*1829", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:30:05", + "topics": "container,info,debug" + }, + { + ".id": "*182A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:31:16", + "topics": "container,info,debug" + }, + { + ".id": "*182B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:32:16", + "topics": "container,info,debug" + }, + { + ".id": "*182C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:32:36", + "topics": "container,info,debug" + }, + { + ".id": "*182D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:32:56", + "topics": "container,info,debug" + }, + { + ".id": "*182E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:33:16", + "topics": "container,info,debug" + }, + { + ".id": "*182F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:33:36", + "topics": "container,info,debug" + }, + { + ".id": "*1830", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:34:48", + "topics": "container,info,debug" + }, + { + ".id": "*1831", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:35:48", + "topics": "container,info,debug" + }, + { + ".id": "*1832", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:36:08", + "topics": "container,info,debug" + }, + { + ".id": "*1833", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:36:28", + "topics": "container,info,debug" + }, + { + ".id": "*1834", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:36:48", + "topics": "container,info,debug" + }, + { + ".id": "*1835", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:37:08", + "topics": "container,info,debug" + }, + { + ".id": "*1836", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:38:20", + "topics": "container,info,debug" + }, + { + ".id": "*1837", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:39:20", + "topics": "container,info,debug" + }, + { + ".id": "*1838", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:39:40", + "topics": "container,info,debug" + }, + { + ".id": "*1839", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:40:00", + "topics": "container,info,debug" + }, + { + ".id": "*183A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:40:20", + "topics": "container,info,debug" + }, + { + ".id": "*183B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:40:40", + "topics": "container,info,debug" + }, + { + ".id": "*183C", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-18 02:41:38", + "topics": "dhcp,info" + }, + { + ".id": "*183D", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-18 02:41:38", + "topics": "hotspot,info,debug" + }, + { + ".id": "*183E", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-18 02:41:38", + "topics": "hotspot,info,debug" + }, + { + ".id": "*183F", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged in", + "time": "2026-01-18 02:41:38", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1840", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-18 02:41:38", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1841", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:41:51", + "topics": "container,info,debug" + }, + { + ".id": "*1842", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:42:51", + "topics": "container,info,debug" + }, + { + ".id": "*1843", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:43:11", + "topics": "container,info,debug" + }, + { + ".id": "*1844", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:43:31", + "topics": "container,info,debug" + }, + { + ".id": "*1845", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:43:51", + "topics": "container,info,debug" + }, + { + ".id": "*1846", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-18 02:44:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1847", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-18 02:44:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1848", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:44:11", + "topics": "container,info,debug" + }, + { + ".id": "*1849", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:45:23", + "topics": "container,info,debug" + }, + { + ".id": "*184A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:46:23", + "topics": "container,info,debug" + }, + { + ".id": "*184B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:46:43", + "topics": "container,info,debug" + }, + { + ".id": "*184C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:47:03", + "topics": "container,info,debug" + }, + { + ".id": "*184D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:47:23", + "topics": "container,info,debug" + }, + { + ".id": "*184E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:47:43", + "topics": "container,info,debug" + }, + { + ".id": "*184F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:48:54", + "topics": "container,info,debug" + }, + { + ".id": "*1850", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:49:54", + "topics": "container,info,debug" + }, + { + ".id": "*1851", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:50:14", + "topics": "container,info,debug" + }, + { + ".id": "*1852", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:50:34", + "topics": "container,info,debug" + }, + { + ".id": "*1853", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:50:54", + "topics": "container,info,debug" + }, + { + ".id": "*1854", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:51:14", + "topics": "container,info,debug" + }, + { + ".id": "*1855", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:52:26", + "topics": "container,info,debug" + }, + { + ".id": "*1856", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:53:26", + "topics": "container,info,debug" + }, + { + ".id": "*1857", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:53:46", + "topics": "container,info,debug" + }, + { + ".id": "*1858", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:54:06", + "topics": "container,info,debug" + }, + { + ".id": "*1859", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-18 02:54:18", + "topics": "dhcp,info" + }, + { + ".id": "*185A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:54:26", + "topics": "container,info,debug" + }, + { + ".id": "*185B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:54:46", + "topics": "container,info,debug" + }, + { + ".id": "*185C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:55:57", + "topics": "container,info,debug" + }, + { + ".id": "*185D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:56:57", + "topics": "container,info,debug" + }, + { + ".id": "*185E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:57:17", + "topics": "container,info,debug" + }, + { + ".id": "*185F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:57:37", + "topics": "container,info,debug" + }, + { + ".id": "*1860", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:57:57", + "topics": "container,info,debug" + }, + { + ".id": "*1861", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:58:17", + "topics": "container,info,debug" + }, + { + ".id": "*1862", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 02:59:29", + "topics": "container,info,debug" + }, + { + ".id": "*1863", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:00:29", + "topics": "container,info,debug" + }, + { + ".id": "*1864", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:00:49", + "topics": "container,info,debug" + }, + { + ".id": "*1865", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:01:09", + "topics": "container,info,debug" + }, + { + ".id": "*1866", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:01:29", + "topics": "container,info,debug" + }, + { + ".id": "*1867", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:01:49", + "topics": "container,info,debug" + }, + { + ".id": "*1868", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:03:00", + "topics": "container,info,debug" + }, + { + ".id": "*1869", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:04:00", + "topics": "container,info,debug" + }, + { + ".id": "*186A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:04:20", + "topics": "container,info,debug" + }, + { + ".id": "*186B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:04:40", + "topics": "container,info,debug" + }, + { + ".id": "*186C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:05:00", + "topics": "container,info,debug" + }, + { + ".id": "*186D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:05:20", + "topics": "container,info,debug" + }, + { + ".id": "*186E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:06:32", + "topics": "container,info,debug" + }, + { + ".id": "*186F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:07:32", + "topics": "container,info,debug" + }, + { + ".id": "*1870", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:07:52", + "topics": "container,info,debug" + }, + { + ".id": "*1871", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:08:12", + "topics": "container,info,debug" + }, + { + ".id": "*1872", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:08:32", + "topics": "container,info,debug" + }, + { + ".id": "*1873", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:08:52", + "topics": "container,info,debug" + }, + { + ".id": "*1874", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:10:04", + "topics": "container,info,debug" + }, + { + ".id": "*1875", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:11:04", + "topics": "container,info,debug" + }, + { + ".id": "*1876", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:11:24", + "topics": "container,info,debug" + }, + { + ".id": "*1877", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-18 03:11:38", + "topics": "dhcp,info" + }, + { + ".id": "*1878", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:11:44", + "topics": "container,info,debug" + }, + { + ".id": "*1879", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:12:04", + "topics": "container,info,debug" + }, + { + ".id": "*187A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:12:24", + "topics": "container,info,debug" + }, + { + ".id": "*187B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:13:35", + "topics": "container,info,debug" + }, + { + ".id": "*187C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:14:35", + "topics": "container,info,debug" + }, + { + ".id": "*187D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:14:55", + "topics": "container,info,debug" + }, + { + ".id": "*187E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:15:15", + "topics": "container,info,debug" + }, + { + ".id": "*187F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:15:35", + "topics": "container,info,debug" + }, + { + ".id": "*1880", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:15:55", + "topics": "container,info,debug" + }, + { + ".id": "*1881", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:17:07", + "topics": "container,info,debug" + }, + { + ".id": "*1882", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:18:07", + "topics": "container,info,debug" + }, + { + ".id": "*1883", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:18:27", + "topics": "container,info,debug" + }, + { + ".id": "*1884", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:18:47", + "topics": "container,info,debug" + }, + { + ".id": "*1885", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:19:07", + "topics": "container,info,debug" + }, + { + ".id": "*1886", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:19:27", + "topics": "container,info,debug" + }, + { + ".id": "*1887", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:20:38", + "topics": "container,info,debug" + }, + { + ".id": "*1888", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:21:38", + "topics": "container,info,debug" + }, + { + ".id": "*1889", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:21:58", + "topics": "container,info,debug" + }, + { + ".id": "*188A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:22:18", + "topics": "container,info,debug" + }, + { + ".id": "*188B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:22:38", + "topics": "container,info,debug" + }, + { + ".id": "*188C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:22:58", + "topics": "container,info,debug" + }, + { + ".id": "*188D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:24:09", + "topics": "container,info,debug" + }, + { + ".id": "*188E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:25:09", + "topics": "container,info,debug" + }, + { + ".id": "*188F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:25:29", + "topics": "container,info,debug" + }, + { + ".id": "*1890", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:25:49", + "topics": "container,info,debug" + }, + { + ".id": "*1891", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:26:09", + "topics": "container,info,debug" + }, + { + ".id": "*1892", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:26:29", + "topics": "container,info,debug" + }, + { + ".id": "*1893", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:27:41", + "topics": "container,info,debug" + }, + { + ".id": "*1894", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:28:41", + "topics": "container,info,debug" + }, + { + ".id": "*1895", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:29:01", + "topics": "container,info,debug" + }, + { + ".id": "*1896", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:29:21", + "topics": "container,info,debug" + }, + { + ".id": "*1897", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:29:41", + "topics": "container,info,debug" + }, + { + ".id": "*1898", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:30:01", + "topics": "container,info,debug" + }, + { + ".id": "*1899", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:31:12", + "topics": "container,info,debug" + }, + { + ".id": "*189A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:32:12", + "topics": "container,info,debug" + }, + { + ".id": "*189B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:32:32", + "topics": "container,info,debug" + }, + { + ".id": "*189C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:32:52", + "topics": "container,info,debug" + }, + { + ".id": "*189D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:33:12", + "topics": "container,info,debug" + }, + { + ".id": "*189E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:33:32", + "topics": "container,info,debug" + }, + { + ".id": "*189F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:34:44", + "topics": "container,info,debug" + }, + { + ".id": "*18A0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:35:44", + "topics": "container,info,debug" + }, + { + ".id": "*18A1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:36:04", + "topics": "container,info,debug" + }, + { + ".id": "*18A2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:36:24", + "topics": "container,info,debug" + }, + { + ".id": "*18A3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:36:44", + "topics": "container,info,debug" + }, + { + ".id": "*18A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:37:04", + "topics": "container,info,debug" + }, + { + ".id": "*18A5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:38:16", + "topics": "container,info,debug" + }, + { + ".id": "*18A6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:39:16", + "topics": "container,info,debug" + }, + { + ".id": "*18A7", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-18 03:39:20", + "topics": "dhcp,info" + }, + { + ".id": "*18A8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:39:36", + "topics": "container,info,debug" + }, + { + ".id": "*18A9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:39:56", + "topics": "container,info,debug" + }, + { + ".id": "*18AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:40:16", + "topics": "container,info,debug" + }, + { + ".id": "*18AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:40:36", + "topics": "container,info,debug" + }, + { + ".id": "*18AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:41:47", + "topics": "container,info,debug" + }, + { + ".id": "*18AD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:42:47", + "topics": "container,info,debug" + }, + { + ".id": "*18AE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:43:07", + "topics": "container,info,debug" + }, + { + ".id": "*18AF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:43:27", + "topics": "container,info,debug" + }, + { + ".id": "*18B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:43:47", + "topics": "container,info,debug" + }, + { + ".id": "*18B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:44:07", + "topics": "container,info,debug" + }, + { + ".id": "*18B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:45:19", + "topics": "container,info,debug" + }, + { + ".id": "*18B3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:46:19", + "topics": "container,info,debug" + }, + { + ".id": "*18B4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:46:39", + "topics": "container,info,debug" + }, + { + ".id": "*18B5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:46:59", + "topics": "container,info,debug" + }, + { + ".id": "*18B6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:47:19", + "topics": "container,info,debug" + }, + { + ".id": "*18B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:47:39", + "topics": "container,info,debug" + }, + { + ".id": "*18B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:48:50", + "topics": "container,info,debug" + }, + { + ".id": "*18B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:49:50", + "topics": "container,info,debug" + }, + { + ".id": "*18BA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:50:10", + "topics": "container,info,debug" + }, + { + ".id": "*18BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:50:30", + "topics": "container,info,debug" + }, + { + ".id": "*18BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:50:50", + "topics": "container,info,debug" + }, + { + ".id": "*18BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:51:10", + "topics": "container,info,debug" + }, + { + ".id": "*18BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:52:22", + "topics": "container,info,debug" + }, + { + ".id": "*18BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:53:22", + "topics": "container,info,debug" + }, + { + ".id": "*18C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:53:42", + "topics": "container,info,debug" + }, + { + ".id": "*18C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:54:02", + "topics": "container,info,debug" + }, + { + ".id": "*18C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:54:22", + "topics": "container,info,debug" + }, + { + ".id": "*18C3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:54:42", + "topics": "container,info,debug" + }, + { + ".id": "*18C4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:55:53", + "topics": "container,info,debug" + }, + { + ".id": "*18C5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:56:53", + "topics": "container,info,debug" + }, + { + ".id": "*18C6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:57:13", + "topics": "container,info,debug" + }, + { + ".id": "*18C7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:57:33", + "topics": "container,info,debug" + }, + { + ".id": "*18C8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:57:53", + "topics": "container,info,debug" + }, + { + ".id": "*18C9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:58:13", + "topics": "container,info,debug" + }, + { + ".id": "*18CA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 03:59:25", + "topics": "container,info,debug" + }, + { + ".id": "*18CB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:00:25", + "topics": "container,info,debug" + }, + { + ".id": "*18CC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:00:45", + "topics": "container,info,debug" + }, + { + ".id": "*18CD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:01:05", + "topics": "container,info,debug" + }, + { + ".id": "*18CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:01:25", + "topics": "container,info,debug" + }, + { + ".id": "*18CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:01:45", + "topics": "container,info,debug" + }, + { + ".id": "*18D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:02:56", + "topics": "container,info,debug" + }, + { + ".id": "*18D1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:03:56", + "topics": "container,info,debug" + }, + { + ".id": "*18D2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:04:16", + "topics": "container,info,debug" + }, + { + ".id": "*18D3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:04:36", + "topics": "container,info,debug" + }, + { + ".id": "*18D4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:04:56", + "topics": "container,info,debug" + }, + { + ".id": "*18D5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:05:16", + "topics": "container,info,debug" + }, + { + ".id": "*18D6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:06:28", + "topics": "container,info,debug" + }, + { + ".id": "*18D7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:07:28", + "topics": "container,info,debug" + }, + { + ".id": "*18D8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:07:48", + "topics": "container,info,debug" + }, + { + ".id": "*18D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:08:08", + "topics": "container,info,debug" + }, + { + ".id": "*18DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:08:28", + "topics": "container,info,debug" + }, + { + ".id": "*18DB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:08:48", + "topics": "container,info,debug" + }, + { + ".id": "*18DC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:09:59", + "topics": "container,info,debug" + }, + { + ".id": "*18DD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:10:59", + "topics": "container,info,debug" + }, + { + ".id": "*18DE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:11:19", + "topics": "container,info,debug" + }, + { + ".id": "*18DF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:11:39", + "topics": "container,info,debug" + }, + { + ".id": "*18E0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:11:59", + "topics": "container,info,debug" + }, + { + ".id": "*18E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:12:19", + "topics": "container,info,debug" + }, + { + ".id": "*18E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:13:31", + "topics": "container,info,debug" + }, + { + ".id": "*18E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:14:31", + "topics": "container,info,debug" + }, + { + ".id": "*18E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:14:51", + "topics": "container,info,debug" + }, + { + ".id": "*18E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:15:11", + "topics": "container,info,debug" + }, + { + ".id": "*18E6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:15:31", + "topics": "container,info,debug" + }, + { + ".id": "*18E7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:15:51", + "topics": "container,info,debug" + }, + { + ".id": "*18E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:17:02", + "topics": "container,info,debug" + }, + { + ".id": "*18E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:18:02", + "topics": "container,info,debug" + }, + { + ".id": "*18EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:18:22", + "topics": "container,info,debug" + }, + { + ".id": "*18EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:18:42", + "topics": "container,info,debug" + }, + { + ".id": "*18EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:19:02", + "topics": "container,info,debug" + }, + { + ".id": "*18ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:19:22", + "topics": "container,info,debug" + }, + { + ".id": "*18EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:20:34", + "topics": "container,info,debug" + }, + { + ".id": "*18EF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:21:34", + "topics": "container,info,debug" + }, + { + ".id": "*18F0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:21:54", + "topics": "container,info,debug" + }, + { + ".id": "*18F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:22:14", + "topics": "container,info,debug" + }, + { + ".id": "*18F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:22:34", + "topics": "container,info,debug" + }, + { + ".id": "*18F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:22:54", + "topics": "container,info,debug" + }, + { + ".id": "*18F4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:24:05", + "topics": "container,info,debug" + }, + { + ".id": "*18F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:25:05", + "topics": "container,info,debug" + }, + { + ".id": "*18F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:25:25", + "topics": "container,info,debug" + }, + { + ".id": "*18F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:25:45", + "topics": "container,info,debug" + }, + { + ".id": "*18F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:26:05", + "topics": "container,info,debug" + }, + { + ".id": "*18F9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:26:25", + "topics": "container,info,debug" + }, + { + ".id": "*18FA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:27:36", + "topics": "container,info,debug" + }, + { + ".id": "*18FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:28:36", + "topics": "container,info,debug" + }, + { + ".id": "*18FC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:28:56", + "topics": "container,info,debug" + }, + { + ".id": "*18FD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:29:16", + "topics": "container,info,debug" + }, + { + ".id": "*18FE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:29:36", + "topics": "container,info,debug" + }, + { + ".id": "*18FF", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.122 for 7C:9A:1D:2D:E5:E1 ", + "time": "2026-01-18 04:29:47", + "topics": "dhcp,info" + }, + { + ".id": "*1900", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-18 04:29:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1901", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-18 04:29:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1902", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged in", + "time": "2026-01-18 04:29:49", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1903", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-18 04:29:49", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1904", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:29:56", + "topics": "container,info,debug" + }, + { + ".id": "*1905", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:31:07", + "topics": "container,info,debug" + }, + { + ".id": "*1906", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:32:07", + "topics": "container,info,debug" + }, + { + ".id": "*1907", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:32:27", + "topics": "container,info,debug" + }, + { + ".id": "*1908", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:32:47", + "topics": "container,info,debug" + }, + { + ".id": "*1909", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:33:07", + "topics": "container,info,debug" + }, + { + ".id": "*190A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:33:27", + "topics": "container,info,debug" + }, + { + ".id": "*190B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:34:39", + "topics": "container,info,debug" + }, + { + ".id": "*190C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:35:39", + "topics": "container,info,debug" + }, + { + ".id": "*190D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:35:59", + "topics": "container,info,debug" + }, + { + ".id": "*190E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:36:19", + "topics": "container,info,debug" + }, + { + ".id": "*190F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:36:39", + "topics": "container,info,debug" + }, + { + ".id": "*1910", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:36:59", + "topics": "container,info,debug" + }, + { + ".id": "*1911", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:38:11", + "topics": "container,info,debug" + }, + { + ".id": "*1912", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:39:11", + "topics": "container,info,debug" + }, + { + ".id": "*1913", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:39:31", + "topics": "container,info,debug" + }, + { + ".id": "*1914", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:39:51", + "topics": "container,info,debug" + }, + { + ".id": "*1915", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:40:11", + "topics": "container,info,debug" + }, + { + ".id": "*1916", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-18 04:40:17", + "topics": "dhcp,info" + }, + { + ".id": "*1917", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:40:31", + "topics": "container,info,debug" + }, + { + ".id": "*1918", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:41:42", + "topics": "container,info,debug" + }, + { + ".id": "*1919", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:42:42", + "topics": "container,info,debug" + }, + { + ".id": "*191A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:43:02", + "topics": "container,info,debug" + }, + { + ".id": "*191B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:43:22", + "topics": "container,info,debug" + }, + { + ".id": "*191C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:43:42", + "topics": "container,info,debug" + }, + { + ".id": "*191D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:44:02", + "topics": "container,info,debug" + }, + { + ".id": "*191E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:45:14", + "topics": "container,info,debug" + }, + { + ".id": "*191F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:46:14", + "topics": "container,info,debug" + }, + { + ".id": "*1920", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:46:34", + "topics": "container,info,debug" + }, + { + ".id": "*1921", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 04:46:41", + "topics": "dhcp,info" + }, + { + ".id": "*1922", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-18 04:46:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1923", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-18 04:46:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1924", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged in", + "time": "2026-01-18 04:46:41", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1925", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-18 04:46:41", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1926", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:46:54", + "topics": "container,info,debug" + }, + { + ".id": "*1927", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:47:14", + "topics": "container,info,debug" + }, + { + ".id": "*1928", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:47:34", + "topics": "container,info,debug" + }, + { + ".id": "*1929", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:48:45", + "topics": "container,info,debug" + }, + { + ".id": "*192A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:49:45", + "topics": "container,info,debug" + }, + { + ".id": "*192B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:50:05", + "topics": "container,info,debug" + }, + { + ".id": "*192C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:50:25", + "topics": "container,info,debug" + }, + { + ".id": "*192D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:50:45", + "topics": "container,info,debug" + }, + { + ".id": "*192E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:51:05", + "topics": "container,info,debug" + }, + { + ".id": "*192F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:52:16", + "topics": "container,info,debug" + }, + { + ".id": "*1930", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 04:52:25", + "topics": "dhcp,info" + }, + { + ".id": "*1931", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 04:52:25", + "topics": "dhcp,info" + }, + { + ".id": "*1932", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:53:16", + "topics": "container,info,debug" + }, + { + ".id": "*1933", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:53:36", + "topics": "container,info,debug" + }, + { + ".id": "*1934", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:53:56", + "topics": "container,info,debug" + }, + { + ".id": "*1935", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:54:16", + "topics": "container,info,debug" + }, + { + ".id": "*1936", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:54:36", + "topics": "container,info,debug" + }, + { + ".id": "*1937", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:55:48", + "topics": "container,info,debug" + }, + { + ".id": "*1938", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:56:48", + "topics": "container,info,debug" + }, + { + ".id": "*1939", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:57:08", + "topics": "container,info,debug" + }, + { + ".id": "*193A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:57:28", + "topics": "container,info,debug" + }, + { + ".id": "*193B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:57:48", + "topics": "container,info,debug" + }, + { + ".id": "*193C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:58:08", + "topics": "container,info,debug" + }, + { + ".id": "*193D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 04:59:19", + "topics": "container,info,debug" + }, + { + ".id": "*193E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:00:19", + "topics": "container,info,debug" + }, + { + ".id": "*193F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:00:39", + "topics": "container,info,debug" + }, + { + ".id": "*1940", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:00:59", + "topics": "container,info,debug" + }, + { + ".id": "*1941", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:01:19", + "topics": "container,info,debug" + }, + { + ".id": "*1942", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:01:39", + "topics": "container,info,debug" + }, + { + ".id": "*1943", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:02:51", + "topics": "container,info,debug" + }, + { + ".id": "*1944", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:03:51", + "topics": "container,info,debug" + }, + { + ".id": "*1945", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:04:11", + "topics": "container,info,debug" + }, + { + ".id": "*1946", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:04:31", + "topics": "container,info,debug" + }, + { + ".id": "*1947", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:04:51", + "topics": "container,info,debug" + }, + { + ".id": "*1948", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:05:11", + "topics": "container,info,debug" + }, + { + ".id": "*1949", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:06:22", + "topics": "container,info,debug" + }, + { + ".id": "*194A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:07:22", + "topics": "container,info,debug" + }, + { + ".id": "*194B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:07:42", + "topics": "container,info,debug" + }, + { + ".id": "*194C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:08:02", + "topics": "container,info,debug" + }, + { + ".id": "*194D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:08:22", + "topics": "container,info,debug" + }, + { + ".id": "*194E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:08:42", + "topics": "container,info,debug" + }, + { + ".id": "*194F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:09:54", + "topics": "container,info,debug" + }, + { + ".id": "*1950", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-18 05:10:17", + "topics": "dhcp,info" + }, + { + ".id": "*1951", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:10:54", + "topics": "container,info,debug" + }, + { + ".id": "*1952", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:11:14", + "topics": "container,info,debug" + }, + { + ".id": "*1953", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:11:34", + "topics": "container,info,debug" + }, + { + ".id": "*1954", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:11:54", + "topics": "container,info,debug" + }, + { + ".id": "*1955", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:12:14", + "topics": "container,info,debug" + }, + { + ".id": "*1956", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:13:25", + "topics": "container,info,debug" + }, + { + ".id": "*1957", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:14:25", + "topics": "container,info,debug" + }, + { + ".id": "*1958", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:14:45", + "topics": "container,info,debug" + }, + { + ".id": "*1959", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:15:05", + "topics": "container,info,debug" + }, + { + ".id": "*195A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:15:25", + "topics": "container,info,debug" + }, + { + ".id": "*195B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:15:45", + "topics": "container,info,debug" + }, + { + ".id": "*195C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:16:57", + "topics": "container,info,debug" + }, + { + ".id": "*195D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:17:57", + "topics": "container,info,debug" + }, + { + ".id": "*195E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:18:17", + "topics": "container,info,debug" + }, + { + ".id": "*195F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:18:37", + "topics": "container,info,debug" + }, + { + ".id": "*1960", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:18:57", + "topics": "container,info,debug" + }, + { + ".id": "*1961", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:19:17", + "topics": "container,info,debug" + }, + { + ".id": "*1962", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:20:28", + "topics": "container,info,debug" + }, + { + ".id": "*1963", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:21:28", + "topics": "container,info,debug" + }, + { + ".id": "*1964", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:21:48", + "topics": "container,info,debug" + }, + { + ".id": "*1965", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:22:08", + "topics": "container,info,debug" + }, + { + ".id": "*1966", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:22:28", + "topics": "container,info,debug" + }, + { + ".id": "*1967", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:22:48", + "topics": "container,info,debug" + }, + { + ".id": "*1968", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:24:00", + "topics": "container,info,debug" + }, + { + ".id": "*1969", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-18 05:24:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*196A", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-18 05:24:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*196B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:25:00", + "topics": "container,info,debug" + }, + { + ".id": "*196C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:25:20", + "topics": "container,info,debug" + }, + { + ".id": "*196D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:25:40", + "topics": "container,info,debug" + }, + { + ".id": "*196E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:26:00", + "topics": "container,info,debug" + }, + { + ".id": "*196F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:26:20", + "topics": "container,info,debug" + }, + { + ".id": "*1970", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:27:32", + "topics": "container,info,debug" + }, + { + ".id": "*1971", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:28:32", + "topics": "container,info,debug" + }, + { + ".id": "*1972", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:28:52", + "topics": "container,info,debug" + }, + { + ".id": "*1973", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:29:12", + "topics": "container,info,debug" + }, + { + ".id": "*1974", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:29:32", + "topics": "container,info,debug" + }, + { + ".id": "*1975", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:29:52", + "topics": "container,info,debug" + }, + { + ".id": "*1976", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-18 05:30:11", + "topics": "dhcp,info" + }, + { + ".id": "*1977", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:31:03", + "topics": "container,info,debug" + }, + { + ".id": "*1978", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:32:03", + "topics": "container,info,debug" + }, + { + ".id": "*1979", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:32:23", + "topics": "container,info,debug" + }, + { + ".id": "*197A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:32:43", + "topics": "container,info,debug" + }, + { + ".id": "*197B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:33:03", + "topics": "container,info,debug" + }, + { + ".id": "*197C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:33:23", + "topics": "container,info,debug" + }, + { + ".id": "*197D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:34:35", + "topics": "container,info,debug" + }, + { + ".id": "*197E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:35:35", + "topics": "container,info,debug" + }, + { + ".id": "*197F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:35:55", + "topics": "container,info,debug" + }, + { + ".id": "*1980", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:36:15", + "topics": "container,info,debug" + }, + { + ".id": "*1981", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:36:35", + "topics": "container,info,debug" + }, + { + ".id": "*1982", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:36:55", + "topics": "container,info,debug" + }, + { + ".id": "*1983", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 05:37:26", + "topics": "dhcp,info" + }, + { + ".id": "*1984", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:38:06", + "topics": "container,info,debug" + }, + { + ".id": "*1985", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:39:06", + "topics": "container,info,debug" + }, + { + ".id": "*1986", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:39:26", + "topics": "container,info,debug" + }, + { + ".id": "*1987", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:39:46", + "topics": "container,info,debug" + }, + { + ".id": "*1988", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:40:06", + "topics": "container,info,debug" + }, + { + ".id": "*1989", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:40:26", + "topics": "container,info,debug" + }, + { + ".id": "*198A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:41:38", + "topics": "container,info,debug" + }, + { + ".id": "*198B", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-18 05:42:10", + "topics": "dhcp,info" + }, + { + ".id": "*198C", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-18 05:42:10", + "topics": "hotspot,info,debug" + }, + { + ".id": "*198D", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-18 05:42:10", + "topics": "hotspot,info,debug" + }, + { + ".id": "*198E", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged in", + "time": "2026-01-18 05:42:10", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*198F", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-18 05:42:10", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1990", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:42:38", + "topics": "container,info,debug" + }, + { + ".id": "*1991", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:42:58", + "topics": "container,info,debug" + }, + { + ".id": "*1992", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:43:18", + "topics": "container,info,debug" + }, + { + ".id": "*1993", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:43:38", + "topics": "container,info,debug" + }, + { + ".id": "*1994", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:43:58", + "topics": "container,info,debug" + }, + { + ".id": "*1995", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:45:09", + "topics": "container,info,debug" + }, + { + ".id": "*1996", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:46:09", + "topics": "container,info,debug" + }, + { + ".id": "*1997", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:46:29", + "topics": "container,info,debug" + }, + { + ".id": "*1998", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:46:49", + "topics": "container,info,debug" + }, + { + ".id": "*1999", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:47:09", + "topics": "container,info,debug" + }, + { + ".id": "*199A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:47:29", + "topics": "container,info,debug" + }, + { + ".id": "*199B", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-18 05:48:18", + "topics": "hotspot,info,debug" + }, + { + ".id": "*199C", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-18 05:48:18", + "topics": "hotspot,info,debug" + }, + { + ".id": "*199D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:48:41", + "topics": "container,info,debug" + }, + { + ".id": "*199E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:49:41", + "topics": "container,info,debug" + }, + { + ".id": "*199F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:50:01", + "topics": "container,info,debug" + }, + { + ".id": "*19A0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:50:21", + "topics": "container,info,debug" + }, + { + ".id": "*19A1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:50:41", + "topics": "container,info,debug" + }, + { + ".id": "*19A2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:51:01", + "topics": "container,info,debug" + }, + { + ".id": "*19A3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:52:12", + "topics": "container,info,debug" + }, + { + ".id": "*19A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:53:12", + "topics": "container,info,debug" + }, + { + ".id": "*19A5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:53:32", + "topics": "container,info,debug" + }, + { + ".id": "*19A6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:53:52", + "topics": "container,info,debug" + }, + { + ".id": "*19A7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:54:12", + "topics": "container,info,debug" + }, + { + ".id": "*19A8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:54:32", + "topics": "container,info,debug" + }, + { + ".id": "*19A9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:55:44", + "topics": "container,info,debug" + }, + { + ".id": "*19AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:56:44", + "topics": "container,info,debug" + }, + { + ".id": "*19AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:57:04", + "topics": "container,info,debug" + }, + { + ".id": "*19AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:57:24", + "topics": "container,info,debug" + }, + { + ".id": "*19AD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:57:44", + "topics": "container,info,debug" + }, + { + ".id": "*19AE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:58:04", + "topics": "container,info,debug" + }, + { + ".id": "*19AF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 05:59:15", + "topics": "container,info,debug" + }, + { + ".id": "*19B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:00:15", + "topics": "container,info,debug" + }, + { + ".id": "*19B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:00:35", + "topics": "container,info,debug" + }, + { + ".id": "*19B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:00:55", + "topics": "container,info,debug" + }, + { + ".id": "*19B3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:01:15", + "topics": "container,info,debug" + }, + { + ".id": "*19B4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:01:35", + "topics": "container,info,debug" + }, + { + ".id": "*19B5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:02:47", + "topics": "container,info,debug" + }, + { + ".id": "*19B6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:03:47", + "topics": "container,info,debug" + }, + { + ".id": "*19B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:04:07", + "topics": "container,info,debug" + }, + { + ".id": "*19B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:04:27", + "topics": "container,info,debug" + }, + { + ".id": "*19B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:04:47", + "topics": "container,info,debug" + }, + { + ".id": "*19BA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:05:07", + "topics": "container,info,debug" + }, + { + ".id": "*19BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:06:18", + "topics": "container,info,debug" + }, + { + ".id": "*19BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:07:18", + "topics": "container,info,debug" + }, + { + ".id": "*19BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:07:38", + "topics": "container,info,debug" + }, + { + ".id": "*19BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:07:58", + "topics": "container,info,debug" + }, + { + ".id": "*19BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:08:18", + "topics": "container,info,debug" + }, + { + ".id": "*19C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:08:38", + "topics": "container,info,debug" + }, + { + ".id": "*19C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:09:50", + "topics": "container,info,debug" + }, + { + ".id": "*19C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:10:50", + "topics": "container,info,debug" + }, + { + ".id": "*19C3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:11:10", + "topics": "container,info,debug" + }, + { + ".id": "*19C4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:11:30", + "topics": "container,info,debug" + }, + { + ".id": "*19C5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:11:50", + "topics": "container,info,debug" + }, + { + ".id": "*19C6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:12:10", + "topics": "container,info,debug" + }, + { + ".id": "*19C7", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-18 06:12:10", + "topics": "dhcp,info" + }, + { + ".id": "*19C8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:13:21", + "topics": "container,info,debug" + }, + { + ".id": "*19C9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:14:21", + "topics": "container,info,debug" + }, + { + ".id": "*19CA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:14:41", + "topics": "container,info,debug" + }, + { + ".id": "*19CB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:15:01", + "topics": "container,info,debug" + }, + { + ".id": "*19CC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:15:21", + "topics": "container,info,debug" + }, + { + ".id": "*19CD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:15:41", + "topics": "container,info,debug" + }, + { + ".id": "*19CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:16:53", + "topics": "container,info,debug" + }, + { + ".id": "*19CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:17:53", + "topics": "container,info,debug" + }, + { + ".id": "*19D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:18:13", + "topics": "container,info,debug" + }, + { + ".id": "*19D1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:18:33", + "topics": "container,info,debug" + }, + { + ".id": "*19D2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:18:53", + "topics": "container,info,debug" + }, + { + ".id": "*19D3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:19:13", + "topics": "container,info,debug" + }, + { + ".id": "*19D4", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-18 06:19:32", + "topics": "dhcp,info" + }, + { + ".id": "*19D5", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-18 06:19:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*19D6", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-18 06:19:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*19D7", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged in", + "time": "2026-01-18 06:19:32", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*19D8", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-18 06:19:32", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*19D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:20:24", + "topics": "container,info,debug" + }, + { + ".id": "*19DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:21:24", + "topics": "container,info,debug" + }, + { + ".id": "*19DB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:21:44", + "topics": "container,info,debug" + }, + { + ".id": "*19DC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:22:04", + "topics": "container,info,debug" + }, + { + ".id": "*19DD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:22:24", + "topics": "container,info,debug" + }, + { + ".id": "*19DE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:22:44", + "topics": "container,info,debug" + }, + { + ".id": "*19DF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:23:56", + "topics": "container,info,debug" + }, + { + ".id": "*19E0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:24:56", + "topics": "container,info,debug" + }, + { + ".id": "*19E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:25:16", + "topics": "container,info,debug" + }, + { + ".id": "*19E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:25:36", + "topics": "container,info,debug" + }, + { + ".id": "*19E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:25:56", + "topics": "container,info,debug" + }, + { + ".id": "*19E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:26:16", + "topics": "container,info,debug" + }, + { + ".id": "*19E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:27:27", + "topics": "container,info,debug" + }, + { + ".id": "*19E6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:28:27", + "topics": "container,info,debug" + }, + { + ".id": "*19E7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:28:47", + "topics": "container,info,debug" + }, + { + ".id": "*19E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:29:07", + "topics": "container,info,debug" + }, + { + ".id": "*19E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:29:27", + "topics": "container,info,debug" + }, + { + ".id": "*19EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:29:47", + "topics": "container,info,debug" + }, + { + ".id": "*19EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:30:59", + "topics": "container,info,debug" + }, + { + ".id": "*19EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:31:59", + "topics": "container,info,debug" + }, + { + ".id": "*19ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:32:19", + "topics": "container,info,debug" + }, + { + ".id": "*19EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:32:39", + "topics": "container,info,debug" + }, + { + ".id": "*19EF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:32:59", + "topics": "container,info,debug" + }, + { + ".id": "*19F0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:33:19", + "topics": "container,info,debug" + }, + { + ".id": "*19F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:34:30", + "topics": "container,info,debug" + }, + { + ".id": "*19F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:35:30", + "topics": "container,info,debug" + }, + { + ".id": "*19F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:35:50", + "topics": "container,info,debug" + }, + { + ".id": "*19F4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:36:10", + "topics": "container,info,debug" + }, + { + ".id": "*19F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:36:30", + "topics": "container,info,debug" + }, + { + ".id": "*19F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:36:50", + "topics": "container,info,debug" + }, + { + ".id": "*19F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:38:02", + "topics": "container,info,debug" + }, + { + ".id": "*19F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:39:02", + "topics": "container,info,debug" + }, + { + ".id": "*19F9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:39:22", + "topics": "container,info,debug" + }, + { + ".id": "*19FA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:39:42", + "topics": "container,info,debug" + }, + { + ".id": "*19FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:40:02", + "topics": "container,info,debug" + }, + { + ".id": "*19FC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:40:22", + "topics": "container,info,debug" + }, + { + ".id": "*19FD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:41:33", + "topics": "container,info,debug" + }, + { + ".id": "*19FE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:42:33", + "topics": "container,info,debug" + }, + { + ".id": "*19FF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:42:53", + "topics": "container,info,debug" + }, + { + ".id": "*1A00", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:43:13", + "topics": "container,info,debug" + }, + { + ".id": "*1A01", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:43:33", + "topics": "container,info,debug" + }, + { + ".id": "*1A02", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:43:53", + "topics": "container,info,debug" + }, + { + ".id": "*1A03", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 06:45:03", + "topics": "dhcp,info" + }, + { + ".id": "*1A04", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-18 06:45:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A05", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-18 06:45:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A06", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged in", + "time": "2026-01-18 06:45:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1A07", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-18 06:45:03", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1A08", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:45:05", + "topics": "container,info,debug" + }, + { + ".id": "*1A09", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:46:05", + "topics": "container,info,debug" + }, + { + ".id": "*1A0A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:46:25", + "topics": "container,info,debug" + }, + { + ".id": "*1A0B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:46:45", + "topics": "container,info,debug" + }, + { + ".id": "*1A0C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:47:05", + "topics": "container,info,debug" + }, + { + ".id": "*1A0D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:47:25", + "topics": "container,info,debug" + }, + { + ".id": "*1A0E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:48:36", + "topics": "container,info,debug" + }, + { + ".id": "*1A0F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:49:36", + "topics": "container,info,debug" + }, + { + ".id": "*1A10", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:49:56", + "topics": "container,info,debug" + }, + { + ".id": "*1A11", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:50:16", + "topics": "container,info,debug" + }, + { + ".id": "*1A12", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:50:36", + "topics": "container,info,debug" + }, + { + ".id": "*1A13", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:50:56", + "topics": "container,info,debug" + }, + { + ".id": "*1A14", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:52:08", + "topics": "container,info,debug" + }, + { + ".id": "*1A15", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:53:08", + "topics": "container,info,debug" + }, + { + ".id": "*1A16", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:53:28", + "topics": "container,info,debug" + }, + { + ".id": "*1A17", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:53:48", + "topics": "container,info,debug" + }, + { + ".id": "*1A18", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:54:08", + "topics": "container,info,debug" + }, + { + ".id": "*1A19", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:54:28", + "topics": "container,info,debug" + }, + { + ".id": "*1A1A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:55:39", + "topics": "container,info,debug" + }, + { + ".id": "*1A1B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:56:39", + "topics": "container,info,debug" + }, + { + ".id": "*1A1C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:56:59", + "topics": "container,info,debug" + }, + { + ".id": "*1A1D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:57:19", + "topics": "container,info,debug" + }, + { + ".id": "*1A1E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:57:39", + "topics": "container,info,debug" + }, + { + ".id": "*1A1F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:57:59", + "topics": "container,info,debug" + }, + { + ".id": "*1A20", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 06:59:11", + "topics": "container,info,debug" + }, + { + ".id": "*1A21", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:00:11", + "topics": "container,info,debug" + }, + { + ".id": "*1A22", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:00:31", + "topics": "container,info,debug" + }, + { + ".id": "*1A23", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:00:51", + "topics": "container,info,debug" + }, + { + ".id": "*1A24", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:01:11", + "topics": "container,info,debug" + }, + { + ".id": "*1A25", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:01:31", + "topics": "container,info,debug" + }, + { + ".id": "*1A26", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:02:42", + "topics": "container,info,debug" + }, + { + ".id": "*1A27", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:03:42", + "topics": "container,info,debug" + }, + { + ".id": "*1A28", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:04:02", + "topics": "container,info,debug" + }, + { + ".id": "*1A29", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:04:22", + "topics": "container,info,debug" + }, + { + ".id": "*1A2A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:04:42", + "topics": "container,info,debug" + }, + { + ".id": "*1A2B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:05:02", + "topics": "container,info,debug" + }, + { + ".id": "*1A2C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:06:14", + "topics": "container,info,debug" + }, + { + ".id": "*1A2D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:07:14", + "topics": "container,info,debug" + }, + { + ".id": "*1A2E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:07:34", + "topics": "container,info,debug" + }, + { + ".id": "*1A2F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:07:54", + "topics": "container,info,debug" + }, + { + ".id": "*1A30", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:08:14", + "topics": "container,info,debug" + }, + { + ".id": "*1A31", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:08:34", + "topics": "container,info,debug" + }, + { + ".id": "*1A32", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:09:45", + "topics": "container,info,debug" + }, + { + ".id": "*1A33", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:10:45", + "topics": "container,info,debug" + }, + { + ".id": "*1A34", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:11:05", + "topics": "container,info,debug" + }, + { + ".id": "*1A35", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:11:25", + "topics": "container,info,debug" + }, + { + ".id": "*1A36", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:11:45", + "topics": "container,info,debug" + }, + { + ".id": "*1A37", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:12:05", + "topics": "container,info,debug" + }, + { + ".id": "*1A38", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:13:17", + "topics": "container,info,debug" + }, + { + ".id": "*1A39", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:14:17", + "topics": "container,info,debug" + }, + { + ".id": "*1A3A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:14:37", + "topics": "container,info,debug" + }, + { + ".id": "*1A3B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:14:57", + "topics": "container,info,debug" + }, + { + ".id": "*1A3C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:15:17", + "topics": "container,info,debug" + }, + { + ".id": "*1A3D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:15:37", + "topics": "container,info,debug" + }, + { + ".id": "*1A3E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:16:48", + "topics": "container,info,debug" + }, + { + ".id": "*1A3F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:17:48", + "topics": "container,info,debug" + }, + { + ".id": "*1A40", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:18:08", + "topics": "container,info,debug" + }, + { + ".id": "*1A41", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:18:28", + "topics": "container,info,debug" + }, + { + ".id": "*1A42", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:18:48", + "topics": "container,info,debug" + }, + { + ".id": "*1A43", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:19:08", + "topics": "container,info,debug" + }, + { + ".id": "*1A44", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:20:20", + "topics": "container,info,debug" + }, + { + ".id": "*1A45", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:21:20", + "topics": "container,info,debug" + }, + { + ".id": "*1A46", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:21:40", + "topics": "container,info,debug" + }, + { + ".id": "*1A47", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:22:00", + "topics": "container,info,debug" + }, + { + ".id": "*1A48", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-18 07:22:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A49", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-18 07:22:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A4A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:22:20", + "topics": "container,info,debug" + }, + { + ".id": "*1A4B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:22:40", + "topics": "container,info,debug" + }, + { + ".id": "*1A4C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:23:51", + "topics": "container,info,debug" + }, + { + ".id": "*1A4D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:24:51", + "topics": "container,info,debug" + }, + { + ".id": "*1A4E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:25:11", + "topics": "container,info,debug" + }, + { + ".id": "*1A4F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:25:31", + "topics": "container,info,debug" + }, + { + ".id": "*1A50", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:25:51", + "topics": "container,info,debug" + }, + { + ".id": "*1A51", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:26:11", + "topics": "container,info,debug" + }, + { + ".id": "*1A52", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:27:23", + "topics": "container,info,debug" + }, + { + ".id": "*1A53", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:28:23", + "topics": "container,info,debug" + }, + { + ".id": "*1A54", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:28:43", + "topics": "container,info,debug" + }, + { + ".id": "*1A55", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:29:03", + "topics": "container,info,debug" + }, + { + ".id": "*1A56", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:29:23", + "topics": "container,info,debug" + }, + { + ".id": "*1A57", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:29:43", + "topics": "container,info,debug" + }, + { + ".id": "*1A58", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:30:54", + "topics": "container,info,debug" + }, + { + ".id": "*1A59", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:31:54", + "topics": "container,info,debug" + }, + { + ".id": "*1A5A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:32:14", + "topics": "container,info,debug" + }, + { + ".id": "*1A5B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:32:34", + "topics": "container,info,debug" + }, + { + ".id": "*1A5C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:32:54", + "topics": "container,info,debug" + }, + { + ".id": "*1A5D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:33:14", + "topics": "container,info,debug" + }, + { + ".id": "*1A5E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:34:26", + "topics": "container,info,debug" + }, + { + ".id": "*1A5F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:35:26", + "topics": "container,info,debug" + }, + { + ".id": "*1A60", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:35:46", + "topics": "container,info,debug" + }, + { + ".id": "*1A61", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.122 for 7C:9A:1D:2D:E5:E1 ", + "time": "2026-01-18 07:35:55", + "topics": "dhcp,info" + }, + { + ".id": "*1A62", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:36:06", + "topics": "container,info,debug" + }, + { + ".id": "*1A63", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:36:26", + "topics": "container,info,debug" + }, + { + ".id": "*1A64", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:36:46", + "topics": "container,info,debug" + }, + { + ".id": "*1A65", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:37:58", + "topics": "container,info,debug" + }, + { + ".id": "*1A66", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:38:58", + "topics": "container,info,debug" + }, + { + ".id": "*1A67", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:39:18", + "topics": "container,info,debug" + }, + { + ".id": "*1A68", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:39:38", + "topics": "container,info,debug" + }, + { + ".id": "*1A69", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:39:58", + "topics": "container,info,debug" + }, + { + ".id": "*1A6A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:40:18", + "topics": "container,info,debug" + }, + { + ".id": "*1A6B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:41:30", + "topics": "container,info,debug" + }, + { + ".id": "*1A6C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:42:30", + "topics": "container,info,debug" + }, + { + ".id": "*1A6D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:42:50", + "topics": "container,info,debug" + }, + { + ".id": "*1A6E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:43:10", + "topics": "container,info,debug" + }, + { + ".id": "*1A6F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:43:30", + "topics": "container,info,debug" + }, + { + ".id": "*1A70", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.253 for EA:42:27:4C:BE:82 ", + "time": "2026-01-18 07:43:46", + "topics": "dhcp,info" + }, + { + ".id": "*1A71", + "extra-info": "", + "message": "gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-18 07:43:46", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A72", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-18 07:43:46", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A73", + "extra-info": "", + "message": "gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-18 07:43:46", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1A74", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-18 07:43:46", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1A75", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:43:50", + "topics": "container,info,debug" + }, + { + ".id": "*1A76", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:45:01", + "topics": "container,info,debug" + }, + { + ".id": "*1A77", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:46:01", + "topics": "container,info,debug" + }, + { + ".id": "*1A78", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:46:21", + "topics": "container,info,debug" + }, + { + ".id": "*1A79", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:46:41", + "topics": "container,info,debug" + }, + { + ".id": "*1A7A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:47:01", + "topics": "container,info,debug" + }, + { + ".id": "*1A7B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:47:21", + "topics": "container,info,debug" + }, + { + ".id": "*1A7C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:48:32", + "topics": "container,info,debug" + }, + { + ".id": "*1A7D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:49:32", + "topics": "container,info,debug" + }, + { + ".id": "*1A7E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:49:52", + "topics": "container,info,debug" + }, + { + ".id": "*1A7F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:50:12", + "topics": "container,info,debug" + }, + { + ".id": "*1A80", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:50:32", + "topics": "container,info,debug" + }, + { + ".id": "*1A81", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:50:52", + "topics": "container,info,debug" + }, + { + ".id": "*1A82", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:52:04", + "topics": "container,info,debug" + }, + { + ".id": "*1A83", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:53:04", + "topics": "container,info,debug" + }, + { + ".id": "*1A84", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:53:24", + "topics": "container,info,debug" + }, + { + ".id": "*1A85", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:53:44", + "topics": "container,info,debug" + }, + { + ".id": "*1A86", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:54:04", + "topics": "container,info,debug" + }, + { + ".id": "*1A87", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:54:24", + "topics": "container,info,debug" + }, + { + ".id": "*1A88", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:55:35", + "topics": "container,info,debug" + }, + { + ".id": "*1A89", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:56:35", + "topics": "container,info,debug" + }, + { + ".id": "*1A8A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:56:55", + "topics": "container,info,debug" + }, + { + ".id": "*1A8B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:57:15", + "topics": "container,info,debug" + }, + { + ".id": "*1A8C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:57:35", + "topics": "container,info,debug" + }, + { + ".id": "*1A8D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:57:55", + "topics": "container,info,debug" + }, + { + ".id": "*1A8E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 07:59:06", + "topics": "container,info,debug" + }, + { + ".id": "*1A8F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:00:06", + "topics": "container,info,debug" + }, + { + ".id": "*1A90", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:00:26", + "topics": "container,info,debug" + }, + { + ".id": "*1A91", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:00:46", + "topics": "container,info,debug" + }, + { + ".id": "*1A92", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:01:06", + "topics": "container,info,debug" + }, + { + ".id": "*1A93", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:01:26", + "topics": "container,info,debug" + }, + { + ".id": "*1A94", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:02:38", + "topics": "container,info,debug" + }, + { + ".id": "*1A95", + "extra-info": "", + "message": "gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-18 08:02:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A96", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged out: keepalive timeout", + "time": "2026-01-18 08:02:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A97", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-18 08:02:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A98", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-18 08:02:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1A99", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.102 for 92:AA:2C:27:0F:9C A25-milik-Srada", + "time": "2026-01-18 08:03:02", + "topics": "dhcp,info" + }, + { + ".id": "*1A9A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:03:38", + "topics": "container,info,debug" + }, + { + ".id": "*1A9B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:03:58", + "topics": "container,info,debug" + }, + { + ".id": "*1A9C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:04:18", + "topics": "container,info,debug" + }, + { + ".id": "*1A9D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:04:38", + "topics": "container,info,debug" + }, + { + ".id": "*1A9E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:04:58", + "topics": "container,info,debug" + }, + { + ".id": "*1A9F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:06:09", + "topics": "container,info,debug" + }, + { + ".id": "*1AA0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:07:09", + "topics": "container,info,debug" + }, + { + ".id": "*1AA1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:07:29", + "topics": "container,info,debug" + }, + { + ".id": "*1AA2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:07:49", + "topics": "container,info,debug" + }, + { + ".id": "*1AA3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:08:09", + "topics": "container,info,debug" + }, + { + ".id": "*1AA4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:08:29", + "topics": "container,info,debug" + }, + { + ".id": "*1AA5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:09:41", + "topics": "container,info,debug" + }, + { + ".id": "*1AA6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:10:41", + "topics": "container,info,debug" + }, + { + ".id": "*1AA7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:11:01", + "topics": "container,info,debug" + }, + { + ".id": "*1AA8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:11:21", + "topics": "container,info,debug" + }, + { + ".id": "*1AA9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:11:41", + "topics": "container,info,debug" + }, + { + ".id": "*1AAA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:12:01", + "topics": "container,info,debug" + }, + { + ".id": "*1AAB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:13:12", + "topics": "container,info,debug" + }, + { + ".id": "*1AAC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:14:12", + "topics": "container,info,debug" + }, + { + ".id": "*1AAD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:14:32", + "topics": "container,info,debug" + }, + { + ".id": "*1AAE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:14:52", + "topics": "container,info,debug" + }, + { + ".id": "*1AAF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:15:12", + "topics": "container,info,debug" + }, + { + ".id": "*1AB0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:15:32", + "topics": "container,info,debug" + }, + { + ".id": "*1AB1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:16:44", + "topics": "container,info,debug" + }, + { + ".id": "*1AB2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:17:44", + "topics": "container,info,debug" + }, + { + ".id": "*1AB3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:18:04", + "topics": "container,info,debug" + }, + { + ".id": "*1AB4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:18:24", + "topics": "container,info,debug" + }, + { + ".id": "*1AB5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:18:44", + "topics": "container,info,debug" + }, + { + ".id": "*1AB6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:19:04", + "topics": "container,info,debug" + }, + { + ".id": "*1AB7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:20:15", + "topics": "container,info,debug" + }, + { + ".id": "*1AB8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:21:15", + "topics": "container,info,debug" + }, + { + ".id": "*1AB9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:21:35", + "topics": "container,info,debug" + }, + { + ".id": "*1ABA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:21:55", + "topics": "container,info,debug" + }, + { + ".id": "*1ABB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:22:15", + "topics": "container,info,debug" + }, + { + ".id": "*1ABC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:22:35", + "topics": "container,info,debug" + }, + { + ".id": "*1ABD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:23:47", + "topics": "container,info,debug" + }, + { + ".id": "*1ABE", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-18 08:24:17", + "topics": "dhcp,info" + }, + { + ".id": "*1ABF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:24:47", + "topics": "container,info,debug" + }, + { + ".id": "*1AC0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:25:07", + "topics": "container,info,debug" + }, + { + ".id": "*1AC1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:25:27", + "topics": "container,info,debug" + }, + { + ".id": "*1AC2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:25:47", + "topics": "container,info,debug" + }, + { + ".id": "*1AC3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:26:07", + "topics": "container,info,debug" + }, + { + ".id": "*1AC4", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-18 08:26:19", + "topics": "dhcp,info" + }, + { + ".id": "*1AC5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:27:18", + "topics": "container,info,debug" + }, + { + ".id": "*1AC6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:28:18", + "topics": "container,info,debug" + }, + { + ".id": "*1AC7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:28:38", + "topics": "container,info,debug" + }, + { + ".id": "*1AC8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:28:58", + "topics": "container,info,debug" + }, + { + ".id": "*1AC9", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.253 for EA:42:27:4C:BE:82 ", + "time": "2026-01-18 08:29:02", + "topics": "dhcp,info" + }, + { + ".id": "*1ACA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:29:18", + "topics": "container,info,debug" + }, + { + ".id": "*1ACB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:29:38", + "topics": "container,info,debug" + }, + { + ".id": "*1ACC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:30:50", + "topics": "container,info,debug" + }, + { + ".id": "*1ACD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:31:50", + "topics": "container,info,debug" + }, + { + ".id": "*1ACE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:32:10", + "topics": "container,info,debug" + }, + { + ".id": "*1ACF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:32:30", + "topics": "container,info,debug" + }, + { + ".id": "*1AD0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:32:50", + "topics": "container,info,debug" + }, + { + ".id": "*1AD1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:33:10", + "topics": "container,info,debug" + }, + { + ".id": "*1AD2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:34:21", + "topics": "container,info,debug" + }, + { + ".id": "*1AD3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:35:21", + "topics": "container,info,debug" + }, + { + ".id": "*1AD4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:35:41", + "topics": "container,info,debug" + }, + { + ".id": "*1AD5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:36:01", + "topics": "container,info,debug" + }, + { + ".id": "*1AD6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:36:21", + "topics": "container,info,debug" + }, + { + ".id": "*1AD7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:36:41", + "topics": "container,info,debug" + }, + { + ".id": "*1AD8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:37:53", + "topics": "container,info,debug" + }, + { + ".id": "*1AD9", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.105 for F4:D1:08:58:B4:A2 DESKTOP-V812127", + "time": "2026-01-18 08:38:42", + "topics": "dhcp,info" + }, + { + ".id": "*1ADA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:38:53", + "topics": "container,info,debug" + }, + { + ".id": "*1ADB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:39:13", + "topics": "container,info,debug" + }, + { + ".id": "*1ADC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:39:33", + "topics": "container,info,debug" + }, + { + ".id": "*1ADD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:39:53", + "topics": "container,info,debug" + }, + { + ".id": "*1ADE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:40:13", + "topics": "container,info,debug" + }, + { + ".id": "*1ADF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:41:24", + "topics": "container,info,debug" + }, + { + ".id": "*1AE0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:42:24", + "topics": "container,info,debug" + }, + { + ".id": "*1AE1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:42:44", + "topics": "container,info,debug" + }, + { + ".id": "*1AE2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:43:04", + "topics": "container,info,debug" + }, + { + ".id": "*1AE3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:43:24", + "topics": "container,info,debug" + }, + { + ".id": "*1AE4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:43:44", + "topics": "container,info,debug" + }, + { + ".id": "*1AE5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:44:56", + "topics": "container,info,debug" + }, + { + ".id": "*1AE6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:45:56", + "topics": "container,info,debug" + }, + { + ".id": "*1AE7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:46:16", + "topics": "container,info,debug" + }, + { + ".id": "*1AE8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:46:36", + "topics": "container,info,debug" + }, + { + ".id": "*1AE9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:46:56", + "topics": "container,info,debug" + }, + { + ".id": "*1AEA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:47:16", + "topics": "container,info,debug" + }, + { + ".id": "*1AEB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:48:27", + "topics": "container,info,debug" + }, + { + ".id": "*1AEC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:49:27", + "topics": "container,info,debug" + }, + { + ".id": "*1AED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:49:47", + "topics": "container,info,debug" + }, + { + ".id": "*1AEE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:50:07", + "topics": "container,info,debug" + }, + { + ".id": "*1AEF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:50:27", + "topics": "container,info,debug" + }, + { + ".id": "*1AF0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:50:47", + "topics": "container,info,debug" + }, + { + ".id": "*1AF1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:51:59", + "topics": "container,info,debug" + }, + { + ".id": "*1AF2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:52:59", + "topics": "container,info,debug" + }, + { + ".id": "*1AF3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:53:19", + "topics": "container,info,debug" + }, + { + ".id": "*1AF4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:53:39", + "topics": "container,info,debug" + }, + { + ".id": "*1AF5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:53:59", + "topics": "container,info,debug" + }, + { + ".id": "*1AF6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:54:19", + "topics": "container,info,debug" + }, + { + ".id": "*1AF7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:55:30", + "topics": "container,info,debug" + }, + { + ".id": "*1AF8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:56:30", + "topics": "container,info,debug" + }, + { + ".id": "*1AF9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:56:50", + "topics": "container,info,debug" + }, + { + ".id": "*1AFA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:57:10", + "topics": "container,info,debug" + }, + { + ".id": "*1AFB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:57:30", + "topics": "container,info,debug" + }, + { + ".id": "*1AFC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:57:50", + "topics": "container,info,debug" + }, + { + ".id": "*1AFD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 08:59:02", + "topics": "container,info,debug" + }, + { + ".id": "*1AFE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:00:02", + "topics": "container,info,debug" + }, + { + ".id": "*1AFF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:00:22", + "topics": "container,info,debug" + }, + { + ".id": "*1B00", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:00:42", + "topics": "container,info,debug" + }, + { + ".id": "*1B01", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:01:02", + "topics": "container,info,debug" + }, + { + ".id": "*1B02", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:01:22", + "topics": "container,info,debug" + }, + { + ".id": "*1B03", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:02:33", + "topics": "container,info,debug" + }, + { + ".id": "*1B04", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:03:33", + "topics": "container,info,debug" + }, + { + ".id": "*1B05", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:03:53", + "topics": "container,info,debug" + }, + { + ".id": "*1B06", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:04:13", + "topics": "container,info,debug" + }, + { + ".id": "*1B07", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:04:33", + "topics": "container,info,debug" + }, + { + ".id": "*1B08", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:04:53", + "topics": "container,info,debug" + }, + { + ".id": "*1B09", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:06:05", + "topics": "container,info,debug" + }, + { + ".id": "*1B0A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:07:05", + "topics": "container,info,debug" + }, + { + ".id": "*1B0B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:07:25", + "topics": "container,info,debug" + }, + { + ".id": "*1B0C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:07:45", + "topics": "container,info,debug" + }, + { + ".id": "*1B0D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:08:05", + "topics": "container,info,debug" + }, + { + ".id": "*1B0E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:08:25", + "topics": "container,info,debug" + }, + { + ".id": "*1B0F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:09:36", + "topics": "container,info,debug" + }, + { + ".id": "*1B10", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:10:36", + "topics": "container,info,debug" + }, + { + ".id": "*1B11", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:10:56", + "topics": "container,info,debug" + }, + { + ".id": "*1B12", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:11:16", + "topics": "container,info,debug" + }, + { + ".id": "*1B13", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:11:36", + "topics": "container,info,debug" + }, + { + ".id": "*1B14", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:11:56", + "topics": "container,info,debug" + }, + { + ".id": "*1B15", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:13:08", + "topics": "container,info,debug" + }, + { + ".id": "*1B16", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:14:08", + "topics": "container,info,debug" + }, + { + ".id": "*1B17", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:14:28", + "topics": "container,info,debug" + }, + { + ".id": "*1B18", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:14:48", + "topics": "container,info,debug" + }, + { + ".id": "*1B19", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:15:08", + "topics": "container,info,debug" + }, + { + ".id": "*1B1A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:15:28", + "topics": "container,info,debug" + }, + { + ".id": "*1B1B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:16:39", + "topics": "container,info,debug" + }, + { + ".id": "*1B1C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:17:39", + "topics": "container,info,debug" + }, + { + ".id": "*1B1D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:17:59", + "topics": "container,info,debug" + }, + { + ".id": "*1B1E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:18:19", + "topics": "container,info,debug" + }, + { + ".id": "*1B1F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:18:39", + "topics": "container,info,debug" + }, + { + ".id": "*1B20", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:18:59", + "topics": "container,info,debug" + }, + { + ".id": "*1B21", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-18 09:19:15", + "topics": "dhcp,info" + }, + { + ".id": "*1B22", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-18 09:19:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B23", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-18 09:19:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B24", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-18 09:19:17", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1B25", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-18 09:19:17", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1B26", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:20:11", + "topics": "container,info,debug" + }, + { + ".id": "*1B27", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:21:11", + "topics": "container,info,debug" + }, + { + ".id": "*1B28", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:21:31", + "topics": "container,info,debug" + }, + { + ".id": "*1B29", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:21:51", + "topics": "container,info,debug" + }, + { + ".id": "*1B2A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:22:11", + "topics": "container,info,debug" + }, + { + ".id": "*1B2B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:22:31", + "topics": "container,info,debug" + }, + { + ".id": "*1B2C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:23:42", + "topics": "container,info,debug" + }, + { + ".id": "*1B2D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:24:42", + "topics": "container,info,debug" + }, + { + ".id": "*1B2E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:25:02", + "topics": "container,info,debug" + }, + { + ".id": "*1B2F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:25:22", + "topics": "container,info,debug" + }, + { + ".id": "*1B30", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:25:42", + "topics": "container,info,debug" + }, + { + ".id": "*1B31", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:26:02", + "topics": "container,info,debug" + }, + { + ".id": "*1B32", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:27:14", + "topics": "container,info,debug" + }, + { + ".id": "*1B33", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:28:14", + "topics": "container,info,debug" + }, + { + ".id": "*1B34", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:28:34", + "topics": "container,info,debug" + }, + { + ".id": "*1B35", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:28:54", + "topics": "container,info,debug" + }, + { + ".id": "*1B36", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:29:14", + "topics": "container,info,debug" + }, + { + ".id": "*1B37", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:29:34", + "topics": "container,info,debug" + }, + { + ".id": "*1B38", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:30:46", + "topics": "container,info,debug" + }, + { + ".id": "*1B39", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:31:46", + "topics": "container,info,debug" + }, + { + ".id": "*1B3A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:32:06", + "topics": "container,info,debug" + }, + { + ".id": "*1B3B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:32:26", + "topics": "container,info,debug" + }, + { + ".id": "*1B3C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:32:46", + "topics": "container,info,debug" + }, + { + ".id": "*1B3D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:33:06", + "topics": "container,info,debug" + }, + { + ".id": "*1B3E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:34:17", + "topics": "container,info,debug" + }, + { + ".id": "*1B3F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:35:17", + "topics": "container,info,debug" + }, + { + ".id": "*1B40", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:35:37", + "topics": "container,info,debug" + }, + { + ".id": "*1B41", + "extra-info": "", + "message": "koming123 (10.5.50.145): logged out: keepalive timeout", + "time": "2026-01-18 09:35:54", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B42", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged out: keepalive timeout", + "time": "2026-01-18 09:35:54", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B43", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:35:57", + "topics": "container,info,debug" + }, + { + ".id": "*1B44", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:36:17", + "topics": "container,info,debug" + }, + { + ".id": "*1B45", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:36:37", + "topics": "container,info,debug" + }, + { + ".id": "*1B46", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:37:49", + "topics": "container,info,debug" + }, + { + ".id": "*1B47", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:38:49", + "topics": "container,info,debug" + }, + { + ".id": "*1B48", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:39:09", + "topics": "container,info,debug" + }, + { + ".id": "*1B49", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:39:29", + "topics": "container,info,debug" + }, + { + ".id": "*1B4A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:39:49", + "topics": "container,info,debug" + }, + { + ".id": "*1B4B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:40:09", + "topics": "container,info,debug" + }, + { + ".id": "*1B4C", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 09:41:07", + "topics": "dhcp,info" + }, + { + ".id": "*1B4D", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 09:41:08", + "topics": "dhcp,info" + }, + { + ".id": "*1B4E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:41:21", + "topics": "container,info,debug" + }, + { + ".id": "*1B4F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:42:21", + "topics": "container,info,debug" + }, + { + ".id": "*1B50", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:42:41", + "topics": "container,info,debug" + }, + { + ".id": "*1B51", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:43:01", + "topics": "container,info,debug" + }, + { + ".id": "*1B52", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:43:21", + "topics": "container,info,debug" + }, + { + ".id": "*1B53", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:43:41", + "topics": "container,info,debug" + }, + { + ".id": "*1B54", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:44:52", + "topics": "container,info,debug" + }, + { + ".id": "*1B55", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:45:52", + "topics": "container,info,debug" + }, + { + ".id": "*1B56", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:46:12", + "topics": "container,info,debug" + }, + { + ".id": "*1B57", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:46:32", + "topics": "container,info,debug" + }, + { + ".id": "*1B58", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:46:52", + "topics": "container,info,debug" + }, + { + ".id": "*1B59", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:47:12", + "topics": "container,info,debug" + }, + { + ".id": "*1B5A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:48:24", + "topics": "container,info,debug" + }, + { + ".id": "*1B5B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:49:24", + "topics": "container,info,debug" + }, + { + ".id": "*1B5C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:49:44", + "topics": "container,info,debug" + }, + { + ".id": "*1B5D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:50:04", + "topics": "container,info,debug" + }, + { + ".id": "*1B5E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:50:24", + "topics": "container,info,debug" + }, + { + ".id": "*1B5F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:50:44", + "topics": "container,info,debug" + }, + { + ".id": "*1B60", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-18 09:51:38", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B61", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-18 09:51:38", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1B62", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:51:56", + "topics": "container,info,debug" + }, + { + ".id": "*1B63", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:52:56", + "topics": "container,info,debug" + }, + { + ".id": "*1B64", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:53:16", + "topics": "container,info,debug" + }, + { + ".id": "*1B65", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:53:36", + "topics": "container,info,debug" + }, + { + ".id": "*1B66", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:53:56", + "topics": "container,info,debug" + }, + { + ".id": "*1B67", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:54:16", + "topics": "container,info,debug" + }, + { + ".id": "*1B68", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:55:27", + "topics": "container,info,debug" + }, + { + ".id": "*1B69", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:56:27", + "topics": "container,info,debug" + }, + { + ".id": "*1B6A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:56:47", + "topics": "container,info,debug" + }, + { + ".id": "*1B6B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:57:07", + "topics": "container,info,debug" + }, + { + ".id": "*1B6C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:57:27", + "topics": "container,info,debug" + }, + { + ".id": "*1B6D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:57:47", + "topics": "container,info,debug" + }, + { + ".id": "*1B6E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:58:59", + "topics": "container,info,debug" + }, + { + ".id": "*1B6F", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.135 for 8C:D9:D6:F2:E8:A4 M2006C3LG-Redmi9A", + "time": "2026-01-18 09:59:52", + "topics": "dhcp,info" + }, + { + ".id": "*1B70", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 09:59:59", + "topics": "container,info,debug" + }, + { + ".id": "*1B71", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:00:19", + "topics": "container,info,debug" + }, + { + ".id": "*1B72", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:00:39", + "topics": "container,info,debug" + }, + { + ".id": "*1B73", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:00:59", + "topics": "container,info,debug" + }, + { + ".id": "*1B74", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:01:19", + "topics": "container,info,debug" + }, + { + ".id": "*1B75", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:02:30", + "topics": "container,info,debug" + }, + { + ".id": "*1B76", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:03:30", + "topics": "container,info,debug" + }, + { + ".id": "*1B77", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.145 for BA:F1:34:51:19:54 Redmi-Note-9", + "time": "2026-01-18 10:03:47", + "topics": "dhcp,info" + }, + { + ".id": "*1B78", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:03:50", + "topics": "container,info,debug" + }, + { + ".id": "*1B79", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:04:10", + "topics": "container,info,debug" + }, + { + ".id": "*1B7A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:04:30", + "topics": "container,info,debug" + }, + { + ".id": "*1B7B", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-18 10:04:43", + "topics": "dhcp,info" + }, + { + ".id": "*1B7C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:04:50", + "topics": "container,info,debug" + }, + { + ".id": "*1B7D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:06:02", + "topics": "container,info,debug" + }, + { + ".id": "*1B7E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:07:02", + "topics": "container,info,debug" + }, + { + ".id": "*1B7F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:07:22", + "topics": "container,info,debug" + }, + { + ".id": "*1B80", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:07:42", + "topics": "container,info,debug" + }, + { + ".id": "*1B81", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:08:02", + "topics": "container,info,debug" + }, + { + ".id": "*1B82", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:08:22", + "topics": "container,info,debug" + }, + { + ".id": "*1B83", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:09:33", + "topics": "container,info,debug" + }, + { + ".id": "*1B84", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:10:33", + "topics": "container,info,debug" + }, + { + ".id": "*1B85", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:10:53", + "topics": "container,info,debug" + }, + { + ".id": "*1B86", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:11:13", + "topics": "container,info,debug" + }, + { + ".id": "*1B87", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:11:33", + "topics": "container,info,debug" + }, + { + ".id": "*1B88", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:11:53", + "topics": "container,info,debug" + }, + { + ".id": "*1B89", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:13:05", + "topics": "container,info,debug" + }, + { + ".id": "*1B8A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:14:05", + "topics": "container,info,debug" + }, + { + ".id": "*1B8B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:14:25", + "topics": "container,info,debug" + }, + { + ".id": "*1B8C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:14:45", + "topics": "container,info,debug" + }, + { + ".id": "*1B8D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:15:05", + "topics": "container,info,debug" + }, + { + ".id": "*1B8E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:15:25", + "topics": "container,info,debug" + }, + { + ".id": "*1B8F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:16:36", + "topics": "container,info,debug" + }, + { + ".id": "*1B90", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:17:36", + "topics": "container,info,debug" + }, + { + ".id": "*1B91", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:17:56", + "topics": "container,info,debug" + }, + { + ".id": "*1B92", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:18:16", + "topics": "container,info,debug" + }, + { + ".id": "*1B93", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:18:36", + "topics": "container,info,debug" + }, + { + ".id": "*1B94", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 10:18:51", + "topics": "dhcp,info" + }, + { + ".id": "*1B95", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:18:56", + "topics": "container,info,debug" + }, + { + ".id": "*1B96", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:20:08", + "topics": "container,info,debug" + }, + { + ".id": "*1B97", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:21:08", + "topics": "container,info,debug" + }, + { + ".id": "*1B98", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:21:28", + "topics": "container,info,debug" + }, + { + ".id": "*1B99", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:21:48", + "topics": "container,info,debug" + }, + { + ".id": "*1B9A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:22:08", + "topics": "container,info,debug" + }, + { + ".id": "*1B9B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:22:28", + "topics": "container,info,debug" + }, + { + ".id": "*1B9C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:23:39", + "topics": "container,info,debug" + }, + { + ".id": "*1B9D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:24:39", + "topics": "container,info,debug" + }, + { + ".id": "*1B9E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:24:59", + "topics": "container,info,debug" + }, + { + ".id": "*1B9F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:25:19", + "topics": "container,info,debug" + }, + { + ".id": "*1BA0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:25:39", + "topics": "container,info,debug" + }, + { + ".id": "*1BA1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:25:59", + "topics": "container,info,debug" + }, + { + ".id": "*1BA2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:27:11", + "topics": "container,info,debug" + }, + { + ".id": "*1BA3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:28:11", + "topics": "container,info,debug" + }, + { + ".id": "*1BA4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:28:31", + "topics": "container,info,debug" + }, + { + ".id": "*1BA5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:28:51", + "topics": "container,info,debug" + }, + { + ".id": "*1BA6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:29:11", + "topics": "container,info,debug" + }, + { + ".id": "*1BA7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:29:31", + "topics": "container,info,debug" + }, + { + ".id": "*1BA8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:30:42", + "topics": "container,info,debug" + }, + { + ".id": "*1BA9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:31:42", + "topics": "container,info,debug" + }, + { + ".id": "*1BAA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:32:02", + "topics": "container,info,debug" + }, + { + ".id": "*1BAB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:32:22", + "topics": "container,info,debug" + }, + { + ".id": "*1BAC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:32:42", + "topics": "container,info,debug" + }, + { + ".id": "*1BAD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:33:02", + "topics": "container,info,debug" + }, + { + ".id": "*1BAE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:34:14", + "topics": "container,info,debug" + }, + { + ".id": "*1BAF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:35:14", + "topics": "container,info,debug" + }, + { + ".id": "*1BB0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:35:34", + "topics": "container,info,debug" + }, + { + ".id": "*1BB1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:35:54", + "topics": "container,info,debug" + }, + { + ".id": "*1BB2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:36:14", + "topics": "container,info,debug" + }, + { + ".id": "*1BB3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:36:34", + "topics": "container,info,debug" + }, + { + ".id": "*1BB4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:37:45", + "topics": "container,info,debug" + }, + { + ".id": "*1BB5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:38:45", + "topics": "container,info,debug" + }, + { + ".id": "*1BB6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:39:05", + "topics": "container,info,debug" + }, + { + ".id": "*1BB7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:39:25", + "topics": "container,info,debug" + }, + { + ".id": "*1BB8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:39:45", + "topics": "container,info,debug" + }, + { + ".id": "*1BB9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:40:05", + "topics": "container,info,debug" + }, + { + ".id": "*1BBA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:41:17", + "topics": "container,info,debug" + }, + { + ".id": "*1BBB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:42:17", + "topics": "container,info,debug" + }, + { + ".id": "*1BBC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:42:37", + "topics": "container,info,debug" + }, + { + ".id": "*1BBD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:42:57", + "topics": "container,info,debug" + }, + { + ".id": "*1BBE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:43:17", + "topics": "container,info,debug" + }, + { + ".id": "*1BBF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:43:37", + "topics": "container,info,debug" + }, + { + ".id": "*1BC0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:44:48", + "topics": "container,info,debug" + }, + { + ".id": "*1BC1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:45:48", + "topics": "container,info,debug" + }, + { + ".id": "*1BC2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:46:08", + "topics": "container,info,debug" + }, + { + ".id": "*1BC3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:46:28", + "topics": "container,info,debug" + }, + { + ".id": "*1BC4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:46:48", + "topics": "container,info,debug" + }, + { + ".id": "*1BC5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:47:08", + "topics": "container,info,debug" + }, + { + ".id": "*1BC6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:48:20", + "topics": "container,info,debug" + }, + { + ".id": "*1BC7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:49:20", + "topics": "container,info,debug" + }, + { + ".id": "*1BC8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:49:40", + "topics": "container,info,debug" + }, + { + ".id": "*1BC9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:50:00", + "topics": "container,info,debug" + }, + { + ".id": "*1BCA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:50:20", + "topics": "container,info,debug" + }, + { + ".id": "*1BCB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:50:40", + "topics": "container,info,debug" + }, + { + ".id": "*1BCC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:51:51", + "topics": "container,info,debug" + }, + { + ".id": "*1BCD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:52:51", + "topics": "container,info,debug" + }, + { + ".id": "*1BCE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:53:11", + "topics": "container,info,debug" + }, + { + ".id": "*1BCF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:53:31", + "topics": "container,info,debug" + }, + { + ".id": "*1BD0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:53:51", + "topics": "container,info,debug" + }, + { + ".id": "*1BD1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:54:11", + "topics": "container,info,debug" + }, + { + ".id": "*1BD2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:55:23", + "topics": "container,info,debug" + }, + { + ".id": "*1BD3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:56:23", + "topics": "container,info,debug" + }, + { + ".id": "*1BD4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:56:43", + "topics": "container,info,debug" + }, + { + ".id": "*1BD5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:57:03", + "topics": "container,info,debug" + }, + { + ".id": "*1BD6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:57:23", + "topics": "container,info,debug" + }, + { + ".id": "*1BD7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:57:43", + "topics": "container,info,debug" + }, + { + ".id": "*1BD8", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 10:58:16", + "topics": "dhcp,info" + }, + { + ".id": "*1BD9", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-18 10:58:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1BDA", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-18 10:58:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1BDB", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged in", + "time": "2026-01-18 10:58:17", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1BDC", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-18 10:58:17", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1BDD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:58:54", + "topics": "container,info,debug" + }, + { + ".id": "*1BDE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 10:59:54", + "topics": "container,info,debug" + }, + { + ".id": "*1BDF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:00:14", + "topics": "container,info,debug" + }, + { + ".id": "*1BE0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:00:34", + "topics": "container,info,debug" + }, + { + ".id": "*1BE1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:00:54", + "topics": "container,info,debug" + }, + { + ".id": "*1BE2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:01:14", + "topics": "container,info,debug" + }, + { + ".id": "*1BE3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:02:26", + "topics": "container,info,debug" + }, + { + ".id": "*1BE4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:03:26", + "topics": "container,info,debug" + }, + { + ".id": "*1BE5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:03:46", + "topics": "container,info,debug" + }, + { + ".id": "*1BE6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:04:06", + "topics": "container,info,debug" + }, + { + ".id": "*1BE7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:04:26", + "topics": "container,info,debug" + }, + { + ".id": "*1BE8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:04:46", + "topics": "container,info,debug" + }, + { + ".id": "*1BE9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:05:57", + "topics": "container,info,debug" + }, + { + ".id": "*1BEA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:06:57", + "topics": "container,info,debug" + }, + { + ".id": "*1BEB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:07:17", + "topics": "container,info,debug" + }, + { + ".id": "*1BEC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:07:37", + "topics": "container,info,debug" + }, + { + ".id": "*1BED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:07:57", + "topics": "container,info,debug" + }, + { + ".id": "*1BEE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:08:17", + "topics": "container,info,debug" + }, + { + ".id": "*1BEF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:09:28", + "topics": "container,info,debug" + }, + { + ".id": "*1BF0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:10:28", + "topics": "container,info,debug" + }, + { + ".id": "*1BF1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:10:48", + "topics": "container,info,debug" + }, + { + ".id": "*1BF2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:11:08", + "topics": "container,info,debug" + }, + { + ".id": "*1BF3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:11:28", + "topics": "container,info,debug" + }, + { + ".id": "*1BF4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:11:49", + "topics": "container,info,debug" + }, + { + ".id": "*1BF5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:13:01", + "topics": "container,info,debug" + }, + { + ".id": "*1BF6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:14:01", + "topics": "container,info,debug" + }, + { + ".id": "*1BF7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:14:21", + "topics": "container,info,debug" + }, + { + ".id": "*1BF8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:14:41", + "topics": "container,info,debug" + }, + { + ".id": "*1BF9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:15:01", + "topics": "container,info,debug" + }, + { + ".id": "*1BFA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:15:21", + "topics": "container,info,debug" + }, + { + ".id": "*1BFB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:16:33", + "topics": "container,info,debug" + }, + { + ".id": "*1BFC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:17:33", + "topics": "container,info,debug" + }, + { + ".id": "*1BFD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:17:53", + "topics": "container,info,debug" + }, + { + ".id": "*1BFE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:18:13", + "topics": "container,info,debug" + }, + { + ".id": "*1BFF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:18:33", + "topics": "container,info,debug" + }, + { + ".id": "*1C00", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:18:53", + "topics": "container,info,debug" + }, + { + ".id": "*1C01", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:20:04", + "topics": "container,info,debug" + }, + { + ".id": "*1C02", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:21:04", + "topics": "container,info,debug" + }, + { + ".id": "*1C03", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:21:24", + "topics": "container,info,debug" + }, + { + ".id": "*1C04", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:21:44", + "topics": "container,info,debug" + }, + { + ".id": "*1C05", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:22:04", + "topics": "container,info,debug" + }, + { + ".id": "*1C06", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:22:24", + "topics": "container,info,debug" + }, + { + ".id": "*1C07", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:23:36", + "topics": "container,info,debug" + }, + { + ".id": "*1C08", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:24:36", + "topics": "container,info,debug" + }, + { + ".id": "*1C09", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:24:56", + "topics": "container,info,debug" + }, + { + ".id": "*1C0A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:25:16", + "topics": "container,info,debug" + }, + { + ".id": "*1C0B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:25:36", + "topics": "container,info,debug" + }, + { + ".id": "*1C0C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:25:56", + "topics": "container,info,debug" + }, + { + ".id": "*1C0D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:27:07", + "topics": "container,info,debug" + }, + { + ".id": "*1C0E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:28:07", + "topics": "container,info,debug" + }, + { + ".id": "*1C0F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:28:27", + "topics": "container,info,debug" + }, + { + ".id": "*1C10", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:28:47", + "topics": "container,info,debug" + }, + { + ".id": "*1C11", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:29:07", + "topics": "container,info,debug" + }, + { + ".id": "*1C12", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:29:27", + "topics": "container,info,debug" + }, + { + ".id": "*1C13", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:30:39", + "topics": "container,info,debug" + }, + { + ".id": "*1C14", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:31:39", + "topics": "container,info,debug" + }, + { + ".id": "*1C15", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:31:59", + "topics": "container,info,debug" + }, + { + ".id": "*1C16", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:32:19", + "topics": "container,info,debug" + }, + { + ".id": "*1C17", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:32:39", + "topics": "container,info,debug" + }, + { + ".id": "*1C18", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:32:59", + "topics": "container,info,debug" + }, + { + ".id": "*1C19", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:34:10", + "topics": "container,info,debug" + }, + { + ".id": "*1C1A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:35:10", + "topics": "container,info,debug" + }, + { + ".id": "*1C1B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:35:30", + "topics": "container,info,debug" + }, + { + ".id": "*1C1C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:35:50", + "topics": "container,info,debug" + }, + { + ".id": "*1C1D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:36:10", + "topics": "container,info,debug" + }, + { + ".id": "*1C1E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:36:30", + "topics": "container,info,debug" + }, + { + ".id": "*1C1F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:37:42", + "topics": "container,info,debug" + }, + { + ".id": "*1C20", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:38:42", + "topics": "container,info,debug" + }, + { + ".id": "*1C21", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:39:02", + "topics": "container,info,debug" + }, + { + ".id": "*1C22", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:39:22", + "topics": "container,info,debug" + }, + { + ".id": "*1C23", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:39:42", + "topics": "container,info,debug" + }, + { + ".id": "*1C24", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:40:02", + "topics": "container,info,debug" + }, + { + ".id": "*1C25", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:41:13", + "topics": "container,info,debug" + }, + { + ".id": "*1C26", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:42:13", + "topics": "container,info,debug" + }, + { + ".id": "*1C27", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:42:33", + "topics": "container,info,debug" + }, + { + ".id": "*1C28", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:42:53", + "topics": "container,info,debug" + }, + { + ".id": "*1C29", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:43:13", + "topics": "container,info,debug" + }, + { + ".id": "*1C2A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:43:33", + "topics": "container,info,debug" + }, + { + ".id": "*1C2B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:44:45", + "topics": "container,info,debug" + }, + { + ".id": "*1C2C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:45:45", + "topics": "container,info,debug" + }, + { + ".id": "*1C2D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:46:05", + "topics": "container,info,debug" + }, + { + ".id": "*1C2E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:46:25", + "topics": "container,info,debug" + }, + { + ".id": "*1C2F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:46:45", + "topics": "container,info,debug" + }, + { + ".id": "*1C30", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:47:05", + "topics": "container,info,debug" + }, + { + ".id": "*1C31", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:48:16", + "topics": "container,info,debug" + }, + { + ".id": "*1C32", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:49:16", + "topics": "container,info,debug" + }, + { + ".id": "*1C33", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:49:36", + "topics": "container,info,debug" + }, + { + ".id": "*1C34", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:49:56", + "topics": "container,info,debug" + }, + { + ".id": "*1C35", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:50:16", + "topics": "container,info,debug" + }, + { + ".id": "*1C36", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:50:36", + "topics": "container,info,debug" + }, + { + ".id": "*1C37", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:51:48", + "topics": "container,info,debug" + }, + { + ".id": "*1C38", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:52:48", + "topics": "container,info,debug" + }, + { + ".id": "*1C39", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:53:08", + "topics": "container,info,debug" + }, + { + ".id": "*1C3A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:53:28", + "topics": "container,info,debug" + }, + { + ".id": "*1C3B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:53:48", + "topics": "container,info,debug" + }, + { + ".id": "*1C3C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:54:08", + "topics": "container,info,debug" + }, + { + ".id": "*1C3D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:55:19", + "topics": "container,info,debug" + }, + { + ".id": "*1C3E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:56:19", + "topics": "container,info,debug" + }, + { + ".id": "*1C3F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:56:39", + "topics": "container,info,debug" + }, + { + ".id": "*1C40", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:56:59", + "topics": "container,info,debug" + }, + { + ".id": "*1C41", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:57:19", + "topics": "container,info,debug" + }, + { + ".id": "*1C42", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:57:39", + "topics": "container,info,debug" + }, + { + ".id": "*1C43", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:58:51", + "topics": "container,info,debug" + }, + { + ".id": "*1C44", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 11:59:51", + "topics": "container,info,debug" + }, + { + ".id": "*1C45", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:00:11", + "topics": "container,info,debug" + }, + { + ".id": "*1C46", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:00:31", + "topics": "container,info,debug" + }, + { + ".id": "*1C47", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:00:51", + "topics": "container,info,debug" + }, + { + ".id": "*1C48", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 12:00:58", + "topics": "dhcp,info" + }, + { + ".id": "*1C49", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:01:11", + "topics": "container,info,debug" + }, + { + ".id": "*1C4A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:02:22", + "topics": "container,info,debug" + }, + { + ".id": "*1C4B", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 12:02:39", + "topics": "dhcp,info" + }, + { + ".id": "*1C4C", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 12:02:39", + "topics": "dhcp,info" + }, + { + ".id": "*1C4D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:03:22", + "topics": "container,info,debug" + }, + { + ".id": "*1C4E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:03:42", + "topics": "container,info,debug" + }, + { + ".id": "*1C4F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:04:02", + "topics": "container,info,debug" + }, + { + ".id": "*1C50", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:04:22", + "topics": "container,info,debug" + }, + { + ".id": "*1C51", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:04:42", + "topics": "container,info,debug" + }, + { + ".id": "*1C52", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:05:54", + "topics": "container,info,debug" + }, + { + ".id": "*1C53", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:06:54", + "topics": "container,info,debug" + }, + { + ".id": "*1C54", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:07:14", + "topics": "container,info,debug" + }, + { + ".id": "*1C55", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:07:34", + "topics": "container,info,debug" + }, + { + ".id": "*1C56", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:07:54", + "topics": "container,info,debug" + }, + { + ".id": "*1C57", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:08:14", + "topics": "container,info,debug" + }, + { + ".id": "*1C58", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:09:26", + "topics": "container,info,debug" + }, + { + ".id": "*1C59", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:10:26", + "topics": "container,info,debug" + }, + { + ".id": "*1C5A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:10:46", + "topics": "container,info,debug" + }, + { + ".id": "*1C5B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:11:06", + "topics": "container,info,debug" + }, + { + ".id": "*1C5C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:11:26", + "topics": "container,info,debug" + }, + { + ".id": "*1C5D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:11:46", + "topics": "container,info,debug" + }, + { + ".id": "*1C5E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:12:57", + "topics": "container,info,debug" + }, + { + ".id": "*1C5F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:13:57", + "topics": "container,info,debug" + }, + { + ".id": "*1C60", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:14:17", + "topics": "container,info,debug" + }, + { + ".id": "*1C61", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:14:37", + "topics": "container,info,debug" + }, + { + ".id": "*1C62", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:14:57", + "topics": "container,info,debug" + }, + { + ".id": "*1C63", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:15:17", + "topics": "container,info,debug" + }, + { + ".id": "*1C64", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:16:28", + "topics": "container,info,debug" + }, + { + ".id": "*1C65", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:17:28", + "topics": "container,info,debug" + }, + { + ".id": "*1C66", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:17:48", + "topics": "container,info,debug" + }, + { + ".id": "*1C67", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 12:17:58", + "topics": "dhcp,info" + }, + { + ".id": "*1C68", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 12:17:58", + "topics": "dhcp,info" + }, + { + ".id": "*1C69", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-18 12:18:00", + "topics": "dhcp,info" + }, + { + ".id": "*1C6A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:18:08", + "topics": "container,info,debug" + }, + { + ".id": "*1C6B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:18:28", + "topics": "container,info,debug" + }, + { + ".id": "*1C6C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:18:48", + "topics": "container,info,debug" + }, + { + ".id": "*1C6D", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 12:19:22", + "topics": "dhcp,info" + }, + { + ".id": "*1C6E", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 12:19:22", + "topics": "dhcp,info" + }, + { + ".id": "*1C6F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:20:00", + "topics": "container,info,debug" + }, + { + ".id": "*1C70", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:21:00", + "topics": "container,info,debug" + }, + { + ".id": "*1C71", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:21:20", + "topics": "container,info,debug" + }, + { + ".id": "*1C72", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:21:40", + "topics": "container,info,debug" + }, + { + ".id": "*1C73", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:22:00", + "topics": "container,info,debug" + }, + { + ".id": "*1C74", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:22:20", + "topics": "container,info,debug" + }, + { + ".id": "*1C75", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:23:32", + "topics": "container,info,debug" + }, + { + ".id": "*1C76", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:24:32", + "topics": "container,info,debug" + }, + { + ".id": "*1C77", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:24:52", + "topics": "container,info,debug" + }, + { + ".id": "*1C78", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:25:12", + "topics": "container,info,debug" + }, + { + ".id": "*1C79", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:25:32", + "topics": "container,info,debug" + }, + { + ".id": "*1C7A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:25:52", + "topics": "container,info,debug" + }, + { + ".id": "*1C7B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:27:03", + "topics": "container,info,debug" + }, + { + ".id": "*1C7C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:28:03", + "topics": "container,info,debug" + }, + { + ".id": "*1C7D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:28:23", + "topics": "container,info,debug" + }, + { + ".id": "*1C7E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:28:43", + "topics": "container,info,debug" + }, + { + ".id": "*1C7F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:29:03", + "topics": "container,info,debug" + }, + { + ".id": "*1C80", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:29:23", + "topics": "container,info,debug" + }, + { + ".id": "*1C81", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-18 12:30:16", + "topics": "dhcp,info" + }, + { + ".id": "*1C82", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:30:35", + "topics": "container,info,debug" + }, + { + ".id": "*1C83", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:31:35", + "topics": "container,info,debug" + }, + { + ".id": "*1C84", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:31:55", + "topics": "container,info,debug" + }, + { + ".id": "*1C85", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:32:15", + "topics": "container,info,debug" + }, + { + ".id": "*1C86", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:32:35", + "topics": "container,info,debug" + }, + { + ".id": "*1C87", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:32:55", + "topics": "container,info,debug" + }, + { + ".id": "*1C88", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:34:07", + "topics": "container,info,debug" + }, + { + ".id": "*1C89", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 12:34:52", + "topics": "dhcp,info" + }, + { + ".id": "*1C8A", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 12:34:52", + "topics": "dhcp,info" + }, + { + ".id": "*1C8B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:35:07", + "topics": "container,info,debug" + }, + { + ".id": "*1C8C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:35:27", + "topics": "container,info,debug" + }, + { + ".id": "*1C8D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:35:47", + "topics": "container,info,debug" + }, + { + ".id": "*1C8E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:36:07", + "topics": "container,info,debug" + }, + { + ".id": "*1C8F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:36:27", + "topics": "container,info,debug" + }, + { + ".id": "*1C90", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:37:38", + "topics": "container,info,debug" + }, + { + ".id": "*1C91", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:38:38", + "topics": "container,info,debug" + }, + { + ".id": "*1C92", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:38:58", + "topics": "container,info,debug" + }, + { + ".id": "*1C93", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:39:18", + "topics": "container,info,debug" + }, + { + ".id": "*1C94", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:39:38", + "topics": "container,info,debug" + }, + { + ".id": "*1C95", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:39:58", + "topics": "container,info,debug" + }, + { + ".id": "*1C96", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:41:10", + "topics": "container,info,debug" + }, + { + ".id": "*1C97", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:42:10", + "topics": "container,info,debug" + }, + { + ".id": "*1C98", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:42:30", + "topics": "container,info,debug" + }, + { + ".id": "*1C99", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:42:50", + "topics": "container,info,debug" + }, + { + ".id": "*1C9A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:43:10", + "topics": "container,info,debug" + }, + { + ".id": "*1C9B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:43:30", + "topics": "container,info,debug" + }, + { + ".id": "*1C9C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:44:41", + "topics": "container,info,debug" + }, + { + ".id": "*1C9D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:45:41", + "topics": "container,info,debug" + }, + { + ".id": "*1C9E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:46:01", + "topics": "container,info,debug" + }, + { + ".id": "*1C9F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:46:21", + "topics": "container,info,debug" + }, + { + ".id": "*1CA0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:46:41", + "topics": "container,info,debug" + }, + { + ".id": "*1CA1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:47:01", + "topics": "container,info,debug" + }, + { + ".id": "*1CA2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:48:13", + "topics": "container,info,debug" + }, + { + ".id": "*1CA3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:49:13", + "topics": "container,info,debug" + }, + { + ".id": "*1CA4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:49:33", + "topics": "container,info,debug" + }, + { + ".id": "*1CA5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:49:53", + "topics": "container,info,debug" + }, + { + ".id": "*1CA6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:50:13", + "topics": "container,info,debug" + }, + { + ".id": "*1CA7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:50:33", + "topics": "container,info,debug" + }, + { + ".id": "*1CA8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:51:44", + "topics": "container,info,debug" + }, + { + ".id": "*1CA9", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 12:52:13", + "topics": "dhcp,info" + }, + { + ".id": "*1CAA", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 12:52:13", + "topics": "dhcp,info" + }, + { + ".id": "*1CAB", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.122 for 7C:9A:1D:2D:E5:E1 ", + "time": "2026-01-18 12:52:41", + "topics": "dhcp,info" + }, + { + ".id": "*1CAC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:52:44", + "topics": "container,info,debug" + }, + { + ".id": "*1CAD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:53:04", + "topics": "container,info,debug" + }, + { + ".id": "*1CAE", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-18 12:53:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1CAF", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-18 12:53:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1CB0", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged in", + "time": "2026-01-18 12:53:13", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1CB1", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-18 12:53:13", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1CB2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:53:24", + "topics": "container,info,debug" + }, + { + ".id": "*1CB3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:53:44", + "topics": "container,info,debug" + }, + { + ".id": "*1CB4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:54:04", + "topics": "container,info,debug" + }, + { + ".id": "*1CB5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:55:16", + "topics": "container,info,debug" + }, + { + ".id": "*1CB6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:56:16", + "topics": "container,info,debug" + }, + { + ".id": "*1CB7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:56:36", + "topics": "container,info,debug" + }, + { + ".id": "*1CB8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:56:56", + "topics": "container,info,debug" + }, + { + ".id": "*1CB9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:57:16", + "topics": "container,info,debug" + }, + { + ".id": "*1CBA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:57:36", + "topics": "container,info,debug" + }, + { + ".id": "*1CBB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:58:47", + "topics": "container,info,debug" + }, + { + ".id": "*1CBC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 12:59:47", + "topics": "container,info,debug" + }, + { + ".id": "*1CBD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:00:07", + "topics": "container,info,debug" + }, + { + ".id": "*1CBE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:00:27", + "topics": "container,info,debug" + }, + { + ".id": "*1CBF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:00:47", + "topics": "container,info,debug" + }, + { + ".id": "*1CC0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:01:07", + "topics": "container,info,debug" + }, + { + ".id": "*1CC1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:02:19", + "topics": "container,info,debug" + }, + { + ".id": "*1CC2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:03:19", + "topics": "container,info,debug" + }, + { + ".id": "*1CC3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:03:39", + "topics": "container,info,debug" + }, + { + ".id": "*1CC4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:03:59", + "topics": "container,info,debug" + }, + { + ".id": "*1CC5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:04:19", + "topics": "container,info,debug" + }, + { + ".id": "*1CC6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:04:39", + "topics": "container,info,debug" + }, + { + ".id": "*1CC7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:05:51", + "topics": "container,info,debug" + }, + { + ".id": "*1CC8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:06:51", + "topics": "container,info,debug" + }, + { + ".id": "*1CC9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:07:11", + "topics": "container,info,debug" + }, + { + ".id": "*1CCA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:07:31", + "topics": "container,info,debug" + }, + { + ".id": "*1CCB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:07:51", + "topics": "container,info,debug" + }, + { + ".id": "*1CCC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:08:11", + "topics": "container,info,debug" + }, + { + ".id": "*1CCD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:09:22", + "topics": "container,info,debug" + }, + { + ".id": "*1CCE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:10:22", + "topics": "container,info,debug" + }, + { + ".id": "*1CCF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:10:42", + "topics": "container,info,debug" + }, + { + ".id": "*1CD0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:11:02", + "topics": "container,info,debug" + }, + { + ".id": "*1CD1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:11:22", + "topics": "container,info,debug" + }, + { + ".id": "*1CD2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:11:42", + "topics": "container,info,debug" + }, + { + ".id": "*1CD3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:12:54", + "topics": "container,info,debug" + }, + { + ".id": "*1CD4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:13:54", + "topics": "container,info,debug" + }, + { + ".id": "*1CD5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:14:14", + "topics": "container,info,debug" + }, + { + ".id": "*1CD6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:14:34", + "topics": "container,info,debug" + }, + { + ".id": "*1CD7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:14:54", + "topics": "container,info,debug" + }, + { + ".id": "*1CD8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:15:14", + "topics": "container,info,debug" + }, + { + ".id": "*1CD9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:16:25", + "topics": "container,info,debug" + }, + { + ".id": "*1CDA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:17:25", + "topics": "container,info,debug" + }, + { + ".id": "*1CDB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:17:45", + "topics": "container,info,debug" + }, + { + ".id": "*1CDC", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-18 13:18:00", + "topics": "dhcp,info" + }, + { + ".id": "*1CDD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:18:05", + "topics": "container,info,debug" + }, + { + ".id": "*1CDE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:18:25", + "topics": "container,info,debug" + }, + { + ".id": "*1CDF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:18:45", + "topics": "container,info,debug" + }, + { + ".id": "*1CE0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:19:57", + "topics": "container,info,debug" + }, + { + ".id": "*1CE1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:20:57", + "topics": "container,info,debug" + }, + { + ".id": "*1CE2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:21:17", + "topics": "container,info,debug" + }, + { + ".id": "*1CE3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:21:37", + "topics": "container,info,debug" + }, + { + ".id": "*1CE4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:21:57", + "topics": "container,info,debug" + }, + { + ".id": "*1CE5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:22:17", + "topics": "container,info,debug" + }, + { + ".id": "*1CE6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:23:28", + "topics": "container,info,debug" + }, + { + ".id": "*1CE7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:24:28", + "topics": "container,info,debug" + }, + { + ".id": "*1CE8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:24:48", + "topics": "container,info,debug" + }, + { + ".id": "*1CE9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:25:08", + "topics": "container,info,debug" + }, + { + ".id": "*1CEA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:25:28", + "topics": "container,info,debug" + }, + { + ".id": "*1CEB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:25:48", + "topics": "container,info,debug" + }, + { + ".id": "*1CEC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:27:00", + "topics": "container,info,debug" + }, + { + ".id": "*1CED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:28:00", + "topics": "container,info,debug" + }, + { + ".id": "*1CEE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:28:20", + "topics": "container,info,debug" + }, + { + ".id": "*1CEF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:28:40", + "topics": "container,info,debug" + }, + { + ".id": "*1CF0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:29:00", + "topics": "container,info,debug" + }, + { + ".id": "*1CF1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:29:20", + "topics": "container,info,debug" + }, + { + ".id": "*1CF2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:30:31", + "topics": "container,info,debug" + }, + { + ".id": "*1CF3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:31:31", + "topics": "container,info,debug" + }, + { + ".id": "*1CF4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:31:51", + "topics": "container,info,debug" + }, + { + ".id": "*1CF5", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 13:31:55", + "topics": "dhcp,info" + }, + { + ".id": "*1CF6", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 13:31:57", + "topics": "dhcp,info" + }, + { + ".id": "*1CF7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:32:11", + "topics": "container,info,debug" + }, + { + ".id": "*1CF8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:32:31", + "topics": "container,info,debug" + }, + { + ".id": "*1CF9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:32:51", + "topics": "container,info,debug" + }, + { + ".id": "*1CFA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:34:03", + "topics": "container,info,debug" + }, + { + ".id": "*1CFB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:35:03", + "topics": "container,info,debug" + }, + { + ".id": "*1CFC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:35:23", + "topics": "container,info,debug" + }, + { + ".id": "*1CFD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:35:43", + "topics": "container,info,debug" + }, + { + ".id": "*1CFE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:36:03", + "topics": "container,info,debug" + }, + { + ".id": "*1CFF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:36:23", + "topics": "container,info,debug" + }, + { + ".id": "*1D00", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:37:34", + "topics": "container,info,debug" + }, + { + ".id": "*1D01", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:38:34", + "topics": "container,info,debug" + }, + { + ".id": "*1D02", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:38:54", + "topics": "container,info,debug" + }, + { + ".id": "*1D03", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:39:14", + "topics": "container,info,debug" + }, + { + ".id": "*1D04", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:39:34", + "topics": "container,info,debug" + }, + { + ".id": "*1D05", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:39:54", + "topics": "container,info,debug" + }, + { + ".id": "*1D06", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:41:06", + "topics": "container,info,debug" + }, + { + ".id": "*1D07", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:42:06", + "topics": "container,info,debug" + }, + { + ".id": "*1D08", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:42:26", + "topics": "container,info,debug" + }, + { + ".id": "*1D09", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:42:46", + "topics": "container,info,debug" + }, + { + ".id": "*1D0A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:43:06", + "topics": "container,info,debug" + }, + { + ".id": "*1D0B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:43:26", + "topics": "container,info,debug" + }, + { + ".id": "*1D0C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:44:37", + "topics": "container,info,debug" + }, + { + ".id": "*1D0D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:45:37", + "topics": "container,info,debug" + }, + { + ".id": "*1D0E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:45:57", + "topics": "container,info,debug" + }, + { + ".id": "*1D0F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:46:17", + "topics": "container,info,debug" + }, + { + ".id": "*1D10", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:46:37", + "topics": "container,info,debug" + }, + { + ".id": "*1D11", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:46:57", + "topics": "container,info,debug" + }, + { + ".id": "*1D12", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:48:09", + "topics": "container,info,debug" + }, + { + ".id": "*1D13", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:49:09", + "topics": "container,info,debug" + }, + { + ".id": "*1D14", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:49:29", + "topics": "container,info,debug" + }, + { + ".id": "*1D15", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:49:49", + "topics": "container,info,debug" + }, + { + ".id": "*1D16", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:50:09", + "topics": "container,info,debug" + }, + { + ".id": "*1D17", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:50:29", + "topics": "container,info,debug" + }, + { + ".id": "*1D18", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:51:40", + "topics": "container,info,debug" + }, + { + ".id": "*1D19", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:52:40", + "topics": "container,info,debug" + }, + { + ".id": "*1D1A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:53:00", + "topics": "container,info,debug" + }, + { + ".id": "*1D1B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:53:20", + "topics": "container,info,debug" + }, + { + ".id": "*1D1C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:53:40", + "topics": "container,info,debug" + }, + { + ".id": "*1D1D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:54:00", + "topics": "container,info,debug" + }, + { + ".id": "*1D1E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:55:12", + "topics": "container,info,debug" + }, + { + ".id": "*1D1F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:56:12", + "topics": "container,info,debug" + }, + { + ".id": "*1D20", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:56:32", + "topics": "container,info,debug" + }, + { + ".id": "*1D21", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:56:52", + "topics": "container,info,debug" + }, + { + ".id": "*1D22", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:57:12", + "topics": "container,info,debug" + }, + { + ".id": "*1D23", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:57:32", + "topics": "container,info,debug" + }, + { + ".id": "*1D24", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:58:43", + "topics": "container,info,debug" + }, + { + ".id": "*1D25", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 13:59:43", + "topics": "container,info,debug" + }, + { + ".id": "*1D26", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:00:03", + "topics": "container,info,debug" + }, + { + ".id": "*1D27", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:00:23", + "topics": "container,info,debug" + }, + { + ".id": "*1D28", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:00:43", + "topics": "container,info,debug" + }, + { + ".id": "*1D29", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:01:03", + "topics": "container,info,debug" + }, + { + ".id": "*1D2A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:02:14", + "topics": "container,info,debug" + }, + { + ".id": "*1D2B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:03:14", + "topics": "container,info,debug" + }, + { + ".id": "*1D2C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:03:34", + "topics": "container,info,debug" + }, + { + ".id": "*1D2D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:03:54", + "topics": "container,info,debug" + }, + { + ".id": "*1D2E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:04:14", + "topics": "container,info,debug" + }, + { + ".id": "*1D2F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:04:34", + "topics": "container,info,debug" + }, + { + ".id": "*1D30", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:05:46", + "topics": "container,info,debug" + }, + { + ".id": "*1D31", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:06:46", + "topics": "container,info,debug" + }, + { + ".id": "*1D32", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:07:06", + "topics": "container,info,debug" + }, + { + ".id": "*1D33", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:07:26", + "topics": "container,info,debug" + }, + { + ".id": "*1D34", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:07:46", + "topics": "container,info,debug" + }, + { + ".id": "*1D35", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:08:06", + "topics": "container,info,debug" + }, + { + ".id": "*1D36", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:09:17", + "topics": "container,info,debug" + }, + { + ".id": "*1D37", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:10:17", + "topics": "container,info,debug" + }, + { + ".id": "*1D38", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:10:37", + "topics": "container,info,debug" + }, + { + ".id": "*1D39", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:10:57", + "topics": "container,info,debug" + }, + { + ".id": "*1D3A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:11:17", + "topics": "container,info,debug" + }, + { + ".id": "*1D3B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:11:37", + "topics": "container,info,debug" + }, + { + ".id": "*1D3C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:12:49", + "topics": "container,info,debug" + }, + { + ".id": "*1D3D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:13:49", + "topics": "container,info,debug" + }, + { + ".id": "*1D3E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:14:09", + "topics": "container,info,debug" + }, + { + ".id": "*1D3F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:14:29", + "topics": "container,info,debug" + }, + { + ".id": "*1D40", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:14:49", + "topics": "container,info,debug" + }, + { + ".id": "*1D41", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:15:09", + "topics": "container,info,debug" + }, + { + ".id": "*1D42", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:16:21", + "topics": "container,info,debug" + }, + { + ".id": "*1D43", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 14:16:39", + "topics": "dhcp,info" + }, + { + ".id": "*1D44", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 14:16:39", + "topics": "dhcp,info" + }, + { + ".id": "*1D45", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:17:21", + "topics": "container,info,debug" + }, + { + ".id": "*1D46", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:17:41", + "topics": "container,info,debug" + }, + { + ".id": "*1D47", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:18:01", + "topics": "container,info,debug" + }, + { + ".id": "*1D48", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:18:21", + "topics": "container,info,debug" + }, + { + ".id": "*1D49", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:18:41", + "topics": "container,info,debug" + }, + { + ".id": "*1D4A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:19:52", + "topics": "container,info,debug" + }, + { + ".id": "*1D4B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:20:52", + "topics": "container,info,debug" + }, + { + ".id": "*1D4C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:21:12", + "topics": "container,info,debug" + }, + { + ".id": "*1D4D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:21:32", + "topics": "container,info,debug" + }, + { + ".id": "*1D4E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:21:52", + "topics": "container,info,debug" + }, + { + ".id": "*1D4F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:22:12", + "topics": "container,info,debug" + }, + { + ".id": "*1D50", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:23:24", + "topics": "container,info,debug" + }, + { + ".id": "*1D51", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:24:24", + "topics": "container,info,debug" + }, + { + ".id": "*1D52", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:24:44", + "topics": "container,info,debug" + }, + { + ".id": "*1D53", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:25:04", + "topics": "container,info,debug" + }, + { + ".id": "*1D54", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:25:24", + "topics": "container,info,debug" + }, + { + ".id": "*1D55", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:25:44", + "topics": "container,info,debug" + }, + { + ".id": "*1D56", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:26:55", + "topics": "container,info,debug" + }, + { + ".id": "*1D57", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:27:55", + "topics": "container,info,debug" + }, + { + ".id": "*1D58", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:28:15", + "topics": "container,info,debug" + }, + { + ".id": "*1D59", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:28:35", + "topics": "container,info,debug" + }, + { + ".id": "*1D5A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:28:55", + "topics": "container,info,debug" + }, + { + ".id": "*1D5B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:29:15", + "topics": "container,info,debug" + }, + { + ".id": "*1D5C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:30:27", + "topics": "container,info,debug" + }, + { + ".id": "*1D5D", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 14:30:40", + "topics": "dhcp,info" + }, + { + ".id": "*1D5E", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-18 14:30:40", + "topics": "dhcp,info" + }, + { + ".id": "*1D5F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:31:27", + "topics": "container,info,debug" + }, + { + ".id": "*1D60", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:31:47", + "topics": "container,info,debug" + }, + { + ".id": "*1D61", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:32:07", + "topics": "container,info,debug" + }, + { + ".id": "*1D62", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:32:27", + "topics": "container,info,debug" + }, + { + ".id": "*1D63", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:32:47", + "topics": "container,info,debug" + }, + { + ".id": "*1D64", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:33:58", + "topics": "container,info,debug" + }, + { + ".id": "*1D65", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:34:58", + "topics": "container,info,debug" + }, + { + ".id": "*1D66", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:35:18", + "topics": "container,info,debug" + }, + { + ".id": "*1D67", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:35:38", + "topics": "container,info,debug" + }, + { + ".id": "*1D68", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:35:58", + "topics": "container,info,debug" + }, + { + ".id": "*1D69", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:36:18", + "topics": "container,info,debug" + }, + { + ".id": "*1D6A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:37:30", + "topics": "container,info,debug" + }, + { + ".id": "*1D6B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:38:30", + "topics": "container,info,debug" + }, + { + ".id": "*1D6C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:38:50", + "topics": "container,info,debug" + }, + { + ".id": "*1D6D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:39:10", + "topics": "container,info,debug" + }, + { + ".id": "*1D6E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:39:30", + "topics": "container,info,debug" + }, + { + ".id": "*1D6F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:39:50", + "topics": "container,info,debug" + }, + { + ".id": "*1D70", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:41:01", + "topics": "container,info,debug" + }, + { + ".id": "*1D71", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:42:01", + "topics": "container,info,debug" + }, + { + ".id": "*1D72", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:42:21", + "topics": "container,info,debug" + }, + { + ".id": "*1D73", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:42:41", + "topics": "container,info,debug" + }, + { + ".id": "*1D74", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:43:01", + "topics": "container,info,debug" + }, + { + ".id": "*1D75", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:43:21", + "topics": "container,info,debug" + }, + { + ".id": "*1D76", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:44:33", + "topics": "container,info,debug" + }, + { + ".id": "*1D77", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:45:33", + "topics": "container,info,debug" + }, + { + ".id": "*1D78", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:45:53", + "topics": "container,info,debug" + }, + { + ".id": "*1D79", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-18 14:46:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D7A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-18 14:46:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D7B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:46:13", + "topics": "container,info,debug" + }, + { + ".id": "*1D7C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:46:33", + "topics": "container,info,debug" + }, + { + ".id": "*1D7D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:46:53", + "topics": "container,info,debug" + }, + { + ".id": "*1D7E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:48:04", + "topics": "container,info,debug" + }, + { + ".id": "*1D7F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:49:04", + "topics": "container,info,debug" + }, + { + ".id": "*1D80", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:49:24", + "topics": "container,info,debug" + }, + { + ".id": "*1D81", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:49:44", + "topics": "container,info,debug" + }, + { + ".id": "*1D82", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:50:04", + "topics": "container,info,debug" + }, + { + ".id": "*1D83", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:50:24", + "topics": "container,info,debug" + }, + { + ".id": "*1D84", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:51:36", + "topics": "container,info,debug" + }, + { + ".id": "*1D85", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:52:36", + "topics": "container,info,debug" + }, + { + ".id": "*1D86", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:52:56", + "topics": "container,info,debug" + }, + { + ".id": "*1D87", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:53:16", + "topics": "container,info,debug" + }, + { + ".id": "*1D88", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:53:36", + "topics": "container,info,debug" + }, + { + ".id": "*1D89", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:53:56", + "topics": "container,info,debug" + }, + { + ".id": "*1D8A", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-18 14:54:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D8B", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-18 14:54:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D8C", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-18 14:54:16", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1D8D", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-18 14:54:16", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1D8E", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.253 for EA:42:27:4C:BE:82 ", + "time": "2026-01-18 14:54:23", + "topics": "dhcp,info" + }, + { + ".id": "*1D8F", + "extra-info": "", + "message": "gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-18 14:54:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D90", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): trying to log in by mac-cookie", + "time": "2026-01-18 14:54:23", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1D91", + "extra-info": "", + "message": "gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-18 14:54:23", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1D92", + "extra-info": "", + "message": "->: gedekartika@*2025# (10.5.50.253): logged in", + "time": "2026-01-18 14:54:23", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1D93", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:55:06", + "topics": "container,info,debug" + }, + { + ".id": "*1D94", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:56:06", + "topics": "container,info,debug" + }, + { + ".id": "*1D95", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:56:26", + "topics": "container,info,debug" + }, + { + ".id": "*1D96", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:56:46", + "topics": "container,info,debug" + }, + { + ".id": "*1D97", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:57:06", + "topics": "container,info,debug" + }, + { + ".id": "*1D98", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:57:26", + "topics": "container,info,debug" + }, + { + ".id": "*1D99", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:58:38", + "topics": "container,info,debug" + }, + { + ".id": "*1D9A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:59:38", + "topics": "container,info,debug" + }, + { + ".id": "*1D9B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 14:59:58", + "topics": "container,info,debug" + }, + { + ".id": "*1D9C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:00:18", + "topics": "container,info,debug" + }, + { + ".id": "*1D9D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:00:38", + "topics": "container,info,debug" + }, + { + ".id": "*1D9E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:00:58", + "topics": "container,info,debug" + }, + { + ".id": "*1D9F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:02:10", + "topics": "container,info,debug" + }, + { + ".id": "*1DA0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:03:10", + "topics": "container,info,debug" + }, + { + ".id": "*1DA1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:03:30", + "topics": "container,info,debug" + }, + { + ".id": "*1DA2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:03:50", + "topics": "container,info,debug" + }, + { + ".id": "*1DA3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:04:10", + "topics": "container,info,debug" + }, + { + ".id": "*1DA4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:04:30", + "topics": "container,info,debug" + }, + { + ".id": "*1DA5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:05:41", + "topics": "container,info,debug" + }, + { + ".id": "*1DA6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:06:41", + "topics": "container,info,debug" + }, + { + ".id": "*1DA7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:07:01", + "topics": "container,info,debug" + }, + { + ".id": "*1DA8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:07:21", + "topics": "container,info,debug" + }, + { + ".id": "*1DA9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:07:41", + "topics": "container,info,debug" + }, + { + ".id": "*1DAA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:08:01", + "topics": "container,info,debug" + }, + { + ".id": "*1DAB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:09:12", + "topics": "container,info,debug" + }, + { + ".id": "*1DAC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:10:12", + "topics": "container,info,debug" + }, + { + ".id": "*1DAD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:10:32", + "topics": "container,info,debug" + }, + { + ".id": "*1DAE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:10:52", + "topics": "container,info,debug" + }, + { + ".id": "*1DAF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:11:12", + "topics": "container,info,debug" + }, + { + ".id": "*1DB0", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-18 15:11:21", + "topics": "dhcp,info" + }, + { + ".id": "*1DB1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:11:32", + "topics": "container,info,debug" + }, + { + ".id": "*1DB2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:12:45", + "topics": "container,info,debug" + }, + { + ".id": "*1DB3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:13:45", + "topics": "container,info,debug" + }, + { + ".id": "*1DB4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:14:05", + "topics": "container,info,debug" + }, + { + ".id": "*1DB5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:14:25", + "topics": "container,info,debug" + }, + { + ".id": "*1DB6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:14:45", + "topics": "container,info,debug" + }, + { + ".id": "*1DB7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:15:05", + "topics": "container,info,debug" + }, + { + ".id": "*1DB8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:16:16", + "topics": "container,info,debug" + }, + { + ".id": "*1DB9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:17:16", + "topics": "container,info,debug" + }, + { + ".id": "*1DBA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:17:36", + "topics": "container,info,debug" + }, + { + ".id": "*1DBB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:17:56", + "topics": "container,info,debug" + }, + { + ".id": "*1DBC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:18:16", + "topics": "container,info,debug" + }, + { + ".id": "*1DBD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:18:36", + "topics": "container,info,debug" + }, + { + ".id": "*1DBE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:19:48", + "topics": "container,info,debug" + }, + { + ".id": "*1DBF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:20:48", + "topics": "container,info,debug" + }, + { + ".id": "*1DC0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:21:08", + "topics": "container,info,debug" + }, + { + ".id": "*1DC1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:21:28", + "topics": "container,info,debug" + }, + { + ".id": "*1DC2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:21:48", + "topics": "container,info,debug" + }, + { + ".id": "*1DC3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:22:08", + "topics": "container,info,debug" + }, + { + ".id": "*1DC4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:23:19", + "topics": "container,info,debug" + }, + { + ".id": "*1DC5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:24:19", + "topics": "container,info,debug" + }, + { + ".id": "*1DC6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:24:39", + "topics": "container,info,debug" + }, + { + ".id": "*1DC7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:24:59", + "topics": "container,info,debug" + }, + { + ".id": "*1DC8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:25:19", + "topics": "container,info,debug" + }, + { + ".id": "*1DC9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:25:39", + "topics": "container,info,debug" + }, + { + ".id": "*1DCA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:26:51", + "topics": "container,info,debug" + }, + { + ".id": "*1DCB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:27:51", + "topics": "container,info,debug" + }, + { + ".id": "*1DCC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:28:11", + "topics": "container,info,debug" + }, + { + ".id": "*1DCD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:28:31", + "topics": "container,info,debug" + }, + { + ".id": "*1DCE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:28:51", + "topics": "container,info,debug" + }, + { + ".id": "*1DCF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:29:11", + "topics": "container,info,debug" + }, + { + ".id": "*1DD0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:30:23", + "topics": "container,info,debug" + }, + { + ".id": "*1DD1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:31:23", + "topics": "container,info,debug" + }, + { + ".id": "*1DD2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:31:43", + "topics": "container,info,debug" + }, + { + ".id": "*1DD3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:32:03", + "topics": "container,info,debug" + }, + { + ".id": "*1DD4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:32:23", + "topics": "container,info,debug" + }, + { + ".id": "*1DD5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:32:43", + "topics": "container,info,debug" + }, + { + ".id": "*1DD6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:33:54", + "topics": "container,info,debug" + }, + { + ".id": "*1DD7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:34:54", + "topics": "container,info,debug" + }, + { + ".id": "*1DD8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:35:14", + "topics": "container,info,debug" + }, + { + ".id": "*1DD9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:35:34", + "topics": "container,info,debug" + }, + { + ".id": "*1DDA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:35:54", + "topics": "container,info,debug" + }, + { + ".id": "*1DDB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:36:14", + "topics": "container,info,debug" + }, + { + ".id": "*1DDC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:37:26", + "topics": "container,info,debug" + }, + { + ".id": "*1DDD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:38:26", + "topics": "container,info,debug" + }, + { + ".id": "*1DDE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:38:46", + "topics": "container,info,debug" + }, + { + ".id": "*1DDF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:39:06", + "topics": "container,info,debug" + }, + { + ".id": "*1DE0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:39:26", + "topics": "container,info,debug" + }, + { + ".id": "*1DE1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:39:46", + "topics": "container,info,debug" + }, + { + ".id": "*1DE2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:40:58", + "topics": "container,info,debug" + }, + { + ".id": "*1DE3", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-18 15:41:21", + "topics": "dhcp,info" + }, + { + ".id": "*1DE4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:41:58", + "topics": "container,info,debug" + }, + { + ".id": "*1DE5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:42:18", + "topics": "container,info,debug" + }, + { + ".id": "*1DE6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:42:38", + "topics": "container,info,debug" + }, + { + ".id": "*1DE7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:42:58", + "topics": "container,info,debug" + }, + { + ".id": "*1DE8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:43:18", + "topics": "container,info,debug" + }, + { + ".id": "*1DE9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:44:29", + "topics": "container,info,debug" + }, + { + ".id": "*1DEA", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-18 15:44:34", + "topics": "dhcp,info" + }, + { + ".id": "*1DEB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:45:29", + "topics": "container,info,debug" + }, + { + ".id": "*1DEC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:45:49", + "topics": "container,info,debug" + }, + { + ".id": "*1DED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:46:09", + "topics": "container,info,debug" + }, + { + ".id": "*1DEE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:46:29", + "topics": "container,info,debug" + }, + { + ".id": "*1DEF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:46:49", + "topics": "container,info,debug" + }, + { + ".id": "*1DF0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:48:01", + "topics": "container,info,debug" + }, + { + ".id": "*1DF1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:49:01", + "topics": "container,info,debug" + }, + { + ".id": "*1DF2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:49:21", + "topics": "container,info,debug" + }, + { + ".id": "*1DF3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:49:41", + "topics": "container,info,debug" + }, + { + ".id": "*1DF4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:50:01", + "topics": "container,info,debug" + }, + { + ".id": "*1DF5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:50:21", + "topics": "container,info,debug" + }, + { + ".id": "*1DF6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:51:32", + "topics": "container,info,debug" + }, + { + ".id": "*1DF7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:52:32", + "topics": "container,info,debug" + }, + { + ".id": "*1DF8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:52:52", + "topics": "container,info,debug" + }, + { + ".id": "*1DF9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:53:12", + "topics": "container,info,debug" + }, + { + ".id": "*1DFA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:53:32", + "topics": "container,info,debug" + }, + { + ".id": "*1DFB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:53:52", + "topics": "container,info,debug" + }, + { + ".id": "*1DFC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:55:04", + "topics": "container,info,debug" + }, + { + ".id": "*1DFD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:56:04", + "topics": "container,info,debug" + }, + { + ".id": "*1DFE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:56:24", + "topics": "container,info,debug" + }, + { + ".id": "*1DFF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:56:44", + "topics": "container,info,debug" + }, + { + ".id": "*1E00", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:57:04", + "topics": "container,info,debug" + }, + { + ".id": "*1E01", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:57:24", + "topics": "container,info,debug" + }, + { + ".id": "*1E02", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:58:35", + "topics": "container,info,debug" + }, + { + ".id": "*1E03", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:59:35", + "topics": "container,info,debug" + }, + { + ".id": "*1E04", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 15:59:55", + "topics": "container,info,debug" + }, + { + ".id": "*1E05", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:00:15", + "topics": "container,info,debug" + }, + { + ".id": "*1E06", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:00:35", + "topics": "container,info,debug" + }, + { + ".id": "*1E07", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:00:55", + "topics": "container,info,debug" + }, + { + ".id": "*1E08", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:02:06", + "topics": "container,info,debug" + }, + { + ".id": "*1E09", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-18 16:02:38", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1E0A", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-18 16:02:38", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1E0B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:03:06", + "topics": "container,info,debug" + }, + { + ".id": "*1E0C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:03:26", + "topics": "container,info,debug" + }, + { + ".id": "*1E0D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:03:46", + "topics": "container,info,debug" + }, + { + ".id": "*1E0E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:04:06", + "topics": "container,info,debug" + }, + { + ".id": "*1E0F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:04:26", + "topics": "container,info,debug" + }, + { + ".id": "*1E10", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:05:38", + "topics": "container,info,debug" + }, + { + ".id": "*1E11", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:06:38", + "topics": "container,info,debug" + }, + { + ".id": "*1E12", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:06:58", + "topics": "container,info,debug" + }, + { + ".id": "*1E13", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:07:18", + "topics": "container,info,debug" + }, + { + ".id": "*1E14", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:07:38", + "topics": "container,info,debug" + }, + { + ".id": "*1E15", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:07:58", + "topics": "container,info,debug" + }, + { + ".id": "*1E16", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:09:10", + "topics": "container,info,debug" + }, + { + ".id": "*1E17", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:10:10", + "topics": "container,info,debug" + }, + { + ".id": "*1E18", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:10:30", + "topics": "container,info,debug" + }, + { + ".id": "*1E19", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:10:50", + "topics": "container,info,debug" + }, + { + ".id": "*1E1A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:11:10", + "topics": "container,info,debug" + }, + { + ".id": "*1E1B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:11:30", + "topics": "container,info,debug" + }, + { + ".id": "*1E1C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:12:41", + "topics": "container,info,debug" + }, + { + ".id": "*1E1D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:13:41", + "topics": "container,info,debug" + }, + { + ".id": "*1E1E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:14:01", + "topics": "container,info,debug" + }, + { + ".id": "*1E1F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:14:21", + "topics": "container,info,debug" + }, + { + ".id": "*1E20", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:14:41", + "topics": "container,info,debug" + }, + { + ".id": "*1E21", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:15:01", + "topics": "container,info,debug" + }, + { + ".id": "*1E22", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:16:13", + "topics": "container,info,debug" + }, + { + ".id": "*1E23", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:17:13", + "topics": "container,info,debug" + }, + { + ".id": "*1E24", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:17:33", + "topics": "container,info,debug" + }, + { + ".id": "*1E25", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:17:53", + "topics": "container,info,debug" + }, + { + ".id": "*1E26", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:18:13", + "topics": "container,info,debug" + }, + { + ".id": "*1E27", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:18:33", + "topics": "container,info,debug" + }, + { + ".id": "*1E28", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:19:44", + "topics": "container,info,debug" + }, + { + ".id": "*1E29", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:20:44", + "topics": "container,info,debug" + }, + { + ".id": "*1E2A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:21:04", + "topics": "container,info,debug" + }, + { + ".id": "*1E2B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:21:24", + "topics": "container,info,debug" + }, + { + ".id": "*1E2C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:21:44", + "topics": "container,info,debug" + }, + { + ".id": "*1E2D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:22:04", + "topics": "container,info,debug" + }, + { + ".id": "*1E2E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:23:16", + "topics": "container,info,debug" + }, + { + ".id": "*1E2F", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.122 for 7C:9A:1D:2D:E5:E1 ", + "time": "2026-01-18 16:23:39", + "topics": "dhcp,info" + }, + { + ".id": "*1E30", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:24:16", + "topics": "container,info,debug" + }, + { + ".id": "*1E31", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:24:36", + "topics": "container,info,debug" + }, + { + ".id": "*1E32", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:24:56", + "topics": "container,info,debug" + }, + { + ".id": "*1E33", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:25:16", + "topics": "container,info,debug" + }, + { + ".id": "*1E34", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:25:36", + "topics": "container,info,debug" + }, + { + ".id": "*1E35", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:26:47", + "topics": "container,info,debug" + }, + { + ".id": "*1E36", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:27:47", + "topics": "container,info,debug" + }, + { + ".id": "*1E37", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:28:07", + "topics": "container,info,debug" + }, + { + ".id": "*1E38", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:28:27", + "topics": "container,info,debug" + }, + { + ".id": "*1E39", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:28:47", + "topics": "container,info,debug" + }, + { + ".id": "*1E3A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:29:07", + "topics": "container,info,debug" + }, + { + ".id": "*1E3B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:30:19", + "topics": "container,info,debug" + }, + { + ".id": "*1E3C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:31:19", + "topics": "container,info,debug" + }, + { + ".id": "*1E3D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:31:39", + "topics": "container,info,debug" + }, + { + ".id": "*1E3E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:31:59", + "topics": "container,info,debug" + }, + { + ".id": "*1E3F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:32:19", + "topics": "container,info,debug" + }, + { + ".id": "*1E40", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.120 for DE:8D:3D:86:C7:08 ", + "time": "2026-01-18 16:32:28", + "topics": "dhcp,info" + }, + { + ".id": "*1E41", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:32:39", + "topics": "container,info,debug" + }, + { + ".id": "*1E42", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:33:50", + "topics": "container,info,debug" + }, + { + ".id": "*1E43", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:34:50", + "topics": "container,info,debug" + }, + { + ".id": "*1E44", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:35:10", + "topics": "container,info,debug" + }, + { + ".id": "*1E45", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:35:30", + "topics": "container,info,debug" + }, + { + ".id": "*1E46", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.122 for 7C:9A:1D:2D:E5:E1 ", + "time": "2026-01-18 16:35:48", + "topics": "dhcp,info" + }, + { + ".id": "*1E47", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:35:50", + "topics": "container,info,debug" + }, + { + ".id": "*1E48", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-18 16:35:50", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1E49", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-18 16:35:50", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1E4A", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged in", + "time": "2026-01-18 16:35:50", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1E4B", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-18 16:35:50", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1E4C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:36:10", + "topics": "container,info,debug" + }, + { + ".id": "*1E4D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:37:21", + "topics": "container,info,debug" + }, + { + ".id": "*1E4E", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.110 for 9E:E1:69:4E:42:A9 OPPO-A54", + "time": "2026-01-18 16:37:26", + "topics": "dhcp,info" + }, + { + ".id": "*1E4F", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-18 16:38:03", + "topics": "dhcp,info" + }, + { + ".id": "*1E50", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:38:21", + "topics": "container,info,debug" + }, + { + ".id": "*1E51", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:38:41", + "topics": "container,info,debug" + }, + { + ".id": "*1E52", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:39:01", + "topics": "container,info,debug" + }, + { + ".id": "*1E53", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:39:21", + "topics": "container,info,debug" + }, + { + ".id": "*1E54", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:39:41", + "topics": "container,info,debug" + }, + { + ".id": "*1E55", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:40:53", + "topics": "container,info,debug" + }, + { + ".id": "*1E56", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:41:53", + "topics": "container,info,debug" + }, + { + ".id": "*1E57", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:42:13", + "topics": "container,info,debug" + }, + { + ".id": "*1E58", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:42:33", + "topics": "container,info,debug" + }, + { + ".id": "*1E59", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:42:53", + "topics": "container,info,debug" + }, + { + ".id": "*1E5A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:43:13", + "topics": "container,info,debug" + }, + { + ".id": "*1E5B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:44:24", + "topics": "container,info,debug" + }, + { + ".id": "*1E5C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:45:24", + "topics": "container,info,debug" + }, + { + ".id": "*1E5D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:45:44", + "topics": "container,info,debug" + }, + { + ".id": "*1E5E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:46:04", + "topics": "container,info,debug" + }, + { + ".id": "*1E5F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:46:24", + "topics": "container,info,debug" + }, + { + ".id": "*1E60", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:46:44", + "topics": "container,info,debug" + }, + { + ".id": "*1E61", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:47:56", + "topics": "container,info,debug" + }, + { + ".id": "*1E62", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:48:56", + "topics": "container,info,debug" + }, + { + ".id": "*1E63", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:49:16", + "topics": "container,info,debug" + }, + { + ".id": "*1E64", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:49:36", + "topics": "container,info,debug" + }, + { + ".id": "*1E65", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:49:56", + "topics": "container,info,debug" + }, + { + ".id": "*1E66", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:50:16", + "topics": "container,info,debug" + }, + { + ".id": "*1E67", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:51:27", + "topics": "container,info,debug" + }, + { + ".id": "*1E68", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:52:27", + "topics": "container,info,debug" + }, + { + ".id": "*1E69", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:52:47", + "topics": "container,info,debug" + }, + { + ".id": "*1E6A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:53:07", + "topics": "container,info,debug" + }, + { + ".id": "*1E6B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:53:27", + "topics": "container,info,debug" + }, + { + ".id": "*1E6C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:53:47", + "topics": "container,info,debug" + }, + { + ".id": "*1E6D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:54:59", + "topics": "container,info,debug" + }, + { + ".id": "*1E6E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:55:59", + "topics": "container,info,debug" + }, + { + ".id": "*1E6F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:56:19", + "topics": "container,info,debug" + }, + { + ".id": "*1E70", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:56:39", + "topics": "container,info,debug" + }, + { + ".id": "*1E71", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:56:59", + "topics": "container,info,debug" + }, + { + ".id": "*1E72", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:57:19", + "topics": "container,info,debug" + }, + { + ".id": "*1E73", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:58:30", + "topics": "container,info,debug" + }, + { + ".id": "*1E74", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:59:30", + "topics": "container,info,debug" + }, + { + ".id": "*1E75", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 16:59:50", + "topics": "container,info,debug" + }, + { + ".id": "*1E76", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:00:10", + "topics": "container,info,debug" + }, + { + ".id": "*1E77", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:00:30", + "topics": "container,info,debug" + }, + { + ".id": "*1E78", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:00:50", + "topics": "container,info,debug" + }, + { + ".id": "*1E79", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:02:02", + "topics": "container,info,debug" + }, + { + ".id": "*1E7A", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.120 for DE:8D:3D:86:C7:08 ", + "time": "2026-01-18 17:02:28", + "topics": "dhcp,info" + }, + { + ".id": "*1E7B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:03:02", + "topics": "container,info,debug" + }, + { + ".id": "*1E7C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:03:22", + "topics": "container,info,debug" + }, + { + ".id": "*1E7D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:03:42", + "topics": "container,info,debug" + }, + { + ".id": "*1E7E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:04:02", + "topics": "container,info,debug" + }, + { + ".id": "*1E7F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:04:22", + "topics": "container,info,debug" + }, + { + ".id": "*1E80", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:05:33", + "topics": "container,info,debug" + }, + { + ".id": "*1E81", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:06:33", + "topics": "container,info,debug" + }, + { + ".id": "*1E82", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:06:53", + "topics": "container,info,debug" + }, + { + ".id": "*1E83", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:07:13", + "topics": "container,info,debug" + }, + { + ".id": "*1E84", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:07:33", + "topics": "container,info,debug" + }, + { + ".id": "*1E85", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:07:53", + "topics": "container,info,debug" + }, + { + ".id": "*1E86", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-18 17:08:03", + "topics": "dhcp,info" + }, + { + ".id": "*1E87", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:09:04", + "topics": "container,info,debug" + }, + { + ".id": "*1E88", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:10:04", + "topics": "container,info,debug" + }, + { + ".id": "*1E89", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:10:24", + "topics": "container,info,debug" + }, + { + ".id": "*1E8A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:10:44", + "topics": "container,info,debug" + }, + { + ".id": "*1E8B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:11:04", + "topics": "container,info,debug" + }, + { + ".id": "*1E8C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:11:24", + "topics": "container,info,debug" + }, + { + ".id": "*1E8D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:12:36", + "topics": "container,info,debug" + }, + { + ".id": "*1E8E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:13:36", + "topics": "container,info,debug" + }, + { + ".id": "*1E8F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:13:56", + "topics": "container,info,debug" + }, + { + ".id": "*1E90", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:14:16", + "topics": "container,info,debug" + }, + { + ".id": "*1E91", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:14:36", + "topics": "container,info,debug" + }, + { + ".id": "*1E92", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:14:56", + "topics": "container,info,debug" + }, + { + ".id": "*1E93", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:16:07", + "topics": "container,info,debug" + }, + { + ".id": "*1E94", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:17:07", + "topics": "container,info,debug" + }, + { + ".id": "*1E95", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:17:27", + "topics": "container,info,debug" + }, + { + ".id": "*1E96", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:17:47", + "topics": "container,info,debug" + }, + { + ".id": "*1E97", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:18:07", + "topics": "container,info,debug" + }, + { + ".id": "*1E98", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:18:27", + "topics": "container,info,debug" + }, + { + ".id": "*1E99", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:19:39", + "topics": "container,info,debug" + }, + { + ".id": "*1E9A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:20:39", + "topics": "container,info,debug" + }, + { + ".id": "*1E9B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:20:59", + "topics": "container,info,debug" + }, + { + ".id": "*1E9C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:21:19", + "topics": "container,info,debug" + }, + { + ".id": "*1E9D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:21:39", + "topics": "container,info,debug" + }, + { + ".id": "*1E9E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:21:59", + "topics": "container,info,debug" + }, + { + ".id": "*1E9F", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-18 17:22:23", + "topics": "dhcp,info" + }, + { + ".id": "*1EA0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:23:10", + "topics": "container,info,debug" + }, + { + ".id": "*1EA1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:24:10", + "topics": "container,info,debug" + }, + { + ".id": "*1EA2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:24:30", + "topics": "container,info,debug" + }, + { + ".id": "*1EA3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:24:50", + "topics": "container,info,debug" + }, + { + ".id": "*1EA4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:25:10", + "topics": "container,info,debug" + }, + { + ".id": "*1EA5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:25:30", + "topics": "container,info,debug" + }, + { + ".id": "*1EA6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:26:42", + "topics": "container,info,debug" + }, + { + ".id": "*1EA7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:27:42", + "topics": "container,info,debug" + }, + { + ".id": "*1EA8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:28:02", + "topics": "container,info,debug" + }, + { + ".id": "*1EA9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:28:22", + "topics": "container,info,debug" + }, + { + ".id": "*1EAA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:28:42", + "topics": "container,info,debug" + }, + { + ".id": "*1EAB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:29:02", + "topics": "container,info,debug" + }, + { + ".id": "*1EAC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:30:13", + "topics": "container,info,debug" + }, + { + ".id": "*1EAD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:31:13", + "topics": "container,info,debug" + }, + { + ".id": "*1EAE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:31:33", + "topics": "container,info,debug" + }, + { + ".id": "*1EAF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:31:53", + "topics": "container,info,debug" + }, + { + ".id": "*1EB0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:32:13", + "topics": "container,info,debug" + }, + { + ".id": "*1EB1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:32:33", + "topics": "container,info,debug" + }, + { + ".id": "*1EB2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:33:45", + "topics": "container,info,debug" + }, + { + ".id": "*1EB3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:34:45", + "topics": "container,info,debug" + }, + { + ".id": "*1EB4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:35:05", + "topics": "container,info,debug" + }, + { + ".id": "*1EB5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:35:25", + "topics": "container,info,debug" + }, + { + ".id": "*1EB6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:35:45", + "topics": "container,info,debug" + }, + { + ".id": "*1EB7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:36:05", + "topics": "container,info,debug" + }, + { + ".id": "*1EB8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:37:16", + "topics": "container,info,debug" + }, + { + ".id": "*1EB9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:38:16", + "topics": "container,info,debug" + }, + { + ".id": "*1EBA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:38:36", + "topics": "container,info,debug" + }, + { + ".id": "*1EBB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:38:56", + "topics": "container,info,debug" + }, + { + ".id": "*1EBC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:39:16", + "topics": "container,info,debug" + }, + { + ".id": "*1EBD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:39:36", + "topics": "container,info,debug" + }, + { + ".id": "*1EBE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:40:48", + "topics": "container,info,debug" + }, + { + ".id": "*1EBF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:41:48", + "topics": "container,info,debug" + }, + { + ".id": "*1EC0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:42:08", + "topics": "container,info,debug" + }, + { + ".id": "*1EC1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:42:28", + "topics": "container,info,debug" + }, + { + ".id": "*1EC2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:42:48", + "topics": "container,info,debug" + }, + { + ".id": "*1EC3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:43:08", + "topics": "container,info,debug" + }, + { + ".id": "*1EC4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:44:19", + "topics": "container,info,debug" + }, + { + ".id": "*1EC5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:45:19", + "topics": "container,info,debug" + }, + { + ".id": "*1EC6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:45:39", + "topics": "container,info,debug" + }, + { + ".id": "*1EC7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:45:59", + "topics": "container,info,debug" + }, + { + ".id": "*1EC8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:46:19", + "topics": "container,info,debug" + }, + { + ".id": "*1EC9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:46:39", + "topics": "container,info,debug" + }, + { + ".id": "*1ECA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:47:51", + "topics": "container,info,debug" + }, + { + ".id": "*1ECB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:48:51", + "topics": "container,info,debug" + }, + { + ".id": "*1ECC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:49:11", + "topics": "container,info,debug" + }, + { + ".id": "*1ECD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:49:31", + "topics": "container,info,debug" + }, + { + ".id": "*1ECE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:49:51", + "topics": "container,info,debug" + }, + { + ".id": "*1ECF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:50:11", + "topics": "container,info,debug" + }, + { + ".id": "*1ED0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:51:22", + "topics": "container,info,debug" + }, + { + ".id": "*1ED1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:52:22", + "topics": "container,info,debug" + }, + { + ".id": "*1ED2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:52:42", + "topics": "container,info,debug" + }, + { + ".id": "*1ED3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:53:02", + "topics": "container,info,debug" + }, + { + ".id": "*1ED4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:53:22", + "topics": "container,info,debug" + }, + { + ".id": "*1ED5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:53:42", + "topics": "container,info,debug" + }, + { + ".id": "*1ED6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:54:54", + "topics": "container,info,debug" + }, + { + ".id": "*1ED7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:55:54", + "topics": "container,info,debug" + }, + { + ".id": "*1ED8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:56:14", + "topics": "container,info,debug" + }, + { + ".id": "*1ED9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:56:34", + "topics": "container,info,debug" + }, + { + ".id": "*1EDA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:56:54", + "topics": "container,info,debug" + }, + { + ".id": "*1EDB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:57:14", + "topics": "container,info,debug" + }, + { + ".id": "*1EDC", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-18 17:57:16", + "topics": "dhcp,info" + }, + { + ".id": "*1EDD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:58:25", + "topics": "container,info,debug" + }, + { + ".id": "*1EDE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:59:25", + "topics": "container,info,debug" + }, + { + ".id": "*1EDF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 17:59:45", + "topics": "container,info,debug" + }, + { + ".id": "*1EE0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:00:05", + "topics": "container,info,debug" + }, + { + ".id": "*1EE1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:00:25", + "topics": "container,info,debug" + }, + { + ".id": "*1EE2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:00:45", + "topics": "container,info,debug" + }, + { + ".id": "*1EE3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:01:57", + "topics": "container,info,debug" + }, + { + ".id": "*1EE4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:02:57", + "topics": "container,info,debug" + }, + { + ".id": "*1EE5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:03:17", + "topics": "container,info,debug" + }, + { + ".id": "*1EE6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:03:37", + "topics": "container,info,debug" + }, + { + ".id": "*1EE7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:03:57", + "topics": "container,info,debug" + }, + { + ".id": "*1EE8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:04:17", + "topics": "container,info,debug" + }, + { + ".id": "*1EE9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:05:28", + "topics": "container,info,debug" + }, + { + ".id": "*1EEA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:06:28", + "topics": "container,info,debug" + }, + { + ".id": "*1EEB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:06:48", + "topics": "container,info,debug" + }, + { + ".id": "*1EEC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:07:08", + "topics": "container,info,debug" + }, + { + ".id": "*1EED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:07:28", + "topics": "container,info,debug" + }, + { + ".id": "*1EEE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:07:48", + "topics": "container,info,debug" + }, + { + ".id": "*1EEF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:09:00", + "topics": "container,info,debug" + }, + { + ".id": "*1EF0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:10:00", + "topics": "container,info,debug" + }, + { + ".id": "*1EF1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:10:20", + "topics": "container,info,debug" + }, + { + ".id": "*1EF2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:10:40", + "topics": "container,info,debug" + }, + { + ".id": "*1EF3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:11:00", + "topics": "container,info,debug" + }, + { + ".id": "*1EF4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:11:20", + "topics": "container,info,debug" + }, + { + ".id": "*1EF5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:12:31", + "topics": "container,info,debug" + }, + { + ".id": "*1EF6", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-18 18:13:31", + "topics": "dhcp,info" + }, + { + ".id": "*1EF7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:13:32", + "topics": "container,info,debug" + }, + { + ".id": "*1EF8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:13:52", + "topics": "container,info,debug" + }, + { + ".id": "*1EF9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:14:12", + "topics": "container,info,debug" + }, + { + ".id": "*1EFA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:14:32", + "topics": "container,info,debug" + }, + { + ".id": "*1EFB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:14:52", + "topics": "container,info,debug" + }, + { + ".id": "*1EFC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:16:03", + "topics": "container,info,debug" + }, + { + ".id": "*1EFD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:17:03", + "topics": "container,info,debug" + }, + { + ".id": "*1EFE", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.105 for F4:D1:08:58:B4:A2 DESKTOP-V812127", + "time": "2026-01-18 18:17:22", + "topics": "dhcp,info" + }, + { + ".id": "*1EFF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:17:23", + "topics": "container,info,debug" + }, + { + ".id": "*1F00", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:17:43", + "topics": "container,info,debug" + }, + { + ".id": "*1F01", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:18:03", + "topics": "container,info,debug" + }, + { + ".id": "*1F02", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:18:23", + "topics": "container,info,debug" + }, + { + ".id": "*1F03", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:19:34", + "topics": "container,info,debug" + }, + { + ".id": "*1F04", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:20:34", + "topics": "container,info,debug" + }, + { + ".id": "*1F05", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:20:54", + "topics": "container,info,debug" + }, + { + ".id": "*1F06", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:21:14", + "topics": "container,info,debug" + }, + { + ".id": "*1F07", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:21:34", + "topics": "container,info,debug" + }, + { + ".id": "*1F08", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:21:54", + "topics": "container,info,debug" + }, + { + ".id": "*1F09", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:23:06", + "topics": "container,info,debug" + }, + { + ".id": "*1F0A", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-18 18:23:39", + "topics": "dhcp,info" + }, + { + ".id": "*1F0B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:24:06", + "topics": "container,info,debug" + }, + { + ".id": "*1F0C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:24:26", + "topics": "container,info,debug" + }, + { + ".id": "*1F0D", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-18 18:24:39", + "topics": "dhcp,info" + }, + { + ".id": "*1F0E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:24:46", + "topics": "container,info,debug" + }, + { + ".id": "*1F0F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:25:06", + "topics": "container,info,debug" + }, + { + ".id": "*1F10", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:25:26", + "topics": "container,info,debug" + }, + { + ".id": "*1F11", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:26:38", + "topics": "container,info,debug" + }, + { + ".id": "*1F12", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-18 18:26:59", + "topics": "dhcp,info" + }, + { + ".id": "*1F13", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-18 18:26:59", + "topics": "dhcp,info" + }, + { + ".id": "*1F14", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:27:38", + "topics": "container,info,debug" + }, + { + ".id": "*1F15", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:27:58", + "topics": "container,info,debug" + }, + { + ".id": "*1F16", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:28:18", + "topics": "container,info,debug" + }, + { + ".id": "*1F17", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:28:38", + "topics": "container,info,debug" + }, + { + ".id": "*1F18", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:28:58", + "topics": "container,info,debug" + }, + { + ".id": "*1F19", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.121 for D2:E3:E8:9B:9F:12 Galaxy-A53-5G", + "time": "2026-01-18 18:29:00", + "topics": "dhcp,info" + }, + { + ".id": "*1F1A", + "extra-info": "", + "message": "kaduk123 (10.5.50.121): trying to log in by mac-cookie", + "time": "2026-01-18 18:29:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F1B", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): trying to log in by mac-cookie", + "time": "2026-01-18 18:29:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F1C", + "extra-info": "", + "message": "kaduk123 (10.5.50.121): logged in", + "time": "2026-01-18 18:29:00", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1F1D", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): logged in", + "time": "2026-01-18 18:29:00", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1F1E", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.110 for 9E:E1:69:4E:42:A9 OPPO-A54", + "time": "2026-01-18 18:29:13", + "topics": "dhcp,info" + }, + { + ".id": "*1F1F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:30:09", + "topics": "container,info,debug" + }, + { + ".id": "*1F20", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:31:09", + "topics": "container,info,debug" + }, + { + ".id": "*1F21", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:31:29", + "topics": "container,info,debug" + }, + { + ".id": "*1F22", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:31:49", + "topics": "container,info,debug" + }, + { + ".id": "*1F23", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:32:09", + "topics": "container,info,debug" + }, + { + ".id": "*1F24", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:32:29", + "topics": "container,info,debug" + }, + { + ".id": "*1F25", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:33:41", + "topics": "container,info,debug" + }, + { + ".id": "*1F26", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:34:41", + "topics": "container,info,debug" + }, + { + ".id": "*1F27", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:35:01", + "topics": "container,info,debug" + }, + { + ".id": "*1F28", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:35:21", + "topics": "container,info,debug" + }, + { + ".id": "*1F29", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:35:41", + "topics": "container,info,debug" + }, + { + ".id": "*1F2A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:36:01", + "topics": "container,info,debug" + }, + { + ".id": "*1F2B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:37:12", + "topics": "container,info,debug" + }, + { + ".id": "*1F2C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:38:12", + "topics": "container,info,debug" + }, + { + ".id": "*1F2D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:38:32", + "topics": "container,info,debug" + }, + { + ".id": "*1F2E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:38:52", + "topics": "container,info,debug" + }, + { + ".id": "*1F2F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:39:12", + "topics": "container,info,debug" + }, + { + ".id": "*1F30", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:39:32", + "topics": "container,info,debug" + }, + { + ".id": "*1F31", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:40:44", + "topics": "container,info,debug" + }, + { + ".id": "*1F32", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.135 for 8C:D9:D6:F2:E8:A4 M2006C3LG-Redmi9A", + "time": "2026-01-18 18:40:55", + "topics": "dhcp,info" + }, + { + ".id": "*1F33", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.145 for BA:F1:34:51:19:54 Redmi-Note-9", + "time": "2026-01-18 18:40:55", + "topics": "dhcp,info" + }, + { + ".id": "*1F34", + "extra-info": "", + "message": "koming123 (10.5.50.145): trying to log in by mac-cookie", + "time": "2026-01-18 18:40:55", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F35", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): trying to log in by mac-cookie", + "time": "2026-01-18 18:40:55", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F36", + "extra-info": "", + "message": "koming123 (10.5.50.145): logged in", + "time": "2026-01-18 18:40:55", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1F37", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged in", + "time": "2026-01-18 18:40:55", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1F38", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:41:44", + "topics": "container,info,debug" + }, + { + ".id": "*1F39", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:42:04", + "topics": "container,info,debug" + }, + { + ".id": "*1F3A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:42:24", + "topics": "container,info,debug" + }, + { + ".id": "*1F3B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:42:44", + "topics": "container,info,debug" + }, + { + ".id": "*1F3C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:43:04", + "topics": "container,info,debug" + }, + { + ".id": "*1F3D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:44:15", + "topics": "container,info,debug" + }, + { + ".id": "*1F3E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:45:15", + "topics": "container,info,debug" + }, + { + ".id": "*1F3F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:45:35", + "topics": "container,info,debug" + }, + { + ".id": "*1F40", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:45:55", + "topics": "container,info,debug" + }, + { + ".id": "*1F41", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:46:15", + "topics": "container,info,debug" + }, + { + ".id": "*1F42", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:46:35", + "topics": "container,info,debug" + }, + { + ".id": "*1F43", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-18 18:46:46", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F44", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-18 18:46:46", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F45", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-18 18:47:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F46", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-18 18:47:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F47", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged in", + "time": "2026-01-18 18:47:07", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1F48", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-18 18:47:07", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*1F49", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:47:46", + "topics": "container,info,debug" + }, + { + ".id": "*1F4A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:48:46", + "topics": "container,info,debug" + }, + { + ".id": "*1F4B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:49:06", + "topics": "container,info,debug" + }, + { + ".id": "*1F4C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:49:26", + "topics": "container,info,debug" + }, + { + ".id": "*1F4D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:49:46", + "topics": "container,info,debug" + }, + { + ".id": "*1F4E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:50:06", + "topics": "container,info,debug" + }, + { + ".id": "*1F4F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:51:18", + "topics": "container,info,debug" + }, + { + ".id": "*1F50", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:52:18", + "topics": "container,info,debug" + }, + { + ".id": "*1F51", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:52:38", + "topics": "container,info,debug" + }, + { + ".id": "*1F52", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:52:58", + "topics": "container,info,debug" + }, + { + ".id": "*1F53", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:53:18", + "topics": "container,info,debug" + }, + { + ".id": "*1F54", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:53:38", + "topics": "container,info,debug" + }, + { + ".id": "*1F55", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-18 18:54:39", + "topics": "dhcp,info" + }, + { + ".id": "*1F56", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:54:50", + "topics": "container,info,debug" + }, + { + ".id": "*1F57", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:55:50", + "topics": "container,info,debug" + }, + { + ".id": "*1F58", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:56:10", + "topics": "container,info,debug" + }, + { + ".id": "*1F59", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:56:30", + "topics": "container,info,debug" + }, + { + ".id": "*1F5A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:56:50", + "topics": "container,info,debug" + }, + { + ".id": "*1F5B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:57:10", + "topics": "container,info,debug" + }, + { + ".id": "*1F5C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:58:21", + "topics": "container,info,debug" + }, + { + ".id": "*1F5D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:59:21", + "topics": "container,info,debug" + }, + { + ".id": "*1F5E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 18:59:41", + "topics": "container,info,debug" + }, + { + ".id": "*1F5F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:00:01", + "topics": "container,info,debug" + }, + { + ".id": "*1F60", + "extra-info": "", + "message": "kaduk123 (10.5.50.121): logged out: keepalive timeout", + "time": "2026-01-18 19:00:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F61", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): logged out: keepalive timeout", + "time": "2026-01-18 19:00:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1F62", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:00:21", + "topics": "container,info,debug" + }, + { + ".id": "*1F63", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:00:41", + "topics": "container,info,debug" + }, + { + ".id": "*1F64", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:01:53", + "topics": "container,info,debug" + }, + { + ".id": "*1F65", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:02:53", + "topics": "container,info,debug" + }, + { + ".id": "*1F66", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:03:13", + "topics": "container,info,debug" + }, + { + ".id": "*1F67", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:03:33", + "topics": "container,info,debug" + }, + { + ".id": "*1F68", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:03:53", + "topics": "container,info,debug" + }, + { + ".id": "*1F69", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:04:13", + "topics": "container,info,debug" + }, + { + ".id": "*1F6A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:05:24", + "topics": "container,info,debug" + }, + { + ".id": "*1F6B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:06:24", + "topics": "container,info,debug" + }, + { + ".id": "*1F6C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:06:44", + "topics": "container,info,debug" + }, + { + ".id": "*1F6D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:07:04", + "topics": "container,info,debug" + }, + { + ".id": "*1F6E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:07:24", + "topics": "container,info,debug" + }, + { + ".id": "*1F6F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:07:44", + "topics": "container,info,debug" + }, + { + ".id": "*1F70", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:08:56", + "topics": "container,info,debug" + }, + { + ".id": "*1F71", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:09:56", + "topics": "container,info,debug" + }, + { + ".id": "*1F72", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:10:16", + "topics": "container,info,debug" + }, + { + ".id": "*1F73", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:10:36", + "topics": "container,info,debug" + }, + { + ".id": "*1F74", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:10:56", + "topics": "container,info,debug" + }, + { + ".id": "*1F75", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:11:16", + "topics": "container,info,debug" + }, + { + ".id": "*1F76", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:12:27", + "topics": "container,info,debug" + }, + { + ".id": "*1F77", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:13:27", + "topics": "container,info,debug" + }, + { + ".id": "*1F78", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:13:47", + "topics": "container,info,debug" + }, + { + ".id": "*1F79", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.121 for D2:E3:E8:9B:9F:12 Galaxy-A53-5G", + "time": "2026-01-18 19:14:01", + "topics": "dhcp,info" + }, + { + ".id": "*1F7A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:14:07", + "topics": "container,info,debug" + }, + { + ".id": "*1F7B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:14:27", + "topics": "container,info,debug" + }, + { + ".id": "*1F7C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:14:47", + "topics": "container,info,debug" + }, + { + ".id": "*1F7D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:15:59", + "topics": "container,info,debug" + }, + { + ".id": "*1F7E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:16:59", + "topics": "container,info,debug" + }, + { + ".id": "*1F7F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:17:19", + "topics": "container,info,debug" + }, + { + ".id": "*1F80", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:17:39", + "topics": "container,info,debug" + }, + { + ".id": "*1F81", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:17:59", + "topics": "container,info,debug" + }, + { + ".id": "*1F82", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:18:19", + "topics": "container,info,debug" + }, + { + ".id": "*1F83", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:19:31", + "topics": "container,info,debug" + }, + { + ".id": "*1F84", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:20:31", + "topics": "container,info,debug" + }, + { + ".id": "*1F85", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:20:51", + "topics": "container,info,debug" + }, + { + ".id": "*1F86", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:21:11", + "topics": "container,info,debug" + }, + { + ".id": "*1F87", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:21:31", + "topics": "container,info,debug" + }, + { + ".id": "*1F88", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:21:51", + "topics": "container,info,debug" + }, + { + ".id": "*1F89", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:23:02", + "topics": "container,info,debug" + }, + { + ".id": "*1F8A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:24:02", + "topics": "container,info,debug" + }, + { + ".id": "*1F8B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:24:22", + "topics": "container,info,debug" + }, + { + ".id": "*1F8C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:24:42", + "topics": "container,info,debug" + }, + { + ".id": "*1F8D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:25:02", + "topics": "container,info,debug" + }, + { + ".id": "*1F8E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:25:22", + "topics": "container,info,debug" + }, + { + ".id": "*1F8F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:26:34", + "topics": "container,info,debug" + }, + { + ".id": "*1F90", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:27:34", + "topics": "container,info,debug" + }, + { + ".id": "*1F91", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:27:54", + "topics": "container,info,debug" + }, + { + ".id": "*1F92", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:28:14", + "topics": "container,info,debug" + }, + { + ".id": "*1F93", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:28:34", + "topics": "container,info,debug" + }, + { + ".id": "*1F94", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:28:54", + "topics": "container,info,debug" + }, + { + ".id": "*1F95", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:30:05", + "topics": "container,info,debug" + }, + { + ".id": "*1F96", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:31:05", + "topics": "container,info,debug" + }, + { + ".id": "*1F97", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:31:25", + "topics": "container,info,debug" + }, + { + ".id": "*1F98", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:31:45", + "topics": "container,info,debug" + }, + { + ".id": "*1F99", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:32:05", + "topics": "container,info,debug" + }, + { + ".id": "*1F9A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:32:25", + "topics": "container,info,debug" + }, + { + ".id": "*1F9B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:33:36", + "topics": "container,info,debug" + }, + { + ".id": "*1F9C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:34:36", + "topics": "container,info,debug" + }, + { + ".id": "*1F9D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:34:56", + "topics": "container,info,debug" + }, + { + ".id": "*1F9E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:35:16", + "topics": "container,info,debug" + }, + { + ".id": "*1F9F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:35:36", + "topics": "container,info,debug" + }, + { + ".id": "*1FA0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:35:56", + "topics": "container,info,debug" + }, + { + ".id": "*1FA1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:37:07", + "topics": "container,info,debug" + }, + { + ".id": "*1FA2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:38:07", + "topics": "container,info,debug" + }, + { + ".id": "*1FA3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:38:27", + "topics": "container,info,debug" + }, + { + ".id": "*1FA4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:38:47", + "topics": "container,info,debug" + }, + { + ".id": "*1FA5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:39:07", + "topics": "container,info,debug" + }, + { + ".id": "*1FA6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:39:27", + "topics": "container,info,debug" + }, + { + ".id": "*1FA7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:40:39", + "topics": "container,info,debug" + }, + { + ".id": "*1FA8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:41:39", + "topics": "container,info,debug" + }, + { + ".id": "*1FA9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:41:59", + "topics": "container,info,debug" + }, + { + ".id": "*1FAA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:42:19", + "topics": "container,info,debug" + }, + { + ".id": "*1FAB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:42:39", + "topics": "container,info,debug" + }, + { + ".id": "*1FAC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:42:59", + "topics": "container,info,debug" + }, + { + ".id": "*1FAD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:44:10", + "topics": "container,info,debug" + }, + { + ".id": "*1FAE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:45:10", + "topics": "container,info,debug" + }, + { + ".id": "*1FAF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:45:30", + "topics": "container,info,debug" + }, + { + ".id": "*1FB0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:45:51", + "topics": "container,info,debug" + }, + { + ".id": "*1FB1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:46:11", + "topics": "container,info,debug" + }, + { + ".id": "*1FB2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:46:31", + "topics": "container,info,debug" + }, + { + ".id": "*1FB3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:47:42", + "topics": "container,info,debug" + }, + { + ".id": "*1FB4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:48:42", + "topics": "container,info,debug" + }, + { + ".id": "*1FB5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:49:02", + "topics": "container,info,debug" + }, + { + ".id": "*1FB6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:49:22", + "topics": "container,info,debug" + }, + { + ".id": "*1FB7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:49:42", + "topics": "container,info,debug" + }, + { + ".id": "*1FB8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:50:02", + "topics": "container,info,debug" + }, + { + ".id": "*1FB9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:51:14", + "topics": "container,info,debug" + }, + { + ".id": "*1FBA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:52:14", + "topics": "container,info,debug" + }, + { + ".id": "*1FBB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:52:34", + "topics": "container,info,debug" + }, + { + ".id": "*1FBC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:52:54", + "topics": "container,info,debug" + }, + { + ".id": "*1FBD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:53:14", + "topics": "container,info,debug" + }, + { + ".id": "*1FBE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:53:34", + "topics": "container,info,debug" + }, + { + ".id": "*1FBF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:54:44", + "topics": "container,info,debug" + }, + { + ".id": "*1FC0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:55:44", + "topics": "container,info,debug" + }, + { + ".id": "*1FC1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:56:04", + "topics": "container,info,debug" + }, + { + ".id": "*1FC2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:56:24", + "topics": "container,info,debug" + }, + { + ".id": "*1FC3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:56:44", + "topics": "container,info,debug" + }, + { + ".id": "*1FC4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:57:04", + "topics": "container,info,debug" + }, + { + ".id": "*1FC5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:58:16", + "topics": "container,info,debug" + }, + { + ".id": "*1FC6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:59:16", + "topics": "container,info,debug" + }, + { + ".id": "*1FC7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:59:36", + "topics": "container,info,debug" + }, + { + ".id": "*1FC8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 19:59:56", + "topics": "container,info,debug" + }, + { + ".id": "*1FC9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:00:16", + "topics": "container,info,debug" + }, + { + ".id": "*1FCA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:00:36", + "topics": "container,info,debug" + }, + { + ".id": "*1FCB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:01:47", + "topics": "container,info,debug" + }, + { + ".id": "*1FCC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:02:47", + "topics": "container,info,debug" + }, + { + ".id": "*1FCD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:03:07", + "topics": "container,info,debug" + }, + { + ".id": "*1FCE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:03:27", + "topics": "container,info,debug" + }, + { + ".id": "*1FCF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:03:47", + "topics": "container,info,debug" + }, + { + ".id": "*1FD0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:04:07", + "topics": "container,info,debug" + }, + { + ".id": "*1FD1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:05:19", + "topics": "container,info,debug" + }, + { + ".id": "*1FD2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:06:19", + "topics": "container,info,debug" + }, + { + ".id": "*1FD3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:06:39", + "topics": "container,info,debug" + }, + { + ".id": "*1FD4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:06:59", + "topics": "container,info,debug" + }, + { + ".id": "*1FD5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:07:19", + "topics": "container,info,debug" + }, + { + ".id": "*1FD6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:07:39", + "topics": "container,info,debug" + }, + { + ".id": "*1FD7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:08:50", + "topics": "container,info,debug" + }, + { + ".id": "*1FD8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:09:50", + "topics": "container,info,debug" + }, + { + ".id": "*1FD9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:10:10", + "topics": "container,info,debug" + }, + { + ".id": "*1FDA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:10:30", + "topics": "container,info,debug" + }, + { + ".id": "*1FDB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:10:50", + "topics": "container,info,debug" + }, + { + ".id": "*1FDC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:11:10", + "topics": "container,info,debug" + }, + { + ".id": "*1FDD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:12:22", + "topics": "container,info,debug" + }, + { + ".id": "*1FDE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:13:22", + "topics": "container,info,debug" + }, + { + ".id": "*1FDF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:13:42", + "topics": "container,info,debug" + }, + { + ".id": "*1FE0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:14:02", + "topics": "container,info,debug" + }, + { + ".id": "*1FE1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:14:22", + "topics": "container,info,debug" + }, + { + ".id": "*1FE2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:14:42", + "topics": "container,info,debug" + }, + { + ".id": "*1FE3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:15:53", + "topics": "container,info,debug" + }, + { + ".id": "*1FE4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:16:53", + "topics": "container,info,debug" + }, + { + ".id": "*1FE5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:17:13", + "topics": "container,info,debug" + }, + { + ".id": "*1FE6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:17:33", + "topics": "container,info,debug" + }, + { + ".id": "*1FE7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:17:53", + "topics": "container,info,debug" + }, + { + ".id": "*1FE8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:18:13", + "topics": "container,info,debug" + }, + { + ".id": "*1FE9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:19:24", + "topics": "container,info,debug" + }, + { + ".id": "*1FEA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:20:24", + "topics": "container,info,debug" + }, + { + ".id": "*1FEB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:20:44", + "topics": "container,info,debug" + }, + { + ".id": "*1FEC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:21:04", + "topics": "container,info,debug" + }, + { + ".id": "*1FED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:21:24", + "topics": "container,info,debug" + }, + { + ".id": "*1FEE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:21:44", + "topics": "container,info,debug" + }, + { + ".id": "*1FEF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:22:56", + "topics": "container,info,debug" + }, + { + ".id": "*1FF0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:23:56", + "topics": "container,info,debug" + }, + { + ".id": "*1FF1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:24:16", + "topics": "container,info,debug" + }, + { + ".id": "*1FF2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:24:36", + "topics": "container,info,debug" + }, + { + ".id": "*1FF3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:24:56", + "topics": "container,info,debug" + }, + { + ".id": "*1FF4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:25:16", + "topics": "container,info,debug" + }, + { + ".id": "*1FF5", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.239 for 34:94:54:8E:2C:05 sanggah", + "time": "2026-01-18 20:25:38", + "topics": "dhcp,info" + }, + { + ".id": "*1FF6", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.239 for 34:94:54:8E:2C:05 sanggah", + "time": "2026-01-18 20:25:38", + "topics": "dhcp,info" + }, + { + ".id": "*1FF7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:26:27", + "topics": "container,info,debug" + }, + { + ".id": "*1FF8", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 20:27:11", + "topics": "dhcp,info" + }, + { + ".id": "*1FF9", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-18 20:27:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1FFA", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-18 20:27:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1FFB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:27:27", + "topics": "container,info,debug" + }, + { + ".id": "*1FFC", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 20:27:32", + "topics": "dhcp,info" + }, + { + ".id": "*1FFD", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-18 20:27:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1FFE", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-18 20:27:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*1FFF", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged in", + "time": "2026-01-18 20:27:32", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2000", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-18 20:27:32", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2001", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:27:47", + "topics": "container,info,debug" + }, + { + ".id": "*2002", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:28:07", + "topics": "container,info,debug" + }, + { + ".id": "*2003", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:28:27", + "topics": "container,info,debug" + }, + { + ".id": "*2004", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:28:47", + "topics": "container,info,debug" + }, + { + ".id": "*2005", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:29:59", + "topics": "container,info,debug" + }, + { + ".id": "*2006", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:30:59", + "topics": "container,info,debug" + }, + { + ".id": "*2007", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:31:19", + "topics": "container,info,debug" + }, + { + ".id": "*2008", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:31:39", + "topics": "container,info,debug" + }, + { + ".id": "*2009", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:31:59", + "topics": "container,info,debug" + }, + { + ".id": "*200A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:32:19", + "topics": "container,info,debug" + }, + { + ".id": "*200B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:33:30", + "topics": "container,info,debug" + }, + { + ".id": "*200C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:34:30", + "topics": "container,info,debug" + }, + { + ".id": "*200D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:34:50", + "topics": "container,info,debug" + }, + { + ".id": "*200E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:35:10", + "topics": "container,info,debug" + }, + { + ".id": "*200F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:35:30", + "topics": "container,info,debug" + }, + { + ".id": "*2010", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:35:50", + "topics": "container,info,debug" + }, + { + ".id": "*2011", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:37:02", + "topics": "container,info,debug" + }, + { + ".id": "*2012", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:38:02", + "topics": "container,info,debug" + }, + { + ".id": "*2013", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:38:22", + "topics": "container,info,debug" + }, + { + ".id": "*2014", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:38:42", + "topics": "container,info,debug" + }, + { + ".id": "*2015", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:39:02", + "topics": "container,info,debug" + }, + { + ".id": "*2016", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:39:22", + "topics": "container,info,debug" + }, + { + ".id": "*2017", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:40:34", + "topics": "container,info,debug" + }, + { + ".id": "*2018", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:41:34", + "topics": "container,info,debug" + }, + { + ".id": "*2019", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:41:54", + "topics": "container,info,debug" + }, + { + ".id": "*201A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:42:14", + "topics": "container,info,debug" + }, + { + ".id": "*201B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:42:34", + "topics": "container,info,debug" + }, + { + ".id": "*201C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:42:54", + "topics": "container,info,debug" + }, + { + ".id": "*201D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:44:05", + "topics": "container,info,debug" + }, + { + ".id": "*201E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:45:05", + "topics": "container,info,debug" + }, + { + ".id": "*201F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:45:25", + "topics": "container,info,debug" + }, + { + ".id": "*2020", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:45:45", + "topics": "container,info,debug" + }, + { + ".id": "*2021", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:46:05", + "topics": "container,info,debug" + }, + { + ".id": "*2022", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:46:25", + "topics": "container,info,debug" + }, + { + ".id": "*2023", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:47:37", + "topics": "container,info,debug" + }, + { + ".id": "*2024", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:48:37", + "topics": "container,info,debug" + }, + { + ".id": "*2025", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:48:57", + "topics": "container,info,debug" + }, + { + ".id": "*2026", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.248 for 68:C6:3A:CA:77:1C bale-delod", + "time": "2026-01-18 20:49:01", + "topics": "dhcp,info" + }, + { + ".id": "*2027", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.248 for 68:C6:3A:CA:77:1C bale-delod", + "time": "2026-01-18 20:49:01", + "topics": "dhcp,info" + }, + { + ".id": "*2028", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:49:17", + "topics": "container,info,debug" + }, + { + ".id": "*2029", + "extra-info": "", + "message": "event down [ homeassistant ]", + "time": "2026-01-18 20:49:23", + "topics": "netwatch,info" + }, + { + ".id": "*202A", + "extra-info": "", + "message": "event down [ type: simple, host: 192.168.7.7 ]", + "time": "2026-01-18 20:49:23", + "topics": "netwatch,info" + }, + { + ".id": "*202B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:49:37", + "topics": "container,info,debug" + }, + { + ".id": "*202C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:49:57", + "topics": "container,info,debug" + }, + { + ".id": "*202D", + "extra-info": "", + "message": "event up [ homeassistant ]", + "time": "2026-01-18 20:50:20", + "topics": "netwatch,info" + }, + { + ".id": "*202E", + "extra-info": "", + "message": "event up [ type: simple, host: 192.168.7.7 ]", + "time": "2026-01-18 20:50:20", + "topics": "netwatch,info" + }, + { + ".id": "*202F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:51:09", + "topics": "container,info,debug" + }, + { + ".id": "*2030", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:52:09", + "topics": "container,info,debug" + }, + { + ".id": "*2031", + "extra-info": "", + "message": "event down [ homeassistant ]", + "time": "2026-01-18 20:52:23", + "topics": "netwatch,info" + }, + { + ".id": "*2032", + "extra-info": "", + "message": "event down [ type: simple, host: 192.168.7.7 ]", + "time": "2026-01-18 20:52:23", + "topics": "netwatch,info" + }, + { + ".id": "*2033", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:52:29", + "topics": "container,info,debug" + }, + { + ".id": "*2034", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:52:49", + "topics": "container,info,debug" + }, + { + ".id": "*2035", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:53:09", + "topics": "container,info,debug" + }, + { + ".id": "*2036", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:53:29", + "topics": "container,info,debug" + }, + { + ".id": "*2037", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:54:40", + "topics": "container,info,debug" + }, + { + ".id": "*2038", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:55:40", + "topics": "container,info,debug" + }, + { + ".id": "*2039", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:56:00", + "topics": "container,info,debug" + }, + { + ".id": "*203A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:56:20", + "topics": "container,info,debug" + }, + { + ".id": "*203B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:56:40", + "topics": "container,info,debug" + }, + { + ".id": "*203C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:57:00", + "topics": "container,info,debug" + }, + { + ".id": "*203D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:58:12", + "topics": "container,info,debug" + }, + { + ".id": "*203E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:59:12", + "topics": "container,info,debug" + }, + { + ".id": "*203F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:59:32", + "topics": "container,info,debug" + }, + { + ".id": "*2040", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 20:59:52", + "topics": "container,info,debug" + }, + { + ".id": "*2041", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:00:12", + "topics": "container,info,debug" + }, + { + ".id": "*2042", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:00:32", + "topics": "container,info,debug" + }, + { + ".id": "*2043", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:01:43", + "topics": "container,info,debug" + }, + { + ".id": "*2044", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:02:43", + "topics": "container,info,debug" + }, + { + ".id": "*2045", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:03:03", + "topics": "container,info,debug" + }, + { + ".id": "*2046", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:03:23", + "topics": "container,info,debug" + }, + { + ".id": "*2047", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.136 for BC:24:11:E1:85:F2 debian", + "time": "2026-01-18 21:03:39", + "topics": "dhcp,info" + }, + { + ".id": "*2048", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.136 for BC:24:11:E1:85:F2 debian", + "time": "2026-01-18 21:03:39", + "topics": "dhcp,info" + }, + { + ".id": "*2049", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.200 for BC:24:11:FD:B5:FE homeassistant", + "time": "2026-01-18 21:03:40", + "topics": "dhcp,info" + }, + { + ".id": "*204A", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.200 for BC:24:11:FD:B5:FE homeassistant", + "time": "2026-01-18 21:03:40", + "topics": "dhcp,info" + }, + { + ".id": "*204B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:03:43", + "topics": "container,info,debug" + }, + { + ".id": "*204C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:04:03", + "topics": "container,info,debug" + }, + { + ".id": "*204D", + "extra-info": "", + "message": "event up [ homeassistant ]", + "time": "2026-01-18 21:04:20", + "topics": "netwatch,info" + }, + { + ".id": "*204E", + "extra-info": "", + "message": "event up [ type: simple, host: 192.168.7.7 ]", + "time": "2026-01-18 21:04:20", + "topics": "netwatch,info" + }, + { + ".id": "*204F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:05:15", + "topics": "container,info,debug" + }, + { + ".id": "*2050", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:06:15", + "topics": "container,info,debug" + }, + { + ".id": "*2051", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.99 for BC:24:11:F7:7C:71 debian12", + "time": "2026-01-18 21:06:33", + "topics": "dhcp,info" + }, + { + ".id": "*2052", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.99 for BC:24:11:F7:7C:71 debian12", + "time": "2026-01-18 21:06:33", + "topics": "dhcp,info" + }, + { + ".id": "*2053", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:06:35", + "topics": "container,info,debug" + }, + { + ".id": "*2054", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:06:55", + "topics": "container,info,debug" + }, + { + ".id": "*2055", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:07:15", + "topics": "container,info,debug" + }, + { + ".id": "*2056", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:07:35", + "topics": "container,info,debug" + }, + { + ".id": "*2057", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:08:47", + "topics": "container,info,debug" + }, + { + ".id": "*2058", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:09:47", + "topics": "container,info,debug" + }, + { + ".id": "*2059", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:10:07", + "topics": "container,info,debug" + }, + { + ".id": "*205A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:10:27", + "topics": "container,info,debug" + }, + { + ".id": "*205B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:10:47", + "topics": "container,info,debug" + }, + { + ".id": "*205C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:11:07", + "topics": "container,info,debug" + }, + { + ".id": "*205D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:12:18", + "topics": "container,info,debug" + }, + { + ".id": "*205E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:13:18", + "topics": "container,info,debug" + }, + { + ".id": "*205F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:13:38", + "topics": "container,info,debug" + }, + { + ".id": "*2060", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:13:58", + "topics": "container,info,debug" + }, + { + ".id": "*2061", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:14:18", + "topics": "container,info,debug" + }, + { + ".id": "*2062", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:14:38", + "topics": "container,info,debug" + }, + { + ".id": "*2063", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:15:50", + "topics": "container,info,debug" + }, + { + ".id": "*2064", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:16:50", + "topics": "container,info,debug" + }, + { + ".id": "*2065", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:17:10", + "topics": "container,info,debug" + }, + { + ".id": "*2066", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:17:30", + "topics": "container,info,debug" + }, + { + ".id": "*2067", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:17:50", + "topics": "container,info,debug" + }, + { + ".id": "*2068", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:18:10", + "topics": "container,info,debug" + }, + { + ".id": "*2069", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:19:21", + "topics": "container,info,debug" + }, + { + ".id": "*206A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:20:21", + "topics": "container,info,debug" + }, + { + ".id": "*206B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:20:41", + "topics": "container,info,debug" + }, + { + ".id": "*206C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:21:01", + "topics": "container,info,debug" + }, + { + ".id": "*206D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:21:21", + "topics": "container,info,debug" + }, + { + ".id": "*206E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:21:41", + "topics": "container,info,debug" + }, + { + ".id": "*206F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:22:53", + "topics": "container,info,debug" + }, + { + ".id": "*2070", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:23:53", + "topics": "container,info,debug" + }, + { + ".id": "*2071", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:24:13", + "topics": "container,info,debug" + }, + { + ".id": "*2072", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:24:33", + "topics": "container,info,debug" + }, + { + ".id": "*2073", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:24:53", + "topics": "container,info,debug" + }, + { + ".id": "*2074", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:25:13", + "topics": "container,info,debug" + }, + { + ".id": "*2075", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:26:25", + "topics": "container,info,debug" + }, + { + ".id": "*2076", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:27:25", + "topics": "container,info,debug" + }, + { + ".id": "*2077", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:27:45", + "topics": "container,info,debug" + }, + { + ".id": "*2078", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:28:05", + "topics": "container,info,debug" + }, + { + ".id": "*2079", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:28:25", + "topics": "container,info,debug" + }, + { + ".id": "*207A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:28:45", + "topics": "container,info,debug" + }, + { + ".id": "*207B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:29:57", + "topics": "container,info,debug" + }, + { + ".id": "*207C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:30:57", + "topics": "container,info,debug" + }, + { + ".id": "*207D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:31:17", + "topics": "container,info,debug" + }, + { + ".id": "*207E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:31:37", + "topics": "container,info,debug" + }, + { + ".id": "*207F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:31:57", + "topics": "container,info,debug" + }, + { + ".id": "*2080", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:32:17", + "topics": "container,info,debug" + }, + { + ".id": "*2081", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:33:29", + "topics": "container,info,debug" + }, + { + ".id": "*2082", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:34:29", + "topics": "container,info,debug" + }, + { + ".id": "*2083", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:34:49", + "topics": "container,info,debug" + }, + { + ".id": "*2084", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:35:09", + "topics": "container,info,debug" + }, + { + ".id": "*2085", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:35:29", + "topics": "container,info,debug" + }, + { + ".id": "*2086", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:35:49", + "topics": "container,info,debug" + }, + { + ".id": "*2087", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:37:00", + "topics": "container,info,debug" + }, + { + ".id": "*2088", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:38:00", + "topics": "container,info,debug" + }, + { + ".id": "*2089", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:38:20", + "topics": "container,info,debug" + }, + { + ".id": "*208A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:38:40", + "topics": "container,info,debug" + }, + { + ".id": "*208B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:39:00", + "topics": "container,info,debug" + }, + { + ".id": "*208C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:39:20", + "topics": "container,info,debug" + }, + { + ".id": "*208D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:40:32", + "topics": "container,info,debug" + }, + { + ".id": "*208E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:41:32", + "topics": "container,info,debug" + }, + { + ".id": "*208F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:41:52", + "topics": "container,info,debug" + }, + { + ".id": "*2090", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:42:12", + "topics": "container,info,debug" + }, + { + ".id": "*2091", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:42:32", + "topics": "container,info,debug" + }, + { + ".id": "*2092", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:42:52", + "topics": "container,info,debug" + }, + { + ".id": "*2093", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:44:03", + "topics": "container,info,debug" + }, + { + ".id": "*2094", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:45:03", + "topics": "container,info,debug" + }, + { + ".id": "*2095", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:45:23", + "topics": "container,info,debug" + }, + { + ".id": "*2096", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:45:43", + "topics": "container,info,debug" + }, + { + ".id": "*2097", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:46:03", + "topics": "container,info,debug" + }, + { + ".id": "*2098", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:46:23", + "topics": "container,info,debug" + }, + { + ".id": "*2099", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:47:35", + "topics": "container,info,debug" + }, + { + ".id": "*209A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:48:35", + "topics": "container,info,debug" + }, + { + ".id": "*209B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:48:55", + "topics": "container,info,debug" + }, + { + ".id": "*209C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:49:15", + "topics": "container,info,debug" + }, + { + ".id": "*209D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:49:35", + "topics": "container,info,debug" + }, + { + ".id": "*209E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:49:55", + "topics": "container,info,debug" + }, + { + ".id": "*209F", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.110 for 9E:E1:69:4E:42:A9 OPPO-A54", + "time": "2026-01-18 21:50:49", + "topics": "dhcp,info" + }, + { + ".id": "*20A0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:51:06", + "topics": "container,info,debug" + }, + { + ".id": "*20A1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:52:06", + "topics": "container,info,debug" + }, + { + ".id": "*20A2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:52:26", + "topics": "container,info,debug" + }, + { + ".id": "*20A3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:52:46", + "topics": "container,info,debug" + }, + { + ".id": "*20A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:53:06", + "topics": "container,info,debug" + }, + { + ".id": "*20A5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:53:26", + "topics": "container,info,debug" + }, + { + ".id": "*20A6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:54:38", + "topics": "container,info,debug" + }, + { + ".id": "*20A7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:55:38", + "topics": "container,info,debug" + }, + { + ".id": "*20A8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:55:58", + "topics": "container,info,debug" + }, + { + ".id": "*20A9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:56:18", + "topics": "container,info,debug" + }, + { + ".id": "*20AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:56:38", + "topics": "container,info,debug" + }, + { + ".id": "*20AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:56:58", + "topics": "container,info,debug" + }, + { + ".id": "*20AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:58:10", + "topics": "container,info,debug" + }, + { + ".id": "*20AD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:59:10", + "topics": "container,info,debug" + }, + { + ".id": "*20AE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:59:30", + "topics": "container,info,debug" + }, + { + ".id": "*20AF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 21:59:50", + "topics": "container,info,debug" + }, + { + ".id": "*20B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:00:10", + "topics": "container,info,debug" + }, + { + ".id": "*20B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:00:30", + "topics": "container,info,debug" + }, + { + ".id": "*20B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:01:42", + "topics": "container,info,debug" + }, + { + ".id": "*20B3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:02:42", + "topics": "container,info,debug" + }, + { + ".id": "*20B4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:03:02", + "topics": "container,info,debug" + }, + { + ".id": "*20B5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:03:22", + "topics": "container,info,debug" + }, + { + ".id": "*20B6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:03:42", + "topics": "container,info,debug" + }, + { + ".id": "*20B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:04:02", + "topics": "container,info,debug" + }, + { + ".id": "*20B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:05:13", + "topics": "container,info,debug" + }, + { + ".id": "*20B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:06:13", + "topics": "container,info,debug" + }, + { + ".id": "*20BA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:06:33", + "topics": "container,info,debug" + }, + { + ".id": "*20BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:06:53", + "topics": "container,info,debug" + }, + { + ".id": "*20BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:07:13", + "topics": "container,info,debug" + }, + { + ".id": "*20BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:07:33", + "topics": "container,info,debug" + }, + { + ".id": "*20BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:08:45", + "topics": "container,info,debug" + }, + { + ".id": "*20BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:09:45", + "topics": "container,info,debug" + }, + { + ".id": "*20C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:10:05", + "topics": "container,info,debug" + }, + { + ".id": "*20C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:10:25", + "topics": "container,info,debug" + }, + { + ".id": "*20C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:10:45", + "topics": "container,info,debug" + }, + { + ".id": "*20C3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:11:05", + "topics": "container,info,debug" + }, + { + ".id": "*20C4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:12:16", + "topics": "container,info,debug" + }, + { + ".id": "*20C5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:13:16", + "topics": "container,info,debug" + }, + { + ".id": "*20C6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:13:36", + "topics": "container,info,debug" + }, + { + ".id": "*20C7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:13:56", + "topics": "container,info,debug" + }, + { + ".id": "*20C8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:14:16", + "topics": "container,info,debug" + }, + { + ".id": "*20C9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:14:36", + "topics": "container,info,debug" + }, + { + ".id": "*20CA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:15:48", + "topics": "container,info,debug" + }, + { + ".id": "*20CB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:16:48", + "topics": "container,info,debug" + }, + { + ".id": "*20CC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:17:08", + "topics": "container,info,debug" + }, + { + ".id": "*20CD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:17:28", + "topics": "container,info,debug" + }, + { + ".id": "*20CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:17:48", + "topics": "container,info,debug" + }, + { + ".id": "*20CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:18:08", + "topics": "container,info,debug" + }, + { + ".id": "*20D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:19:19", + "topics": "container,info,debug" + }, + { + ".id": "*20D1", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 22:19:45", + "topics": "dhcp,info" + }, + { + ".id": "*20D2", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-18 22:19:50", + "topics": "hotspot,info,debug" + }, + { + ".id": "*20D3", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-18 22:19:50", + "topics": "hotspot,info,debug" + }, + { + ".id": "*20D4", + "extra-info": "", + "message": "dhcp-hotspot offering lease 10.5.50.126 for DE:2E:8D:A1:3A:B1 without success", + "time": "2026-01-18 22:20:00", + "topics": "dhcp,warning" + }, + { + ".id": "*20D5", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 22:20:07", + "topics": "dhcp,info" + }, + { + ".id": "*20D6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:20:19", + "topics": "container,info,debug" + }, + { + ".id": "*20D7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:20:39", + "topics": "container,info,debug" + }, + { + ".id": "*20D8", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.110 for 9E:E1:69:4E:42:A9 OPPO-A54", + "time": "2026-01-18 22:20:49", + "topics": "dhcp,info" + }, + { + ".id": "*20D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:20:59", + "topics": "container,info,debug" + }, + { + ".id": "*20DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:21:19", + "topics": "container,info,debug" + }, + { + ".id": "*20DB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:21:39", + "topics": "container,info,debug" + }, + { + ".id": "*20DC", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-18 22:21:46", + "topics": "hotspot,info,debug" + }, + { + ".id": "*20DD", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-18 22:21:46", + "topics": "hotspot,info,debug" + }, + { + ".id": "*20DE", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged in", + "time": "2026-01-18 22:21:46", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*20DF", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-18 22:21:46", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*20E0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:22:51", + "topics": "container,info,debug" + }, + { + ".id": "*20E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:23:51", + "topics": "container,info,debug" + }, + { + ".id": "*20E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:24:11", + "topics": "container,info,debug" + }, + { + ".id": "*20E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:24:31", + "topics": "container,info,debug" + }, + { + ".id": "*20E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:24:51", + "topics": "container,info,debug" + }, + { + ".id": "*20E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:25:11", + "topics": "container,info,debug" + }, + { + ".id": "*20E6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:26:22", + "topics": "container,info,debug" + }, + { + ".id": "*20E7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:27:22", + "topics": "container,info,debug" + }, + { + ".id": "*20E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:27:42", + "topics": "container,info,debug" + }, + { + ".id": "*20E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:28:02", + "topics": "container,info,debug" + }, + { + ".id": "*20EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:28:22", + "topics": "container,info,debug" + }, + { + ".id": "*20EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:28:42", + "topics": "container,info,debug" + }, + { + ".id": "*20EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:29:55", + "topics": "container,info,debug" + }, + { + ".id": "*20ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:30:55", + "topics": "container,info,debug" + }, + { + ".id": "*20EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:31:15", + "topics": "container,info,debug" + }, + { + ".id": "*20EF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:31:35", + "topics": "container,info,debug" + }, + { + ".id": "*20F0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:31:55", + "topics": "container,info,debug" + }, + { + ".id": "*20F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:32:15", + "topics": "container,info,debug" + }, + { + ".id": "*20F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:33:26", + "topics": "container,info,debug" + }, + { + ".id": "*20F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:34:27", + "topics": "container,info,debug" + }, + { + ".id": "*20F4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:34:47", + "topics": "container,info,debug" + }, + { + ".id": "*20F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:35:07", + "topics": "container,info,debug" + }, + { + ".id": "*20F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:35:27", + "topics": "container,info,debug" + }, + { + ".id": "*20F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:35:47", + "topics": "container,info,debug" + }, + { + ".id": "*20F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:36:58", + "topics": "container,info,debug" + }, + { + ".id": "*20F9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:37:58", + "topics": "container,info,debug" + }, + { + ".id": "*20FA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:38:18", + "topics": "container,info,debug" + }, + { + ".id": "*20FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:38:38", + "topics": "container,info,debug" + }, + { + ".id": "*20FC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:38:58", + "topics": "container,info,debug" + }, + { + ".id": "*20FD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:39:18", + "topics": "container,info,debug" + }, + { + ".id": "*20FE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:40:30", + "topics": "container,info,debug" + }, + { + ".id": "*20FF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:41:30", + "topics": "container,info,debug" + }, + { + ".id": "*2100", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:41:50", + "topics": "container,info,debug" + }, + { + ".id": "*2101", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:42:10", + "topics": "container,info,debug" + }, + { + ".id": "*2102", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:42:30", + "topics": "container,info,debug" + }, + { + ".id": "*2103", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:42:50", + "topics": "container,info,debug" + }, + { + ".id": "*2104", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:44:02", + "topics": "container,info,debug" + }, + { + ".id": "*2105", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:45:02", + "topics": "container,info,debug" + }, + { + ".id": "*2106", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:45:22", + "topics": "container,info,debug" + }, + { + ".id": "*2107", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:45:42", + "topics": "container,info,debug" + }, + { + ".id": "*2108", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:46:02", + "topics": "container,info,debug" + }, + { + ".id": "*2109", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:46:22", + "topics": "container,info,debug" + }, + { + ".id": "*210A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:46:34", + "topics": "container,info,debug" + }, + { + ".id": "*210B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:47:34", + "topics": "container,info,debug" + }, + { + ".id": "*210C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:47:54", + "topics": "container,info,debug" + }, + { + ".id": "*210D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:48:14", + "topics": "container,info,debug" + }, + { + ".id": "*210E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:48:34", + "topics": "container,info,debug" + }, + { + ".id": "*210F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:48:54", + "topics": "container,info,debug" + }, + { + ".id": "*2110", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:50:08", + "topics": "container,info,debug" + }, + { + ".id": "*2111", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:51:08", + "topics": "container,info,debug" + }, + { + ".id": "*2112", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:51:28", + "topics": "container,info,debug" + }, + { + ".id": "*2113", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:51:48", + "topics": "container,info,debug" + }, + { + ".id": "*2114", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:52:08", + "topics": "container,info,debug" + }, + { + ".id": "*2115", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:52:28", + "topics": "container,info,debug" + }, + { + ".id": "*2116", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:53:42", + "topics": "container,info,debug" + }, + { + ".id": "*2117", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:54:39", + "topics": "container,info,debug" + }, + { + ".id": "*2118", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:55:39", + "topics": "container,info,debug" + }, + { + ".id": "*2119", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:55:59", + "topics": "container,info,debug" + }, + { + ".id": "*211A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:56:19", + "topics": "container,info,debug" + }, + { + ".id": "*211B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:56:39", + "topics": "container,info,debug" + }, + { + ".id": "*211C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:56:59", + "topics": "container,info,debug" + }, + { + ".id": "*211D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:58:12", + "topics": "container,info,debug" + }, + { + ".id": "*211E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:59:12", + "topics": "container,info,debug" + }, + { + ".id": "*211F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:59:32", + "topics": "container,info,debug" + }, + { + ".id": "*2120", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 22:59:52", + "topics": "container,info,debug" + }, + { + ".id": "*2121", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:00:12", + "topics": "container,info,debug" + }, + { + ".id": "*2122", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:00:32", + "topics": "container,info,debug" + }, + { + ".id": "*2123", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:01:44", + "topics": "container,info,debug" + }, + { + ".id": "*2124", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:02:44", + "topics": "container,info,debug" + }, + { + ".id": "*2125", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:03:04", + "topics": "container,info,debug" + }, + { + ".id": "*2126", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:03:12", + "topics": "container,info,debug" + }, + { + ".id": "*2127", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:04:12", + "topics": "container,info,debug" + }, + { + ".id": "*2128", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:04:33", + "topics": "container,info,debug" + }, + { + ".id": "*2129", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:04:53", + "topics": "container,info,debug" + }, + { + ".id": "*212A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:05:13", + "topics": "container,info,debug" + }, + { + ".id": "*212B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:05:33", + "topics": "container,info,debug" + }, + { + ".id": "*212C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:06:44", + "topics": "container,info,debug" + }, + { + ".id": "*212D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:07:44", + "topics": "container,info,debug" + }, + { + ".id": "*212E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:08:04", + "topics": "container,info,debug" + }, + { + ".id": "*212F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:08:24", + "topics": "container,info,debug" + }, + { + ".id": "*2130", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:08:44", + "topics": "container,info,debug" + }, + { + ".id": "*2131", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:09:04", + "topics": "container,info,debug" + }, + { + ".id": "*2132", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:10:16", + "topics": "container,info,debug" + }, + { + ".id": "*2133", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:11:16", + "topics": "container,info,debug" + }, + { + ".id": "*2134", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:11:36", + "topics": "container,info,debug" + }, + { + ".id": "*2135", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:11:56", + "topics": "container,info,debug" + }, + { + ".id": "*2136", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:12:16", + "topics": "container,info,debug" + }, + { + ".id": "*2137", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:12:36", + "topics": "container,info,debug" + }, + { + ".id": "*2138", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:13:47", + "topics": "container,info,debug" + }, + { + ".id": "*2139", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:14:47", + "topics": "container,info,debug" + }, + { + ".id": "*213A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:15:07", + "topics": "container,info,debug" + }, + { + ".id": "*213B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:15:27", + "topics": "container,info,debug" + }, + { + ".id": "*213C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:15:47", + "topics": "container,info,debug" + }, + { + ".id": "*213D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:16:07", + "topics": "container,info,debug" + }, + { + ".id": "*213E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:17:19", + "topics": "container,info,debug" + }, + { + ".id": "*213F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:18:19", + "topics": "container,info,debug" + }, + { + ".id": "*2140", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:18:39", + "topics": "container,info,debug" + }, + { + ".id": "*2141", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:18:59", + "topics": "container,info,debug" + }, + { + ".id": "*2142", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:19:19", + "topics": "container,info,debug" + }, + { + ".id": "*2143", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:19:39", + "topics": "container,info,debug" + }, + { + ".id": "*2144", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:20:50", + "topics": "container,info,debug" + }, + { + ".id": "*2145", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:21:50", + "topics": "container,info,debug" + }, + { + ".id": "*2146", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:22:10", + "topics": "container,info,debug" + }, + { + ".id": "*2147", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:22:30", + "topics": "container,info,debug" + }, + { + ".id": "*2148", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:22:50", + "topics": "container,info,debug" + }, + { + ".id": "*2149", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:23:10", + "topics": "container,info,debug" + }, + { + ".id": "*214A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:24:22", + "topics": "container,info,debug" + }, + { + ".id": "*214B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:25:22", + "topics": "container,info,debug" + }, + { + ".id": "*214C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:25:42", + "topics": "container,info,debug" + }, + { + ".id": "*214D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:26:02", + "topics": "container,info,debug" + }, + { + ".id": "*214E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:26:22", + "topics": "container,info,debug" + }, + { + ".id": "*214F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:26:42", + "topics": "container,info,debug" + }, + { + ".id": "*2150", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:27:53", + "topics": "container,info,debug" + }, + { + ".id": "*2151", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:28:53", + "topics": "container,info,debug" + }, + { + ".id": "*2152", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:29:13", + "topics": "container,info,debug" + }, + { + ".id": "*2153", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:29:33", + "topics": "container,info,debug" + }, + { + ".id": "*2154", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:29:53", + "topics": "container,info,debug" + }, + { + ".id": "*2155", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:30:13", + "topics": "container,info,debug" + }, + { + ".id": "*2156", + "extra-info": "", + "message": "event down [ type: http_get, host: 10.5.50.4 ]", + "time": "2026-01-18 23:31:22", + "topics": "netwatch,info" + }, + { + ".id": "*2157", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:31:25", + "topics": "container,info,debug" + }, + { + ".id": "*2158", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-18 23:31:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2159", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-18 23:31:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*215A", + "extra-info": "", + "message": "event up [ type: http_get, host: 10.5.50.4 ]", + "time": "2026-01-18 23:32:21", + "topics": "netwatch,info" + }, + { + ".id": "*215B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:32:25", + "topics": "container,info,debug" + }, + { + ".id": "*215C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:32:45", + "topics": "container,info,debug" + }, + { + ".id": "*215D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:33:05", + "topics": "container,info,debug" + }, + { + ".id": "*215E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:33:25", + "topics": "container,info,debug" + }, + { + ".id": "*215F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:33:45", + "topics": "container,info,debug" + }, + { + ".id": "*2160", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:34:57", + "topics": "container,info,debug" + }, + { + ".id": "*2161", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:35:57", + "topics": "container,info,debug" + }, + { + ".id": "*2162", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.248 for 68:C6:3A:CA:77:1C bale-delod", + "time": "2026-01-18 23:36:08", + "topics": "dhcp,info" + }, + { + ".id": "*2163", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.248 for 68:C6:3A:CA:77:1C bale-delod", + "time": "2026-01-18 23:36:08", + "topics": "dhcp,info" + }, + { + ".id": "*2164", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:36:17", + "topics": "container,info,debug" + }, + { + ".id": "*2165", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:36:37", + "topics": "container,info,debug" + }, + { + ".id": "*2166", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:36:57", + "topics": "container,info,debug" + }, + { + ".id": "*2167", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:37:17", + "topics": "container,info,debug" + }, + { + ".id": "*2168", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:38:28", + "topics": "container,info,debug" + }, + { + ".id": "*2169", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:39:28", + "topics": "container,info,debug" + }, + { + ".id": "*216A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:39:48", + "topics": "container,info,debug" + }, + { + ".id": "*216B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:40:08", + "topics": "container,info,debug" + }, + { + ".id": "*216C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:40:28", + "topics": "container,info,debug" + }, + { + ".id": "*216D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:40:48", + "topics": "container,info,debug" + }, + { + ".id": "*216E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:41:59", + "topics": "container,info,debug" + }, + { + ".id": "*216F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:42:59", + "topics": "container,info,debug" + }, + { + ".id": "*2170", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:43:19", + "topics": "container,info,debug" + }, + { + ".id": "*2171", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.123 for B4:E6:2D:45:00:CF saklar-amplifier", + "time": "2026-01-18 23:43:32", + "topics": "dhcp,info" + }, + { + ".id": "*2172", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.123 for B4:E6:2D:45:00:CF saklar-amplifier", + "time": "2026-01-18 23:43:32", + "topics": "dhcp,info" + }, + { + ".id": "*2173", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:43:39", + "topics": "container,info,debug" + }, + { + ".id": "*2174", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:43:59", + "topics": "container,info,debug" + }, + { + ".id": "*2175", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:44:19", + "topics": "container,info,debug" + }, + { + ".id": "*2176", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:45:32", + "topics": "container,info,debug" + }, + { + ".id": "*2177", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:46:32", + "topics": "container,info,debug" + }, + { + ".id": "*2178", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:46:52", + "topics": "container,info,debug" + }, + { + ".id": "*2179", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:47:12", + "topics": "container,info,debug" + }, + { + ".id": "*217A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:47:32", + "topics": "container,info,debug" + }, + { + ".id": "*217B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:47:52", + "topics": "container,info,debug" + }, + { + ".id": "*217C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:49:03", + "topics": "container,info,debug" + }, + { + ".id": "*217D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:50:03", + "topics": "container,info,debug" + }, + { + ".id": "*217E", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-18 23:50:10", + "topics": "dhcp,info" + }, + { + ".id": "*217F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:50:23", + "topics": "container,info,debug" + }, + { + ".id": "*2180", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:50:43", + "topics": "container,info,debug" + }, + { + ".id": "*2181", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:51:03", + "topics": "container,info,debug" + }, + { + ".id": "*2182", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:51:23", + "topics": "container,info,debug" + }, + { + ".id": "*2183", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:52:35", + "topics": "container,info,debug" + }, + { + ".id": "*2184", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:53:35", + "topics": "container,info,debug" + }, + { + ".id": "*2185", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:53:55", + "topics": "container,info,debug" + }, + { + ".id": "*2186", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:54:15", + "topics": "container,info,debug" + }, + { + ".id": "*2187", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:54:35", + "topics": "container,info,debug" + }, + { + ".id": "*2188", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:54:55", + "topics": "container,info,debug" + }, + { + ".id": "*2189", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:56:06", + "topics": "container,info,debug" + }, + { + ".id": "*218A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:57:06", + "topics": "container,info,debug" + }, + { + ".id": "*218B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:57:26", + "topics": "container,info,debug" + }, + { + ".id": "*218C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:57:46", + "topics": "container,info,debug" + }, + { + ".id": "*218D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:58:06", + "topics": "container,info,debug" + }, + { + ".id": "*218E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:58:26", + "topics": "container,info,debug" + }, + { + ".id": "*218F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-18 23:59:38", + "topics": "container,info,debug" + }, + { + ".id": "*2190", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:00:38", + "topics": "container,info,debug" + }, + { + ".id": "*2191", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:00:58", + "topics": "container,info,debug" + }, + { + ".id": "*2192", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:01:18", + "topics": "container,info,debug" + }, + { + ".id": "*2193", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:01:38", + "topics": "container,info,debug" + }, + { + ".id": "*2194", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:01:58", + "topics": "container,info,debug" + }, + { + ".id": "*2195", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:03:09", + "topics": "container,info,debug" + }, + { + ".id": "*2196", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:04:09", + "topics": "container,info,debug" + }, + { + ".id": "*2197", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:04:29", + "topics": "container,info,debug" + }, + { + ".id": "*2198", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:04:49", + "topics": "container,info,debug" + }, + { + ".id": "*2199", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:05:09", + "topics": "container,info,debug" + }, + { + ".id": "*219A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:05:29", + "topics": "container,info,debug" + }, + { + ".id": "*219B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:06:41", + "topics": "container,info,debug" + }, + { + ".id": "*219C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:07:41", + "topics": "container,info,debug" + }, + { + ".id": "*219D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:08:01", + "topics": "container,info,debug" + }, + { + ".id": "*219E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:08:21", + "topics": "container,info,debug" + }, + { + ".id": "*219F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:08:41", + "topics": "container,info,debug" + }, + { + ".id": "*21A0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:09:01", + "topics": "container,info,debug" + }, + { + ".id": "*21A1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:10:12", + "topics": "container,info,debug" + }, + { + ".id": "*21A2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:11:12", + "topics": "container,info,debug" + }, + { + ".id": "*21A3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:11:32", + "topics": "container,info,debug" + }, + { + ".id": "*21A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:11:52", + "topics": "container,info,debug" + }, + { + ".id": "*21A5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:12:12", + "topics": "container,info,debug" + }, + { + ".id": "*21A6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:12:32", + "topics": "container,info,debug" + }, + { + ".id": "*21A7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:13:44", + "topics": "container,info,debug" + }, + { + ".id": "*21A8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:14:44", + "topics": "container,info,debug" + }, + { + ".id": "*21A9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:15:04", + "topics": "container,info,debug" + }, + { + ".id": "*21AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:15:24", + "topics": "container,info,debug" + }, + { + ".id": "*21AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:15:44", + "topics": "container,info,debug" + }, + { + ".id": "*21AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:16:04", + "topics": "container,info,debug" + }, + { + ".id": "*21AD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:17:15", + "topics": "container,info,debug" + }, + { + ".id": "*21AE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:18:15", + "topics": "container,info,debug" + }, + { + ".id": "*21AF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:18:35", + "topics": "container,info,debug" + }, + { + ".id": "*21B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:18:55", + "topics": "container,info,debug" + }, + { + ".id": "*21B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:19:15", + "topics": "container,info,debug" + }, + { + ".id": "*21B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:19:35", + "topics": "container,info,debug" + }, + { + ".id": "*21B3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:20:47", + "topics": "container,info,debug" + }, + { + ".id": "*21B4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:21:47", + "topics": "container,info,debug" + }, + { + ".id": "*21B5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:22:07", + "topics": "container,info,debug" + }, + { + ".id": "*21B6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:22:27", + "topics": "container,info,debug" + }, + { + ".id": "*21B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:22:47", + "topics": "container,info,debug" + }, + { + ".id": "*21B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:23:07", + "topics": "container,info,debug" + }, + { + ".id": "*21B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:24:18", + "topics": "container,info,debug" + }, + { + ".id": "*21BA", + "extra-info": "", + "message": "possible SYN flooding on tcp port 64874", + "time": "2026-01-19 00:24:31", + "topics": "system,warning" + }, + { + ".id": "*21BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:25:18", + "topics": "container,info,debug" + }, + { + ".id": "*21BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:25:38", + "topics": "container,info,debug" + }, + { + ".id": "*21BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:25:58", + "topics": "container,info,debug" + }, + { + ".id": "*21BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:26:18", + "topics": "container,info,debug" + }, + { + ".id": "*21BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:26:38", + "topics": "container,info,debug" + }, + { + ".id": "*21C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:27:50", + "topics": "container,info,debug" + }, + { + ".id": "*21C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:28:50", + "topics": "container,info,debug" + }, + { + ".id": "*21C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:29:10", + "topics": "container,info,debug" + }, + { + ".id": "*21C3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:29:30", + "topics": "container,info,debug" + }, + { + ".id": "*21C4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:29:50", + "topics": "container,info,debug" + }, + { + ".id": "*21C5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:30:10", + "topics": "container,info,debug" + }, + { + ".id": "*21C6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:31:22", + "topics": "container,info,debug" + }, + { + ".id": "*21C7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:32:22", + "topics": "container,info,debug" + }, + { + ".id": "*21C8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:32:42", + "topics": "container,info,debug" + }, + { + ".id": "*21C9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:33:02", + "topics": "container,info,debug" + }, + { + ".id": "*21CA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:33:22", + "topics": "container,info,debug" + }, + { + ".id": "*21CB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:33:42", + "topics": "container,info,debug" + }, + { + ".id": "*21CC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:34:53", + "topics": "container,info,debug" + }, + { + ".id": "*21CD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:35:53", + "topics": "container,info,debug" + }, + { + ".id": "*21CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:36:13", + "topics": "container,info,debug" + }, + { + ".id": "*21CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:36:33", + "topics": "container,info,debug" + }, + { + ".id": "*21D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:36:53", + "topics": "container,info,debug" + }, + { + ".id": "*21D1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:37:13", + "topics": "container,info,debug" + }, + { + ".id": "*21D2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:38:25", + "topics": "container,info,debug" + }, + { + ".id": "*21D3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:39:25", + "topics": "container,info,debug" + }, + { + ".id": "*21D4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:39:45", + "topics": "container,info,debug" + }, + { + ".id": "*21D5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:40:05", + "topics": "container,info,debug" + }, + { + ".id": "*21D6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:40:25", + "topics": "container,info,debug" + }, + { + ".id": "*21D7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:40:45", + "topics": "container,info,debug" + }, + { + ".id": "*21D8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:41:56", + "topics": "container,info,debug" + }, + { + ".id": "*21D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:42:56", + "topics": "container,info,debug" + }, + { + ".id": "*21DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:43:16", + "topics": "container,info,debug" + }, + { + ".id": "*21DB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:43:36", + "topics": "container,info,debug" + }, + { + ".id": "*21DC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:43:56", + "topics": "container,info,debug" + }, + { + ".id": "*21DD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:44:16", + "topics": "container,info,debug" + }, + { + ".id": "*21DE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:45:28", + "topics": "container,info,debug" + }, + { + ".id": "*21DF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:46:28", + "topics": "container,info,debug" + }, + { + ".id": "*21E0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:46:48", + "topics": "container,info,debug" + }, + { + ".id": "*21E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:47:08", + "topics": "container,info,debug" + }, + { + ".id": "*21E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:47:28", + "topics": "container,info,debug" + }, + { + ".id": "*21E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:47:48", + "topics": "container,info,debug" + }, + { + ".id": "*21E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:48:59", + "topics": "container,info,debug" + }, + { + ".id": "*21E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:49:59", + "topics": "container,info,debug" + }, + { + ".id": "*21E6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:50:19", + "topics": "container,info,debug" + }, + { + ".id": "*21E7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:50:39", + "topics": "container,info,debug" + }, + { + ".id": "*21E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:50:59", + "topics": "container,info,debug" + }, + { + ".id": "*21E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:51:19", + "topics": "container,info,debug" + }, + { + ".id": "*21EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:52:31", + "topics": "container,info,debug" + }, + { + ".id": "*21EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:53:31", + "topics": "container,info,debug" + }, + { + ".id": "*21EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:53:51", + "topics": "container,info,debug" + }, + { + ".id": "*21ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:54:11", + "topics": "container,info,debug" + }, + { + ".id": "*21EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:54:31", + "topics": "container,info,debug" + }, + { + ".id": "*21EF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:54:51", + "topics": "container,info,debug" + }, + { + ".id": "*21F0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:56:02", + "topics": "container,info,debug" + }, + { + ".id": "*21F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:57:02", + "topics": "container,info,debug" + }, + { + ".id": "*21F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:57:22", + "topics": "container,info,debug" + }, + { + ".id": "*21F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:57:42", + "topics": "container,info,debug" + }, + { + ".id": "*21F4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:58:02", + "topics": "container,info,debug" + }, + { + ".id": "*21F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:58:22", + "topics": "container,info,debug" + }, + { + ".id": "*21F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 00:59:34", + "topics": "container,info,debug" + }, + { + ".id": "*21F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:00:34", + "topics": "container,info,debug" + }, + { + ".id": "*21F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:00:54", + "topics": "container,info,debug" + }, + { + ".id": "*21F9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:01:14", + "topics": "container,info,debug" + }, + { + ".id": "*21FA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:01:34", + "topics": "container,info,debug" + }, + { + ".id": "*21FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:01:54", + "topics": "container,info,debug" + }, + { + ".id": "*21FC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:03:06", + "topics": "container,info,debug" + }, + { + ".id": "*21FD", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-19 01:03:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*21FE", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-19 01:03:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*21FF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:04:06", + "topics": "container,info,debug" + }, + { + ".id": "*2200", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:04:26", + "topics": "container,info,debug" + }, + { + ".id": "*2201", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:04:46", + "topics": "container,info,debug" + }, + { + ".id": "*2202", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:05:06", + "topics": "container,info,debug" + }, + { + ".id": "*2203", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:05:26", + "topics": "container,info,debug" + }, + { + ".id": "*2204", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:06:37", + "topics": "container,info,debug" + }, + { + ".id": "*2205", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:07:37", + "topics": "container,info,debug" + }, + { + ".id": "*2206", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:07:57", + "topics": "container,info,debug" + }, + { + ".id": "*2207", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:08:17", + "topics": "container,info,debug" + }, + { + ".id": "*2208", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:08:37", + "topics": "container,info,debug" + }, + { + ".id": "*2209", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:08:57", + "topics": "container,info,debug" + }, + { + ".id": "*220A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:10:09", + "topics": "container,info,debug" + }, + { + ".id": "*220B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:11:09", + "topics": "container,info,debug" + }, + { + ".id": "*220C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:11:29", + "topics": "container,info,debug" + }, + { + ".id": "*220D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:11:49", + "topics": "container,info,debug" + }, + { + ".id": "*220E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:12:09", + "topics": "container,info,debug" + }, + { + ".id": "*220F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:12:29", + "topics": "container,info,debug" + }, + { + ".id": "*2210", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:13:40", + "topics": "container,info,debug" + }, + { + ".id": "*2211", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:14:40", + "topics": "container,info,debug" + }, + { + ".id": "*2212", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:15:00", + "topics": "container,info,debug" + }, + { + ".id": "*2213", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-19 01:15:14", + "topics": "dhcp,info" + }, + { + ".id": "*2214", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:15:20", + "topics": "container,info,debug" + }, + { + ".id": "*2215", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:15:40", + "topics": "container,info,debug" + }, + { + ".id": "*2216", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:16:00", + "topics": "container,info,debug" + }, + { + ".id": "*2217", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:17:12", + "topics": "container,info,debug" + }, + { + ".id": "*2218", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:18:12", + "topics": "container,info,debug" + }, + { + ".id": "*2219", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:18:32", + "topics": "container,info,debug" + }, + { + ".id": "*221A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:18:52", + "topics": "container,info,debug" + }, + { + ".id": "*221B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:19:12", + "topics": "container,info,debug" + }, + { + ".id": "*221C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:19:32", + "topics": "container,info,debug" + }, + { + ".id": "*221D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:20:43", + "topics": "container,info,debug" + }, + { + ".id": "*221E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:21:43", + "topics": "container,info,debug" + }, + { + ".id": "*221F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:22:03", + "topics": "container,info,debug" + }, + { + ".id": "*2220", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:22:23", + "topics": "container,info,debug" + }, + { + ".id": "*2221", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:22:43", + "topics": "container,info,debug" + }, + { + ".id": "*2222", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:23:03", + "topics": "container,info,debug" + }, + { + ".id": "*2223", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:24:15", + "topics": "container,info,debug" + }, + { + ".id": "*2224", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:25:15", + "topics": "container,info,debug" + }, + { + ".id": "*2225", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:25:35", + "topics": "container,info,debug" + }, + { + ".id": "*2226", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:25:55", + "topics": "container,info,debug" + }, + { + ".id": "*2227", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:26:15", + "topics": "container,info,debug" + }, + { + ".id": "*2228", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:26:35", + "topics": "container,info,debug" + }, + { + ".id": "*2229", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:27:46", + "topics": "container,info,debug" + }, + { + ".id": "*222A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:28:46", + "topics": "container,info,debug" + }, + { + ".id": "*222B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:29:06", + "topics": "container,info,debug" + }, + { + ".id": "*222C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:29:26", + "topics": "container,info,debug" + }, + { + ".id": "*222D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:29:46", + "topics": "container,info,debug" + }, + { + ".id": "*222E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:30:06", + "topics": "container,info,debug" + }, + { + ".id": "*222F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:31:17", + "topics": "container,info,debug" + }, + { + ".id": "*2230", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:32:17", + "topics": "container,info,debug" + }, + { + ".id": "*2231", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:32:37", + "topics": "container,info,debug" + }, + { + ".id": "*2232", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:32:57", + "topics": "container,info,debug" + }, + { + ".id": "*2233", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:33:17", + "topics": "container,info,debug" + }, + { + ".id": "*2234", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:33:37", + "topics": "container,info,debug" + }, + { + ".id": "*2235", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:34:48", + "topics": "container,info,debug" + }, + { + ".id": "*2236", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:35:48", + "topics": "container,info,debug" + }, + { + ".id": "*2237", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:36:08", + "topics": "container,info,debug" + }, + { + ".id": "*2238", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:36:28", + "topics": "container,info,debug" + }, + { + ".id": "*2239", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:36:48", + "topics": "container,info,debug" + }, + { + ".id": "*223A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:37:08", + "topics": "container,info,debug" + }, + { + ".id": "*223B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:38:20", + "topics": "container,info,debug" + }, + { + ".id": "*223C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:39:20", + "topics": "container,info,debug" + }, + { + ".id": "*223D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:39:40", + "topics": "container,info,debug" + }, + { + ".id": "*223E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:40:00", + "topics": "container,info,debug" + }, + { + ".id": "*223F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:40:20", + "topics": "container,info,debug" + }, + { + ".id": "*2240", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:40:40", + "topics": "container,info,debug" + }, + { + ".id": "*2241", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:41:51", + "topics": "container,info,debug" + }, + { + ".id": "*2242", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:42:51", + "topics": "container,info,debug" + }, + { + ".id": "*2243", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:43:11", + "topics": "container,info,debug" + }, + { + ".id": "*2244", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:43:31", + "topics": "container,info,debug" + }, + { + ".id": "*2245", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:43:51", + "topics": "container,info,debug" + }, + { + ".id": "*2246", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:44:11", + "topics": "container,info,debug" + }, + { + ".id": "*2247", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:45:23", + "topics": "container,info,debug" + }, + { + ".id": "*2248", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:46:23", + "topics": "container,info,debug" + }, + { + ".id": "*2249", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:46:43", + "topics": "container,info,debug" + }, + { + ".id": "*224A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:47:03", + "topics": "container,info,debug" + }, + { + ".id": "*224B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:47:23", + "topics": "container,info,debug" + }, + { + ".id": "*224C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:47:43", + "topics": "container,info,debug" + }, + { + ".id": "*224D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:48:55", + "topics": "container,info,debug" + }, + { + ".id": "*224E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:49:55", + "topics": "container,info,debug" + }, + { + ".id": "*224F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:50:15", + "topics": "container,info,debug" + }, + { + ".id": "*2250", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:50:35", + "topics": "container,info,debug" + }, + { + ".id": "*2251", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:50:55", + "topics": "container,info,debug" + }, + { + ".id": "*2252", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:51:15", + "topics": "container,info,debug" + }, + { + ".id": "*2253", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:52:26", + "topics": "container,info,debug" + }, + { + ".id": "*2254", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:53:26", + "topics": "container,info,debug" + }, + { + ".id": "*2255", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:53:46", + "topics": "container,info,debug" + }, + { + ".id": "*2256", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:54:06", + "topics": "container,info,debug" + }, + { + ".id": "*2257", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:54:26", + "topics": "container,info,debug" + }, + { + ".id": "*2258", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:54:46", + "topics": "container,info,debug" + }, + { + ".id": "*2259", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:55:58", + "topics": "container,info,debug" + }, + { + ".id": "*225A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:56:58", + "topics": "container,info,debug" + }, + { + ".id": "*225B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:57:18", + "topics": "container,info,debug" + }, + { + ".id": "*225C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:57:38", + "topics": "container,info,debug" + }, + { + ".id": "*225D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:57:58", + "topics": "container,info,debug" + }, + { + ".id": "*225E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:58:18", + "topics": "container,info,debug" + }, + { + ".id": "*225F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 01:59:29", + "topics": "container,info,debug" + }, + { + ".id": "*2260", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:00:29", + "topics": "container,info,debug" + }, + { + ".id": "*2261", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:00:49", + "topics": "container,info,debug" + }, + { + ".id": "*2262", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:01:09", + "topics": "container,info,debug" + }, + { + ".id": "*2263", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:01:29", + "topics": "container,info,debug" + }, + { + ".id": "*2264", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:01:49", + "topics": "container,info,debug" + }, + { + ".id": "*2265", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:03:01", + "topics": "container,info,debug" + }, + { + ".id": "*2266", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:04:01", + "topics": "container,info,debug" + }, + { + ".id": "*2267", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:04:21", + "topics": "container,info,debug" + }, + { + ".id": "*2268", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:04:41", + "topics": "container,info,debug" + }, + { + ".id": "*2269", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:05:01", + "topics": "container,info,debug" + }, + { + ".id": "*226A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:05:21", + "topics": "container,info,debug" + }, + { + ".id": "*226B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:06:33", + "topics": "container,info,debug" + }, + { + ".id": "*226C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:07:33", + "topics": "container,info,debug" + }, + { + ".id": "*226D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:07:53", + "topics": "container,info,debug" + }, + { + ".id": "*226E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:08:13", + "topics": "container,info,debug" + }, + { + ".id": "*226F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:08:33", + "topics": "container,info,debug" + }, + { + ".id": "*2270", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:08:53", + "topics": "container,info,debug" + }, + { + ".id": "*2271", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:10:04", + "topics": "container,info,debug" + }, + { + ".id": "*2272", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:11:04", + "topics": "container,info,debug" + }, + { + ".id": "*2273", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:11:24", + "topics": "container,info,debug" + }, + { + ".id": "*2274", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-19 02:11:44", + "topics": "dhcp,info" + }, + { + ".id": "*2275", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-19 02:11:44", + "topics": "dhcp,info" + }, + { + ".id": "*2276", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:11:44", + "topics": "container,info,debug" + }, + { + ".id": "*2277", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:12:04", + "topics": "container,info,debug" + }, + { + ".id": "*2278", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:12:24", + "topics": "container,info,debug" + }, + { + ".id": "*2279", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:13:36", + "topics": "container,info,debug" + }, + { + ".id": "*227A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:14:36", + "topics": "container,info,debug" + }, + { + ".id": "*227B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:14:56", + "topics": "container,info,debug" + }, + { + ".id": "*227C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:15:16", + "topics": "container,info,debug" + }, + { + ".id": "*227D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:15:36", + "topics": "container,info,debug" + }, + { + ".id": "*227E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:15:56", + "topics": "container,info,debug" + }, + { + ".id": "*227F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:17:07", + "topics": "container,info,debug" + }, + { + ".id": "*2280", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:18:07", + "topics": "container,info,debug" + }, + { + ".id": "*2281", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:18:27", + "topics": "container,info,debug" + }, + { + ".id": "*2282", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:18:47", + "topics": "container,info,debug" + }, + { + ".id": "*2283", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:19:07", + "topics": "container,info,debug" + }, + { + ".id": "*2284", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:19:27", + "topics": "container,info,debug" + }, + { + ".id": "*2285", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:20:39", + "topics": "container,info,debug" + }, + { + ".id": "*2286", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:21:39", + "topics": "container,info,debug" + }, + { + ".id": "*2287", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:21:59", + "topics": "container,info,debug" + }, + { + ".id": "*2288", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:22:19", + "topics": "container,info,debug" + }, + { + ".id": "*2289", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:22:39", + "topics": "container,info,debug" + }, + { + ".id": "*228A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:22:59", + "topics": "container,info,debug" + }, + { + ".id": "*228B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:24:10", + "topics": "container,info,debug" + }, + { + ".id": "*228C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:25:10", + "topics": "container,info,debug" + }, + { + ".id": "*228D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:25:30", + "topics": "container,info,debug" + }, + { + ".id": "*228E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:25:50", + "topics": "container,info,debug" + }, + { + ".id": "*228F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:26:10", + "topics": "container,info,debug" + }, + { + ".id": "*2290", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:26:30", + "topics": "container,info,debug" + }, + { + ".id": "*2291", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:27:42", + "topics": "container,info,debug" + }, + { + ".id": "*2292", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:28:42", + "topics": "container,info,debug" + }, + { + ".id": "*2293", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:29:02", + "topics": "container,info,debug" + }, + { + ".id": "*2294", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:29:22", + "topics": "container,info,debug" + }, + { + ".id": "*2295", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:29:42", + "topics": "container,info,debug" + }, + { + ".id": "*2296", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:30:02", + "topics": "container,info,debug" + }, + { + ".id": "*2297", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:31:13", + "topics": "container,info,debug" + }, + { + ".id": "*2298", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:32:13", + "topics": "container,info,debug" + }, + { + ".id": "*2299", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:32:33", + "topics": "container,info,debug" + }, + { + ".id": "*229A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:32:53", + "topics": "container,info,debug" + }, + { + ".id": "*229B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:33:13", + "topics": "container,info,debug" + }, + { + ".id": "*229C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:33:33", + "topics": "container,info,debug" + }, + { + ".id": "*229D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:34:45", + "topics": "container,info,debug" + }, + { + ".id": "*229E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:35:45", + "topics": "container,info,debug" + }, + { + ".id": "*229F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:36:05", + "topics": "container,info,debug" + }, + { + ".id": "*22A0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:36:25", + "topics": "container,info,debug" + }, + { + ".id": "*22A1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:36:45", + "topics": "container,info,debug" + }, + { + ".id": "*22A2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:37:05", + "topics": "container,info,debug" + }, + { + ".id": "*22A3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:38:17", + "topics": "container,info,debug" + }, + { + ".id": "*22A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:39:17", + "topics": "container,info,debug" + }, + { + ".id": "*22A5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:39:37", + "topics": "container,info,debug" + }, + { + ".id": "*22A6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:39:57", + "topics": "container,info,debug" + }, + { + ".id": "*22A7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:40:17", + "topics": "container,info,debug" + }, + { + ".id": "*22A8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:40:37", + "topics": "container,info,debug" + }, + { + ".id": "*22A9", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-19 02:41:44", + "topics": "dhcp,info" + }, + { + ".id": "*22AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:41:48", + "topics": "container,info,debug" + }, + { + ".id": "*22AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:42:48", + "topics": "container,info,debug" + }, + { + ".id": "*22AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:43:08", + "topics": "container,info,debug" + }, + { + ".id": "*22AD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:43:28", + "topics": "container,info,debug" + }, + { + ".id": "*22AE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:43:48", + "topics": "container,info,debug" + }, + { + ".id": "*22AF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:44:08", + "topics": "container,info,debug" + }, + { + ".id": "*22B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:45:20", + "topics": "container,info,debug" + }, + { + ".id": "*22B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:46:20", + "topics": "container,info,debug" + }, + { + ".id": "*22B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:46:40", + "topics": "container,info,debug" + }, + { + ".id": "*22B3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:47:00", + "topics": "container,info,debug" + }, + { + ".id": "*22B4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:47:20", + "topics": "container,info,debug" + }, + { + ".id": "*22B5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:47:40", + "topics": "container,info,debug" + }, + { + ".id": "*22B6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:48:51", + "topics": "container,info,debug" + }, + { + ".id": "*22B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:49:51", + "topics": "container,info,debug" + }, + { + ".id": "*22B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:50:11", + "topics": "container,info,debug" + }, + { + ".id": "*22B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:50:31", + "topics": "container,info,debug" + }, + { + ".id": "*22BA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:50:51", + "topics": "container,info,debug" + }, + { + ".id": "*22BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:51:11", + "topics": "container,info,debug" + }, + { + ".id": "*22BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:52:23", + "topics": "container,info,debug" + }, + { + ".id": "*22BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:53:23", + "topics": "container,info,debug" + }, + { + ".id": "*22BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:53:43", + "topics": "container,info,debug" + }, + { + ".id": "*22BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:54:03", + "topics": "container,info,debug" + }, + { + ".id": "*22C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:54:23", + "topics": "container,info,debug" + }, + { + ".id": "*22C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:54:43", + "topics": "container,info,debug" + }, + { + ".id": "*22C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:55:54", + "topics": "container,info,debug" + }, + { + ".id": "*22C3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:56:54", + "topics": "container,info,debug" + }, + { + ".id": "*22C4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:57:14", + "topics": "container,info,debug" + }, + { + ".id": "*22C5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:57:34", + "topics": "container,info,debug" + }, + { + ".id": "*22C6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:57:54", + "topics": "container,info,debug" + }, + { + ".id": "*22C7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:58:14", + "topics": "container,info,debug" + }, + { + ".id": "*22C8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 02:59:26", + "topics": "container,info,debug" + }, + { + ".id": "*22C9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:00:26", + "topics": "container,info,debug" + }, + { + ".id": "*22CA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:00:46", + "topics": "container,info,debug" + }, + { + ".id": "*22CB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:01:06", + "topics": "container,info,debug" + }, + { + ".id": "*22CC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:01:26", + "topics": "container,info,debug" + }, + { + ".id": "*22CD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:01:46", + "topics": "container,info,debug" + }, + { + ".id": "*22CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:02:57", + "topics": "container,info,debug" + }, + { + ".id": "*22CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:03:57", + "topics": "container,info,debug" + }, + { + ".id": "*22D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:04:17", + "topics": "container,info,debug" + }, + { + ".id": "*22D1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:04:37", + "topics": "container,info,debug" + }, + { + ".id": "*22D2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:04:57", + "topics": "container,info,debug" + }, + { + ".id": "*22D3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:05:17", + "topics": "container,info,debug" + }, + { + ".id": "*22D4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:06:29", + "topics": "container,info,debug" + }, + { + ".id": "*22D5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:07:29", + "topics": "container,info,debug" + }, + { + ".id": "*22D6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:07:49", + "topics": "container,info,debug" + }, + { + ".id": "*22D7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:08:09", + "topics": "container,info,debug" + }, + { + ".id": "*22D8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:08:29", + "topics": "container,info,debug" + }, + { + ".id": "*22D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:08:49", + "topics": "container,info,debug" + }, + { + ".id": "*22DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:10:00", + "topics": "container,info,debug" + }, + { + ".id": "*22DB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:11:00", + "topics": "container,info,debug" + }, + { + ".id": "*22DC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:11:20", + "topics": "container,info,debug" + }, + { + ".id": "*22DD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:11:40", + "topics": "container,info,debug" + }, + { + ".id": "*22DE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:12:00", + "topics": "container,info,debug" + }, + { + ".id": "*22DF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:12:20", + "topics": "container,info,debug" + }, + { + ".id": "*22E0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:13:31", + "topics": "container,info,debug" + }, + { + ".id": "*22E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:14:31", + "topics": "container,info,debug" + }, + { + ".id": "*22E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:14:51", + "topics": "container,info,debug" + }, + { + ".id": "*22E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:15:11", + "topics": "container,info,debug" + }, + { + ".id": "*22E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:15:31", + "topics": "container,info,debug" + }, + { + ".id": "*22E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:15:51", + "topics": "container,info,debug" + }, + { + ".id": "*22E6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:17:02", + "topics": "container,info,debug" + }, + { + ".id": "*22E7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:18:02", + "topics": "container,info,debug" + }, + { + ".id": "*22E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:18:22", + "topics": "container,info,debug" + }, + { + ".id": "*22E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:18:42", + "topics": "container,info,debug" + }, + { + ".id": "*22EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:19:02", + "topics": "container,info,debug" + }, + { + ".id": "*22EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:19:22", + "topics": "container,info,debug" + }, + { + ".id": "*22EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:20:34", + "topics": "container,info,debug" + }, + { + ".id": "*22ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:21:34", + "topics": "container,info,debug" + }, + { + ".id": "*22EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:21:54", + "topics": "container,info,debug" + }, + { + ".id": "*22EF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:22:14", + "topics": "container,info,debug" + }, + { + ".id": "*22F0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:22:34", + "topics": "container,info,debug" + }, + { + ".id": "*22F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:22:54", + "topics": "container,info,debug" + }, + { + ".id": "*22F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:24:06", + "topics": "container,info,debug" + }, + { + ".id": "*22F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:25:06", + "topics": "container,info,debug" + }, + { + ".id": "*22F4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:25:26", + "topics": "container,info,debug" + }, + { + ".id": "*22F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:25:46", + "topics": "container,info,debug" + }, + { + ".id": "*22F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:26:06", + "topics": "container,info,debug" + }, + { + ".id": "*22F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:26:26", + "topics": "container,info,debug" + }, + { + ".id": "*22F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:27:37", + "topics": "container,info,debug" + }, + { + ".id": "*22F9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:28:37", + "topics": "container,info,debug" + }, + { + ".id": "*22FA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:28:57", + "topics": "container,info,debug" + }, + { + ".id": "*22FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:29:17", + "topics": "container,info,debug" + }, + { + ".id": "*22FC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:29:37", + "topics": "container,info,debug" + }, + { + ".id": "*22FD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:29:57", + "topics": "container,info,debug" + }, + { + ".id": "*22FE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:31:09", + "topics": "container,info,debug" + }, + { + ".id": "*22FF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:32:09", + "topics": "container,info,debug" + }, + { + ".id": "*2300", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:32:29", + "topics": "container,info,debug" + }, + { + ".id": "*2301", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:32:49", + "topics": "container,info,debug" + }, + { + ".id": "*2302", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:33:09", + "topics": "container,info,debug" + }, + { + ".id": "*2303", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:33:29", + "topics": "container,info,debug" + }, + { + ".id": "*2304", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:34:40", + "topics": "container,info,debug" + }, + { + ".id": "*2305", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:35:40", + "topics": "container,info,debug" + }, + { + ".id": "*2306", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:36:00", + "topics": "container,info,debug" + }, + { + ".id": "*2307", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:36:20", + "topics": "container,info,debug" + }, + { + ".id": "*2308", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:36:40", + "topics": "container,info,debug" + }, + { + ".id": "*2309", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:37:00", + "topics": "container,info,debug" + }, + { + ".id": "*230A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:38:12", + "topics": "container,info,debug" + }, + { + ".id": "*230B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:39:12", + "topics": "container,info,debug" + }, + { + ".id": "*230C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:39:32", + "topics": "container,info,debug" + }, + { + ".id": "*230D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:39:52", + "topics": "container,info,debug" + }, + { + ".id": "*230E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:40:12", + "topics": "container,info,debug" + }, + { + ".id": "*230F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:40:32", + "topics": "container,info,debug" + }, + { + ".id": "*2310", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:41:43", + "topics": "container,info,debug" + }, + { + ".id": "*2311", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:42:43", + "topics": "container,info,debug" + }, + { + ".id": "*2312", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:43:03", + "topics": "container,info,debug" + }, + { + ".id": "*2313", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:43:23", + "topics": "container,info,debug" + }, + { + ".id": "*2314", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:43:43", + "topics": "container,info,debug" + }, + { + ".id": "*2315", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:44:03", + "topics": "container,info,debug" + }, + { + ".id": "*2316", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:45:15", + "topics": "container,info,debug" + }, + { + ".id": "*2317", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:46:15", + "topics": "container,info,debug" + }, + { + ".id": "*2318", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:46:35", + "topics": "container,info,debug" + }, + { + ".id": "*2319", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:46:55", + "topics": "container,info,debug" + }, + { + ".id": "*231A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:47:15", + "topics": "container,info,debug" + }, + { + ".id": "*231B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:47:35", + "topics": "container,info,debug" + }, + { + ".id": "*231C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:48:46", + "topics": "container,info,debug" + }, + { + ".id": "*231D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:49:46", + "topics": "container,info,debug" + }, + { + ".id": "*231E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:50:06", + "topics": "container,info,debug" + }, + { + ".id": "*231F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:50:26", + "topics": "container,info,debug" + }, + { + ".id": "*2320", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:50:46", + "topics": "container,info,debug" + }, + { + ".id": "*2321", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:51:06", + "topics": "container,info,debug" + }, + { + ".id": "*2322", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:52:18", + "topics": "container,info,debug" + }, + { + ".id": "*2323", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:53:18", + "topics": "container,info,debug" + }, + { + ".id": "*2324", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:53:38", + "topics": "container,info,debug" + }, + { + ".id": "*2325", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:53:58", + "topics": "container,info,debug" + }, + { + ".id": "*2326", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:54:18", + "topics": "container,info,debug" + }, + { + ".id": "*2327", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:54:38", + "topics": "container,info,debug" + }, + { + ".id": "*2328", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:55:49", + "topics": "container,info,debug" + }, + { + ".id": "*2329", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:56:49", + "topics": "container,info,debug" + }, + { + ".id": "*232A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:57:09", + "topics": "container,info,debug" + }, + { + ".id": "*232B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:57:29", + "topics": "container,info,debug" + }, + { + ".id": "*232C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:57:49", + "topics": "container,info,debug" + }, + { + ".id": "*232D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:58:09", + "topics": "container,info,debug" + }, + { + ".id": "*232E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 03:59:21", + "topics": "container,info,debug" + }, + { + ".id": "*232F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:00:21", + "topics": "container,info,debug" + }, + { + ".id": "*2330", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:00:41", + "topics": "container,info,debug" + }, + { + ".id": "*2331", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:01:01", + "topics": "container,info,debug" + }, + { + ".id": "*2332", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:01:21", + "topics": "container,info,debug" + }, + { + ".id": "*2333", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:01:41", + "topics": "container,info,debug" + }, + { + ".id": "*2334", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:02:53", + "topics": "container,info,debug" + }, + { + ".id": "*2335", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:03:53", + "topics": "container,info,debug" + }, + { + ".id": "*2336", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:04:13", + "topics": "container,info,debug" + }, + { + ".id": "*2337", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:04:33", + "topics": "container,info,debug" + }, + { + ".id": "*2338", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:04:53", + "topics": "container,info,debug" + }, + { + ".id": "*2339", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:05:13", + "topics": "container,info,debug" + }, + { + ".id": "*233A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:06:24", + "topics": "container,info,debug" + }, + { + ".id": "*233B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:07:24", + "topics": "container,info,debug" + }, + { + ".id": "*233C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:07:44", + "topics": "container,info,debug" + }, + { + ".id": "*233D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:08:04", + "topics": "container,info,debug" + }, + { + ".id": "*233E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:08:24", + "topics": "container,info,debug" + }, + { + ".id": "*233F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:08:44", + "topics": "container,info,debug" + }, + { + ".id": "*2340", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:09:56", + "topics": "container,info,debug" + }, + { + ".id": "*2341", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:10:56", + "topics": "container,info,debug" + }, + { + ".id": "*2342", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:11:16", + "topics": "container,info,debug" + }, + { + ".id": "*2343", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:11:36", + "topics": "container,info,debug" + }, + { + ".id": "*2344", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:11:56", + "topics": "container,info,debug" + }, + { + ".id": "*2345", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:12:16", + "topics": "container,info,debug" + }, + { + ".id": "*2346", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:13:27", + "topics": "container,info,debug" + }, + { + ".id": "*2347", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:14:27", + "topics": "container,info,debug" + }, + { + ".id": "*2348", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:14:47", + "topics": "container,info,debug" + }, + { + ".id": "*2349", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:15:07", + "topics": "container,info,debug" + }, + { + ".id": "*234A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:15:27", + "topics": "container,info,debug" + }, + { + ".id": "*234B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:15:47", + "topics": "container,info,debug" + }, + { + ".id": "*234C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:16:58", + "topics": "container,info,debug" + }, + { + ".id": "*234D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:17:58", + "topics": "container,info,debug" + }, + { + ".id": "*234E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:18:18", + "topics": "container,info,debug" + }, + { + ".id": "*234F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:18:38", + "topics": "container,info,debug" + }, + { + ".id": "*2350", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:18:58", + "topics": "container,info,debug" + }, + { + ".id": "*2351", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:19:18", + "topics": "container,info,debug" + }, + { + ".id": "*2352", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:20:30", + "topics": "container,info,debug" + }, + { + ".id": "*2353", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:21:30", + "topics": "container,info,debug" + }, + { + ".id": "*2354", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:21:50", + "topics": "container,info,debug" + }, + { + ".id": "*2355", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:22:10", + "topics": "container,info,debug" + }, + { + ".id": "*2356", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:22:30", + "topics": "container,info,debug" + }, + { + ".id": "*2357", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:22:50", + "topics": "container,info,debug" + }, + { + ".id": "*2358", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:24:02", + "topics": "container,info,debug" + }, + { + ".id": "*2359", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:25:02", + "topics": "container,info,debug" + }, + { + ".id": "*235A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:25:22", + "topics": "container,info,debug" + }, + { + ".id": "*235B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:25:42", + "topics": "container,info,debug" + }, + { + ".id": "*235C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:26:02", + "topics": "container,info,debug" + }, + { + ".id": "*235D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:26:22", + "topics": "container,info,debug" + }, + { + ".id": "*235E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:27:33", + "topics": "container,info,debug" + }, + { + ".id": "*235F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:28:33", + "topics": "container,info,debug" + }, + { + ".id": "*2360", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:28:53", + "topics": "container,info,debug" + }, + { + ".id": "*2361", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:29:13", + "topics": "container,info,debug" + }, + { + ".id": "*2362", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:29:33", + "topics": "container,info,debug" + }, + { + ".id": "*2363", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:29:53", + "topics": "container,info,debug" + }, + { + ".id": "*2364", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:31:05", + "topics": "container,info,debug" + }, + { + ".id": "*2365", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:32:05", + "topics": "container,info,debug" + }, + { + ".id": "*2366", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:32:25", + "topics": "container,info,debug" + }, + { + ".id": "*2367", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:32:45", + "topics": "container,info,debug" + }, + { + ".id": "*2368", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:33:05", + "topics": "container,info,debug" + }, + { + ".id": "*2369", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:33:25", + "topics": "container,info,debug" + }, + { + ".id": "*236A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:34:36", + "topics": "container,info,debug" + }, + { + ".id": "*236B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:35:36", + "topics": "container,info,debug" + }, + { + ".id": "*236C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:35:56", + "topics": "container,info,debug" + }, + { + ".id": "*236D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:36:16", + "topics": "container,info,debug" + }, + { + ".id": "*236E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:36:36", + "topics": "container,info,debug" + }, + { + ".id": "*236F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:36:56", + "topics": "container,info,debug" + }, + { + ".id": "*2370", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:38:08", + "topics": "container,info,debug" + }, + { + ".id": "*2371", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:39:08", + "topics": "container,info,debug" + }, + { + ".id": "*2372", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:39:28", + "topics": "container,info,debug" + }, + { + ".id": "*2373", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:39:48", + "topics": "container,info,debug" + }, + { + ".id": "*2374", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:40:08", + "topics": "container,info,debug" + }, + { + ".id": "*2375", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:40:28", + "topics": "container,info,debug" + }, + { + ".id": "*2376", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:41:39", + "topics": "container,info,debug" + }, + { + ".id": "*2377", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:42:39", + "topics": "container,info,debug" + }, + { + ".id": "*2378", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:42:59", + "topics": "container,info,debug" + }, + { + ".id": "*2379", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:43:19", + "topics": "container,info,debug" + }, + { + ".id": "*237A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:43:39", + "topics": "container,info,debug" + }, + { + ".id": "*237B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:43:59", + "topics": "container,info,debug" + }, + { + ".id": "*237C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:45:11", + "topics": "container,info,debug" + }, + { + ".id": "*237D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:46:11", + "topics": "container,info,debug" + }, + { + ".id": "*237E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:46:31", + "topics": "container,info,debug" + }, + { + ".id": "*237F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:46:51", + "topics": "container,info,debug" + }, + { + ".id": "*2380", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:47:11", + "topics": "container,info,debug" + }, + { + ".id": "*2381", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:47:31", + "topics": "container,info,debug" + }, + { + ".id": "*2382", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:48:42", + "topics": "container,info,debug" + }, + { + ".id": "*2383", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:49:42", + "topics": "container,info,debug" + }, + { + ".id": "*2384", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:50:02", + "topics": "container,info,debug" + }, + { + ".id": "*2385", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:50:22", + "topics": "container,info,debug" + }, + { + ".id": "*2386", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:50:42", + "topics": "container,info,debug" + }, + { + ".id": "*2387", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:51:02", + "topics": "container,info,debug" + }, + { + ".id": "*2388", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:52:14", + "topics": "container,info,debug" + }, + { + ".id": "*2389", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:53:14", + "topics": "container,info,debug" + }, + { + ".id": "*238A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:53:34", + "topics": "container,info,debug" + }, + { + ".id": "*238B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:53:54", + "topics": "container,info,debug" + }, + { + ".id": "*238C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:54:14", + "topics": "container,info,debug" + }, + { + ".id": "*238D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:54:34", + "topics": "container,info,debug" + }, + { + ".id": "*238E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:55:45", + "topics": "container,info,debug" + }, + { + ".id": "*238F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:56:45", + "topics": "container,info,debug" + }, + { + ".id": "*2390", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:57:05", + "topics": "container,info,debug" + }, + { + ".id": "*2391", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:57:25", + "topics": "container,info,debug" + }, + { + ".id": "*2392", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:57:45", + "topics": "container,info,debug" + }, + { + ".id": "*2393", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:58:05", + "topics": "container,info,debug" + }, + { + ".id": "*2394", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 04:59:17", + "topics": "container,info,debug" + }, + { + ".id": "*2395", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:00:17", + "topics": "container,info,debug" + }, + { + ".id": "*2396", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:00:37", + "topics": "container,info,debug" + }, + { + ".id": "*2397", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:00:57", + "topics": "container,info,debug" + }, + { + ".id": "*2398", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:01:17", + "topics": "container,info,debug" + }, + { + ".id": "*2399", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:01:37", + "topics": "container,info,debug" + }, + { + ".id": "*239A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:02:48", + "topics": "container,info,debug" + }, + { + ".id": "*239B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:03:48", + "topics": "container,info,debug" + }, + { + ".id": "*239C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:04:08", + "topics": "container,info,debug" + }, + { + ".id": "*239D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:04:28", + "topics": "container,info,debug" + }, + { + ".id": "*239E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:04:48", + "topics": "container,info,debug" + }, + { + ".id": "*239F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:05:08", + "topics": "container,info,debug" + }, + { + ".id": "*23A0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:06:19", + "topics": "container,info,debug" + }, + { + ".id": "*23A1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:07:19", + "topics": "container,info,debug" + }, + { + ".id": "*23A2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:07:39", + "topics": "container,info,debug" + }, + { + ".id": "*23A3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:07:59", + "topics": "container,info,debug" + }, + { + ".id": "*23A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:08:19", + "topics": "container,info,debug" + }, + { + ".id": "*23A5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:08:39", + "topics": "container,info,debug" + }, + { + ".id": "*23A6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:09:51", + "topics": "container,info,debug" + }, + { + ".id": "*23A7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:10:51", + "topics": "container,info,debug" + }, + { + ".id": "*23A8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:11:11", + "topics": "container,info,debug" + }, + { + ".id": "*23A9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:11:31", + "topics": "container,info,debug" + }, + { + ".id": "*23AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:11:51", + "topics": "container,info,debug" + }, + { + ".id": "*23AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:12:11", + "topics": "container,info,debug" + }, + { + ".id": "*23AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:13:22", + "topics": "container,info,debug" + }, + { + ".id": "*23AD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:14:22", + "topics": "container,info,debug" + }, + { + ".id": "*23AE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:14:42", + "topics": "container,info,debug" + }, + { + ".id": "*23AF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:15:02", + "topics": "container,info,debug" + }, + { + ".id": "*23B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:15:22", + "topics": "container,info,debug" + }, + { + ".id": "*23B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:15:42", + "topics": "container,info,debug" + }, + { + ".id": "*23B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:16:54", + "topics": "container,info,debug" + }, + { + ".id": "*23B3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:17:54", + "topics": "container,info,debug" + }, + { + ".id": "*23B4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:18:14", + "topics": "container,info,debug" + }, + { + ".id": "*23B5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:18:34", + "topics": "container,info,debug" + }, + { + ".id": "*23B6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:18:54", + "topics": "container,info,debug" + }, + { + ".id": "*23B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:19:14", + "topics": "container,info,debug" + }, + { + ".id": "*23B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:20:26", + "topics": "container,info,debug" + }, + { + ".id": "*23B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:21:26", + "topics": "container,info,debug" + }, + { + ".id": "*23BA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:21:46", + "topics": "container,info,debug" + }, + { + ".id": "*23BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:22:06", + "topics": "container,info,debug" + }, + { + ".id": "*23BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:22:26", + "topics": "container,info,debug" + }, + { + ".id": "*23BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:22:46", + "topics": "container,info,debug" + }, + { + ".id": "*23BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:23:57", + "topics": "container,info,debug" + }, + { + ".id": "*23BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:24:57", + "topics": "container,info,debug" + }, + { + ".id": "*23C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:25:17", + "topics": "container,info,debug" + }, + { + ".id": "*23C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:25:37", + "topics": "container,info,debug" + }, + { + ".id": "*23C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:25:57", + "topics": "container,info,debug" + }, + { + ".id": "*23C3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:26:17", + "topics": "container,info,debug" + }, + { + ".id": "*23C4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:27:28", + "topics": "container,info,debug" + }, + { + ".id": "*23C5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:28:28", + "topics": "container,info,debug" + }, + { + ".id": "*23C6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:28:48", + "topics": "container,info,debug" + }, + { + ".id": "*23C7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:29:08", + "topics": "container,info,debug" + }, + { + ".id": "*23C8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:29:28", + "topics": "container,info,debug" + }, + { + ".id": "*23C9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:29:48", + "topics": "container,info,debug" + }, + { + ".id": "*23CA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:30:59", + "topics": "container,info,debug" + }, + { + ".id": "*23CB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:31:59", + "topics": "container,info,debug" + }, + { + ".id": "*23CC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:32:19", + "topics": "container,info,debug" + }, + { + ".id": "*23CD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:32:39", + "topics": "container,info,debug" + }, + { + ".id": "*23CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:32:59", + "topics": "container,info,debug" + }, + { + ".id": "*23CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:33:19", + "topics": "container,info,debug" + }, + { + ".id": "*23D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:34:31", + "topics": "container,info,debug" + }, + { + ".id": "*23D1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:35:31", + "topics": "container,info,debug" + }, + { + ".id": "*23D2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:35:51", + "topics": "container,info,debug" + }, + { + ".id": "*23D3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:36:11", + "topics": "container,info,debug" + }, + { + ".id": "*23D4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:36:31", + "topics": "container,info,debug" + }, + { + ".id": "*23D5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:36:51", + "topics": "container,info,debug" + }, + { + ".id": "*23D6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:38:02", + "topics": "container,info,debug" + }, + { + ".id": "*23D7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:39:02", + "topics": "container,info,debug" + }, + { + ".id": "*23D8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:39:22", + "topics": "container,info,debug" + }, + { + ".id": "*23D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:39:42", + "topics": "container,info,debug" + }, + { + ".id": "*23DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:40:02", + "topics": "container,info,debug" + }, + { + ".id": "*23DB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:40:22", + "topics": "container,info,debug" + }, + { + ".id": "*23DC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:41:34", + "topics": "container,info,debug" + }, + { + ".id": "*23DD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:42:34", + "topics": "container,info,debug" + }, + { + ".id": "*23DE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:42:54", + "topics": "container,info,debug" + }, + { + ".id": "*23DF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:43:14", + "topics": "container,info,debug" + }, + { + ".id": "*23E0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:43:34", + "topics": "container,info,debug" + }, + { + ".id": "*23E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:43:54", + "topics": "container,info,debug" + }, + { + ".id": "*23E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:45:05", + "topics": "container,info,debug" + }, + { + ".id": "*23E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:46:05", + "topics": "container,info,debug" + }, + { + ".id": "*23E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:46:25", + "topics": "container,info,debug" + }, + { + ".id": "*23E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:46:45", + "topics": "container,info,debug" + }, + { + ".id": "*23E6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:47:05", + "topics": "container,info,debug" + }, + { + ".id": "*23E7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:47:25", + "topics": "container,info,debug" + }, + { + ".id": "*23E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:48:37", + "topics": "container,info,debug" + }, + { + ".id": "*23E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:49:37", + "topics": "container,info,debug" + }, + { + ".id": "*23EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:49:57", + "topics": "container,info,debug" + }, + { + ".id": "*23EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:50:17", + "topics": "container,info,debug" + }, + { + ".id": "*23EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:50:37", + "topics": "container,info,debug" + }, + { + ".id": "*23ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:50:57", + "topics": "container,info,debug" + }, + { + ".id": "*23EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:52:09", + "topics": "container,info,debug" + }, + { + ".id": "*23EF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:53:09", + "topics": "container,info,debug" + }, + { + ".id": "*23F0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:53:29", + "topics": "container,info,debug" + }, + { + ".id": "*23F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:53:49", + "topics": "container,info,debug" + }, + { + ".id": "*23F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:54:09", + "topics": "container,info,debug" + }, + { + ".id": "*23F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:54:29", + "topics": "container,info,debug" + }, + { + ".id": "*23F4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:55:40", + "topics": "container,info,debug" + }, + { + ".id": "*23F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:56:40", + "topics": "container,info,debug" + }, + { + ".id": "*23F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:57:00", + "topics": "container,info,debug" + }, + { + ".id": "*23F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:57:20", + "topics": "container,info,debug" + }, + { + ".id": "*23F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:57:40", + "topics": "container,info,debug" + }, + { + ".id": "*23F9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:58:00", + "topics": "container,info,debug" + }, + { + ".id": "*23FA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 05:59:12", + "topics": "container,info,debug" + }, + { + ".id": "*23FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:00:12", + "topics": "container,info,debug" + }, + { + ".id": "*23FC", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-19 06:00:29", + "topics": "dhcp,info" + }, + { + ".id": "*23FD", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-19 06:00:30", + "topics": "hotspot,info,debug" + }, + { + ".id": "*23FE", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-19 06:00:30", + "topics": "hotspot,info,debug" + }, + { + ".id": "*23FF", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-19 06:00:30", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2400", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-19 06:00:30", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2401", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:00:32", + "topics": "container,info,debug" + }, + { + ".id": "*2402", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:00:52", + "topics": "container,info,debug" + }, + { + ".id": "*2403", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:01:12", + "topics": "container,info,debug" + }, + { + ".id": "*2404", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:01:32", + "topics": "container,info,debug" + }, + { + ".id": "*2405", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:02:43", + "topics": "container,info,debug" + }, + { + ".id": "*2406", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:03:43", + "topics": "container,info,debug" + }, + { + ".id": "*2407", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:04:03", + "topics": "container,info,debug" + }, + { + ".id": "*2408", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:04:23", + "topics": "container,info,debug" + }, + { + ".id": "*2409", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:04:43", + "topics": "container,info,debug" + }, + { + ".id": "*240A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:05:03", + "topics": "container,info,debug" + }, + { + ".id": "*240B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:06:16", + "topics": "container,info,debug" + }, + { + ".id": "*240C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:07:16", + "topics": "container,info,debug" + }, + { + ".id": "*240D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:07:36", + "topics": "container,info,debug" + }, + { + ".id": "*240E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:07:56", + "topics": "container,info,debug" + }, + { + ".id": "*240F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:08:16", + "topics": "container,info,debug" + }, + { + ".id": "*2410", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:08:36", + "topics": "container,info,debug" + }, + { + ".id": "*2411", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:09:47", + "topics": "container,info,debug" + }, + { + ".id": "*2412", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:10:47", + "topics": "container,info,debug" + }, + { + ".id": "*2413", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:11:07", + "topics": "container,info,debug" + }, + { + ".id": "*2414", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:11:27", + "topics": "container,info,debug" + }, + { + ".id": "*2415", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:11:47", + "topics": "container,info,debug" + }, + { + ".id": "*2416", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:12:07", + "topics": "container,info,debug" + }, + { + ".id": "*2417", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:13:19", + "topics": "container,info,debug" + }, + { + ".id": "*2418", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:14:19", + "topics": "container,info,debug" + }, + { + ".id": "*2419", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:14:39", + "topics": "container,info,debug" + }, + { + ".id": "*241A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:14:59", + "topics": "container,info,debug" + }, + { + ".id": "*241B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:15:19", + "topics": "container,info,debug" + }, + { + ".id": "*241C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:15:39", + "topics": "container,info,debug" + }, + { + ".id": "*241D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:16:50", + "topics": "container,info,debug" + }, + { + ".id": "*241E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:17:50", + "topics": "container,info,debug" + }, + { + ".id": "*241F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:18:10", + "topics": "container,info,debug" + }, + { + ".id": "*2420", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:18:30", + "topics": "container,info,debug" + }, + { + ".id": "*2421", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:18:50", + "topics": "container,info,debug" + }, + { + ".id": "*2422", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:19:10", + "topics": "container,info,debug" + }, + { + ".id": "*2423", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:20:22", + "topics": "container,info,debug" + }, + { + ".id": "*2424", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:21:22", + "topics": "container,info,debug" + }, + { + ".id": "*2425", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:21:42", + "topics": "container,info,debug" + }, + { + ".id": "*2426", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:22:02", + "topics": "container,info,debug" + }, + { + ".id": "*2427", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:22:22", + "topics": "container,info,debug" + }, + { + ".id": "*2428", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:22:42", + "topics": "container,info,debug" + }, + { + ".id": "*2429", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:23:53", + "topics": "container,info,debug" + }, + { + ".id": "*242A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:24:53", + "topics": "container,info,debug" + }, + { + ".id": "*242B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:25:13", + "topics": "container,info,debug" + }, + { + ".id": "*242C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:25:33", + "topics": "container,info,debug" + }, + { + ".id": "*242D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:25:53", + "topics": "container,info,debug" + }, + { + ".id": "*242E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:26:13", + "topics": "container,info,debug" + }, + { + ".id": "*242F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:27:25", + "topics": "container,info,debug" + }, + { + ".id": "*2430", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:28:25", + "topics": "container,info,debug" + }, + { + ".id": "*2431", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:28:45", + "topics": "container,info,debug" + }, + { + ".id": "*2432", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:29:05", + "topics": "container,info,debug" + }, + { + ".id": "*2433", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:29:25", + "topics": "container,info,debug" + }, + { + ".id": "*2434", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:29:45", + "topics": "container,info,debug" + }, + { + ".id": "*2435", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:30:56", + "topics": "container,info,debug" + }, + { + ".id": "*2436", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:31:56", + "topics": "container,info,debug" + }, + { + ".id": "*2437", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:32:16", + "topics": "container,info,debug" + }, + { + ".id": "*2438", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:32:36", + "topics": "container,info,debug" + }, + { + ".id": "*2439", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:32:56", + "topics": "container,info,debug" + }, + { + ".id": "*243A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:33:16", + "topics": "container,info,debug" + }, + { + ".id": "*243B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:34:28", + "topics": "container,info,debug" + }, + { + ".id": "*243C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:35:28", + "topics": "container,info,debug" + }, + { + ".id": "*243D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:35:48", + "topics": "container,info,debug" + }, + { + ".id": "*243E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:36:08", + "topics": "container,info,debug" + }, + { + ".id": "*243F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:36:28", + "topics": "container,info,debug" + }, + { + ".id": "*2440", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:36:48", + "topics": "container,info,debug" + }, + { + ".id": "*2441", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:37:59", + "topics": "container,info,debug" + }, + { + ".id": "*2442", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:38:59", + "topics": "container,info,debug" + }, + { + ".id": "*2443", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:39:19", + "topics": "container,info,debug" + }, + { + ".id": "*2444", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:39:39", + "topics": "container,info,debug" + }, + { + ".id": "*2445", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:39:59", + "topics": "container,info,debug" + }, + { + ".id": "*2446", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:40:19", + "topics": "container,info,debug" + }, + { + ".id": "*2447", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:41:30", + "topics": "container,info,debug" + }, + { + ".id": "*2448", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:42:30", + "topics": "container,info,debug" + }, + { + ".id": "*2449", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:42:50", + "topics": "container,info,debug" + }, + { + ".id": "*244A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:43:10", + "topics": "container,info,debug" + }, + { + ".id": "*244B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:43:30", + "topics": "container,info,debug" + }, + { + ".id": "*244C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:43:50", + "topics": "container,info,debug" + }, + { + ".id": "*244D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:45:02", + "topics": "container,info,debug" + }, + { + ".id": "*244E", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 06:45:04", + "topics": "dhcp,info" + }, + { + ".id": "*244F", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-19 06:45:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2450", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-19 06:45:04", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2451", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged in", + "time": "2026-01-19 06:45:04", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2452", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-19 06:45:04", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2453", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:46:02", + "topics": "container,info,debug" + }, + { + ".id": "*2454", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:46:22", + "topics": "container,info,debug" + }, + { + ".id": "*2455", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:46:42", + "topics": "container,info,debug" + }, + { + ".id": "*2456", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:47:02", + "topics": "container,info,debug" + }, + { + ".id": "*2457", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:47:22", + "topics": "container,info,debug" + }, + { + ".id": "*2458", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:48:34", + "topics": "container,info,debug" + }, + { + ".id": "*2459", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.123 for 0C:98:38:58:86:07 Redmi5A-dika", + "time": "2026-01-19 06:49:08", + "topics": "dhcp,info" + }, + { + ".id": "*245A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:49:34", + "topics": "container,info,debug" + }, + { + ".id": "*245B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:49:54", + "topics": "container,info,debug" + }, + { + ".id": "*245C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:50:14", + "topics": "container,info,debug" + }, + { + ".id": "*245D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:50:34", + "topics": "container,info,debug" + }, + { + ".id": "*245E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:50:54", + "topics": "container,info,debug" + }, + { + ".id": "*245F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:52:05", + "topics": "container,info,debug" + }, + { + ".id": "*2460", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:53:05", + "topics": "container,info,debug" + }, + { + ".id": "*2461", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:53:25", + "topics": "container,info,debug" + }, + { + ".id": "*2462", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:53:45", + "topics": "container,info,debug" + }, + { + ".id": "*2463", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:54:05", + "topics": "container,info,debug" + }, + { + ".id": "*2464", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:54:25", + "topics": "container,info,debug" + }, + { + ".id": "*2465", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:55:37", + "topics": "container,info,debug" + }, + { + ".id": "*2466", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:56:37", + "topics": "container,info,debug" + }, + { + ".id": "*2467", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:56:57", + "topics": "container,info,debug" + }, + { + ".id": "*2468", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-19 06:57:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2469", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-19 06:57:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*246A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:57:17", + "topics": "container,info,debug" + }, + { + ".id": "*246B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:57:37", + "topics": "container,info,debug" + }, + { + ".id": "*246C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:57:57", + "topics": "container,info,debug" + }, + { + ".id": "*246D", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-19 06:57:58", + "topics": "hotspot,info,debug" + }, + { + ".id": "*246E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-19 06:57:58", + "topics": "hotspot,info,debug" + }, + { + ".id": "*246F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 06:59:08", + "topics": "container,info,debug" + }, + { + ".id": "*2470", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:00:08", + "topics": "container,info,debug" + }, + { + ".id": "*2471", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:00:28", + "topics": "container,info,debug" + }, + { + ".id": "*2472", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:00:48", + "topics": "container,info,debug" + }, + { + ".id": "*2473", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:01:08", + "topics": "container,info,debug" + }, + { + ".id": "*2474", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:01:28", + "topics": "container,info,debug" + }, + { + ".id": "*2475", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:02:40", + "topics": "container,info,debug" + }, + { + ".id": "*2476", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:03:40", + "topics": "container,info,debug" + }, + { + ".id": "*2477", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:04:00", + "topics": "container,info,debug" + }, + { + ".id": "*2478", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:04:20", + "topics": "container,info,debug" + }, + { + ".id": "*2479", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:04:40", + "topics": "container,info,debug" + }, + { + ".id": "*247A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:05:00", + "topics": "container,info,debug" + }, + { + ".id": "*247B", + "extra-info": "", + "message": "koming123 (10.5.50.145): logged out: keepalive timeout", + "time": "2026-01-19 07:05:26", + "topics": "hotspot,info,debug" + }, + { + ".id": "*247C", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged out: keepalive timeout", + "time": "2026-01-19 07:05:26", + "topics": "hotspot,info,debug" + }, + { + ".id": "*247D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:06:11", + "topics": "container,info,debug" + }, + { + ".id": "*247E", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-19 07:06:51", + "topics": "hotspot,info,debug" + }, + { + ".id": "*247F", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-19 07:06:51", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2480", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-19 07:06:51", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2481", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-19 07:06:51", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2482", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:07:11", + "topics": "container,info,debug" + }, + { + ".id": "*2483", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:07:31", + "topics": "container,info,debug" + }, + { + ".id": "*2484", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:07:51", + "topics": "container,info,debug" + }, + { + ".id": "*2485", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:08:11", + "topics": "container,info,debug" + }, + { + ".id": "*2486", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:08:31", + "topics": "container,info,debug" + }, + { + ".id": "*2487", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:09:43", + "topics": "container,info,debug" + }, + { + ".id": "*2488", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:10:43", + "topics": "container,info,debug" + }, + { + ".id": "*2489", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:11:03", + "topics": "container,info,debug" + }, + { + ".id": "*248A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:11:23", + "topics": "container,info,debug" + }, + { + ".id": "*248B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:11:43", + "topics": "container,info,debug" + }, + { + ".id": "*248C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:12:03", + "topics": "container,info,debug" + }, + { + ".id": "*248D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:13:14", + "topics": "container,info,debug" + }, + { + ".id": "*248E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:14:14", + "topics": "container,info,debug" + }, + { + ".id": "*248F", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-19 07:14:20", + "topics": "dhcp,info" + }, + { + ".id": "*2490", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:14:34", + "topics": "container,info,debug" + }, + { + ".id": "*2491", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:14:54", + "topics": "container,info,debug" + }, + { + ".id": "*2492", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:15:14", + "topics": "container,info,debug" + }, + { + ".id": "*2493", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:15:34", + "topics": "container,info,debug" + }, + { + ".id": "*2494", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-19 07:15:40", + "topics": "dhcp,info" + }, + { + ".id": "*2495", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-19 07:15:40", + "topics": "dhcp,info" + }, + { + ".id": "*2496", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:16:46", + "topics": "container,info,debug" + }, + { + ".id": "*2497", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-19 07:17:13", + "topics": "dhcp,info" + }, + { + ".id": "*2498", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:17:46", + "topics": "container,info,debug" + }, + { + ".id": "*2499", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:18:06", + "topics": "container,info,debug" + }, + { + ".id": "*249A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:18:26", + "topics": "container,info,debug" + }, + { + ".id": "*249B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:18:46", + "topics": "container,info,debug" + }, + { + ".id": "*249C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:19:06", + "topics": "container,info,debug" + }, + { + ".id": "*249D", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.123 for 0C:98:38:58:86:07 Redmi5A-dika", + "time": "2026-01-19 07:19:08", + "topics": "dhcp,info" + }, + { + ".id": "*249E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:20:17", + "topics": "container,info,debug" + }, + { + ".id": "*249F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:21:17", + "topics": "container,info,debug" + }, + { + ".id": "*24A0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:21:37", + "topics": "container,info,debug" + }, + { + ".id": "*24A1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:21:57", + "topics": "container,info,debug" + }, + { + ".id": "*24A2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:22:17", + "topics": "container,info,debug" + }, + { + ".id": "*24A3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:22:37", + "topics": "container,info,debug" + }, + { + ".id": "*24A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:23:49", + "topics": "container,info,debug" + }, + { + ".id": "*24A5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:24:49", + "topics": "container,info,debug" + }, + { + ".id": "*24A6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:25:09", + "topics": "container,info,debug" + }, + { + ".id": "*24A7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:25:29", + "topics": "container,info,debug" + }, + { + ".id": "*24A8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:25:49", + "topics": "container,info,debug" + }, + { + ".id": "*24A9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:26:09", + "topics": "container,info,debug" + }, + { + ".id": "*24AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:27:20", + "topics": "container,info,debug" + }, + { + ".id": "*24AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:28:20", + "topics": "container,info,debug" + }, + { + ".id": "*24AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:28:40", + "topics": "container,info,debug" + }, + { + ".id": "*24AD", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.145 for BA:F1:34:51:19:54 Redmi-Note-9", + "time": "2026-01-19 07:28:47", + "topics": "dhcp,info" + }, + { + ".id": "*24AE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:29:00", + "topics": "container,info,debug" + }, + { + ".id": "*24AF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:29:20", + "topics": "container,info,debug" + }, + { + ".id": "*24B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:29:40", + "topics": "container,info,debug" + }, + { + ".id": "*24B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:30:52", + "topics": "container,info,debug" + }, + { + ".id": "*24B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:31:52", + "topics": "container,info,debug" + }, + { + ".id": "*24B3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:32:12", + "topics": "container,info,debug" + }, + { + ".id": "*24B4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:32:32", + "topics": "container,info,debug" + }, + { + ".id": "*24B5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:32:52", + "topics": "container,info,debug" + }, + { + ".id": "*24B6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:33:12", + "topics": "container,info,debug" + }, + { + ".id": "*24B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:34:24", + "topics": "container,info,debug" + }, + { + ".id": "*24B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:35:24", + "topics": "container,info,debug" + }, + { + ".id": "*24B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:35:44", + "topics": "container,info,debug" + }, + { + ".id": "*24BA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:36:04", + "topics": "container,info,debug" + }, + { + ".id": "*24BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:36:24", + "topics": "container,info,debug" + }, + { + ".id": "*24BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:36:44", + "topics": "container,info,debug" + }, + { + ".id": "*24BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:37:55", + "topics": "container,info,debug" + }, + { + ".id": "*24BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:38:55", + "topics": "container,info,debug" + }, + { + ".id": "*24BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:39:15", + "topics": "container,info,debug" + }, + { + ".id": "*24C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:39:35", + "topics": "container,info,debug" + }, + { + ".id": "*24C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:39:55", + "topics": "container,info,debug" + }, + { + ".id": "*24C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:40:15", + "topics": "container,info,debug" + }, + { + ".id": "*24C3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:41:27", + "topics": "container,info,debug" + }, + { + ".id": "*24C4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:42:27", + "topics": "container,info,debug" + }, + { + ".id": "*24C5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:42:47", + "topics": "container,info,debug" + }, + { + ".id": "*24C6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:43:07", + "topics": "container,info,debug" + }, + { + ".id": "*24C7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:43:27", + "topics": "container,info,debug" + }, + { + ".id": "*24C8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:43:47", + "topics": "container,info,debug" + }, + { + ".id": "*24C9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:44:58", + "topics": "container,info,debug" + }, + { + ".id": "*24CA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:45:58", + "topics": "container,info,debug" + }, + { + ".id": "*24CB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:46:18", + "topics": "container,info,debug" + }, + { + ".id": "*24CC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:46:38", + "topics": "container,info,debug" + }, + { + ".id": "*24CD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:46:58", + "topics": "container,info,debug" + }, + { + ".id": "*24CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:47:18", + "topics": "container,info,debug" + }, + { + ".id": "*24CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:48:29", + "topics": "container,info,debug" + }, + { + ".id": "*24D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:49:29", + "topics": "container,info,debug" + }, + { + ".id": "*24D1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:49:49", + "topics": "container,info,debug" + }, + { + ".id": "*24D2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:50:09", + "topics": "container,info,debug" + }, + { + ".id": "*24D3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:50:29", + "topics": "container,info,debug" + }, + { + ".id": "*24D4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:50:49", + "topics": "container,info,debug" + }, + { + ".id": "*24D5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:52:01", + "topics": "container,info,debug" + }, + { + ".id": "*24D6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:53:01", + "topics": "container,info,debug" + }, + { + ".id": "*24D7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:53:21", + "topics": "container,info,debug" + }, + { + ".id": "*24D8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:53:41", + "topics": "container,info,debug" + }, + { + ".id": "*24D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:54:01", + "topics": "container,info,debug" + }, + { + ".id": "*24DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:54:21", + "topics": "container,info,debug" + }, + { + ".id": "*24DB", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-19 07:55:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*24DC", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-19 07:55:17", + "topics": "hotspot,info,debug" + }, + { + ".id": "*24DD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:55:33", + "topics": "container,info,debug" + }, + { + ".id": "*24DE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:56:33", + "topics": "container,info,debug" + }, + { + ".id": "*24DF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:56:53", + "topics": "container,info,debug" + }, + { + ".id": "*24E0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:57:13", + "topics": "container,info,debug" + }, + { + ".id": "*24E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:57:33", + "topics": "container,info,debug" + }, + { + ".id": "*24E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:57:53", + "topics": "container,info,debug" + }, + { + ".id": "*24E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 07:59:04", + "topics": "container,info,debug" + }, + { + ".id": "*24E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:00:04", + "topics": "container,info,debug" + }, + { + ".id": "*24E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:00:24", + "topics": "container,info,debug" + }, + { + ".id": "*24E6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:00:44", + "topics": "container,info,debug" + }, + { + ".id": "*24E7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:01:04", + "topics": "container,info,debug" + }, + { + ".id": "*24E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:01:24", + "topics": "container,info,debug" + }, + { + ".id": "*24E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:02:36", + "topics": "container,info,debug" + }, + { + ".id": "*24EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:03:36", + "topics": "container,info,debug" + }, + { + ".id": "*24EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:03:56", + "topics": "container,info,debug" + }, + { + ".id": "*24EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:04:16", + "topics": "container,info,debug" + }, + { + ".id": "*24ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:04:36", + "topics": "container,info,debug" + }, + { + ".id": "*24EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:04:56", + "topics": "container,info,debug" + }, + { + ".id": "*24EF", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-19 08:05:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*24F0", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-19 08:05:03", + "topics": "hotspot,info,debug" + }, + { + ".id": "*24F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:06:07", + "topics": "container,info,debug" + }, + { + ".id": "*24F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:07:07", + "topics": "container,info,debug" + }, + { + ".id": "*24F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:07:27", + "topics": "container,info,debug" + }, + { + ".id": "*24F4", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-19 08:07:38", + "topics": "dhcp,info" + }, + { + ".id": "*24F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:07:47", + "topics": "container,info,debug" + }, + { + ".id": "*24F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:08:07", + "topics": "container,info,debug" + }, + { + ".id": "*24F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:08:27", + "topics": "container,info,debug" + }, + { + ".id": "*24F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:09:38", + "topics": "container,info,debug" + }, + { + ".id": "*24F9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:10:38", + "topics": "container,info,debug" + }, + { + ".id": "*24FA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:10:58", + "topics": "container,info,debug" + }, + { + ".id": "*24FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:11:18", + "topics": "container,info,debug" + }, + { + ".id": "*24FC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:11:38", + "topics": "container,info,debug" + }, + { + ".id": "*24FD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:11:58", + "topics": "container,info,debug" + }, + { + ".id": "*24FE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:13:10", + "topics": "container,info,debug" + }, + { + ".id": "*24FF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:14:10", + "topics": "container,info,debug" + }, + { + ".id": "*2500", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:14:30", + "topics": "container,info,debug" + }, + { + ".id": "*2501", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:14:50", + "topics": "container,info,debug" + }, + { + ".id": "*2502", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:15:10", + "topics": "container,info,debug" + }, + { + ".id": "*2503", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:15:30", + "topics": "container,info,debug" + }, + { + ".id": "*2504", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:16:41", + "topics": "container,info,debug" + }, + { + ".id": "*2505", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:17:41", + "topics": "container,info,debug" + }, + { + ".id": "*2506", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-19 08:17:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2507", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-19 08:17:45", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2508", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged in", + "time": "2026-01-19 08:17:45", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2509", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-19 08:17:45", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*250A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:18:01", + "topics": "container,info,debug" + }, + { + ".id": "*250B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:18:21", + "topics": "container,info,debug" + }, + { + ".id": "*250C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:18:41", + "topics": "container,info,debug" + }, + { + ".id": "*250D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:19:01", + "topics": "container,info,debug" + }, + { + ".id": "*250E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:20:13", + "topics": "container,info,debug" + }, + { + ".id": "*250F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:21:13", + "topics": "container,info,debug" + }, + { + ".id": "*2510", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:21:33", + "topics": "container,info,debug" + }, + { + ".id": "*2511", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:21:53", + "topics": "container,info,debug" + }, + { + ".id": "*2512", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:22:13", + "topics": "container,info,debug" + }, + { + ".id": "*2513", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:22:33", + "topics": "container,info,debug" + }, + { + ".id": "*2514", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:23:44", + "topics": "container,info,debug" + }, + { + ".id": "*2515", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:24:44", + "topics": "container,info,debug" + }, + { + ".id": "*2516", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:25:04", + "topics": "container,info,debug" + }, + { + ".id": "*2517", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:25:24", + "topics": "container,info,debug" + }, + { + ".id": "*2518", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:25:44", + "topics": "container,info,debug" + }, + { + ".id": "*2519", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:26:04", + "topics": "container,info,debug" + }, + { + ".id": "*251A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:27:16", + "topics": "container,info,debug" + }, + { + ".id": "*251B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:28:16", + "topics": "container,info,debug" + }, + { + ".id": "*251C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:28:36", + "topics": "container,info,debug" + }, + { + ".id": "*251D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:28:56", + "topics": "container,info,debug" + }, + { + ".id": "*251E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:29:16", + "topics": "container,info,debug" + }, + { + ".id": "*251F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:29:36", + "topics": "container,info,debug" + }, + { + ".id": "*2520", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-19 08:29:56", + "topics": "dhcp,info" + }, + { + ".id": "*2521", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:30:47", + "topics": "container,info,debug" + }, + { + ".id": "*2522", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:31:47", + "topics": "container,info,debug" + }, + { + ".id": "*2523", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:32:07", + "topics": "container,info,debug" + }, + { + ".id": "*2524", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:32:27", + "topics": "container,info,debug" + }, + { + ".id": "*2525", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:32:47", + "topics": "container,info,debug" + }, + { + ".id": "*2526", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:33:07", + "topics": "container,info,debug" + }, + { + ".id": "*2527", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:34:19", + "topics": "container,info,debug" + }, + { + ".id": "*2528", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:35:19", + "topics": "container,info,debug" + }, + { + ".id": "*2529", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:35:39", + "topics": "container,info,debug" + }, + { + ".id": "*252A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:35:59", + "topics": "container,info,debug" + }, + { + ".id": "*252B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:36:19", + "topics": "container,info,debug" + }, + { + ".id": "*252C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:36:39", + "topics": "container,info,debug" + }, + { + ".id": "*252D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:37:50", + "topics": "container,info,debug" + }, + { + ".id": "*252E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:38:50", + "topics": "container,info,debug" + }, + { + ".id": "*252F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:39:10", + "topics": "container,info,debug" + }, + { + ".id": "*2530", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:39:30", + "topics": "container,info,debug" + }, + { + ".id": "*2531", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:39:50", + "topics": "container,info,debug" + }, + { + ".id": "*2532", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:40:10", + "topics": "container,info,debug" + }, + { + ".id": "*2533", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:41:22", + "topics": "container,info,debug" + }, + { + ".id": "*2534", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:42:22", + "topics": "container,info,debug" + }, + { + ".id": "*2535", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:42:42", + "topics": "container,info,debug" + }, + { + ".id": "*2536", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:43:02", + "topics": "container,info,debug" + }, + { + ".id": "*2537", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:43:22", + "topics": "container,info,debug" + }, + { + ".id": "*2538", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:43:42", + "topics": "container,info,debug" + }, + { + ".id": "*2539", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:44:53", + "topics": "container,info,debug" + }, + { + ".id": "*253A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:45:53", + "topics": "container,info,debug" + }, + { + ".id": "*253B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:46:13", + "topics": "container,info,debug" + }, + { + ".id": "*253C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:46:33", + "topics": "container,info,debug" + }, + { + ".id": "*253D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:46:53", + "topics": "container,info,debug" + }, + { + ".id": "*253E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:47:13", + "topics": "container,info,debug" + }, + { + ".id": "*253F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:48:25", + "topics": "container,info,debug" + }, + { + ".id": "*2540", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:49:25", + "topics": "container,info,debug" + }, + { + ".id": "*2541", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:49:45", + "topics": "container,info,debug" + }, + { + ".id": "*2542", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:50:05", + "topics": "container,info,debug" + }, + { + ".id": "*2543", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:50:25", + "topics": "container,info,debug" + }, + { + ".id": "*2544", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:50:45", + "topics": "container,info,debug" + }, + { + ".id": "*2545", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:51:57", + "topics": "container,info,debug" + }, + { + ".id": "*2546", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:52:57", + "topics": "container,info,debug" + }, + { + ".id": "*2547", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:53:17", + "topics": "container,info,debug" + }, + { + ".id": "*2548", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:53:37", + "topics": "container,info,debug" + }, + { + ".id": "*2549", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:53:57", + "topics": "container,info,debug" + }, + { + ".id": "*254A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:54:17", + "topics": "container,info,debug" + }, + { + ".id": "*254B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:55:28", + "topics": "container,info,debug" + }, + { + ".id": "*254C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:56:28", + "topics": "container,info,debug" + }, + { + ".id": "*254D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:56:48", + "topics": "container,info,debug" + }, + { + ".id": "*254E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:57:08", + "topics": "container,info,debug" + }, + { + ".id": "*254F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:57:28", + "topics": "container,info,debug" + }, + { + ".id": "*2550", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:57:48", + "topics": "container,info,debug" + }, + { + ".id": "*2551", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:58:59", + "topics": "container,info,debug" + }, + { + ".id": "*2552", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 08:59:59", + "topics": "container,info,debug" + }, + { + ".id": "*2553", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:00:19", + "topics": "container,info,debug" + }, + { + ".id": "*2554", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.105 for 5A:6E:AA:71:AB:B0 V2029", + "time": "2026-01-19 09:00:21", + "topics": "dhcp,info" + }, + { + ".id": "*2555", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:00:39", + "topics": "container,info,debug" + }, + { + ".id": "*2556", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:00:59", + "topics": "container,info,debug" + }, + { + ".id": "*2557", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:01:19", + "topics": "container,info,debug" + }, + { + ".id": "*2558", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:02:31", + "topics": "container,info,debug" + }, + { + ".id": "*2559", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:03:31", + "topics": "container,info,debug" + }, + { + ".id": "*255A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:03:51", + "topics": "container,info,debug" + }, + { + ".id": "*255B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:04:11", + "topics": "container,info,debug" + }, + { + ".id": "*255C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:04:31", + "topics": "container,info,debug" + }, + { + ".id": "*255D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:04:51", + "topics": "container,info,debug" + }, + { + ".id": "*255E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:06:02", + "topics": "container,info,debug" + }, + { + ".id": "*255F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:07:02", + "topics": "container,info,debug" + }, + { + ".id": "*2560", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:07:22", + "topics": "container,info,debug" + }, + { + ".id": "*2561", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:07:42", + "topics": "container,info,debug" + }, + { + ".id": "*2562", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:08:02", + "topics": "container,info,debug" + }, + { + ".id": "*2563", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:08:22", + "topics": "container,info,debug" + }, + { + ".id": "*2564", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:09:34", + "topics": "container,info,debug" + }, + { + ".id": "*2565", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:10:34", + "topics": "container,info,debug" + }, + { + ".id": "*2566", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:10:54", + "topics": "container,info,debug" + }, + { + ".id": "*2567", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:11:14", + "topics": "container,info,debug" + }, + { + ".id": "*2568", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:11:34", + "topics": "container,info,debug" + }, + { + ".id": "*2569", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:11:54", + "topics": "container,info,debug" + }, + { + ".id": "*256A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:13:05", + "topics": "container,info,debug" + }, + { + ".id": "*256B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:14:05", + "topics": "container,info,debug" + }, + { + ".id": "*256C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:14:25", + "topics": "container,info,debug" + }, + { + ".id": "*256D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:14:45", + "topics": "container,info,debug" + }, + { + ".id": "*256E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:15:05", + "topics": "container,info,debug" + }, + { + ".id": "*256F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:15:25", + "topics": "container,info,debug" + }, + { + ".id": "*2570", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:16:37", + "topics": "container,info,debug" + }, + { + ".id": "*2571", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:17:37", + "topics": "container,info,debug" + }, + { + ".id": "*2572", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:17:57", + "topics": "container,info,debug" + }, + { + ".id": "*2573", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:18:17", + "topics": "container,info,debug" + }, + { + ".id": "*2574", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:18:37", + "topics": "container,info,debug" + }, + { + ".id": "*2575", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:18:57", + "topics": "container,info,debug" + }, + { + ".id": "*2576", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:20:08", + "topics": "container,info,debug" + }, + { + ".id": "*2577", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:21:08", + "topics": "container,info,debug" + }, + { + ".id": "*2578", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:21:28", + "topics": "container,info,debug" + }, + { + ".id": "*2579", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:21:48", + "topics": "container,info,debug" + }, + { + ".id": "*257A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:22:08", + "topics": "container,info,debug" + }, + { + ".id": "*257B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:22:28", + "topics": "container,info,debug" + }, + { + ".id": "*257C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:23:40", + "topics": "container,info,debug" + }, + { + ".id": "*257D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:24:40", + "topics": "container,info,debug" + }, + { + ".id": "*257E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:25:00", + "topics": "container,info,debug" + }, + { + ".id": "*257F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:25:20", + "topics": "container,info,debug" + }, + { + ".id": "*2580", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:25:40", + "topics": "container,info,debug" + }, + { + ".id": "*2581", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:26:00", + "topics": "container,info,debug" + }, + { + ".id": "*2582", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:27:12", + "topics": "container,info,debug" + }, + { + ".id": "*2583", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:28:12", + "topics": "container,info,debug" + }, + { + ".id": "*2584", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:28:32", + "topics": "container,info,debug" + }, + { + ".id": "*2585", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:28:52", + "topics": "container,info,debug" + }, + { + ".id": "*2586", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:29:12", + "topics": "container,info,debug" + }, + { + ".id": "*2587", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:29:32", + "topics": "container,info,debug" + }, + { + ".id": "*2588", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.105 for 5A:6E:AA:71:AB:B0 V2029", + "time": "2026-01-19 09:30:21", + "topics": "dhcp,info" + }, + { + ".id": "*2589", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:30:43", + "topics": "container,info,debug" + }, + { + ".id": "*258A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:31:43", + "topics": "container,info,debug" + }, + { + ".id": "*258B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:32:03", + "topics": "container,info,debug" + }, + { + ".id": "*258C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:32:23", + "topics": "container,info,debug" + }, + { + ".id": "*258D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:32:43", + "topics": "container,info,debug" + }, + { + ".id": "*258E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:33:03", + "topics": "container,info,debug" + }, + { + ".id": "*258F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:34:14", + "topics": "container,info,debug" + }, + { + ".id": "*2590", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 09:34:59", + "topics": "dhcp,info" + }, + { + ".id": "*2591", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 09:34:59", + "topics": "dhcp,info" + }, + { + ".id": "*2592", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:35:14", + "topics": "container,info,debug" + }, + { + ".id": "*2593", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:35:34", + "topics": "container,info,debug" + }, + { + ".id": "*2594", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:35:54", + "topics": "container,info,debug" + }, + { + ".id": "*2595", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:36:14", + "topics": "container,info,debug" + }, + { + ".id": "*2596", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:36:34", + "topics": "container,info,debug" + }, + { + ".id": "*2597", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:37:46", + "topics": "container,info,debug" + }, + { + ".id": "*2598", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:38:46", + "topics": "container,info,debug" + }, + { + ".id": "*2599", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:39:06", + "topics": "container,info,debug" + }, + { + ".id": "*259A", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.145 for BA:F1:34:51:19:54 Redmi-Note-9", + "time": "2026-01-19 09:39:16", + "topics": "dhcp,info" + }, + { + ".id": "*259B", + "extra-info": "", + "message": "koming123 (10.5.50.145): trying to log in by mac-cookie", + "time": "2026-01-19 09:39:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*259C", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): trying to log in by mac-cookie", + "time": "2026-01-19 09:39:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*259D", + "extra-info": "", + "message": "koming123 (10.5.50.145): logged in", + "time": "2026-01-19 09:39:16", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*259E", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged in", + "time": "2026-01-19 09:39:16", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*259F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:39:26", + "topics": "container,info,debug" + }, + { + ".id": "*25A0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:39:46", + "topics": "container,info,debug" + }, + { + ".id": "*25A1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:40:06", + "topics": "container,info,debug" + }, + { + ".id": "*25A2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:41:18", + "topics": "container,info,debug" + }, + { + ".id": "*25A3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:42:18", + "topics": "container,info,debug" + }, + { + ".id": "*25A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:42:38", + "topics": "container,info,debug" + }, + { + ".id": "*25A5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:42:58", + "topics": "container,info,debug" + }, + { + ".id": "*25A6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:43:18", + "topics": "container,info,debug" + }, + { + ".id": "*25A7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:43:38", + "topics": "container,info,debug" + }, + { + ".id": "*25A8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:44:49", + "topics": "container,info,debug" + }, + { + ".id": "*25A9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:45:49", + "topics": "container,info,debug" + }, + { + ".id": "*25AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:46:09", + "topics": "container,info,debug" + }, + { + ".id": "*25AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:46:29", + "topics": "container,info,debug" + }, + { + ".id": "*25AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:46:49", + "topics": "container,info,debug" + }, + { + ".id": "*25AD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:47:09", + "topics": "container,info,debug" + }, + { + ".id": "*25AE", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-19 09:47:24", + "topics": "dhcp,info" + }, + { + ".id": "*25AF", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-19 09:47:24", + "topics": "dhcp,info" + }, + { + ".id": "*25B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:48:20", + "topics": "container,info,debug" + }, + { + ".id": "*25B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:49:20", + "topics": "container,info,debug" + }, + { + ".id": "*25B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:49:40", + "topics": "container,info,debug" + }, + { + ".id": "*25B3", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-19 09:49:50", + "topics": "dhcp,info" + }, + { + ".id": "*25B4", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-19 09:49:50", + "topics": "dhcp,info" + }, + { + ".id": "*25B5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:50:00", + "topics": "container,info,debug" + }, + { + ".id": "*25B6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:50:20", + "topics": "container,info,debug" + }, + { + ".id": "*25B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:50:40", + "topics": "container,info,debug" + }, + { + ".id": "*25B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:51:52", + "topics": "container,info,debug" + }, + { + ".id": "*25B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:52:52", + "topics": "container,info,debug" + }, + { + ".id": "*25BA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:53:12", + "topics": "container,info,debug" + }, + { + ".id": "*25BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:53:32", + "topics": "container,info,debug" + }, + { + ".id": "*25BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:53:52", + "topics": "container,info,debug" + }, + { + ".id": "*25BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:54:12", + "topics": "container,info,debug" + }, + { + ".id": "*25BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:55:23", + "topics": "container,info,debug" + }, + { + ".id": "*25BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:56:23", + "topics": "container,info,debug" + }, + { + ".id": "*25C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:56:43", + "topics": "container,info,debug" + }, + { + ".id": "*25C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:57:03", + "topics": "container,info,debug" + }, + { + ".id": "*25C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:57:23", + "topics": "container,info,debug" + }, + { + ".id": "*25C3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:57:43", + "topics": "container,info,debug" + }, + { + ".id": "*25C4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:58:55", + "topics": "container,info,debug" + }, + { + ".id": "*25C5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 09:59:55", + "topics": "container,info,debug" + }, + { + ".id": "*25C6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:00:15", + "topics": "container,info,debug" + }, + { + ".id": "*25C7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:00:35", + "topics": "container,info,debug" + }, + { + ".id": "*25C8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:00:55", + "topics": "container,info,debug" + }, + { + ".id": "*25C9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:01:15", + "topics": "container,info,debug" + }, + { + ".id": "*25CA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:02:26", + "topics": "container,info,debug" + }, + { + ".id": "*25CB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:03:26", + "topics": "container,info,debug" + }, + { + ".id": "*25CC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:03:46", + "topics": "container,info,debug" + }, + { + ".id": "*25CD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:04:06", + "topics": "container,info,debug" + }, + { + ".id": "*25CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:04:26", + "topics": "container,info,debug" + }, + { + ".id": "*25CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:04:46", + "topics": "container,info,debug" + }, + { + ".id": "*25D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:05:58", + "topics": "container,info,debug" + }, + { + ".id": "*25D1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:06:58", + "topics": "container,info,debug" + }, + { + ".id": "*25D2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:07:18", + "topics": "container,info,debug" + }, + { + ".id": "*25D3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:07:38", + "topics": "container,info,debug" + }, + { + ".id": "*25D4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:07:58", + "topics": "container,info,debug" + }, + { + ".id": "*25D5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:08:18", + "topics": "container,info,debug" + }, + { + ".id": "*25D6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:09:29", + "topics": "container,info,debug" + }, + { + ".id": "*25D7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:10:29", + "topics": "container,info,debug" + }, + { + ".id": "*25D8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:10:49", + "topics": "container,info,debug" + }, + { + ".id": "*25D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:11:09", + "topics": "container,info,debug" + }, + { + ".id": "*25DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:11:29", + "topics": "container,info,debug" + }, + { + ".id": "*25DB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:11:49", + "topics": "container,info,debug" + }, + { + ".id": "*25DC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:13:01", + "topics": "container,info,debug" + }, + { + ".id": "*25DD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:14:01", + "topics": "container,info,debug" + }, + { + ".id": "*25DE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:14:21", + "topics": "container,info,debug" + }, + { + ".id": "*25DF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:14:41", + "topics": "container,info,debug" + }, + { + ".id": "*25E0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:15:01", + "topics": "container,info,debug" + }, + { + ".id": "*25E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:15:21", + "topics": "container,info,debug" + }, + { + ".id": "*25E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:16:32", + "topics": "container,info,debug" + }, + { + ".id": "*25E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:17:32", + "topics": "container,info,debug" + }, + { + ".id": "*25E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:17:52", + "topics": "container,info,debug" + }, + { + ".id": "*25E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:18:12", + "topics": "container,info,debug" + }, + { + ".id": "*25E6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:18:32", + "topics": "container,info,debug" + }, + { + ".id": "*25E7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:18:52", + "topics": "container,info,debug" + }, + { + ".id": "*25E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:20:04", + "topics": "container,info,debug" + }, + { + ".id": "*25E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:21:04", + "topics": "container,info,debug" + }, + { + ".id": "*25EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:21:24", + "topics": "container,info,debug" + }, + { + ".id": "*25EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:21:44", + "topics": "container,info,debug" + }, + { + ".id": "*25EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:22:04", + "topics": "container,info,debug" + }, + { + ".id": "*25ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:22:24", + "topics": "container,info,debug" + }, + { + ".id": "*25EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:23:35", + "topics": "container,info,debug" + }, + { + ".id": "*25EF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:24:35", + "topics": "container,info,debug" + }, + { + ".id": "*25F0", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.105 for 5A:6E:AA:71:AB:B0 V2029", + "time": "2026-01-19 10:24:40", + "topics": "dhcp,info" + }, + { + ".id": "*25F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:24:55", + "topics": "container,info,debug" + }, + { + ".id": "*25F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:25:15", + "topics": "container,info,debug" + }, + { + ".id": "*25F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:25:35", + "topics": "container,info,debug" + }, + { + ".id": "*25F4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:25:55", + "topics": "container,info,debug" + }, + { + ".id": "*25F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:27:06", + "topics": "container,info,debug" + }, + { + ".id": "*25F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:28:06", + "topics": "container,info,debug" + }, + { + ".id": "*25F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:28:26", + "topics": "container,info,debug" + }, + { + ".id": "*25F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:28:46", + "topics": "container,info,debug" + }, + { + ".id": "*25F9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:29:06", + "topics": "container,info,debug" + }, + { + ".id": "*25FA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:29:26", + "topics": "container,info,debug" + }, + { + ".id": "*25FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:30:38", + "topics": "container,info,debug" + }, + { + ".id": "*25FC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:31:38", + "topics": "container,info,debug" + }, + { + ".id": "*25FD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:31:58", + "topics": "container,info,debug" + }, + { + ".id": "*25FE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:32:18", + "topics": "container,info,debug" + }, + { + ".id": "*25FF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:32:38", + "topics": "container,info,debug" + }, + { + ".id": "*2600", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:32:58", + "topics": "container,info,debug" + }, + { + ".id": "*2601", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:34:10", + "topics": "container,info,debug" + }, + { + ".id": "*2602", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:35:10", + "topics": "container,info,debug" + }, + { + ".id": "*2603", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:35:30", + "topics": "container,info,debug" + }, + { + ".id": "*2604", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:35:50", + "topics": "container,info,debug" + }, + { + ".id": "*2605", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:36:10", + "topics": "container,info,debug" + }, + { + ".id": "*2606", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:36:30", + "topics": "container,info,debug" + }, + { + ".id": "*2607", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:37:41", + "topics": "container,info,debug" + }, + { + ".id": "*2608", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:38:41", + "topics": "container,info,debug" + }, + { + ".id": "*2609", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:39:01", + "topics": "container,info,debug" + }, + { + ".id": "*260A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:39:21", + "topics": "container,info,debug" + }, + { + ".id": "*260B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:39:41", + "topics": "container,info,debug" + }, + { + ".id": "*260C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:40:01", + "topics": "container,info,debug" + }, + { + ".id": "*260D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:41:13", + "topics": "container,info,debug" + }, + { + ".id": "*260E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:42:13", + "topics": "container,info,debug" + }, + { + ".id": "*260F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:42:33", + "topics": "container,info,debug" + }, + { + ".id": "*2610", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:42:53", + "topics": "container,info,debug" + }, + { + ".id": "*2611", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:43:13", + "topics": "container,info,debug" + }, + { + ".id": "*2612", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:43:33", + "topics": "container,info,debug" + }, + { + ".id": "*2613", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:44:44", + "topics": "container,info,debug" + }, + { + ".id": "*2614", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:45:44", + "topics": "container,info,debug" + }, + { + ".id": "*2615", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:46:04", + "topics": "container,info,debug" + }, + { + ".id": "*2616", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:46:24", + "topics": "container,info,debug" + }, + { + ".id": "*2617", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:46:44", + "topics": "container,info,debug" + }, + { + ".id": "*2618", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:47:04", + "topics": "container,info,debug" + }, + { + ".id": "*2619", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:48:16", + "topics": "container,info,debug" + }, + { + ".id": "*261A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:49:16", + "topics": "container,info,debug" + }, + { + ".id": "*261B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:49:36", + "topics": "container,info,debug" + }, + { + ".id": "*261C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:49:56", + "topics": "container,info,debug" + }, + { + ".id": "*261D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:50:16", + "topics": "container,info,debug" + }, + { + ".id": "*261E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:50:36", + "topics": "container,info,debug" + }, + { + ".id": "*261F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:51:47", + "topics": "container,info,debug" + }, + { + ".id": "*2620", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:52:47", + "topics": "container,info,debug" + }, + { + ".id": "*2621", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:53:07", + "topics": "container,info,debug" + }, + { + ".id": "*2622", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:53:27", + "topics": "container,info,debug" + }, + { + ".id": "*2623", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:53:47", + "topics": "container,info,debug" + }, + { + ".id": "*2624", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:54:07", + "topics": "container,info,debug" + }, + { + ".id": "*2625", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.105 for 5A:6E:AA:71:AB:B0 V2029", + "time": "2026-01-19 10:54:40", + "topics": "dhcp,info" + }, + { + ".id": "*2626", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:55:19", + "topics": "container,info,debug" + }, + { + ".id": "*2627", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:56:19", + "topics": "container,info,debug" + }, + { + ".id": "*2628", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:56:39", + "topics": "container,info,debug" + }, + { + ".id": "*2629", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:56:59", + "topics": "container,info,debug" + }, + { + ".id": "*262A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:57:19", + "topics": "container,info,debug" + }, + { + ".id": "*262B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:57:39", + "topics": "container,info,debug" + }, + { + ".id": "*262C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:58:50", + "topics": "container,info,debug" + }, + { + ".id": "*262D", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-19 10:59:01", + "topics": "dhcp,info" + }, + { + ".id": "*262E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 10:59:50", + "topics": "container,info,debug" + }, + { + ".id": "*262F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:00:10", + "topics": "container,info,debug" + }, + { + ".id": "*2630", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:00:30", + "topics": "container,info,debug" + }, + { + ".id": "*2631", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:00:50", + "topics": "container,info,debug" + }, + { + ".id": "*2632", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:01:10", + "topics": "container,info,debug" + }, + { + ".id": "*2633", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:02:22", + "topics": "container,info,debug" + }, + { + ".id": "*2634", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:03:22", + "topics": "container,info,debug" + }, + { + ".id": "*2635", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:03:42", + "topics": "container,info,debug" + }, + { + ".id": "*2636", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:04:02", + "topics": "container,info,debug" + }, + { + ".id": "*2637", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:04:22", + "topics": "container,info,debug" + }, + { + ".id": "*2638", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:04:42", + "topics": "container,info,debug" + }, + { + ".id": "*2639", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:05:53", + "topics": "container,info,debug" + }, + { + ".id": "*263A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:06:53", + "topics": "container,info,debug" + }, + { + ".id": "*263B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:07:13", + "topics": "container,info,debug" + }, + { + ".id": "*263C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:07:33", + "topics": "container,info,debug" + }, + { + ".id": "*263D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:07:53", + "topics": "container,info,debug" + }, + { + ".id": "*263E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:08:13", + "topics": "container,info,debug" + }, + { + ".id": "*263F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:09:25", + "topics": "container,info,debug" + }, + { + ".id": "*2640", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:10:25", + "topics": "container,info,debug" + }, + { + ".id": "*2641", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:10:45", + "topics": "container,info,debug" + }, + { + ".id": "*2642", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:11:05", + "topics": "container,info,debug" + }, + { + ".id": "*2643", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:11:25", + "topics": "container,info,debug" + }, + { + ".id": "*2644", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:11:45", + "topics": "container,info,debug" + }, + { + ".id": "*2645", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:12:56", + "topics": "container,info,debug" + }, + { + ".id": "*2646", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:13:56", + "topics": "container,info,debug" + }, + { + ".id": "*2647", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:14:16", + "topics": "container,info,debug" + }, + { + ".id": "*2648", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:14:36", + "topics": "container,info,debug" + }, + { + ".id": "*2649", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:14:56", + "topics": "container,info,debug" + }, + { + ".id": "*264A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:15:16", + "topics": "container,info,debug" + }, + { + ".id": "*264B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:16:28", + "topics": "container,info,debug" + }, + { + ".id": "*264C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:17:28", + "topics": "container,info,debug" + }, + { + ".id": "*264D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:17:48", + "topics": "container,info,debug" + }, + { + ".id": "*264E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:18:08", + "topics": "container,info,debug" + }, + { + ".id": "*264F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:18:28", + "topics": "container,info,debug" + }, + { + ".id": "*2650", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:18:48", + "topics": "container,info,debug" + }, + { + ".id": "*2651", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:20:00", + "topics": "container,info,debug" + }, + { + ".id": "*2652", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:21:00", + "topics": "container,info,debug" + }, + { + ".id": "*2653", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:21:20", + "topics": "container,info,debug" + }, + { + ".id": "*2654", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:21:40", + "topics": "container,info,debug" + }, + { + ".id": "*2655", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:22:00", + "topics": "container,info,debug" + }, + { + ".id": "*2656", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:22:20", + "topics": "container,info,debug" + }, + { + ".id": "*2657", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:23:31", + "topics": "container,info,debug" + }, + { + ".id": "*2658", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:24:31", + "topics": "container,info,debug" + }, + { + ".id": "*2659", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:24:51", + "topics": "container,info,debug" + }, + { + ".id": "*265A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:25:11", + "topics": "container,info,debug" + }, + { + ".id": "*265B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:25:31", + "topics": "container,info,debug" + }, + { + ".id": "*265C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:25:51", + "topics": "container,info,debug" + }, + { + ".id": "*265D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:27:03", + "topics": "container,info,debug" + }, + { + ".id": "*265E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:28:03", + "topics": "container,info,debug" + }, + { + ".id": "*265F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:28:23", + "topics": "container,info,debug" + }, + { + ".id": "*2660", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:28:43", + "topics": "container,info,debug" + }, + { + ".id": "*2661", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-19 11:29:01", + "topics": "dhcp,info" + }, + { + ".id": "*2662", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:29:03", + "topics": "container,info,debug" + }, + { + ".id": "*2663", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:29:23", + "topics": "container,info,debug" + }, + { + ".id": "*2664", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:30:34", + "topics": "container,info,debug" + }, + { + ".id": "*2665", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:31:34", + "topics": "container,info,debug" + }, + { + ".id": "*2666", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:31:54", + "topics": "container,info,debug" + }, + { + ".id": "*2667", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:32:14", + "topics": "container,info,debug" + }, + { + ".id": "*2668", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:32:34", + "topics": "container,info,debug" + }, + { + ".id": "*2669", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:32:54", + "topics": "container,info,debug" + }, + { + ".id": "*266A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:34:06", + "topics": "container,info,debug" + }, + { + ".id": "*266B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:35:06", + "topics": "container,info,debug" + }, + { + ".id": "*266C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:35:26", + "topics": "container,info,debug" + }, + { + ".id": "*266D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:35:46", + "topics": "container,info,debug" + }, + { + ".id": "*266E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:36:06", + "topics": "container,info,debug" + }, + { + ".id": "*266F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:36:26", + "topics": "container,info,debug" + }, + { + ".id": "*2670", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:37:37", + "topics": "container,info,debug" + }, + { + ".id": "*2671", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:38:37", + "topics": "container,info,debug" + }, + { + ".id": "*2672", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:38:57", + "topics": "container,info,debug" + }, + { + ".id": "*2673", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:39:17", + "topics": "container,info,debug" + }, + { + ".id": "*2674", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:39:37", + "topics": "container,info,debug" + }, + { + ".id": "*2675", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:39:58", + "topics": "container,info,debug" + }, + { + ".id": "*2676", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:41:09", + "topics": "container,info,debug" + }, + { + ".id": "*2677", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:42:09", + "topics": "container,info,debug" + }, + { + ".id": "*2678", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:42:29", + "topics": "container,info,debug" + }, + { + ".id": "*2679", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:42:49", + "topics": "container,info,debug" + }, + { + ".id": "*267A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:43:09", + "topics": "container,info,debug" + }, + { + ".id": "*267B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:43:29", + "topics": "container,info,debug" + }, + { + ".id": "*267C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:44:41", + "topics": "container,info,debug" + }, + { + ".id": "*267D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:45:41", + "topics": "container,info,debug" + }, + { + ".id": "*267E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:46:01", + "topics": "container,info,debug" + }, + { + ".id": "*267F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:46:21", + "topics": "container,info,debug" + }, + { + ".id": "*2680", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:46:41", + "topics": "container,info,debug" + }, + { + ".id": "*2681", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:47:01", + "topics": "container,info,debug" + }, + { + ".id": "*2682", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:48:13", + "topics": "container,info,debug" + }, + { + ".id": "*2683", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:49:13", + "topics": "container,info,debug" + }, + { + ".id": "*2684", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:49:33", + "topics": "container,info,debug" + }, + { + ".id": "*2685", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:49:53", + "topics": "container,info,debug" + }, + { + ".id": "*2686", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:50:13", + "topics": "container,info,debug" + }, + { + ".id": "*2687", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:50:33", + "topics": "container,info,debug" + }, + { + ".id": "*2688", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:51:44", + "topics": "container,info,debug" + }, + { + ".id": "*2689", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:52:44", + "topics": "container,info,debug" + }, + { + ".id": "*268A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:53:04", + "topics": "container,info,debug" + }, + { + ".id": "*268B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:53:24", + "topics": "container,info,debug" + }, + { + ".id": "*268C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:53:44", + "topics": "container,info,debug" + }, + { + ".id": "*268D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:54:04", + "topics": "container,info,debug" + }, + { + ".id": "*268E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:55:16", + "topics": "container,info,debug" + }, + { + ".id": "*268F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:56:16", + "topics": "container,info,debug" + }, + { + ".id": "*2690", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:56:36", + "topics": "container,info,debug" + }, + { + ".id": "*2691", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:56:56", + "topics": "container,info,debug" + }, + { + ".id": "*2692", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:57:16", + "topics": "container,info,debug" + }, + { + ".id": "*2693", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:57:36", + "topics": "container,info,debug" + }, + { + ".id": "*2694", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:58:47", + "topics": "container,info,debug" + }, + { + ".id": "*2695", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 11:59:47", + "topics": "container,info,debug" + }, + { + ".id": "*2696", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:00:07", + "topics": "container,info,debug" + }, + { + ".id": "*2697", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:00:27", + "topics": "container,info,debug" + }, + { + ".id": "*2698", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:00:47", + "topics": "container,info,debug" + }, + { + ".id": "*2699", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:01:07", + "topics": "container,info,debug" + }, + { + ".id": "*269A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:02:19", + "topics": "container,info,debug" + }, + { + ".id": "*269B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:03:19", + "topics": "container,info,debug" + }, + { + ".id": "*269C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:03:39", + "topics": "container,info,debug" + }, + { + ".id": "*269D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:03:59", + "topics": "container,info,debug" + }, + { + ".id": "*269E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:04:19", + "topics": "container,info,debug" + }, + { + ".id": "*269F", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-19 12:04:19", + "topics": "dhcp,info" + }, + { + ".id": "*26A0", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-19 12:04:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*26A1", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-19 12:04:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*26A2", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-19 12:04:21", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*26A3", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-19 12:04:21", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*26A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:04:39", + "topics": "container,info,debug" + }, + { + ".id": "*26A5", + "extra-info": "", + "message": "event down [ type: simple, host: 192.168.7.7 ]", + "time": "2026-01-19 12:05:27", + "topics": "netwatch,info" + }, + { + ".id": "*26A6", + "extra-info": "", + "message": "event down [ homeassistant ]", + "time": "2026-01-19 12:05:27", + "topics": "netwatch,info" + }, + { + ".id": "*26A7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:05:51", + "topics": "container,info,debug" + }, + { + ".id": "*26A8", + "extra-info": "", + "message": "event up [ type: simple, host: 192.168.7.7 ]", + "time": "2026-01-19 12:06:24", + "topics": "netwatch,info" + }, + { + ".id": "*26A9", + "extra-info": "", + "message": "event up [ homeassistant ]", + "time": "2026-01-19 12:06:24", + "topics": "netwatch,info" + }, + { + ".id": "*26AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:06:51", + "topics": "container,info,debug" + }, + { + ".id": "*26AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:07:11", + "topics": "container,info,debug" + }, + { + ".id": "*26AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:07:31", + "topics": "container,info,debug" + }, + { + ".id": "*26AD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:07:51", + "topics": "container,info,debug" + }, + { + ".id": "*26AE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:08:11", + "topics": "container,info,debug" + }, + { + ".id": "*26AF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:09:22", + "topics": "container,info,debug" + }, + { + ".id": "*26B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:10:22", + "topics": "container,info,debug" + }, + { + ".id": "*26B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:10:42", + "topics": "container,info,debug" + }, + { + ".id": "*26B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:11:02", + "topics": "container,info,debug" + }, + { + ".id": "*26B3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:11:22", + "topics": "container,info,debug" + }, + { + ".id": "*26B4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:11:42", + "topics": "container,info,debug" + }, + { + ".id": "*26B5", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-19 12:12:28", + "topics": "dhcp,info" + }, + { + ".id": "*26B6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:12:53", + "topics": "container,info,debug" + }, + { + ".id": "*26B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:13:53", + "topics": "container,info,debug" + }, + { + ".id": "*26B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:14:13", + "topics": "container,info,debug" + }, + { + ".id": "*26B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:14:33", + "topics": "container,info,debug" + }, + { + ".id": "*26BA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:14:53", + "topics": "container,info,debug" + }, + { + ".id": "*26BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:15:13", + "topics": "container,info,debug" + }, + { + ".id": "*26BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:16:25", + "topics": "container,info,debug" + }, + { + ".id": "*26BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:17:25", + "topics": "container,info,debug" + }, + { + ".id": "*26BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:17:45", + "topics": "container,info,debug" + }, + { + ".id": "*26BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:18:05", + "topics": "container,info,debug" + }, + { + ".id": "*26C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:18:25", + "topics": "container,info,debug" + }, + { + ".id": "*26C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:18:45", + "topics": "container,info,debug" + }, + { + ".id": "*26C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:19:57", + "topics": "container,info,debug" + }, + { + ".id": "*26C3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:20:57", + "topics": "container,info,debug" + }, + { + ".id": "*26C4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:21:17", + "topics": "container,info,debug" + }, + { + ".id": "*26C5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:21:37", + "topics": "container,info,debug" + }, + { + ".id": "*26C6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:21:57", + "topics": "container,info,debug" + }, + { + ".id": "*26C7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:22:17", + "topics": "container,info,debug" + }, + { + ".id": "*26C8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:23:28", + "topics": "container,info,debug" + }, + { + ".id": "*26C9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:24:28", + "topics": "container,info,debug" + }, + { + ".id": "*26CA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:24:48", + "topics": "container,info,debug" + }, + { + ".id": "*26CB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:25:08", + "topics": "container,info,debug" + }, + { + ".id": "*26CC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:25:28", + "topics": "container,info,debug" + }, + { + ".id": "*26CD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:25:48", + "topics": "container,info,debug" + }, + { + ".id": "*26CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:26:59", + "topics": "container,info,debug" + }, + { + ".id": "*26CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:27:59", + "topics": "container,info,debug" + }, + { + ".id": "*26D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:28:19", + "topics": "container,info,debug" + }, + { + ".id": "*26D1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:28:39", + "topics": "container,info,debug" + }, + { + ".id": "*26D2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:28:59", + "topics": "container,info,debug" + }, + { + ".id": "*26D3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:29:19", + "topics": "container,info,debug" + }, + { + ".id": "*26D4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:30:31", + "topics": "container,info,debug" + }, + { + ".id": "*26D5", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-19 12:30:56", + "topics": "dhcp,info" + }, + { + ".id": "*26D6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:31:31", + "topics": "container,info,debug" + }, + { + ".id": "*26D7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:31:51", + "topics": "container,info,debug" + }, + { + ".id": "*26D8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:32:11", + "topics": "container,info,debug" + }, + { + ".id": "*26D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:32:31", + "topics": "container,info,debug" + }, + { + ".id": "*26DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:32:51", + "topics": "container,info,debug" + }, + { + ".id": "*26DB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:34:02", + "topics": "container,info,debug" + }, + { + ".id": "*26DC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:35:02", + "topics": "container,info,debug" + }, + { + ".id": "*26DD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:35:22", + "topics": "container,info,debug" + }, + { + ".id": "*26DE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:35:42", + "topics": "container,info,debug" + }, + { + ".id": "*26DF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:36:02", + "topics": "container,info,debug" + }, + { + ".id": "*26E0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:36:22", + "topics": "container,info,debug" + }, + { + ".id": "*26E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:37:34", + "topics": "container,info,debug" + }, + { + ".id": "*26E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:38:34", + "topics": "container,info,debug" + }, + { + ".id": "*26E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:38:54", + "topics": "container,info,debug" + }, + { + ".id": "*26E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:39:14", + "topics": "container,info,debug" + }, + { + ".id": "*26E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:39:34", + "topics": "container,info,debug" + }, + { + ".id": "*26E6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:39:54", + "topics": "container,info,debug" + }, + { + ".id": "*26E7", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.109 for 30:E3:7A:E1:1F:9A DESKTOP-O581LSP", + "time": "2026-01-19 12:39:54", + "topics": "dhcp,info" + }, + { + ".id": "*26E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:41:05", + "topics": "container,info,debug" + }, + { + ".id": "*26E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:42:05", + "topics": "container,info,debug" + }, + { + ".id": "*26EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:42:25", + "topics": "container,info,debug" + }, + { + ".id": "*26EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:42:45", + "topics": "container,info,debug" + }, + { + ".id": "*26EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:43:05", + "topics": "container,info,debug" + }, + { + ".id": "*26ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:43:25", + "topics": "container,info,debug" + }, + { + ".id": "*26EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:44:37", + "topics": "container,info,debug" + }, + { + ".id": "*26EF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:45:37", + "topics": "container,info,debug" + }, + { + ".id": "*26F0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:45:57", + "topics": "container,info,debug" + }, + { + ".id": "*26F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:46:17", + "topics": "container,info,debug" + }, + { + ".id": "*26F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:46:37", + "topics": "container,info,debug" + }, + { + ".id": "*26F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:46:57", + "topics": "container,info,debug" + }, + { + ".id": "*26F4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:48:08", + "topics": "container,info,debug" + }, + { + ".id": "*26F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:49:08", + "topics": "container,info,debug" + }, + { + ".id": "*26F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:49:28", + "topics": "container,info,debug" + }, + { + ".id": "*26F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:49:48", + "topics": "container,info,debug" + }, + { + ".id": "*26F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:50:08", + "topics": "container,info,debug" + }, + { + ".id": "*26F9", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-19 12:50:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*26FA", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-19 12:50:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*26FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:50:28", + "topics": "container,info,debug" + }, + { + ".id": "*26FC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:51:40", + "topics": "container,info,debug" + }, + { + ".id": "*26FD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:52:40", + "topics": "container,info,debug" + }, + { + ".id": "*26FE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:53:00", + "topics": "container,info,debug" + }, + { + ".id": "*26FF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:53:20", + "topics": "container,info,debug" + }, + { + ".id": "*2700", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:53:40", + "topics": "container,info,debug" + }, + { + ".id": "*2701", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:54:00", + "topics": "container,info,debug" + }, + { + ".id": "*2702", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:55:11", + "topics": "container,info,debug" + }, + { + ".id": "*2703", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:56:11", + "topics": "container,info,debug" + }, + { + ".id": "*2704", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:56:31", + "topics": "container,info,debug" + }, + { + ".id": "*2705", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:56:51", + "topics": "container,info,debug" + }, + { + ".id": "*2706", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:57:11", + "topics": "container,info,debug" + }, + { + ".id": "*2707", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:57:31", + "topics": "container,info,debug" + }, + { + ".id": "*2708", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.108 for D2:E5:A0:12:87:85 OPPO-A5-2020", + "time": "2026-01-19 12:58:26", + "topics": "dhcp,info" + }, + { + ".id": "*2709", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:58:43", + "topics": "container,info,debug" + }, + { + ".id": "*270A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 12:59:43", + "topics": "container,info,debug" + }, + { + ".id": "*270B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:00:03", + "topics": "container,info,debug" + }, + { + ".id": "*270C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:00:23", + "topics": "container,info,debug" + }, + { + ".id": "*270D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:00:43", + "topics": "container,info,debug" + }, + { + ".id": "*270E", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-19 13:00:56", + "topics": "dhcp,info" + }, + { + ".id": "*270F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:01:03", + "topics": "container,info,debug" + }, + { + ".id": "*2710", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-19 13:02:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2711", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-19 13:02:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2712", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged in", + "time": "2026-01-19 13:02:14", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2713", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-19 13:02:14", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2714", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:02:14", + "topics": "container,info,debug" + }, + { + ".id": "*2715", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-19 13:02:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2716", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-19 13:02:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2717", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:03:15", + "topics": "container,info,debug" + }, + { + ".id": "*2718", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:03:35", + "topics": "container,info,debug" + }, + { + ".id": "*2719", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:03:55", + "topics": "container,info,debug" + }, + { + ".id": "*271A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:04:15", + "topics": "container,info,debug" + }, + { + ".id": "*271B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:04:35", + "topics": "container,info,debug" + }, + { + ".id": "*271C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:05:46", + "topics": "container,info,debug" + }, + { + ".id": "*271D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:06:46", + "topics": "container,info,debug" + }, + { + ".id": "*271E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:07:06", + "topics": "container,info,debug" + }, + { + ".id": "*271F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:07:26", + "topics": "container,info,debug" + }, + { + ".id": "*2720", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:07:46", + "topics": "container,info,debug" + }, + { + ".id": "*2721", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:08:06", + "topics": "container,info,debug" + }, + { + ".id": "*2722", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:09:18", + "topics": "container,info,debug" + }, + { + ".id": "*2723", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:10:18", + "topics": "container,info,debug" + }, + { + ".id": "*2724", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:10:38", + "topics": "container,info,debug" + }, + { + ".id": "*2725", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:10:58", + "topics": "container,info,debug" + }, + { + ".id": "*2726", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:11:18", + "topics": "container,info,debug" + }, + { + ".id": "*2727", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:11:38", + "topics": "container,info,debug" + }, + { + ".id": "*2728", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:12:49", + "topics": "container,info,debug" + }, + { + ".id": "*2729", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:13:49", + "topics": "container,info,debug" + }, + { + ".id": "*272A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:14:09", + "topics": "container,info,debug" + }, + { + ".id": "*272B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:14:29", + "topics": "container,info,debug" + }, + { + ".id": "*272C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:14:49", + "topics": "container,info,debug" + }, + { + ".id": "*272D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:15:09", + "topics": "container,info,debug" + }, + { + ".id": "*272E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:16:20", + "topics": "container,info,debug" + }, + { + ".id": "*272F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:17:20", + "topics": "container,info,debug" + }, + { + ".id": "*2730", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:17:40", + "topics": "container,info,debug" + }, + { + ".id": "*2731", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:18:00", + "topics": "container,info,debug" + }, + { + ".id": "*2732", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:18:20", + "topics": "container,info,debug" + }, + { + ".id": "*2733", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:18:40", + "topics": "container,info,debug" + }, + { + ".id": "*2734", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-19 13:18:48", + "topics": "dhcp,info" + }, + { + ".id": "*2735", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:19:52", + "topics": "container,info,debug" + }, + { + ".id": "*2736", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:20:52", + "topics": "container,info,debug" + }, + { + ".id": "*2737", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:21:12", + "topics": "container,info,debug" + }, + { + ".id": "*2738", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:21:32", + "topics": "container,info,debug" + }, + { + ".id": "*2739", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:21:52", + "topics": "container,info,debug" + }, + { + ".id": "*273A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:22:12", + "topics": "container,info,debug" + }, + { + ".id": "*273B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:23:23", + "topics": "container,info,debug" + }, + { + ".id": "*273C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:24:23", + "topics": "container,info,debug" + }, + { + ".id": "*273D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:24:43", + "topics": "container,info,debug" + }, + { + ".id": "*273E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:25:03", + "topics": "container,info,debug" + }, + { + ".id": "*273F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:25:23", + "topics": "container,info,debug" + }, + { + ".id": "*2740", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:25:43", + "topics": "container,info,debug" + }, + { + ".id": "*2741", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:26:55", + "topics": "container,info,debug" + }, + { + ".id": "*2742", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-19 13:27:29", + "topics": "dhcp,info" + }, + { + ".id": "*2743", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:27:55", + "topics": "container,info,debug" + }, + { + ".id": "*2744", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:28:15", + "topics": "container,info,debug" + }, + { + ".id": "*2745", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:28:35", + "topics": "container,info,debug" + }, + { + ".id": "*2746", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:28:55", + "topics": "container,info,debug" + }, + { + ".id": "*2747", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:29:15", + "topics": "container,info,debug" + }, + { + ".id": "*2748", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:30:27", + "topics": "container,info,debug" + }, + { + ".id": "*2749", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:31:27", + "topics": "container,info,debug" + }, + { + ".id": "*274A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:31:47", + "topics": "container,info,debug" + }, + { + ".id": "*274B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:32:07", + "topics": "container,info,debug" + }, + { + ".id": "*274C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:32:27", + "topics": "container,info,debug" + }, + { + ".id": "*274D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:32:47", + "topics": "container,info,debug" + }, + { + ".id": "*274E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:33:57", + "topics": "container,info,debug" + }, + { + ".id": "*274F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:34:57", + "topics": "container,info,debug" + }, + { + ".id": "*2750", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:35:17", + "topics": "container,info,debug" + }, + { + ".id": "*2751", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:35:37", + "topics": "container,info,debug" + }, + { + ".id": "*2752", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:35:57", + "topics": "container,info,debug" + }, + { + ".id": "*2753", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:36:17", + "topics": "container,info,debug" + }, + { + ".id": "*2754", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:37:29", + "topics": "container,info,debug" + }, + { + ".id": "*2755", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:38:29", + "topics": "container,info,debug" + }, + { + ".id": "*2756", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:38:49", + "topics": "container,info,debug" + }, + { + ".id": "*2757", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:39:09", + "topics": "container,info,debug" + }, + { + ".id": "*2758", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:39:29", + "topics": "container,info,debug" + }, + { + ".id": "*2759", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:39:49", + "topics": "container,info,debug" + }, + { + ".id": "*275A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:41:00", + "topics": "container,info,debug" + }, + { + ".id": "*275B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:42:00", + "topics": "container,info,debug" + }, + { + ".id": "*275C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:42:20", + "topics": "container,info,debug" + }, + { + ".id": "*275D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:42:40", + "topics": "container,info,debug" + }, + { + ".id": "*275E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:43:00", + "topics": "container,info,debug" + }, + { + ".id": "*275F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:43:20", + "topics": "container,info,debug" + }, + { + ".id": "*2760", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:44:32", + "topics": "container,info,debug" + }, + { + ".id": "*2761", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:45:32", + "topics": "container,info,debug" + }, + { + ".id": "*2762", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:45:52", + "topics": "container,info,debug" + }, + { + ".id": "*2763", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:46:12", + "topics": "container,info,debug" + }, + { + ".id": "*2764", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:46:32", + "topics": "container,info,debug" + }, + { + ".id": "*2765", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:46:52", + "topics": "container,info,debug" + }, + { + ".id": "*2766", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:48:03", + "topics": "container,info,debug" + }, + { + ".id": "*2767", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:49:03", + "topics": "container,info,debug" + }, + { + ".id": "*2768", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:49:23", + "topics": "container,info,debug" + }, + { + ".id": "*2769", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:49:43", + "topics": "container,info,debug" + }, + { + ".id": "*276A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:50:03", + "topics": "container,info,debug" + }, + { + ".id": "*276B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:50:23", + "topics": "container,info,debug" + }, + { + ".id": "*276C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:51:34", + "topics": "container,info,debug" + }, + { + ".id": "*276D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:52:34", + "topics": "container,info,debug" + }, + { + ".id": "*276E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:52:54", + "topics": "container,info,debug" + }, + { + ".id": "*276F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:53:14", + "topics": "container,info,debug" + }, + { + ".id": "*2770", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:53:34", + "topics": "container,info,debug" + }, + { + ".id": "*2771", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:53:54", + "topics": "container,info,debug" + }, + { + ".id": "*2772", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:55:06", + "topics": "container,info,debug" + }, + { + ".id": "*2773", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:56:06", + "topics": "container,info,debug" + }, + { + ".id": "*2774", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:56:26", + "topics": "container,info,debug" + }, + { + ".id": "*2775", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:56:46", + "topics": "container,info,debug" + }, + { + ".id": "*2776", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:57:06", + "topics": "container,info,debug" + }, + { + ".id": "*2777", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:57:26", + "topics": "container,info,debug" + }, + { + ".id": "*2778", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:58:37", + "topics": "container,info,debug" + }, + { + ".id": "*2779", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.106 for 32:3A:9F:3D:78:A6 V2029", + "time": "2026-01-19 13:58:51", + "topics": "dhcp,info" + }, + { + ".id": "*277A", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.106 for 32:3A:9F:3D:78:A6 V2029", + "time": "2026-01-19 13:58:51", + "topics": "dhcp,info" + }, + { + ".id": "*277B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:59:37", + "topics": "container,info,debug" + }, + { + ".id": "*277C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 13:59:57", + "topics": "container,info,debug" + }, + { + ".id": "*277D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:00:17", + "topics": "container,info,debug" + }, + { + ".id": "*277E", + "extra-info": "", + "message": "event down [ homeassistant ]", + "time": "2026-01-19 14:00:27", + "topics": "netwatch,info" + }, + { + ".id": "*277F", + "extra-info": "", + "message": "event down [ type: simple, host: 192.168.7.7 ]", + "time": "2026-01-19 14:00:27", + "topics": "netwatch,info" + }, + { + ".id": "*2780", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:00:37", + "topics": "container,info,debug" + }, + { + ".id": "*2781", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:00:57", + "topics": "container,info,debug" + }, + { + ".id": "*2782", + "extra-info": "", + "message": "event up [ homeassistant ]", + "time": "2026-01-19 14:01:24", + "topics": "netwatch,info" + }, + { + ".id": "*2783", + "extra-info": "", + "message": "event up [ type: simple, host: 192.168.7.7 ]", + "time": "2026-01-19 14:01:24", + "topics": "netwatch,info" + }, + { + ".id": "*2784", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:02:09", + "topics": "container,info,debug" + }, + { + ".id": "*2785", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:03:09", + "topics": "container,info,debug" + }, + { + ".id": "*2786", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:03:29", + "topics": "container,info,debug" + }, + { + ".id": "*2787", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:03:49", + "topics": "container,info,debug" + }, + { + ".id": "*2788", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:04:09", + "topics": "container,info,debug" + }, + { + ".id": "*2789", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:04:29", + "topics": "container,info,debug" + }, + { + ".id": "*278A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:05:40", + "topics": "container,info,debug" + }, + { + ".id": "*278B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:06:40", + "topics": "container,info,debug" + }, + { + ".id": "*278C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:07:00", + "topics": "container,info,debug" + }, + { + ".id": "*278D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:07:20", + "topics": "container,info,debug" + }, + { + ".id": "*278E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:07:40", + "topics": "container,info,debug" + }, + { + ".id": "*278F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:08:00", + "topics": "container,info,debug" + }, + { + ".id": "*2790", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:09:12", + "topics": "container,info,debug" + }, + { + ".id": "*2791", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:10:12", + "topics": "container,info,debug" + }, + { + ".id": "*2792", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:10:32", + "topics": "container,info,debug" + }, + { + ".id": "*2793", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:10:52", + "topics": "container,info,debug" + }, + { + ".id": "*2794", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:11:12", + "topics": "container,info,debug" + }, + { + ".id": "*2795", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:11:32", + "topics": "container,info,debug" + }, + { + ".id": "*2796", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:12:44", + "topics": "container,info,debug" + }, + { + ".id": "*2797", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:13:44", + "topics": "container,info,debug" + }, + { + ".id": "*2798", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:14:04", + "topics": "container,info,debug" + }, + { + ".id": "*2799", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:14:24", + "topics": "container,info,debug" + }, + { + ".id": "*279A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:14:44", + "topics": "container,info,debug" + }, + { + ".id": "*279B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:15:04", + "topics": "container,info,debug" + }, + { + ".id": "*279C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:16:15", + "topics": "container,info,debug" + }, + { + ".id": "*279D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:17:15", + "topics": "container,info,debug" + }, + { + ".id": "*279E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:17:35", + "topics": "container,info,debug" + }, + { + ".id": "*279F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:17:55", + "topics": "container,info,debug" + }, + { + ".id": "*27A0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:18:15", + "topics": "container,info,debug" + }, + { + ".id": "*27A1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:18:35", + "topics": "container,info,debug" + }, + { + ".id": "*27A2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:19:47", + "topics": "container,info,debug" + }, + { + ".id": "*27A3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:20:47", + "topics": "container,info,debug" + }, + { + ".id": "*27A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:21:07", + "topics": "container,info,debug" + }, + { + ".id": "*27A5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:21:27", + "topics": "container,info,debug" + }, + { + ".id": "*27A6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:21:47", + "topics": "container,info,debug" + }, + { + ".id": "*27A7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:22:07", + "topics": "container,info,debug" + }, + { + ".id": "*27A8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:23:18", + "topics": "container,info,debug" + }, + { + ".id": "*27A9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:24:18", + "topics": "container,info,debug" + }, + { + ".id": "*27AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:24:38", + "topics": "container,info,debug" + }, + { + ".id": "*27AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:24:58", + "topics": "container,info,debug" + }, + { + ".id": "*27AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:25:18", + "topics": "container,info,debug" + }, + { + ".id": "*27AD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:25:38", + "topics": "container,info,debug" + }, + { + ".id": "*27AE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:26:49", + "topics": "container,info,debug" + }, + { + ".id": "*27AF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:27:49", + "topics": "container,info,debug" + }, + { + ".id": "*27B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:28:09", + "topics": "container,info,debug" + }, + { + ".id": "*27B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:28:29", + "topics": "container,info,debug" + }, + { + ".id": "*27B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:28:49", + "topics": "container,info,debug" + }, + { + ".id": "*27B3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:29:09", + "topics": "container,info,debug" + }, + { + ".id": "*27B4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:30:21", + "topics": "container,info,debug" + }, + { + ".id": "*27B5", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.107 for CC:28:AA:B0:08:51 DESKTOP-B9HJRO5", + "time": "2026-01-19 14:30:40", + "topics": "dhcp,info" + }, + { + ".id": "*27B6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:31:21", + "topics": "container,info,debug" + }, + { + ".id": "*27B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:31:41", + "topics": "container,info,debug" + }, + { + ".id": "*27B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:32:01", + "topics": "container,info,debug" + }, + { + ".id": "*27B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:32:21", + "topics": "container,info,debug" + }, + { + ".id": "*27BA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:32:41", + "topics": "container,info,debug" + }, + { + ".id": "*27BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:33:52", + "topics": "container,info,debug" + }, + { + ".id": "*27BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:34:52", + "topics": "container,info,debug" + }, + { + ".id": "*27BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:35:12", + "topics": "container,info,debug" + }, + { + ".id": "*27BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:35:32", + "topics": "container,info,debug" + }, + { + ".id": "*27BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:35:52", + "topics": "container,info,debug" + }, + { + ".id": "*27C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:36:12", + "topics": "container,info,debug" + }, + { + ".id": "*27C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:37:24", + "topics": "container,info,debug" + }, + { + ".id": "*27C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:38:24", + "topics": "container,info,debug" + }, + { + ".id": "*27C3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:38:44", + "topics": "container,info,debug" + }, + { + ".id": "*27C4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:39:04", + "topics": "container,info,debug" + }, + { + ".id": "*27C5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:39:24", + "topics": "container,info,debug" + }, + { + ".id": "*27C6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:39:44", + "topics": "container,info,debug" + }, + { + ".id": "*27C7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:40:55", + "topics": "container,info,debug" + }, + { + ".id": "*27C8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:41:55", + "topics": "container,info,debug" + }, + { + ".id": "*27C9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:42:15", + "topics": "container,info,debug" + }, + { + ".id": "*27CA", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-19 14:42:32", + "topics": "dhcp,info" + }, + { + ".id": "*27CB", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-19 14:42:32", + "topics": "dhcp,info" + }, + { + ".id": "*27CC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:42:35", + "topics": "container,info,debug" + }, + { + ".id": "*27CD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:42:55", + "topics": "container,info,debug" + }, + { + ".id": "*27CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:43:15", + "topics": "container,info,debug" + }, + { + ".id": "*27CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:44:26", + "topics": "container,info,debug" + }, + { + ".id": "*27D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:45:26", + "topics": "container,info,debug" + }, + { + ".id": "*27D1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:45:46", + "topics": "container,info,debug" + }, + { + ".id": "*27D2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:46:06", + "topics": "container,info,debug" + }, + { + ".id": "*27D3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:46:26", + "topics": "container,info,debug" + }, + { + ".id": "*27D4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:46:46", + "topics": "container,info,debug" + }, + { + ".id": "*27D5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:47:58", + "topics": "container,info,debug" + }, + { + ".id": "*27D6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:48:58", + "topics": "container,info,debug" + }, + { + ".id": "*27D7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:49:18", + "topics": "container,info,debug" + }, + { + ".id": "*27D8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:49:38", + "topics": "container,info,debug" + }, + { + ".id": "*27D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:49:58", + "topics": "container,info,debug" + }, + { + ".id": "*27DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:50:18", + "topics": "container,info,debug" + }, + { + ".id": "*27DB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:51:29", + "topics": "container,info,debug" + }, + { + ".id": "*27DC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:52:29", + "topics": "container,info,debug" + }, + { + ".id": "*27DD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:52:49", + "topics": "container,info,debug" + }, + { + ".id": "*27DE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:53:09", + "topics": "container,info,debug" + }, + { + ".id": "*27DF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:53:29", + "topics": "container,info,debug" + }, + { + ".id": "*27E0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:53:49", + "topics": "container,info,debug" + }, + { + ".id": "*27E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:55:01", + "topics": "container,info,debug" + }, + { + ".id": "*27E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:56:01", + "topics": "container,info,debug" + }, + { + ".id": "*27E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:56:21", + "topics": "container,info,debug" + }, + { + ".id": "*27E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:56:41", + "topics": "container,info,debug" + }, + { + ".id": "*27E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:57:01", + "topics": "container,info,debug" + }, + { + ".id": "*27E6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:57:21", + "topics": "container,info,debug" + }, + { + ".id": "*27E7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:58:32", + "topics": "container,info,debug" + }, + { + ".id": "*27E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:59:32", + "topics": "container,info,debug" + }, + { + ".id": "*27E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 14:59:52", + "topics": "container,info,debug" + }, + { + ".id": "*27EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:00:12", + "topics": "container,info,debug" + }, + { + ".id": "*27EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:00:32", + "topics": "container,info,debug" + }, + { + ".id": "*27EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:00:52", + "topics": "container,info,debug" + }, + { + ".id": "*27ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:02:04", + "topics": "container,info,debug" + }, + { + ".id": "*27EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:03:04", + "topics": "container,info,debug" + }, + { + ".id": "*27EF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:03:24", + "topics": "container,info,debug" + }, + { + ".id": "*27F0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:03:44", + "topics": "container,info,debug" + }, + { + ".id": "*27F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:04:04", + "topics": "container,info,debug" + }, + { + ".id": "*27F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:04:24", + "topics": "container,info,debug" + }, + { + ".id": "*27F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:05:35", + "topics": "container,info,debug" + }, + { + ".id": "*27F4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:06:35", + "topics": "container,info,debug" + }, + { + ".id": "*27F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:06:55", + "topics": "container,info,debug" + }, + { + ".id": "*27F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:07:15", + "topics": "container,info,debug" + }, + { + ".id": "*27F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:07:35", + "topics": "container,info,debug" + }, + { + ".id": "*27F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:07:55", + "topics": "container,info,debug" + }, + { + ".id": "*27F9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:09:07", + "topics": "container,info,debug" + }, + { + ".id": "*27FA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:10:07", + "topics": "container,info,debug" + }, + { + ".id": "*27FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:10:27", + "topics": "container,info,debug" + }, + { + ".id": "*27FC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:10:47", + "topics": "container,info,debug" + }, + { + ".id": "*27FD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:11:07", + "topics": "container,info,debug" + }, + { + ".id": "*27FE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:11:27", + "topics": "container,info,debug" + }, + { + ".id": "*27FF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:12:38", + "topics": "container,info,debug" + }, + { + ".id": "*2800", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:13:38", + "topics": "container,info,debug" + }, + { + ".id": "*2801", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:13:58", + "topics": "container,info,debug" + }, + { + ".id": "*2802", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:14:18", + "topics": "container,info,debug" + }, + { + ".id": "*2803", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:14:38", + "topics": "container,info,debug" + }, + { + ".id": "*2804", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:14:58", + "topics": "container,info,debug" + }, + { + ".id": "*2805", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:16:10", + "topics": "container,info,debug" + }, + { + ".id": "*2806", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:17:10", + "topics": "container,info,debug" + }, + { + ".id": "*2807", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:17:30", + "topics": "container,info,debug" + }, + { + ".id": "*2808", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:17:50", + "topics": "container,info,debug" + }, + { + ".id": "*2809", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:18:10", + "topics": "container,info,debug" + }, + { + ".id": "*280A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:18:30", + "topics": "container,info,debug" + }, + { + ".id": "*280B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:19:41", + "topics": "container,info,debug" + }, + { + ".id": "*280C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:20:41", + "topics": "container,info,debug" + }, + { + ".id": "*280D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:21:01", + "topics": "container,info,debug" + }, + { + ".id": "*280E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:21:21", + "topics": "container,info,debug" + }, + { + ".id": "*280F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:21:41", + "topics": "container,info,debug" + }, + { + ".id": "*2810", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:22:01", + "topics": "container,info,debug" + }, + { + ".id": "*2811", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:23:13", + "topics": "container,info,debug" + }, + { + ".id": "*2812", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:24:13", + "topics": "container,info,debug" + }, + { + ".id": "*2813", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:24:33", + "topics": "container,info,debug" + }, + { + ".id": "*2814", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:24:53", + "topics": "container,info,debug" + }, + { + ".id": "*2815", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:25:13", + "topics": "container,info,debug" + }, + { + ".id": "*2816", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:25:33", + "topics": "container,info,debug" + }, + { + ".id": "*2817", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:26:45", + "topics": "container,info,debug" + }, + { + ".id": "*2818", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:27:45", + "topics": "container,info,debug" + }, + { + ".id": "*2819", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:28:05", + "topics": "container,info,debug" + }, + { + ".id": "*281A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:28:25", + "topics": "container,info,debug" + }, + { + ".id": "*281B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:28:45", + "topics": "container,info,debug" + }, + { + ".id": "*281C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:29:05", + "topics": "container,info,debug" + }, + { + ".id": "*281D", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 15:29:19", + "topics": "dhcp,info" + }, + { + ".id": "*281E", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-19 15:29:24", + "topics": "hotspot,info,debug" + }, + { + ".id": "*281F", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: lost dhcp lease", + "time": "2026-01-19 15:29:24", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2820", + "extra-info": "", + "message": "dhcp-hotspot offering lease 10.5.50.126 for DE:2E:8D:A1:3A:B1 without success", + "time": "2026-01-19 15:29:37", + "topics": "dhcp,warning" + }, + { + ".id": "*2821", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 15:29:37", + "topics": "dhcp,info" + }, + { + ".id": "*2822", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-19 15:29:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2823", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): trying to log in by mac-cookie", + "time": "2026-01-19 15:29:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2824", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged in", + "time": "2026-01-19 15:29:37", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2825", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged in", + "time": "2026-01-19 15:29:37", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2826", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-19 15:29:52", + "topics": "dhcp,info" + }, + { + ".id": "*2827", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:30:16", + "topics": "container,info,debug" + }, + { + ".id": "*2828", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:31:16", + "topics": "container,info,debug" + }, + { + ".id": "*2829", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:31:36", + "topics": "container,info,debug" + }, + { + ".id": "*282A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:31:56", + "topics": "container,info,debug" + }, + { + ".id": "*282B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:32:16", + "topics": "container,info,debug" + }, + { + ".id": "*282C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:32:36", + "topics": "container,info,debug" + }, + { + ".id": "*282D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:33:47", + "topics": "container,info,debug" + }, + { + ".id": "*282E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:34:47", + "topics": "container,info,debug" + }, + { + ".id": "*282F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:35:07", + "topics": "container,info,debug" + }, + { + ".id": "*2830", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:35:27", + "topics": "container,info,debug" + }, + { + ".id": "*2831", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:35:47", + "topics": "container,info,debug" + }, + { + ".id": "*2832", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:36:07", + "topics": "container,info,debug" + }, + { + ".id": "*2833", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:37:19", + "topics": "container,info,debug" + }, + { + ".id": "*2834", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 15:37:47", + "topics": "dhcp,info" + }, + { + ".id": "*2835", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 15:37:47", + "topics": "dhcp,info" + }, + { + ".id": "*2836", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:38:19", + "topics": "container,info,debug" + }, + { + ".id": "*2837", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:38:39", + "topics": "container,info,debug" + }, + { + ".id": "*2838", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:38:59", + "topics": "container,info,debug" + }, + { + ".id": "*2839", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:39:19", + "topics": "container,info,debug" + }, + { + ".id": "*283A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:39:39", + "topics": "container,info,debug" + }, + { + ".id": "*283B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:40:51", + "topics": "container,info,debug" + }, + { + ".id": "*283C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:41:51", + "topics": "container,info,debug" + }, + { + ".id": "*283D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:42:11", + "topics": "container,info,debug" + }, + { + ".id": "*283E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:42:31", + "topics": "container,info,debug" + }, + { + ".id": "*283F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:42:51", + "topics": "container,info,debug" + }, + { + ".id": "*2840", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:43:11", + "topics": "container,info,debug" + }, + { + ".id": "*2841", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:44:22", + "topics": "container,info,debug" + }, + { + ".id": "*2842", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:45:22", + "topics": "container,info,debug" + }, + { + ".id": "*2843", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:45:42", + "topics": "container,info,debug" + }, + { + ".id": "*2844", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:46:02", + "topics": "container,info,debug" + }, + { + ".id": "*2845", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:46:22", + "topics": "container,info,debug" + }, + { + ".id": "*2846", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:46:42", + "topics": "container,info,debug" + }, + { + ".id": "*2847", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:47:54", + "topics": "container,info,debug" + }, + { + ".id": "*2848", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-19 15:48:20", + "topics": "dhcp,info" + }, + { + ".id": "*2849", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-19 15:48:20", + "topics": "hotspot,info,debug" + }, + { + ".id": "*284A", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-19 15:48:20", + "topics": "hotspot,info,debug" + }, + { + ".id": "*284B", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged in", + "time": "2026-01-19 15:48:20", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*284C", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-19 15:48:20", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*284D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:48:54", + "topics": "container,info,debug" + }, + { + ".id": "*284E", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-19 15:49:08", + "topics": "dhcp,info" + }, + { + ".id": "*284F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:49:14", + "topics": "container,info,debug" + }, + { + ".id": "*2850", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:49:34", + "topics": "container,info,debug" + }, + { + ".id": "*2851", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:49:54", + "topics": "container,info,debug" + }, + { + ".id": "*2852", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:50:14", + "topics": "container,info,debug" + }, + { + ".id": "*2853", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:51:25", + "topics": "container,info,debug" + }, + { + ".id": "*2854", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:52:25", + "topics": "container,info,debug" + }, + { + ".id": "*2855", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:52:45", + "topics": "container,info,debug" + }, + { + ".id": "*2856", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:53:05", + "topics": "container,info,debug" + }, + { + ".id": "*2857", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:53:25", + "topics": "container,info,debug" + }, + { + ".id": "*2858", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:53:46", + "topics": "container,info,debug" + }, + { + ".id": "*2859", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:54:57", + "topics": "container,info,debug" + }, + { + ".id": "*285A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:55:57", + "topics": "container,info,debug" + }, + { + ".id": "*285B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:56:17", + "topics": "container,info,debug" + }, + { + ".id": "*285C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:56:37", + "topics": "container,info,debug" + }, + { + ".id": "*285D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:56:57", + "topics": "container,info,debug" + }, + { + ".id": "*285E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:57:17", + "topics": "container,info,debug" + }, + { + ".id": "*285F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:58:29", + "topics": "container,info,debug" + }, + { + ".id": "*2860", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:59:29", + "topics": "container,info,debug" + }, + { + ".id": "*2861", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 15:59:49", + "topics": "container,info,debug" + }, + { + ".id": "*2862", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:00:09", + "topics": "container,info,debug" + }, + { + ".id": "*2863", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:00:29", + "topics": "container,info,debug" + }, + { + ".id": "*2864", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:00:49", + "topics": "container,info,debug" + }, + { + ".id": "*2865", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:02:00", + "topics": "container,info,debug" + }, + { + ".id": "*2866", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:03:00", + "topics": "container,info,debug" + }, + { + ".id": "*2867", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:03:20", + "topics": "container,info,debug" + }, + { + ".id": "*2868", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:03:40", + "topics": "container,info,debug" + }, + { + ".id": "*2869", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:04:00", + "topics": "container,info,debug" + }, + { + ".id": "*286A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:04:20", + "topics": "container,info,debug" + }, + { + ".id": "*286B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:05:32", + "topics": "container,info,debug" + }, + { + ".id": "*286C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:06:32", + "topics": "container,info,debug" + }, + { + ".id": "*286D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:06:52", + "topics": "container,info,debug" + }, + { + ".id": "*286E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:07:12", + "topics": "container,info,debug" + }, + { + ".id": "*286F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:07:32", + "topics": "container,info,debug" + }, + { + ".id": "*2870", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:07:52", + "topics": "container,info,debug" + }, + { + ".id": "*2871", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:09:03", + "topics": "container,info,debug" + }, + { + ".id": "*2872", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:10:03", + "topics": "container,info,debug" + }, + { + ".id": "*2873", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:10:23", + "topics": "container,info,debug" + }, + { + ".id": "*2874", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:10:43", + "topics": "container,info,debug" + }, + { + ".id": "*2875", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:11:03", + "topics": "container,info,debug" + }, + { + ".id": "*2876", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:11:23", + "topics": "container,info,debug" + }, + { + ".id": "*2877", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:12:35", + "topics": "container,info,debug" + }, + { + ".id": "*2878", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:13:35", + "topics": "container,info,debug" + }, + { + ".id": "*2879", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:13:55", + "topics": "container,info,debug" + }, + { + ".id": "*287A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:14:15", + "topics": "container,info,debug" + }, + { + ".id": "*287B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:14:35", + "topics": "container,info,debug" + }, + { + ".id": "*287C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:14:55", + "topics": "container,info,debug" + }, + { + ".id": "*287D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:16:06", + "topics": "container,info,debug" + }, + { + ".id": "*287E", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.117 for 50:5B:C2:82:19:0F DESKTOP-EVNK9CF", + "time": "2026-01-19 16:16:36", + "topics": "dhcp,info" + }, + { + ".id": "*287F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:17:06", + "topics": "container,info,debug" + }, + { + ".id": "*2880", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:17:26", + "topics": "container,info,debug" + }, + { + ".id": "*2881", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:17:46", + "topics": "container,info,debug" + }, + { + ".id": "*2882", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:18:06", + "topics": "container,info,debug" + }, + { + ".id": "*2883", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:18:26", + "topics": "container,info,debug" + }, + { + ".id": "*2884", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:19:38", + "topics": "container,info,debug" + }, + { + ".id": "*2885", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:20:38", + "topics": "container,info,debug" + }, + { + ".id": "*2886", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:20:58", + "topics": "container,info,debug" + }, + { + ".id": "*2887", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:21:18", + "topics": "container,info,debug" + }, + { + ".id": "*2888", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:21:38", + "topics": "container,info,debug" + }, + { + ".id": "*2889", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:21:58", + "topics": "container,info,debug" + }, + { + ".id": "*288A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:23:09", + "topics": "container,info,debug" + }, + { + ".id": "*288B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:24:09", + "topics": "container,info,debug" + }, + { + ".id": "*288C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:24:29", + "topics": "container,info,debug" + }, + { + ".id": "*288D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:24:49", + "topics": "container,info,debug" + }, + { + ".id": "*288E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:25:09", + "topics": "container,info,debug" + }, + { + ".id": "*288F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:25:29", + "topics": "container,info,debug" + }, + { + ".id": "*2890", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:26:41", + "topics": "container,info,debug" + }, + { + ".id": "*2891", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:27:41", + "topics": "container,info,debug" + }, + { + ".id": "*2892", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:28:01", + "topics": "container,info,debug" + }, + { + ".id": "*2893", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:28:21", + "topics": "container,info,debug" + }, + { + ".id": "*2894", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:28:41", + "topics": "container,info,debug" + }, + { + ".id": "*2895", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:29:01", + "topics": "container,info,debug" + }, + { + ".id": "*2896", + "extra-info": "", + "message": "tb62 (10.5.50.117): trying to log in by http-chap", + "time": "2026-01-19 16:29:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2897", + "extra-info": "", + "message": "->: tb62 (10.5.50.117): trying to log in by http-chap", + "time": "2026-01-19 16:29:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2898", + "extra-info": "", + "message": "tb62 (10.5.50.117): logged in", + "time": "2026-01-19 16:29:39", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2899", + "extra-info": "", + "message": "->: tb62 (10.5.50.117): logged in", + "time": "2026-01-19 16:29:39", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*289A", + "extra-info": "", + "message": "new script scheduled by hotspot (*8 = /system scheduler add disabled=no interval=1h name=tb62 start-date=2026-01-19)", + "time": "2026-01-19 16:29:39", + "topics": "system,info" + }, + { + ".id": "*289B", + "extra-info": "", + "message": "hotspot user tb62 changed by hotspot/action:0 (/ip hotspot user set [ find ] comment=\"2026-01-19 17:29:39 X\")", + "time": "2026-01-19 16:29:41", + "topics": "system,info" + }, + { + ".id": "*289C", + "extra-info": "", + "message": "script removed from scheduler by hotspot/action:1 (/system scheduler remove *8)", + "time": "2026-01-19 16:29:41", + "topics": "system,info" + }, + { + ".id": "*289D", + "extra-info": "", + "message": "new script added by hotspot (*A3 = /system script add comment=mikhmon name=\"2026-01-19-|-16:29:41-|-tb62-|-800-|-10.5.50.117-|-50:5B:C2:82:19:0F-|-1h-|-1_jam-|-vc-158-06.30.25-1 jam\" owner=202-19 source=2026-01-19)", + "time": "2026-01-19 16:29:41", + "topics": "system,info" + }, + { + ".id": "*289E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:30:12", + "topics": "container,info,debug" + }, + { + ".id": "*289F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:31:12", + "topics": "container,info,debug" + }, + { + ".id": "*28A0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:31:32", + "topics": "container,info,debug" + }, + { + ".id": "*28A1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:31:52", + "topics": "container,info,debug" + }, + { + ".id": "*28A2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:32:12", + "topics": "container,info,debug" + }, + { + ".id": "*28A3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:32:32", + "topics": "container,info,debug" + }, + { + ".id": "*28A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:33:44", + "topics": "container,info,debug" + }, + { + ".id": "*28A5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:34:44", + "topics": "container,info,debug" + }, + { + ".id": "*28A6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:35:04", + "topics": "container,info,debug" + }, + { + ".id": "*28A7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:35:24", + "topics": "container,info,debug" + }, + { + ".id": "*28A8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:35:44", + "topics": "container,info,debug" + }, + { + ".id": "*28A9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:36:04", + "topics": "container,info,debug" + }, + { + ".id": "*28AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:37:15", + "topics": "container,info,debug" + }, + { + ".id": "*28AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:38:15", + "topics": "container,info,debug" + }, + { + ".id": "*28AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:38:35", + "topics": "container,info,debug" + }, + { + ".id": "*28AD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:38:55", + "topics": "container,info,debug" + }, + { + ".id": "*28AE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:39:15", + "topics": "container,info,debug" + }, + { + ".id": "*28AF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:39:35", + "topics": "container,info,debug" + }, + { + ".id": "*28B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:40:47", + "topics": "container,info,debug" + }, + { + ".id": "*28B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:41:47", + "topics": "container,info,debug" + }, + { + ".id": "*28B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:42:07", + "topics": "container,info,debug" + }, + { + ".id": "*28B3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:42:27", + "topics": "container,info,debug" + }, + { + ".id": "*28B4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:42:47", + "topics": "container,info,debug" + }, + { + ".id": "*28B5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:43:07", + "topics": "container,info,debug" + }, + { + ".id": "*28B6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:44:18", + "topics": "container,info,debug" + }, + { + ".id": "*28B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:45:18", + "topics": "container,info,debug" + }, + { + ".id": "*28B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:45:38", + "topics": "container,info,debug" + }, + { + ".id": "*28B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:45:58", + "topics": "container,info,debug" + }, + { + ".id": "*28BA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:46:18", + "topics": "container,info,debug" + }, + { + ".id": "*28BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:46:38", + "topics": "container,info,debug" + }, + { + ".id": "*28BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:47:50", + "topics": "container,info,debug" + }, + { + ".id": "*28BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:48:50", + "topics": "container,info,debug" + }, + { + ".id": "*28BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:49:10", + "topics": "container,info,debug" + }, + { + ".id": "*28BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:49:30", + "topics": "container,info,debug" + }, + { + ".id": "*28C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:49:50", + "topics": "container,info,debug" + }, + { + ".id": "*28C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:50:10", + "topics": "container,info,debug" + }, + { + ".id": "*28C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:51:21", + "topics": "container,info,debug" + }, + { + ".id": "*28C3", + "extra-info": "", + "message": "darmaputra321 (10.5.50.112): trying to log in by mac-cookie", + "time": "2026-01-19 16:52:12", + "topics": "hotspot,info,debug" + }, + { + ".id": "*28C4", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): trying to log in by mac-cookie", + "time": "2026-01-19 16:52:12", + "topics": "hotspot,info,debug" + }, + { + ".id": "*28C5", + "extra-info": "", + "message": "darmaputra321 (10.5.50.112): logged in", + "time": "2026-01-19 16:52:12", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*28C6", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): logged in", + "time": "2026-01-19 16:52:12", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*28C7", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-19 16:52:14", + "topics": "dhcp,info" + }, + { + ".id": "*28C8", + "extra-info": "", + "message": "darmaputra321 (10.5.50.112): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-19 16:52:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*28C9", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.112): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-19 16:52:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*28CA", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-19 16:52:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*28CB", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-19 16:52:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*28CC", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-19 16:52:15", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*28CD", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-19 16:52:15", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*28CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:52:21", + "topics": "container,info,debug" + }, + { + ".id": "*28CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:52:41", + "topics": "container,info,debug" + }, + { + ".id": "*28D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:53:01", + "topics": "container,info,debug" + }, + { + ".id": "*28D1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:53:21", + "topics": "container,info,debug" + }, + { + ".id": "*28D2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:53:41", + "topics": "container,info,debug" + }, + { + ".id": "*28D3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:54:53", + "topics": "container,info,debug" + }, + { + ".id": "*28D4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:55:53", + "topics": "container,info,debug" + }, + { + ".id": "*28D5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:56:13", + "topics": "container,info,debug" + }, + { + ".id": "*28D6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:56:33", + "topics": "container,info,debug" + }, + { + ".id": "*28D7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:56:53", + "topics": "container,info,debug" + }, + { + ".id": "*28D8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:57:13", + "topics": "container,info,debug" + }, + { + ".id": "*28D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:58:25", + "topics": "container,info,debug" + }, + { + ".id": "*28DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:59:25", + "topics": "container,info,debug" + }, + { + ".id": "*28DB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 16:59:45", + "topics": "container,info,debug" + }, + { + ".id": "*28DC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:00:05", + "topics": "container,info,debug" + }, + { + ".id": "*28DD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:00:25", + "topics": "container,info,debug" + }, + { + ".id": "*28DE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:00:45", + "topics": "container,info,debug" + }, + { + ".id": "*28DF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:01:55", + "topics": "container,info,debug" + }, + { + ".id": "*28E0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:02:55", + "topics": "container,info,debug" + }, + { + ".id": "*28E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:03:15", + "topics": "container,info,debug" + }, + { + ".id": "*28E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:03:35", + "topics": "container,info,debug" + }, + { + ".id": "*28E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:03:55", + "topics": "container,info,debug" + }, + { + ".id": "*28E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:04:15", + "topics": "container,info,debug" + }, + { + ".id": "*28E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:05:27", + "topics": "container,info,debug" + }, + { + ".id": "*28E6", + "extra-info": "", + "message": "koming123 (10.5.50.145): logged out: session timeout", + "time": "2026-01-19 17:05:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*28E7", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged out: session timeout", + "time": "2026-01-19 17:05:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*28E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:06:27", + "topics": "container,info,debug" + }, + { + ".id": "*28E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:06:47", + "topics": "container,info,debug" + }, + { + ".id": "*28EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:07:07", + "topics": "container,info,debug" + }, + { + ".id": "*28EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:07:27", + "topics": "container,info,debug" + }, + { + ".id": "*28EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:07:47", + "topics": "container,info,debug" + }, + { + ".id": "*28ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:08:58", + "topics": "container,info,debug" + }, + { + ".id": "*28EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:09:58", + "topics": "container,info,debug" + }, + { + ".id": "*28EF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:10:18", + "topics": "container,info,debug" + }, + { + ".id": "*28F0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:10:38", + "topics": "container,info,debug" + }, + { + ".id": "*28F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:10:58", + "topics": "container,info,debug" + }, + { + ".id": "*28F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:11:18", + "topics": "container,info,debug" + }, + { + ".id": "*28F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:12:29", + "topics": "container,info,debug" + }, + { + ".id": "*28F4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:13:29", + "topics": "container,info,debug" + }, + { + ".id": "*28F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:13:49", + "topics": "container,info,debug" + }, + { + ".id": "*28F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:14:09", + "topics": "container,info,debug" + }, + { + ".id": "*28F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:14:29", + "topics": "container,info,debug" + }, + { + ".id": "*28F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:14:49", + "topics": "container,info,debug" + }, + { + ".id": "*28F9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:16:00", + "topics": "container,info,debug" + }, + { + ".id": "*28FA", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-19 17:16:10", + "topics": "dhcp,info" + }, + { + ".id": "*28FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:17:00", + "topics": "container,info,debug" + }, + { + ".id": "*28FC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:17:20", + "topics": "container,info,debug" + }, + { + ".id": "*28FD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:17:40", + "topics": "container,info,debug" + }, + { + ".id": "*28FE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:18:00", + "topics": "container,info,debug" + }, + { + ".id": "*28FF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:18:20", + "topics": "container,info,debug" + }, + { + ".id": "*2900", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:19:32", + "topics": "container,info,debug" + }, + { + ".id": "*2901", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:20:32", + "topics": "container,info,debug" + }, + { + ".id": "*2902", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:20:52", + "topics": "container,info,debug" + }, + { + ".id": "*2903", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:21:12", + "topics": "container,info,debug" + }, + { + ".id": "*2904", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:21:32", + "topics": "container,info,debug" + }, + { + ".id": "*2905", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:21:52", + "topics": "container,info,debug" + }, + { + ".id": "*2906", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:23:04", + "topics": "container,info,debug" + }, + { + ".id": "*2907", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:24:04", + "topics": "container,info,debug" + }, + { + ".id": "*2908", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:24:24", + "topics": "container,info,debug" + }, + { + ".id": "*2909", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:24:44", + "topics": "container,info,debug" + }, + { + ".id": "*290A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:25:04", + "topics": "container,info,debug" + }, + { + ".id": "*290B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:25:24", + "topics": "container,info,debug" + }, + { + ".id": "*290C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:26:35", + "topics": "container,info,debug" + }, + { + ".id": "*290D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:27:35", + "topics": "container,info,debug" + }, + { + ".id": "*290E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:27:55", + "topics": "container,info,debug" + }, + { + ".id": "*290F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:28:15", + "topics": "container,info,debug" + }, + { + ".id": "*2910", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:28:35", + "topics": "container,info,debug" + }, + { + ".id": "*2911", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:28:55", + "topics": "container,info,debug" + }, + { + ".id": "*2912", + "extra-info": "", + "message": "tb62 (10.5.50.117): logged out: session timeout", + "time": "2026-01-19 17:29:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2913", + "extra-info": "", + "message": "->: tb62 (10.5.50.117): logged out: session timeout", + "time": "2026-01-19 17:29:39", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2914", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:30:07", + "topics": "container,info,debug" + }, + { + ".id": "*2915", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:31:07", + "topics": "container,info,debug" + }, + { + ".id": "*2916", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:31:27", + "topics": "container,info,debug" + }, + { + ".id": "*2917", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:31:47", + "topics": "container,info,debug" + }, + { + ".id": "*2918", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:32:07", + "topics": "container,info,debug" + }, + { + ".id": "*2919", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:32:27", + "topics": "container,info,debug" + }, + { + ".id": "*291A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:33:39", + "topics": "container,info,debug" + }, + { + ".id": "*291B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:34:39", + "topics": "container,info,debug" + }, + { + ".id": "*291C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:34:59", + "topics": "container,info,debug" + }, + { + ".id": "*291D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:35:19", + "topics": "container,info,debug" + }, + { + ".id": "*291E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:35:39", + "topics": "container,info,debug" + }, + { + ".id": "*291F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:35:59", + "topics": "container,info,debug" + }, + { + ".id": "*2920", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:37:10", + "topics": "container,info,debug" + }, + { + ".id": "*2921", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:38:10", + "topics": "container,info,debug" + }, + { + ".id": "*2922", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:38:30", + "topics": "container,info,debug" + }, + { + ".id": "*2923", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:38:50", + "topics": "container,info,debug" + }, + { + ".id": "*2924", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:39:10", + "topics": "container,info,debug" + }, + { + ".id": "*2925", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:39:30", + "topics": "container,info,debug" + }, + { + ".id": "*2926", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:40:42", + "topics": "container,info,debug" + }, + { + ".id": "*2927", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:41:42", + "topics": "container,info,debug" + }, + { + ".id": "*2928", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:42:02", + "topics": "container,info,debug" + }, + { + ".id": "*2929", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:42:22", + "topics": "container,info,debug" + }, + { + ".id": "*292A", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-19 17:42:33", + "topics": "hotspot,info,debug" + }, + { + ".id": "*292B", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-19 17:42:33", + "topics": "hotspot,info,debug" + }, + { + ".id": "*292C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:42:42", + "topics": "container,info,debug" + }, + { + ".id": "*292D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:43:02", + "topics": "container,info,debug" + }, + { + ".id": "*292E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:44:13", + "topics": "container,info,debug" + }, + { + ".id": "*292F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:45:13", + "topics": "container,info,debug" + }, + { + ".id": "*2930", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:45:33", + "topics": "container,info,debug" + }, + { + ".id": "*2931", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:45:53", + "topics": "container,info,debug" + }, + { + ".id": "*2932", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:46:13", + "topics": "container,info,debug" + }, + { + ".id": "*2933", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:46:33", + "topics": "container,info,debug" + }, + { + ".id": "*2934", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:47:45", + "topics": "container,info,debug" + }, + { + ".id": "*2935", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:48:45", + "topics": "container,info,debug" + }, + { + ".id": "*2936", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:49:05", + "topics": "container,info,debug" + }, + { + ".id": "*2937", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:49:25", + "topics": "container,info,debug" + }, + { + ".id": "*2938", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:49:45", + "topics": "container,info,debug" + }, + { + ".id": "*2939", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:50:05", + "topics": "container,info,debug" + }, + { + ".id": "*293A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:51:16", + "topics": "container,info,debug" + }, + { + ".id": "*293B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:52:16", + "topics": "container,info,debug" + }, + { + ".id": "*293C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:52:36", + "topics": "container,info,debug" + }, + { + ".id": "*293D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:52:56", + "topics": "container,info,debug" + }, + { + ".id": "*293E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:53:16", + "topics": "container,info,debug" + }, + { + ".id": "*293F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:53:36", + "topics": "container,info,debug" + }, + { + ".id": "*2940", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:54:48", + "topics": "container,info,debug" + }, + { + ".id": "*2941", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:55:48", + "topics": "container,info,debug" + }, + { + ".id": "*2942", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:56:08", + "topics": "container,info,debug" + }, + { + ".id": "*2943", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:56:28", + "topics": "container,info,debug" + }, + { + ".id": "*2944", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:56:48", + "topics": "container,info,debug" + }, + { + ".id": "*2945", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:57:08", + "topics": "container,info,debug" + }, + { + ".id": "*2946", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:58:19", + "topics": "container,info,debug" + }, + { + ".id": "*2947", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:59:19", + "topics": "container,info,debug" + }, + { + ".id": "*2948", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:59:39", + "topics": "container,info,debug" + }, + { + ".id": "*2949", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 17:59:59", + "topics": "container,info,debug" + }, + { + ".id": "*294A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:00:19", + "topics": "container,info,debug" + }, + { + ".id": "*294B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:00:39", + "topics": "container,info,debug" + }, + { + ".id": "*294C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:01:51", + "topics": "container,info,debug" + }, + { + ".id": "*294D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:02:51", + "topics": "container,info,debug" + }, + { + ".id": "*294E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:03:11", + "topics": "container,info,debug" + }, + { + ".id": "*294F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:03:31", + "topics": "container,info,debug" + }, + { + ".id": "*2950", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:03:51", + "topics": "container,info,debug" + }, + { + ".id": "*2951", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:04:11", + "topics": "container,info,debug" + }, + { + ".id": "*2952", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:05:23", + "topics": "container,info,debug" + }, + { + ".id": "*2953", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:06:23", + "topics": "container,info,debug" + }, + { + ".id": "*2954", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:06:43", + "topics": "container,info,debug" + }, + { + ".id": "*2955", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:07:03", + "topics": "container,info,debug" + }, + { + ".id": "*2956", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-19 18:07:12", + "topics": "dhcp,info" + }, + { + ".id": "*2957", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:07:23", + "topics": "container,info,debug" + }, + { + ".id": "*2958", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:07:43", + "topics": "container,info,debug" + }, + { + ".id": "*2959", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:08:56", + "topics": "container,info,debug" + }, + { + ".id": "*295A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:09:56", + "topics": "container,info,debug" + }, + { + ".id": "*295B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:10:16", + "topics": "container,info,debug" + }, + { + ".id": "*295C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:10:36", + "topics": "container,info,debug" + }, + { + ".id": "*295D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:10:56", + "topics": "container,info,debug" + }, + { + ".id": "*295E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:11:16", + "topics": "container,info,debug" + }, + { + ".id": "*295F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:12:27", + "topics": "container,info,debug" + }, + { + ".id": "*2960", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-19 18:13:04", + "topics": "dhcp,info" + }, + { + ".id": "*2961", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-19 18:13:04", + "topics": "dhcp,info" + }, + { + ".id": "*2962", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-19 18:13:05", + "topics": "dhcp,info" + }, + { + ".id": "*2963", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-19 18:13:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2964", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-19 18:13:07", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2965", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-19 18:13:07", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2966", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-19 18:13:07", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2967", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:13:27", + "topics": "container,info,debug" + }, + { + ".id": "*2968", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:13:47", + "topics": "container,info,debug" + }, + { + ".id": "*2969", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:14:07", + "topics": "container,info,debug" + }, + { + ".id": "*296A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:14:27", + "topics": "container,info,debug" + }, + { + ".id": "*296B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:14:47", + "topics": "container,info,debug" + }, + { + ".id": "*296C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:15:59", + "topics": "container,info,debug" + }, + { + ".id": "*296D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:16:59", + "topics": "container,info,debug" + }, + { + ".id": "*296E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:17:19", + "topics": "container,info,debug" + }, + { + ".id": "*296F", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.105 for F4:D1:08:58:B4:A2 DESKTOP-V812127", + "time": "2026-01-19 18:17:30", + "topics": "dhcp,info" + }, + { + ".id": "*2970", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:17:39", + "topics": "container,info,debug" + }, + { + ".id": "*2971", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:17:59", + "topics": "container,info,debug" + }, + { + ".id": "*2972", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:18:19", + "topics": "container,info,debug" + }, + { + ".id": "*2973", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:19:30", + "topics": "container,info,debug" + }, + { + ".id": "*2974", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:20:30", + "topics": "container,info,debug" + }, + { + ".id": "*2975", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:20:50", + "topics": "container,info,debug" + }, + { + ".id": "*2976", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:21:10", + "topics": "container,info,debug" + }, + { + ".id": "*2977", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:21:30", + "topics": "container,info,debug" + }, + { + ".id": "*2978", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:21:50", + "topics": "container,info,debug" + }, + { + ".id": "*2979", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:23:02", + "topics": "container,info,debug" + }, + { + ".id": "*297A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:24:02", + "topics": "container,info,debug" + }, + { + ".id": "*297B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:24:22", + "topics": "container,info,debug" + }, + { + ".id": "*297C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:24:42", + "topics": "container,info,debug" + }, + { + ".id": "*297D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:25:02", + "topics": "container,info,debug" + }, + { + ".id": "*297E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:25:22", + "topics": "container,info,debug" + }, + { + ".id": "*297F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:26:33", + "topics": "container,info,debug" + }, + { + ".id": "*2980", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-19 18:27:13", + "topics": "dhcp,info" + }, + { + ".id": "*2981", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:27:33", + "topics": "container,info,debug" + }, + { + ".id": "*2982", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:27:53", + "topics": "container,info,debug" + }, + { + ".id": "*2983", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:28:13", + "topics": "container,info,debug" + }, + { + ".id": "*2984", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:28:33", + "topics": "container,info,debug" + }, + { + ".id": "*2985", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:28:53", + "topics": "container,info,debug" + }, + { + ".id": "*2986", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:30:05", + "topics": "container,info,debug" + }, + { + ".id": "*2987", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:31:05", + "topics": "container,info,debug" + }, + { + ".id": "*2988", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:31:25", + "topics": "container,info,debug" + }, + { + ".id": "*2989", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:31:45", + "topics": "container,info,debug" + }, + { + ".id": "*298A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:32:05", + "topics": "container,info,debug" + }, + { + ".id": "*298B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:32:25", + "topics": "container,info,debug" + }, + { + ".id": "*298C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:33:36", + "topics": "container,info,debug" + }, + { + ".id": "*298D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:34:36", + "topics": "container,info,debug" + }, + { + ".id": "*298E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:34:56", + "topics": "container,info,debug" + }, + { + ".id": "*298F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:35:16", + "topics": "container,info,debug" + }, + { + ".id": "*2990", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:35:36", + "topics": "container,info,debug" + }, + { + ".id": "*2991", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:35:56", + "topics": "container,info,debug" + }, + { + ".id": "*2992", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:37:08", + "topics": "container,info,debug" + }, + { + ".id": "*2993", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:38:08", + "topics": "container,info,debug" + }, + { + ".id": "*2994", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:38:28", + "topics": "container,info,debug" + }, + { + ".id": "*2995", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:38:48", + "topics": "container,info,debug" + }, + { + ".id": "*2996", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:39:08", + "topics": "container,info,debug" + }, + { + ".id": "*2997", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:39:28", + "topics": "container,info,debug" + }, + { + ".id": "*2998", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:40:39", + "topics": "container,info,debug" + }, + { + ".id": "*2999", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:41:39", + "topics": "container,info,debug" + }, + { + ".id": "*299A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:41:59", + "topics": "container,info,debug" + }, + { + ".id": "*299B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:42:19", + "topics": "container,info,debug" + }, + { + ".id": "*299C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:42:39", + "topics": "container,info,debug" + }, + { + ".id": "*299D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:42:59", + "topics": "container,info,debug" + }, + { + ".id": "*299E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:44:11", + "topics": "container,info,debug" + }, + { + ".id": "*299F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:45:11", + "topics": "container,info,debug" + }, + { + ".id": "*29A0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:45:31", + "topics": "container,info,debug" + }, + { + ".id": "*29A1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:45:51", + "topics": "container,info,debug" + }, + { + ".id": "*29A2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:46:11", + "topics": "container,info,debug" + }, + { + ".id": "*29A3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:46:31", + "topics": "container,info,debug" + }, + { + ".id": "*29A4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:47:42", + "topics": "container,info,debug" + }, + { + ".id": "*29A5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:48:42", + "topics": "container,info,debug" + }, + { + ".id": "*29A6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:49:02", + "topics": "container,info,debug" + }, + { + ".id": "*29A7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:49:22", + "topics": "container,info,debug" + }, + { + ".id": "*29A8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:49:42", + "topics": "container,info,debug" + }, + { + ".id": "*29A9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:50:02", + "topics": "container,info,debug" + }, + { + ".id": "*29AA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:51:14", + "topics": "container,info,debug" + }, + { + ".id": "*29AB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:52:14", + "topics": "container,info,debug" + }, + { + ".id": "*29AC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:52:34", + "topics": "container,info,debug" + }, + { + ".id": "*29AD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:52:54", + "topics": "container,info,debug" + }, + { + ".id": "*29AE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:53:14", + "topics": "container,info,debug" + }, + { + ".id": "*29AF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:53:34", + "topics": "container,info,debug" + }, + { + ".id": "*29B0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:54:45", + "topics": "container,info,debug" + }, + { + ".id": "*29B1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:55:45", + "topics": "container,info,debug" + }, + { + ".id": "*29B2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:56:05", + "topics": "container,info,debug" + }, + { + ".id": "*29B3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:56:25", + "topics": "container,info,debug" + }, + { + ".id": "*29B4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:56:45", + "topics": "container,info,debug" + }, + { + ".id": "*29B5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:57:05", + "topics": "container,info,debug" + }, + { + ".id": "*29B6", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.113 for D0:9C:7A:1C:BA:3A Redmi-Note-8", + "time": "2026-01-19 18:57:13", + "topics": "dhcp,info" + }, + { + ".id": "*29B7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:58:17", + "topics": "container,info,debug" + }, + { + ".id": "*29B8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:59:17", + "topics": "container,info,debug" + }, + { + ".id": "*29B9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:59:37", + "topics": "container,info,debug" + }, + { + ".id": "*29BA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 18:59:57", + "topics": "container,info,debug" + }, + { + ".id": "*29BB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:00:17", + "topics": "container,info,debug" + }, + { + ".id": "*29BC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:00:37", + "topics": "container,info,debug" + }, + { + ".id": "*29BD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:01:48", + "topics": "container,info,debug" + }, + { + ".id": "*29BE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:02:48", + "topics": "container,info,debug" + }, + { + ".id": "*29BF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:03:08", + "topics": "container,info,debug" + }, + { + ".id": "*29C0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:03:28", + "topics": "container,info,debug" + }, + { + ".id": "*29C1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:03:48", + "topics": "container,info,debug" + }, + { + ".id": "*29C2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:04:08", + "topics": "container,info,debug" + }, + { + ".id": "*29C3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:05:20", + "topics": "container,info,debug" + }, + { + ".id": "*29C4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:06:20", + "topics": "container,info,debug" + }, + { + ".id": "*29C5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:06:40", + "topics": "container,info,debug" + }, + { + ".id": "*29C6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:07:00", + "topics": "container,info,debug" + }, + { + ".id": "*29C7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:07:20", + "topics": "container,info,debug" + }, + { + ".id": "*29C8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:07:40", + "topics": "container,info,debug" + }, + { + ".id": "*29C9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:08:51", + "topics": "container,info,debug" + }, + { + ".id": "*29CA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:09:51", + "topics": "container,info,debug" + }, + { + ".id": "*29CB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:10:11", + "topics": "container,info,debug" + }, + { + ".id": "*29CC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:10:31", + "topics": "container,info,debug" + }, + { + ".id": "*29CD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:10:51", + "topics": "container,info,debug" + }, + { + ".id": "*29CE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:11:11", + "topics": "container,info,debug" + }, + { + ".id": "*29CF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:12:23", + "topics": "container,info,debug" + }, + { + ".id": "*29D0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:13:23", + "topics": "container,info,debug" + }, + { + ".id": "*29D1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:13:43", + "topics": "container,info,debug" + }, + { + ".id": "*29D2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:14:03", + "topics": "container,info,debug" + }, + { + ".id": "*29D3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:14:23", + "topics": "container,info,debug" + }, + { + ".id": "*29D4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:14:43", + "topics": "container,info,debug" + }, + { + ".id": "*29D5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:15:54", + "topics": "container,info,debug" + }, + { + ".id": "*29D6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:16:54", + "topics": "container,info,debug" + }, + { + ".id": "*29D7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:17:14", + "topics": "container,info,debug" + }, + { + ".id": "*29D8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:17:34", + "topics": "container,info,debug" + }, + { + ".id": "*29D9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:17:54", + "topics": "container,info,debug" + }, + { + ".id": "*29DA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:18:14", + "topics": "container,info,debug" + }, + { + ".id": "*29DB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:19:26", + "topics": "container,info,debug" + }, + { + ".id": "*29DC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:20:26", + "topics": "container,info,debug" + }, + { + ".id": "*29DD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:20:46", + "topics": "container,info,debug" + }, + { + ".id": "*29DE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:21:06", + "topics": "container,info,debug" + }, + { + ".id": "*29DF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:21:26", + "topics": "container,info,debug" + }, + { + ".id": "*29E0", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.108 for D2:E5:A0:12:87:85 OPPO-A5-2020", + "time": "2026-01-19 19:21:29", + "topics": "dhcp,info" + }, + { + ".id": "*29E1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:21:46", + "topics": "container,info,debug" + }, + { + ".id": "*29E2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:22:58", + "topics": "container,info,debug" + }, + { + ".id": "*29E3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:23:58", + "topics": "container,info,debug" + }, + { + ".id": "*29E4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:24:18", + "topics": "container,info,debug" + }, + { + ".id": "*29E5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:24:38", + "topics": "container,info,debug" + }, + { + ".id": "*29E6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:24:58", + "topics": "container,info,debug" + }, + { + ".id": "*29E7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:25:18", + "topics": "container,info,debug" + }, + { + ".id": "*29E8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:26:29", + "topics": "container,info,debug" + }, + { + ".id": "*29E9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:27:29", + "topics": "container,info,debug" + }, + { + ".id": "*29EA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:27:49", + "topics": "container,info,debug" + }, + { + ".id": "*29EB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:28:09", + "topics": "container,info,debug" + }, + { + ".id": "*29EC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:28:29", + "topics": "container,info,debug" + }, + { + ".id": "*29ED", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:28:49", + "topics": "container,info,debug" + }, + { + ".id": "*29EE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:30:01", + "topics": "container,info,debug" + }, + { + ".id": "*29EF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:31:01", + "topics": "container,info,debug" + }, + { + ".id": "*29F0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:31:21", + "topics": "container,info,debug" + }, + { + ".id": "*29F1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:31:41", + "topics": "container,info,debug" + }, + { + ".id": "*29F2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:32:01", + "topics": "container,info,debug" + }, + { + ".id": "*29F3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:32:21", + "topics": "container,info,debug" + }, + { + ".id": "*29F4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:33:33", + "topics": "container,info,debug" + }, + { + ".id": "*29F5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:34:33", + "topics": "container,info,debug" + }, + { + ".id": "*29F6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:34:53", + "topics": "container,info,debug" + }, + { + ".id": "*29F7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:35:13", + "topics": "container,info,debug" + }, + { + ".id": "*29F8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:35:33", + "topics": "container,info,debug" + }, + { + ".id": "*29F9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:35:53", + "topics": "container,info,debug" + }, + { + ".id": "*29FA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:37:04", + "topics": "container,info,debug" + }, + { + ".id": "*29FB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:38:04", + "topics": "container,info,debug" + }, + { + ".id": "*29FC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:38:24", + "topics": "container,info,debug" + }, + { + ".id": "*29FD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:38:44", + "topics": "container,info,debug" + }, + { + ".id": "*29FE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:39:04", + "topics": "container,info,debug" + }, + { + ".id": "*29FF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:39:24", + "topics": "container,info,debug" + }, + { + ".id": "*2A00", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:40:36", + "topics": "container,info,debug" + }, + { + ".id": "*2A01", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:41:36", + "topics": "container,info,debug" + }, + { + ".id": "*2A02", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-19 19:41:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A03", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-19 19:41:41", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A04", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:41:56", + "topics": "container,info,debug" + }, + { + ".id": "*2A05", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:42:16", + "topics": "container,info,debug" + }, + { + ".id": "*2A06", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:42:36", + "topics": "container,info,debug" + }, + { + ".id": "*2A07", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:42:56", + "topics": "container,info,debug" + }, + { + ".id": "*2A08", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged in from 192.168.7.100 via winbox", + "time": "2026-01-19 19:43:21", + "topics": "system,info,account" + }, + { + ".id": "*2A09", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged out from 192.168.7.100 via winbox", + "time": "2026-01-19 19:43:53", + "topics": "system,info,account" + }, + { + ".id": "*2A0A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:44:08", + "topics": "container,info,debug" + }, + { + ".id": "*2A0B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:45:08", + "topics": "container,info,debug" + }, + { + ".id": "*2A0C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:45:28", + "topics": "container,info,debug" + }, + { + ".id": "*2A0D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:45:48", + "topics": "container,info,debug" + }, + { + ".id": "*2A0E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:46:08", + "topics": "container,info,debug" + }, + { + ".id": "*2A0F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:46:28", + "topics": "container,info,debug" + }, + { + ".id": "*2A10", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-19 19:47:25", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A11", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-19 19:47:25", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A12", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged in", + "time": "2026-01-19 19:47:25", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2A13", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-19 19:47:25", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2A14", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:47:40", + "topics": "container,info,debug" + }, + { + ".id": "*2A15", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:48:40", + "topics": "container,info,debug" + }, + { + ".id": "*2A16", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:49:00", + "topics": "container,info,debug" + }, + { + ".id": "*2A17", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:49:20", + "topics": "container,info,debug" + }, + { + ".id": "*2A18", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:49:40", + "topics": "container,info,debug" + }, + { + ".id": "*2A19", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:50:00", + "topics": "container,info,debug" + }, + { + ".id": "*2A1A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:51:11", + "topics": "container,info,debug" + }, + { + ".id": "*2A1B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:52:11", + "topics": "container,info,debug" + }, + { + ".id": "*2A1C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:52:31", + "topics": "container,info,debug" + }, + { + ".id": "*2A1D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:52:51", + "topics": "container,info,debug" + }, + { + ".id": "*2A1E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:53:11", + "topics": "container,info,debug" + }, + { + ".id": "*2A1F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:53:31", + "topics": "container,info,debug" + }, + { + ".id": "*2A20", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:54:43", + "topics": "container,info,debug" + }, + { + ".id": "*2A21", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:55:43", + "topics": "container,info,debug" + }, + { + ".id": "*2A22", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:56:03", + "topics": "container,info,debug" + }, + { + ".id": "*2A23", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:56:23", + "topics": "container,info,debug" + }, + { + ".id": "*2A24", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:56:43", + "topics": "container,info,debug" + }, + { + ".id": "*2A25", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:57:03", + "topics": "container,info,debug" + }, + { + ".id": "*2A26", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:58:14", + "topics": "container,info,debug" + }, + { + ".id": "*2A27", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:59:14", + "topics": "container,info,debug" + }, + { + ".id": "*2A28", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:59:34", + "topics": "container,info,debug" + }, + { + ".id": "*2A29", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 19:59:54", + "topics": "container,info,debug" + }, + { + ".id": "*2A2A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:00:14", + "topics": "container,info,debug" + }, + { + ".id": "*2A2B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:00:34", + "topics": "container,info,debug" + }, + { + ".id": "*2A2C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:01:46", + "topics": "container,info,debug" + }, + { + ".id": "*2A2D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:02:46", + "topics": "container,info,debug" + }, + { + ".id": "*2A2E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:03:06", + "topics": "container,info,debug" + }, + { + ".id": "*2A2F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:03:26", + "topics": "container,info,debug" + }, + { + ".id": "*2A30", + "extra-info": "", + "message": "koming123 (10.5.50.145): trying to log in by http-chap", + "time": "2026-01-19 20:03:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A31", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): trying to log in by http-chap", + "time": "2026-01-19 20:03:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A32", + "extra-info": "", + "message": "koming123 (10.5.50.145): logged in", + "time": "2026-01-19 20:03:32", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2A33", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged in", + "time": "2026-01-19 20:03:32", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2A34", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:03:46", + "topics": "container,info,debug" + }, + { + ".id": "*2A35", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:04:06", + "topics": "container,info,debug" + }, + { + ".id": "*2A36", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.117 for 50:5B:C2:82:19:0F DESKTOP-EVNK9CF", + "time": "2026-01-19 20:04:57", + "topics": "dhcp,info" + }, + { + ".id": "*2A37", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:05:17", + "topics": "container,info,debug" + }, + { + ".id": "*2A38", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:06:17", + "topics": "container,info,debug" + }, + { + ".id": "*2A39", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:06:37", + "topics": "container,info,debug" + }, + { + ".id": "*2A3A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:06:57", + "topics": "container,info,debug" + }, + { + ".id": "*2A3B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:07:17", + "topics": "container,info,debug" + }, + { + ".id": "*2A3C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:07:37", + "topics": "container,info,debug" + }, + { + ".id": "*2A3D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:08:49", + "topics": "container,info,debug" + }, + { + ".id": "*2A3E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:09:49", + "topics": "container,info,debug" + }, + { + ".id": "*2A3F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:10:09", + "topics": "container,info,debug" + }, + { + ".id": "*2A40", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:10:29", + "topics": "container,info,debug" + }, + { + ".id": "*2A41", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:10:49", + "topics": "container,info,debug" + }, + { + ".id": "*2A42", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:11:09", + "topics": "container,info,debug" + }, + { + ".id": "*2A43", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:12:21", + "topics": "container,info,debug" + }, + { + ".id": "*2A44", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:13:21", + "topics": "container,info,debug" + }, + { + ".id": "*2A45", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:13:41", + "topics": "container,info,debug" + }, + { + ".id": "*2A46", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:14:01", + "topics": "container,info,debug" + }, + { + ".id": "*2A47", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:14:21", + "topics": "container,info,debug" + }, + { + ".id": "*2A48", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:14:41", + "topics": "container,info,debug" + }, + { + ".id": "*2A49", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:15:52", + "topics": "container,info,debug" + }, + { + ".id": "*2A4A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:16:52", + "topics": "container,info,debug" + }, + { + ".id": "*2A4B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:17:12", + "topics": "container,info,debug" + }, + { + ".id": "*2A4C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:17:32", + "topics": "container,info,debug" + }, + { + ".id": "*2A4D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:17:52", + "topics": "container,info,debug" + }, + { + ".id": "*2A4E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:18:12", + "topics": "container,info,debug" + }, + { + ".id": "*2A4F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:19:24", + "topics": "container,info,debug" + }, + { + ".id": "*2A50", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:20:24", + "topics": "container,info,debug" + }, + { + ".id": "*2A51", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:20:44", + "topics": "container,info,debug" + }, + { + ".id": "*2A52", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:21:04", + "topics": "container,info,debug" + }, + { + ".id": "*2A53", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:21:24", + "topics": "container,info,debug" + }, + { + ".id": "*2A54", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:21:44", + "topics": "container,info,debug" + }, + { + ".id": "*2A55", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:22:55", + "topics": "container,info,debug" + }, + { + ".id": "*2A56", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:23:55", + "topics": "container,info,debug" + }, + { + ".id": "*2A57", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:24:15", + "topics": "container,info,debug" + }, + { + ".id": "*2A58", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:24:35", + "topics": "container,info,debug" + }, + { + ".id": "*2A59", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:24:55", + "topics": "container,info,debug" + }, + { + ".id": "*2A5A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:25:15", + "topics": "container,info,debug" + }, + { + ".id": "*2A5B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:26:27", + "topics": "container,info,debug" + }, + { + ".id": "*2A5C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:27:27", + "topics": "container,info,debug" + }, + { + ".id": "*2A5D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:27:47", + "topics": "container,info,debug" + }, + { + ".id": "*2A5E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:28:07", + "topics": "container,info,debug" + }, + { + ".id": "*2A5F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:28:27", + "topics": "container,info,debug" + }, + { + ".id": "*2A60", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:28:47", + "topics": "container,info,debug" + }, + { + ".id": "*2A61", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:29:58", + "topics": "container,info,debug" + }, + { + ".id": "*2A62", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:30:58", + "topics": "container,info,debug" + }, + { + ".id": "*2A63", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:31:18", + "topics": "container,info,debug" + }, + { + ".id": "*2A64", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:31:38", + "topics": "container,info,debug" + }, + { + ".id": "*2A65", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:31:58", + "topics": "container,info,debug" + }, + { + ".id": "*2A66", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:32:18", + "topics": "container,info,debug" + }, + { + ".id": "*2A67", + "extra-info": "", + "message": "panluhari321 (10.5.50.140): logged out: keepalive timeout", + "time": "2026-01-19 20:33:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A68", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged out: keepalive timeout", + "time": "2026-01-19 20:33:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A69", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:33:30", + "topics": "container,info,debug" + }, + { + ".id": "*2A6A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:34:30", + "topics": "container,info,debug" + }, + { + ".id": "*2A6B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:34:50", + "topics": "container,info,debug" + }, + { + ".id": "*2A6C", + "extra-info": "", + "message": "panluhari321 (10.5.50.140): trying to log in by mac-cookie", + "time": "2026-01-19 20:35:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A6D", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): trying to log in by mac-cookie", + "time": "2026-01-19 20:35:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A6E", + "extra-info": "", + "message": "panluhari321 (10.5.50.140): logged in", + "time": "2026-01-19 20:35:00", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2A6F", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged in", + "time": "2026-01-19 20:35:00", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2A70", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:35:10", + "topics": "container,info,debug" + }, + { + ".id": "*2A71", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:35:30", + "topics": "container,info,debug" + }, + { + ".id": "*2A72", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:35:50", + "topics": "container,info,debug" + }, + { + ".id": "*2A73", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:37:01", + "topics": "container,info,debug" + }, + { + ".id": "*2A74", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:38:01", + "topics": "container,info,debug" + }, + { + ".id": "*2A75", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:38:21", + "topics": "container,info,debug" + }, + { + ".id": "*2A76", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:38:41", + "topics": "container,info,debug" + }, + { + ".id": "*2A77", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:39:01", + "topics": "container,info,debug" + }, + { + ".id": "*2A78", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:39:21", + "topics": "container,info,debug" + }, + { + ".id": "*2A79", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:40:32", + "topics": "container,info,debug" + }, + { + ".id": "*2A7A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:41:32", + "topics": "container,info,debug" + }, + { + ".id": "*2A7B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:41:52", + "topics": "container,info,debug" + }, + { + ".id": "*2A7C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:42:12", + "topics": "container,info,debug" + }, + { + ".id": "*2A7D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:42:32", + "topics": "container,info,debug" + }, + { + ".id": "*2A7E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:42:52", + "topics": "container,info,debug" + }, + { + ".id": "*2A7F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:44:04", + "topics": "container,info,debug" + }, + { + ".id": "*2A80", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:45:04", + "topics": "container,info,debug" + }, + { + ".id": "*2A81", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:45:24", + "topics": "container,info,debug" + }, + { + ".id": "*2A82", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:45:44", + "topics": "container,info,debug" + }, + { + ".id": "*2A83", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:46:04", + "topics": "container,info,debug" + }, + { + ".id": "*2A84", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:46:24", + "topics": "container,info,debug" + }, + { + ".id": "*2A85", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:47:36", + "topics": "container,info,debug" + }, + { + ".id": "*2A86", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 20:48:01", + "topics": "dhcp,info" + }, + { + ".id": "*2A87", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 20:48:01", + "topics": "dhcp,info" + }, + { + ".id": "*2A88", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 20:48:34", + "topics": "dhcp,info" + }, + { + ".id": "*2A89", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:48:36", + "topics": "container,info,debug" + }, + { + ".id": "*2A8A", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 20:48:37", + "topics": "dhcp,info" + }, + { + ".id": "*2A8B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:48:56", + "topics": "container,info,debug" + }, + { + ".id": "*2A8C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:49:16", + "topics": "container,info,debug" + }, + { + ".id": "*2A8D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:49:36", + "topics": "container,info,debug" + }, + { + ".id": "*2A8E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:49:56", + "topics": "container,info,debug" + }, + { + ".id": "*2A8F", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 20:50:01", + "topics": "dhcp,info" + }, + { + ".id": "*2A90", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 20:50:02", + "topics": "dhcp,info" + }, + { + ".id": "*2A91", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:51:07", + "topics": "container,info,debug" + }, + { + ".id": "*2A92", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:52:07", + "topics": "container,info,debug" + }, + { + ".id": "*2A93", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:52:27", + "topics": "container,info,debug" + }, + { + ".id": "*2A94", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-19 20:52:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A95", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-19 20:52:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2A96", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:52:47", + "topics": "container,info,debug" + }, + { + ".id": "*2A97", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:53:07", + "topics": "container,info,debug" + }, + { + ".id": "*2A98", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:53:27", + "topics": "container,info,debug" + }, + { + ".id": "*2A99", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:54:39", + "topics": "container,info,debug" + }, + { + ".id": "*2A9A", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:55:39", + "topics": "container,info,debug" + }, + { + ".id": "*2A9B", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:55:59", + "topics": "container,info,debug" + }, + { + ".id": "*2A9C", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:56:19", + "topics": "container,info,debug" + }, + { + ".id": "*2A9D", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:56:39", + "topics": "container,info,debug" + }, + { + ".id": "*2A9E", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:56:59", + "topics": "container,info,debug" + }, + { + ".id": "*2A9F", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:58:10", + "topics": "container,info,debug" + }, + { + ".id": "*2AA0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:59:10", + "topics": "container,info,debug" + }, + { + ".id": "*2AA1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:59:30", + "topics": "container,info,debug" + }, + { + ".id": "*2AA2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 20:59:50", + "topics": "container,info,debug" + }, + { + ".id": "*2AA3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:00:10", + "topics": "container,info,debug" + }, + { + ".id": "*2AA4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:00:30", + "topics": "container,info,debug" + }, + { + ".id": "*2AA5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:01:42", + "topics": "container,info,debug" + }, + { + ".id": "*2AA6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:02:42", + "topics": "container,info,debug" + }, + { + ".id": "*2AA7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:03:02", + "topics": "container,info,debug" + }, + { + ".id": "*2AA8", + "extra-info": "", + "message": "menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-19 21:03:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AA9", + "extra-info": "", + "message": "->: menluhari123 (10.5.50.126): logged out: keepalive timeout", + "time": "2026-01-19 21:03:09", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AAA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:03:22", + "topics": "container,info,debug" + }, + { + ".id": "*2AAB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:03:42", + "topics": "container,info,debug" + }, + { + ".id": "*2AAC", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-19 21:03:43", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AAD", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-19 21:03:43", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AAE", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged in", + "time": "2026-01-19 21:03:43", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2AAF", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-19 21:03:43", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2AB0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:04:02", + "topics": "container,info,debug" + }, + { + ".id": "*2AB1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:05:14", + "topics": "container,info,debug" + }, + { + ".id": "*2AB2", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:06:14", + "topics": "container,info,debug" + }, + { + ".id": "*2AB3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:06:34", + "topics": "container,info,debug" + }, + { + ".id": "*2AB4", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:06:54", + "topics": "container,info,debug" + }, + { + ".id": "*2AB5", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:07:14", + "topics": "container,info,debug" + }, + { + ".id": "*2AB6", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:07:34", + "topics": "container,info,debug" + }, + { + ".id": "*2AB7", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:08:45", + "topics": "container,info,debug" + }, + { + ".id": "*2AB8", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:09:45", + "topics": "container,info,debug" + }, + { + ".id": "*2AB9", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:10:05", + "topics": "container,info,debug" + }, + { + ".id": "*2ABA", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:10:25", + "topics": "container,info,debug" + }, + { + ".id": "*2ABB", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:10:45", + "topics": "container,info,debug" + }, + { + ".id": "*2ABC", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:11:05", + "topics": "container,info,debug" + }, + { + ".id": "*2ABD", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:12:17", + "topics": "container,info,debug" + }, + { + ".id": "*2ABE", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:13:17", + "topics": "container,info,debug" + }, + { + ".id": "*2ABF", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:13:37", + "topics": "container,info,debug" + }, + { + ".id": "*2AC0", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:13:57", + "topics": "container,info,debug" + }, + { + ".id": "*2AC1", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:14:17", + "topics": "container,info,debug" + }, + { + ".id": "*2AC2", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged in from 192.168.7.100 via winbox", + "time": "2026-01-19 21:14:23", + "topics": "system,info,account" + }, + { + ".id": "*2AC3", + "extra-info": "", + "message": "wa-bot: QR Received from WA Library", + "time": "2026-01-19 21:14:37", + "topics": "container,info,debug" + }, + { + ".id": "*2AC4", + "extra-info": "", + "message": "wa-bot: *** stop", + "time": "2026-01-19 21:14:41", + "topics": "container,info,debug" + }, + { + ".id": "*2AC5", + "extra-info": "", + "message": "wa-bot: *** kill", + "time": "2026-01-19 21:14:51", + "topics": "container,info,debug" + }, + { + ".id": "*2AC6", + "extra-info": "", + "message": "wa-bot: exited with signal 9 (Killed)", + "time": "2026-01-19 21:14:51", + "topics": "container,error,debug" + }, + { + ".id": "*2AC7", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.126 for DE:2E:8D:A1:3A:B1 OPPO-A3x", + "time": "2026-01-19 21:26:02", + "topics": "dhcp,info" + }, + { + ".id": "*2AC8", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-19 22:08:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AC9", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-19 22:08:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2ACA", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged out from 192.168.7.100 via winbox", + "time": "2026-01-19 22:23:40", + "topics": "system,info,account" + }, + { + ".id": "*2ACB", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.122 for 7C:9A:1D:2D:E5:E1 ", + "time": "2026-01-19 22:24:21", + "topics": "dhcp,info" + }, + { + ".id": "*2ACC", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.104 for 08:71:90:41:78:2D DESKTOP-V44P7E3", + "time": "2026-01-19 23:01:23", + "topics": "dhcp,info" + }, + { + ".id": "*2ACD", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-19 23:03:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2ACE", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-19 23:03:48", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2ACF", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-19 23:18:23", + "topics": "dhcp,info" + }, + { + ".id": "*2AD0", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.248 for 68:C6:3A:CA:77:1C bale-delod", + "time": "2026-01-19 23:36:08", + "topics": "dhcp,info" + }, + { + ".id": "*2AD1", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-20 00:01:18", + "topics": "dhcp,info" + }, + { + ".id": "*2AD2", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-20 00:01:18", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AD3", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-20 00:01:18", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AD4", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged in", + "time": "2026-01-20 00:01:18", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2AD5", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-20 00:01:18", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2AD6", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-20 00:03:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AD7", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-20 00:03:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AD8", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-20 00:31:18", + "topics": "dhcp,info" + }, + { + ".id": "*2AD9", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-20 02:01:50", + "topics": "dhcp,info" + }, + { + ".id": "*2ADA", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-20 02:01:50", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2ADB", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-20 02:01:50", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2ADC", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged in", + "time": "2026-01-20 02:01:50", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2ADD", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-20 02:01:50", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2ADE", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-20 02:04:20", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2ADF", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-20 02:04:20", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AE0", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-20 02:31:50", + "topics": "dhcp,info" + }, + { + ".id": "*2AE1", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.122 for 7C:9A:1D:2D:E5:E1 ", + "time": "2026-01-20 03:13:13", + "topics": "dhcp,info" + }, + { + ".id": "*2AE2", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-20 03:13:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AE3", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-20 03:13:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AE4", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged in", + "time": "2026-01-20 03:13:15", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2AE5", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-20 03:13:15", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2AE6", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-20 05:02:22", + "topics": "dhcp,info" + }, + { + ".id": "*2AE7", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-20 05:02:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AE8", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-20 05:02:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AE9", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged in", + "time": "2026-01-20 05:02:22", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2AEA", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-20 05:02:22", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2AEB", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-20 05:08:31", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AEC", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged out: keepalive timeout", + "time": "2026-01-20 05:08:31", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AED", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.123 for 0C:98:38:58:86:07 Redmi5A-dika", + "time": "2026-01-20 05:26:18", + "topics": "dhcp,info" + }, + { + ".id": "*2AEE", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-20 05:29:40", + "topics": "dhcp,info" + }, + { + ".id": "*2AEF", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-20 05:29:40", + "topics": "dhcp,info" + }, + { + ".id": "*2AF0", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-20 05:32:22", + "topics": "dhcp,info" + }, + { + ".id": "*2AF1", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.139 for 7A:2A:DB:57:58:16 Infinix-3", + "time": "2026-01-20 05:35:05", + "topics": "dhcp,info" + }, + { + ".id": "*2AF2", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-20 05:35:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AF3", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): trying to log in by mac-cookie", + "time": "2026-01-20 05:35:05", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AF4", + "extra-info": "", + "message": "wartana0101 (10.5.50.139): logged in", + "time": "2026-01-20 05:35:05", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2AF5", + "extra-info": "", + "message": "->: wartana0101 (10.5.50.139): logged in", + "time": "2026-01-20 05:35:05", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2AF6", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.123 for 0C:98:38:58:86:07 Redmi5A-dika", + "time": "2026-01-20 05:56:18", + "topics": "dhcp,info" + }, + { + ".id": "*2AF7", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-20 08:16:26", + "topics": "dhcp,info" + }, + { + ".id": "*2AF8", + "extra-info": "", + "message": "event down [ homeassistant ]", + "time": "2026-01-20 08:27:31", + "topics": "netwatch,info" + }, + { + ".id": "*2AF9", + "extra-info": "", + "message": "event down [ type: simple, host: 192.168.7.7 ]", + "time": "2026-01-20 08:27:31", + "topics": "netwatch,info" + }, + { + ".id": "*2AFA", + "extra-info": "", + "message": "event up [ type: simple, host: 192.168.7.7 ]", + "time": "2026-01-20 08:28:28", + "topics": "netwatch,info" + }, + { + ".id": "*2AFB", + "extra-info": "", + "message": "event up [ homeassistant ]", + "time": "2026-01-20 08:28:28", + "topics": "netwatch,info" + }, + { + ".id": "*2AFC", + "extra-info": "", + "message": "koming123 (10.5.50.145): logged out: keepalive timeout", + "time": "2026-01-20 08:32:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AFD", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged out: keepalive timeout", + "time": "2026-01-20 08:32:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2AFE", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.145 for BA:F1:34:51:19:54 Redmi-Note-9", + "time": "2026-01-20 08:53:33", + "topics": "dhcp,info" + }, + { + ".id": "*2AFF", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.135 for 8C:D9:D6:F2:E8:A4 M2006C3LG-Redmi9A", + "time": "2026-01-20 08:56:59", + "topics": "dhcp,info" + }, + { + ".id": "*2B00", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.106 for 32:3A:9F:3D:78:A6 V2029", + "time": "2026-01-20 10:54:44", + "topics": "dhcp,info" + }, + { + ".id": "*2B01", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.106 for 32:3A:9F:3D:78:A6 V2029", + "time": "2026-01-20 10:54:44", + "topics": "dhcp,info" + }, + { + ".id": "*2B02", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-20 11:19:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B03", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-20 11:19:00", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B04", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.122 for 7C:9A:1D:2D:E5:E1 ", + "time": "2026-01-20 11:46:01", + "topics": "dhcp,info" + }, + { + ".id": "*2B05", + "extra-info": "", + "message": "dita2022__ (10.5.50.111): trying to log in by mac-cookie", + "time": "2026-01-20 11:54:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B06", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.111): trying to log in by mac-cookie", + "time": "2026-01-20 11:54:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B07", + "extra-info": "", + "message": "dita2022__ (10.5.50.111): logged in", + "time": "2026-01-20 11:54:49", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B08", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.111): logged in", + "time": "2026-01-20 11:54:49", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B09", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.122 for 7C:9A:1D:2D:E5:E1 ", + "time": "2026-01-20 11:54:51", + "topics": "dhcp,info" + }, + { + ".id": "*2B0A", + "extra-info": "", + "message": "dita2022__ (10.5.50.111): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-20 11:54:51", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B0B", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.111): logged out: host removed: dhcp entry overrides dynamic one", + "time": "2026-01-20 11:54:51", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B0C", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-20 11:54:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B0D", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-20 11:54:53", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B0E", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged in", + "time": "2026-01-20 11:54:53", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B0F", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-20 11:54:53", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B10", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.104 for 08:71:90:41:78:2D DESKTOP-V44P7E3", + "time": "2026-01-20 12:04:05", + "topics": "dhcp,info" + }, + { + ".id": "*2B11", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.104 for 08:71:90:41:78:2D DESKTOP-V44P7E3", + "time": "2026-01-20 12:04:05", + "topics": "dhcp,info" + }, + { + ".id": "*2B12", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.104 for 08:71:90:41:78:2D DESKTOP-V44P7E3", + "time": "2026-01-20 12:05:05", + "topics": "dhcp,info" + }, + { + ".id": "*2B13", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.104 for 08:71:90:41:78:2D DESKTOP-V44P7E3", + "time": "2026-01-20 12:05:05", + "topics": "dhcp,info" + }, + { + ".id": "*2B14", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-20 12:05:12", + "topics": "dhcp,info" + }, + { + ".id": "*2B15", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-20 12:53:06", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B16", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-20 12:53:06", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B17", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-20 12:53:59", + "topics": "dhcp,info" + }, + { + ".id": "*2B18", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.250 for 34:E6:E6:23:B5:4A LG_Smart_Laundry2_open", + "time": "2026-01-20 12:54:11", + "topics": "dhcp,info" + }, + { + ".id": "*2B19", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.250 for 34:E6:E6:23:B5:4A LG_Smart_Laundry2_open", + "time": "2026-01-20 12:54:11", + "topics": "dhcp,info" + }, + { + ".id": "*2B1A", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-20 12:54:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B1B", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-20 12:54:15", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B1C", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.250 for 50:29:F5:DC:2C:F9 OPPO-A3s", + "time": "2026-01-20 12:58:00", + "topics": "dhcp,info" + }, + { + ".id": "*2B1D", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.122 for 7C:9A:1D:2D:E5:E1 ", + "time": "2026-01-20 13:14:08", + "topics": "dhcp,info" + }, + { + ".id": "*2B1E", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-20 13:14:48", + "topics": "dhcp,info" + }, + { + ".id": "*2B1F", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-20 13:20:12", + "topics": "dhcp,info" + }, + { + ".id": "*2B20", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.135 for 8C:D9:D6:F2:E8:A4 M2006C3LG-Redmi9A", + "time": "2026-01-20 13:34:46", + "topics": "dhcp,info" + }, + { + ".id": "*2B21", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.145 for BA:F1:34:51:19:54 Redmi-Note-9", + "time": "2026-01-20 13:34:47", + "topics": "dhcp,info" + }, + { + ".id": "*2B22", + "extra-info": "", + "message": "koming123 (10.5.50.145): trying to log in by mac-cookie", + "time": "2026-01-20 13:34:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B23", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): trying to log in by mac-cookie", + "time": "2026-01-20 13:34:47", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B24", + "extra-info": "", + "message": "koming123 (10.5.50.145): logged in", + "time": "2026-01-20 13:34:47", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B25", + "extra-info": "", + "message": "->: koming123 (10.5.50.145): logged in", + "time": "2026-01-20 13:34:47", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B26", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.108 for 0A:AE:F9:40:36:45 OPPO-A60", + "time": "2026-01-20 13:55:34", + "topics": "dhcp,info" + }, + { + ".id": "*2B27", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.108 for 0A:AE:F9:40:36:45 OPPO-A60", + "time": "2026-01-20 13:55:35", + "topics": "dhcp,info" + }, + { + ".id": "*2B28", + "extra-info": "", + "message": "panluhari321 (10.5.50.140): logged out: keepalive timeout", + "time": "2026-01-20 14:08:26", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B29", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged out: keepalive timeout", + "time": "2026-01-20 14:08:26", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B2A", + "extra-info": "", + "message": "panluhari321 (10.5.50.140): trying to log in by mac-cookie", + "time": "2026-01-20 14:09:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B2B", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): trying to log in by mac-cookie", + "time": "2026-01-20 14:09:14", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B2C", + "extra-info": "", + "message": "panluhari321 (10.5.50.140): logged in", + "time": "2026-01-20 14:09:14", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B2D", + "extra-info": "", + "message": "->: panluhari321 (10.5.50.140): logged in", + "time": "2026-01-20 14:09:14", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B2E", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.122 for 7C:9A:1D:2D:E5:E1 ", + "time": "2026-01-20 14:20:04", + "topics": "dhcp,info" + }, + { + ".id": "*2B2F", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-20 14:20:06", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B30", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-20 14:20:06", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B31", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged in", + "time": "2026-01-20 14:20:06", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B32", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-20 14:20:06", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B33", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.109 for 30:E3:7A:E1:1F:9A DESKTOP-O581LSP", + "time": "2026-01-20 15:33:59", + "topics": "dhcp,info" + }, + { + ".id": "*2B34", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.117 for 50:5B:C2:82:19:0F DESKTOP-EVNK9CF", + "time": "2026-01-20 15:38:38", + "topics": "dhcp,info" + }, + { + ".id": "*2B35", + "extra-info": "", + "message": "tb62 (10.5.50.117): trying to log in by cookie", + "time": "2026-01-20 15:43:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B36", + "extra-info": "", + "message": "->: tb62 (10.5.50.117): trying to log in by cookie", + "time": "2026-01-20 15:43:35", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B37", + "extra-info": "", + "message": "tb62 (10.5.50.117): logged in", + "time": "2026-01-20 15:43:35", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B38", + "extra-info": "", + "message": "->: tb62 (10.5.50.117): logged in", + "time": "2026-01-20 15:43:35", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B39", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged in from 192.168.7.100 via winbox", + "time": "2026-01-20 15:44:21", + "topics": "system,info,account" + }, + { + ".id": "*2B3A", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged out from 192.168.7.100 via winbox", + "time": "2026-01-20 16:09:56", + "topics": "system,info,account" + }, + { + ".id": "*2B3B", + "extra-info": "", + "message": "tb62 (10.5.50.117): logged out: keepalive timeout", + "time": "2026-01-20 16:32:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B3C", + "extra-info": "", + "message": "->: tb62 (10.5.50.117): logged out: keepalive timeout", + "time": "2026-01-20 16:32:16", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B3D", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.117 for 50:5B:C2:82:19:0F DESKTOP-EVNK9CF", + "time": "2026-01-20 16:47:57", + "topics": "dhcp,info" + }, + { + ".id": "*2B3E", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-20 17:03:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B3F", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-20 17:03:21", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B40", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-20 17:05:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B41", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): trying to log in by mac-cookie", + "time": "2026-01-20 17:05:44", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B42", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged in", + "time": "2026-01-20 17:05:44", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B43", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged in", + "time": "2026-01-20 17:05:44", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B44", + "extra-info": "", + "message": "ovpn-import1759218976: disconnected ", + "time": "2026-01-20 17:08:00", + "topics": "ovpn,info" + }, + { + ".id": "*2B45", + "extra-info": "", + "message": "ovpn-import1759218976: terminating... - peer disconnected", + "time": "2026-01-20 17:08:00", + "topics": "ovpn,info" + }, + { + ".id": "*2B46", + "extra-info": "", + "message": "ovpn-import1759218976: disconnected", + "time": "2026-01-20 17:08:00", + "topics": "ovpn,info" + }, + { + ".id": "*2B47", + "extra-info": "", + "message": "ovpn-import1759218976: initializing...", + "time": "2026-01-20 17:08:00", + "topics": "ovpn,info" + }, + { + ".id": "*2B48", + "extra-info": "", + "message": "ovpn-import1759218976: connecting...", + "time": "2026-01-20 17:08:00", + "topics": "ovpn,info" + }, + { + ".id": "*2B49", + "extra-info": "", + "message": "ovpn-import1759218976: using encoding - AES-256-GCM/SHA512", + "time": "2026-01-20 17:08:00", + "topics": "ovpn,info" + }, + { + ".id": "*2B4A", + "extra-info": "", + "message": "ovpn-import1759218976: connected", + "time": "2026-01-20 17:08:00", + "topics": "ovpn,info" + }, + { + ".id": "*2B4B", + "extra-info": "", + "message": "aw: disconnected ", + "time": "2026-01-20 17:08:02", + "topics": "ovpn,info" + }, + { + ".id": "*2B4C", + "extra-info": "", + "message": "aw: terminating... - peer disconnected", + "time": "2026-01-20 17:08:02", + "topics": "ovpn,info" + }, + { + ".id": "*2B4D", + "extra-info": "", + "message": "aw: disconnected", + "time": "2026-01-20 17:08:02", + "topics": "ovpn,info" + }, + { + ".id": "*2B4E", + "extra-info": "", + "message": "aw: initializing...", + "time": "2026-01-20 17:08:02", + "topics": "ovpn,info" + }, + { + ".id": "*2B4F", + "extra-info": "", + "message": "aw: connecting...", + "time": "2026-01-20 17:08:02", + "topics": "ovpn,info" + }, + { + ".id": "*2B50", + "extra-info": "", + "message": "aw: using encoding - AES-256-GCM/SHA256", + "time": "2026-01-20 17:08:03", + "topics": "ovpn,info" + }, + { + ".id": "*2B51", + "extra-info": "", + "message": "aw: connected", + "time": "2026-01-20 17:08:03", + "topics": "ovpn,info" + }, + { + ".id": "*2B52", + "extra-info": "", + "message": "aw: disconnected ", + "time": "2026-01-20 17:13:37", + "topics": "ovpn,info" + }, + { + ".id": "*2B53", + "extra-info": "", + "message": "aw: terminating... - peer disconnected", + "time": "2026-01-20 17:13:37", + "topics": "ovpn,info" + }, + { + ".id": "*2B54", + "extra-info": "", + "message": "aw: disconnected", + "time": "2026-01-20 17:13:37", + "topics": "ovpn,info" + }, + { + ".id": "*2B55", + "extra-info": "", + "message": "aw: initializing...", + "time": "2026-01-20 17:13:37", + "topics": "ovpn,info" + }, + { + ".id": "*2B56", + "extra-info": "", + "message": "aw: connecting...", + "time": "2026-01-20 17:13:37", + "topics": "ovpn,info" + }, + { + ".id": "*2B57", + "extra-info": "", + "message": "aw: using encoding - AES-256-GCM/SHA256", + "time": "2026-01-20 17:13:38", + "topics": "ovpn,info" + }, + { + ".id": "*2B58", + "extra-info": "", + "message": "aw: connected", + "time": "2026-01-20 17:13:38", + "topics": "ovpn,info" + }, + { + ".id": "*2B59", + "extra-info": "", + "message": "ovpn-import1759218976: disconnected ", + "time": "2026-01-20 17:13:40", + "topics": "ovpn,info" + }, + { + ".id": "*2B5A", + "extra-info": "", + "message": "ovpn-import1759218976: terminating... - peer disconnected", + "time": "2026-01-20 17:13:40", + "topics": "ovpn,info" + }, + { + ".id": "*2B5B", + "extra-info": "", + "message": "ovpn-import1759218976: disconnected", + "time": "2026-01-20 17:13:40", + "topics": "ovpn,info" + }, + { + ".id": "*2B5C", + "extra-info": "", + "message": "ovpn-import1759218976: initializing...", + "time": "2026-01-20 17:13:40", + "topics": "ovpn,info" + }, + { + ".id": "*2B5D", + "extra-info": "", + "message": "ovpn-import1759218976: connecting...", + "time": "2026-01-20 17:13:40", + "topics": "ovpn,info" + }, + { + ".id": "*2B5E", + "extra-info": "", + "message": "ovpn-import1759218976: using encoding - AES-256-GCM/SHA512", + "time": "2026-01-20 17:13:41", + "topics": "ovpn,info" + }, + { + ".id": "*2B5F", + "extra-info": "", + "message": "ovpn-import1759218976: connected", + "time": "2026-01-20 17:13:41", + "topics": "ovpn,info" + }, + { + ".id": "*2B60", + "extra-info": "", + "message": "dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-20 17:15:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B61", + "extra-info": "", + "message": "->: dita2022__ (10.5.50.122): logged out: keepalive timeout", + "time": "2026-01-20 17:15:37", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B62", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-20 17:23:20", + "topics": "dhcp,info" + }, + { + ".id": "*2B63", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-20 17:23:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B64", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-20 17:23:22", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B65", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-20 17:23:22", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B66", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-20 17:23:22", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B67", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-20 17:31:36", + "topics": "dhcp,info" + }, + { + ".id": "*2B68", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.122 for 7C:9A:1D:2D:E5:E1 ", + "time": "2026-01-20 17:35:44", + "topics": "dhcp,info" + }, + { + ".id": "*2B69", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-20 18:33:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B6A", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-20 18:33:11", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B6B", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-20 18:36:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B6C", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): trying to log in by mac-cookie", + "time": "2026-01-20 18:36:32", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B6D", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-20 18:36:32", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B6E", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged in", + "time": "2026-01-20 18:36:32", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B6F", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.121 for D2:E3:E8:9B:9F:12 Galaxy-A53-5G", + "time": "2026-01-20 18:43:33", + "topics": "dhcp,info" + }, + { + ".id": "*2B70", + "extra-info": "", + "message": "kaduk123 (10.5.50.121): trying to log in by mac-cookie", + "time": "2026-01-20 18:43:34", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B71", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): trying to log in by mac-cookie", + "time": "2026-01-20 18:43:34", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B72", + "extra-info": "", + "message": "kaduk123 (10.5.50.121): logged in", + "time": "2026-01-20 18:43:34", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B73", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): logged in", + "time": "2026-01-20 18:43:34", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B74", + "extra-info": "", + "message": "kaduk123 (10.5.50.121): logged out: keepalive timeout", + "time": "2026-01-20 18:51:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B75", + "extra-info": "", + "message": "->: kaduk123 (10.5.50.121): logged out: keepalive timeout", + "time": "2026-01-20 18:51:36", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B76", + "extra-info": "", + "message": "darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-20 18:53:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B77", + "extra-info": "", + "message": "->: darmaputra321 (10.5.50.106): logged out: keepalive timeout", + "time": "2026-01-20 18:53:13", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B78", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.106 for 92:E6:DB:15:EA:0D ", + "time": "2026-01-20 19:06:32", + "topics": "dhcp,info" + }, + { + ".id": "*2B79", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.121 for D2:E3:E8:9B:9F:12 Galaxy-A53-5G", + "time": "2026-01-20 19:13:33", + "topics": "dhcp,info" + }, + { + ".id": "*2B7A", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.251 for FC:A5:D0:95:76:43 OPPO-A12", + "time": "2026-01-20 19:16:24", + "topics": "dhcp,info" + }, + { + ".id": "*2B7B", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged in from 192.168.7.100 via winbox", + "time": "2026-01-20 19:19:23", + "topics": "system,info,account" + }, + { + ".id": "*2B7C", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.248 for 68:C6:3A:CA:77:1C bale-delod", + "time": "2026-01-20 19:23:18", + "topics": "dhcp,info" + }, + { + ".id": "*2B7D", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.248 for 68:C6:3A:CA:77:1C bale-delod", + "time": "2026-01-20 19:24:18", + "topics": "dhcp,info" + }, + { + ".id": "*2B7E", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.248 for 68:C6:3A:CA:77:1C bale-delod", + "time": "2026-01-20 19:24:18", + "topics": "dhcp,info" + }, + { + ".id": "*2B7F", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.113 for 70:04:1D:E0:26:4E rumah", + "time": "2026-01-20 19:32:37", + "topics": "dhcp,info" + }, + { + ".id": "*2B80", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.113 for 70:04:1D:E0:26:4E rumah", + "time": "2026-01-20 19:32:37", + "topics": "dhcp,info" + }, + { + ".id": "*2B81", + "extra-info": "", + "message": "dhcp-lan deassigned 192.168.7.248 for 68:C6:3A:CA:77:1C bale-delod", + "time": "2026-01-20 20:02:45", + "topics": "dhcp,info" + }, + { + ".id": "*2B82", + "extra-info": "", + "message": "dhcp-lan assigned 192.168.7.248 for 68:C6:3A:CA:77:1C bale-delod", + "time": "2026-01-20 20:02:45", + "topics": "dhcp,info" + }, + { + ".id": "*2B83", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.103 for E2:EB:EE:28:E2:85 OPPO-A5-2020", + "time": "2026-01-20 20:08:49", + "topics": "dhcp,info" + }, + { + ".id": "*2B84", + "extra-info": "", + "message": "ew27 (10.5.50.103): trying to log in by mac-cookie", + "time": "2026-01-20 20:08:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B85", + "extra-info": "", + "message": "->: ew27 (10.5.50.103): trying to log in by mac-cookie", + "time": "2026-01-20 20:08:49", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B86", + "extra-info": "", + "message": "ew27 (10.5.50.103): logged in", + "time": "2026-01-20 20:08:49", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B87", + "extra-info": "", + "message": "->: ew27 (10.5.50.103): logged in", + "time": "2026-01-20 20:08:49", + "topics": "hotspot,account,info,debug" + }, + { + ".id": "*2B88", + "extra-info": "", + "message": "ew27 (10.5.50.103): logged out: keepalive timeout", + "time": "2026-01-20 20:12:58", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B89", + "extra-info": "", + "message": "->: ew27 (10.5.50.103): logged out: keepalive timeout", + "time": "2026-01-20 20:12:58", + "topics": "hotspot,info,debug" + }, + { + ".id": "*2B8A", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.110 for 9E:E1:69:4E:42:A9 OPPO-A54", + "time": "2026-01-20 20:14:55", + "topics": "dhcp,info" + }, + { + ".id": "*2B8B", + "extra-info": "", + "message": "dhcp-hotspot assigned 10.5.50.116 for 2C:D0:66:04:A2:98 M2004J19C-Redmi9", + "time": "2026-01-20 20:19:16", + "topics": "dhcp,info" + }, + { + ".id": "*2B8C", + "extra-info": "", + "message": "dhcp-proxmox assigned 192.168.200.230 for 56:74:77:33:64:B5 V2419", + "time": "2026-01-20 20:23:00", + "topics": "dhcp,info" + }, + { + ".id": "*2B8D", + "extra-info": "", + "message": "dhcp-proxmox assigned 192.168.200.253 for FC:EC:DA:08:B6:8D AirGrid Client", + "time": "2026-01-20 20:23:01", + "topics": "dhcp,info" + }, + { + ".id": "*2B8E", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.103 for E2:EB:EE:28:E2:85 OPPO-A5-2020", + "time": "2026-01-20 20:38:49", + "topics": "dhcp,info" + }, + { + ".id": "*2B8F", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged out from 192.168.7.100 via winbox", + "time": "2026-01-20 20:44:19", + "topics": "system,info,account" + }, + { + ".id": "*2B90", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.110 for 9E:E1:69:4E:42:A9 OPPO-A54", + "time": "2026-01-20 20:44:55", + "topics": "dhcp,info" + }, + { + ".id": "*2B91", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.124 for 5E:A0:15:8F:4F:C1 ", + "time": "2026-01-20 20:46:37", + "topics": "dhcp,info" + }, + { + ".id": "*2B92", + "extra-info": "", + "message": "dhcp-hotspot deassigned 10.5.50.116 for 2C:D0:66:04:A2:98 M2004J19C-Redmi9", + "time": "2026-01-20 20:49:16", + "topics": "dhcp,info" + }, + { + ".id": "*2B93", + "extra-info": "", + "message": "dhcp-proxmox deassigned 192.168.200.230 for 56:74:77:33:64:B5 V2419", + "time": "2026-01-20 20:53:00", + "topics": "dhcp,info" + }, + { + ".id": "*2B94", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged in from 192.168.7.100 via winbox", + "time": "2026-01-20 21:10:59", + "topics": "system,info,account" + }, + { + ".id": "*2B95", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged out from 192.168.7.100 via winbox", + "time": "2026-01-20 21:11:38", + "topics": "system,info,account" + }, + { + ".id": "*2B96", + "extra-info": "app=rest-api duser=admin11 outcome=failure src=192.168.7.100 ", + "message": "login failure for user admin11 from 192.168.7.100 via rest-api", + "time": "2026-01-20 21:12:42", + "topics": "system,error,critical" + }, + { + ".id": "*2B97", + "extra-info": "app=rest-api duser=admin11 outcome=failure src=192.168.7.100 ", + "message": "login failure for user admin11 from 192.168.7.100 via rest-api", + "time": "2026-01-20 21:12:42", + "topics": "system,error,critical" + }, + { + ".id": "*2B98", + "extra-info": "app=rest-api duser=admin11 outcome=failure src=192.168.7.100 ", + "message": "login failure for user admin11 from 192.168.7.100 via rest-api", + "time": "2026-01-20 21:12:42", + "topics": "system,error,critical" + }, + { + ".id": "*2B99", + "extra-info": "app=rest-api duser=admin11 outcome=failure src=192.168.7.100 ", + "message": "login failure for user admin11 from 192.168.7.100 via rest-api", + "time": "2026-01-20 21:12:42", + "topics": "system,error,critical" + }, + { + ".id": "*2B9A", + "extra-info": "app=rest-api duser=admin11 outcome=failure src=192.168.7.100 ", + "message": "login failure for user admin11 from 192.168.7.100 via rest-api", + "time": "2026-01-20 21:12:42", + "topics": "system,error,critical" + }, + { + ".id": "*2B9B", + "extra-info": "app=rest-api duser=admin11 outcome=failure src=192.168.7.100 ", + "message": "login failure for user admin11 from 192.168.7.100 via rest-api", + "time": "2026-01-20 21:12:42", + "topics": "system,error,critical" + }, + { + ".id": "*2B9C", + "extra-info": "app=rest-api duser=admin11 outcome=failure src=192.168.7.100 ", + "message": "login failure for user admin11 from 192.168.7.100 via rest-api", + "time": "2026-01-20 21:12:42", + "topics": "system,error,critical" + }, + { + ".id": "*2B9D", + "extra-info": "app=rest-api duser=admin11 outcome=failure src=192.168.7.100 ", + "message": "login failure for user admin11 from 192.168.7.100 via rest-api", + "time": "2026-01-20 21:12:42", + "topics": "system,error,critical" + }, + { + ".id": "*2B9E", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged in from 192.168.7.100 via winbox", + "time": "2026-01-20 21:13:06", + "topics": "system,info,account" + }, + { + ".id": "*2B9F", + "extra-info": "app=rest-api duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged in from 192.168.7.100 via rest-api", + "time": "2026-01-20 21:16:49", + "topics": "system,info,account" + }, + { + ".id": "*2BA0", + "extra-info": "app=api duser=admin11 outcome=success ", + "message": "user admin11 logged in via api", + "time": "2026-01-20 21:16:49", + "topics": "system,info,account" + }, + { + ".id": "*2BA1", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged out from 192.168.7.100 via winbox", + "time": "2026-01-20 21:24:06", + "topics": "system,info,account" + }, + { + ".id": "*2BA2", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged in from 192.168.7.100 via winbox", + "time": "2026-01-20 21:26:31", + "topics": "system,info,account" + }, + { + ".id": "*2BA3", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged out from 192.168.7.100 via winbox", + "time": "2026-01-20 21:26:41", + "topics": "system,info,account" + }, + { + ".id": "*2BA4", + "extra-info": "app=api duser=admin11 outcome=success ", + "message": "user admin11 logged out via api", + "time": "2026-01-20 21:26:49", + "topics": "system,info,account" + }, + { + ".id": "*2BA5", + "extra-info": "app=winbox duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged in from 192.168.7.100 via winbox", + "time": "2026-01-20 21:28:51", + "topics": "system,info,account" + }, + { + ".id": "*2BA6", + "extra-info": "app=rest-api duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged in from 192.168.7.100 via rest-api", + "time": "2026-01-20 21:44:00", + "topics": "system,info,account" + }, + { + ".id": "*2BA7", + "extra-info": "app=api duser=admin11 outcome=success ", + "message": "user admin11 logged in via api", + "time": "2026-01-20 21:44:00", + "topics": "system,info,account" + }, + { + ".id": "*2BA8", + "extra-info": "app=api duser=admin11 outcome=success ", + "message": "user admin11 logged out via api", + "time": "2026-01-20 21:54:00", + "topics": "system,info,account" + }, + { + ".id": "*2BA9", + "extra-info": "app=rest-api duser=admin11 outcome=success src=192.168.7.100 ", + "message": "user admin11 logged in from 192.168.7.100 via rest-api", + "time": "2026-01-20 21:57:33", + "topics": "system,info,account" + }, + { + ".id": "*2BAA", + "extra-info": "app=api duser=admin11 outcome=success ", + "message": "user admin11 logged in via api", + "time": "2026-01-20 21:57:33", + "topics": "system,info,account" + } + ], + "hotspot": { + "active": [ + { + ".id": "*8B32050A", + "address": "10.5.50.139", + "bytes-in": "465339518", + "bytes-out": "8600271310", + "idle-time": "9s", + "keepalive-timeout": "2m", + "login-by": "mac-cookie", + "mac-address": "7A:2A:DB:57:58:16", + "packets-in": "3519669", + "packets-out": "7819658", + "radius": "false", + "server": "hs-vlan15_hs", + "uptime": "16h23m23s", + "user": "wartana0101" + }, + { + ".id": "*8C32050A", + "address": "10.5.50.140", + "bytes-in": "25246136", + "bytes-out": "866619593", + "idle-time": "2s", + "keepalive-timeout": "2m", + "login-by": "mac-cookie", + "mac-address": "3A:80:0B:8D:14:8E", + "packets-in": "252432", + "packets-out": "677691", + "radius": "false", + "server": "hs-vlan15_hs", + "session-time-left": "1w4d22h20m6s", + "uptime": "7h49m14s", + "user": "panluhari321" + }, + { + ".id": "*9132050A", + "address": "10.5.50.145", + "bytes-in": "248644092", + "bytes-out": "2499994028", + "idle-time": "3m15s", + "keepalive-timeout": "2m", + "login-by": "mac-cookie", + "mac-address": "BA:F1:34:51:19:54", + "packets-in": "865088", + "packets-out": "2037547", + "radius": "false", + "server": "hs-vlan15_hs", + "session-time-left": "6d3h7m20s", + "uptime": "8h23m41s", + "user": "koming123" + }, + { + ".id": "*FD32050A", + "address": "10.5.50.253", + "bytes-in": "4390038617", + "bytes-out": "10904332094", + "idle-time": "6s", + "keepalive-timeout": "2m", + "login-by": "mac-cookie", + "mac-address": "EA:42:27:4C:BE:82", + "packets-in": "11547007", + "packets-out": "11887041", + "radius": "false", + "server": "hs-vlan15_hs", + "uptime": "2d7h4m5s", + "user": "gedekartika@*2025#" + } + ], + "users": [ + { + ".id": "*0", + "bytes-in": "0", + "bytes-out": "0", + "comment": "counters and limits for trial users", + "default": "true", + "disabled": "false", + "dynamic": "false", + "name": "default-trial", + "packets-in": "0", + "packets-out": "0", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*1", + "bytes-in": "935432258", + "bytes-out": "16119964890", + "disabled": "false", + "dynamic": "false", + "limit-uptime": "4w2d", + "name": "dita2022__", + "packets-in": "5944430", + "packets-out": "13038589", + "password": "dita2022__", + "profile": "1_bulan", + "server": "all", + "uptime": "2d23h12m39s" + }, + { + ".id": "*2", + "bytes-in": "670141542", + "bytes-out": "18207726236", + "comment": "2025-09-16 14:22:02 X", + "disabled": "false", + "dynamic": "false", + "limit-uptime": "4w2d", + "name": "menluhari123", + "packets-in": "4638368", + "packets-out": "14905722", + "password": "menluhari123", + "profile": "1_bulan", + "server": "all", + "uptime": "1w1d2h32m20s" + }, + { + ".id": "*3", + "bytes-in": "13557865531", + "bytes-out": "67147040103", + "disabled": "false", + "dynamic": "false", + "limit-uptime": "4w2d", + "name": "darmaputra321", + "packets-in": "31366140", + "packets-out": "58101201", + "password": "darmaputra321", + "profile": "1_bulan", + "server": "all", + "uptime": "1w6d12h34m8s" + }, + { + ".id": "*4", + "bytes-in": "72069566743", + "bytes-out": "811139568876", + "disabled": "false", + "dynamic": "false", + "name": "wartana0101", + "packets-in": "392599653", + "packets-out": "726068593", + "password": "wartana0101", + "profile": "unlimited", + "server": "all", + "uptime": "11w6d23h56m5s" + }, + { + ".id": "*5", + "bytes-in": "12716000082", + "bytes-out": "170480839620", + "disabled": "false", + "dynamic": "false", + "limit-uptime": "4w2d", + "name": "kaduk123", + "packets-in": "78534671", + "packets-out": "145149182", + "password": "kaduk123", + "profile": "1_bulan", + "server": "all", + "uptime": "3w3d23h7m7s" + }, + { + ".id": "*6", + "bytes-in": "1641600411", + "bytes-out": "39806024989", + "disabled": "false", + "dynamic": "false", + "limit-uptime": "4w2d", + "name": "panluhari321", + "packets-in": "12177604", + "packets-out": "33858437", + "password": "panluhari321", + "profile": "1_bulan", + "server": "all", + "uptime": "2w3d17h50m40s" + }, + { + ".id": "*7", + "bytes-in": "0", + "bytes-out": "0", + "disabled": "true", + "dynamic": "false", + "limit-uptime": "4w2d", + "name": "iphone2024", + "packets-in": "0", + "packets-out": "0", + "password": "iphone2024", + "profile": "1_bulan", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*8", + "bytes-in": "77594088", + "bytes-out": "495012485", + "disabled": "false", + "dynamic": "false", + "limit-uptime": "1w", + "name": "koming123", + "packets-in": "256922", + "packets-out": "427669", + "password": "koming123", + "profile": "1_minggu", + "server": "all", + "uptime": "12h28m59s" + }, + { + ".id": "*9", + "bytes-in": "14220934869", + "bytes-out": "43627670928", + "disabled": "false", + "dynamic": "false", + "limit-uptime": "4w2d", + "name": "iphone2025", + "packets-in": "29350929", + "packets-out": "39592771", + "password": "iphone2025", + "profile": "1_bulan", + "server": "all", + "uptime": "2w5h17m57s" + }, + { + ".id": "*A", + "bytes-in": "140711028883", + "bytes-out": "744137558037", + "disabled": "false", + "dynamic": "false", + "name": "gedekartika@*2025#", + "packets-in": "638715366", + "packets-out": "664384962", + "password": "gedekartika@*2025#", + "profile": "unlimited-1-user", + "server": "all", + "uptime": "11w3d17h49m37s" + }, + { + ".id": "*B", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-07 21:35:10 X", + "disabled": "false", + "dynamic": "false", + "name": "ep55", + "packets-in": "0", + "packets-out": "0", + "password": "ep55", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*C", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-10 20:19:06 X", + "disabled": "false", + "dynamic": "false", + "name": "eu49", + "packets-in": "0", + "packets-out": "0", + "password": "eu49", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*D", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-10 21:58:22 X", + "disabled": "false", + "dynamic": "false", + "name": "vf64", + "packets-in": "0", + "packets-out": "0", + "password": "vf64", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*E", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-11 19:20:57 X", + "disabled": "false", + "dynamic": "false", + "name": "tu82", + "packets-in": "0", + "packets-out": "0", + "password": "tu82", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*F", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-11 20:04:23 X", + "disabled": "false", + "dynamic": "false", + "name": "yi54", + "packets-in": "0", + "packets-out": "0", + "password": "yi54", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*10", + "bytes-in": "10819338", + "bytes-out": "283860500", + "comment": "2025-07-19 19:59:55 X", + "disabled": "false", + "dynamic": "false", + "name": "ur55", + "packets-in": "39275", + "packets-out": "241351", + "password": "ur55", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*11", + "bytes-in": "5800528", + "bytes-out": "46197552", + "comment": "2025-07-18 20:45:05 X", + "disabled": "false", + "dynamic": "false", + "name": "wp67", + "packets-in": "49112", + "packets-out": "126745", + "password": "wp67", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*12", + "bytes-in": "16348887", + "bytes-out": "375939333", + "comment": "2025-07-17 16:19:03 X", + "disabled": "false", + "dynamic": "false", + "name": "kk56", + "packets-in": "137941", + "packets-out": "446687", + "password": "kk56", + "profile": "1_jam", + "server": "all", + "uptime": "1h40m17s" + }, + { + ".id": "*13", + "bytes-in": "103764830", + "bytes-out": "2568362637", + "comment": "2025-07-16 21:17:41 X", + "disabled": "false", + "dynamic": "false", + "name": "ap49", + "packets-in": "1512616", + "packets-out": "1847132", + "password": "ap49", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*14", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-11 20:36:13 X", + "disabled": "false", + "dynamic": "false", + "name": "jj73", + "packets-in": "0", + "packets-out": "0", + "password": "jj73", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*15", + "bytes-in": "12015009", + "bytes-out": "22248048", + "comment": "2025-08-20 21:37:40 X", + "disabled": "false", + "dynamic": "false", + "name": "pf66", + "packets-in": "148224", + "packets-out": "148866", + "password": "pf66", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*16", + "bytes-in": "4633308", + "bytes-out": "284168463", + "comment": "2025-08-03 17:02:50 X", + "disabled": "false", + "dynamic": "false", + "name": "iv76", + "packets-in": "21048", + "packets-out": "227631", + "password": "iv76", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*17", + "bytes-in": "13526508", + "bytes-out": "126444301", + "comment": "2025-07-27 15:25:57 X", + "disabled": "false", + "dynamic": "false", + "name": "ub72", + "packets-in": "122122", + "packets-out": "193605", + "password": "ub72", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*18", + "bytes-in": "17272504", + "bytes-out": "101536101", + "comment": "2025-07-21 21:19:41 X", + "disabled": "false", + "dynamic": "false", + "name": "tc88", + "packets-in": "175250", + "packets-out": "263778", + "password": "tc88", + "profile": "1_jam", + "server": "all", + "uptime": "1h44m21s" + }, + { + ".id": "*19", + "bytes-in": "17551949", + "bytes-out": "565003093", + "comment": "2025-07-21 18:19:14 X", + "disabled": "false", + "dynamic": "false", + "name": "rr92", + "packets-in": "261902", + "packets-out": "273844", + "password": "rr92", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*1A", + "bytes-in": "17938179", + "bytes-out": "191288509", + "comment": "2025-09-01 20:14:58 X", + "disabled": "false", + "dynamic": "false", + "name": "bg35", + "packets-in": "110643", + "packets-out": "308901", + "password": "bg35", + "profile": "1_jam", + "server": "all", + "uptime": "2h36m32s" + }, + { + ".id": "*1B", + "bytes-in": "14399092", + "bytes-out": "236915324", + "comment": "2025-08-31 18:33:27 X", + "disabled": "false", + "dynamic": "false", + "name": "tv43", + "packets-in": "77709", + "packets-out": "295898", + "password": "tv43", + "profile": "1_jam", + "server": "all", + "uptime": "1h43m54s" + }, + { + ".id": "*1C", + "bytes-in": "10806570", + "bytes-out": "97760955", + "comment": "2025-08-28 20:04:58 X", + "disabled": "false", + "dynamic": "false", + "name": "fz24", + "packets-in": "55063", + "packets-out": "130923", + "password": "fz24", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*1D", + "bytes-in": "48388459", + "bytes-out": "594156584", + "comment": "2025-08-24 20:46:16 X", + "disabled": "false", + "dynamic": "false", + "name": "pw92", + "packets-in": "309136", + "packets-out": "633465", + "password": "pw92", + "profile": "1_jam", + "server": "all", + "uptime": "3h32m37s" + }, + { + ".id": "*1E", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "rz46", + "packets-in": "0", + "packets-out": "0", + "password": "rz46", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*1F", + "bytes-in": "5292623", + "bytes-out": "46715860", + "comment": "2025-09-04 19:42:57 X", + "disabled": "false", + "dynamic": "false", + "name": "dx68", + "packets-in": "27722", + "packets-out": "47992", + "password": "dx68", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*20", + "bytes-in": "29481850", + "bytes-out": "787238706", + "comment": "2025-09-14 20:53:21 X", + "disabled": "false", + "dynamic": "false", + "name": "ti28", + "packets-in": "236438", + "packets-out": "667919", + "password": "ti28", + "profile": "1_jam", + "server": "all", + "uptime": "1h54m45s" + }, + { + ".id": "*21", + "bytes-in": "45787697", + "bytes-out": "983389765", + "comment": "2025-09-22 23:16:19 X", + "disabled": "false", + "dynamic": "false", + "name": "gx29", + "packets-in": "461521", + "packets-out": "778589", + "password": "gx29", + "profile": "1_jam", + "server": "all", + "uptime": "1h32m16s" + }, + { + ".id": "*22", + "bytes-in": "21678634", + "bytes-out": "288187", + "comment": "2025-09-30 17:26:17 X", + "disabled": "false", + "dynamic": "false", + "name": "zn72", + "packets-in": "15827", + "packets-out": "2264", + "password": "zn72", + "profile": "1_jam", + "server": "all", + "uptime": "2m49s" + }, + { + ".id": "*23", + "bytes-in": "20553914", + "bytes-out": "260754935", + "comment": "2025-09-23 20:30:56 X", + "disabled": "false", + "dynamic": "false", + "name": "pe55", + "packets-in": "146460", + "packets-out": "222569", + "password": "pe55", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*24", + "bytes-in": "36412137", + "bytes-out": "1361714795", + "comment": "2025-09-14 22:57:54 X", + "disabled": "false", + "dynamic": "false", + "name": "xj96", + "packets-in": "433720", + "packets-out": "751731", + "password": "xj96", + "profile": "1_jam", + "server": "all", + "uptime": "1h39m37s" + }, + { + ".id": "*25", + "bytes-in": "19824979", + "bytes-out": "112192199", + "comment": "2025-09-22 22:26:55 X", + "disabled": "false", + "dynamic": "false", + "name": "vi78", + "packets-in": "240753", + "packets-out": "258935", + "password": "vi78", + "profile": "1_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*26", + "bytes-in": "11623352", + "bytes-out": "214086258", + "comment": "2025-09-30 21:55:38 X", + "disabled": "false", + "dynamic": "false", + "name": "yg39", + "packets-in": "84943", + "packets-out": "217445", + "password": "yg39", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*27", + "bytes-in": "33501175", + "bytes-out": "694572126", + "comment": "2025-10-15 19:35:21 X", + "disabled": "false", + "dynamic": "false", + "name": "fm28", + "packets-in": "327334", + "packets-out": "553278", + "password": "fm28", + "profile": "1_jam", + "server": "all", + "uptime": "1h27m9s" + }, + { + ".id": "*28", + "bytes-in": "25035761", + "bytes-out": "931441766", + "comment": "2025-10-12 18:03:20 X", + "disabled": "false", + "dynamic": "false", + "name": "fe78", + "packets-in": "312515", + "packets-out": "512653", + "password": "fe78", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*29", + "bytes-in": "29753424", + "bytes-out": "971988896", + "comment": "2025-10-15 18:13:01 X", + "disabled": "false", + "dynamic": "false", + "name": "xx82", + "packets-in": "389853", + "packets-out": "469492", + "password": "xx82", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*2A", + "bytes-in": "20582815", + "bytes-out": "571580597", + "comment": "2025-10-15 22:40:22 X", + "disabled": "false", + "dynamic": "false", + "name": "pv75", + "packets-in": "249345", + "packets-out": "343336", + "password": "pv75", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*2B", + "bytes-in": "34836515", + "bytes-out": "499498274", + "comment": "2025-10-15 23:40:56 X", + "disabled": "false", + "dynamic": "false", + "name": "iy62", + "packets-in": "276701", + "packets-out": "487546", + "password": "iy62", + "profile": "1_jam", + "server": "all", + "uptime": "2h28m57s" + }, + { + ".id": "*2C", + "bytes-in": "19191251", + "bytes-out": "314128947", + "comment": "2025-10-18 20:02:48 X", + "disabled": "false", + "dynamic": "false", + "name": "bh79", + "packets-in": "201889", + "packets-out": "353639", + "password": "bh79", + "profile": "1_jam", + "server": "all", + "uptime": "1h19m22s" + }, + { + ".id": "*2D", + "bytes-in": "33946800", + "bytes-out": "561489979", + "comment": "2025-10-18 22:34:50 X", + "disabled": "false", + "dynamic": "false", + "name": "ry74", + "packets-in": "192721", + "packets-out": "539473", + "password": "ry74", + "profile": "1_jam", + "server": "all", + "uptime": "3h13m14s" + }, + { + ".id": "*2E", + "bytes-in": "45446735", + "bytes-out": "749967832", + "comment": "2025-12-01 17:05:10 X", + "disabled": "false", + "dynamic": "false", + "name": "sn33", + "packets-in": "486508", + "packets-out": "493705", + "password": "sn33", + "profile": "1_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*2F", + "bytes-in": "26628831", + "bytes-out": "133326740", + "comment": "2025-11-24 18:29:49 X", + "disabled": "false", + "dynamic": "false", + "name": "si24", + "packets-in": "125687", + "packets-out": "155868", + "password": "si24", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*30", + "bytes-in": "106905280", + "bytes-out": "3609244898", + "comment": "2025-11-13 14:40:45 X", + "disabled": "false", + "dynamic": "false", + "name": "rs77", + "packets-in": "1244276", + "packets-out": "1523669", + "password": "rs77", + "profile": "1_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*31", + "bytes-in": "54896368", + "bytes-out": "1464879105", + "comment": "2025-12-02 21:24:45 X", + "disabled": "false", + "dynamic": "false", + "name": "rh48", + "packets-in": "759010", + "packets-out": "828253", + "password": "rh48", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*32", + "bytes-in": "46284294", + "bytes-out": "1355537207", + "comment": "2026-01-19 17:29:39 X", + "disabled": "false", + "dynamic": "false", + "name": "tb62", + "packets-in": "449914", + "packets-out": "786298", + "password": "tb62", + "profile": "1_jam", + "server": "all", + "uptime": "1h48m42s" + }, + { + ".id": "*33", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "kg36", + "packets-in": "0", + "packets-out": "0", + "password": "kg36", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*34", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ih58", + "packets-in": "0", + "packets-out": "0", + "password": "ih58", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*35", + "bytes-in": "21481278", + "bytes-out": "148685362", + "comment": "2025-12-19 23:45:52 X", + "disabled": "false", + "dynamic": "false", + "name": "tj22", + "packets-in": "121559", + "packets-out": "192163", + "password": "tj22", + "profile": "1_jam", + "server": "all", + "uptime": "1h41m57s" + }, + { + ".id": "*36", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "na74", + "packets-in": "0", + "packets-out": "0", + "password": "na74", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*37", + "bytes-in": "15420278", + "bytes-out": "156399403", + "comment": "2025-12-03 17:06:02 X", + "disabled": "false", + "dynamic": "false", + "name": "fx37", + "packets-in": "115056", + "packets-out": "173385", + "password": "fx37", + "profile": "1_jam", + "server": "all", + "uptime": "1h" + }, + { + ".id": "*38", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "nt97", + "packets-in": "0", + "packets-out": "0", + "password": "nt97", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*39", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "zj24", + "packets-in": "0", + "packets-out": "0", + "password": "zj24", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*3A", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "aw63", + "packets-in": "0", + "packets-out": "0", + "password": "aw63", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*3B", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "hf95", + "packets-in": "0", + "packets-out": "0", + "password": "hf95", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*3C", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "hp96", + "packets-in": "0", + "packets-out": "0", + "password": "hp96", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*3D", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ff74", + "packets-in": "0", + "packets-out": "0", + "password": "ff74", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*3E", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "gv32", + "packets-in": "0", + "packets-out": "0", + "password": "gv32", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*3F", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "us95", + "packets-in": "0", + "packets-out": "0", + "password": "us95", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*40", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "xz58", + "packets-in": "0", + "packets-out": "0", + "password": "xz58", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*41", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "is27", + "packets-in": "0", + "packets-out": "0", + "password": "is27", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*42", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ep28", + "packets-in": "0", + "packets-out": "0", + "password": "ep28", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*43", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "hg92", + "packets-in": "0", + "packets-out": "0", + "password": "hg92", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*44", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "kn27", + "packets-in": "0", + "packets-out": "0", + "password": "kn27", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*45", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "rs98", + "packets-in": "0", + "packets-out": "0", + "password": "rs98", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*46", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ac53", + "packets-in": "0", + "packets-out": "0", + "password": "ac53", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*47", + "bytes-in": "63476622", + "bytes-out": "760334687", + "comment": "2025-09-01 22:04:34 X", + "disabled": "false", + "dynamic": "false", + "name": "ew27", + "packets-in": "400679", + "packets-out": "754655", + "password": "ew27", + "profile": "1_jam", + "server": "all", + "uptime": "3h6m46s" + }, + { + ".id": "*48", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ky45", + "packets-in": "0", + "packets-out": "0", + "password": "ky45", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*49", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "rm56", + "packets-in": "0", + "packets-out": "0", + "password": "rm56", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*4A", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ef54", + "packets-in": "0", + "packets-out": "0", + "password": "ef54", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*4B", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "fp87", + "packets-in": "0", + "packets-out": "0", + "password": "fp87", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*4C", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ba73", + "packets-in": "0", + "packets-out": "0", + "password": "ba73", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*4D", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "fi39", + "packets-in": "0", + "packets-out": "0", + "password": "fi39", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*4E", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "xp78", + "packets-in": "0", + "packets-out": "0", + "password": "xp78", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*4F", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "rd96", + "packets-in": "0", + "packets-out": "0", + "password": "rd96", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*50", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "bx25", + "packets-in": "0", + "packets-out": "0", + "password": "bx25", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*51", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "sh85", + "packets-in": "0", + "packets-out": "0", + "password": "sh85", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*52", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "zk25", + "packets-in": "0", + "packets-out": "0", + "password": "zk25", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*53", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "pv35", + "packets-in": "0", + "packets-out": "0", + "password": "pv35", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*54", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "zh73", + "packets-in": "0", + "packets-out": "0", + "password": "zh73", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*55", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "sh66", + "packets-in": "0", + "packets-out": "0", + "password": "sh66", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*56", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "dk89", + "packets-in": "0", + "packets-out": "0", + "password": "dk89", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*57", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "yd76", + "packets-in": "0", + "packets-out": "0", + "password": "yd76", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*58", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "di57", + "packets-in": "0", + "packets-out": "0", + "password": "di57", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*59", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "nt36", + "packets-in": "0", + "packets-out": "0", + "password": "nt36", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*5A", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "wp77", + "packets-in": "0", + "packets-out": "0", + "password": "wp77", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*5B", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "gh75", + "packets-in": "0", + "packets-out": "0", + "password": "gh75", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*5C", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "jb83", + "packets-in": "0", + "packets-out": "0", + "password": "jb83", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*5D", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "mc38", + "packets-in": "0", + "packets-out": "0", + "password": "mc38", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*5E", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "va26", + "packets-in": "0", + "packets-out": "0", + "password": "va26", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*5F", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "nh78", + "packets-in": "0", + "packets-out": "0", + "password": "nh78", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*60", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "tr24", + "packets-in": "0", + "packets-out": "0", + "password": "tr24", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*61", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "tb48", + "packets-in": "0", + "packets-out": "0", + "password": "tb48", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*62", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "xx53", + "packets-in": "0", + "packets-out": "0", + "password": "xx53", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*63", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ni58", + "packets-in": "0", + "packets-out": "0", + "password": "ni58", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*64", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "nt72", + "packets-in": "0", + "packets-out": "0", + "password": "nt72", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*65", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "gk79", + "packets-in": "0", + "packets-out": "0", + "password": "gk79", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*66", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "nj59", + "packets-in": "0", + "packets-out": "0", + "password": "nj59", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*67", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "dv29", + "packets-in": "0", + "packets-out": "0", + "password": "dv29", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*68", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "bw87", + "packets-in": "0", + "packets-out": "0", + "password": "bw87", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*69", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ux83", + "packets-in": "0", + "packets-out": "0", + "password": "ux83", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*6A", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "xs65", + "packets-in": "0", + "packets-out": "0", + "password": "xs65", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*6B", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ej58", + "packets-in": "0", + "packets-out": "0", + "password": "ej58", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*6C", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "vg29", + "packets-in": "0", + "packets-out": "0", + "password": "vg29", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*6D", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "bw77", + "packets-in": "0", + "packets-out": "0", + "password": "bw77", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*6E", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "zi35", + "packets-in": "0", + "packets-out": "0", + "password": "zi35", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*6F", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "df82", + "packets-in": "0", + "packets-out": "0", + "password": "df82", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*70", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "jm36", + "packets-in": "0", + "packets-out": "0", + "password": "jm36", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*71", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "bu93", + "packets-in": "0", + "packets-out": "0", + "password": "bu93", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*72", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "rd28", + "packets-in": "0", + "packets-out": "0", + "password": "rd28", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*73", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ij23", + "packets-in": "0", + "packets-out": "0", + "password": "ij23", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*74", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "wn35", + "packets-in": "0", + "packets-out": "0", + "password": "wn35", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*75", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ga68", + "packets-in": "0", + "packets-out": "0", + "password": "ga68", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*76", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "ge63", + "packets-in": "0", + "packets-out": "0", + "password": "ge63", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*77", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "xh43", + "packets-in": "0", + "packets-out": "0", + "password": "xh43", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*78", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "zz85", + "packets-in": "0", + "packets-out": "0", + "password": "zz85", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*79", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "sz87", + "packets-in": "0", + "packets-out": "0", + "password": "sz87", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*7A", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "zc57", + "packets-in": "0", + "packets-out": "0", + "password": "zc57", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*7B", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "jp27", + "packets-in": "0", + "packets-out": "0", + "password": "jp27", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*7C", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "jb45", + "packets-in": "0", + "packets-out": "0", + "password": "jb45", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*7D", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "nm89", + "packets-in": "0", + "packets-out": "0", + "password": "nm89", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*7E", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "mt85", + "packets-in": "0", + "packets-out": "0", + "password": "mt85", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*7F", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "di74", + "packets-in": "0", + "packets-out": "0", + "password": "di74", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*80", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "mw95", + "packets-in": "0", + "packets-out": "0", + "password": "mw95", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*81", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "nn44", + "packets-in": "0", + "packets-out": "0", + "password": "nn44", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*82", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-158-06.30.25-1 jam", + "disabled": "false", + "dynamic": "false", + "name": "xv44", + "packets-in": "0", + "packets-out": "0", + "password": "xv44", + "profile": "1_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*83", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-04 17:52:16 X", + "disabled": "false", + "dynamic": "false", + "name": "ie92", + "packets-in": "0", + "packets-out": "0", + "password": "ie92", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*84", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-04 17:59:11 X", + "disabled": "false", + "dynamic": "false", + "name": "jx55", + "packets-in": "0", + "packets-out": "0", + "password": "jx55", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*85", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-04 19:50:43 X", + "disabled": "false", + "dynamic": "false", + "name": "fc82", + "packets-in": "0", + "packets-out": "0", + "password": "fc82", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*86", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-04 20:03:14 X", + "disabled": "false", + "dynamic": "false", + "name": "rt25", + "packets-in": "0", + "packets-out": "0", + "password": "rt25", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*87", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-05 20:03:33 X", + "disabled": "false", + "dynamic": "false", + "name": "nn92", + "packets-in": "0", + "packets-out": "0", + "password": "nn92", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*88", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-05 21:56:47 X", + "disabled": "false", + "dynamic": "false", + "name": "gr74", + "packets-in": "0", + "packets-out": "0", + "password": "gr74", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*89", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-06 21:53:10 X", + "disabled": "false", + "dynamic": "false", + "name": "br69", + "packets-in": "0", + "packets-out": "0", + "password": "br69", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*8A", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-11 23:46:38 X", + "disabled": "false", + "dynamic": "false", + "name": "cw74", + "packets-in": "0", + "packets-out": "0", + "password": "cw74", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*8B", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-07 21:45:58 X", + "disabled": "false", + "dynamic": "false", + "name": "ec49", + "packets-in": "0", + "packets-out": "0", + "password": "ec49", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*8C", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-07 19:42:52 X", + "disabled": "false", + "dynamic": "false", + "name": "xs66", + "packets-in": "0", + "packets-out": "0", + "password": "xs66", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*8D", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-06 18:50:13 X", + "disabled": "false", + "dynamic": "false", + "name": "nk33", + "packets-in": "0", + "packets-out": "0", + "password": "nk33", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*8E", + "bytes-in": "8737336", + "bytes-out": "81958309", + "comment": "2025-07-16 16:52:02 X", + "disabled": "false", + "dynamic": "false", + "name": "us28", + "packets-in": "62952", + "packets-out": "99485", + "password": "us28", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*8F", + "bytes-in": "74133984", + "bytes-out": "1368261384", + "comment": "2025-07-16 20:12:50 X", + "disabled": "false", + "dynamic": "false", + "name": "yw96", + "packets-in": "864187", + "packets-out": "1005927", + "password": "yw96", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*90", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-14 23:45:35 X", + "disabled": "false", + "dynamic": "false", + "name": "jm42", + "packets-in": "0", + "packets-out": "0", + "password": "jm42", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*91", + "bytes-in": "36089301", + "bytes-out": "105281711", + "comment": "2025-07-16 20:58:18 X", + "disabled": "false", + "dynamic": "false", + "name": "hh59", + "packets-in": "430458", + "packets-out": "475409", + "password": "hh59", + "profile": "2_jam", + "server": "all", + "uptime": "4h3m47s" + }, + { + ".id": "*92", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-13 21:30:56 X", + "disabled": "false", + "dynamic": "false", + "name": "kt79", + "packets-in": "0", + "packets-out": "0", + "password": "kt79", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*93", + "bytes-in": "17683901", + "bytes-out": "48282029", + "comment": "2025-07-21 20:28:07 X", + "disabled": "false", + "dynamic": "false", + "name": "hp28", + "packets-in": "204288", + "packets-out": "227262", + "password": "hp28", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*94", + "bytes-in": "25917215", + "bytes-out": "988296183", + "comment": "2025-07-19 15:42:14 X", + "disabled": "false", + "dynamic": "false", + "name": "ni82", + "packets-in": "220550", + "packets-out": "890811", + "password": "ni82", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*95", + "bytes-in": "73113178", + "bytes-out": "1709200536", + "comment": "2025-07-19 17:44:11 X", + "disabled": "false", + "dynamic": "false", + "name": "my94", + "packets-in": "979905", + "packets-out": "1197878", + "password": "my94", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*96", + "bytes-in": "92047985", + "bytes-out": "3204276601", + "comment": "2025-08-21 20:56:07 X", + "disabled": "false", + "dynamic": "false", + "name": "fc52", + "packets-in": "1216143", + "packets-out": "1628051", + "password": "fc52", + "profile": "2_jam", + "server": "all", + "uptime": "5h28m20s" + }, + { + ".id": "*97", + "bytes-in": "24154913", + "bytes-out": "252283256", + "comment": "2025-07-20 14:04:50 X", + "disabled": "false", + "dynamic": "false", + "name": "vb95", + "packets-in": "246568", + "packets-out": "291783", + "password": "vb95", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*98", + "bytes-in": "53235477", + "bytes-out": "1158638238", + "comment": "2025-09-20 22:58:27 X", + "disabled": "false", + "dynamic": "false", + "name": "si85", + "packets-in": "735926", + "packets-out": "789121", + "password": "si85", + "profile": "2_jam", + "server": "all", + "uptime": "4h" + }, + { + ".id": "*99", + "bytes-in": "28797667", + "bytes-out": "347736984", + "comment": "2025-09-25 18:08:53 X", + "disabled": "false", + "dynamic": "false", + "name": "gn46", + "packets-in": "251313", + "packets-out": "437375", + "password": "gn46", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*9A", + "bytes-in": "19698008", + "bytes-out": "378025255", + "comment": "2025-09-16 21:31:30 X", + "disabled": "false", + "dynamic": "false", + "name": "st27", + "packets-in": "153530", + "packets-out": "413778", + "password": "st27", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*9B", + "bytes-in": "89950897", + "bytes-out": "1701623386", + "comment": "2025-09-16 20:39:21 X", + "disabled": "false", + "dynamic": "false", + "name": "vd78", + "packets-in": "742149", + "packets-out": "1454427", + "password": "vd78", + "profile": "2_jam", + "server": "all", + "uptime": "5h39m49s" + }, + { + ".id": "*9C", + "bytes-in": "18332140", + "bytes-out": "168576488", + "comment": "2025-09-16 19:25:04 X", + "disabled": "false", + "dynamic": "false", + "name": "fz38", + "packets-in": "198290", + "packets-out": "287632", + "password": "fz38", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*9D", + "bytes-in": "25445314", + "bytes-out": "390914401", + "comment": "2025-09-28 16:50:46 X", + "disabled": "false", + "dynamic": "false", + "name": "rv28", + "packets-in": "293653", + "packets-out": "348385", + "password": "rv28", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*9E", + "bytes-in": "146531011", + "bytes-out": "3840844606", + "comment": "2025-09-28 19:15:40 X", + "disabled": "false", + "dynamic": "false", + "name": "kp76", + "packets-in": "1386901", + "packets-out": "3193468", + "password": "kp76", + "profile": "2_jam", + "server": "all", + "uptime": "7h48m46s" + }, + { + ".id": "*9F", + "bytes-in": "31744819", + "bytes-out": "732634872", + "comment": "2025-09-30 20:53:44 X", + "disabled": "false", + "dynamic": "false", + "name": "es66", + "packets-in": "430043", + "packets-out": "438386", + "password": "es66", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*A0", + "bytes-in": "80009745", + "bytes-out": "946727711", + "comment": "2025-11-20 22:42:34 X", + "disabled": "false", + "dynamic": "false", + "name": "rj48", + "packets-in": "429764", + "packets-out": "978720", + "password": "rj48", + "profile": "2_jam", + "server": "all", + "uptime": "6h7m45s" + }, + { + ".id": "*A1", + "bytes-in": "21349824", + "bytes-out": "64767663", + "comment": "2025-12-03 20:33:19 X", + "disabled": "false", + "dynamic": "false", + "name": "dz35", + "packets-in": "156450", + "packets-out": "239712", + "password": "dz35", + "profile": "2_jam", + "server": "all", + "uptime": "2h16m43s" + }, + { + ".id": "*A2", + "bytes-in": "18798212", + "bytes-out": "93540594", + "comment": "2025-12-21 21:47:27 X", + "disabled": "false", + "dynamic": "false", + "name": "ng46", + "packets-in": "201483", + "packets-out": "251378", + "password": "ng46", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*A3", + "bytes-in": "28072168", + "bytes-out": "258098400", + "comment": "2025-12-12 21:03:16 X", + "disabled": "false", + "dynamic": "false", + "name": "an94", + "packets-in": "236767", + "packets-out": "400352", + "password": "an94", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*A4", + "bytes-in": "20763246", + "bytes-out": "363262750", + "comment": "2025-12-08 22:48:44 X", + "disabled": "false", + "dynamic": "false", + "name": "my37", + "packets-in": "224220", + "packets-out": "289070", + "password": "my37", + "profile": "2_jam", + "server": "all", + "uptime": "3h7m43s" + }, + { + ".id": "*A5", + "bytes-in": "167783396", + "bytes-out": "4060883226", + "comment": "2025-12-08 19:54:36 X", + "disabled": "false", + "dynamic": "false", + "name": "nd55", + "packets-in": "1473920", + "packets-out": "2119819", + "password": "nd55", + "profile": "2_jam", + "server": "all", + "uptime": "5h17m42s" + }, + { + ".id": "*A6", + "bytes-in": "93025380", + "bytes-out": "564484816", + "comment": "2025-12-03 22:29:08 X", + "disabled": "false", + "dynamic": "false", + "name": "tp94", + "packets-in": "765440", + "packets-out": "1033551", + "password": "tp94", + "profile": "2_jam", + "server": "all", + "uptime": "6h33m38s" + }, + { + ".id": "*A7", + "bytes-in": "49486116", + "bytes-out": "782112497", + "comment": "2025-12-31 22:27:30 X", + "disabled": "false", + "dynamic": "false", + "name": "cx69", + "packets-in": "303658", + "packets-out": "699929", + "password": "cx69", + "profile": "2_jam", + "server": "all", + "uptime": "3h7m48s" + }, + { + ".id": "*A8", + "bytes-in": "22048939", + "bytes-out": "209908881", + "comment": "2025-12-31 22:10:40 X", + "disabled": "false", + "dynamic": "false", + "name": "fh28", + "packets-in": "129049", + "packets-out": "246698", + "password": "fh28", + "profile": "2_jam", + "server": "all", + "uptime": "2h33m42s" + }, + { + ".id": "*A9", + "bytes-in": "24793376", + "bytes-out": "129176429", + "comment": "2025-12-10 21:55:35 X", + "disabled": "false", + "dynamic": "false", + "name": "ze39", + "packets-in": "231225", + "packets-out": "269696", + "password": "ze39", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*AA", + "bytes-in": "29838378", + "bytes-out": "785232927", + "comment": "2025-12-08 20:30:02 X", + "disabled": "false", + "dynamic": "false", + "name": "ut39", + "packets-in": "409576", + "packets-out": "411173", + "password": "ut39", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*AB", + "bytes-in": "288249607", + "bytes-out": "3468159758", + "comment": "2025-12-04 21:18:28 X", + "disabled": "false", + "dynamic": "false", + "name": "nc72", + "packets-in": "2148116", + "packets-out": "3455730", + "password": "nc72", + "profile": "2_jam", + "server": "all", + "uptime": "22h21m14s" + }, + { + ".id": "*AC", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "vs85", + "packets-in": "0", + "packets-out": "0", + "password": "vs85", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*AD", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "br57", + "packets-in": "0", + "packets-out": "0", + "password": "br57", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*AE", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "zb79", + "packets-in": "0", + "packets-out": "0", + "password": "zb79", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*AF", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "xt44", + "packets-in": "0", + "packets-out": "0", + "password": "xt44", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*B0", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "rb42", + "packets-in": "0", + "packets-out": "0", + "password": "rb42", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*B1", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "ex95", + "packets-in": "0", + "packets-out": "0", + "password": "ex95", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*B2", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "wz86", + "packets-in": "0", + "packets-out": "0", + "password": "wz86", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*B3", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "un35", + "packets-in": "0", + "packets-out": "0", + "password": "un35", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*B4", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "tg58", + "packets-in": "0", + "packets-out": "0", + "password": "tg58", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*B5", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "ct63", + "packets-in": "0", + "packets-out": "0", + "password": "ct63", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*B6", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "fv75", + "packets-in": "0", + "packets-out": "0", + "password": "fv75", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*B7", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "ce42", + "packets-in": "0", + "packets-out": "0", + "password": "ce42", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*B8", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "st37", + "packets-in": "0", + "packets-out": "0", + "password": "st37", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*B9", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "kc65", + "packets-in": "0", + "packets-out": "0", + "password": "kc65", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*BA", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "da85", + "packets-in": "0", + "packets-out": "0", + "password": "da85", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*BB", + "bytes-in": "86883073", + "bytes-out": "1472241062", + "comment": "2025-08-28 22:28:10 X", + "disabled": "false", + "dynamic": "false", + "name": "pt28", + "packets-in": "698686", + "packets-out": "1344275", + "password": "pt28", + "profile": "2_jam", + "server": "all", + "uptime": "5h17m13s" + }, + { + ".id": "*BC", + "bytes-in": "17009723", + "bytes-out": "175824295", + "comment": "2025-08-28 18:52:03 X", + "disabled": "false", + "dynamic": "false", + "name": "iz28", + "packets-in": "85726", + "packets-out": "267194", + "password": "iz28", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*BD", + "bytes-in": "31454977", + "bytes-out": "325924835", + "comment": "2025-08-24 19:45:30 X", + "disabled": "false", + "dynamic": "false", + "name": "gj62", + "packets-in": "242793", + "packets-out": "425844", + "password": "gj62", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*BE", + "bytes-in": "13039878", + "bytes-out": "60483795", + "comment": "2025-07-17 19:22:46 X", + "disabled": "false", + "dynamic": "false", + "name": "jc34", + "packets-in": "139916", + "packets-out": "158779", + "password": "jc34", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*BF", + "bytes-in": "0", + "bytes-out": "0", + "comment": "2025-07-12 23:16:38 X", + "disabled": "false", + "dynamic": "false", + "name": "xt76", + "packets-in": "0", + "packets-out": "0", + "password": "xt76", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*C0", + "bytes-in": "55885600", + "bytes-out": "1740892908", + "comment": "2025-09-12 19:31:41 X", + "disabled": "false", + "dynamic": "false", + "name": "hr27", + "packets-in": "523181", + "packets-out": "1441986", + "password": "hr27", + "profile": "2_jam", + "server": "all", + "uptime": "5h41m" + }, + { + ".id": "*C1", + "bytes-in": "23143694", + "bytes-out": "293423764", + "comment": "2025-09-10 17:30:00 X", + "disabled": "false", + "dynamic": "false", + "name": "xy69", + "packets-in": "127868", + "packets-out": "382500", + "password": "xy69", + "profile": "2_jam", + "server": "all", + "uptime": "3h3m58s" + }, + { + ".id": "*C2", + "bytes-in": "33030138", + "bytes-out": "1389669952", + "comment": "2025-09-07 17:23:25 X", + "disabled": "false", + "dynamic": "false", + "name": "by89", + "packets-in": "457716", + "packets-out": "721566", + "password": "by89", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*C3", + "bytes-in": "78235547", + "bytes-out": "2286268215", + "comment": "2025-09-04 21:49:13 X", + "disabled": "false", + "dynamic": "false", + "name": "sy85", + "packets-in": "803876", + "packets-out": "1665873", + "password": "sy85", + "profile": "2_jam", + "server": "all", + "uptime": "6h29m47s" + }, + { + ".id": "*C4", + "bytes-in": "28226765", + "bytes-out": "516779603", + "comment": "2025-08-31 16:14:31 X", + "disabled": "false", + "dynamic": "false", + "name": "kg52", + "packets-in": "145366", + "packets-out": "559543", + "password": "kg52", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*C5", + "bytes-in": "76514644", + "bytes-out": "1617123501", + "comment": "2025-10-16 22:05:00 X", + "disabled": "false", + "dynamic": "false", + "name": "ig96", + "packets-in": "838039", + "packets-out": "1062292", + "password": "ig96", + "profile": "2_jam", + "server": "all", + "uptime": "3h26m" + }, + { + ".id": "*C6", + "bytes-in": "20242551", + "bytes-out": "43093190", + "comment": "2025-10-16 20:08:58 X", + "disabled": "false", + "dynamic": "false", + "name": "fh75", + "packets-in": "240635", + "packets-out": "260643", + "password": "fh75", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*C7", + "bytes-in": "93100743", + "bytes-out": "2096330139", + "comment": "2025-10-13 22:41:07 X", + "disabled": "false", + "dynamic": "false", + "name": "im52", + "packets-in": "996370", + "packets-out": "1479707", + "password": "im52", + "profile": "2_jam", + "server": "all", + "uptime": "4h46m58s" + }, + { + ".id": "*C8", + "bytes-in": "27135010", + "bytes-out": "384335436", + "comment": "2025-09-22 22:15:16 X", + "disabled": "false", + "dynamic": "false", + "name": "zp95", + "packets-in": "222918", + "packets-out": "310373", + "password": "zp95", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*C9", + "bytes-in": "73339972", + "bytes-out": "1626490732", + "comment": "2025-09-17 21:22:46 X", + "disabled": "false", + "dynamic": "false", + "name": "ms99", + "packets-in": "945879", + "packets-out": "1040813", + "password": "ms99", + "profile": "2_jam", + "server": "all", + "uptime": "5h39m13s" + }, + { + ".id": "*CA", + "bytes-in": "141043115", + "bytes-out": "85563471", + "comment": "2025-11-24 17:22:05 X", + "disabled": "false", + "dynamic": "false", + "name": "ua85", + "packets-in": "636131", + "packets-out": "525951", + "password": "ua85", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*CB", + "bytes-in": "66948193", + "bytes-out": "1471992715", + "comment": "2025-11-10 21:38:10 X", + "disabled": "false", + "dynamic": "false", + "name": "gp54", + "packets-in": "678284", + "packets-out": "884288", + "password": "gp54", + "profile": "2_jam", + "server": "all", + "uptime": "2h14m29s" + }, + { + ".id": "*CC", + "bytes-in": "167687215", + "bytes-out": "6865717861", + "comment": "2025-11-08 18:33:10 X", + "disabled": "false", + "dynamic": "false", + "name": "eu27", + "packets-in": "2383222", + "packets-out": "3046478", + "password": "eu27", + "profile": "2_jam", + "server": "all", + "uptime": "4h" + }, + { + ".id": "*CD", + "bytes-in": "70365675", + "bytes-out": "1252285103", + "comment": "2025-10-17 22:25:12 X", + "disabled": "false", + "dynamic": "false", + "name": "wc38", + "packets-in": "703669", + "packets-out": "1241997", + "password": "wc38", + "profile": "2_jam", + "server": "all", + "uptime": "3h31m56s" + }, + { + ".id": "*CE", + "bytes-in": "126889087", + "bytes-out": "2917027289", + "comment": "2025-09-19 21:48:10 X", + "disabled": "false", + "dynamic": "false", + "name": "ip83", + "packets-in": "1035521", + "packets-out": "2447926", + "password": "ip83", + "profile": "2_jam", + "server": "all", + "uptime": "6h42m31s" + }, + { + ".id": "*CF", + "bytes-in": "23357908", + "bytes-out": "393679076", + "comment": "2025-11-24 20:04:37 X", + "disabled": "false", + "dynamic": "false", + "name": "ja29", + "packets-in": "244117", + "packets-out": "429481", + "password": "ja29", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*D0", + "bytes-in": "64176965", + "bytes-out": "471269868", + "comment": "2025-11-24 22:15:39 X", + "disabled": "false", + "dynamic": "false", + "name": "wf87", + "packets-in": "616754", + "packets-out": "687708", + "password": "wf87", + "profile": "2_jam", + "server": "all", + "uptime": "4h16m17s" + }, + { + ".id": "*D1", + "bytes-in": "110787144", + "bytes-out": "590298128", + "comment": "2025-11-29 20:48:16 X", + "disabled": "false", + "dynamic": "false", + "name": "aw54", + "packets-in": "669204", + "packets-out": "962539", + "password": "aw54", + "profile": "2_jam", + "server": "all", + "uptime": "9h3m11s" + }, + { + ".id": "*D2", + "bytes-in": "61958511", + "bytes-out": "830181338", + "comment": "2025-11-27 18:57:02 X", + "disabled": "false", + "dynamic": "false", + "name": "nr74", + "packets-in": "431848", + "packets-out": "902636", + "password": "nr74", + "profile": "2_jam", + "server": "all", + "uptime": "4h11m55s" + }, + { + ".id": "*D3", + "bytes-in": "69652427", + "bytes-out": "1730746497", + "comment": "2025-10-12 20:05:07 X", + "disabled": "false", + "dynamic": "false", + "name": "zw87", + "packets-in": "760336", + "packets-out": "1050685", + "password": "zw87", + "profile": "2_jam", + "server": "all", + "uptime": "4h43m47s" + }, + { + ".id": "*D4", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "zu22", + "packets-in": "0", + "packets-out": "0", + "password": "zu22", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*D5", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "wu72", + "packets-in": "0", + "packets-out": "0", + "password": "wu72", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*D6", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "nu92", + "packets-in": "0", + "packets-out": "0", + "password": "nu92", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*D7", + "bytes-in": "21539590", + "bytes-out": "124409937", + "comment": "2025-12-01 22:53:45 X", + "disabled": "false", + "dynamic": "false", + "name": "ud27", + "packets-in": "152157", + "packets-out": "219758", + "password": "ud27", + "profile": "2_jam", + "server": "all", + "uptime": "2h" + }, + { + ".id": "*D8", + "bytes-in": "119834556", + "bytes-out": "1847891543", + "comment": "2025-11-24 20:38:44 X", + "disabled": "false", + "dynamic": "false", + "name": "ie83", + "packets-in": "805231", + "packets-out": "1800367", + "password": "ie83", + "profile": "2_jam", + "server": "all", + "uptime": "7h43s" + }, + { + ".id": "*D9", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "bp77", + "packets-in": "0", + "packets-out": "0", + "password": "bp77", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*DA", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "fa28", + "packets-in": "0", + "packets-out": "0", + "password": "fa28", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*DB", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "xi23", + "packets-in": "0", + "packets-out": "0", + "password": "xi23", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*DC", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "mb77", + "packets-in": "0", + "packets-out": "0", + "password": "mb77", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*DD", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "ca97", + "packets-in": "0", + "packets-out": "0", + "password": "ca97", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*DE", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "tw45", + "packets-in": "0", + "packets-out": "0", + "password": "tw45", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*DF", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "ns43", + "packets-in": "0", + "packets-out": "0", + "password": "ns43", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*E0", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "bp38", + "packets-in": "0", + "packets-out": "0", + "password": "bp38", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*E1", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "ws76", + "packets-in": "0", + "packets-out": "0", + "password": "ws76", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*E2", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "fd57", + "packets-in": "0", + "packets-out": "0", + "password": "fd57", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*E3", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "na88", + "packets-in": "0", + "packets-out": "0", + "password": "na88", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*E4", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "rb28", + "packets-in": "0", + "packets-out": "0", + "password": "rb28", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*E5", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "zx33", + "packets-in": "0", + "packets-out": "0", + "password": "zx33", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*E6", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "vh54", + "packets-in": "0", + "packets-out": "0", + "password": "vh54", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*E7", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "db72", + "packets-in": "0", + "packets-out": "0", + "password": "db72", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*E8", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "ue82", + "packets-in": "0", + "packets-out": "0", + "password": "ue82", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*E9", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "tt69", + "packets-in": "0", + "packets-out": "0", + "password": "tt69", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*EA", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "mj36", + "packets-in": "0", + "packets-out": "0", + "password": "mj36", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*EB", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "hr34", + "packets-in": "0", + "packets-out": "0", + "password": "hr34", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*EC", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "ei34", + "packets-in": "0", + "packets-out": "0", + "password": "ei34", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*ED", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "nw98", + "packets-in": "0", + "packets-out": "0", + "password": "nw98", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*EE", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "px89", + "packets-in": "0", + "packets-out": "0", + "password": "px89", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*EF", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "br47", + "packets-in": "0", + "packets-out": "0", + "password": "br47", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*F0", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "mr65", + "packets-in": "0", + "packets-out": "0", + "password": "mr65", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*F1", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "ey72", + "packets-in": "0", + "packets-out": "0", + "password": "ey72", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*F2", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "az95", + "packets-in": "0", + "packets-out": "0", + "password": "az95", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*F3", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "ph87", + "packets-in": "0", + "packets-out": "0", + "password": "ph87", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*F4", + "bytes-in": "0", + "bytes-out": "0", + "comment": "vc-726-07.02.25-", + "disabled": "false", + "dynamic": "false", + "name": "wg47", + "packets-in": "0", + "packets-out": "0", + "password": "wg47", + "profile": "2_jam", + "server": "all", + "uptime": "0s" + }, + { + ".id": "*F5", + "bytes-in": "25742751", + "bytes-out": "998363501", + "comment": "2025-07-22 13:15:36 X", + "disabled": "false", + "dynamic": "false", + "name": "hu38", + "packets-in": "287126", + "packets-out": "769384", + "password": "hu38", + "profile": "2_jam", + "server": "all", + "uptime": "29m42s" + }, + { + ".id": "*F6", + "bytes-in": "44608269", + "bytes-out": "491885469", + "comment": "2025-07-22 12:30:35 X", + "disabled": "false", + "dynamic": "false", + "name": "hz27", + "packets-in": "121510", + "packets-out": "393964", + "password": "hz27", + "profile": "2_jam", + "server": "all", + "uptime": "42m6s" + }, + { + ".id": "*F7", + "bytes-in": "7585773", + "bytes-out": "342417695", + "disabled": "false", + "dynamic": "false", + "name": "user1", + "packets-in": "68077", + "packets-out": "268899", + "password": "user1", + "profile": "1_minggu", + "server": "all", + "uptime": "23m12s" + } + ] + } +} \ No newline at end of file diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..e9bef2a --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,52 @@ +version: '3.8' + +services: + mikrotik-gemini-api: + build: . + container_name: mikrotik-gemini-api + ports: + - "8000:8000" + environment: + - GEMINI_API_KEY=${GEMINI_API_KEY} + - API_HOST=0.0.0.0 + - API_PORT=8000 + volumes: + - ../mikrotik_mcp_data.json:/app/mikrotik_mcp_data.json + - ./logs:/app/logs + restart: unless-stopped + healthcheck: + test: ["CMD", "curl", "-f", "http://localhost:8000/health"] + interval: 30s + timeout: 10s + retries: 3 + start_period: 40s + networks: + - mikrotik-network + + # Optional: Add data updater service + data-updater: + image: python:3.11-slim + container_name: mikrotik-data-updater + command: > + sh -c " + pip install requests && + python /app/update_data.py + " + volumes: + - ./update_data.py:/app/update_data.py + - ../mikrotik_mcp_data.json:/app/mikrotik_mcp_data.json + environment: + - MIKROTIK_HOST=${MIKROTIK_HOST} + - MIKROTIK_PORT=${MIKROTIK_PORT} + - MIKROTIK_USER=${MIKROTIK_USER} + - MIKROTIK_PASSWORD=${MIKROTIK_PASSWORD} + restart: "no" # Run once manually + networks: + - mikrotik-network + +networks: + mikrotik-network: + driver: bridge + +volumes: + mikrotik-data: diff --git a/example_prompts.md b/example_prompts.md new file mode 100644 index 0000000..f4b946f --- /dev/null +++ b/example_prompts.md @@ -0,0 +1,130 @@ +# šŸ“ Contoh Prompt untuk MikroTik + Gemini + +## šŸŽÆ **Kategori: Monitoring & Status** + +### **1. Status Sistem** +``` +Berikan status lengkap perangkat MikroTik: +- CPU usage saat ini +- Memory usage +- Interface yang running/tidak +- PPPoE connections status +- Rekomendasi jika ada masalah +``` + +### **2. Health Check** +``` +Lakukan health check perangkat: +1. Cek error pada interfaces +2. Cek PPPoE yang disconnected +3. Cek memory usage +4. Cek CPU load +5. Berikan summary +``` + +## šŸ”§ **Kategori: Troubleshooting** + +### **3. Masalah Internet Lambat** +``` +User mengeluh internet lambat. Analisis: +1. Interface dengan traffic tertinggi +2. Cek error counters +3. Identifikasi bottleneck +4. Berikan solusi +``` + +### **4. Koneksi Putus-Putus** +``` +PPPoE sering disconnect. Periksa: +1. Log error PPPoE +2. Signal quality +3. MTU settings +4. Rekomendasi fix +``` + +## šŸ“Š **Kategori: Analisis Jaringan** + +### **5. Analisis Traffic** +``` +Analisis pola traffic jaringan: +1. Peak usage hours +2. Top talkers +3. Bandwidth utilization +4. Rekomendasi optimasi +``` + +### **6. Security Audit** +``` +Lakukan audit keamanan: +1. Port terbuka ke internet +2. User accounts +3. Firewall rules +4. Rekomendasi hardening +``` + +## šŸ› ļø **Kategori: Konfigurasi** + +### **7. Tambah VLAN Baru** +``` +Saya ingin menambahkan VLAN baru untuk departemen IT: +1. VLAN apa yang sudah ada? +2. Port available? +3. Contoh konfigurasi +4. Periksa konflik IP +``` + +### **8. Setup QoS** +``` +Setup QoS untuk prioritas VoIP: +1. Current traffic patterns +2. Recommended queues +3. Configuration example +4. Testing procedure +``` + +## šŸ“ˆ **Kategori: Reporting** + +### **9. Daily Report** +``` +Buat daily report: +1. Uptime +2. Traffic statistics +3. Error counts +4. Performance metrics +5. Recommendations +``` + +### **10. Capacity Planning** +``` +Analisis capacity untuk ekspansi: +1. Current utilization +2. Growth trends +3. Bottleneck identification +4. Upgrade recommendations +``` + +## šŸ’” **Tips Penggunaan** + +1. **Spesifik**: Semakin spesifik pertanyaan, semakin baik jawaban +2. **Context**: Gemini menggunakan data MikroTik sebagai context +3. **Format**: Jawaban dalam markdown dengan tabel jika perlu +4. **Bahasa**: Gunakan bahasa Indonesia untuk hasil terbaik + +## šŸš€ **Contoh Lengkap** + +**Prompt:** +``` +Berdasarkan data MikroTik, berikan analisis: +1. Device model dan spesifikasi +2. Current CPU dan memory usage +3. Jumlah interface aktif +4. Status PPPoE connections +5. Rekomendasi maintenance +``` + +**Expected Response:** +- Table dengan spesifikasi device +- Chart usage (jika support) +- List interface bermasalah +- Action items +``` diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..29ae586 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,8 @@ +# Python dependencies for MikroTik Gemini Integration +google-genai>=0.1.0 +python-dotenv>=1.0.0 +requests>=2.31.0 +fastapi>=0.104.0 +uvicorn>=0.24.0 +pydantic>=2.5.0 +python-multipart>=0.0.6