So looks like @dhof created a contract 5 days ago with some cryptic messages. Here is the contract:// SPDX-License-Identifier: Unlicense pragma solidity^0.8.7; contract CorruptionsDataChannel { event Message(string indexed message); address public owner; constructor() { owner = msg.sender; } function postMessage(string memory message) public { require(msg.sender == owner, "CorruptionsDataChannel: not owner"); emit Message(message); } } Let’s look at some of these messages:This is the visible ...