2023-09-29 12:56:26 -05:00
<!DOCTYPE html>
< html lang = "en-US" >
< head >
< meta http-equiv = "Content-Type" content = "text/html;charset=UTF-8" >
< meta http-equiv = "X-UA-Compatible" content = "IE=edge" >
2024-05-01 00:30:11 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
2023-09-29 12:56:26 -05:00
< meta name = "pinterest" content = "nopin" / >
< meta name = "pinterest" content = "nohover" / >
< meta name = "3778517eb4810dfb5d143ed8f1b359b3b5a82923" content = "0f56257c3db4a222e91b11bc6871c4df2e263b28" / >
2025-06-18 00:43:35 +00:00
< link rel = "apple-touch-icon" sizes = "57x57" href = "https://groups.io/orgimg/org.1/favicons/apple-icon-57x57.png?v=1411358049715440694" >
< link rel = "apple-touch-icon" sizes = "60x60" href = "https://groups.io/orgimg/org.1/favicons/apple-icon-60x60.png?v=1411358049715440694" >
< link rel = "apple-touch-icon" sizes = "72x72" href = "https://groups.io/orgimg/org.1/favicons/apple-icon-72x72.png?v=1411358049715440694" >
< link rel = "apple-touch-icon" sizes = "76x76" href = "https://groups.io/orgimg/org.1/favicons/apple-icon-76x76.png?v=1411358049715440694" >
< link rel = "apple-touch-icon" sizes = "114x114" href = "https://groups.io/orgimg/org.1/favicons/apple-icon-114x114.png?v=1411358049715440694" >
< link rel = "apple-touch-icon" sizes = "120x120" href = "https://groups.io/orgimg/org.1/favicons/apple-icon-120x120.png?v=1411358049715440694" >
< link rel = "apple-touch-icon" sizes = "144x144" href = "https://groups.io/orgimg/org.1/favicons/apple-icon-144x144.png?v=1411358049715440694" >
< link rel = "apple-touch-icon" sizes = "152x152" href = "https://groups.io/orgimg/org.1/favicons/apple-icon-152x152.png?v=1411358049715440694" >
< link rel = "apple-touch-icon" sizes = "180x180" href = "https://groups.io/orgimg/org.1/favicons/apple-icon-180x180.png?v=1411358049715440694" >
< link rel = "icon" type = "image/png" sizes = "192x192" href = "../../../../orgimg/org.1/favicons/android-icon-192x192.png%3Fv=1411358049715440694" >
< link rel = "icon" type = "image/png" sizes = "32x32" href = "../../../../orgimg/org.1/favicons/favicon-32x32.png%3Fv=1411358049715440694" >
< link rel = "icon" type = "image/png" sizes = "96x96" href = "../../../../orgimg/org.1/favicons/favicon-96x96.png%3Fv=1411358049715440694" >
< link rel = "icon" type = "image/png" sizes = "16x16" href = "../../../../orgimg/org.1/favicons/favicon-16x16.png%3Fv=1411358049715440694" >
< link rel = "manifest" href = "../../../../orgimg/org.1/favicons/manifest.json%3Fv=1411358049715440694" >
2023-09-29 12:56:26 -05:00
< meta name = "msapplication-TileColor" content = "#ffffff" >
< meta name = "msapplication-TileImage" content = "/ms-icon-144x144.png" >
2023-10-04 00:26:14 +00:00
< script >
/* stubs */
2024-08-28 00:32:18 +00:00
const hapticsImpactHeavy = async () => {
};
const hapticsImpactMedium = async () => {
};
const hapticsImpactLight = async () => {
};
const hapticsVibrate = async () => {
};
const hapticsSelectionStart = async () => {
};
const hapticsSelectionChanged = async () => {
};
const hapticsSelectionEnd = async () => {
};
2023-10-04 00:26:14 +00:00
< / script >
2023-09-29 12:56:26 -05:00
< script >
function setPullToRefresh() {}
function gotoURL(inurl) {
window.location.href = inurl;
return;
}
2024-05-01 00:30:11 +00:00
function contentLoaded(isHTMX, f, caller = "") {
console.log("contentLoaded: " + isHTMX + " " + caller);
2023-09-29 12:56:26 -05:00
if (isHTMX == true) {
document.body.addEventListener('htmx:afterSettle', f, {once: true});
} else {
if (document.readyState !== 'loading') {
console.log('document is already ready, just execute code here');
f();
} else {
console.log('document was not ready, place code here');
document.addEventListener('DOMContentLoaded', f, {once: true});
}
}
}
2024-06-12 00:30:01 +00:00
function HideAppSidebarOnKeyboard() {
2024-06-19 00:30:22 +00:00
console.log("In HideAppSidebarOnKeyboard");
2024-06-12 00:30:01 +00:00
}
2023-09-29 12:56:26 -05:00
// stub
function logError(data, url, linenumber) {
console.log(data)
return;
}
var pushSubToken;
var ignoreErrors = false;
var lastError = "";
window.onerror = function(errorMessage, errorUrl, errorLine, errorColumn, errorObj) {
let column;
let stack;
if (console & & console.log) {
console.log("msg:", errorMessage);
console.log("url:", errorUrl);
console.log("line:", errorLine);
if (errorColumn !== undefined & & errorObj != null) {
console.log("column:", errorColumn);
column = errorColumn;
}
if (errorObj !== undefined & & errorObj != null) {
console.log("stack:", errorObj.stack);
stack = errorObj.stack;
}
2025-07-09 00:45:16 +00:00
console.log("client_id:", "web.web09.566624.1752021882522579531");
2023-09-29 12:56:26 -05:00
console.log("last_error:", lastError);
2024-05-01 00:30:11 +00:00
console.log("stack:", stack);
2023-09-29 12:56:26 -05:00
}
if (errorUrl == "" || errorUrl === null) {
errorUrl = window.location.href;
}
if (errorMessage.includes("SecurityError:") == true) {
ignoreErrors = true;
}
if (ignoreErrors == true) {
console.log("cookies, disabled, ignoring");
lastError = errorMessage;
return;
}
jQuery.ajax({
type: 'POST',
url: '/jsclienterror',
data: {
msg: errorMessage,
url: errorUrl,
line: errorLine,
column: column,
stack: stack,
last_error: lastError,
2025-07-09 00:45:16 +00:00
client_id: "web.web09.566624.1752021882522579531"
2023-09-29 12:56:26 -05:00
},
success: function() {
if (console & & console.log) {
console.log('JS error report successful.');
}
lastError = errorMessage;
},
error: function() {
if (console & & console.error) {
console.error('JS error report submission failed!');
}
lastError = errorMessage;
}
});
return true;
}
< / script >
2024-05-01 00:30:11 +00:00
< script src = "../../../../tinymce-5.10.9/tinymce.min.js" > < / script >
2023-09-29 12:56:26 -05:00
< script src = "../../../../js/browser-image-compression-2.0.2.min.js" > < / script >
2025-06-25 00:45:41 +00:00
< link href = "../../../../css/application-dcd7fd9c85ed35c33722b9e5c5e2b0cb.css" rel = "stylesheet" id = "groupsio-css" >
2025-06-11 00:43:20 +00:00
< script src = "../../../../js/application-7800e976860b357df405a3ea22aa72b1.js" id = "groupsio-js" > < / script >
2023-09-29 12:56:26 -05:00
< script src = "../../../../js/run_prettify.js" > < / script >
2025-02-12 00:36:20 +00:00
< title > MTFHRT@groups.io | Wiki< / title >
2023-09-29 12:56:26 -05:00
2024-05-01 00:30:11 +00:00
< script >
htmx.config.scrollBehavior = "instant";
htmx.config.historyCacheSize = 0;
htmx.config.defaultSettleDelay = 0;
console.log("FULL PAGE LOAD");
< / script >
2023-09-29 12:56:26 -05:00
< / head >
2025-07-09 00:45:16 +00:00
< body id = "body" class = "" hx-headers = '{"Accept-Version": "22d5591b00be3131b15abf459f7ac6dc9a3fa0b9"}' hx-ext = "preload" hx-boost = "false" >
2024-05-01 00:30:11 +00:00
< script >
if (window.matchMedia & & window.matchMedia('(prefers-color-scheme: dark)').matches) {
document.body.classList.add('dark-mode');
}
< / script >
2023-09-29 12:56:26 -05:00
2024-05-01 00:30:11 +00:00
< div class = "navbar navbar-head navbar-fixed-top" role = "navigation" id = "headerbar" >
2023-09-29 12:56:26 -05:00
< div class = "container-fluid" style = "padding-left:0px;" >
2024-05-08 00:23:09 +00:00
< a href = "https://groups.io" class = "navbar-left" hx-boost = "false" hx-disinherit = "*" >
2025-06-18 00:43:35 +00:00
< img src = "../../../../orgimg/org.1/mainlogo.png%3Fv=1411358049715440694" height = "50" alt = "Groups.io" >
2023-09-29 12:56:26 -05:00
< / a >
< ul class = "nav navbar-nav hidden-xs" >
< li >
2024-04-24 00:27:49 +00:00
< a href = "https://groups.io/search" >
2023-09-29 12:56:26 -05:00
Find or Create a Group
< / a >
< / li >
< / ul >
< ul class = "nav navbar-nav pull-right visible-xs" style = "margin-top:5px;margin-bottom:5px;" >
< li >
< a href = "history.html#" data-toggle = "modal" data-target = "#mobileAccount" >
< i class = "fa-fw fa fa-bars fa-lg" > < / i >
< / a >
< / li >
< / ul >
< ul class = "nav navbar-nav pull-right hidden-xs" >
< li class = "dropdown" >
< a href = "history.html#" class = "dropdown-toggle" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
< i class = "fa-fw fa-regular fa-globe" > < / i >
2025-03-19 00:39:08 +00:00
English
2023-09-29 12:56:26 -05:00
< b class = "caret" > < / b >
< / a >
< ul class = "dropdown-menu" >
< li >
2025-03-19 00:39:08 +00:00
< a href = "https://groups.io/setlang/ar" >
العربية
2023-09-29 12:56:26 -05:00
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/de" >
2025-03-19 00:39:08 +00:00
Deutsch
< / a >
< / li >
< li >
< a href = "https://groups.io/unsetlang" >
English
2023-09-29 12:56:26 -05:00
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/es" >
2025-03-19 00:39:08 +00:00
Español
2023-09-29 12:56:26 -05:00
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/fr" >
2025-03-19 00:39:08 +00:00
Français
2023-09-29 12:56:26 -05:00
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/it" >
2025-03-19 00:39:08 +00:00
Italiano
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/nl" >
Nederlands
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/pt-br" >
Português do Brasil
2023-09-29 12:56:26 -05:00
< / a >
< / li >
2024-06-12 00:30:01 +00:00
< li >
< a href = "https://groups.io/setlang/pt" >
2025-03-19 00:39:08 +00:00
Português
2024-06-12 00:30:01 +00:00
< / a >
< / li >
2023-09-29 12:56:26 -05:00
< li >
< a href = "https://groups.io/setlang/uk" >
2025-03-19 00:39:08 +00:00
Українська
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/zh-hans" >
简体中文
2023-09-29 12:56:26 -05:00
< / a >
< / li >
< / ul >
< / li >
< li >
< a href = "https://groups.io/helpcenter" target = "_blank" >
Help
< / a >
< / li >
< li >
2024-05-08 00:23:09 +00:00
< a href = "https://groups.io/login" hx-boost = "false" hx-disinherit = "*" >
2023-09-29 12:56:26 -05:00
< i class = "fa fa-sign-in-alt" > < / i >
Log In
< / a >
< / li >
< li >
< a href = "https://groups.io/register" >
< i class = "fa fa-user" > < / i >
Sign Up
< / a >
< / li >
< / ul >
< / div >
< / div >
< div class = "modal fade" id = "mobileAccount" role = "dialog" >
< div class = "modal-dialog" style = "margin-top:50px;" >
< div class = "modal-content" >
< div class = "modal-body" >
< ul class = "list-group noborderlist" >
< li class = "noborderitem list-group-item" >
2024-05-08 00:23:09 +00:00
< a href = "https://groups.io/login" hx-boost = "false" hx-disinherit = "*" >
2023-09-29 12:56:26 -05:00
< i class = "fa fa-sign-in-alt" > < / i >
Log In
< / a >
< / li >
< li class = "noborderitem list-group-item" >
< a href = "https://groups.io/register" >
< i class = "fa fa-user" > < / i >
Sign Up
< / a >
< / li >
< li class = "noborderitem list-group-item" >
< a href = "https://groups.io/helpcenter" target = "_blank" >
2024-05-01 00:30:11 +00:00
< i class = "fa-fw fa fa-question-circle" > < / i >
2023-09-29 12:56:26 -05:00
Help
< / a >
< / li >
< li class = "dropdown noborderitem list-group-item" >
< a href = "history.html#" class = "dropdown-toggle" data-toggle = "dropdown" aria-haspopup = "true" aria-expanded = "false" >
< i class = "fa-fw fa-regular fa-globe" > < / i >
2025-03-19 00:39:08 +00:00
English
2023-09-29 12:56:26 -05:00
< b class = "caret" > < / b >
< / a >
< ul class = "dropdown-menu" >
< li >
2025-03-19 00:39:08 +00:00
< a href = "https://groups.io/setlang/ar" >
العربية
2023-09-29 12:56:26 -05:00
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/de" >
2025-03-19 00:39:08 +00:00
Deutsch
< / a >
< / li >
< li >
< a href = "https://groups.io/unsetlang" >
English
2023-09-29 12:56:26 -05:00
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/es" >
2025-03-19 00:39:08 +00:00
Español
2023-09-29 12:56:26 -05:00
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/fr" >
2025-03-19 00:39:08 +00:00
Français
2023-09-29 12:56:26 -05:00
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/it" >
2025-03-19 00:39:08 +00:00
Italiano
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/nl" >
Nederlands
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/pt-br" >
Português do Brasil
2023-09-29 12:56:26 -05:00
< / a >
< / li >
2024-06-12 00:30:01 +00:00
< li >
< a href = "https://groups.io/setlang/pt" >
2025-03-19 00:39:08 +00:00
Português
2024-06-12 00:30:01 +00:00
< / a >
< / li >
2023-09-29 12:56:26 -05:00
< li >
< a href = "https://groups.io/setlang/uk" >
2025-03-19 00:39:08 +00:00
Українська
< / a >
< / li >
< li >
< a href = "https://groups.io/setlang/zh-hans" >
简体中文
2023-09-29 12:56:26 -05:00
< / a >
< / li >
< / ul >
< / li >
< / ul >
< / div >
< / div >
< / div >
< / div >
2024-05-01 00:30:11 +00:00
< script >
var groupnavigatorData = [
];
< / script >
<!-- Modal Dialog for Autocomplete -->
< div class = "modal fade" id = "groupnavigatorModal" tabindex = "-1" role = "dialog" aria-labelledby = "modalLabel" aria-hidden = "true" >
< div class = "modal-dialog" role = "document" >
< div class = "modal-content" >
< div class = "modal-body" >
< input type = "text" class = "form-control" id = "groupnavigatorInput" placeholder = "Go to group..." style = "margin-bottom:10px" >
< div id = "groupnavigatorContainer" class = "autocompleteResults" style = "max-height:250px; overflow-y: auto;" > < / div >
< div class = "text-center" style = "margin-top:10px; font-size:12px;" > < i class = "fa-sharp fa-arrow-up-arrow-down" > < / i > to navigate < i class = "fa-sharp fa-arrow-turn-down-left" > < / i > to use < strong > esc< / strong > to dismiss< / div >
< / div >
< / div >
< / div >
< / div >
< script >
// Keep track of the currently selected index
var selectedIndex = -1;
// Function to highlight the matched substring
function highlightSubstring(str, substring) {
var index = str.toLowerCase().indexOf(substring.toLowerCase());
if (index !== -1) {
var before = str.substring(0, index);
var middle = str.substring(index, index + substring.length);
var after = str.substring(index + substring.length);
return before + '< span class = "autocomplete-highlight" > ' + middle + '< / span > ' + after;
}
return str;
}
// Function to highlight the selected item and ensure it is visible in the scrollable list
function highlightSelectedItem(modalName) {
var listContainer = document.getElementById(modalName + 'Container');
var items = document.getElementsByClassName(modalName + '-list-item');
Array.from(items).forEach(function(item, idx) {
item.className = idx === selectedIndex ? modalName + '-list-item autocomplete-list-item btn-primary no-hover' : modalName + '-list-item autocomplete-list-item no-hover'; // Apply btn-primary class to the selected item
});
if (items.length > 0 & & selectedIndex >= 0) {
var selectedItem = items[selectedIndex];
var containerTop = listContainer.scrollTop;
var containerBottom = containerTop + listContainer.clientHeight;
var itemTop = selectedItem.offsetTop;
var itemBottom = itemTop + selectedItem.offsetHeight;
const fudge = 59;
if (selectedIndex > 0 & & itemTop > containerBottom) {
// If there are items below the selected item and the selected item is not fully visible, scroll down
listContainer.scrollTop = itemTop - listContainer.clientHeight + items[selectedIndex - 1].offsetHeight;
} else if (selectedIndex < items.length - 1 & & ( itemTop - fudge ) < containerTop ) {
// If there are items above the selected item and the selected item is not fully visible, scroll up
listContainer.scrollTop = itemTop - fudge - items[selectedIndex + 1].offsetHeight;
}
}
}
// function to populate the list based on the input
function populateList(modalName, data) {
var input = document.getElementById(modalName+'Input').value;
var listContainer = document.getElementById(modalName+'Container');
listContainer.innerHTML = '';
data.forEach(function(item) {
if (item.name.toLowerCase().includes(input.toLowerCase())) {
var div = document.createElement('div');
div.innerHTML = highlightSubstring(item.name, input);
div.className = modalName+'-list-item autocomplete-list-item no-hover'; // Apply no-hover class
div.addEventListener('click', function() {
// Navigate to the specified URL when a list item is clicked
window.location.href = item.url;
});
div.addEventListener('mousemove', function() {
// Remove no-hover class from all items when the mouse is moved over any item
console.log("mouse move");
var items = document.getElementsByClassName(modalName+'-list-item');
Array.from(items).forEach(function(item) {
item.classList.remove('no-hover');
});
});
listContainer.appendChild(div);
}
});
highlightSelectedItem(modalName);
}
function InitAutocomplete(modalName, data) {
// Focus the input field when the modal is shown and populate the list
$('#' + modalName + 'Modal').on('shown.bs.modal', function () {
$('#' + modalName + 'Input').focus().val('');
populateList(modalName, data);
selectedIndex = 0;
highlightSelectedItem(modalName);
});
// Event listener for input field typing
document.getElementById(modalName + 'Input').addEventListener('input', function() {
populateList(modalName, data);
selectedIndex = 0;
});
// Event listener for arrow keys and enter key
document.getElementById(modalName + 'Input').addEventListener('keydown', function(event) {
var items = document.getElementsByClassName(modalName + '-list-item');
if (event.key === 'ArrowDown') {
event.preventDefault();
if (selectedIndex < items.length - 1 ) selectedIndex + + ;
highlightSelectedItem(modalName);
} else if (event.key === 'ArrowUp') {
event.preventDefault();
if (selectedIndex > 0) selectedIndex--;
highlightSelectedItem(modalName);
} else if (event.key === 'Enter' & & selectedIndex >= 0 & & selectedIndex < items.length ) {
event.preventDefault();
items[selectedIndex].click();
}
});
}
function showAutocompleteModal(modalName) {
$('#' + modalName + 'Modal').modal('show');
selectedIndex = -1;
}
< / script >
2023-09-29 12:56:26 -05:00
< div id = "content" class = "container-fluid" >
< script >
2024-05-01 00:30:11 +00:00
InitAutocomplete("groupnavigator", groupnavigatorData);
document.body.addEventListener("showReloadPageDialog", function(evt) {
2024-05-22 00:28:41 +00:00
console.log("Forced reload");
location.reload();
2024-05-01 00:30:11 +00:00
});
2024-10-23 00:35:35 +00:00
function ShowBackButton(label) {
var logoElement = document.getElementById("logo");
if (logoElement) {
2024-10-30 00:36:34 +00:00
html = `
< span style = "color:#fff;margin-top:14px;margin-left:12px;float:left !important; height:36px;" >
2024-10-23 00:35:35 +00:00
< a onclick = "goBack()" style = "color:#fff" >
< i class = "fa-fw fa-solid fa-chevron-left fa-lg" > < / i >
2024-10-30 00:36:34 +00:00
< / a > < / span > `;
if (label != "") {
html += `< div style = "position:absolute;left:50%;transform:translateX(-50%);text-align:center;color:#ecf0f1;margin-top:5px;" > < h4 > ` + label + `< / h4 > < / div > `;
}
logoElement.innerHTML = html;
2024-10-23 00:35:35 +00:00
}
}
function HideBackButton() {
var logoElement = document.getElementById("logo");
if (logoElement) {
logoElement.innerHTML = `
< a href = "https://groups.io" class = "navbar-left" >
2025-06-18 00:43:35 +00:00
< img src = "../../../../orgimg/org.1/mainlogo.png%3Fv=1411358049715440694" height = "50" alt = "Groups.io" >
2024-10-23 00:35:35 +00:00
< / a > `;
}
}
function goBack() {
history.back();
}
2023-09-29 12:56:26 -05:00
// submitEvent acts like .submit(), except it is compatible with the app, by using events instead.
function submitEvent(ele) {
console.log("in submitEvent");
2024-05-01 00:30:11 +00:00
if (ele.startsWith('#')) {
ele = ele.slice(1);
}
document.getElementById(ele).submit();
return;
/*
2023-09-29 12:56:26 -05:00
const theEvent = new CustomEvent('submit', {
bubbles: true,
cancelable: true
});
if (typeof ele === 'string' || ele instanceof String) {
if (ele.startsWith("#") == true) {
ele = ele.slice(1);
}
if (document.getElementById(ele).dispatchEvent(theEvent) == true) {
// if not cancelled, do normal submit
console.log("calling submit");
document.getElementById(ele).submit();
}
return;
}
// assume ele is the element
if (ele.dispatchEvent(theEvent) == true) {
// if not cancelled, do normal submit
console.log("calling submit");
ele.submit();
}
2024-05-01 00:30:11 +00:00
*/
2023-09-29 12:56:26 -05:00
}
// gioDestroy is a convenience function for destroy callbacks
function gioDestroy(eventCB) {
2024-05-01 00:30:11 +00:00
let internalGioDestroy = function(evt) {
// do not activate on infinite scroll events
if (evt.detail.target !== undefined & & evt.detail.target.id != "maincontent-refresh") {
console.log("Ignoring infinite scroll event");
return;
}
console.log("Calling destroy callback");
eventCB(evt);
}
document.body.addEventListener("htmx:beforeSwap", internalGioDestroy, {once: true});
document.body.addEventListener("htmx:historyCacheMiss", internalGioDestroy, {once: true});
}
var drawerCloseFunc = function(evt) {
console.log("in drawerCloseFunc");
// Find all elements with the class 'drawer'
var drawers = document.querySelectorAll('.drawer');
// Iterate over each element and call closeDrawer() on each
drawers.forEach(function(obj) {
drawerObj.closeDrawer(obj);
2023-09-29 12:56:26 -05:00
});
2024-05-01 00:30:11 +00:00
$('.modal').modal('hide');
2023-09-29 12:56:26 -05:00
}
2024-05-01 00:30:11 +00:00
document.body.addEventListener('htmx:beforeSwap', drawerCloseFunc);
document.body.addEventListener('htmx:historyCacheMiss', drawerCloseFunc);
var keydownFunc = function(event) {
var tagName = event.target.tagName.toLowerCase();
if (tagName === 'input' || tagName === 'textarea' || event.target.isContentEditable) {
if (event.key === 'Escape') {
event.target.blur();
}
return;
2023-09-29 12:56:26 -05:00
}
2024-05-01 00:30:11 +00:00
// check if the viewimages viewer is up
let element = document.getElementById('overlay');
if (element & & element.classList.contains('visible')) {
return;
}
console.log("HERE: " + event.key + " " + event.ctrlKey + " " + event.shiftKey + " " + event.metaKey);
if (event.ctrlKey & & event.shiftKey & & (event.key === '?' || event.key === '/')) {
event.preventDefault(); // Prevent the default action
// Show the modal dialog for keyboard shortcuts
$('#shortcutModal').modal('show');
return;
}
$('#shortcutModal').modal('hide');
if (event.key.toLowerCase() === 'g') {
2024-05-15 00:28:33 +00:00
// For Windows and Linux
if (event.ctrlKey) {
event.preventDefault();
showAutocompleteModal("groupnavigator");
return;
2024-05-01 00:30:11 +00:00
}
}
// Check if the pressed key is '/'
if ((event.key === 'f' || event.key === 'F') & & event.shiftKey) {
if (navigator.platform.toUpperCase().indexOf('MAC') >= 0) {
if (event.metaKey) {
event.preventDefault(); // Prevent the default action
// Focus on the search box
let box = document.getElementById('searchbox')
if (box != null) {
document.getElementById('searchbox').focus();
}
}
} else {
// For Windows and Linux
if (event.ctrlKey) {
event.preventDefault(); // Prevent the default action
// Focus on the search box
let box = document.getElementById('searchbox')
if (box != null) {
document.getElementById('searchbox').focus();
}
}
}
}
}
document.addEventListener('keydown', keydownFunc);
var removeDrawerCloseFunc = function(evt) {
document.body.removeEventListener('htmx:beforeSwap', drawerCloseFunc);
document.body.removeEventListener('htmx:historyCacheMiss', drawerCloseFunc);
document.removeEventListener('keydown', keydownFunc);
}
document.body.addEventListener("htmx:historyCacheMiss", removeDrawerCloseFunc, {once: true});
< / script >
<!-- Modal Dialog for Keyboard Shortcuts -->
< div class = "modal fade" id = "shortcutModal" tabindex = "-1" role = "dialog" aria-labelledby = "myModalLabel" >
< div class = "modal-dialog" role = "document" >
< div class = "modal-content" >
< div class = "modal-header" >
< h4 class = "modal-title" id = "myModalLabel" > Keyboard Shortcuts< / h4 >
< / div >
< div class = "modal-body" >
< div class = "row" >
< div class = "col-xs-3 text-right" > < strong > ctrl< / strong > + < strong > shift< / strong > + < strong > ?< / strong > :< / div >
< div class = "col-xs-9" style = "margin-left: -23px;" > Show all keyboard shortcuts< / div >
< / div >
< div class = "row" >
2024-05-15 00:28:33 +00:00
< div class = "col-xs-3 text-right" > < strong > ctrl< / strong > + < strong > g< / strong > :< / div >
< div class = "col-xs-9" style = "margin-left: -23px;" > Navigate to a group< / div >
2024-05-01 00:30:11 +00:00
< / div >
< div class = "row" >
2024-05-15 00:28:33 +00:00
< div class = "col-xs-3 text-right" > < strong class = "ctrlmeta" > ctrl< / strong > + < strong > shift< / strong > + < strong > f< / strong > :< / div >
< div class = "col-xs-9" style = "margin-left: -23px;" > Find< / div >
2024-05-01 00:30:11 +00:00
< / div >
< div class = "row" >
< div class = "col-xs-3 text-right" > < strong class = "ctrlmeta" > ctrl< / strong > + < strong > /< / strong > :< / div >
< div class = "col-xs-9" style = "margin-left: -23px;" > Quick actions< / div >
< / div >
< / div >
< div class = "text-center" style = "margin-top:10px; margin-bottom:10px; font-size:12px;" > < strong > esc< / strong > to dismiss< / div >
< / div >
< / div >
< / div >
2023-09-29 12:56:26 -05:00
2024-09-04 00:33:27 +00:00
< div id = "mainrow" class = "row" hx-boost = "true" hx-target = "#maincontent-refresh" hx-push-url = "true" hx-history = "false" hx-on::after-request = "document.getElementById('maincontent').scrollTo({top: 0, behavior: 'instant'})" >
2024-05-01 00:30:11 +00:00
< div id = "groupsidebar" class = "scrollbar hidden-print" >
< div class = "scrollbar-content" >
< div id = "accordion" role = "tablist" aria-multiselectable = "true" style = "margin-bottom:20px;" >
2024-05-08 00:23:09 +00:00
< div class = "list-group noborderlist" style = "border:0;margin-bottom:0px" >
2024-05-01 00:30:11 +00:00
2024-10-30 00:36:34 +00:00
< a title = "Group Home" href = "https://groups.io/g/MTFHRT" class = "list-group-item sidebar-item" >
2023-09-29 12:56:26 -05:00
< i class = "fa-fw fa fa-home fa-lg" > < / i >
Home
< / a >
2024-05-01 00:30:11 +00:00
2023-09-29 12:56:26 -05:00
2024-05-01 00:30:11 +00:00
< a title = "Messages" href = "https://groups.io/g/MTFHRT/topics?sidebar=true" id = "sidebar-archives" class = "noborderitem list-group-item sidebar-item sidebar-item-archives" >
2023-09-29 12:56:26 -05:00
< i class = "fa-fw fa fa-comments fa-lg" > < / i >
Messages
2024-05-01 00:30:11 +00:00
< span id = "sidebar-archives-badge" class = "badge" > < / span >
2023-09-29 12:56:26 -05:00
< / a >
2024-05-01 00:30:11 +00:00
2023-09-29 12:56:26 -05:00
2025-03-12 00:38:21 +00:00
2023-09-29 12:56:26 -05:00
2024-05-01 00:30:11 +00:00
< a title = "Hashtags" href = "https://groups.io/g/MTFHRT/hashtags" id = "sidebar-hashtags" class = "noborderitem list-group-item sidebar-item sidebar-item-hashtags" >
2023-09-29 12:56:26 -05:00
< i class = "fa-fw fa fa-hashtag fa-lg" > < / i >
Hashtags
2024-05-01 00:30:11 +00:00
< span id = "sidebar-hashtags-badge" class = "badge" > < / span >
2023-09-29 12:56:26 -05:00
< / a >
2024-05-01 00:30:11 +00:00
2023-09-29 12:56:26 -05:00
2024-05-01 00:30:11 +00:00
< a title = "Wiki" href = "https://groups.io/g/MTFHRT/wiki" id = "sidebar-wiki" class = "noborderitem list-group-item sidebar-item sidebar-item-wiki active" >
2023-09-29 12:56:26 -05:00
< i class = "fa-fw fa fa-book fa-lg" > < / i >
Wiki
2024-05-01 00:30:11 +00:00
< span id = "sidebar-wiki-badge" class = "badge" > < / span >
2023-09-29 12:56:26 -05:00
< / a >
2024-05-01 00:30:11 +00:00
< / div >
< / div >
< div class = "text-center" style = "font-size:13px;margin-bottom:30px" >
< div style = "padding-bottom:10px;" >
< strong > ctrl< / strong > + < strong > shift< / strong > + < strong > ?< / strong > for shortcuts
< / div >
< div style = "padding-bottom:5px;" >
< a href = "https://groups.io/static/about" >
About
< / a > ·
< a href = "https://groups.io/static/features" >
Features
< / a > ·
< a href = "https://groups.io/static/pricing" >
Pricing
< / a >
< / div >
< div style = "padding-bottom:5px;" >
2025-07-09 00:45:16 +00:00
< a href = "https://groups.io/home" >
Home
< / a > ·
2025-04-23 00:40:35 +00:00
< a rel = "nofollow" href = "https://groups.io/changelog" >
Changelog
2024-05-01 00:30:11 +00:00
< / a > ·
< a href = "https://groups.io/static/tos" >
Terms
2025-07-09 00:45:16 +00:00
< / a >
< / div >
< div style = "padding-bottom:5px;" >
2024-05-01 00:30:11 +00:00
< a href = "https://groups.io/helpcenter" target = "_blank" >
Help
< / a >
< / div >
< div style = "padding-bottom:5px;" >
2025-01-01 00:40:43 +00:00
© 2025 Groups.io
2024-05-01 00:30:11 +00:00
< / div >
< / div >
2023-09-29 12:56:26 -05:00
< / div >
< / div >
2024-05-01 00:30:11 +00:00
< div id = "maincontent" class = "groupmaincontent" >
2024-05-08 00:23:09 +00:00
< div id = "maincontent-refresh" >
2024-05-01 00:30:11 +00:00
< div id = "maincontent-column" class = "col-xs-12 maincontent-column" >
2023-09-29 12:56:26 -05:00
< div id = "alertdiv" > < / div >
< div class = "noticetemplate template" >
< div class = "alert alert-success alert-dismissible" role = "alert" >
< button type = "button" class = "close" data-dismiss = "alert" aria-label = "Close" >
< span aria-hidden = "true" >
×
< / span >
< / button >
2024-09-04 00:33:27 +00:00
< span class = "flashmsg" > < / span >
2023-09-29 12:56:26 -05:00
< / div >
< / div >
< div class = "alerttemplate template" >
< div class = "alert alert-danger alert-dismissible" role = "alert" >
< button type = "button" class = "close" data-dismiss = "alert" aria-label = "Close" >
< span aria-hidden = "true" >
×
< / span >
< / button >
2024-09-04 00:33:27 +00:00
< span class = "flashmsg" > < / span >
2023-09-29 12:56:26 -05:00
< / div >
< / div >
< div class = "alertnoclosetemplate template" >
< div class = "alert alert-danger" role = "alert" >
2024-09-04 00:33:27 +00:00
< span class = "flashmsg" > < / span >
2023-09-29 12:56:26 -05:00
< / div >
< / div >
< script >
function dismiss() {
console.log("dismiss");
$.get( "/dismissalert");
}
var $alerttemplate = $(".alerttemplate");
var $alertnoclosetemplate = $(".alertnoclosetemplate");
var $noticetemplate = $(".noticetemplate");
function createAlert(msg, isError, autoClose, noClose) {
if (isError == false) {
$newPanel = $noticetemplate.clone();
} else {
if (noClose) {
$newPanel = $alertnoclosetemplate.clone();
} else {
$newPanel = $alerttemplate.clone();
}
}
2024-09-04 00:33:27 +00:00
$newPanel.find(".flashmsg").html(msg);
2023-09-29 12:56:26 -05:00
if (autoClose == true) {
$("#alertdiv").append($newPanel.fadeTo(2000, 500).slideUp(500, function(){
$newPanel.slideUp(500);
$newPanel.remove();
}));
} else {
$("#alertdiv").append($newPanel.fadeIn());
}
return $newPanel;
}
< / script >
< ol class = "breadcrumb" >
< li >
< a href = "https://groups.io/g/MTFHRT" >
< i class = "fa fa-home" > < / i >
MTFHRT
< / a >
< / li >
< li >
< a href = "https://groups.io/g/MTFHRT/wiki" >
< i class = "fa fa-book" > < / i >
Wiki
< / a >
< / li >
< li >
< a href = "../29602.html" >
Ultimate DIY
< / a >
< / li >
< li >
History
< / li >
< / ol >
< form method = "POST" class = "form-horizontal" action = "history.html" >
< div class = "panel panel-default" >
< div class = "panel-heading" >
< div class = "pull-right" >
< button class = "btn btn-primary btn-xs" id = "compare" name = "compare" value = "1" >
Compare Revisions
< / button >
< / div >
< h3 class = "panel-title" >
Revisions
< / h3 >
< / div >
< div class = "table-responsive" >
< table class = "table" >
< tbody >
< tr >
< td >
2025-06-25 00:45:41 +00:00
< input type = checkbox name = "dataid" id = "224051" value = "224051" onclick = "countChecked('224051')"
2023-09-29 12:56:26 -05:00
checked>
2025-06-25 00:45:41 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "224051.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated224051" >
$('#timedispwdataupdated224051').replaceWith(DisplayShortTime(1750334273939108927, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "221772" value = "221772" onclick = "countChecked('221772')"
>
2025-05-07 00:41:55 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "221772.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated221772" >
$('#timedispwdataupdated221772').replaceWith(DisplayShortTime(1746350685088405915, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "221157" value = "221157" onclick = "countChecked('221157')"
>
2025-04-30 00:41:32 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "221157.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated221157" >
$('#timedispwdataupdated221157').replaceWith(DisplayShortTime(1745493474054607003, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "220531" value = "220531" onclick = "countChecked('220531')"
>
2025-04-16 00:41:25 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "220531.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated220531" >
$('#timedispwdataupdated220531').replaceWith(DisplayShortTime(1744618565723152864, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "220530" value = "220530" onclick = "countChecked('220530')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "220530.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated220530" >
$('#timedispwdataupdated220530').replaceWith(DisplayShortTime(1744616640369856524, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "218808" value = "218808" onclick = "countChecked('218808')"
>
2025-03-19 00:39:08 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "218808.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated218808" >
$('#timedispwdataupdated218808').replaceWith(DisplayShortTime(1741990516039702614, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "218600" value = "218600" onclick = "countChecked('218600')"
>
2025-03-12 00:38:21 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "218600.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated218600" >
$('#timedispwdataupdated218600').replaceWith(DisplayShortTime(1741631197251933700, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "217714" value = "217714" onclick = "countChecked('217714')"
>
2025-02-26 00:38:16 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "217714.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated217714" >
$('#timedispwdataupdated217714').replaceWith(DisplayShortTime(1740477449118218400, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "217609" value = "217609" onclick = "countChecked('217609')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "217609.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated217609" >
$('#timedispwdataupdated217609').replaceWith(DisplayShortTime(1740301216247224270, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "215338" value = "215338" onclick = "countChecked('215338')"
>
2025-01-08 00:39:17 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "215338.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated215338" >
$('#timedispwdataupdated215338').replaceWith(DisplayShortTime(1735969426376402967, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "214906" value = "214906" onclick = "countChecked('214906')"
>
2024-12-25 00:39:13 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "214906.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated214906" >
$('#timedispwdataupdated214906').replaceWith(DisplayShortTime(1735024238336631727, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "214391" value = "214391" onclick = "countChecked('214391')"
>
2024-12-11 00:39:50 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "214391.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated214391" >
$('#timedispwdataupdated214391').replaceWith(DisplayShortTime(1733808861924012994, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "213963" value = "213963" onclick = "countChecked('213963')"
>
2024-12-04 00:40:14 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "213963.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated213963" >
$('#timedispwdataupdated213963').replaceWith(DisplayShortTime(1732738043512447081, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "213594" value = "213594" onclick = "countChecked('213594')"
>
2024-11-27 00:38:44 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "213594.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated213594" >
$('#timedispwdataupdated213594').replaceWith(DisplayShortTime(1732183743645740446, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "213254" value = "213254" onclick = "countChecked('213254')"
>
2024-11-20 00:37:54 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "213254.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated213254" >
$('#timedispwdataupdated213254').replaceWith(DisplayShortTime(1731484543128541957, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "213231" value = "213231" onclick = "countChecked('213231')"
>
2024-11-13 00:35:45 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "213231.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated213231" >
$('#timedispwdataupdated213231').replaceWith(DisplayShortTime(1731396222614697034, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "213069" value = "213069" onclick = "countChecked('213069')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "213069.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated213069" >
$('#timedispwdataupdated213069').replaceWith(DisplayShortTime(1730956264893222424, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "213045" value = "213045" onclick = "countChecked('213045')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "213045.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated213045" >
$('#timedispwdataupdated213045').replaceWith(DisplayShortTime(1730917389002016778, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "212983" value = "212983" onclick = "countChecked('212983')"
>
2024-11-06 00:35:34 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "212983.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated212983" >
$('#timedispwdataupdated212983').replaceWith(DisplayShortTime(1730816820956044375, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "212920" value = "212920" onclick = "countChecked('212920')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "212920.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated212920" >
$('#timedispwdataupdated212920').replaceWith(DisplayShortTime(1730735236002005338, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "212673" value = "212673" onclick = "countChecked('212673')"
>
2024-10-30 00:36:34 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "212673.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated212673" >
$('#timedispwdataupdated212673').replaceWith(DisplayShortTime(1730211606434198105, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "212667" value = "212667" onclick = "countChecked('212667')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "212667.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated212667" >
$('#timedispwdataupdated212667').replaceWith(DisplayShortTime(1730202475697792002, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "212665" value = "212665" onclick = "countChecked('212665')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "212665.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated212665" >
$('#timedispwdataupdated212665').replaceWith(DisplayShortTime(1730195462072214988, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "212423" value = "212423" onclick = "countChecked('212423')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "212423.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated212423" >
$('#timedispwdataupdated212423').replaceWith(DisplayShortTime(1729781096136777685, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "212420" value = "212420" onclick = "countChecked('212420')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "212420.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated212420" >
$('#timedispwdataupdated212420').replaceWith(DisplayShortTime(1729775685297594256, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "212071" value = "212071" onclick = "countChecked('212071')"
>
2024-10-16 00:35:56 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "212071.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated212071" >
$('#timedispwdataupdated212071').replaceWith(DisplayShortTime(1728711749227773142, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "212040" value = "212040" onclick = "countChecked('212040')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "212040.html" >
Updated page
< / a >
< / td >
< td >
< script id = "timedispwdataupdated212040" >
$('#timedispwdataupdated212040').replaceWith(DisplayShortTime(1728648762889644436, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "211449" value = "211449" onclick = "countChecked('211449')"
>
2024-10-02 00:35:47 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "211449.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-10-02 00:35:47 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated211449" >
$('#timedispwdataupdated211449').replaceWith(DisplayShortTime(1727755768901696420, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "210140" value = "210140" onclick = "countChecked('210140')"
>
2024-09-04 00:33:27 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "210140.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-09-04 00:33:27 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated210140" >
$('#timedispwdataupdated210140').replaceWith(DisplayShortTime(1725262488965961638, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "210138" value = "210138" onclick = "countChecked('210138')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "210138.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-09-04 00:33:27 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated210138" >
$('#timedispwdataupdated210138').replaceWith(DisplayShortTime(1725252590826578231, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "209338" value = "209338" onclick = "countChecked('209338')"
>
2024-08-21 00:31:43 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "209338.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-08-21 00:31:43 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated209338" >
$('#timedispwdataupdated209338').replaceWith(DisplayShortTime(1723959527767955161, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "208683" value = "208683" onclick = "countChecked('208683')"
>
2024-08-07 00:32:00 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "208683.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-08-07 00:32:00 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated208683" >
$('#timedispwdataupdated208683').replaceWith(DisplayShortTime(1722655219424150019, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "208509" value = "208509" onclick = "countChecked('208509')"
>
2024-07-31 00:25:39 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "208509.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-07-31 00:25:39 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated208509" >
$('#timedispwdataupdated208509').replaceWith(DisplayShortTime(1722321360990740241, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "207698" value = "207698" onclick = "countChecked('207698')"
>
2024-07-17 00:31:19 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "207698.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-07-17 00:31:19 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated207698" >
$('#timedispwdataupdated207698').replaceWith(DisplayShortTime(1720704562169126680, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "207510" value = "207510" onclick = "countChecked('207510')"
>
2024-07-10 00:31:04 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "207510.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-07-10 00:31:04 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated207510" >
$('#timedispwdataupdated207510').replaceWith(DisplayShortTime(1720339819863262931, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "206934" value = "206934" onclick = "countChecked('206934')"
>
2024-07-03 00:30:22 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "206934.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-07-03 00:30:22 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated206934" >
$('#timedispwdataupdated206934').replaceWith(DisplayShortTime(1719573384235197247, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "206859" value = "206859" onclick = "countChecked('206859')"
>
2024-06-26 00:29:53 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "206859.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-06-26 00:29:53 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated206859" >
$('#timedispwdataupdated206859').replaceWith(DisplayShortTime(1719346693838306932, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "206447" value = "206447" onclick = "countChecked('206447')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "206447.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-06-26 00:29:53 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated206447" >
$('#timedispwdataupdated206447').replaceWith(DisplayShortTime(1718806491597701560, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "206269" value = "206269" onclick = "countChecked('206269')"
>
2024-06-19 00:30:22 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "206269.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-06-19 00:30:22 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated206269" >
$('#timedispwdataupdated206269').replaceWith(DisplayShortTime(1718335914255308485, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "206112" value = "206112" onclick = "countChecked('206112')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "206112.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-06-19 00:30:22 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated206112" >
$('#timedispwdataupdated206112').replaceWith(DisplayShortTime(1718184028238168617, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "206073" value = "206073" onclick = "countChecked('206073')"
>
2024-06-12 00:30:01 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "206073.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-06-12 00:30:01 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated206073" >
$('#timedispwdataupdated206073').replaceWith(DisplayShortTime(1718133397153230870, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "205727" value = "205727" onclick = "countChecked('205727')"
>
2024-06-05 00:29:15 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "205727.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-06-05 00:29:15 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated205727" >
$('#timedispwdataupdated205727').replaceWith(DisplayShortTime(1717385405187269625, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "205726" value = "205726" onclick = "countChecked('205726')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "205726.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-06-05 00:29:15 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated205726" >
$('#timedispwdataupdated205726').replaceWith(DisplayShortTime(1717384547254940231, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "204789" value = "204789" onclick = "countChecked('204789')"
>
2024-05-15 00:28:33 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "204789.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-05-15 00:28:33 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated204789" >
$('#timedispwdataupdated204789').replaceWith(DisplayShortTime(1715656516278610022, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "204333" value = "204333" onclick = "countChecked('204333')"
>
2024-05-08 00:23:09 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "204333.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-05-08 00:23:09 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated204333" >
$('#timedispwdataupdated204333').replaceWith(DisplayShortTime(1714893986753531122, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "204015" value = "204015" onclick = "countChecked('204015')"
>
2024-05-01 00:30:11 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "204015.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-05-01 00:30:11 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated204015" >
$('#timedispwdataupdated204015').replaceWith(DisplayShortTime(1714463966218418632, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "203230" value = "203230" onclick = "countChecked('203230')"
>
2024-04-17 00:28:36 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "203230.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-04-17 00:28:36 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated203230" >
$('#timedispwdataupdated203230').replaceWith(DisplayShortTime(1713169488362756367, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "202979" value = "202979" onclick = "countChecked('202979')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "202979.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-04-17 00:28:36 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated202979" >
$('#timedispwdataupdated202979').replaceWith(DisplayShortTime(1712843268133403995, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "201237" value = "201237" onclick = "countChecked('201237')"
>
2024-03-13 00:26:29 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "201237.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-03-13 00:26:29 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated201237" >
$('#timedispwdataupdated201237').replaceWith(DisplayShortTime(1709980843642793865, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "201192" value = "201192" onclick = "countChecked('201192')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "201192.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-03-13 00:26:29 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated201192" >
$('#timedispwdataupdated201192').replaceWith(DisplayShortTime(1709850858091911494, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "199960" value = "199960" onclick = "countChecked('199960')"
>
2024-02-21 00:26:33 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "199960.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-02-21 00:26:33 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated199960" >
$('#timedispwdataupdated199960').replaceWith(DisplayShortTime(1708069655381564679, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "199148" value = "199148" onclick = "countChecked('199148')"
>
2024-02-07 00:25:22 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "199148.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-02-07 00:25:22 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated199148" >
$('#timedispwdataupdated199148').replaceWith(DisplayShortTime(1707148851739835864, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "198774" value = "198774" onclick = "countChecked('198774')"
>
2024-01-31 00:27:10 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "198774.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-01-31 00:27:10 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated198774" >
$('#timedispwdataupdated198774').replaceWith(DisplayShortTime(1706526759939859166, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "198075" value = "198075" onclick = "countChecked('198075')"
>
2024-01-17 00:28:47 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "198075.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-01-17 00:28:47 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated198075" >
$('#timedispwdataupdated198075').replaceWith(DisplayShortTime(1705422228217381270, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "198070" value = "198070" onclick = "countChecked('198070')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "198070.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-01-17 00:28:47 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated198070" >
$('#timedispwdataupdated198070').replaceWith(DisplayShortTime(1705391672616294812, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "197997" value = "197997" onclick = "countChecked('197997')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "197997.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-01-17 00:28:47 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated197997" >
$('#timedispwdataupdated197997').replaceWith(DisplayShortTime(1705346206176145014, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "197830" value = "197830" onclick = "countChecked('197830')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "197830.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-01-17 00:28:47 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated197830" >
$('#timedispwdataupdated197830').replaceWith(DisplayShortTime(1705142650732421331, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "197829" value = "197829" onclick = "countChecked('197829')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "197829.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-01-17 00:28:47 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated197829" >
$('#timedispwdataupdated197829').replaceWith(DisplayShortTime(1705141253152807321, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "197828" value = "197828" onclick = "countChecked('197828')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "197828.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-01-17 00:28:47 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated197828" >
$('#timedispwdataupdated197828').replaceWith(DisplayShortTime(1705134492703283345, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "197818" value = "197818" onclick = "countChecked('197818')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "197818.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-01-17 00:28:47 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated197818" >
$('#timedispwdataupdated197818').replaceWith(DisplayShortTime(1705099570775045327, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "197814" value = "197814" onclick = "countChecked('197814')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "197814.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-01-17 00:28:47 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated197814" >
$('#timedispwdataupdated197814').replaceWith(DisplayShortTime(1705087337602284902, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "197796" value = "197796" onclick = "countChecked('197796')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "197796.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-01-17 00:28:47 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated197796" >
$('#timedispwdataupdated197796').replaceWith(DisplayShortTime(1705060454906372523, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "197239" value = "197239" onclick = "countChecked('197239')"
>
2024-01-10 00:28:44 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "197239.html" >
2024-10-09 00:35:32 +00:00
Updated page
2024-01-10 00:28:44 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated197239" >
$('#timedispwdataupdated197239').replaceWith(DisplayShortTime(1704297307050233122, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "196597" value = "196597" onclick = "countChecked('196597')"
>
2023-12-27 00:26:51 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "196597.html" >
2023-12-27 00:26:51 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-12-27 00:26:51 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated196597" >
$('#timedispwdataupdated196597').replaceWith(DisplayShortTime(1703370705675593845, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "196085" value = "196085" onclick = "countChecked('196085')"
>
2023-12-13 00:27:52 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "196085.html" >
2023-12-13 00:27:52 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-12-13 00:27:52 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated196085" >
$('#timedispwdataupdated196085').replaceWith(DisplayShortTime(1702372105275544607, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "196048" value = "196048" onclick = "countChecked('196048')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "196048.html" >
2023-12-13 00:27:52 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-12-13 00:27:52 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated196048" >
$('#timedispwdataupdated196048').replaceWith(DisplayShortTime(1702300894286883728, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "195986" value = "195986" onclick = "countChecked('195986')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "195986.html" >
2023-12-13 00:27:52 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-12-13 00:27:52 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated195986" >
$('#timedispwdataupdated195986').replaceWith(DisplayShortTime(1702114737472238563, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "195973" value = "195973" onclick = "countChecked('195973')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "195973.html" >
2024-10-09 00:35:32 +00:00
Updated page
2023-12-13 00:27:52 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated195973" >
$('#timedispwdataupdated195973').replaceWith(DisplayShortTime(1702036926155224962, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "195405" value = "195405" onclick = "countChecked('195405')"
>
2023-12-06 00:28:21 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "195405.html" >
2023-12-06 00:28:21 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-12-06 00:28:21 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated195405" >
$('#timedispwdataupdated195405').replaceWith(DisplayShortTime(1701274391736867398, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "194939" value = "194939" onclick = "countChecked('194939')"
>
2023-11-22 00:28:46 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "194939.html" >
2023-11-22 00:28:46 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-11-22 00:28:46 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated194939" >
$('#timedispwdataupdated194939').replaceWith(DisplayShortTime(1700076671115814276, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "194867" value = "194867" onclick = "countChecked('194867')"
>
2023-11-15 00:27:03 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "194867.html" >
2023-11-15 00:27:03 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-11-15 00:27:03 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated194867" >
$('#timedispwdataupdated194867').replaceWith(DisplayShortTime(1699940690595906434, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "194635" value = "194635" onclick = "countChecked('194635')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "194635.html" >
2023-11-15 00:27:03 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-11-15 00:27:03 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated194635" >
$('#timedispwdataupdated194635').replaceWith(DisplayShortTime(1699427594295746907, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "194629" value = "194629" onclick = "countChecked('194629')"
>
2023-11-08 00:26:35 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "194629.html" >
2023-11-08 00:26:35 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-11-08 00:26:35 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated194629" >
$('#timedispwdataupdated194629').replaceWith(DisplayShortTime(1699397044240490220, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "194253" value = "194253" onclick = "countChecked('194253')"
>
2023-11-01 00:28:09 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "194253.html" >
2023-11-01 00:28:09 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-11-01 00:28:09 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated194253" >
$('#timedispwdataupdated194253').replaceWith(DisplayShortTime(1698725755927780267, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "194218" value = "194218" onclick = "countChecked('194218')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "194218.html" >
2023-11-01 00:28:09 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-11-01 00:28:09 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated194218" >
$('#timedispwdataupdated194218').replaceWith(DisplayShortTime(1698664407506300988, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "193627" value = "193627" onclick = "countChecked('193627')"
>
2023-10-18 00:26:18 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "193627.html" >
2023-10-18 00:26:18 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-10-18 00:26:18 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated193627" >
$('#timedispwdataupdated193627').replaceWith(DisplayShortTime(1697107712461082019, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "192624" value = "192624" onclick = "countChecked('192624')"
>
2023-10-04 00:26:14 +00:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "192624.html" >
2023-10-04 00:26:14 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-10-04 00:26:14 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated192624" >
$('#timedispwdataupdated192624').replaceWith(DisplayShortTime(1695311726594666332, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "191626" value = "191626" onclick = "countChecked('191626')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "191626.html" >
2023-10-04 00:26:14 +00:00
2024-10-09 00:35:32 +00:00
Updated page
2023-10-04 00:26:14 +00:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated191626" >
$('#timedispwdataupdated191626').replaceWith(DisplayShortTime(1693512414670171536, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "191417" value = "191417" onclick = "countChecked('191417')"
>
2023-09-29 12:56:26 -05:00
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "191417.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated191417" >
$('#timedispwdataupdated191417').replaceWith(DisplayShortTime(1693316252594579554, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "191406" value = "191406" onclick = "countChecked('191406')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "191406.html" >
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated191406" >
$('#timedispwdataupdated191406').replaceWith(DisplayShortTime(1693299191360924109, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "190942" value = "190942" onclick = "countChecked('190942')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "190942.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated190942" >
$('#timedispwdataupdated190942').replaceWith(DisplayShortTime(1692165906339617124, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "190915" value = "190915" onclick = "countChecked('190915')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "190915.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated190915" >
$('#timedispwdataupdated190915').replaceWith(DisplayShortTime(1692119826265031564, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "190872" value = "190872" onclick = "countChecked('190872')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "190872.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated190872" >
$('#timedispwdataupdated190872').replaceWith(DisplayShortTime(1692012509453541051, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "190847" value = "190847" onclick = "countChecked('190847')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "190847.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated190847" >
$('#timedispwdataupdated190847').replaceWith(DisplayShortTime(1691917045085349240, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "190846" value = "190846" onclick = "countChecked('190846')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "190846.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated190846" >
$('#timedispwdataupdated190846').replaceWith(DisplayShortTime(1691915763017095411, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "190629" value = "190629" onclick = "countChecked('190629')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "190629.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated190629" >
$('#timedispwdataupdated190629').replaceWith(DisplayShortTime(1691421014358944371, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "190628" value = "190628" onclick = "countChecked('190628')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "190628.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated190628" >
$('#timedispwdataupdated190628').replaceWith(DisplayShortTime(1691419775128900775, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "190227" value = "190227" onclick = "countChecked('190227')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "190227.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated190227" >
$('#timedispwdataupdated190227').replaceWith(DisplayShortTime(1690825311904673383, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "189952" value = "189952" onclick = "countChecked('189952')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "189952.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated189952" >
$('#timedispwdataupdated189952').replaceWith(DisplayShortTime(1690472173271898400, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "189700" value = "189700" onclick = "countChecked('189700')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "189700.html" >
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated189700" >
$('#timedispwdataupdated189700').replaceWith(DisplayShortTime(1690127079075878294, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "189647" value = "189647" onclick = "countChecked('189647')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "189647.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated189647" >
$('#timedispwdataupdated189647').replaceWith(DisplayShortTime(1689944639656511576, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "189646" value = "189646" onclick = "countChecked('189646')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "189646.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated189646" >
$('#timedispwdataupdated189646').replaceWith(DisplayShortTime(1689943115574877915, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "189321" value = "189321" onclick = "countChecked('189321')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "189321.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated189321" >
$('#timedispwdataupdated189321').replaceWith(DisplayShortTime(1688888403878602718, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "189123" value = "189123" onclick = "countChecked('189123')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "189123.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated189123" >
$('#timedispwdataupdated189123').replaceWith(DisplayShortTime(1688541901933419462, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "188484" value = "188484" onclick = "countChecked('188484')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "188484.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated188484" >
$('#timedispwdataupdated188484').replaceWith(DisplayShortTime(1687241192342476520, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "188427" value = "188427" onclick = "countChecked('188427')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "188427.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated188427" >
$('#timedispwdataupdated188427').replaceWith(DisplayShortTime(1687199088841749760, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "188385" value = "188385" onclick = "countChecked('188385')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "188385.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated188385" >
$('#timedispwdataupdated188385').replaceWith(DisplayShortTime(1687147702610522120, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "188266" value = "188266" onclick = "countChecked('188266')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "188266.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated188266" >
$('#timedispwdataupdated188266').replaceWith(DisplayShortTime(1687076065807894016, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "188243" value = "188243" onclick = "countChecked('188243')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "188243.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated188243" >
$('#timedispwdataupdated188243').replaceWith(DisplayShortTime(1687017199816367488, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "188240" value = "188240" onclick = "countChecked('188240')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "188240.html" >
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated188240" >
$('#timedispwdataupdated188240').replaceWith(DisplayShortTime(1687015595934261738, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "188232" value = "188232" onclick = "countChecked('188232')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "188232.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated188232" >
$('#timedispwdataupdated188232').replaceWith(DisplayShortTime(1686980874885889923, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "188214" value = "188214" onclick = "countChecked('188214')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "188214.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated188214" >
$('#timedispwdataupdated188214').replaceWith(DisplayShortTime(1686926045761948006, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "188034" value = "188034" onclick = "countChecked('188034')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "188034.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated188034" >
$('#timedispwdataupdated188034').replaceWith(DisplayShortTime(1686729527670429076, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "188033" value = "188033" onclick = "countChecked('188033')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "188033.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated188033" >
$('#timedispwdataupdated188033').replaceWith(DisplayShortTime(1686724944421780550, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187896" value = "187896" onclick = "countChecked('187896')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187896.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187896" >
$('#timedispwdataupdated187896').replaceWith(DisplayShortTime(1686466975213581026, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187847" value = "187847" onclick = "countChecked('187847')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187847.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187847" >
$('#timedispwdataupdated187847').replaceWith(DisplayShortTime(1686335332965234563, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187840" value = "187840" onclick = "countChecked('187840')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187840.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187840" >
$('#timedispwdataupdated187840').replaceWith(DisplayShortTime(1686315754399480622, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187839" value = "187839" onclick = "countChecked('187839')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187839.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187839" >
$('#timedispwdataupdated187839').replaceWith(DisplayShortTime(1686315689508997741, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187811" value = "187811" onclick = "countChecked('187811')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187811.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187811" >
$('#timedispwdataupdated187811').replaceWith(DisplayShortTime(1686220211771367847, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187810" value = "187810" onclick = "countChecked('187810')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187810.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187810" >
$('#timedispwdataupdated187810').replaceWith(DisplayShortTime(1686211532203440788, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187775" value = "187775" onclick = "countChecked('187775')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187775.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187775" >
$('#timedispwdataupdated187775').replaceWith(DisplayShortTime(1686136336067620898, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187707" value = "187707" onclick = "countChecked('187707')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "187707.html" >
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187707" >
$('#timedispwdataupdated187707').replaceWith(DisplayShortTime(1686033291832788526, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187593" value = "187593" onclick = "countChecked('187593')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187593.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187593" >
$('#timedispwdataupdated187593').replaceWith(DisplayShortTime(1685823935578920521, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187590" value = "187590" onclick = "countChecked('187590')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187590.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187590" >
$('#timedispwdataupdated187590').replaceWith(DisplayShortTime(1685816308648282840, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187581" value = "187581" onclick = "countChecked('187581')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187581.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187581" >
$('#timedispwdataupdated187581').replaceWith(DisplayShortTime(1685783646611475708, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187424" value = "187424" onclick = "countChecked('187424')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187424.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187424" >
$('#timedispwdataupdated187424').replaceWith(DisplayShortTime(1685448575195769563, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187371" value = "187371" onclick = "countChecked('187371')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187371.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187371" >
$('#timedispwdataupdated187371').replaceWith(DisplayShortTime(1685343957396545455, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187370" value = "187370" onclick = "countChecked('187370')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187370.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187370" >
$('#timedispwdataupdated187370').replaceWith(DisplayShortTime(1685339368506449219, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187324" value = "187324" onclick = "countChecked('187324')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187324.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187324" >
$('#timedispwdataupdated187324').replaceWith(DisplayShortTime(1685184989764146172, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187259" value = "187259" onclick = "countChecked('187259')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187259.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187259" >
$('#timedispwdataupdated187259').replaceWith(DisplayShortTime(1685100258049265145, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187258" value = "187258" onclick = "countChecked('187258')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187258.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187258" >
$('#timedispwdataupdated187258').replaceWith(DisplayShortTime(1685097702845939424, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187225" value = "187225" onclick = "countChecked('187225')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187225.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187225" >
$('#timedispwdataupdated187225').replaceWith(DisplayShortTime(1685017437125977107, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187215" value = "187215" onclick = "countChecked('187215')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187215.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187215" >
$('#timedispwdataupdated187215').replaceWith(DisplayShortTime(1684989774093153435, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187073" value = "187073" onclick = "countChecked('187073')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187073.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187073" >
$('#timedispwdataupdated187073').replaceWith(DisplayShortTime(1684824977428518041, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187072" value = "187072" onclick = "countChecked('187072')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187072.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187072" >
$('#timedispwdataupdated187072').replaceWith(DisplayShortTime(1684823429430430366, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187071" value = "187071" onclick = "countChecked('187071')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "187071.html" >
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187071" >
$('#timedispwdataupdated187071').replaceWith(DisplayShortTime(1684816333582316679, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "187032" value = "187032" onclick = "countChecked('187032')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "187032.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated187032" >
$('#timedispwdataupdated187032').replaceWith(DisplayShortTime(1684737272469982990, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "186993" value = "186993" onclick = "countChecked('186993')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "186993.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated186993" >
$('#timedispwdataupdated186993').replaceWith(DisplayShortTime(1684585183425315633, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "186944" value = "186944" onclick = "countChecked('186944')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "186944.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated186944" >
$('#timedispwdataupdated186944').replaceWith(DisplayShortTime(1684479993507406414, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "186634" value = "186634" onclick = "countChecked('186634')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "186634.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated186634" >
$('#timedispwdataupdated186634').replaceWith(DisplayShortTime(1683869409685649051, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "186633" value = "186633" onclick = "countChecked('186633')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "186633.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated186633" >
$('#timedispwdataupdated186633').replaceWith(DisplayShortTime(1683868461142753357, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "186514" value = "186514" onclick = "countChecked('186514')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "186514.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated186514" >
$('#timedispwdataupdated186514').replaceWith(DisplayShortTime(1683681296350852615, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "186348" value = "186348" onclick = "countChecked('186348')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "186348.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated186348" >
$('#timedispwdataupdated186348').replaceWith(DisplayShortTime(1683252192512320063, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "186269" value = "186269" onclick = "countChecked('186269')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "186269.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated186269" >
$('#timedispwdataupdated186269').replaceWith(DisplayShortTime(1683144070541860840, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "185980" value = "185980" onclick = "countChecked('185980')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "185980.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated185980" >
$('#timedispwdataupdated185980').replaceWith(DisplayShortTime(1682570996166607022, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "185743" value = "185743" onclick = "countChecked('185743')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "185743.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated185743" >
$('#timedispwdataupdated185743').replaceWith(DisplayShortTime(1682060340782331118, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "185742" value = "185742" onclick = "countChecked('185742')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "185742.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated185742" >
$('#timedispwdataupdated185742').replaceWith(DisplayShortTime(1682060181785231516, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "185552" value = "185552" onclick = "countChecked('185552')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "185552.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated185552" >
$('#timedispwdataupdated185552').replaceWith(DisplayShortTime(1681452408661585700, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "184817" value = "184817" onclick = "countChecked('184817')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "184817.html" >
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated184817" >
$('#timedispwdataupdated184817').replaceWith(DisplayShortTime(1680241683294496578, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "184793" value = "184793" onclick = "countChecked('184793')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "184793.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated184793" >
$('#timedispwdataupdated184793').replaceWith(DisplayShortTime(1680180760765212008, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "184675" value = "184675" onclick = "countChecked('184675')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "184675.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated184675" >
$('#timedispwdataupdated184675').replaceWith(DisplayShortTime(1679899951756719459, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "184356" value = "184356" onclick = "countChecked('184356')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "184356.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated184356" >
$('#timedispwdataupdated184356').replaceWith(DisplayShortTime(1679254503341283878, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "184355" value = "184355" onclick = "countChecked('184355')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "184355.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated184355" >
$('#timedispwdataupdated184355').replaceWith(DisplayShortTime(1679254387992732697, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "184065" value = "184065" onclick = "countChecked('184065')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "184065.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated184065" >
$('#timedispwdataupdated184065').replaceWith(DisplayShortTime(1678821863684555155, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "183064" value = "183064" onclick = "countChecked('183064')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "183064.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated183064" >
$('#timedispwdataupdated183064').replaceWith(DisplayShortTime(1677410313580777946, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "181781" value = "181781" onclick = "countChecked('181781')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "181781.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated181781" >
$('#timedispwdataupdated181781').replaceWith(DisplayShortTime(1675923667756440097, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "181266" value = "181266" onclick = "countChecked('181266')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "181266.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated181266" >
$('#timedispwdataupdated181266').replaceWith(DisplayShortTime(1675224666367286487, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "181092" value = "181092" onclick = "countChecked('181092')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "181092.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated181092" >
$('#timedispwdataupdated181092').replaceWith(DisplayShortTime(1675085081745469648, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "181040" value = "181040" onclick = "countChecked('181040')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "181040.html" >
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated181040" >
$('#timedispwdataupdated181040').replaceWith(DisplayShortTime(1675004767727667113, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "179444" value = "179444" onclick = "countChecked('179444')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "179444.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated179444" >
$('#timedispwdataupdated179444').replaceWith(DisplayShortTime(1673265086262498082, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "179227" value = "179227" onclick = "countChecked('179227')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "179227.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated179227" >
$('#timedispwdataupdated179227').replaceWith(DisplayShortTime(1673000663987433578, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "178526" value = "178526" onclick = "countChecked('178526')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "178526.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated178526" >
$('#timedispwdataupdated178526').replaceWith(DisplayShortTime(1671966891264772996, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "178517" value = "178517" onclick = "countChecked('178517')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "178517.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated178517" >
$('#timedispwdataupdated178517').replaceWith(DisplayShortTime(1671907217969411686, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "178516" value = "178516" onclick = "countChecked('178516')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "178516.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated178516" >
$('#timedispwdataupdated178516').replaceWith(DisplayShortTime(1671901750460673995, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "178236" value = "178236" onclick = "countChecked('178236')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "178236.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated178236" >
$('#timedispwdataupdated178236').replaceWith(DisplayShortTime(1671436383025767285, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "178199" value = "178199" onclick = "countChecked('178199')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "178199.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated178199" >
$('#timedispwdataupdated178199').replaceWith(DisplayShortTime(1671358631381841575, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "177140" value = "177140" onclick = "countChecked('177140')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "177140.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated177140" >
$('#timedispwdataupdated177140').replaceWith(DisplayShortTime(1669352959274712586, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "177139" value = "177139" onclick = "countChecked('177139')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "177139.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated177139" >
$('#timedispwdataupdated177139').replaceWith(DisplayShortTime(1669352658964426397, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "176939" value = "176939" onclick = "countChecked('176939')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "176939.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated176939" >
$('#timedispwdataupdated176939').replaceWith(DisplayShortTime(1668957686772838861, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "176870" value = "176870" onclick = "countChecked('176870')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "176870.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated176870" >
$('#timedispwdataupdated176870').replaceWith(DisplayShortTime(1668794058312534978, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "176863" value = "176863" onclick = "countChecked('176863')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "176863.html" >
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated176863" >
$('#timedispwdataupdated176863').replaceWith(DisplayShortTime(1668782529434356693, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "176862" value = "176862" onclick = "countChecked('176862')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "176862.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated176862" >
$('#timedispwdataupdated176862').replaceWith(DisplayShortTime(1668781784122683890, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "176779" value = "176779" onclick = "countChecked('176779')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "176779.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated176779" >
$('#timedispwdataupdated176779').replaceWith(DisplayShortTime(1668608280612151166, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "176690" value = "176690" onclick = "countChecked('176690')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "176690.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated176690" >
$('#timedispwdataupdated176690').replaceWith(DisplayShortTime(1668533666128263137, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "176633" value = "176633" onclick = "countChecked('176633')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "176633.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated176633" >
$('#timedispwdataupdated176633').replaceWith(DisplayShortTime(1668442235718879466, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "176627" value = "176627" onclick = "countChecked('176627')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "176627.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated176627" >
$('#timedispwdataupdated176627').replaceWith(DisplayShortTime(1668432689474696887, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "176625" value = "176625" onclick = "countChecked('176625')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "176625.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated176625" >
$('#timedispwdataupdated176625').replaceWith(DisplayShortTime(1668405170090923716, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175991" value = "175991" onclick = "countChecked('175991')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "175991.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175991" >
$('#timedispwdataupdated175991').replaceWith(DisplayShortTime(1667390413016487282, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175930" value = "175930" onclick = "countChecked('175930')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "175930.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175930" >
$('#timedispwdataupdated175930').replaceWith(DisplayShortTime(1667325532085445871, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175908" value = "175908" onclick = "countChecked('175908')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "175908.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175908" >
$('#timedispwdataupdated175908').replaceWith(DisplayShortTime(1667290331017756303, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175730" value = "175730" onclick = "countChecked('175730')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "175730.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175730" >
$('#timedispwdataupdated175730').replaceWith(DisplayShortTime(1667140131803647758, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175689" value = "175689" onclick = "countChecked('175689')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "175689.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175689" >
$('#timedispwdataupdated175689').replaceWith(DisplayShortTime(1667056897992362942, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175671" value = "175671" onclick = "countChecked('175671')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "175671.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175671" >
$('#timedispwdataupdated175671').replaceWith(DisplayShortTime(1667048221666288623, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175563" value = "175563" onclick = "countChecked('175563')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "175563.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175563" >
$('#timedispwdataupdated175563').replaceWith(DisplayShortTime(1666757920294338515, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175562" value = "175562" onclick = "countChecked('175562')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "175562.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175562" >
$('#timedispwdataupdated175562').replaceWith(DisplayShortTime(1666757655677954090, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175559" value = "175559" onclick = "countChecked('175559')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "175559.html" >
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175559" >
$('#timedispwdataupdated175559').replaceWith(DisplayShortTime(1666752611856277839, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175312" value = "175312" onclick = "countChecked('175312')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "175312.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175312" >
$('#timedispwdataupdated175312').replaceWith(DisplayShortTime(1666607496740384321, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175309" value = "175309" onclick = "countChecked('175309')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "175309.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175309" >
$('#timedispwdataupdated175309').replaceWith(DisplayShortTime(1666606810133588943, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175308" value = "175308" onclick = "countChecked('175308')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "175308.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175308" >
$('#timedispwdataupdated175308').replaceWith(DisplayShortTime(1666606598507714512, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "175306" value = "175306" onclick = "countChecked('175306')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "175306.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated175306" >
$('#timedispwdataupdated175306').replaceWith(DisplayShortTime(1666605938859073832, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "174146" value = "174146" onclick = "countChecked('174146')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "174146.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated174146" >
$('#timedispwdataupdated174146').replaceWith(DisplayShortTime(1666359886098983744, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "174038" value = "174038" onclick = "countChecked('174038')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "174038.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated174038" >
$('#timedispwdataupdated174038').replaceWith(DisplayShortTime(1666234382470102328, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173933" value = "173933" onclick = "countChecked('173933')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173933.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173933" >
$('#timedispwdataupdated173933').replaceWith(DisplayShortTime(1666077755535603297, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173845" value = "173845" onclick = "countChecked('173845')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173845.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173845" >
$('#timedispwdataupdated173845').replaceWith(DisplayShortTime(1666009621174025785, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173669" value = "173669" onclick = "countChecked('173669')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173669.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173669" >
$('#timedispwdataupdated173669').replaceWith(DisplayShortTime(1665677257074821697, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173659" value = "173659" onclick = "countChecked('173659')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173659.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173659" >
$('#timedispwdataupdated173659').replaceWith(DisplayShortTime(1665665790670105922, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173566" value = "173566" onclick = "countChecked('173566')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173566.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173566" >
$('#timedispwdataupdated173566').replaceWith(DisplayShortTime(1665573309091347889, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173450" value = "173450" onclick = "countChecked('173450')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173450.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173450" >
$('#timedispwdataupdated173450').replaceWith(DisplayShortTime(1665378498604482106, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173385" value = "173385" onclick = "countChecked('173385')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173385.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173385" >
$('#timedispwdataupdated173385').replaceWith(DisplayShortTime(1665295453913234138, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173359" value = "173359" onclick = "countChecked('173359')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173359.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173359" >
$('#timedispwdataupdated173359').replaceWith(DisplayShortTime(1665199406399253622, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173242" value = "173242" onclick = "countChecked('173242')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "173242.html" >
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173242" >
$('#timedispwdataupdated173242').replaceWith(DisplayShortTime(1664869006378378196, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173241" value = "173241" onclick = "countChecked('173241')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173241.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173241" >
$('#timedispwdataupdated173241').replaceWith(DisplayShortTime(1664868016168188299, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173240" value = "173240" onclick = "countChecked('173240')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173240.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173240" >
$('#timedispwdataupdated173240').replaceWith(DisplayShortTime(1664866007931775736, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173225" value = "173225" onclick = "countChecked('173225')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173225.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173225" >
$('#timedispwdataupdated173225').replaceWith(DisplayShortTime(1664745253261520835, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173224" value = "173224" onclick = "countChecked('173224')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173224.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173224" >
$('#timedispwdataupdated173224').replaceWith(DisplayShortTime(1664745171456899059, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173019" value = "173019" onclick = "countChecked('173019')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173019.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173019" >
$('#timedispwdataupdated173019').replaceWith(DisplayShortTime(1664354120267100933, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173018" value = "173018" onclick = "countChecked('173018')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173018.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173018" >
$('#timedispwdataupdated173018').replaceWith(DisplayShortTime(1664353679140300856, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "173017" value = "173017" onclick = "countChecked('173017')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "173017.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated173017" >
$('#timedispwdataupdated173017').replaceWith(DisplayShortTime(1664353646973094153, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "172772" value = "172772" onclick = "countChecked('172772')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "172772.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated172772" >
$('#timedispwdataupdated172772').replaceWith(DisplayShortTime(1663868549431725752, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "172748" value = "172748" onclick = "countChecked('172748')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
< a href = "172748.html" >
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated172748" >
$('#timedispwdataupdated172748').replaceWith(DisplayShortTime(1663833470895170027, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "172567" value = "172567" onclick = "countChecked('172567')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "172567.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated172567" >
$('#timedispwdataupdated172567').replaceWith(DisplayShortTime(1663517027062484869, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "172560" value = "172560" onclick = "countChecked('172560')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "172560.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated172560" >
$('#timedispwdataupdated172560').replaceWith(DisplayShortTime(1663511754279178768, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "172555" value = "172555" onclick = "countChecked('172555')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "172555.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated172555" >
$('#timedispwdataupdated172555').replaceWith(DisplayShortTime(1663508637026990540, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "172176" value = "172176" onclick = "countChecked('172176')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "172176.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated172176" >
$('#timedispwdataupdated172176').replaceWith(DisplayShortTime(1662915314229290920, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "172161" value = "172161" onclick = "countChecked('172161')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "172161.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated172161" >
$('#timedispwdataupdated172161').replaceWith(DisplayShortTime(1662902019171695353, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "172157" value = "172157" onclick = "countChecked('172157')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "172157.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated172157" >
$('#timedispwdataupdated172157').replaceWith(DisplayShortTime(1662893751870459322, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "172154" value = "172154" onclick = "countChecked('172154')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "172154.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated172154" >
$('#timedispwdataupdated172154').replaceWith(DisplayShortTime(1662881688113323771, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "172036" value = "172036" onclick = "countChecked('172036')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "172036.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated172036" >
$('#timedispwdataupdated172036').replaceWith(DisplayShortTime(1662697564905116463, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "172034" value = "172034" onclick = "countChecked('172034')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "172034.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated172034" >
$('#timedispwdataupdated172034').replaceWith(DisplayShortTime(1662695980475583097, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171993" value = "171993" onclick = "countChecked('171993')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171993.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171993" >
$('#timedispwdataupdated171993').replaceWith(DisplayShortTime(1662625809804801793, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171989" value = "171989" onclick = "countChecked('171989')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171989.html" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171989" >
$('#timedispwdataupdated171989').replaceWith(DisplayShortTime(1662616981931823894, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171933" value = "171933" onclick = "countChecked('171933')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171933" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171933" >
$('#timedispwdataupdated171933').replaceWith(DisplayShortTime(1662522102833590121, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171848" value = "171848" onclick = "countChecked('171848')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171848" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171848" >
$('#timedispwdataupdated171848').replaceWith(DisplayShortTime(1662481329216862416, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171845" value = "171845" onclick = "countChecked('171845')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171845" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171845" >
$('#timedispwdataupdated171845').replaceWith(DisplayShortTime(1662481084010510199, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171816" value = "171816" onclick = "countChecked('171816')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171816" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171816" >
$('#timedispwdataupdated171816').replaceWith(DisplayShortTime(1662446973207473617, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171800" value = "171800" onclick = "countChecked('171800')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171800" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171800" >
$('#timedispwdataupdated171800').replaceWith(DisplayShortTime(1662407600450313241, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171799" value = "171799" onclick = "countChecked('171799')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171799" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171799" >
$('#timedispwdataupdated171799').replaceWith(DisplayShortTime(1662407533341177397, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171787" value = "171787" onclick = "countChecked('171787')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171787" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171787" >
$('#timedispwdataupdated171787').replaceWith(DisplayShortTime(1662403835255412733, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171634" value = "171634" onclick = "countChecked('171634')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171634" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171634" >
$('#timedispwdataupdated171634').replaceWith(DisplayShortTime(1662027280504176201, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171603" value = "171603" onclick = "countChecked('171603')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171603" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171603" >
$('#timedispwdataupdated171603').replaceWith(DisplayShortTime(1661926622834745116, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171433" value = "171433" onclick = "countChecked('171433')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171433" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171433" >
$('#timedispwdataupdated171433').replaceWith(DisplayShortTime(1661574675327298083, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171375" value = "171375" onclick = "countChecked('171375')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171375" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171375" >
$('#timedispwdataupdated171375').replaceWith(DisplayShortTime(1661515069814624729, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "171102" value = "171102" onclick = "countChecked('171102')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "171102" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated171102" >
$('#timedispwdataupdated171102').replaceWith(DisplayShortTime(1660826274193224455, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170730" value = "170730" onclick = "countChecked('170730')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170730" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170730" >
$('#timedispwdataupdated170730').replaceWith(DisplayShortTime(1660317920836378918, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170647" value = "170647" onclick = "countChecked('170647')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170647" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170647" >
$('#timedispwdataupdated170647').replaceWith(DisplayShortTime(1660220123190470278, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170646" value = "170646" onclick = "countChecked('170646')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170646" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170646" >
$('#timedispwdataupdated170646').replaceWith(DisplayShortTime(1660219402236924399, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170644" value = "170644" onclick = "countChecked('170644')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170644" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170644" >
$('#timedispwdataupdated170644').replaceWith(DisplayShortTime(1660218425836846509, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170572" value = "170572" onclick = "countChecked('170572')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170572" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170572" >
$('#timedispwdataupdated170572').replaceWith(DisplayShortTime(1660033325551391956, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170570" value = "170570" onclick = "countChecked('170570')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170570" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170570" >
$('#timedispwdataupdated170570').replaceWith(DisplayShortTime(1660020405403555432, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170493" value = "170493" onclick = "countChecked('170493')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170493" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170493" >
$('#timedispwdataupdated170493').replaceWith(DisplayShortTime(1659888919196162806, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170480" value = "170480" onclick = "countChecked('170480')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170480" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170480" >
$('#timedispwdataupdated170480').replaceWith(DisplayShortTime(1659818091116957569, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170474" value = "170474" onclick = "countChecked('170474')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170474" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170474" >
$('#timedispwdataupdated170474').replaceWith(DisplayShortTime(1659769767453757882, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170292" value = "170292" onclick = "countChecked('170292')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170292" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170292" >
$('#timedispwdataupdated170292').replaceWith(DisplayShortTime(1659588426479475910, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170117" value = "170117" onclick = "countChecked('170117')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170117" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170117" >
$('#timedispwdataupdated170117').replaceWith(DisplayShortTime(1659324486211479357, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170046" value = "170046" onclick = "countChecked('170046')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170046" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170046" >
$('#timedispwdataupdated170046').replaceWith(DisplayShortTime(1659188854046172531, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170043" value = "170043" onclick = "countChecked('170043')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170043" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170043" >
$('#timedispwdataupdated170043').replaceWith(DisplayShortTime(1659183280115418036, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170041" value = "170041" onclick = "countChecked('170041')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170041" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170041" >
$('#timedispwdataupdated170041').replaceWith(DisplayShortTime(1659180248987083364, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170019" value = "170019" onclick = "countChecked('170019')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170019" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170019" >
$('#timedispwdataupdated170019').replaceWith(DisplayShortTime(1659117903952786375, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "170001" value = "170001" onclick = "countChecked('170001')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "170001" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated170001" >
$('#timedispwdataupdated170001').replaceWith(DisplayShortTime(1659097386233533431, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "169996" value = "169996" onclick = "countChecked('169996')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "169996" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated169996" >
$('#timedispwdataupdated169996').replaceWith(DisplayShortTime(1659070387568201625, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "169943" value = "169943" onclick = "countChecked('169943')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "169943" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated169943" >
$('#timedispwdataupdated169943').replaceWith(DisplayShortTime(1658946751819489727, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "168872" value = "168872" onclick = "countChecked('168872')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "168872" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated168872" >
$('#timedispwdataupdated168872').replaceWith(DisplayShortTime(1657652650108182038, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "168292" value = "168292" onclick = "countChecked('168292')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "168292" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated168292" >
$('#timedispwdataupdated168292').replaceWith(DisplayShortTime(1656583744283211366, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "168088" value = "168088" onclick = "countChecked('168088')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "168088" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated168088" >
$('#timedispwdataupdated168088').replaceWith(DisplayShortTime(1656451699733493275, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "167779" value = "167779" onclick = "countChecked('167779')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "167779" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated167779" >
$('#timedispwdataupdated167779').replaceWith(DisplayShortTime(1656073964203891414, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "167700" value = "167700" onclick = "countChecked('167700')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "167700" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated167700" >
$('#timedispwdataupdated167700').replaceWith(DisplayShortTime(1655971093438788394, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "167699" value = "167699" onclick = "countChecked('167699')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "167699" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated167699" >
$('#timedispwdataupdated167699').replaceWith(DisplayShortTime(1655970317721915870, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "167697" value = "167697" onclick = "countChecked('167697')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "167697" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated167697" >
$('#timedispwdataupdated167697').replaceWith(DisplayShortTime(1655967654964356079, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "167382" value = "167382" onclick = "countChecked('167382')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "167382" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated167382" >
$('#timedispwdataupdated167382').replaceWith(DisplayShortTime(1655381944998707828, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "166033" value = "166033" onclick = "countChecked('166033')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "166033" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated166033" >
$('#timedispwdataupdated166033').replaceWith(DisplayShortTime(1653902014195738469, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "166032" value = "166032" onclick = "countChecked('166032')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "166032" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated166032" >
$('#timedispwdataupdated166032').replaceWith(DisplayShortTime(1653901166957357345, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165986" value = "165986" onclick = "countChecked('165986')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165986" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165986" >
$('#timedispwdataupdated165986').replaceWith(DisplayShortTime(1653637593814160774, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165985" value = "165985" onclick = "countChecked('165985')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165985" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165985" >
$('#timedispwdataupdated165985').replaceWith(DisplayShortTime(1653632567395844012, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165976" value = "165976" onclick = "countChecked('165976')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165976" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165976" >
$('#timedispwdataupdated165976').replaceWith(DisplayShortTime(1653548612427206362, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165974" value = "165974" onclick = "countChecked('165974')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165974" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165974" >
$('#timedispwdataupdated165974').replaceWith(DisplayShortTime(1653542049512942322, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165882" value = "165882" onclick = "countChecked('165882')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165882" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165882" >
$('#timedispwdataupdated165882').replaceWith(DisplayShortTime(1653378543568441165, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165880" value = "165880" onclick = "countChecked('165880')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165880" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165880" >
$('#timedispwdataupdated165880').replaceWith(DisplayShortTime(1653377370243478049, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165844" value = "165844" onclick = "countChecked('165844')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165844" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165844" >
$('#timedispwdataupdated165844').replaceWith(DisplayShortTime(1653310845348252507, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165842" value = "165842" onclick = "countChecked('165842')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165842" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165842" >
$('#timedispwdataupdated165842').replaceWith(DisplayShortTime(1653306898968772639, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165840" value = "165840" onclick = "countChecked('165840')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165840" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165840" >
$('#timedispwdataupdated165840').replaceWith(DisplayShortTime(1653305504133830315, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165830" value = "165830" onclick = "countChecked('165830')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165830" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165830" >
$('#timedispwdataupdated165830').replaceWith(DisplayShortTime(1653291186022626450, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165664" value = "165664" onclick = "countChecked('165664')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165664" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165664" >
$('#timedispwdataupdated165664').replaceWith(DisplayShortTime(1652938702113968148, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165530" value = "165530" onclick = "countChecked('165530')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165530" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165530" >
$('#timedispwdataupdated165530').replaceWith(DisplayShortTime(1652723348717236373, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165470" value = "165470" onclick = "countChecked('165470')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165470" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165470" >
$('#timedispwdataupdated165470').replaceWith(DisplayShortTime(1652535270991880316, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165469" value = "165469" onclick = "countChecked('165469')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165469" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165469" >
$('#timedispwdataupdated165469').replaceWith(DisplayShortTime(1652530216108888806, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165467" value = "165467" onclick = "countChecked('165467')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165467" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165467" >
$('#timedispwdataupdated165467').replaceWith(DisplayShortTime(1652506269222204734, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165437" value = "165437" onclick = "countChecked('165437')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165437" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165437" >
$('#timedispwdataupdated165437').replaceWith(DisplayShortTime(1652412158462686599, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165250" value = "165250" onclick = "countChecked('165250')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165250" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165250" >
$('#timedispwdataupdated165250').replaceWith(DisplayShortTime(1652093457887439841, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165219" value = "165219" onclick = "countChecked('165219')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165219" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165219" >
$('#timedispwdataupdated165219').replaceWith(DisplayShortTime(1652011109286125851, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165198" value = "165198" onclick = "countChecked('165198')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165198" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165198" >
$('#timedispwdataupdated165198').replaceWith(DisplayShortTime(1651917486323398051, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "165150" value = "165150" onclick = "countChecked('165150')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "165150" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated165150" >
$('#timedispwdataupdated165150').replaceWith(DisplayShortTime(1651840175274772782, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164998" value = "164998" onclick = "countChecked('164998')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164998" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164998" >
$('#timedispwdataupdated164998').replaceWith(DisplayShortTime(1651563729564393755, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164997" value = "164997" onclick = "countChecked('164997')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164997" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164997" >
$('#timedispwdataupdated164997').replaceWith(DisplayShortTime(1651563256442919444, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164931" value = "164931" onclick = "countChecked('164931')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164931" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164931" >
$('#timedispwdataupdated164931').replaceWith(DisplayShortTime(1651495981888533868, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164928" value = "164928" onclick = "countChecked('164928')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164928" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164928" >
$('#timedispwdataupdated164928').replaceWith(DisplayShortTime(1651465202385139582, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164908" value = "164908" onclick = "countChecked('164908')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164908" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164908" >
$('#timedispwdataupdated164908').replaceWith(DisplayShortTime(1651336409857746160, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164898" value = "164898" onclick = "countChecked('164898')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164898" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164898" >
$('#timedispwdataupdated164898').replaceWith(DisplayShortTime(1651285082627840326, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164856" value = "164856" onclick = "countChecked('164856')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164856" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164856" >
$('#timedispwdataupdated164856').replaceWith(DisplayShortTime(1651166371986915223, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164847" value = "164847" onclick = "countChecked('164847')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164847" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164847" >
$('#timedispwdataupdated164847').replaceWith(DisplayShortTime(1651155837499790933, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164835" value = "164835" onclick = "countChecked('164835')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164835" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164835" >
$('#timedispwdataupdated164835').replaceWith(DisplayShortTime(1651131973067343311, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164758" value = "164758" onclick = "countChecked('164758')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164758" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164758" >
$('#timedispwdataupdated164758').replaceWith(DisplayShortTime(1650983794257142608, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164741" value = "164741" onclick = "countChecked('164741')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164741" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164741" >
$('#timedispwdataupdated164741').replaceWith(DisplayShortTime(1650974134322675760, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164593" value = "164593" onclick = "countChecked('164593')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164593" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164593" >
$('#timedispwdataupdated164593').replaceWith(DisplayShortTime(1650864296776862674, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164525" value = "164525" onclick = "countChecked('164525')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164525" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164525" >
$('#timedispwdataupdated164525').replaceWith(DisplayShortTime(1650812050397707709, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164510" value = "164510" onclick = "countChecked('164510')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164510" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164510" >
$('#timedispwdataupdated164510').replaceWith(DisplayShortTime(1650790414805658674, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164491" value = "164491" onclick = "countChecked('164491')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164491" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164491" >
$('#timedispwdataupdated164491').replaceWith(DisplayShortTime(1650732049706682146, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164409" value = "164409" onclick = "countChecked('164409')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164409" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164409" >
$('#timedispwdataupdated164409').replaceWith(DisplayShortTime(1650646720096472231, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164383" value = "164383" onclick = "countChecked('164383')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164383" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164383" >
$('#timedispwdataupdated164383').replaceWith(DisplayShortTime(1650636215061689269, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164382" value = "164382" onclick = "countChecked('164382')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164382" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164382" >
$('#timedispwdataupdated164382').replaceWith(DisplayShortTime(1650636065380592599, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164381" value = "164381" onclick = "countChecked('164381')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164381" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164381" >
$('#timedispwdataupdated164381').replaceWith(DisplayShortTime(1650635920195020385, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164260" value = "164260" onclick = "countChecked('164260')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164260" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164260" >
$('#timedispwdataupdated164260').replaceWith(DisplayShortTime(1650479776889993001, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164251" value = "164251" onclick = "countChecked('164251')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164251" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164251" >
$('#timedispwdataupdated164251').replaceWith(DisplayShortTime(1650475232980358334, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164250" value = "164250" onclick = "countChecked('164250')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164250" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164250" >
$('#timedispwdataupdated164250').replaceWith(DisplayShortTime(1650475022750038897, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164061" value = "164061" onclick = "countChecked('164061')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164061" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164061" >
$('#timedispwdataupdated164061').replaceWith(DisplayShortTime(1649830603329322395, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "164023" value = "164023" onclick = "countChecked('164023')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "164023" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated164023" >
$('#timedispwdataupdated164023').replaceWith(DisplayShortTime(1649736904259783457, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163831" value = "163831" onclick = "countChecked('163831')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163831" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163831" >
$('#timedispwdataupdated163831').replaceWith(DisplayShortTime(1649499373217316399, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163689" value = "163689" onclick = "countChecked('163689')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163689" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163689" >
$('#timedispwdataupdated163689').replaceWith(DisplayShortTime(1649254157592089357, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163688" value = "163688" onclick = "countChecked('163688')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163688" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163688" >
$('#timedispwdataupdated163688').replaceWith(DisplayShortTime(1649252336779441271, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163687" value = "163687" onclick = "countChecked('163687')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163687" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163687" >
$('#timedispwdataupdated163687').replaceWith(DisplayShortTime(1649251587532215328, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163606" value = "163606" onclick = "countChecked('163606')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163606" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163606" >
$('#timedispwdataupdated163606').replaceWith(DisplayShortTime(1649083435863518820, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163574" value = "163574" onclick = "countChecked('163574')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163574" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163574" >
$('#timedispwdataupdated163574').replaceWith(DisplayShortTime(1649001279995216566, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163495" value = "163495" onclick = "countChecked('163495')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163495" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163495" >
$('#timedispwdataupdated163495').replaceWith(DisplayShortTime(1648907459945779657, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163490" value = "163490" onclick = "countChecked('163490')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163490" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163490" >
$('#timedispwdataupdated163490').replaceWith(DisplayShortTime(1648892713518295308, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163480" value = "163480" onclick = "countChecked('163480')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163480" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163480" >
$('#timedispwdataupdated163480').replaceWith(DisplayShortTime(1648879775346300672, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163475" value = "163475" onclick = "countChecked('163475')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163475" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163475" >
$('#timedispwdataupdated163475').replaceWith(DisplayShortTime(1648878695534785467, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163359" value = "163359" onclick = "countChecked('163359')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163359" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163359" >
$('#timedispwdataupdated163359').replaceWith(DisplayShortTime(1648833916695265966, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163335" value = "163335" onclick = "countChecked('163335')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163335" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163335" >
$('#timedispwdataupdated163335').replaceWith(DisplayShortTime(1648823686691510875, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163334" value = "163334" onclick = "countChecked('163334')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163334" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163334" >
$('#timedispwdataupdated163334').replaceWith(DisplayShortTime(1648823597981885287, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163326" value = "163326" onclick = "countChecked('163326')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163326" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163326" >
$('#timedispwdataupdated163326').replaceWith(DisplayShortTime(1648815597483324315, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163322" value = "163322" onclick = "countChecked('163322')"
>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163322" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Updated page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163322" >
$('#timedispwdataupdated163322').replaceWith(DisplayShortTime(1648796023001154023, false
));
< / script >
< / td >
< / tr >
< tr >
< td >
< input type = checkbox name = "dataid" id = "163286" value = "163286" onclick = "countChecked('163286')"
checked>
< a href = "https://groups.io/g/MTFHRT/profile/@Lena" > Lena< / a >
< / td >
< td >
2025-07-02 00:43:59 +00:00
< a href = "163286" >
2023-09-29 12:56:26 -05:00
2024-10-09 00:35:32 +00:00
Initial page
2023-09-29 12:56:26 -05:00
< / a >
< / td >
< td >
< script id = "timedispwdataupdated163286" >
$('#timedispwdataupdated163286').replaceWith(DisplayShortTime(1648737045148372442, false
));
< / script >
< / td >
< / tr >
< / tbody >
< / table >
< / div >
< / div >
< / form >
< script type = "text/javascript" >
2024-05-01 00:30:11 +00:00
contentLoaded(false, function() {
UpdateSidebar("wiki");
});
2023-09-29 12:56:26 -05:00
function countChecked(id) {
var checkedVal = 0;
var cbs = document.getElementsByTagName('input');
for(var i=0; i < cbs.length ; i + + ) {
if(cbs[i].type == 'checkbox' & & cbs[i].checked == true) {
checkedVal += 1
if (cbs[i].id != id) {
lastcheckbox = cbs[i];
}
}
}
ischecked = $('#'+id).prop('checked')
if (checkedVal == 3 & & ischecked == true) {
// third check, uncheck the last one
$(lastcheckbox).prop('checked', false);
} else if (ischecked == true & & checkedVal == 2) {
// enable button
$("#compare").prop("disabled", false);
} else {
$("#compare").prop("disabled", true);
}
return
}
< / script >
2024-05-01 00:30:11 +00:00
< / div >
2023-09-29 12:56:26 -05:00
< / div >
< / div >
< / div >
2024-09-04 00:33:27 +00:00
< div class = "row hidden-print" id = "mobileSidebar" hx-boost = "true" hx-target = "#maincontent-refresh" hx-push-url = "true" hx-history = "false" hx-on::after-request = "document.getElementById('maincontent').scrollTo({top: 0, behavior: 'instant'})" >
2024-06-12 00:30:01 +00:00
< div id = "mobileSidebarSub" class = "col-xs-12 hidden-md hidden-lg" >
2024-05-01 00:30:11 +00:00
< div class = "navbar navbar-default navbar-fixed-bottom" >
2023-09-29 12:56:26 -05:00
< div class = "container" style = "display: flex; justify-content: space-around;" >
2024-09-04 00:33:27 +00:00
< div id = "mobilesidebar-archives" class = "mobilesidebar-item" style = "margin-top:10px; padding-bottom:20px; flex: 1; text-align: center;" hx-get = "https://groups.io/g/MTFHRT/topics?sidebar=true" hx-boost = "true" hx-target = "#maincontent-refresh" hx-push-url = "true" hx-history = "false" hx-on::after-request = "document.getElementById('maincontent').scrollTo({top: 0, behavior: 'instant'})" >
2023-09-29 12:56:26 -05:00
< div style = "display: inline-block; position: relative;" >
< div style = "position: relative;display: inline-block;" >
< i class = "fa-fw fa-light fa-comments fa-2x" > < / i >
< / div > < br >
< span style = "font-size:12px;" > Messages< / span >
< / div >
< / div >
< div style = "flex: 1; text-align: center;margin-top:10px" data-drawer-trigger aria-controls = "drawer-name" aria-expanded = "false" >
< i class = "fa-fw fa-light fa-bars fa-2x" > < / i > < br >
2024-07-24 00:31:55 +00:00
< span style = "font-size:12px;" > More< / span >
2023-09-29 12:56:26 -05:00
< / div >
< / div >
< / div >
2024-06-19 00:30:22 +00:00
< section class = "drawer drawer-left" id = "drawer-name" data-drawer-target >
< div class = "drawer-overlay" data-drawer-close tabindex = "-1" > < / div >
2024-10-30 00:36:34 +00:00
< div class = "drawer-wrapper drawer-wrapper-top" >
2024-06-19 00:30:22 +00:00
< div class = "drawer-header" >
< div class = "drawer-title" >
2023-09-29 12:56:26 -05:00
< i class = "fa-fw fa-regular fa-bars fa-3x" > < / i >
< span class = "sr-only" >
More Options
< / span >
More
< / div >
2024-06-19 00:30:22 +00:00
< button class = "drawer-close" data-drawer-close aria-label = "Close Drawer" > < / button >
2023-09-29 12:56:26 -05:00
< / div >
2024-06-19 00:30:22 +00:00
< div class = "drawer-content" >
2023-09-29 12:56:26 -05:00
< div class = "list-group noborderlist" >
2024-05-01 00:30:11 +00:00
2024-10-30 00:36:34 +00:00
< a title = "Group Home" href = "https://groups.io/g/MTFHRT" class = "list-group-item sidebar-item" >
2023-09-29 12:56:26 -05:00
< i class = "fa-fw fa fa-home fa-lg" > < / i >
Home
< / a >
2024-05-01 00:30:11 +00:00
2023-09-29 12:56:26 -05:00
2023-10-04 00:26:14 +00:00
2024-05-01 00:30:11 +00:00
< a title = "Messages" href = "https://groups.io/g/MTFHRT/topics?sidebar=true" id = "sidebar-archives-mobile" class = "noborderitem list-group-item sidebar-item sidebar-item-archives" >
2023-10-04 00:26:14 +00:00
< i class = "fa-fw fa fa-comments fa-lg" > < / i >
Messages
2024-05-01 00:30:11 +00:00
< span id = "sidebar-archives-mobile-badge" class = "badge" > < / span >
2023-10-04 00:26:14 +00:00
< / a >
2024-05-01 00:30:11 +00:00
2023-10-04 00:26:14 +00:00
2025-03-12 00:38:21 +00:00
2023-10-04 00:26:14 +00:00
2023-09-29 12:56:26 -05:00
2024-05-01 00:30:11 +00:00
< a title = "Hashtags" href = "https://groups.io/g/MTFHRT/hashtags" id = "sidebar-hashtags-mobile" class = "noborderitem list-group-item sidebar-item sidebar-item-hashtags" >
2023-09-29 12:56:26 -05:00
< i class = "fa-fw fa fa-hashtag fa-lg" > < / i >
Hashtags
2024-05-01 00:30:11 +00:00
< span id = "sidebar-hashtags-mobile-badge" class = "badge" > < / span >
2023-09-29 12:56:26 -05:00
< / a >
2023-10-04 00:26:14 +00:00
2024-05-01 00:30:11 +00:00
2023-10-04 00:26:14 +00:00
2023-09-29 12:56:26 -05:00
2024-05-01 00:30:11 +00:00
< a title = "Wiki" href = "https://groups.io/g/MTFHRT/wiki" id = "sidebar-wiki-mobile" class = "noborderitem list-group-item sidebar-item sidebar-item-wiki active" >
2023-09-29 12:56:26 -05:00
< i class = "fa-fw fa fa-book fa-lg" > < / i >
Wiki
2024-05-01 00:30:11 +00:00
< span id = "sidebar-wiki-mobile-badge" class = "badge" > < / span >
2023-09-29 12:56:26 -05:00
< / a >
< a class = "noborderitem list-group-item sidebar-item" href = "https://groups.io/static/about" style = "border-top:5px solid #ddd;" >
< i class = "fa-fw fal fa-envelope fa-lg" > < / i >
About
< / a >
< a class = "noborderitem list-group-item sidebar-item" href = "https://groups.io/static/features" >
< i class = "fa-fw far fa-tasks fa-lg" > < / i >
Features
< / a >
< a class = "noborderitem list-group-item sidebar-item" href = "https://groups.io/static/pricing" >
< i class = "fa-fw fa fa-dollar-sign fa-lg" > < / i >
Pricing
< / a >
2025-04-23 00:40:35 +00:00
< a class = "noborderitem list-group-item sidebar-item" href = "https://groups.io/changelog" >
< i class = "fa-fw fa fa-history fa-lg" > < / i >
Changelog
2023-09-29 12:56:26 -05:00
< / a >
< a class = "noborderitem list-group-item sidebar-item" href = "https://groups.io/static/tos" >
< i class = "fa-fw fal fa-newspaper fa-lg" > < / i >
Terms
< / a >
< a class = "noborderitem list-group-item sidebar-item" href = "https://groups.io/helpcenter" >
< i class = "fa-fw fa fa-info-circle fa-lg" > < / i >
Help
< / a >
< / div >
< / div >
< / div >
< / section >
< / div >
< / div >
2024-05-01 00:30:11 +00:00
<!-- Modal Dialog for Autocomplete -->
< div class = "modal fade" id = "quickActionsModal" tabindex = "-1" role = "dialog" aria-labelledby = "modalLabel" aria-hidden = "true" >
< div class = "modal-dialog" role = "document" >
< div class = "modal-content" >
< div class = "modal-body" >
< input type = "text" class = "form-control" id = "quickActionsInput" placeholder = "Go to page..." style = "margin-bottom:10px" >
< div id = "quickActionsContainer" class = "autocompleteResults" style = "max-height:250px; overflow-y: auto;" > < / div >
< div class = "text-center" style = "margin-top:10px; font-size:12px;" > < i class = "fa-sharp fa-arrow-up-arrow-down" > < / i > to navigate < i class = "fa-sharp fa-arrow-turn-down-left" > < / i > to use < strong > esc< / strong > to dismiss< / div >
< / div >
< / div >
< / div >
< / div >
2023-09-29 12:56:26 -05:00
< script >
2024-05-01 00:30:11 +00:00
var quickActionsData = [
{name: "Group Home", url: "https://groups.io/g/MTFHRT"},
{name: "Topics", url: "https://groups.io/g/MTFHRT/topics"},
{name: "Messages", url: "https://groups.io/g/MTFHRT/messages"},
{name: "Expanded Messages", url: "https://groups.io/g/MTFHRT/messages?expanded=1"},
2025-03-12 00:38:21 +00:00
2024-05-01 00:30:11 +00:00
{name: "Polls", url: "https://groups.io/g/MTFHRT/polls"},
{name: "Hashtags", url: "https://groups.io/g/MTFHRT/hashtags"},
{name: "Wiki", url: "https://groups.io/g/MTFHRT/wiki"},
/* other pages */
{name: "Help", url: "/helpcenter"},
{name: "Feed", url: "/feed"},
{name: "Your Groups", url: "/groups"},
{name: "Your Calendar", url: "/calendar"},
{name: "Your Activity", url: "/activity"},
{name: "Your Pending Messages", url: "/pendingmsgs"},
{name: "Account Login", url: "/account"},
{name: "Account Preferences", url: "/account?page=prefs"},
{name: "Account Security", url: "/account?page=security"},
{name: "Account Identity", url: "/account?page=profile& member_info_id=0"},
{name: "Account Notifications", url: "/account?page=notifications"},
{name: "Account Other Services", url: "/account?page=oauth"},
{name: "Account Bounces", url: "/account?page=bounces"},
{name: "Account Billing", url: "/account?page=billing"},
{name: "Find a Group", url: "/search?p=SubsCount,,,20,2,0,0"},
];
InitAutocomplete("quickActions", quickActionsData);
document.addEventListener('keydown', function(event) {
var tagName = event.target.tagName.toLowerCase();
if (tagName === 'input' || tagName === 'textarea' || event.target.isContentEditable) {
return;
2023-09-29 12:56:26 -05:00
}
2024-05-01 00:30:11 +00:00
// check if the viewimages viewer is up
let element = document.getElementById('overlay');
if (element & & element.classList.contains('visible')) {
return;
2023-09-29 12:56:26 -05:00
}
2024-05-01 00:30:11 +00:00
if (event.key.toLowerCase() === '/') {
if (navigator.platform.toUpperCase().indexOf('MAC') >= 0) {
// For Mac
// Check if Command (event.metaKey) is pressed, and either Option (event.altKey) is pressed or not
if (event.metaKey) {
event.preventDefault();
showAutocompleteModal("quickActions");
return;
2023-09-29 12:56:26 -05:00
}
2024-05-01 00:30:11 +00:00
} else {
// For Windows and Linux
if (event.ctrlKey) {
event.preventDefault();
showAutocompleteModal("quickActions");
return;
2023-09-29 12:56:26 -05:00
}
2024-05-01 00:30:11 +00:00
}
2023-09-29 12:56:26 -05:00
}
});
2024-05-01 00:30:11 +00:00
function UpdateSidebar(id) {
console.log(id + " was clicked");
var sidebarItems = document.querySelectorAll('.mobilesidebar-item');
sidebarItems.forEach(function(item) {
var iElement = item.getElementsByTagName('div')[0].getElementsByTagName('i')[0];
if (item.id == "mobilesidebar-" + id) {
console.log("making solid " + id)
iElement.classList.add('fa-solid');
iElement.classList.remove('fa-light');
} else {
iElement.classList.remove('fa-solid');
iElement.classList.add('fa-light');
}
});
var sidebarItems = document.querySelectorAll('.sidebar-item');
// remove 'active' class from all 'sidebar-item' elements
sidebarItems.forEach(function(item) {
if (item.id == "sidebar-" + id) {
console.log("making active " + id)
item.classList.add('active');
} else {
item.classList.remove('active');
}
});
}
2023-09-29 12:56:26 -05:00
< / script >
< / div >
2024-05-08 00:23:09 +00:00
< div id = "scroll-top-outer" >
< div id = "scroll-top" class = "scroll-top-wrapper hidden-xs" >
< span class = "scroll-top-inner" >
< i class = "fa fa-arrow-circle-up fa-fw fa-2x" > < / i >
< / span >
< / div >
2023-09-29 12:56:26 -05:00
< / div >
< script >
$(function() {
$(document).on('scroll', function() {
if ($(window).scrollTop() > 100) {
$('.scroll-top-wrapper').addClass('show');
} else {
$('.scroll-top-wrapper').removeClass('show');
}
});
$('.scroll-top-wrapper').on('click', scrollToTop);
});
function scrollToTop() {
verticalOffset = typeof(verticalOffset) != 'undefined' ? verticalOffset : 0;
element = $('body');
offset = element.offset();
offsetTop = offset.top;
$('html, body').animate({
scrollTop: offsetTop
}, 100, 'linear');
}
2024-05-01 00:30:11 +00:00
if (navigator.platform.toUpperCase().indexOf('MAC') >= 0) {
let elements = document.querySelectorAll('strong.ctrlmeta');
elements.forEach((element) => {
// Check if the innerText is "ctrl"
if (element.innerText === 'ctrl') {
// Create a new "i" element
let newElement = document.createElement('i');
newElement.classList.add('fa-solid', 'fa-command');
// Replace the old "strong" element with the new "i" element
element.parentNode.replaceChild(newElement, element);
}
});
}
2023-09-29 12:56:26 -05:00
< / script >
2023-10-04 00:26:14 +00:00
2023-09-29 12:56:26 -05:00
< / body >
< / html >