/// Returns the current timestamp in seconds.
////// # Panics
////// This function should never panic unless the current timestamp from the
/// time library is negative, which should never happen.
#[must_use]pubfnnow()->u64{u64::try_from(chrono::prelude::Utc::now().timestamp()).expect("timestamp should be positive")}