diff --git a/stacks/productivity/config/prosody.cfg.lua b/stacks/productivity/config/prosody.cfg.lua index e0d23af..4145477 100644 --- a/stacks/productivity/config/prosody.cfg.lua +++ b/stacks/productivity/config/prosody.cfg.lua @@ -1,128 +1,30 @@ -daemonize = false; --- Prosody XMPP Server Configuration --- --- Information on configuring Prosody can be found on our --- website at https://prosody.im/doc/configure --- --- Tip: You can check that the syntax of this file is correct --- when you have finished by running this command: --- prosodyctl check config --- If there are any errors, it will let you know what and where --- they are, otherwise it will keep quiet. --- --- Good luck, and happy Jabbering! - - ----------- Server-wide settings ---------- --- Settings in this section apply to the whole server and are the default settings --- for any virtual hosts - --- This is a (by default, empty) list of accounts that are admins --- for the server. Note that you must create the accounts separately --- (see https://prosody.im/doc/creating_accounts for info) --- Example: admins = { "user1@example.com", "user2@example.net" } +daemonize = false admins = { } - --- Enable use of libevent for better performance under high load --- For more information see: https://prosody.im/doc/libevent ---use_libevent = true - --- Prosody will always look in its source directory for modules, but --- this option allows you to specify additional locations where Prosody --- will look for modules first. For community modules, see https://modules.prosody.im/ ---plugin_paths = {} - --- This is the list of modules Prosody will load on startup. --- It looks for mod_modulename.lua in the plugins folder, so make sure that exists too. --- Documentation for bundled modules can be found at: https://prosody.im/doc/modules modules_enabled = { - - -- Generally required - "roster"; -- Allow users to have a roster. Recommended ;) - "saslauth"; -- Authentication for clients and servers. Recommended if you want to log in. - "tls"; -- Add support for secure TLS on c2s/s2s connections - "dialback"; -- s2s dialback support - "disco"; -- Service discovery - - -- Not essential, but recommended - "carbons"; -- Keep multiple clients in sync - "pep"; -- Enables users to publish their avatar, mood, activity, playing music and more - "private"; -- Private XML storage (for room bookmarks, etc.) - "blocklist"; -- Allow users to block communications with other users - "vcard4"; -- User profiles (stored in PEP) - "vcard_legacy"; -- Conversion between legacy vCard and PEP Avatar, vcard - "limits"; -- Enable bandwidth limiting for XMPP connections - - -- Nice to have - "version"; -- Replies to server version requests - "uptime"; -- Report how long server has been running - "time"; -- Let others know the time here on this server - "ping"; -- Replies to XMPP pings with pongs - "register"; -- Allow users to register on this server using a client and change passwords - --"mam"; -- Store messages in an archive and allow users to access it - --"csi_simple"; -- Simple Mobile optimizations - - -- Admin interfaces - "admin_adhoc"; -- Allows administration via an XMPP client that supports ad-hoc commands - --"admin_telnet"; -- Opens telnet console interface on localhost port 5582 - - -- HTTP modules - --"bosh"; -- Enable BOSH clients, aka "Jabber over HTTP" - --"websocket"; -- XMPP over WebSockets - --"http_files"; -- Serve static files from a directory over HTTP - - -- Other specific functionality - --"groups"; -- Shared roster support - --"server_contact_info"; -- Publish contact information for this service - --"announce"; -- Send announcement to all online users - --"welcome"; -- Welcome users who register accounts - --"watchregistrations"; -- Alert admins of registrations - --"motd"; -- Send a message to users when they log in - --"legacyauth"; -- Legacy authentication. Only used by some old clients and bots. - --"proxy65"; -- Enables a file transfer proxy service which clients behind NAT can use + "roster"; + "saslauth"; + "tls"; + "dialback"; + "disco"; + "carbons"; + "pep"; + "private"; + "blocklist"; + "vcard4"; + "vcard_legacy"; + "limits"; + "version"; + "uptime"; + "time"; + "ping"; + "register"; + "admin_adhoc"; } - --- These modules are auto-loaded, but should you want --- to disable them then uncomment them here: -modules_disabled = { - -- "offline"; -- Store offline messages - -- "c2s"; -- Handle client connections - -- "s2s"; -- Handle server-to-server connections - -- "posix"; -- POSIX functionality, sends server to background, enables syslog, etc. -} - --- Disable account creation by default, for security --- For more information see https://prosody.im/doc/creating_accounts +modules_disabled = { } allow_registration = false - --- Force clients to use encrypted connections? This option will --- prevent clients from authenticating unless they are using encryption. - c2s_require_encryption = true - --- Force servers to use encrypted connections? This option will --- prevent servers from authenticating unless they are using encryption. - s2s_require_encryption = true - --- Force certificate authentication for server-to-server connections? - s2s_secure_auth = false - --- Some servers have invalid or self-signed certificates. You can list --- remote domains here that will not be required to authenticate using --- certificates. They will be authenticated using DNS instead, even --- when s2s_secure_auth is enabled. - ---s2s_insecure_domains = { "insecure.example" } - --- Even if you disable s2s_secure_auth, you can still require valid --- certificates for some domains by specifying a list here. - ---s2s_secure_domains = { "jabber.org" } - --- Enable rate limits for incoming client and server connections - limits = { c2s = { rate = "10kb/s"; @@ -131,87 +33,14 @@ limits = { rate = "30kb/s"; }; } - --- Required for init scripts and prosodyctl pidfile = "/var/run/prosody/prosody.pid" - --- Select the authentication backend to use. The 'internal' providers --- use Prosody's configured data storage to store the authentication data. - authentication = "internal_hashed" - --- Select the storage backend to use. By default Prosody uses flat files --- in its configured data directory, but it also supports more backends --- through modules. An "sql" backend is included by default, but requires --- additional dependencies. See https://prosody.im/doc/storage for more info. - ---storage = "sql" -- Default is "internal" - --- For the "sql" backend, you can uncomment *one* of the below to configure: ---sql = { driver = "SQLite3", database = "prosody.sqlite" } -- Default. 'database' is the filename. ---sql = { driver = "MySQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" } ---sql = { driver = "PostgreSQL", database = "prosody", username = "prosody", password = "secret", host = "localhost" } - - --- Archiving configuration --- If mod_mam is enabled, Prosody will store a copy of every message. This --- is used to synchronize conversations between multiple clients, even if --- they are offline. This setting controls how long Prosody will keep --- messages in the archive before removing them. - -archive_expires_after = "1w" -- Remove archived messages after 1 week - --- You can also configure messages to be stored in-memory only. For more --- archiving options, see https://prosody.im/doc/modules/mod_mam - --- Logging configuration --- For advanced logging see https://prosody.im/doc/logging +archive_expires_after = "1w" log = { - {levels = {min = "info"}, to = "console"}; + {levels = {min = "info"}, to = "console"}; } - --- Uncomment to enable statistics --- For more info see https://prosody.im/doc/statistics --- statistics = "internal" - --- Certificates --- Every virtual host and component needs a certificate so that clients and --- servers can securely verify its identity. Prosody will automatically load --- certificates/keys from the directory specified here. --- For more information, including how to use 'prosodyctl' to auto-import certificates --- (from e.g. Let's Encrypt) see https://prosody.im/doc/certificates - --- Location of directory to find certificates in (relative to main config file): certificates = "certs" - --- HTTPS currently only supports a single certificate, specify it here: ---https_certificate = "/etc/prosody/certs/localhost.crt" - ------------ Virtual hosts ----------- --- You need to add a VirtualHost entry for each domain you wish Prosody to serve. --- Settings under each VirtualHost entry apply *only* to that host. - +http_external_url = "https://xmpp.rishighan.com/" +http_interfaces = { "*" } VirtualHost "localhost" - ---VirtualHost "example.com" --- certificate = "/path/to/example.crt" - ------- Components ------ --- You can specify components to add hosts that provide special services, --- like multi-user conferences, and transports. --- For more information on components, see https://prosody.im/doc/components - ----Set up a MUC (multi-user chat) room server on conference.example.com: ---Component "conference.example.com" "muc" ---- Store MUC messages in an archive and allow users to access it ---modules_enabled = { "muc_mam" } - ----Set up an external component (default component port is 5347) --- --- External components allow adding various services, such as gateways/ --- transports to other networks like ICQ, MSN and Yahoo. For more info --- see: https://prosody.im/doc/components#adding_an_external_component --- ---Component "gateway.example.com" --- component_secret = "password" Include "conf.d/*.cfg.lua" diff --git a/stacks/productivity/config/rishighan.cfg.lua b/stacks/productivity/config/rishighan.cfg.lua index 8d707c7..6ef21f1 100644 --- a/stacks/productivity/config/rishighan.cfg.lua +++ b/stacks/productivity/config/rishighan.cfg.lua @@ -20,19 +20,22 @@ modules_enabled = { "csi_simple"; "smacks"; "cloud_notify"; + "http_file_share"; } allow_registration = false --- MAM settings archive_expires_after = "4w" default_archive_policy = true --- Push push_notification_with_body = false push_notification_with_sender = false +http_file_share_size_limit = 524288000 +http_file_share_expire_after = 60 * 60 * 24 * 30 + VirtualHost "rishighan.com" + http_host = "xmpp.rishighan.com" ssl = { key = "/etc/prosody/certs/privkey.pem", certificate = "/etc/prosody/certs/fullchain.pem", diff --git a/stacks/productivity/data/localhost/cron.dat b/stacks/productivity/data/localhost/cron.dat index 71001a1..bc827c1 100644 --- a/stacks/productivity/data/localhost/cron.dat +++ b/stacks/productivity/data/localhost/cron.dat @@ -1,5 +1,7 @@ return { - ["tokenauth/clear_expired_grants"] = 1771832870; + ["http_file_share/remove_expired_files"] = 1771869925; ["mam/remove_expired_messages"] = 1771832870; + ["tokenauth/clear_expired_grants"] = 1771832870; ["user_account_management/remove_deleted_accounts"] = 1771832870; + ["http_file_share/calculate_total_storage_usage"] = 1771869925; }; diff --git a/stacks/productivity/data/localhost/upload_stats.dat b/stacks/productivity/data/localhost/upload_stats.dat new file mode 100644 index 0000000..32c9ee6 --- /dev/null +++ b/stacks/productivity/data/localhost/upload_stats.dat @@ -0,0 +1,3 @@ +return { + ["total"] = 0; +}; diff --git a/stacks/productivity/data/rishighan%2ecom/archive/rishi.lidx b/stacks/productivity/data/rishighan%2ecom/archive/rishi.lidx index 0def2b4..6ad22c6 100644 Binary files a/stacks/productivity/data/rishighan%2ecom/archive/rishi.lidx and b/stacks/productivity/data/rishighan%2ecom/archive/rishi.lidx differ diff --git a/stacks/productivity/data/rishighan%2ecom/archive/rishi.list b/stacks/productivity/data/rishighan%2ecom/archive/rishi.list index aaef483..5c179e2 100644 --- a/stacks/productivity/data/rishighan%2ecom/archive/rishi.list +++ b/stacks/productivity/data/rishighan%2ecom/archive/rishi.list @@ -1871,3 +1871,5738 @@ item({ ["name"] = "message"; ["with"] = "rishi@rishighan.com"; }); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + { + { + "mF4+4YnDCPizu9Eq"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwikibTDAxIhBds72vNm+GWsD8mIYgkmuG0g4LrXDiLQSdWK2DidRmgqGiEF1siqe5Qc7BhQZ38GRuM1lBmYVEX0tuk/ZjGCwoTgW2YiYjMKIQXrKjvXgRyakYrNKizm227PQ8bQkD/ALjCSJ8e/DcRFEhAUGAAiMDV1tioGH0GZghzqtaTrJk8OatqxEbp8y32/ssw5JDWrJeouM7Vn7540tR+VHZMlIT0EEsfOxX2jKIvS788HML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBXhZRVcGLZDbk9RhKZBi7zPFgtqj6sLARvWr6QqP1Q48EAgYCyIwXH/2kbGNGxZ7x3Rxr4VYN8iuwpXm2jSVwDrSXbmLJ6nrKNJx1JUdW85bLlS9n0bZUiIu4W1pKIw="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "MwglEiEFVrQxHejtbfbjL8cuwP3thAA1yNqo39tLgE0UcEjP6nAaIQXWyKp7lBzsGFBnfwZG4zWUGZhURfS26T9mMYLChOBbZiJiMwohBZMfx3PRuTb6Q6ptjyAxL6q3JMUTer0Mb/wGVtu45iZzEA4YACIwRYm/fS23GAMLE8cCPP/VFqKHT27dlEi0WY5XXONTEGxdIxZ5/ldfKCN03VpFv5lp4cgVMp2GDYUoi9LvzwcwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBdY8+8wYzB7Si2NK9NMYgcGDmE+RNadzt8EoZqgLbRQLEAAYDSIwsY9lOwnqchq4RMOT7XgH2HikzY6epfFklzhnffaI3nZocLLWI4UPkwIZrXTnWTHOENT/k6BNTug="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "MwikibTDAxIhBds72vNm+GWsD8mIYgkmuG0g4LrXDiLQSdWK2DidRmgqGiEF1siqe5Qc7BhQZ38GRuM1lBmYVEX0tuk/ZjGCwoTgW2YiYjMKIQXrKjvXgRyakYrNKizm227PQ8bQkD/ALjCSJ8e/DcRFEhAVGAAiMO/Cj8EvPulYpZ6hjqZYqmhcGyB9emE+xqxmqCtfRuQQZpWPW9gn8ayveeAXK8NnwdItgnNCFrNyKIvS788HML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBXhZRVcGLZDbk9RhKZBi7zPFgtqj6sLARvWr6QqP1Q48EAkYCyIwKMCiT/zTV7f1AHtbPh/RUw2CrdAUf2LmtyEASU0uRm7tFuTzfOvNMst1lCFNLW/IJPVjfHqZcpc="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "MwglEiEFVrQxHejtbfbjL8cuwP3thAA1yNqo39tLgE0UcEjP6nAaIQXWyKp7lBzsGFBnfwZG4zWUGZhURfS26T9mMYLChOBbZiJiMwohBZMfx3PRuTb6Q6ptjyAxL6q3JMUTer0Mb/wGVtu45iZzEA8YACIw2UVo8k6BC7Dk2/7hoflda43xH2ORorY8T09kITAMCyL0BO+E8OZdkIPti7S2YMF9kQMsLG/hiXkoi9LvzwcwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBdY8+8wYzB7Si2NK9NMYgcGDmE+RNadzt8EoZqgLbRQLEAEYDSIwWxnZqwVlo1AG+1J6AGHCSzQgPGnhtkW4VwTMyr1g3ybduXSqpHJZHA+pfw+pB0JKxytVH4vlPks="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "2046552331"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "FtlaTkjbzrlb"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "1a9a63ec-19b1-4652-93ec-a0d262d758c4"; + ["stamp"] = "2026-02-23T08:07:55.915560Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.34939a9c"; + }; + ["key"] = "019c898a-6b0b-7369-8852-ae9bbc720486"; + ["when"] = 1771834075.91556048; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + { + { + "mF4+4YnDCPizu9Eq"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwikibTDAxIhBds72vNm+GWsD8mIYgkmuG0g4LrXDiLQSdWK2DidRmgqGiEF1siqe5Qc7BhQZ38GRuM1lBmYVEX0tuk/ZjGCwoTgW2YiYjMKIQXrKjvXgRyakYrNKizm227PQ8bQkD/ALjCSJ8e/DcRFEhAUGAAiMDV1tioGH0GZghzqtaTrJk8OatqxEbp8y32/ssw5JDWrJeouM7Vn7540tR+VHZMlIT0EEsfOxX2jKIvS788HML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBXhZRVcGLZDbk9RhKZBi7zPFgtqj6sLARvWr6QqP1Q48EAgYCyIwXH/2kbGNGxZ7x3Rxr4VYN8iuwpXm2jSVwDrSXbmLJ6nrKNJx1JUdW85bLlS9n0bZUiIu4W1pKIw="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "MwglEiEFVrQxHejtbfbjL8cuwP3thAA1yNqo39tLgE0UcEjP6nAaIQXWyKp7lBzsGFBnfwZG4zWUGZhURfS26T9mMYLChOBbZiJiMwohBZMfx3PRuTb6Q6ptjyAxL6q3JMUTer0Mb/wGVtu45iZzEA4YACIwRYm/fS23GAMLE8cCPP/VFqKHT27dlEi0WY5XXONTEGxdIxZ5/ldfKCN03VpFv5lp4cgVMp2GDYUoi9LvzwcwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBdY8+8wYzB7Si2NK9NMYgcGDmE+RNadzt8EoZqgLbRQLEAAYDSIwsY9lOwnqchq4RMOT7XgH2HikzY6epfFklzhnffaI3nZocLLWI4UPkwIZrXTnWTHOENT/k6BNTug="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "MwikibTDAxIhBds72vNm+GWsD8mIYgkmuG0g4LrXDiLQSdWK2DidRmgqGiEF1siqe5Qc7BhQZ38GRuM1lBmYVEX0tuk/ZjGCwoTgW2YiYjMKIQXrKjvXgRyakYrNKizm227PQ8bQkD/ALjCSJ8e/DcRFEhAVGAAiMO/Cj8EvPulYpZ6hjqZYqmhcGyB9emE+xqxmqCtfRuQQZpWPW9gn8ayveeAXK8NnwdItgnNCFrNyKIvS788HML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBXhZRVcGLZDbk9RhKZBi7zPFgtqj6sLARvWr6QqP1Q48EAkYCyIwKMCiT/zTV7f1AHtbPh/RUw2CrdAUf2LmtyEASU0uRm7tFuTzfOvNMst1lCFNLW/IJPVjfHqZcpc="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "MwglEiEFVrQxHejtbfbjL8cuwP3thAA1yNqo39tLgE0UcEjP6nAaIQXWyKp7lBzsGFBnfwZG4zWUGZhURfS26T9mMYLChOBbZiJiMwohBZMfx3PRuTb6Q6ptjyAxL6q3JMUTer0Mb/wGVtu45iZzEA8YACIw2UVo8k6BC7Dk2/7hoflda43xH2ORorY8T09kITAMCyL0BO+E8OZdkIPti7S2YMF9kQMsLG/hiXkoi9LvzwcwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBdY8+8wYzB7Si2NK9NMYgcGDmE+RNadzt8EoZqgLbRQLEAEYDSIwWxnZqwVlo1AG+1J6AGHCSzQgPGnhtkW4VwTMyr1g3ybduXSqpHJZHA+pfw+pB0JKxytVH4vlPks="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "2046552331"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "FtlaTkjbzrlb"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "1a9a63ec-19b1-4652-93ec-a0d262d758c4"; + ["stamp"] = "2026-02-23T08:07:55.920349Z"; + ["type"] = "chat"; + ["to"] = "rishi@rishighan.com"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.34939a9c"; + }; + ["key"] = "019c898a-6b10-778a-88f6-4b6d682b53c3"; + ["when"] = 1771834075.9203496; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "A8EE95A5-8455-4FC2-B169-056828FD36C6"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "uKdzqPBMjb+Vfm1S1f1n"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAIYACIwvZlggdBY8OJvlzyElZeKUv6sOU51PEt8hJHYhY1Tu8wanBm0I1fjdYuzoHx/0wsEcQ+hrH7K1/w="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAAYACIwjrnZZljhQKZf1QWPoohJ2H/vKEiYWsHhkH181b9yrhoe65NvrZvWsQBgQ1gn3jpyV6JWgkFq8O8oke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAAYACIwhmWwVTbcdS7xliV4n6UYjfE8CYghC5XFGS9/STMBBtD8iXPVXUCL1jPMsYe6NWPZfogOEU7nJXg="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAAYACIwKtqFb4s3Un/Q31wjxLeAjGL1bdwzzaeYcfIThVyNtORVBdUU6CJvWA2ReJbR1hO6v8y4R9+3HF8oke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "1HkzdjsH4rlwA1rj"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "A8EE95A5-8455-4FC2-B169-056828FD36C6"; + ["stamp"] = "2026-02-23T14:16:51.942244Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8adc-2fe6-7e56-9788-b6d52191f5f3"; + ["when"] = 1771856211.94224429; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "A8EE95A5-8455-4FC2-B169-056828FD36C6"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "uKdzqPBMjb+Vfm1S1f1n"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAIYACIwvZlggdBY8OJvlzyElZeKUv6sOU51PEt8hJHYhY1Tu8wanBm0I1fjdYuzoHx/0wsEcQ+hrH7K1/w="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAAYACIwjrnZZljhQKZf1QWPoohJ2H/vKEiYWsHhkH181b9yrhoe65NvrZvWsQBgQ1gn3jpyV6JWgkFq8O8oke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAAYACIwhmWwVTbcdS7xliV4n6UYjfE8CYghC5XFGS9/STMBBtD8iXPVXUCL1jPMsYe6NWPZfogOEU7nJXg="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAAYACIwKtqFb4s3Un/Q31wjxLeAjGL1bdwzzaeYcfIThVyNtORVBdUU6CJvWA2ReJbR1hO6v8y4R9+3HF8oke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "1HkzdjsH4rlwA1rj"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "A8EE95A5-8455-4FC2-B169-056828FD36C6"; + ["stamp"] = "2026-02-23T14:16:51.946560Z"; + ["type"] = "chat"; + ["to"] = "rishi@rishighan.com"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8adc-2fea-75c4-9507-d23e18149ffa"; + ["when"] = 1771856211.94656038; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "bunty padla, and dhuman sadhla"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "4d4dd9d2-fff2-4e95-b70e-84486fc527de"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + ["attr"] = { + ["id"] = "purpleaa233639"; + ["stamp"] = "2026-02-23T15:29:33.275938Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b1e-bc5c-799b-947b-10c2561d8506"; + ["when"] = 1771860573.27593851; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "bunty padla, and dhuman sadhla"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "4d4dd9d2-fff2-4e95-b70e-84486fc527de"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + ["attr"] = { + ["id"] = "purpleaa233639"; + ["stamp"] = "2026-02-23T15:29:33.283621Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b1e-bc63-7858-bdf0-6a95205edcda"; + ["when"] = 1771860573.28362155; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "purpleaa233639"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:29:33.301973Z"; + ["to"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b1e-bc76-7f5e-a483-06a87b0c6f8c"; + ["when"] = 1771860573.3019731; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "purpleaa233639"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:29:33.305844Z"; + ["to"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b1e-bc79-7cb6-a039-f48ce46f79db"; + ["when"] = 1771860573.30584478; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "E81354E6-FF80-4383-979C-2B4A66AE45D7"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "4u3Ri0Vy6Smz9tI="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAEYACIwhWIYywHYaXWIFUU/AlKXP3unTLSl7NpYPOgqno02xKOBqG0gvocYBGD5iMDUFBc6NuhVScRoDsg="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAEYACIwEQcj9/p4Pn5N/+QuspoQVvxzyvEcqepnxuGRXcRQ5SjyB3PFy+pXzGqFLT31t8HyEqycdnKmrpkoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAEYACIwY+2oIEksm/PRl9AXfILGdHzDTr6U4EclvZHc4249Z+SiwlRy7bQlVQPPixrUUSI5STx9xIf9aLwoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAMYACIw313F527/AztFxkogO673Os6Hb9VpHhPmZaPVEstWHVZups1QHAOivsg/785OtJy6d9BU9mYWAEw="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "1UxMdVR4YOpgGhFl"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "E81354E6-FF80-4383-979C-2B4A66AE45D7"; + ["stamp"] = "2026-02-23T15:29:50.410034Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b1e-ff4a-7c29-81a1-ad17a2432bc6"; + ["when"] = 1771860590.41003418; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "E81354E6-FF80-4383-979C-2B4A66AE45D7"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "4u3Ri0Vy6Smz9tI="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAEYACIwhWIYywHYaXWIFUU/AlKXP3unTLSl7NpYPOgqno02xKOBqG0gvocYBGD5iMDUFBc6NuhVScRoDsg="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAEYACIwEQcj9/p4Pn5N/+QuspoQVvxzyvEcqepnxuGRXcRQ5SjyB3PFy+pXzGqFLT31t8HyEqycdnKmrpkoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAEYACIwY+2oIEksm/PRl9AXfILGdHzDTr6U4EclvZHc4249Z+SiwlRy7bQlVQPPixrUUSI5STx9xIf9aLwoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAMYACIw313F527/AztFxkogO673Os6Hb9VpHhPmZaPVEstWHVZups1QHAOivsg/785OtJy6d9BU9mYWAEw="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "1UxMdVR4YOpgGhFl"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "E81354E6-FF80-4383-979C-2B4A66AE45D7"; + ["stamp"] = "2026-02-23T15:29:50.414126Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b1e-ff4e-73ad-9a8d-36d93e76e8df"; + ["when"] = 1771860590.41412687; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "E81354E6-FF80-4383-979C-2B4A66AE45D7"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:29:50.593880Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b1f-0001-7516-85dd-64d28dbe437a"; + ["when"] = 1771860590.59388041; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "E81354E6-FF80-4383-979C-2B4A66AE45D7"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:29:50.597846Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b1f-0005-7a63-aa8c-2deff4936c1e"; + ["when"] = 1771860590.59784603; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "A16FF0B9-D44C-4BC3-B6B4-40C0C26D2CB0"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "2LgMiqN9"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAIYACIwG84rNwsZIcMoZltVi8ZNUnnEvLD6d+ZUcEJlA5aNW/ICsMPGPWqjbf8H8BaGpG9p2bTi22483q8="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAIYACIwebfWtQDzS6wLptxkwaaIvqLA1MyLI0aNqakqms77T9wmB93UkF5JO8Yh/FqDhCGWwp+iVTKhYXgoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAIYACIwjHBTv7fFKR6KYLi6B2dYWOYEhMMh+2ZnW9ogezzRAMJ8rRzfUDeT/8cqwOYG54Ad1ZtoSYHdr0soke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAQYACIwakuzob2mOsQok6Pnv5SYs/o7w22DO/rRhhwDmkkheYNUbgEgp4iuGluBrynwYT0wK0wXuKX88yw="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "hAO9V9CoicsHsZCA"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "A16FF0B9-D44C-4BC3-B6B4-40C0C26D2CB0"; + ["stamp"] = "2026-02-23T15:30:48.055643Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b1f-e077-7390-81b2-8df7b1162dfa"; + ["when"] = 1771860648.05564356; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "A16FF0B9-D44C-4BC3-B6B4-40C0C26D2CB0"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "2LgMiqN9"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAIYACIwG84rNwsZIcMoZltVi8ZNUnnEvLD6d+ZUcEJlA5aNW/ICsMPGPWqjbf8H8BaGpG9p2bTi22483q8="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAIYACIwebfWtQDzS6wLptxkwaaIvqLA1MyLI0aNqakqms77T9wmB93UkF5JO8Yh/FqDhCGWwp+iVTKhYXgoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAIYACIwjHBTv7fFKR6KYLi6B2dYWOYEhMMh+2ZnW9ogezzRAMJ8rRzfUDeT/8cqwOYG54Ad1ZtoSYHdr0soke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAQYACIwakuzob2mOsQok6Pnv5SYs/o7w22DO/rRhhwDmkkheYNUbgEgp4iuGluBrynwYT0wK0wXuKX88yw="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "hAO9V9CoicsHsZCA"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "A16FF0B9-D44C-4BC3-B6B4-40C0C26D2CB0"; + ["stamp"] = "2026-02-23T15:30:48.062088Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b1f-e07e-7f2d-b957-2c6438a9a177"; + ["when"] = 1771860648.06208873; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "A16FF0B9-D44C-4BC3-B6B4-40C0C26D2CB0"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:30:48.069707Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b1f-e085-77fd-a94d-8bdc6db6497b"; + ["when"] = 1771860648.06970716; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "A16FF0B9-D44C-4BC3-B6B4-40C0C26D2CB0"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:30:48.072375Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b1f-e088-75fc-81da-d10306654c53"; + ["when"] = 1771860648.07237554; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "FBDAEEDD-763A-435C-B9FE-A814BFAF11A5"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "71kJ"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAMYACIwXCaRX7xObxQAU4/4WhQbLLBN9+54myxJMbtMS5QhsOZQRYOFsDGOHHqtuPRWhrUXlaf8RyNljjA="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwjBiIq9BxIhBR8QfId3IKnr0iOTwGbsyn+5ojrmwyby4QQQSbnG+ctNGiEF/fnZGlJ42AUcDSuTs81LwoG1NMXnrglKguHMfNhFwgwiYjMKIQXZIX+3CSZnVJe3bwHGz1ZKOoRtN8DQe93wnCnUP0ltIxAAGAAiMJdOXXLXitYOa9aj7i22f7aVo0zqs5rzXtUhqYonKtUqh9RTRtcFJvPGaJHV3jIbhMbNwhNWEjzdKJHv+8sDMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAMYACIw7K/IwXbx7F6J5nQHWMf67UlZUqnxvb/iEREbF4i1p1XyciLy7t/lIrGyyZ/cD9vETiD/B5Ad1/Yoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAMYACIwlRXgjFQ0zJ4k95GeEHyam1uQUuGhWc4vNQUCYxGbjSOeLjD1lyFrN39xn+rnPZUb1QfQPB6RxLAoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAUYACIwqvuY4Neey6PpKuCjQdpf24QD0fjBKo7d5OMmuwEptPtDkoOuIGiEkBiguYrkgx3aSXRZ8m3yvvE="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "aEaEIIrDZ3fzA4ih"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "FBDAEEDD-763A-435C-B9FE-A814BFAF11A5"; + ["stamp"] = "2026-02-23T15:34:27.087371Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b23-380f-78af-bb23-c19a6ca8d84d"; + ["when"] = 1771860867.08737135; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "FBDAEEDD-763A-435C-B9FE-A814BFAF11A5"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "71kJ"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAMYACIwXCaRX7xObxQAU4/4WhQbLLBN9+54myxJMbtMS5QhsOZQRYOFsDGOHHqtuPRWhrUXlaf8RyNljjA="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwjBiIq9BxIhBR8QfId3IKnr0iOTwGbsyn+5ojrmwyby4QQQSbnG+ctNGiEF/fnZGlJ42AUcDSuTs81LwoG1NMXnrglKguHMfNhFwgwiYjMKIQXZIX+3CSZnVJe3bwHGz1ZKOoRtN8DQe93wnCnUP0ltIxAAGAAiMJdOXXLXitYOa9aj7i22f7aVo0zqs5rzXtUhqYonKtUqh9RTRtcFJvPGaJHV3jIbhMbNwhNWEjzdKJHv+8sDMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAMYACIw7K/IwXbx7F6J5nQHWMf67UlZUqnxvb/iEREbF4i1p1XyciLy7t/lIrGyyZ/cD9vETiD/B5Ad1/Yoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAMYACIwlRXgjFQ0zJ4k95GeEHyam1uQUuGhWc4vNQUCYxGbjSOeLjD1lyFrN39xn+rnPZUb1QfQPB6RxLAoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAUYACIwqvuY4Neey6PpKuCjQdpf24QD0fjBKo7d5OMmuwEptPtDkoOuIGiEkBiguYrkgx3aSXRZ8m3yvvE="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "aEaEIIrDZ3fzA4ih"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "FBDAEEDD-763A-435C-B9FE-A814BFAF11A5"; + ["stamp"] = "2026-02-23T15:34:27.095232Z"; + ["type"] = "chat"; + ["to"] = "rishi@rishighan.com"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b23-3817-745a-80d5-c1982f51570c"; + ["when"] = 1771860867.09523249; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "FBDAEEDD-763A-435C-B9FE-A814BFAF11A5"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:34:27.380872Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b23-3934-7d7c-b0a9-248fe5e35670"; + ["when"] = 1771860867.38087201; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "FBDAEEDD-763A-435C-B9FE-A814BFAF11A5"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:34:27.384145Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b23-3938-7dd3-8342-283f62262895"; + ["when"] = 1771860867.3841455; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "4B267776-3441-473F-BDBF-3EA68B7B9999"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "k90="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAQYACIwqe3sghXYHMAXw/R3kBA23ZvFqMvoTf25zRm5YUviORe+xz2Lq8JO984PVVfZwAOnyEbjvxI0QFMoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAQYACIwkt5y0c3QvhkBxeUybZHAQIp2iXl+86QPHebdyzOtpHx+aJg0RYWN/pweH0OGXvMz/lOWaS4RiqY="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwjBiIq9BxIhBR8QfId3IKnr0iOTwGbsyn+5ojrmwyby4QQQSbnG+ctNGiEF/fnZGlJ42AUcDSuTs81LwoG1NMXnrglKguHMfNhFwgwiYjMKIQXZIX+3CSZnVJe3bwHGz1ZKOoRtN8DQe93wnCnUP0ltIxABGAAiMKJQ+oWrGjTQ4Ug40Scz02epVMafA0UsuVIcQ+JxkqUgZ+aagAOwYIptJBP8yNUjhdgoNZsyGaZgKJHv+8sDMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAYYACIw0umFphrHYeaU3CKA6gJw3hVgFkNGsFAaY/bPButaUjbBTTYQR47D7vyHb0+2x8PljoQJ3iH52wM="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAQYACIwUOrG89xpXvIzJKwro0Rno15wNekQK0tbl01ioyf23rzOh0f0zStqE371woin4AKzdumx2hEgXscoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "AFhrhMhCr+dwNRap"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "4B267776-3441-473F-BDBF-3EA68B7B9999"; + ["stamp"] = "2026-02-23T15:34:32.409390Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b23-4cd9-74da-bb68-b9435dc782d1"; + ["when"] = 1771860872.40939045; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "4B267776-3441-473F-BDBF-3EA68B7B9999"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "k90="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAQYACIwqe3sghXYHMAXw/R3kBA23ZvFqMvoTf25zRm5YUviORe+xz2Lq8JO984PVVfZwAOnyEbjvxI0QFMoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAQYACIwkt5y0c3QvhkBxeUybZHAQIp2iXl+86QPHebdyzOtpHx+aJg0RYWN/pweH0OGXvMz/lOWaS4RiqY="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwjBiIq9BxIhBR8QfId3IKnr0iOTwGbsyn+5ojrmwyby4QQQSbnG+ctNGiEF/fnZGlJ42AUcDSuTs81LwoG1NMXnrglKguHMfNhFwgwiYjMKIQXZIX+3CSZnVJe3bwHGz1ZKOoRtN8DQe93wnCnUP0ltIxABGAAiMKJQ+oWrGjTQ4Ug40Scz02epVMafA0UsuVIcQ+JxkqUgZ+aagAOwYIptJBP8yNUjhdgoNZsyGaZgKJHv+8sDMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAYYACIw0umFphrHYeaU3CKA6gJw3hVgFkNGsFAaY/bPButaUjbBTTYQR47D7vyHb0+2x8PljoQJ3iH52wM="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAQYACIwUOrG89xpXvIzJKwro0Rno15wNekQK0tbl01ioyf23rzOh0f0zStqE371woin4AKzdumx2hEgXscoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "AFhrhMhCr+dwNRap"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "4B267776-3441-473F-BDBF-3EA68B7B9999"; + ["stamp"] = "2026-02-23T15:34:32.416498Z"; + ["type"] = "chat"; + ["to"] = "rishi@rishighan.com"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b23-4ce0-7a74-801a-a8a25e1c8cd3"; + ["when"] = 1771860872.41649842; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "4B267776-3441-473F-BDBF-3EA68B7B9999"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:34:32.431297Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b23-4cef-75e6-90ad-eba7ea206ecc"; + ["when"] = 1771860872.4312973; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "4B267776-3441-473F-BDBF-3EA68B7B9999"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:34:32.435327Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b23-4cf3-73ef-badb-ebf7e625af59"; + ["when"] = 1771860872.43532729; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + { + { + "BhXZS/iBtdXMNi1S"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAAGAAiMMm/sZmdMzbLOHbLmQGX1GMh801Cq/R3JC9MMJFR2HO84CBOtpGkZ5k9PxE7Lavg4b8owlgeeMm+KNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAAYACIwMjJNbuRzeVGCFhDaCCzJd66vfcevOXyRCd0XEKOtq/+/+HEH0sKmEs25hJ8vv1pDKQ5My8Natv8o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAAYACIwQCUckmL3zOolWis+pbTXKFCA8sqiUq2txm8aTqcLqMV5Hjn7c/eF6tJ75YXzaVA2GfcDhhVZ8UIo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBftMNhnwq9wT582a+nxBo9OFpJT+TF9Nvn9mIGwwR19EEAAYACIwz/AGEp9jLbO4YAsRCJtF8/pI2ESPXzQlhRFfTI4I/QubwVNsJAOvxkvmV84WMwvu8uAlmP6Map0="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAAGAAiMMr/xHYs0bADcWAN5u7mWdswJRVVPjKKtwpXj9dShij2QOe6x8vVn9lqT5Ssf/zhxehrJKUrOPOEKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRABGAAiMB9e7rWrsL1OGfn2Sp0Ew50MLx5M9wTXhWSFMGG2u26iXGoyN6iBVWv6bP7k1HqLvKiYqC8ICDFxKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAEYACIweCYeSi6cC+gO3btct01cpiWx31Jfy0X51g74vQvB7/w8NV5ZnBe+1XzStLXedcs4Ffl9y506Yx4o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAEYACIwg9ahTESJQ0y+p4fMgCTGRDWYWbh0SA7v9YaqYclyYQ71sPrX8a88CfuOHrgl3UaHHsEvfZ3Pd/0o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBftMNhnwq9wT582a+nxBo9OFpJT+TF9Nvn9mIGwwR19EEAEYACIwL/lypVfzhfeFRDO+zBL+id4gII+WWIv+/8u+h+I9JirpQBBaHPiIA0kwc5pUfhDLrEg5m4gLfmA="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBABGAAiMFdtvqkwUFUr20g0LUk+TX+gwvhlbx+yAuJW5vvRXVdm5B3OS0SBuSbmp77p8VZZZNRLX/RyelXiKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Johr"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "8f0ff7e9-70db-45c0-8a01-a509761f7dd8"; + ["stamp"] = "2026-02-23T15:34:35.305608Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.e2366b6e"; + }; + ["key"] = "019c8b23-5829-70af-93a9-10fcd7e1ba03"; + ["when"] = 1771860875.30560803; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + { + { + "BhXZS/iBtdXMNi1S"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAAGAAiMMm/sZmdMzbLOHbLmQGX1GMh801Cq/R3JC9MMJFR2HO84CBOtpGkZ5k9PxE7Lavg4b8owlgeeMm+KNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAAYACIwMjJNbuRzeVGCFhDaCCzJd66vfcevOXyRCd0XEKOtq/+/+HEH0sKmEs25hJ8vv1pDKQ5My8Natv8o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAAYACIwQCUckmL3zOolWis+pbTXKFCA8sqiUq2txm8aTqcLqMV5Hjn7c/eF6tJ75YXzaVA2GfcDhhVZ8UIo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBftMNhnwq9wT582a+nxBo9OFpJT+TF9Nvn9mIGwwR19EEAAYACIwz/AGEp9jLbO4YAsRCJtF8/pI2ESPXzQlhRFfTI4I/QubwVNsJAOvxkvmV84WMwvu8uAlmP6Map0="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAAGAAiMMr/xHYs0bADcWAN5u7mWdswJRVVPjKKtwpXj9dShij2QOe6x8vVn9lqT5Ssf/zhxehrJKUrOPOEKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRABGAAiMB9e7rWrsL1OGfn2Sp0Ew50MLx5M9wTXhWSFMGG2u26iXGoyN6iBVWv6bP7k1HqLvKiYqC8ICDFxKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAEYACIweCYeSi6cC+gO3btct01cpiWx31Jfy0X51g74vQvB7/w8NV5ZnBe+1XzStLXedcs4Ffl9y506Yx4o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAEYACIwg9ahTESJQ0y+p4fMgCTGRDWYWbh0SA7v9YaqYclyYQ71sPrX8a88CfuOHrgl3UaHHsEvfZ3Pd/0o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBftMNhnwq9wT582a+nxBo9OFpJT+TF9Nvn9mIGwwR19EEAEYACIwL/lypVfzhfeFRDO+zBL+id4gII+WWIv+/8u+h+I9JirpQBBaHPiIA0kwc5pUfhDLrEg5m4gLfmA="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBABGAAiMFdtvqkwUFUr20g0LUk+TX+gwvhlbx+yAuJW5vvRXVdm5B3OS0SBuSbmp77p8VZZZNRLX/RyelXiKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Johr"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "8f0ff7e9-70db-45c0-8a01-a509761f7dd8"; + ["stamp"] = "2026-02-23T15:34:35.313059Z"; + ["type"] = "chat"; + ["to"] = "rishi@rishighan.com"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.e2366b6e"; + }; + ["key"] = "019c8b23-5831-7b92-b6f4-546dd0817812"; + ["when"] = 1771860875.31305957; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "8f0ff7e9-70db-45c0-8a01-a509761f7dd8"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:34:35.322182Z"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b23-583a-7896-87d0-8d9a301224f1"; + ["when"] = 1771860875.32218289; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "8f0ff7e9-70db-45c0-8a01-a509761f7dd8"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:34:35.325169Z"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b23-583d-7806-bae7-7c1a04414023"; + ["when"] = 1771860875.3251698; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "reply"; + ["attr"] = { + ["id"] = "8f0ff7e9-70db-45c0-8a01-a509761f7dd8"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["xmlns"] = "urn:xmpp:reply:0"; + }; + }; + { + { + ["name"] = "body"; + ["attr"] = { + ["end"] = "6"; + ["start"] = "0"; + ["xmlns"] = "urn:xmpp:fallback:0"; + }; + }; + ["name"] = "fallback"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:fallback:0"; + ["for"] = "urn:xmpp:reply:0"; + }; + }; + { + { + { + "E+kP7Iz7RGmIKVZL"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRACGAAiMGQ0VrWHjg+xpHwCnV+o/dCI3G7ZXlEjysYgipKIK9UTLejpI9mR/bTIFZtsPeNt4S8NUP3NEww4KNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAIYACIwGSSVs4dVFJYcbP08iOsBGRpFq82XCahZQ5/4Hp4ou+whUqwqRiLmTduFA3ERH0HCHxNFUPV34ooo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAIYACIw3DPHdb4Ihyl0ub8ph5Q35WopBsTsbzvL79x63V7AGbQ2WTYDi4fuGPAXePbiRAvT/Nb7VJIai4Uo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBftMNhnwq9wT582a+nxBo9OFpJT+TF9Nvn9mIGwwR19EEAIYACIwSY2Hx0un7LopA4oC6aa/saBmelpHV/t1muuIzdyLRafXfmptHE4MEQt61CcN8cDoOx6Tpm/OmYk="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBACGAAiMIti7YI1NDYkr5u2rijr4CQ/PTvmvwRRlo25qeevah4eO55PLmSLQJBPTeGN1dN+IpY38uemIitVKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRADGAAiMPY/W4APJ0zo+QnSNa/VvKMPDgpVIUCU9h+pOoZWIoDkvnD2S+P9PVM8KkzxqBLaY30CIhfHyf32KNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAMYACIweOpTQloMB9l+1PNXH6HOgibXNQINetmIiNKVFzc4cEU9WM+WAwxJifKTHqm/+aB0i1Lx80tmVGko2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAMYACIw8dlMReTHNQAxw8skpl1SyKDVTlIusRozwLCc18KVmFFFBFKuFySKAnoas4h5n8uOW0H40l/GZGko2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBftMNhnwq9wT582a+nxBo9OFpJT+TF9Nvn9mIGwwR19EEAMYACIwZK8eqbYhydPUaVpw/+/Db2piSxefhKFJR46o5G27dWjw79HaowU0482mQU6j3cnaX21fj2FahNU="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBADGAAiMHqoXAmVHAzbRimzOhQlxXiqgs9s7fj4c7He7qQygb1OU0DVyPiYaVvn23X1tOu0dUx7HIglzAzEKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "U8HrQe8gpEO/IW5PeyYy2JM="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "cd501399-0296-471d-8e7c-04d6d4348e2b"; + ["stamp"] = "2026-02-23T15:34:43.860864Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.e2366b6e"; + }; + ["key"] = "019c8b23-7994-7773-8201-793d789299c2"; + ["when"] = 1771860883.86086488; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "reply"; + ["attr"] = { + ["id"] = "8f0ff7e9-70db-45c0-8a01-a509761f7dd8"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["xmlns"] = "urn:xmpp:reply:0"; + }; + }; + { + { + ["name"] = "body"; + ["attr"] = { + ["end"] = "6"; + ["start"] = "0"; + ["xmlns"] = "urn:xmpp:fallback:0"; + }; + }; + ["name"] = "fallback"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:fallback:0"; + ["for"] = "urn:xmpp:reply:0"; + }; + }; + { + { + { + "E+kP7Iz7RGmIKVZL"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRACGAAiMGQ0VrWHjg+xpHwCnV+o/dCI3G7ZXlEjysYgipKIK9UTLejpI9mR/bTIFZtsPeNt4S8NUP3NEww4KNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAIYACIwGSSVs4dVFJYcbP08iOsBGRpFq82XCahZQ5/4Hp4ou+whUqwqRiLmTduFA3ERH0HCHxNFUPV34ooo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAIYACIw3DPHdb4Ihyl0ub8ph5Q35WopBsTsbzvL79x63V7AGbQ2WTYDi4fuGPAXePbiRAvT/Nb7VJIai4Uo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBftMNhnwq9wT582a+nxBo9OFpJT+TF9Nvn9mIGwwR19EEAIYACIwSY2Hx0un7LopA4oC6aa/saBmelpHV/t1muuIzdyLRafXfmptHE4MEQt61CcN8cDoOx6Tpm/OmYk="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBACGAAiMIti7YI1NDYkr5u2rijr4CQ/PTvmvwRRlo25qeevah4eO55PLmSLQJBPTeGN1dN+IpY38uemIitVKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRADGAAiMPY/W4APJ0zo+QnSNa/VvKMPDgpVIUCU9h+pOoZWIoDkvnD2S+P9PVM8KkzxqBLaY30CIhfHyf32KNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAMYACIweOpTQloMB9l+1PNXH6HOgibXNQINetmIiNKVFzc4cEU9WM+WAwxJifKTHqm/+aB0i1Lx80tmVGko2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAMYACIw8dlMReTHNQAxw8skpl1SyKDVTlIusRozwLCc18KVmFFFBFKuFySKAnoas4h5n8uOW0H40l/GZGko2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBftMNhnwq9wT582a+nxBo9OFpJT+TF9Nvn9mIGwwR19EEAMYACIwZK8eqbYhydPUaVpw/+/Db2piSxefhKFJR46o5G27dWjw79HaowU0482mQU6j3cnaX21fj2FahNU="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBADGAAiMHqoXAmVHAzbRimzOhQlxXiqgs9s7fj4c7He7qQygb1OU0DVyPiYaVvn23X1tOu0dUx7HIglzAzEKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "U8HrQe8gpEO/IW5PeyYy2JM="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "cd501399-0296-471d-8e7c-04d6d4348e2b"; + ["stamp"] = "2026-02-23T15:34:43.867974Z"; + ["type"] = "chat"; + ["to"] = "rishi@rishighan.com"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.e2366b6e"; + }; + ["key"] = "019c8b23-799c-77a1-9c9e-c333ee599e77"; + ["when"] = 1771860883.86797404; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "cd501399-0296-471d-8e7c-04d6d4348e2b"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:34:43.876933Z"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b23-79a4-7acf-a585-69a0100c30a4"; + ["when"] = 1771860883.8769331; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "cd501399-0296-471d-8e7c-04d6d4348e2b"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:34:43.879357Z"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b23-79a7-7696-a7b2-aacc87b527d9"; + ["when"] = 1771860883.87935758; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "B7489801-294F-4E2B-B667-243A3F96D143"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "WblvgL0AgPHE5kQRwUIfblN7h2rML/mMs1ReuVjryh2I2d/pzknW2gqMWcpK8/LMPyrrvtWwpFdZZwCLp419y0o/JdRG5eyrtSiNNJ5+KDkxLcjKE2qCg7bTuZoo1e9js8JAlkwOIH8ZBmZe458An4n9+ExlxO9l8IU4cgk7917L4IEnSC97nj1eBarKLu/x/E+gJ/GMtXZW+XFxx+beNMj0T0cr4ueN5rKhMLjtmoyRWqnAfpxdfGvZmYJdP6/dbVfJLU2N5XD91k1vw6R1ClC907qv82OJ4sPGGmLQHRV1NvJt6eV7/y6eggozWLhENIXaAeX2buNQjD5J79tox7Ma85FiLMa58b4ltnIfD/buveKLfsm+snkPIgWzGR6proIzGvqIduoYyBVbSJe7c3/yBoh5OZrvsOh59tSO9TDDmBn1wawAX2eYUst+f6HbEck0c02SAord1bLs2WS0pvc2jfif3oIHVVIoMPr8JrDZ5l4B0TBEUNfnZslhJ9rIuohxJ4YZwLxm9NOlqd01IIdfafhSi7ImRLqQzP3w1y3OhYuXuYwWcVmGENm3X/KIqUEPYUU683v5BGMGedEfkKSA5b5lM82BtBlW7nz9+K9eSLmiPyjY6VfuVEod0asnVydSW+vKhmzVhqawYBed81dXqMtBDdJAkDw/FWYIzgk29V4ERXpKDuC1UoD31wjxanrtVM7/fM+ptulSi1MtW5sYwawYUnCbHu3lwks+4A8OhYuAbE7JKe0bGLEsDi3a7OjSvOQbTHXx7dTX7wRP6tyK2Yl8LePJT1H3HZzz+ZKkKM5WAI4YqCZJr1J/SaVmEa+CLoifmn9KXp4uJNGBAUk6m9JPrWPTKirJBDnjTiCdwMHSIOIWjABumYtWJ8C2tlVCkyEw4eoiR027yCJGWTsUB0LuqvTAARvtQ2Pg4PC9gJpMdmtW3j5x7QKnkB1lxWJBWjU1UgXv3ER4/QVUTG5tumVzbKHLigoXD+48mKGv0k5sJMU9928fLCbYfdgEe/StlYxw51ae228C1lW+N6vcy6p1n1xkBvynQffOsgO1fRjH3QzJ3cCr6LoS3S4Jku8sddeOWULHwZ8GesB6rZkJ2Cmg+d0aO2nTQKtRI1Sj9KPsWsLi/GRx7LiihoF34/VxPzz/brx4LZF3XqjpC6hjzkuu"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAUYACIwkPhGe4ddTsujCUcubpx0f8tKO6ss2NU0zu1i751WLaLiVjlKyS2qRAaWIY//EQhOxo+OZtcs9+0oke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAUYACIwqHOPadHvT4YOFDS6NmqbD6MfSiKF1wmnU/hnpzEcZn4FQb6WifalDRzGYokNW+TiKGhntz+/XOgoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAUYACIwRMaheTCV36aWsU4xz/wENZ2VZH95PkuEZIY4qEfZulcmnnCXt7ZE6Mx7nY5+c2/SMw9dhdMLLrw="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwohBfd0e8RPpd3dOGT3A7HoSGHyi+3i1AsXO1WT1pXJ4L18EAAYASIwlbWJ7pkhmtldRNWy3DxCMw9JdXAmOoMWIwXR1TWiLjNZfvqsmRdTR/xr244/yJWdw+tW4iS4X84="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "440974939"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAcYACIw8A2JBDlyGcCXHTb8g6Q67xHBkbBDMvX2T64Ok+S3bS/636PNSgP+6emXqoTUdGh38IyxtdPP5/I="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "gky6fc5MQnVkywVs"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "B7489801-294F-4E2B-B667-243A3F96D143"; + ["stamp"] = "2026-02-23T15:35:37.248614Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b24-4a20-794a-8665-5fcb3e3e63ff"; + ["when"] = 1771860937.24861407; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "B7489801-294F-4E2B-B667-243A3F96D143"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "WblvgL0AgPHE5kQRwUIfblN7h2rML/mMs1ReuVjryh2I2d/pzknW2gqMWcpK8/LMPyrrvtWwpFdZZwCLp419y0o/JdRG5eyrtSiNNJ5+KDkxLcjKE2qCg7bTuZoo1e9js8JAlkwOIH8ZBmZe458An4n9+ExlxO9l8IU4cgk7917L4IEnSC97nj1eBarKLu/x/E+gJ/GMtXZW+XFxx+beNMj0T0cr4ueN5rKhMLjtmoyRWqnAfpxdfGvZmYJdP6/dbVfJLU2N5XD91k1vw6R1ClC907qv82OJ4sPGGmLQHRV1NvJt6eV7/y6eggozWLhENIXaAeX2buNQjD5J79tox7Ma85FiLMa58b4ltnIfD/buveKLfsm+snkPIgWzGR6proIzGvqIduoYyBVbSJe7c3/yBoh5OZrvsOh59tSO9TDDmBn1wawAX2eYUst+f6HbEck0c02SAord1bLs2WS0pvc2jfif3oIHVVIoMPr8JrDZ5l4B0TBEUNfnZslhJ9rIuohxJ4YZwLxm9NOlqd01IIdfafhSi7ImRLqQzP3w1y3OhYuXuYwWcVmGENm3X/KIqUEPYUU683v5BGMGedEfkKSA5b5lM82BtBlW7nz9+K9eSLmiPyjY6VfuVEod0asnVydSW+vKhmzVhqawYBed81dXqMtBDdJAkDw/FWYIzgk29V4ERXpKDuC1UoD31wjxanrtVM7/fM+ptulSi1MtW5sYwawYUnCbHu3lwks+4A8OhYuAbE7JKe0bGLEsDi3a7OjSvOQbTHXx7dTX7wRP6tyK2Yl8LePJT1H3HZzz+ZKkKM5WAI4YqCZJr1J/SaVmEa+CLoifmn9KXp4uJNGBAUk6m9JPrWPTKirJBDnjTiCdwMHSIOIWjABumYtWJ8C2tlVCkyEw4eoiR027yCJGWTsUB0LuqvTAARvtQ2Pg4PC9gJpMdmtW3j5x7QKnkB1lxWJBWjU1UgXv3ER4/QVUTG5tumVzbKHLigoXD+48mKGv0k5sJMU9928fLCbYfdgEe/StlYxw51ae228C1lW+N6vcy6p1n1xkBvynQffOsgO1fRjH3QzJ3cCr6LoS3S4Jku8sddeOWULHwZ8GesB6rZkJ2Cmg+d0aO2nTQKtRI1Sj9KPsWsLi/GRx7LiihoF34/VxPzz/brx4LZF3XqjpC6hjzkuu"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAUYACIwkPhGe4ddTsujCUcubpx0f8tKO6ss2NU0zu1i751WLaLiVjlKyS2qRAaWIY//EQhOxo+OZtcs9+0oke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAUYACIwqHOPadHvT4YOFDS6NmqbD6MfSiKF1wmnU/hnpzEcZn4FQb6WifalDRzGYokNW+TiKGhntz+/XOgoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAUYACIwRMaheTCV36aWsU4xz/wENZ2VZH95PkuEZIY4qEfZulcmnnCXt7ZE6Mx7nY5+c2/SMw9dhdMLLrw="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwohBfd0e8RPpd3dOGT3A7HoSGHyi+3i1AsXO1WT1pXJ4L18EAAYASIwlbWJ7pkhmtldRNWy3DxCMw9JdXAmOoMWIwXR1TWiLjNZfvqsmRdTR/xr244/yJWdw+tW4iS4X84="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "440974939"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAcYACIw8A2JBDlyGcCXHTb8g6Q67xHBkbBDMvX2T64Ok+S3bS/636PNSgP+6emXqoTUdGh38IyxtdPP5/I="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "gky6fc5MQnVkywVs"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "B7489801-294F-4E2B-B667-243A3F96D143"; + ["stamp"] = "2026-02-23T15:35:37.254282Z"; + ["type"] = "chat"; + ["to"] = "rishi@rishighan.com"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b24-4a28-7eec-ad5b-50a6f1701986"; + ["when"] = 1771860937.25428224; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "B7489801-294F-4E2B-B667-243A3F96D143"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:35:37.321342Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b24-4a69-7d23-9535-4d46b3452f6f"; + ["when"] = 1771860937.32134247; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "B7489801-294F-4E2B-B667-243A3F96D143"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:35:37.325757Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b24-4a6d-79c1-a060-887616f94e1f"; + ["when"] = 1771860937.32575798; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "5D1215A3-2F83-4B21-9E65-0A41FDCA65B6"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "EHlQHSdfTYwbyOBLPvu70Vu87XsxVuk1ZJivTzU0EFbJZKuNzc3Cyi8OXFs/kIoxg2GCxQootrqNd+wrC7Okw8RRzXQ55DRwimh/IVS72Tme4KgRDEmG21A6l3McpabQrGDQtbahCmC6Kn0Sf1HVvIW9vBoiqHIdAGgffiilQJVvSKcf595biXLgrQWa5hDBJggXrWXoN4QmCdCO8gK+oH49mVZzWtO3UGpT1bu4wQuLSaR3TTXVn/cWFTcyZCeaLvbZwEZKcwRmDtZDnudJfmo9zznWLhk30bRqQeZjDxYVhFAHcvm0ZeMmktuj9SNreSYkWB9aQv89DTQtCi37xYMQqq8Y9zgMnG/MEGJMGqqhLcojZ1/QFPcwyS/+t7KN8tZsir5+VZY61cA7WFi7KV7gprbob4ITm0oqsdvjiq8q4IgII/i/q7FUdkY8xWMEkMjySCUZeXHDR7GzU5VJrSrtbg3m6u7ivwO4nCiAZ0oaQPpX+p4vE/Cg/umdJLGUxylffKcSg0Og/JwjibYbGYUTmQjAm+8h+5PpxuyQuyqMyJIP6UVF1KHxPZ3b+OWVIqPVsdST9E5zxd6+QxL51N8rhvhmXMTXjf/ySLTVSNXPxn1KsTo8Ta669O6F1tJz74QfOMDAZPXNv7igIamzO/3tVJwGuG/mhuotV3iv0G0RTn4Qqby0tMz48luh8PCtGqUXzpd9ccKRuGrofm2dvVzmFvp9GPxKe5dL3rZ5rSOHzY5qeS7mjR7uF+O6yslH7DXU+hK0IY+VwkaO1wNhhRdM7cZFHz/FXNv14nmMbnQ0Y9HdhhWFmTJkeo9ckgEys7PaKRBahj5jNptHAobyeY59YMCWAIckG8CyQ993b8KfgQltwq+fG52ODtRSJwyoRypby9csZrVBSH48cJUfHHA8snN0hSbazOPOnzOnuonIm84eivKfedo1zQAB9qphU80GTXrtnGK8hgo6I6ft3zqMrK4WsC4xBfG39vpl0k7OL3UgDGMifQMM/6M41NF8X7QIskKGr/YDhrOa98KWH7GWgelzwkX/2RPeKVLJWSs83WJdoeJddIc8E6Qwtgm+YSF4DSy653jZLR417P21WG+e7wtOBURzyQPEa+WMCoI6wxSqQWjQ8fG8fOu5QK892mnc7Nzjlb8N"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwohBfd0e8RPpd3dOGT3A7HoSGHyi+3i1AsXO1WT1pXJ4L18EAEYASIwEyTKzu4Bjv2EMoPkBs6EsJs6gwaoHGoKOVhOI2LaCFC3MWzLp4X9Ukox98gx0yb7lisJVdIcUak="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "440974939"; + }; + }; + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAYYACIwQoQAyG+YNOg7oYBU1Azf5ceKody/UK5FofQp1TBVTkckuNqSz9XyNl7uVULKp6fh6PBtmYFLgMc="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAgYACIwgWNfs+yWabQWGFHEzvi7plcQU4n36C/W6Ux8tTJU9djQUswcpiL/nxqjvojyqbJaNZxsh2AmD90="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAYYACIwwfijXUcFJ+glYCX5qufhtyFriSf2iLzlcqSiCjdUNS2K+1mQpr3ieBW2jD1w7dOz5rOO2se0LL0oke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAYYACIw7ezRB4qkbRkIoczMlpjtQ8gq42ztLxn9VKfe7ZnaPQZ8LKAnca2g5YU17sBfC3PY2xN75OVRXtUoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "dr/3SccQZx4etsJe"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "5D1215A3-2F83-4B21-9E65-0A41FDCA65B6"; + ["stamp"] = "2026-02-23T15:49:08.077610Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b30-a96d-7891-9f35-f65156fcbbc0"; + ["when"] = 1771861748.07761097; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "5D1215A3-2F83-4B21-9E65-0A41FDCA65B6"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "EHlQHSdfTYwbyOBLPvu70Vu87XsxVuk1ZJivTzU0EFbJZKuNzc3Cyi8OXFs/kIoxg2GCxQootrqNd+wrC7Okw8RRzXQ55DRwimh/IVS72Tme4KgRDEmG21A6l3McpabQrGDQtbahCmC6Kn0Sf1HVvIW9vBoiqHIdAGgffiilQJVvSKcf595biXLgrQWa5hDBJggXrWXoN4QmCdCO8gK+oH49mVZzWtO3UGpT1bu4wQuLSaR3TTXVn/cWFTcyZCeaLvbZwEZKcwRmDtZDnudJfmo9zznWLhk30bRqQeZjDxYVhFAHcvm0ZeMmktuj9SNreSYkWB9aQv89DTQtCi37xYMQqq8Y9zgMnG/MEGJMGqqhLcojZ1/QFPcwyS/+t7KN8tZsir5+VZY61cA7WFi7KV7gprbob4ITm0oqsdvjiq8q4IgII/i/q7FUdkY8xWMEkMjySCUZeXHDR7GzU5VJrSrtbg3m6u7ivwO4nCiAZ0oaQPpX+p4vE/Cg/umdJLGUxylffKcSg0Og/JwjibYbGYUTmQjAm+8h+5PpxuyQuyqMyJIP6UVF1KHxPZ3b+OWVIqPVsdST9E5zxd6+QxL51N8rhvhmXMTXjf/ySLTVSNXPxn1KsTo8Ta669O6F1tJz74QfOMDAZPXNv7igIamzO/3tVJwGuG/mhuotV3iv0G0RTn4Qqby0tMz48luh8PCtGqUXzpd9ccKRuGrofm2dvVzmFvp9GPxKe5dL3rZ5rSOHzY5qeS7mjR7uF+O6yslH7DXU+hK0IY+VwkaO1wNhhRdM7cZFHz/FXNv14nmMbnQ0Y9HdhhWFmTJkeo9ckgEys7PaKRBahj5jNptHAobyeY59YMCWAIckG8CyQ993b8KfgQltwq+fG52ODtRSJwyoRypby9csZrVBSH48cJUfHHA8snN0hSbazOPOnzOnuonIm84eivKfedo1zQAB9qphU80GTXrtnGK8hgo6I6ft3zqMrK4WsC4xBfG39vpl0k7OL3UgDGMifQMM/6M41NF8X7QIskKGr/YDhrOa98KWH7GWgelzwkX/2RPeKVLJWSs83WJdoeJddIc8E6Qwtgm+YSF4DSy653jZLR417P21WG+e7wtOBURzyQPEa+WMCoI6wxSqQWjQ8fG8fOu5QK892mnc7Nzjlb8N"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwohBfd0e8RPpd3dOGT3A7HoSGHyi+3i1AsXO1WT1pXJ4L18EAEYASIwEyTKzu4Bjv2EMoPkBs6EsJs6gwaoHGoKOVhOI2LaCFC3MWzLp4X9Ukox98gx0yb7lisJVdIcUak="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "440974939"; + }; + }; + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAYYACIwQoQAyG+YNOg7oYBU1Azf5ceKody/UK5FofQp1TBVTkckuNqSz9XyNl7uVULKp6fh6PBtmYFLgMc="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAgYACIwgWNfs+yWabQWGFHEzvi7plcQU4n36C/W6Ux8tTJU9djQUswcpiL/nxqjvojyqbJaNZxsh2AmD90="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAYYACIwwfijXUcFJ+glYCX5qufhtyFriSf2iLzlcqSiCjdUNS2K+1mQpr3ieBW2jD1w7dOz5rOO2se0LL0oke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAYYACIw7ezRB4qkbRkIoczMlpjtQ8gq42ztLxn9VKfe7ZnaPQZ8LKAnca2g5YU17sBfC3PY2xN75OVRXtUoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "dr/3SccQZx4etsJe"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "5D1215A3-2F83-4B21-9E65-0A41FDCA65B6"; + ["stamp"] = "2026-02-23T15:49:08.084994Z"; + ["type"] = "chat"; + ["to"] = "rishi@rishighan.com"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b30-a975-758a-8a39-23d4e3152b74"; + ["when"] = 1771861748.08499432; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "5D1215A3-2F83-4B21-9E65-0A41FDCA65B6"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:49:08.112088Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b30-a990-7fad-8a72-41ffd0ef8b31"; + ["when"] = 1771861748.11208868; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "5D1215A3-2F83-4B21-9E65-0A41FDCA65B6"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T15:49:08.115776Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b30-a993-7b9d-bd72-dd82bc8752c8"; + ["when"] = 1771861748.11577654; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + { + { + "OziRhY0tFijh1y+T"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAEGAAiMAeRcdDELGRNCR/sNFyx7cz7jZkukp3oajLvsk2HCQmmb/lc40g6MSmWqvP2jPxdz5phSWQUDqxiKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAQYACIwe6W0SaC/PJNF+ik8D5BSf6kdLKRNR4yjUunUv6PYE/B/CaCbcBTNqLRiDVBdlrzEspBTJQ5KlZ8o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAQYACIw1TIRKrupT0omZKAIvC9b6EPbo3Wi5J9XH1dg5yIgWJqRNfLV+UOmPE98b5WkFzH5jBo9eO+8VTQo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBSUKGBs7TF2osu7JuHgkAjFTXDBySs0nB2EAovCT1hQEEAAYAyIw1G+W1GMrXSnw9vkTDgIrOiJOymBSrG3nZHnsxerCwyB3bioxfD+ARgw7AjpzjD6X7sQOxI+t//Q="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAEGAAiMBql8X/8DxB4Wuii2u7k7K85nIn1BI0eDJ+VrF4EqWevfZsf8cqyOBV34tFjOrNsDcyYytVNS8zlKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAFGAAiMHiHoD2/gxNKtedb1L+gze+2hVoC7UAPBGlEDIg+iHKpphOkn101u6ZD7ZVkUT75/1ZOcUfpZsMMKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAUYACIwpxCRIKodL98+XS77mHNchNP7RCCBx35JGz9mpNyuPhYmPE1VKEwhH2Xl7efHU95SeDqMut7I9Aoo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAUYACIwycUNRyFTtpz5RcozM9qx2XDuJ41HK3oCC5WNx3Uw9r2PAcRhFtyATuXU6o5jNMPnYeV+prejg/Qo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBSUKGBs7TF2osu7JuHgkAjFTXDBySs0nB2EAovCT1hQEEAEYAyIwBUrWwHXxiHXPMfnVz7MDWjm5f3NExqzyhPYL5tQHBRXNLgpzykUhrheSSpxqXWxlt/pSl1UKwpU="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAFGAAiMOqv2Vsw+39eZ0+PgaOYdkht2cmnjB2xSlIDmrJorB0VqVYn5JFFm/p95Ft5yBpsnw6E69D1nhT6KNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "1gopNX8fEfni"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "95c56c80-9f2f-4480-a4ec-a6f2eea16709"; + ["stamp"] = "2026-02-23T16:13:10.003803Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.e2366b6e"; + }; + ["key"] = "019c8b46-a9f7-744d-b5d8-d9c4192b8dcf"; + ["when"] = 1771863190.00380301; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + { + { + "OziRhY0tFijh1y+T"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAEGAAiMAeRcdDELGRNCR/sNFyx7cz7jZkukp3oajLvsk2HCQmmb/lc40g6MSmWqvP2jPxdz5phSWQUDqxiKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAQYACIwe6W0SaC/PJNF+ik8D5BSf6kdLKRNR4yjUunUv6PYE/B/CaCbcBTNqLRiDVBdlrzEspBTJQ5KlZ8o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAQYACIw1TIRKrupT0omZKAIvC9b6EPbo3Wi5J9XH1dg5yIgWJqRNfLV+UOmPE98b5WkFzH5jBo9eO+8VTQo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBSUKGBs7TF2osu7JuHgkAjFTXDBySs0nB2EAovCT1hQEEAAYAyIw1G+W1GMrXSnw9vkTDgIrOiJOymBSrG3nZHnsxerCwyB3bioxfD+ARgw7AjpzjD6X7sQOxI+t//Q="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAEGAAiMBql8X/8DxB4Wuii2u7k7K85nIn1BI0eDJ+VrF4EqWevfZsf8cqyOBV34tFjOrNsDcyYytVNS8zlKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAFGAAiMHiHoD2/gxNKtedb1L+gze+2hVoC7UAPBGlEDIg+iHKpphOkn101u6ZD7ZVkUT75/1ZOcUfpZsMMKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAUYACIwpxCRIKodL98+XS77mHNchNP7RCCBx35JGz9mpNyuPhYmPE1VKEwhH2Xl7efHU95SeDqMut7I9Aoo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAUYACIwycUNRyFTtpz5RcozM9qx2XDuJ41HK3oCC5WNx3Uw9r2PAcRhFtyATuXU6o5jNMPnYeV+prejg/Qo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBSUKGBs7TF2osu7JuHgkAjFTXDBySs0nB2EAovCT1hQEEAEYAyIwBUrWwHXxiHXPMfnVz7MDWjm5f3NExqzyhPYL5tQHBRXNLgpzykUhrheSSpxqXWxlt/pSl1UKwpU="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAFGAAiMOqv2Vsw+39eZ0+PgaOYdkht2cmnjB2xSlIDmrJorB0VqVYn5JFFm/p95Ft5yBpsnw6E69D1nhT6KNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "1gopNX8fEfni"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "95c56c80-9f2f-4480-a4ec-a6f2eea16709"; + ["stamp"] = "2026-02-23T16:13:10.011969Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.e2366b6e"; + }; + ["key"] = "019c8b46-a9fc-7645-a57f-433c2ae431d8"; + ["when"] = 1771863190.01196933; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "95c56c80-9f2f-4480-a4ec-a6f2eea16709"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T16:13:10.022346Z"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b46-aa06-7a77-ab7f-c382d6a519eb"; + ["when"] = 1771863190.02234674; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "95c56c80-9f2f-4480-a4ec-a6f2eea16709"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T16:13:10.029110Z"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b46-aa0d-711f-853d-6ea9284ad90c"; + ["when"] = 1771863190.02911019; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "CDB228D6-A0F3-4C0D-A217-C5D65E588DDD"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "2uwev+2+94/Zl9E="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAcYACIwn3T8T0CNRnt3nfFB05jqoRuIoIQDY0PiiL/+pJUtLh1gBOue7oX98mv5NaDkohiB24797/Zkaqk="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAkYACIwsvfg9zL7zj8vrXK5qBCxl8Qui2GUkWFYh0xbw5jFsdBS36ebbC4ljkX2KjovQ6IQTQnb8DuR5W8="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAcYACIwigMmUPWJxS1UxCoaInnFdt4jTSWWVI7wwmqe21efFYvOFRaX+RG3twrdiYD/9sQ/Ng5Ct92OFhUoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBYoYoZDrQqNdUb4oRiCG5XDnL9D6jFxBGu/gUuW+3yZfEAAYASIwABXjqzTxxLCYkQ+SNgruC8AZ4gJMTPVLE39qIrfcJahjowdJt7jIgRRgLRmNmhX6QR39b3zb6HM="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "440974939"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAcYACIwZZWbg1JSypWEfqgswpdSfdFfkEFTx+ciAkH2Yy7Yq9VJD/O/qVe/FcGBaqXVjWNoPSRk6gyZIbYoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "VcrLU8yb7ZKwu6oC"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "CDB228D6-A0F3-4C0D-A217-C5D65E588DDD"; + ["stamp"] = "2026-02-23T16:13:20.891403Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b46-d47b-7bb5-9c5f-7ffe27e06a49"; + ["when"] = 1771863200.8914032; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "CDB228D6-A0F3-4C0D-A217-C5D65E588DDD"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + { + { + "2uwev+2+94/Zl9E="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAcYACIwn3T8T0CNRnt3nfFB05jqoRuIoIQDY0PiiL/+pJUtLh1gBOue7oX98mv5NaDkohiB24797/Zkaqk="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "2046552331"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAkYACIwsvfg9zL7zj8vrXK5qBCxl8Qui2GUkWFYh0xbw5jFsdBS36ebbC4ljkX2KjovQ6IQTQnb8DuR5W8="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "1967738173"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAcYACIwigMmUPWJxS1UxCoaInnFdt4jTSWWVI7wwmqe21efFYvOFRaX+RG3twrdiYD/9sQ/Ng5Ct92OFhUoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBYoYoZDrQqNdUb4oRiCG5XDnL9D6jFxBGu/gUuW+3yZfEAAYASIwABXjqzTxxLCYkQ+SNgruC8AZ4gJMTPVLE39qIrfcJahjowdJt7jIgRRgLRmNmhX6QR39b3zb6HM="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "440974939"; + }; + }; + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAcYACIwZZWbg1JSypWEfqgswpdSfdFfkEFTx+ciAkH2Yy7Yq9VJD/O/qVe/FcGBaqXVjWNoPSRk6gyZIbYoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "VcrLU8yb7ZKwu6oC"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "964622225"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "store"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + }; + ["attr"] = { + ["id"] = "CDB228D6-A0F3-4C0D-A217-C5D65E588DDD"; + ["stamp"] = "2026-02-23T16:13:20.899054Z"; + ["type"] = "chat"; + ["to"] = "rishi@rishighan.com"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b46-d483-7809-98ae-ab60cd657556"; + ["when"] = 1771863200.89905405; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "CDB228D6-A0F3-4C0D-A217-C5D65E588DDD"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T16:13:21.196148Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b46-d5ac-7674-acbf-df299b2efa9b"; + ["when"] = 1771863201.19614887; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "CDB228D6-A0F3-4C0D-A217-C5D65E588DDD"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T16:13:21.200859Z"; + ["to"] = "rishi@rishighan.com/iPhone"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b46-d5b3-7d6b-9f83-e912da89e607"; + ["when"] = 1771863201.20085931; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + { + { + "rS1DwvMCmHxfDUIZ"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAGGAAiMC+St+BFhCUqIhbTlIyrVnGO9XTYxBdMqehRQIxik+Blmsjv2iNzbfVaZsLYXOgPR/rFrOB/T4RIKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAYYACIwNO4tDyCB165g5y/Krklam+va7kr2xd7C/3oAvR5XEzyUZyXwOQQRTM7a3+nzopatO7jM1Zr0iAgo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAYYACIwi5Dk53e2VBI8BAuNCHWLHJIEdU9QohmS9coiv4l31nZ98Uw4B4J8VCFYx/PmlOYKDlWwT03gQuMo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBZSJuogEo6EIYuw9uhnyRm8UA3Nc7OzC+yFK1raFsjtEEAAYASIwe6D2iLXYHJDnO35BUSlQtlIAf1eCzUFfH8VcHxrYf1JyqqpLNsaABK8KH6+yEQRUd8R14mT2XWA="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAGGAAiMFcuUKqPPy8BTyHleuTWL8JHeKn6VTE/woJmDO/HXWZKS7xmhtj8BGm9Wzys4ZdTNSJ1m9ZHELFeKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAHGAAiMGT2T3hLtGGnGJqqwog7SZyK80mQeqOB7hsQE5KA3EwxJJJhrnnRwEWjBfupKE5XOErr49je8miBKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAcYACIw/sjOY3Yx5xqxFXkxB8RmpaL7bLQ3+S3lAJ4dudZhdF6otzmP6jpU3t1MArHoyVpl0nvpIJEUfDEo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAcYACIwARM29tMpG9NKjBVpsCIScj0CnUSg4piJHjC6dUU7JTL5OGPxvTgEZQs6bZcpWyixowF/l9TIUpMo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBZSJuogEo6EIYuw9uhnyRm8UA3Nc7OzC+yFK1raFsjtEEAEYASIwmniRcyTvqvr6RehI4jI0ehgmAzlFsD5C8KVRiWQEgvAKDmrRF9POY+MFzorFPQZ48gZ3fTjzX0E="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAHGAAiMGr07piDNOFIbaIvd14TJct47aPt5ynBradph9JVePtS3CxEu/nzdjTuh5HmHchKnvYzYn2+wbA0KNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "VENrAxv4sZqb"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "delay"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:delay"; + ["stamp"] = "2026-02-23T15:33:53Z"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "70263723-9256-4f9b-a12e-c0908edb6454"; + ["stamp"] = "2026-02-23T16:17:36.929152Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.e2366b6e"; + }; + ["key"] = "019c8b4a-bca1-7e4f-aee8-5b7043126e3e"; + ["when"] = 1771863456.92915249; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + { + { + "rS1DwvMCmHxfDUIZ"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAGGAAiMC+St+BFhCUqIhbTlIyrVnGO9XTYxBdMqehRQIxik+Blmsjv2iNzbfVaZsLYXOgPR/rFrOB/T4RIKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAYYACIwNO4tDyCB165g5y/Krklam+va7kr2xd7C/3oAvR5XEzyUZyXwOQQRTM7a3+nzopatO7jM1Zr0iAgo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAYYACIwi5Dk53e2VBI8BAuNCHWLHJIEdU9QohmS9coiv4l31nZ98Uw4B4J8VCFYx/PmlOYKDlWwT03gQuMo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBZSJuogEo6EIYuw9uhnyRm8UA3Nc7OzC+yFK1raFsjtEEAAYASIwe6D2iLXYHJDnO35BUSlQtlIAf1eCzUFfH8VcHxrYf1JyqqpLNsaABK8KH6+yEQRUd8R14mT2XWA="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAGGAAiMFcuUKqPPy8BTyHleuTWL8JHeKn6VTE/woJmDO/HXWZKS7xmhtj8BGm9Wzys4ZdTNSJ1m9ZHELFeKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAHGAAiMGT2T3hLtGGnGJqqwog7SZyK80mQeqOB7hsQE5KA3EwxJJJhrnnRwEWjBfupKE5XOErr49je8miBKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAcYACIw/sjOY3Yx5xqxFXkxB8RmpaL7bLQ3+S3lAJ4dudZhdF6otzmP6jpU3t1MArHoyVpl0nvpIJEUfDEo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAcYACIwARM29tMpG9NKjBVpsCIScj0CnUSg4piJHjC6dUU7JTL5OGPxvTgEZQs6bZcpWyixowF/l9TIUpMo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBZSJuogEo6EIYuw9uhnyRm8UA3Nc7OzC+yFK1raFsjtEEAEYASIwmniRcyTvqvr6RehI4jI0ehgmAzlFsD5C8KVRiWQEgvAKDmrRF9POY+MFzorFPQZ48gZ3fTjzX0E="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAHGAAiMGr07piDNOFIbaIvd14TJct47aPt5ynBradph9JVePtS3CxEu/nzdjTuh5HmHchKnvYzYn2+wbA0KNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "VENrAxv4sZqb"; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "delay"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:delay"; + ["stamp"] = "2026-02-23T15:33:53Z"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "70263723-9256-4f9b-a12e-c0908edb6454"; + ["stamp"] = "2026-02-23T16:17:36.933058Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.e2366b6e"; + }; + ["key"] = "019c8b4a-bca5-7bf3-a7f3-22ab780b05eb"; + ["when"] = 1771863456.93305826; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "70263723-9256-4f9b-a12e-c0908edb6454"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T16:17:36.979146Z"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b4a-bcd3-7112-8a0e-0a424bf172f0"; + ["when"] = 1771863456.97914624; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "70263723-9256-4f9b-a12e-c0908edb6454"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T16:17:36.984775Z"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b4a-bcd8-7419-b75b-071b881498ce"; + ["when"] = 1771863456.98477507; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + { + { + "rtzVUdmGWFB0dPgJ"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAIGAAiMLGnBcyQk/nwg1scrUV/iVaULAfQXd2WinaV1nwYRzUtqAZJiBe+mdk2q4u5VS12r8c2Sr1lSkcoKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAgYACIwVVdLdLT0IDF2Uw0HLS5I+jBPaZNkGS4pLO0jL/RdARadANPsqz9zsGjuTQZeokMRsjBOth0XIV8o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAgYACIwt6LKBcSmpEW68OuwnXVw2iT74R7y9JjkY1DprBMZl3LVOamcmRgSJhWX0jHA3dAKqVPLN6gDtNMo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBZSJuogEo6EIYuw9uhnyRm8UA3Nc7OzC+yFK1raFsjtEEAIYASIwzsKgw4yG80MOTSf+GKoXdMQpf8J+G96ChaAxoe5IpuGI9cCcVRIR2FAAoPpXbZ81cCDhda8Cyt0="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAIGAAiMD4mPHig9MWWAJMUb8S/VDmcjC5Vzivlison9AfNJCqb6Q3v7NNZg+VlTjt1xJjUEFRhJOFW7dT6KNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAJGAAiMDmMLiAYB+lTDzjXBQMGhAxEHjFboWqawksogxNcZQZe58B6Nbmm4kGPpcVQXB2s75/DWWpe5IIVKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAkYACIwgxmsrzYVdWYizq7ZwQCxpk7QWlfVkF1aTcuHglKZdKW95slmGRZnqCM6+VLR9tn8l+w2I2s4Zk0o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAkYACIw0O9bkEjcF1IalB9bKTJeu4lfD+oLVyCPzVxTXflUSkSXbfbzNipjTA1PnLti81cuqawteIcVeeQo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBZSJuogEo6EIYuw9uhnyRm8UA3Nc7OzC+yFK1raFsjtEEAMYASIwkBd9XOmY2eacm4UpKgHcOEGd9OjgdWXdxCsv/Ab+Lx0KUblo7SKIwocCNK/K6F4LPJ6zZ4y5bfw="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAJGAAiMCGibiRTMaK/+6KeStvUgCVvakRhjWYNqP3y0dzXyNT5fv7zz8SE8i/fMU9RZ71iMsSUMSnvaDeyKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "FdqgV/+yXUr1PfFAIQ=="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "35692e40-8155-4544-b8d1-b078b0f3b6c7"; + ["stamp"] = "2026-02-23T16:17:53.635004Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.e2366b6e"; + }; + ["key"] = "019c8b4a-fde3-7c24-9435-70c9116062d5"; + ["when"] = 1771863473.63500452; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + { + { + "rtzVUdmGWFB0dPgJ"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAIGAAiMLGnBcyQk/nwg1scrUV/iVaULAfQXd2WinaV1nwYRzUtqAZJiBe+mdk2q4u5VS12r8c2Sr1lSkcoKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAgYACIwVVdLdLT0IDF2Uw0HLS5I+jBPaZNkGS4pLO0jL/RdARadANPsqz9zsGjuTQZeokMRsjBOth0XIV8o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAgYACIwt6LKBcSmpEW68OuwnXVw2iT74R7y9JjkY1DprBMZl3LVOamcmRgSJhWX0jHA3dAKqVPLN6gDtNMo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBZSJuogEo6EIYuw9uhnyRm8UA3Nc7OzC+yFK1raFsjtEEAIYASIwzsKgw4yG80MOTSf+GKoXdMQpf8J+G96ChaAxoe5IpuGI9cCcVRIR2FAAoPpXbZ81cCDhda8Cyt0="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAIGAAiMD4mPHig9MWWAJMUb8S/VDmcjC5Vzivlison9AfNJCqb6Q3v7NNZg+VlTjt1xJjUEFRhJOFW7dT6KNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAJGAAiMDmMLiAYB+lTDzjXBQMGhAxEHjFboWqawksogxNcZQZe58B6Nbmm4kGPpcVQXB2s75/DWWpe5IIVKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAkYACIwgxmsrzYVdWYizq7ZwQCxpk7QWlfVkF1aTcuHglKZdKW95slmGRZnqCM6+VLR9tn8l+w2I2s4Zk0o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAkYACIw0O9bkEjcF1IalB9bKTJeu4lfD+oLVyCPzVxTXflUSkSXbfbzNipjTA1PnLti81cuqawteIcVeeQo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBZSJuogEo6EIYuw9uhnyRm8UA3Nc7OzC+yFK1raFsjtEEAMYASIwkBd9XOmY2eacm4UpKgHcOEGd9OjgdWXdxCsv/Ab+Lx0KUblo7SKIwocCNK/K6F4LPJ6zZ4y5bfw="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAJGAAiMCGibiRTMaK/+6KeStvUgCVvakRhjWYNqP3y0dzXyNT5fv7zz8SE8i/fMU9RZ71iMsSUMSnvaDeyKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "FdqgV/+yXUr1PfFAIQ=="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "35692e40-8155-4544-b8d1-b078b0f3b6c7"; + ["stamp"] = "2026-02-23T16:17:53.642160Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.e2366b6e"; + }; + ["key"] = "019c8b4a-fdea-7165-ae73-1c4b2f8a0aac"; + ["when"] = 1771863473.64216018; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "35692e40-8155-4544-b8d1-b078b0f3b6c7"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T16:17:53.651810Z"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b4a-fdf3-7523-bd60-3a1ba6b1b731"; + ["when"] = 1771863473.65181088; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "35692e40-8155-4544-b8d1-b078b0f3b6c7"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T16:17:53.654932Z"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b4a-fdf6-7f55-a7b7-6e79ae19794e"; + ["when"] = 1771863473.65493274; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + { + { + "kgRH/DvVdr4FeYRG"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAKGAAiMJwEJWoazrLgHy2gssrwBOObY2Q0HsfQ6QSjKaCcBeH9iAcH8g7maeFsZLDybfZBkwYuiQD4SYlxKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAoYACIwLDrw2JYiphkodtvr+92X/R4mFE15x1r9Ze0KVsZxDtTV/OKak5eKoazlkH6t0WN6KPB8WgqtQIso2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAoYACIwUgixCo+jQ5QVD48LLnrRlhbptxLECIxIwl2KVMN1OaBKPbsePWmP/x/RpAK7Wvyq/9GPVmkn8awo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBZSJuogEo6EIYuw9uhnyRm8UA3Nc7OzC+yFK1raFsjtEEAQYASIwHL2ZKj/adNx/xqUWyKSj9/FP/HE2bc214yh6PekGNvywEasHSPkXyZ+UO/GCjS5ztDDIEs9Z2nM="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAKGAAiMPztCpnEjDbsDeu9jxzCqOe0oI+yTB3rKWGIzHt9/fCsaG1tIhQY4GddRonGDbB1jacmkL1Q0kifKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRALGAAiMCygjsbNDA7aMOJcEAWa1YmOec3EtsH7cQ7VJ/+YYr65N4ecSbHsSzUO8K7ZmMjv1vP6MzD8Sx9KKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAsYACIwq66Gh+tjxvRBkAd5xc4bioTKpsvnq28OtykjyRzvg3b2wLlWTyChlTGAmg7sLCyKGAyu0w/IMxQo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAsYACIw1TE7c78XFMDP+UwntAnSi4hTuUGSGcL9c4nV96cukrwNcYumsMwD7QCisULfA3vDFoYEkV1U6X4o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBZSJuogEo6EIYuw9uhnyRm8UA3Nc7OzC+yFK1raFsjtEEAUYASIwqTOczzAEwWIJ1GWzvTom9qy4lMKBqh2zAdQ7372Fz1wUmBniaMnLj6mu9eIFVHg2CYlGGQCAfsM="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBALGAAiMO/j/LeIC03cLFuP3sU6wYQmTxkHWgmBKqPv0yxJES9uEb6lKy6Qe9xRjEZ6gd1rDT/Hgz5gg05nKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "tt1UtBh2NWWETQZChncTqS/QNk4/YcvvMRaUyftqtVl/bk1/MfqSH4vBxGXLpPTQyQ=="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "eb773ce5-156f-4d5c-997b-84211391e314"; + ["stamp"] = "2026-02-23T16:38:21.816663Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.e2366b6e"; + }; + ["key"] = "019c8b5d-bb78-7a61-aab1-186f9ac356ae"; + ["when"] = 1771864701.8166635; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "[This message is OMEMO encrypted]"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + { + { + "kgRH/DvVdr4FeYRG"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRAKGAAiMJwEJWoazrLgHy2gssrwBOObY2Q0HsfQ6QSjKaCcBeH9iAcH8g7maeFsZLDybfZBkwYuiQD4SYlxKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAoYACIwLDrw2JYiphkodtvr+92X/R4mFE15x1r9Ze0KVsZxDtTV/OKak5eKoazlkH6t0WN6KPB8WgqtQIso2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAoYACIwUgixCo+jQ5QVD48LLnrRlhbptxLECIxIwl2KVMN1OaBKPbsePWmP/x/RpAK7Wvyq/9GPVmkn8awo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBZSJuogEo6EIYuw9uhnyRm8UA3Nc7OzC+yFK1raFsjtEEAQYASIwHL2ZKj/adNx/xqUWyKSj9/FP/HE2bc214yh6PekGNvywEasHSPkXyZ+UO/GCjS5ztDDIEs9Z2nM="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBAKGAAiMPztCpnEjDbsDeu9jxzCqOe0oI+yTB3rKWGIzHt9/fCsaG1tIhQY4GddRonGDbB1jacmkL1Q0kifKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "Mwj3ibTDAxIhBbNmfO50rAr9SrjDY0Ys6rnzxgOy+z+WuWEybBL2YyllGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQWNQmWiJyuhoOtngzfRGIyDFe/YZdQu/QTTSAUXOkvuTRALGAAiMCygjsbNDA7aMOJcEAWa1YmOec3EtsH7cQ7VJ/+YYr65N4ecSbHsSzUO8K7ZmMjv1vP6MzD8Sx9KKNv8otIBML+4qJcG"; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgiEiEFD8Ng2jsLvjD+wyD7ozcfOfedEZ6djR1h15ZlUcIwohsaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBZ6gp/PH9TiCBknr4MYq+Yh1dBM+eNZZ/tKzJbw6eW9PEAsYACIwq66Gh+tjxvRBkAd5xc4bioTKpsvnq28OtykjyRzvg3b2wLlWTyChlTGAmg7sLCyKGAyu0w/IMxQo2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwgEEiEFhU/S6eaaF/WCfz1coSbv0zVdkINp0h5mQclSGhv8JBgaIQWSKS/+pAl7xhpuychsy+ROyaNEdq56bcJQ02Kh/cTgYSJiMwohBbZaQTJ5tUDx6C7YX04iQKFCVYcf4iMjFh8/WVL2omxZEAsYACIw1TE7c78XFMDP+UwntAnSi4hTuUGSGcL9c4nV96cukrwNcYumsMwD7QCisULfA3vDFoYEkV1U6X4o2/yi0gEwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBZSJuogEo6EIYuw9uhnyRm8UA3Nc7OzC+yFK1raFsjtEEAUYASIwqTOczzAEwWIJ1GWzvTom9qy4lMKBqh2zAdQ7372Fz1wUmBniaMnLj6mu9eIFVHg2CYlGGQCAfsM="; + ["name"] = "key"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["rid"] = "964622225"; + }; + }; + { + "Mwjvh4q9BxIhBaeWOvgk8SC3wz8vATFwbmHMiUDppmmMP44cVNXNUDlrGiEFkikv/qQJe8YabsnIbMvkTsmjRHauem3CUNNiof3E4GEiYjMKIQV8Xoh1rIvVwJC3LGIRVfafmHv6/KFSzU+GiKgIsCHTHBALGAAiMO/j/LeIC03cLFuP3sU6wYQmTxkHWgmBKqPv0yxJES9uEb6lKy6Qe9xRjEZ6gd1rDT/Hgz5gg05nKNv8otIBMJXH1Ag="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "header"; + ["attr"] = { + ["sid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "tt1UtBh2NWWETQZChncTqS/QNk4/YcvvMRaUyftqtVl/bk1/MfqSH4vBxGXLpPTQyQ=="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["name"] = "encrypted"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "encryption"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:eme:0"; + ["name"] = "OMEMO"; + ["namespace"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + ["name"] = "request"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["attr"] = { + ["id"] = "eb773ce5-156f-4d5c-997b-84211391e314"; + ["stamp"] = "2026-02-23T16:38:21.823955Z"; + ["type"] = "chat"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/dino.e2366b6e"; + }; + ["key"] = "019c8b5d-bb80-7ab0-8c4b-7f9e4ebb650c"; + ["when"] = 1771864701.82395506; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "eb773ce5-156f-4d5c-997b-84211391e314"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T16:38:21.835646Z"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b5d-bb8b-74ab-be01-6beccfd4378d"; + ["when"] = 1771864701.83564615; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "received"; + ["attr"] = { + ["id"] = "eb773ce5-156f-4d5c-997b-84211391e314"; + ["xmlns"] = "urn:xmpp:receipts"; + }; + }; + ["attr"] = { + ["xml:lang"] = "en"; + ["stamp"] = "2026-02-23T16:38:21.839082Z"; + ["to"] = "rishi@rishighan.com/dino.e2366b6e"; + ["from"] = "rishi@rishighan.com/JVEZ8UEESQ32"; + }; + ["key"] = "019c8b5d-bb8f-74d7-b479-a03a7d3f6b9d"; + ["when"] = 1771864701.83908296; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + { + ["name"] = "description"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:jingle:apps:rtp:1"; + ["media"] = "audio"; + }; + }; + ["name"] = "propose"; + ["attr"] = { + ["id"] = "C839E9B1-3164-42E9-A661-8899C6DFCD0A"; + ["xmlns"] = "urn:xmpp:jingle-message:0"; + }; + }; + ["attr"] = { + ["type"] = "chat"; + ["stamp"] = "2026-02-23T16:40:45.985297Z"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b5f-eea1-7bfc-a641-b0c12f773830"; + ["when"] = 1771864845.98529744; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + { + ["name"] = "description"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:jingle:apps:rtp:1"; + ["media"] = "audio"; + }; + }; + ["name"] = "propose"; + ["attr"] = { + ["id"] = "C839E9B1-3164-42E9-A661-8899C6DFCD0A"; + ["xmlns"] = "urn:xmpp:jingle-message:0"; + }; + }; + ["attr"] = { + ["stamp"] = "2026-02-23T16:40:45.989406Z"; + ["type"] = "chat"; + ["to"] = "rishi@rishighan.com"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b5f-eea5-7257-b35e-0bdc6dddbcf4"; + ["when"] = 1771864845.98940659; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "reject"; + ["attr"] = { + ["id"] = "C839E9B1-3164-42E9-A661-8899C6DFCD0A"; + ["xmlns"] = "urn:xmpp:jingle-message:0"; + }; + }; + ["attr"] = { + ["type"] = "chat"; + ["stamp"] = "2026-02-23T16:40:53.971464Z"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b60-0dd3-7d92-b79c-e42a5af2b676"; + ["when"] = 1771864853.97146416; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "reject"; + ["attr"] = { + ["id"] = "C839E9B1-3164-42E9-A661-8899C6DFCD0A"; + ["xmlns"] = "urn:xmpp:jingle-message:0"; + }; + }; + ["attr"] = { + ["stamp"] = "2026-02-23T16:40:53.974255Z"; + ["type"] = "chat"; + ["to"] = "rishi@rishighan.com"; + ["xml:lang"] = "en"; + ["from"] = "rishi@rishighan.com/iPhone"; + }; + ["key"] = "019c8b60-0dd6-7bdb-9023-59e463b82197"; + ["when"] = 1771864853.97425532; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:sid:0"; + ["id"] = "B61513DB-3DB0-4651-9FC3-7F2AE75F6B44"; + }; + ["name"] = "origin-id"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + ["name"] = "markable"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + ["name"] = "request"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + ["name"] = "store"; + }; + { + { + "XYPEZDm4nN/mM1hdDY4dqTRVVKNpdO9T0ywHR2s9z55GiYa22/2NtQ=="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAgYACIwIZSwkHLDlhDwY2smLBlHj5YEvKMD43N6K2J4u3CkQiFkloGm/oiCL8LjQg3xMFvVzv420naEhGEoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAgYACIwonUnI8hkbMoj6HC9m12YNnUW/dgvsji201GmJDWT6kq5qbQsZ+LssrNi7fl/R0v0binGIUZUldEoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBf6itnF3cqvMT8ur+udyGPb3dZrpPX9LvX3iqKZA91oCEAAYACIwD6qD9zPFNjfhVn/yxUph/5i2gcWJB3Uo4c7LpI+HEk9CdZx9noxkeCnZnA8Voa2BuV0KzPjITe0="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAgYACIwuXns6uXADDmEZu5Z/IflcxBwAR4g2vAeCqq/ScGrhfLBy0jzMSCVZ8Axvp6pJZE7kWbueJFCPOo="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAoYACIwLDTI3zqmSI22MlRtPjXOIskPCZKDjWigDQULq3n/biE5SthDjrXmvYppZSW3fe/o5+ot483D1sY="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "tmiCRzDCEOEr9W2H"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["sid"] = "964622225"; + }; + ["name"] = "header"; + }; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + ["name"] = "encrypted"; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + ["name"] = "store"; + }; + ["with"] = "rishi@rishighan.com"; + ["attr"] = { + ["id"] = "B61513DB-3DB0-4651-9FC3-7F2AE75F6B44"; + ["stamp"] = "2026-02-23T18:09:52.319256Z"; + ["type"] = "chat"; + ["from"] = "rishi@rishighan.com/iPhone"; + ["xml:lang"] = "en"; + }; + ["name"] = "message"; + ["key"] = "019c8bb1-82d2-708e-be9f-a1ee179241c9"; + ["when"] = 1771870192.31925631; +}); +item({ + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:sid:0"; + ["id"] = "B61513DB-3DB0-4651-9FC3-7F2AE75F6B44"; + }; + ["name"] = "origin-id"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + ["name"] = "markable"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + ["name"] = "request"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + ["name"] = "store"; + }; + { + { + "XYPEZDm4nN/mM1hdDY4dqTRVVKNpdO9T0ywHR2s9z55GiYa22/2NtQ=="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAgYACIwIZSwkHLDlhDwY2smLBlHj5YEvKMD43N6K2J4u3CkQiFkloGm/oiCL8LjQg3xMFvVzv420naEhGEoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAgYACIwonUnI8hkbMoj6HC9m12YNnUW/dgvsji201GmJDWT6kq5qbQsZ+LssrNi7fl/R0v0binGIUZUldEoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBf6itnF3cqvMT8ur+udyGPb3dZrpPX9LvX3iqKZA91oCEAAYACIwD6qD9zPFNjfhVn/yxUph/5i2gcWJB3Uo4c7LpI+HEk9CdZx9noxkeCnZnA8Voa2BuV0KzPjITe0="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAgYACIwuXns6uXADDmEZu5Z/IflcxBwAR4g2vAeCqq/ScGrhfLBy0jzMSCVZ8Axvp6pJZE7kWbueJFCPOo="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAoYACIwLDTI3zqmSI22MlRtPjXOIskPCZKDjWigDQULq3n/biE5SthDjrXmvYppZSW3fe/o5+ot483D1sY="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "tmiCRzDCEOEr9W2H"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["sid"] = "964622225"; + }; + ["name"] = "header"; + }; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + ["name"] = "encrypted"; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + ["name"] = "store"; + }; + ["with"] = "rishi@rishighan.com"; + ["attr"] = { + ["id"] = "B61513DB-3DB0-4651-9FC3-7F2AE75F6B44"; + ["stamp"] = "2026-02-23T18:09:52.350563Z"; + ["to"] = "rishi@rishighan.com"; + ["type"] = "chat"; + ["from"] = "rishi@rishighan.com/iPhone"; + ["xml:lang"] = "en"; + }; + ["name"] = "message"; + ["key"] = "019c8bb1-82de-7e69-a119-27446d942bb5"; + ["when"] = 1771870192.35056329; +}); +item({ + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + ["id"] = "B61513DB-3DB0-4651-9FC3-7F2AE75F6B44"; + }; + ["name"] = "received"; + }; + ["with"] = "rishi@rishighan.com"; + ["attr"] = { + ["to"] = "rishi@rishighan.com/iPhone"; + ["stamp"] = "2026-02-23T18:09:52.358316Z"; + ["from"] = "rishi@rishighan.com/dsaQGeDU2YJ_"; + ["xml:lang"] = "en"; + }; + ["name"] = "message"; + ["key"] = "019c8bb1-82e6-7b6e-ba65-fa3927a619ec"; + ["when"] = 1771870192.35831642; +}); +item({ + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + ["id"] = "B61513DB-3DB0-4651-9FC3-7F2AE75F6B44"; + }; + ["name"] = "received"; + }; + ["with"] = "rishi@rishighan.com"; + ["attr"] = { + ["to"] = "rishi@rishighan.com/iPhone"; + ["stamp"] = "2026-02-23T18:09:52.361232Z"; + ["from"] = "rishi@rishighan.com/dsaQGeDU2YJ_"; + ["xml:lang"] = "en"; + }; + ["name"] = "message"; + ["key"] = "019c8bb1-82e9-7a8b-9696-ede637335f06"; + ["when"] = 1771870192.36123276; +}); +item({ + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:sid:0"; + ["id"] = "312C440C-02D5-43C2-99AE-46C1CF751C01"; + }; + ["name"] = "origin-id"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + ["name"] = "markable"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + ["name"] = "request"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + ["name"] = "store"; + }; + { + { + "S70="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAkYACIwkUONYoP5Oarefnzz97VdY4jyUAEd3JmLxajvD4vFHi4bnDM3qVwCGTisSuflUWzNVLSv4HQyXIQoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBf6itnF3cqvMT8ur+udyGPb3dZrpPX9LvX3iqKZA91oCEAEYACIwRhOcxlN+pjV3dca7Lu2qiadDH1n2rFCCKG0AoORux1gBLMs145sahLLjUJ/2ISfOKuaMl5X8m0o="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAkYACIw6KF1uqe1K9SjQzOAL+LKdnsMvYI8rnpF5CKO5u7Az9CeNvyC0ef+PnU99IigreddQJ/aEKDBtnY="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAsYACIwRnkViiQdEiVuYB0Kd3ubqv8YifDicloP7IAw+Df4IewLs+KxkqIMzgDumEG7rlml2X9YWtjNaG0="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAkYACIwRjyj2TOf8DvbGs56HAqBgC9JOfCg/ao1w2Tfr93D0UR6I0vhqvmz2Q8RZqedJn096Wt6/yUoE98oke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "47+awS4k85r0T6Vn"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["sid"] = "964622225"; + }; + ["name"] = "header"; + }; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + ["name"] = "encrypted"; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + ["name"] = "store"; + }; + ["with"] = "rishi@rishighan.com"; + ["attr"] = { + ["id"] = "312C440C-02D5-43C2-99AE-46C1CF751C01"; + ["stamp"] = "2026-02-23T18:11:58.280908Z"; + ["type"] = "chat"; + ["from"] = "rishi@rishighan.com/iPhone"; + ["xml:lang"] = "en"; + }; + ["name"] = "message"; + ["key"] = "019c8bb3-6ec9-7821-b423-52ed052fce60"; + ["when"] = 1771870318.28090835; +}); +item({ + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:sid:0"; + ["id"] = "312C440C-02D5-43C2-99AE-46C1CF751C01"; + }; + ["name"] = "origin-id"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + ["name"] = "markable"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + }; + ["name"] = "request"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + ["name"] = "store"; + }; + { + { + "S70="; + ["name"] = "payload"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + { + "MwguEiEF60sGgGpLELn4anIuvhmtA9lqmOpyF+9oIrNq7dz6mlwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBb5nNk196zjH6GtIkbJ2aVIK7+nv43IkpOkD4qbGfnliEAkYACIwkUONYoP5Oarefnzz97VdY4jyUAEd3JmLxajvD4vFHi4bnDM3qVwCGTisSuflUWzNVLSv4HQyXIQoke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "719589985"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBf6itnF3cqvMT8ur+udyGPb3dZrpPX9LvX3iqKZA91oCEAEYACIwRhOcxlN+pjV3dca7Lu2qiadDH1n2rFCCKG0AoORux1gBLMs145sahLLjUJ/2ISfOKuaMl5X8m0o="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "440974939"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBRuYdRi15gD/A72W8dxgkQ1uh8ln5fzw6DCHghxObpNHEAkYACIw6KF1uqe1K9SjQzOAL+LKdnsMvYI8rnpF5CKO5u7Az9CeNvyC0ef+PnU99IigreddQJ/aEKDBtnY="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "2046552331"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwohBea0JbPcV6slDCE9JoIgCfYrbhwkfysYqv9Tjej70+07EAsYACIwRnkViiQdEiVuYB0Kd3ubqv8YifDicloP7IAw+Df4IewLs+KxkqIMzgDumEG7rlml2X9YWtjNaG0="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "1967738173"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "MwhDEiEF72ZN7Ez962EdN1ZdyGaFRnoOO7eIlF4NvOVrJxM4FWwaIQX9+dkaUnjYBRwNK5OzzUvCgbU0xeeuCUqC4cx82EXCDCJiMwohBRugJlHdyD8XyvT2fDRluDZ/FCzzy6oia+QxngRKvgliEAkYACIwRjyj2TOf8DvbGs56HAqBgC9JOfCg/ao1w2Tfr93D0UR6I0vhqvmz2Q8RZqedJn096Wt6/yUoE98oke/7ywMwAQ=="; + ["name"] = "key"; + ["attr"] = { + ["rid"] = "964622225"; + ["prekey"] = "true"; + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + { + "47+awS4k85r0T6Vn"; + ["name"] = "iv"; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + }; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + ["sid"] = "964622225"; + }; + ["name"] = "header"; + }; + ["attr"] = { + ["xmlns"] = "eu.siacs.conversations.axolotl"; + }; + ["name"] = "encrypted"; + }; + { + "I sent you an OMEMO encrypted message but your client doesn\226\128\153t seem to support that."; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:hints"; + }; + ["name"] = "store"; + }; + ["with"] = "rishi@rishighan.com"; + ["attr"] = { + ["id"] = "312C440C-02D5-43C2-99AE-46C1CF751C01"; + ["stamp"] = "2026-02-23T18:11:58.286944Z"; + ["to"] = "rishi@rishighan.com"; + ["type"] = "chat"; + ["from"] = "rishi@rishighan.com/iPhone"; + ["xml:lang"] = "en"; + }; + ["name"] = "message"; + ["key"] = "019c8bb3-6ed2-7642-b7c5-cb2fe86fe13d"; + ["when"] = 1771870318.28694463; +}); +item({ + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + ["id"] = "312C440C-02D5-43C2-99AE-46C1CF751C01"; + }; + ["name"] = "received"; + }; + ["with"] = "rishi@rishighan.com"; + ["attr"] = { + ["to"] = "rishi@rishighan.com/iPhone"; + ["stamp"] = "2026-02-23T18:11:58.297117Z"; + ["from"] = "rishi@rishighan.com/dsaQGeDU2YJ_"; + ["xml:lang"] = "en"; + }; + ["name"] = "message"; + ["key"] = "019c8bb3-6ed9-7ca5-8c3e-60a7eb021a4a"; + ["when"] = 1771870318.29711747; +}); +item({ + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:receipts"; + ["id"] = "312C440C-02D5-43C2-99AE-46C1CF751C01"; + }; + ["name"] = "received"; + }; + ["with"] = "rishi@rishighan.com"; + ["attr"] = { + ["to"] = "rishi@rishighan.com/iPhone"; + ["stamp"] = "2026-02-23T18:11:58.302711Z"; + ["from"] = "rishi@rishighan.com/dsaQGeDU2YJ_"; + ["xml:lang"] = "en"; + }; + ["name"] = "message"; + ["key"] = "019c8bb3-6ede-7078-b951-8a261aa2afa5"; + ["when"] = 1771870318.30271125; +}); +item({ + { + "gajbi"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:sid:0"; + ["id"] = "e3d850a5-0f58-4e92-b01f-01a808172266"; + }; + ["name"] = "origin-id"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + ["name"] = "markable"; + }; + ["with"] = "rishi@rishighan.com"; + ["attr"] = { + ["id"] = "e3d850a5-0f58-4e92-b01f-01a808172266"; + ["stamp"] = "2026-02-23T18:19:08.754055Z"; + ["type"] = "chat"; + ["from"] = "rishi@rishighan.com/gajim.DYYHJH1C"; + ["xml:lang"] = "en-US"; + }; + ["name"] = "message"; + ["key"] = "019c8bba-0052-7c34-a8f5-851fe0513985"; + ["when"] = 1771870748.7540555; +}); +item({ + { + "gajbi"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:sid:0"; + ["id"] = "e3d850a5-0f58-4e92-b01f-01a808172266"; + }; + ["name"] = "origin-id"; + }; + { + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + ["name"] = "markable"; + }; + ["with"] = "rishi@rishighan.com"; + ["attr"] = { + ["id"] = "e3d850a5-0f58-4e92-b01f-01a808172266"; + ["stamp"] = "2026-02-23T18:19:08.758774Z"; + ["to"] = "rishi@rishighan.com"; + ["type"] = "chat"; + ["from"] = "rishi@rishighan.com/gajim.DYYHJH1C"; + ["xml:lang"] = "en-US"; + }; + ["name"] = "message"; + ["key"] = "019c8bba-0056-7e2d-96d4-a803387fdaa8"; + ["when"] = 1771870748.75877452; +}); +item({ + { + "https://xmpp.rishighan.com/file_share/019c8bfb-cca4-73db-a38b-6c8350821c67/IMG_1901.jpg"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "b4dea741-abf2-4932-a577-32267d28f690"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + { + "https://xmpp.rishighan.com/file_share/019c8bfb-cca4-73db-a38b-6c8350821c67/IMG_1901.jpg"; + ["name"] = "url"; + ["attr"] = { + ["xmlns"] = "jabber:x:oob"; + }; + }; + ["name"] = "x"; + ["attr"] = { + ["xmlns"] = "jabber:x:oob"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; + ["key"] = "019c8bfb-d03f-7d3e-b229-9f9c7dcd9e24"; + ["attr"] = { + ["id"] = "b4dea741-abf2-4932-a577-32267d28f690"; + ["type"] = "chat"; + ["from"] = "rishi@rishighan.com/gajim.DYYHJH1C"; + ["xml:lang"] = "en-US"; + ["stamp"] = "2026-02-23T19:31:01.804253Z"; + }; + ["when"] = 1771875061.80425382; +}); +item({ + { + "https://xmpp.rishighan.com/file_share/019c8bfb-cca4-73db-a38b-6c8350821c67/IMG_1901.jpg"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "b4dea741-abf2-4932-a577-32267d28f690"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + { + "https://xmpp.rishighan.com/file_share/019c8bfb-cca4-73db-a38b-6c8350821c67/IMG_1901.jpg"; + ["name"] = "url"; + ["attr"] = { + ["xmlns"] = "jabber:x:oob"; + }; + }; + ["name"] = "x"; + ["attr"] = { + ["xmlns"] = "jabber:x:oob"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; + ["key"] = "019c8bfb-d04f-73fe-9212-d1c5fc60a899"; + ["attr"] = { + ["id"] = "b4dea741-abf2-4932-a577-32267d28f690"; + ["type"] = "chat"; + ["from"] = "rishi@rishighan.com/gajim.DYYHJH1C"; + ["xml:lang"] = "en-US"; + ["stamp"] = "2026-02-23T19:31:01.839775Z"; + }; + ["when"] = 1771875061.83977532; +}); +item({ + { + "https://xmpp.rishighan.com/file_share/019c8bfd-f3d6-709f-862f-67483e69d5c3/definite.png"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "87f53cb0-ac48-489d-9313-6fc4cc116a68"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + { + "https://xmpp.rishighan.com/file_share/019c8bfd-f3d6-709f-862f-67483e69d5c3/definite.png"; + ["name"] = "url"; + ["attr"] = { + ["xmlns"] = "jabber:x:oob"; + }; + }; + ["name"] = "x"; + ["attr"] = { + ["xmlns"] = "jabber:x:oob"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; + ["key"] = "019c8bfd-f469-78ab-a778-991f78c7a552"; + ["attr"] = { + ["id"] = "87f53cb0-ac48-489d-9313-6fc4cc116a68"; + ["type"] = "chat"; + ["from"] = "rishi@rishighan.com/gajim.DYYHJH1C"; + ["xml:lang"] = "en-US"; + ["stamp"] = "2026-02-23T19:33:22.153187Z"; + }; + ["when"] = 1771875202.15318727; +}); +item({ + { + "https://xmpp.rishighan.com/file_share/019c8bfd-f3d6-709f-862f-67483e69d5c3/definite.png"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "87f53cb0-ac48-489d-9313-6fc4cc116a68"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + { + "https://xmpp.rishighan.com/file_share/019c8bfd-f3d6-709f-862f-67483e69d5c3/definite.png"; + ["name"] = "url"; + ["attr"] = { + ["xmlns"] = "jabber:x:oob"; + }; + }; + ["name"] = "x"; + ["attr"] = { + ["xmlns"] = "jabber:x:oob"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["name"] = "message"; + ["with"] = "rishi@rishighan.com"; + ["key"] = "019c8bfd-f470-758b-84ad-760849b4f698"; + ["attr"] = { + ["id"] = "87f53cb0-ac48-489d-9313-6fc4cc116a68"; + ["stamp"] = "2026-02-23T19:33:22.160285Z"; + ["type"] = "chat"; + ["from"] = "rishi@rishighan.com/gajim.DYYHJH1C"; + ["xml:lang"] = "en-US"; + ["to"] = "rishi@rishighan.com"; + }; + ["when"] = 1771875202.16028595; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "3fb216bb-deeb-46bb-9714-91a136eb36d1"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "retract"; + ["attr"] = { + ["id"] = "87f53cb0-ac48-489d-9313-6fc4cc116a68"; + ["xmlns"] = "urn:xmpp:message-retract:1"; + }; + }; + { + ["name"] = "fallback"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:fallback:0"; + ["for"] = "urn:xmpp:message-retract:1"; + }; + }; + { + "/me retracted a previous message, but it\'s unsupported by your client."; + ["name"] = "body"; + ["attr"] = {}; + }; + ["name"] = "message"; + ["key"] = "019c8c01-07ab-7f5b-9bdc-f0a41f6f6005"; + ["attr"] = { + ["type"] = "chat"; + ["xml:lang"] = "en-US"; + ["stamp"] = "2026-02-23T19:36:43.673185Z"; + ["from"] = "rishi@rishighan.com/gajim.DYYHJH1C"; + ["id"] = "3fb216bb-deeb-46bb-9714-91a136eb36d1"; + }; + ["when"] = 1771875403.67318511; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "3fb216bb-deeb-46bb-9714-91a136eb36d1"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "retract"; + ["attr"] = { + ["id"] = "87f53cb0-ac48-489d-9313-6fc4cc116a68"; + ["xmlns"] = "urn:xmpp:message-retract:1"; + }; + }; + { + ["name"] = "fallback"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:fallback:0"; + ["for"] = "urn:xmpp:message-retract:1"; + }; + }; + { + "/me retracted a previous message, but it\'s unsupported by your client."; + ["name"] = "body"; + ["attr"] = {}; + }; + ["name"] = "message"; + ["key"] = "019c8c01-07be-7980-9edd-5a96625fca96"; + ["attr"] = { + ["type"] = "chat"; + ["xml:lang"] = "en-US"; + ["stamp"] = "2026-02-23T19:36:43.710827Z"; + ["from"] = "rishi@rishighan.com/gajim.DYYHJH1C"; + ["id"] = "3fb216bb-deeb-46bb-9714-91a136eb36d1"; + }; + ["when"] = 1771875403.71082759; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "0d45772a-842f-4667-b52b-a8899766b78a"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "retract"; + ["attr"] = { + ["id"] = "b4dea741-abf2-4932-a577-32267d28f690"; + ["xmlns"] = "urn:xmpp:message-retract:1"; + }; + }; + { + ["name"] = "fallback"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:fallback:0"; + ["for"] = "urn:xmpp:message-retract:1"; + }; + }; + { + "/me retracted a previous message, but it\'s unsupported by your client."; + ["name"] = "body"; + ["attr"] = {}; + }; + ["name"] = "message"; + ["key"] = "019c8c01-1476-77ae-a2bb-79b80c84f440"; + ["attr"] = { + ["type"] = "chat"; + ["xml:lang"] = "en-US"; + ["stamp"] = "2026-02-23T19:36:46.966094Z"; + ["from"] = "rishi@rishighan.com/gajim.DYYHJH1C"; + ["id"] = "0d45772a-842f-4667-b52b-a8899766b78a"; + }; + ["when"] = 1771875406.96609402; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + ["name"] = "origin-id"; + ["attr"] = { + ["id"] = "0d45772a-842f-4667-b52b-a8899766b78a"; + ["xmlns"] = "urn:xmpp:sid:0"; + }; + }; + { + ["name"] = "retract"; + ["attr"] = { + ["id"] = "b4dea741-abf2-4932-a577-32267d28f690"; + ["xmlns"] = "urn:xmpp:message-retract:1"; + }; + }; + { + ["name"] = "fallback"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:fallback:0"; + ["for"] = "urn:xmpp:message-retract:1"; + }; + }; + { + "/me retracted a previous message, but it\'s unsupported by your client."; + ["name"] = "body"; + ["attr"] = {}; + }; + ["name"] = "message"; + ["key"] = "019c8c01-147a-7e9a-96bc-457ab0c169f9"; + ["attr"] = { + ["type"] = "chat"; + ["xml:lang"] = "en-US"; + ["stamp"] = "2026-02-23T19:36:46.970013Z"; + ["from"] = "rishi@rishighan.com/gajim.DYYHJH1C"; + ["id"] = "0d45772a-842f-4667-b52b-a8899766b78a"; + }; + ["when"] = 1771875406.97001386; + ["with"] = "rishi@rishighan.com"; +}); +item({ + { + "https://xmpp.rishighan.com/file_share/019c8c04-6935-78f9-b14b-adbf9a68d6f4/IMG_1902.jpg"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "origin-id"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:sid:0"; + ["id"] = "bbaefc2b-9d94-4c29-9e7c-07421586f4d7"; + }; + }; + { + { + "https://xmpp.rishighan.com/file_share/019c8c04-6935-78f9-b14b-adbf9a68d6f4/IMG_1902.jpg"; + ["name"] = "url"; + ["attr"] = { + ["xmlns"] = "jabber:x:oob"; + }; + }; + ["name"] = "x"; + ["attr"] = { + ["xmlns"] = "jabber:x:oob"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["key"] = "019c8c04-6bfb-7adf-8fd2-f95b7558bcf6"; + ["with"] = "rishi@rishighan.com"; + ["when"] = 1771875625.96074438; + ["attr"] = { + ["from"] = "rishi@rishighan.com/gajim.DYYHJH1C"; + ["stamp"] = "2026-02-23T19:40:25.960744Z"; + ["id"] = "bbaefc2b-9d94-4c29-9e7c-07421586f4d7"; + ["type"] = "chat"; + ["xml:lang"] = "en-US"; + }; + ["name"] = "message"; +}); +item({ + { + "https://xmpp.rishighan.com/file_share/019c8c04-6935-78f9-b14b-adbf9a68d6f4/IMG_1902.jpg"; + ["name"] = "body"; + ["attr"] = {}; + }; + { + ["name"] = "origin-id"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:sid:0"; + ["id"] = "bbaefc2b-9d94-4c29-9e7c-07421586f4d7"; + }; + }; + { + { + "https://xmpp.rishighan.com/file_share/019c8c04-6935-78f9-b14b-adbf9a68d6f4/IMG_1902.jpg"; + ["name"] = "url"; + ["attr"] = { + ["xmlns"] = "jabber:x:oob"; + }; + }; + ["name"] = "x"; + ["attr"] = { + ["xmlns"] = "jabber:x:oob"; + }; + }; + { + ["name"] = "markable"; + ["attr"] = { + ["xmlns"] = "urn:xmpp:chat-markers:0"; + }; + }; + ["key"] = "019c8c04-6c0f-7b07-9114-4bd81a392d2b"; + ["with"] = "rishi@rishighan.com"; + ["when"] = 1771875625.99962091; + ["attr"] = { + ["from"] = "rishi@rishighan.com/gajim.DYYHJH1C"; + ["stamp"] = "2026-02-23T19:40:25.999620Z"; + ["id"] = "bbaefc2b-9d94-4c29-9e7c-07421586f4d7"; + ["type"] = "chat"; + ["xml:lang"] = "en-US"; + }; + ["name"] = "message"; +}); diff --git a/stacks/productivity/data/rishighan%2ecom/cloud_notify/rishi.dat b/stacks/productivity/data/rishighan%2ecom/cloud_notify/rishi.dat index 25c16ec..9e937ce 100644 --- a/stacks/productivity/data/rishighan%2ecom/cloud_notify/rishi.dat +++ b/stacks/productivity/data/rishighan%2ecom/cloud_notify/rishi.dat @@ -1,52 +1,52 @@ return { - ["push.tigase.im<01#64D4817BB5106635AAC74FD81674EBC3863DC2DB3368551B6D84C94B3E4E0A06"] = { - ["jid"] = "push.tigase.im"; - ["language"] = "en"; - ["node"] = "01#64D4817BB5106635AAC74FD81674EBC3863DC2DB3368551B6D84C94B3E4E0A06"; - ["resource"] = "iPhone"; - ["timestamp"] = 1771832997; - }; ["eu.prod.push.monal-im.org