<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.hftools.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=HFAdmin</id>
	<title>HF Tools Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.hftools.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=HFAdmin"/>
	<link rel="alternate" type="text/html" href="http://wiki.hftools.org/Special:Contributions/HFAdmin"/>
	<updated>2026-05-10T13:49:27Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=MediaWiki:Common.js&amp;diff=2498</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=MediaWiki:Common.js&amp;diff=2498"/>
		<updated>2026-05-08T04:17:59Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Product-grade HF theme upgrade&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;(function () {&lt;br /&gt;
  var viewport = document.querySelector(&#039;meta[name=&amp;quot;viewport&amp;quot;]&#039;);&lt;br /&gt;
  if (!viewport) {&lt;br /&gt;
    viewport = document.createElement(&#039;meta&#039;);&lt;br /&gt;
    viewport.name = &#039;viewport&#039;;&lt;br /&gt;
    document.head.appendChild(viewport);&lt;br /&gt;
  }&lt;br /&gt;
  viewport.content = &#039;width=device-width, initial-scale=1&#039;;&lt;br /&gt;
&lt;br /&gt;
  function ready(fn) {&lt;br /&gt;
    if (document.readyState !== &#039;loading&#039;) fn();&lt;br /&gt;
    else document.addEventListener(&#039;DOMContentLoaded&#039;, fn);&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  ready(function () {&lt;br /&gt;
    document.querySelectorAll(&#039;.hf-hub-card, .hf-stat-strip div, .hf-timeline div, .hf-review-card&#039;).forEach(function (el) {&lt;br /&gt;
      el.classList.add(&#039;hf-reveal&#039;);&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
    var mount = document.getElementById(&#039;hfHubSearchMount&#039;);&lt;br /&gt;
    if (mount &amp;amp;&amp;amp; !document.getElementById(&#039;hfHubSearch&#039;)) {&lt;br /&gt;
      var placeholder = mount.querySelector(&#039;.hf-command-placeholder&#039;);&lt;br /&gt;
      if (placeholder) placeholder.remove();&lt;br /&gt;
      var input = document.createElement(&#039;input&#039;);&lt;br /&gt;
      input.id = &#039;hfHubSearch&#039;;&lt;br /&gt;
      input.type = &#039;search&#039;;&lt;br /&gt;
      input.placeholder = &#039;Filter hubs, templates, policies...&#039;;&lt;br /&gt;
      input.autocomplete = &#039;off&#039;;&lt;br /&gt;
      mount.appendChild(input);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    var observer = new IntersectionObserver(function (entries) {&lt;br /&gt;
      entries.forEach(function (entry) {&lt;br /&gt;
        if (entry.isIntersecting) {&lt;br /&gt;
          entry.target.classList.add(&#039;is-visible&#039;);&lt;br /&gt;
          observer.unobserve(entry.target);&lt;br /&gt;
        }&lt;br /&gt;
      });&lt;br /&gt;
    }, { threshold: 0.16 });&lt;br /&gt;
&lt;br /&gt;
    document.querySelectorAll(&#039;.hf-reveal&#039;).forEach(function (el) {&lt;br /&gt;
      observer.observe(el);&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
    document.querySelectorAll(&#039;[data-hf-count]&#039;).forEach(function (el) {&lt;br /&gt;
      var target = parseInt(el.getAttribute(&#039;data-hf-count&#039;), 10);&lt;br /&gt;
      var start = performance.now();&lt;br /&gt;
      function tick(now) {&lt;br /&gt;
        var progress = Math.min(1, (now - start) / 900);&lt;br /&gt;
        var eased = 1 - Math.pow(1 - progress, 3);&lt;br /&gt;
        el.textContent = Math.round(target * eased).toLocaleString() + (target &amp;gt; 100 ? &#039;+&#039; : &#039;&#039;);&lt;br /&gt;
        if (progress &amp;lt; 1) requestAnimationFrame(tick);&lt;br /&gt;
      }&lt;br /&gt;
      requestAnimationFrame(tick);&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
    var search = document.getElementById(&#039;hfHubSearch&#039;);&lt;br /&gt;
    var cards = Array.prototype.slice.call(document.querySelectorAll(&#039;.hf-hub-card&#039;));&lt;br /&gt;
    if (search &amp;amp;&amp;amp; cards.length) {&lt;br /&gt;
      search.addEventListener(&#039;input&#039;, function () {&lt;br /&gt;
        var q = search.value.trim().toLowerCase();&lt;br /&gt;
        cards.forEach(function (card) {&lt;br /&gt;
          var text = (card.textContent + &#039; &#039; + (card.getAttribute(&#039;data-hf-filter&#039;) || &#039;&#039;)).toLowerCase();&lt;br /&gt;
          card.classList.toggle(&#039;hf-is-hidden&#039;, q &amp;amp;&amp;amp; text.indexOf(q) === -1);&lt;br /&gt;
        });&lt;br /&gt;
      });&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    function repairBrokenFiles() {&lt;br /&gt;
      var brokenFiles = Array.prototype.slice.call(document.querySelectorAll(&#039;a.new[title^=&amp;quot;File:&amp;quot;]&#039;)).slice(0, 80);&lt;br /&gt;
      if (!brokenFiles.length) return;&lt;br /&gt;
      var titles = brokenFiles.map(function (link) { return link.getAttribute(&#039;title&#039;); });&lt;br /&gt;
      fetch(&#039;/api.php?action=query&amp;amp;prop=imageinfo&amp;amp;iiprop=url&amp;amp;format=json&amp;amp;titles=&#039; + encodeURIComponent(titles.join(&#039;|&#039;)))&lt;br /&gt;
        .then(function (res) { return res.json(); })&lt;br /&gt;
        .then(function (data) {&lt;br /&gt;
          var pages = data &amp;amp;&amp;amp; data.query &amp;amp;&amp;amp; data.query.pages ? data.query.pages : {};&lt;br /&gt;
          var byTitle = {};&lt;br /&gt;
          Object.keys(pages).forEach(function (id) {&lt;br /&gt;
            var page = pages[id];&lt;br /&gt;
            if (page &amp;amp;&amp;amp; page.title &amp;amp;&amp;amp; page.imageinfo &amp;amp;&amp;amp; page.imageinfo[0] &amp;amp;&amp;amp; page.imageinfo[0].url) {&lt;br /&gt;
              byTitle[page.title] = page.imageinfo[0].url;&lt;br /&gt;
            }&lt;br /&gt;
          });&lt;br /&gt;
          brokenFiles.forEach(function (link) {&lt;br /&gt;
            var title = link.getAttribute(&#039;title&#039;);&lt;br /&gt;
            var url = byTitle[title];&lt;br /&gt;
            if (!url) return;&lt;br /&gt;
            var img = document.createElement(&#039;img&#039;);&lt;br /&gt;
            img.src = url;&lt;br /&gt;
            img.alt = title.replace(/^File:/, &#039;&#039;);&lt;br /&gt;
            img.className = &#039;hf-inline-file&#039;;&lt;br /&gt;
            var wrapper = link.closest(&#039;.mw-default-size&#039;) || link;&lt;br /&gt;
            wrapper.replaceWith(img);&lt;br /&gt;
          });&lt;br /&gt;
        })&lt;br /&gt;
        .catch(function () {});&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    repairBrokenFiles();&lt;br /&gt;
    setTimeout(repairBrokenFiles, 600);&lt;br /&gt;
    setTimeout(repairBrokenFiles, 1800);&lt;br /&gt;
  });&lt;br /&gt;
})();&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=MediaWiki:Common.js&amp;diff=2497</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=MediaWiki:Common.js&amp;diff=2497"/>
		<updated>2026-05-08T04:14:24Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Product-grade HF theme upgrade&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;(function () {&lt;br /&gt;
  var viewport = document.querySelector(&#039;meta[name=&amp;quot;viewport&amp;quot;]&#039;);&lt;br /&gt;
  if (!viewport) {&lt;br /&gt;
    viewport = document.createElement(&#039;meta&#039;);&lt;br /&gt;
    viewport.name = &#039;viewport&#039;;&lt;br /&gt;
    document.head.appendChild(viewport);&lt;br /&gt;
  }&lt;br /&gt;
  viewport.content = &#039;width=device-width, initial-scale=1&#039;;&lt;br /&gt;
&lt;br /&gt;
  function ready(fn) {&lt;br /&gt;
    if (document.readyState !== &#039;loading&#039;) fn();&lt;br /&gt;
    else document.addEventListener(&#039;DOMContentLoaded&#039;, fn);&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  ready(function () {&lt;br /&gt;
    document.querySelectorAll(&#039;.hf-hub-card, .hf-stat-strip div, .hf-timeline div, .hf-review-card&#039;).forEach(function (el) {&lt;br /&gt;
      el.classList.add(&#039;hf-reveal&#039;);&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
    var mount = document.getElementById(&#039;hfHubSearchMount&#039;);&lt;br /&gt;
    if (mount &amp;amp;&amp;amp; !document.getElementById(&#039;hfHubSearch&#039;)) {&lt;br /&gt;
      var placeholder = mount.querySelector(&#039;.hf-command-placeholder&#039;);&lt;br /&gt;
      if (placeholder) placeholder.remove();&lt;br /&gt;
      var input = document.createElement(&#039;input&#039;);&lt;br /&gt;
      input.id = &#039;hfHubSearch&#039;;&lt;br /&gt;
      input.type = &#039;search&#039;;&lt;br /&gt;
      input.placeholder = &#039;Filter hubs, templates, policies...&#039;;&lt;br /&gt;
      input.autocomplete = &#039;off&#039;;&lt;br /&gt;
      mount.appendChild(input);&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    var observer = new IntersectionObserver(function (entries) {&lt;br /&gt;
      entries.forEach(function (entry) {&lt;br /&gt;
        if (entry.isIntersecting) {&lt;br /&gt;
          entry.target.classList.add(&#039;is-visible&#039;);&lt;br /&gt;
          observer.unobserve(entry.target);&lt;br /&gt;
        }&lt;br /&gt;
      });&lt;br /&gt;
    }, { threshold: 0.16 });&lt;br /&gt;
&lt;br /&gt;
    document.querySelectorAll(&#039;.hf-reveal&#039;).forEach(function (el) {&lt;br /&gt;
      observer.observe(el);&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
    document.querySelectorAll(&#039;[data-hf-count]&#039;).forEach(function (el) {&lt;br /&gt;
      var target = parseInt(el.getAttribute(&#039;data-hf-count&#039;), 10);&lt;br /&gt;
      var start = performance.now();&lt;br /&gt;
      function tick(now) {&lt;br /&gt;
        var progress = Math.min(1, (now - start) / 900);&lt;br /&gt;
        var eased = 1 - Math.pow(1 - progress, 3);&lt;br /&gt;
        el.textContent = Math.round(target * eased).toLocaleString() + (target &amp;gt; 100 ? &#039;+&#039; : &#039;&#039;);&lt;br /&gt;
        if (progress &amp;lt; 1) requestAnimationFrame(tick);&lt;br /&gt;
      }&lt;br /&gt;
      requestAnimationFrame(tick);&lt;br /&gt;
    });&lt;br /&gt;
&lt;br /&gt;
    var search = document.getElementById(&#039;hfHubSearch&#039;);&lt;br /&gt;
    var cards = Array.prototype.slice.call(document.querySelectorAll(&#039;.hf-hub-card&#039;));&lt;br /&gt;
    if (search &amp;amp;&amp;amp; cards.length) {&lt;br /&gt;
      search.addEventListener(&#039;input&#039;, function () {&lt;br /&gt;
        var q = search.value.trim().toLowerCase();&lt;br /&gt;
        cards.forEach(function (card) {&lt;br /&gt;
          var text = (card.textContent + &#039; &#039; + (card.getAttribute(&#039;data-hf-filter&#039;) || &#039;&#039;)).toLowerCase();&lt;br /&gt;
          card.classList.toggle(&#039;hf-is-hidden&#039;, q &amp;amp;&amp;amp; text.indexOf(q) === -1);&lt;br /&gt;
        });&lt;br /&gt;
      });&lt;br /&gt;
    }&lt;br /&gt;
&lt;br /&gt;
    var brokenFiles = Array.prototype.slice.call(document.querySelectorAll(&#039;a.new[title^=&amp;quot;File:&amp;quot;]&#039;)).slice(0, 80);&lt;br /&gt;
    if (brokenFiles.length) {&lt;br /&gt;
      var titles = brokenFiles.map(function (link) { return link.getAttribute(&#039;title&#039;); });&lt;br /&gt;
      fetch(&#039;/api.php?action=query&amp;amp;prop=imageinfo&amp;amp;iiprop=url&amp;amp;format=json&amp;amp;titles=&#039; + encodeURIComponent(titles.join(&#039;|&#039;)))&lt;br /&gt;
        .then(function (res) { return res.json(); })&lt;br /&gt;
        .then(function (data) {&lt;br /&gt;
          var pages = data &amp;amp;&amp;amp; data.query &amp;amp;&amp;amp; data.query.pages ? data.query.pages : {};&lt;br /&gt;
          var byTitle = {};&lt;br /&gt;
          Object.keys(pages).forEach(function (id) {&lt;br /&gt;
            var page = pages[id];&lt;br /&gt;
            if (page &amp;amp;&amp;amp; page.title &amp;amp;&amp;amp; page.imageinfo &amp;amp;&amp;amp; page.imageinfo[0] &amp;amp;&amp;amp; page.imageinfo[0].url) {&lt;br /&gt;
              byTitle[page.title] = page.imageinfo[0].url;&lt;br /&gt;
            }&lt;br /&gt;
          });&lt;br /&gt;
          brokenFiles.forEach(function (link) {&lt;br /&gt;
            var title = link.getAttribute(&#039;title&#039;);&lt;br /&gt;
            var url = byTitle[title];&lt;br /&gt;
            if (!url) return;&lt;br /&gt;
            var img = document.createElement(&#039;img&#039;);&lt;br /&gt;
            img.src = url;&lt;br /&gt;
            img.alt = title.replace(/^File:/, &#039;&#039;);&lt;br /&gt;
            img.className = &#039;hf-inline-file&#039;;&lt;br /&gt;
            var wrapper = link.closest(&#039;.mw-default-size&#039;) || link;&lt;br /&gt;
            wrapper.replaceWith(img);&lt;br /&gt;
          });&lt;br /&gt;
        })&lt;br /&gt;
        .catch(function () {});&lt;br /&gt;
    }&lt;br /&gt;
  });&lt;br /&gt;
})();&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=MediaWiki:Common.css&amp;diff=2496</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=MediaWiki:Common.css&amp;diff=2496"/>
		<updated>2026-05-08T04:14:24Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Product-grade HF theme upgrade&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;:root {&lt;br /&gt;
  --hf-bg: #080b12;&lt;br /&gt;
  --hf-bg-2: #0d1320;&lt;br /&gt;
  --hf-panel: rgba(17, 24, 39, .84);&lt;br /&gt;
  --hf-panel-solid: #111827;&lt;br /&gt;
  --hf-line: rgba(148, 163, 184, .22);&lt;br /&gt;
  --hf-line-bright: rgba(96, 165, 250, .42);&lt;br /&gt;
  --hf-blue: #4f8cff;&lt;br /&gt;
  --hf-cyan: #34d4ff;&lt;br /&gt;
  --hf-gold: #f4c542;&lt;br /&gt;
  --hf-red: #f05252;&lt;br /&gt;
  --hf-text: #e7edf7;&lt;br /&gt;
  --hf-muted: #9caec7;&lt;br /&gt;
  --hf-ink: #050816;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
html,&lt;br /&gt;
body {&lt;br /&gt;
  background:&lt;br /&gt;
    linear-gradient(180deg, rgba(8, 11, 18, .96), rgba(11, 17, 28, .98)),&lt;br /&gt;
    radial-gradient(circle at 20% 0%, rgba(79, 140, 255, .18), transparent 32%),&lt;br /&gt;
    #080b12 !important;&lt;br /&gt;
  color: var(--hf-text);&lt;br /&gt;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, sans-serif;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
body::before {&lt;br /&gt;
  content: &amp;quot;&amp;quot;;&lt;br /&gt;
  position: fixed;&lt;br /&gt;
  inset: 0;&lt;br /&gt;
  pointer-events: none;&lt;br /&gt;
  z-index: -1;&lt;br /&gt;
  background-image:&lt;br /&gt;
    linear-gradient(rgba(79, 140, 255, .08) 1px, transparent 1px),&lt;br /&gt;
    linear-gradient(90deg, rgba(79, 140, 255, .08) 1px, transparent 1px);&lt;br /&gt;
  background-size: 54px 54px;&lt;br /&gt;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.8), transparent 78%);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
body::after {&lt;br /&gt;
  content: &amp;quot;&amp;quot;;&lt;br /&gt;
  position: fixed;&lt;br /&gt;
  inset: 0;&lt;br /&gt;
  pointer-events: none;&lt;br /&gt;
  z-index: -1;&lt;br /&gt;
  background: linear-gradient(100deg, transparent 0%, rgba(52, 212, 255, .08) 45%, transparent 55%);&lt;br /&gt;
  transform: translateX(-120%);&lt;br /&gt;
  animation: hfScan 8s ease-in-out infinite;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
@keyframes hfScan {&lt;br /&gt;
  0%, 55% { transform: translateX(-120%); }&lt;br /&gt;
  100% { transform: translateX(120%); }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.vector-header-container,&lt;br /&gt;
.vector-page-toolbar,&lt;br /&gt;
.vector-sticky-header,&lt;br /&gt;
.mw-header,&lt;br /&gt;
.mw-page-container,&lt;br /&gt;
.mw-body,&lt;br /&gt;
.vector-feature-page-tools-pinned-enabled .vector-page-tools,&lt;br /&gt;
.vector-feature-appearance-pinned-enabled .vector-appearance {&lt;br /&gt;
  background: transparent !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-page-container {&lt;br /&gt;
  max-width: 1540px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-body {&lt;br /&gt;
  border: 1px solid var(--hf-line) !important;&lt;br /&gt;
  border-radius: 14px;&lt;br /&gt;
  background: rgba(9, 13, 22, .66) !important;&lt;br /&gt;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .32);&lt;br /&gt;
  backdrop-filter: blur(18px);&lt;br /&gt;
  padding: 28px !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-logo-icon,&lt;br /&gt;
.mw-logo-wordmark img,&lt;br /&gt;
.mw-logo-tagline {&lt;br /&gt;
  display: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-logo-container::after {&lt;br /&gt;
  content: &amp;quot;HF Tools Wiki&amp;quot;;&lt;br /&gt;
  color: var(--hf-text);&lt;br /&gt;
  font-weight: 900;&lt;br /&gt;
  letter-spacing: .02em;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-logo-container::before {&lt;br /&gt;
  content: &amp;quot;HF&amp;quot;;&lt;br /&gt;
  display: inline-grid;&lt;br /&gt;
  place-items: center;&lt;br /&gt;
  width: 38px;&lt;br /&gt;
  height: 38px;&lt;br /&gt;
  margin-right: 10px;&lt;br /&gt;
  border-radius: 10px;&lt;br /&gt;
  background: linear-gradient(135deg, #111827, #050816);&lt;br /&gt;
  color: var(--hf-gold);&lt;br /&gt;
  font-weight: 950;&lt;br /&gt;
  border: 1px solid rgba(244, 197, 66, .42);&lt;br /&gt;
  box-shadow: 0 0 28px rgba(244, 197, 66, .14);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.vector-main-menu-landmark,&lt;br /&gt;
.vector-page-tools-landmark,&lt;br /&gt;
.vector-column-start,&lt;br /&gt;
.vector-appearance-landmark {&lt;br /&gt;
  color: var(--hf-muted);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.page-Main_Page .mw-first-heading,&lt;br /&gt;
.page-Main_Page .vector-page-toolbar,&lt;br /&gt;
.page-Main_Page .vector-body-before-content,&lt;br /&gt;
.page-Main_Page .vector-column-start,&lt;br /&gt;
.page-Main_Page .vector-column-end,&lt;br /&gt;
.page-Main_Page .vector-appearance-landmark,&lt;br /&gt;
.page-Main_Page .vector-page-titlebar {&lt;br /&gt;
  display: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.page-Main_Page .mw-body {&lt;br /&gt;
  max-width: 1180px;&lt;br /&gt;
  margin: 0 auto !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.page-Main_Page .mw-page-container,&lt;br /&gt;
.page-Main_Page .mw-content-container,&lt;br /&gt;
.page-Main_Page .mw-body,&lt;br /&gt;
.page-Main_Page .mw-body-content,&lt;br /&gt;
.page-Main_Page .mw-parser-output,&lt;br /&gt;
.page-Main_Page .hf-app-shell {&lt;br /&gt;
  min-width: 0 !important;&lt;br /&gt;
  width: auto !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.page-Main_Page .mw-content-container {&lt;br /&gt;
  margin-left: 0 !important;&lt;br /&gt;
  margin-right: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.page-Main_Page .mw-body-content {&lt;br /&gt;
  margin-top: 0 !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.page-Main_Page .mw-parser-output &amp;gt; p:empty {&lt;br /&gt;
  display: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.vector-toc,&lt;br /&gt;
.vector-page-tools,&lt;br /&gt;
.vector-appearance {&lt;br /&gt;
  background: rgba(8, 12, 20, .55) !important;&lt;br /&gt;
  border-color: var(--hf-line) !important;&lt;br /&gt;
  border-radius: 12px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.vector-toc a,&lt;br /&gt;
.vector-menu-content a,&lt;br /&gt;
.mw-parser-output a,&lt;br /&gt;
a {&lt;br /&gt;
  color: #79aaff;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.vector-page-titlebar,&lt;br /&gt;
.vector-page-toolbar-container,&lt;br /&gt;
.vector-body-before-content,&lt;br /&gt;
.mw-body h1.firstHeading {&lt;br /&gt;
  border-color: var(--hf-line) !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-page-title-main,&lt;br /&gt;
h1, h2, h3, h4,&lt;br /&gt;
.mw-heading h2 {&lt;br /&gt;
  color: var(--hf-text) !important;&lt;br /&gt;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, &amp;quot;Segoe UI&amp;quot;, sans-serif !important;&lt;br /&gt;
  letter-spacing: 0;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-page-title-main {&lt;br /&gt;
  font-weight: 850;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.vector-search-box-input,&lt;br /&gt;
.cdx-text-input__input {&lt;br /&gt;
  background: rgba(255,255,255,.08) !important;&lt;br /&gt;
  border-color: var(--hf-line) !important;&lt;br /&gt;
  color: var(--hf-text) !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cdx-button,&lt;br /&gt;
.searchButton,&lt;br /&gt;
.mw-ui-button {&lt;br /&gt;
  border-radius: 9px !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.mw-footer {&lt;br /&gt;
  color: var(--hf-muted);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.catlinks,&lt;br /&gt;
.toc,&lt;br /&gt;
.mw-parser-output .wikitable,&lt;br /&gt;
.hf-trustbox {&lt;br /&gt;
  background: rgba(255,255,255,.05) !important;&lt;br /&gt;
  border: 1px solid var(--hf-line) !important;&lt;br /&gt;
  color: var(--hf-text);&lt;br /&gt;
  border-radius: 12px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-app-shell {&lt;br /&gt;
  color: var(--hf-text);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-product-hero {&lt;br /&gt;
  position: relative;&lt;br /&gt;
  overflow: hidden;&lt;br /&gt;
  display: grid;&lt;br /&gt;
  grid-template-columns: minmax(0, 1fr) 390px;&lt;br /&gt;
  gap: 28px;&lt;br /&gt;
  align-items: stretch;&lt;br /&gt;
  min-height: 430px;&lt;br /&gt;
  padding: 38px;&lt;br /&gt;
  border: 1px solid var(--hf-line-bright);&lt;br /&gt;
  border-radius: 18px;&lt;br /&gt;
  background:&lt;br /&gt;
    linear-gradient(135deg, rgba(15, 23, 42, .94), rgba(10, 15, 25, .92)),&lt;br /&gt;
    linear-gradient(90deg, rgba(79, 140, 255, .18), transparent);&lt;br /&gt;
  box-shadow: 0 28px 90px rgba(0,0,0,.35);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-product-hero::before {&lt;br /&gt;
  content: &amp;quot;&amp;quot;;&lt;br /&gt;
  position: absolute;&lt;br /&gt;
  inset: 0;&lt;br /&gt;
  pointer-events: none;&lt;br /&gt;
  background:&lt;br /&gt;
    linear-gradient(90deg, rgba(255,255,255,.07), transparent 18%),&lt;br /&gt;
    repeating-linear-gradient(90deg, transparent 0 72px, rgba(79,140,255,.09) 73px 74px);&lt;br /&gt;
  opacity: .65;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-hero-copy,&lt;br /&gt;
.hf-ops-panel {&lt;br /&gt;
  position: relative;&lt;br /&gt;
  z-index: 1;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-overline {&lt;br /&gt;
  display: inline-flex;&lt;br /&gt;
  align-items: center;&lt;br /&gt;
  min-height: 30px;&lt;br /&gt;
  padding: 0 11px;&lt;br /&gt;
  border: 1px solid rgba(244,197,66,.38);&lt;br /&gt;
  border-radius: 999px;&lt;br /&gt;
  color: var(--hf-gold);&lt;br /&gt;
  background: rgba(244,197,66,.08);&lt;br /&gt;
  font-weight: 800;&lt;br /&gt;
  text-transform: uppercase;&lt;br /&gt;
  font-size: 12px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-product-hero h1 {&lt;br /&gt;
  margin: 24px 0 14px;&lt;br /&gt;
  font-size: clamp(54px, 8vw, 104px) !important;&lt;br /&gt;
  line-height: .88 !important;&lt;br /&gt;
  font-weight: 950 !important;&lt;br /&gt;
  text-shadow: 0 0 34px rgba(79,140,255,.16);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-product-hero p {&lt;br /&gt;
  max-width: 780px;&lt;br /&gt;
  color: var(--hf-muted);&lt;br /&gt;
  font-size: 20px;&lt;br /&gt;
  line-height: 1.55;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-command {&lt;br /&gt;
  display: grid;&lt;br /&gt;
  grid-template-columns: auto minmax(0, 1fr);&lt;br /&gt;
  gap: 14px;&lt;br /&gt;
  align-items: center;&lt;br /&gt;
  max-width: 760px;&lt;br /&gt;
  margin-top: 30px;&lt;br /&gt;
  padding: 9px 12px;&lt;br /&gt;
  border: 1px solid var(--hf-line);&lt;br /&gt;
  border-radius: 14px;&lt;br /&gt;
  background: rgba(255,255,255,.07);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-command span {&lt;br /&gt;
  color: var(--hf-cyan);&lt;br /&gt;
  font-weight: 800;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-command input {&lt;br /&gt;
  min-height: 44px;&lt;br /&gt;
  min-width: 0;&lt;br /&gt;
  border: 0;&lt;br /&gt;
  outline: 0;&lt;br /&gt;
  background: transparent;&lt;br /&gt;
  color: var(--hf-text);&lt;br /&gt;
  font: inherit;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-actions {&lt;br /&gt;
  display: flex;&lt;br /&gt;
  flex-wrap: wrap;&lt;br /&gt;
  gap: 12px;&lt;br /&gt;
  margin-top: 22px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-action-primary a,&lt;br /&gt;
.hf-action-secondary a,&lt;br /&gt;
.hf-review-link a,&lt;br /&gt;
.hf-section-link a {&lt;br /&gt;
  display: inline-flex;&lt;br /&gt;
  align-items: center;&lt;br /&gt;
  justify-content: center;&lt;br /&gt;
  min-height: 42px;&lt;br /&gt;
  padding: 0 16px;&lt;br /&gt;
  border-radius: 10px;&lt;br /&gt;
  font-weight: 850;&lt;br /&gt;
  text-decoration: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-action-primary a,&lt;br /&gt;
.hf-review-link a {&lt;br /&gt;
  color: #fff !important;&lt;br /&gt;
  background: linear-gradient(135deg, var(--hf-blue), #2563eb);&lt;br /&gt;
  box-shadow: 0 14px 30px rgba(37,99,235,.28);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-action-secondary a,&lt;br /&gt;
.hf-section-link a {&lt;br /&gt;
  color: var(--hf-text) !important;&lt;br /&gt;
  border: 1px solid var(--hf-line);&lt;br /&gt;
  background: rgba(255,255,255,.06);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-ops-panel,&lt;br /&gt;
.hf-review-card,&lt;br /&gt;
.hf-hub-card,&lt;br /&gt;
.hf-stat-strip div,&lt;br /&gt;
.hf-timeline div {&lt;br /&gt;
  border: 1px solid var(--hf-line);&lt;br /&gt;
  border-radius: 16px;&lt;br /&gt;
  background: rgba(255,255,255,.06);&lt;br /&gt;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-ops-panel {&lt;br /&gt;
  padding: 22px;&lt;br /&gt;
  align-self: stretch;&lt;br /&gt;
  backdrop-filter: blur(16px);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-panel-head {&lt;br /&gt;
  display: flex;&lt;br /&gt;
  align-items: center;&lt;br /&gt;
  gap: 10px;&lt;br /&gt;
  margin-bottom: 18px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-status-dot {&lt;br /&gt;
  width: 11px;&lt;br /&gt;
  height: 11px;&lt;br /&gt;
  border-radius: 50%;&lt;br /&gt;
  background: #22c55e;&lt;br /&gt;
  box-shadow: 0 0 20px rgba(34,197,94,.8);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-ops-grid {&lt;br /&gt;
  display: grid;&lt;br /&gt;
  grid-template-columns: 1fr 1fr;&lt;br /&gt;
  gap: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-ops-grid div {&lt;br /&gt;
  padding: 13px;&lt;br /&gt;
  border-radius: 12px;&lt;br /&gt;
  background: rgba(0,0,0,.24);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-ops-grid span,&lt;br /&gt;
.hf-stat-strip span {&lt;br /&gt;
  display: block;&lt;br /&gt;
  color: var(--hf-muted);&lt;br /&gt;
  font-size: 12px;&lt;br /&gt;
  text-transform: uppercase;&lt;br /&gt;
  font-weight: 800;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-ops-grid strong {&lt;br /&gt;
  display: block;&lt;br /&gt;
  margin-top: 5px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-signal {&lt;br /&gt;
  margin-top: 16px;&lt;br /&gt;
  padding: 14px;&lt;br /&gt;
  border-left: 3px solid var(--hf-gold);&lt;br /&gt;
  background: rgba(244,197,66,.08);&lt;br /&gt;
  color: #dbe7ff;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-stat-strip {&lt;br /&gt;
  display: grid;&lt;br /&gt;
  grid-template-columns: repeat(4, minmax(0, 1fr));&lt;br /&gt;
  gap: 14px;&lt;br /&gt;
  margin: 18px 0 34px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-stat-strip div {&lt;br /&gt;
  padding: 18px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-stat-strip strong {&lt;br /&gt;
  display: block;&lt;br /&gt;
  color: var(--hf-text);&lt;br /&gt;
  font-size: 30px;&lt;br /&gt;
  font-weight: 950;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-section,&lt;br /&gt;
.hf-two-col {&lt;br /&gt;
  margin-top: 34px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-section-head {&lt;br /&gt;
  display: flex;&lt;br /&gt;
  align-items: end;&lt;br /&gt;
  justify-content: space-between;&lt;br /&gt;
  gap: 16px;&lt;br /&gt;
  margin-bottom: 16px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-section-head span {&lt;br /&gt;
  color: var(--hf-cyan);&lt;br /&gt;
  font-size: 12px;&lt;br /&gt;
  font-weight: 900;&lt;br /&gt;
  text-transform: uppercase;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-section-head h2 {&lt;br /&gt;
  margin: 4px 0 0;&lt;br /&gt;
  font-size: 30px;&lt;br /&gt;
  font-weight: 950;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-hub-grid {&lt;br /&gt;
  display: grid;&lt;br /&gt;
  grid-template-columns: repeat(3, minmax(0, 1fr));&lt;br /&gt;
  gap: 15px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-hub-card {&lt;br /&gt;
  position: relative;&lt;br /&gt;
  overflow: hidden;&lt;br /&gt;
  min-height: 185px;&lt;br /&gt;
  padding: 20px;&lt;br /&gt;
  color: var(--hf-text) !important;&lt;br /&gt;
  text-decoration: none !important;&lt;br /&gt;
  transition: transform .22s ease, border-color .22s ease, background .22s ease;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-hub-card::before {&lt;br /&gt;
  content: &amp;quot;&amp;quot;;&lt;br /&gt;
  position: absolute;&lt;br /&gt;
  inset: 0;&lt;br /&gt;
  background: linear-gradient(135deg, rgba(79,140,255,.18), transparent 44%);&lt;br /&gt;
  opacity: 0;&lt;br /&gt;
  transition: opacity .22s ease;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-hub-card:hover {&lt;br /&gt;
  transform: translateY(-4px);&lt;br /&gt;
  border-color: var(--hf-line-bright);&lt;br /&gt;
  background: rgba(79,140,255,.1);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-hub-card:hover::before {&lt;br /&gt;
  opacity: 1;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-hub-card span,&lt;br /&gt;
.hf-hub-card strong,&lt;br /&gt;
.hf-hub-card p {&lt;br /&gt;
  position: relative;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-hub-card span {&lt;br /&gt;
  display: inline-flex;&lt;br /&gt;
  padding: 4px 9px;&lt;br /&gt;
  border-radius: 999px;&lt;br /&gt;
  background: rgba(244,197,66,.1);&lt;br /&gt;
  color: var(--hf-gold);&lt;br /&gt;
  font-size: 12px;&lt;br /&gt;
  font-weight: 850;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-hub-card strong {&lt;br /&gt;
  display: block;&lt;br /&gt;
  margin: 16px 0 10px;&lt;br /&gt;
  color: #dbe8ff;&lt;br /&gt;
  font-size: 21px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-hub-card p {&lt;br /&gt;
  color: var(--hf-muted);&lt;br /&gt;
  line-height: 1.48;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-two-col {&lt;br /&gt;
  display: grid;&lt;br /&gt;
  grid-template-columns: minmax(0, 1fr) 360px;&lt;br /&gt;
  gap: 18px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-timeline {&lt;br /&gt;
  display: grid;&lt;br /&gt;
  gap: 12px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-timeline div {&lt;br /&gt;
  display: grid;&lt;br /&gt;
  gap: 5px;&lt;br /&gt;
  padding: 17px;&lt;br /&gt;
  color: var(--hf-text) !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-timeline span,&lt;br /&gt;
.hf-review-card p {&lt;br /&gt;
  color: var(--hf-muted);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-review-card {&lt;br /&gt;
  padding: 22px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-chip {&lt;br /&gt;
  display: inline-flex;&lt;br /&gt;
  padding: 5px 10px;&lt;br /&gt;
  border-radius: 999px;&lt;br /&gt;
  background: rgba(52,212,255,.1);&lt;br /&gt;
  color: var(--hf-cyan);&lt;br /&gt;
  font-size: 12px;&lt;br /&gt;
  font-weight: 900;&lt;br /&gt;
  text-transform: uppercase;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-review-card h2 {&lt;br /&gt;
  margin: 18px 0 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-trustbox {&lt;br /&gt;
  padding: 14px;&lt;br /&gt;
  border-left: 3px solid var(--hf-blue) !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-reveal {&lt;br /&gt;
  opacity: 1;&lt;br /&gt;
  transform: translateY(0);&lt;br /&gt;
  transition: opacity .55s ease, transform .55s ease;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-reveal.is-visible {&lt;br /&gt;
  opacity: 1;&lt;br /&gt;
  transform: translateY(0);&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-is-hidden {&lt;br /&gt;
  display: none !important;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.hf-inline-file {&lt;br /&gt;
  display: inline-block;&lt;br /&gt;
  max-width: 100%;&lt;br /&gt;
  height: auto;&lt;br /&gt;
  vertical-align: middle;&lt;br /&gt;
  margin-right: 4px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
@media (max-width: 1000px) {&lt;br /&gt;
  .hf-product-hero,&lt;br /&gt;
  .hf-two-col,&lt;br /&gt;
  .hf-stat-strip,&lt;br /&gt;
  .hf-hub-grid {&lt;br /&gt;
    grid-template-columns: 1fr;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-product-hero {&lt;br /&gt;
    padding: 24px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-command {&lt;br /&gt;
    grid-template-columns: 1fr;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
@media (max-width: 700px) {&lt;br /&gt;
  html,&lt;br /&gt;
  body {&lt;br /&gt;
    overflow-x: hidden;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .vector-header-container {&lt;br /&gt;
    min-height: 56px;&lt;br /&gt;
    width: 100% !important;&lt;br /&gt;
    max-width: 100vw !important;&lt;br /&gt;
    box-sizing: border-box;&lt;br /&gt;
    overflow: hidden;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .page-Main_Page .vector-header-container {&lt;br /&gt;
    padding-inline: 12px !important;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .page-Main_Page .vector-header-container .vector-search-box,&lt;br /&gt;
  .page-Main_Page .vector-header-container .vector-user-links,&lt;br /&gt;
  .page-Main_Page #p-dock-bottom {&lt;br /&gt;
    display: none !important;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .page-Main_Page .mw-page-container {&lt;br /&gt;
    padding: 0 !important;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .page-Main_Page .mw-content-container {&lt;br /&gt;
    max-width: 100vw !important;&lt;br /&gt;
    padding: 0 !important;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .page-Main_Page .mw-body {&lt;br /&gt;
    max-width: none !important;&lt;br /&gt;
    margin: 0 !important;&lt;br /&gt;
    padding: 12px !important;&lt;br /&gt;
    border-left: 0 !important;&lt;br /&gt;
    border-right: 0 !important;&lt;br /&gt;
    border-radius: 0;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-app-shell {&lt;br /&gt;
    gap: 14px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-product-hero {&lt;br /&gt;
    min-height: auto;&lt;br /&gt;
    padding: 14px;&lt;br /&gt;
    gap: 12px;&lt;br /&gt;
    border-radius: 12px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-overline {&lt;br /&gt;
    min-height: 24px;&lt;br /&gt;
    padding: 0 8px;&lt;br /&gt;
    font-size: 10px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-product-hero h1 {&lt;br /&gt;
    margin: 14px 0 10px;&lt;br /&gt;
    font-size: 34px !important;&lt;br /&gt;
    line-height: .94 !important;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-product-hero p {&lt;br /&gt;
    font-size: 14px;&lt;br /&gt;
    line-height: 1.45;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-command {&lt;br /&gt;
    margin-top: 16px;&lt;br /&gt;
    padding: 10px;&lt;br /&gt;
    border-radius: 10px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-action-row,&lt;br /&gt;
  .hf-review-meta {&lt;br /&gt;
    grid-template-columns: 1fr;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-action-primary a,&lt;br /&gt;
  .hf-action-secondary a {&lt;br /&gt;
    width: 100%;&lt;br /&gt;
    justify-content: center;&lt;br /&gt;
    min-height: 38px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-ops-panel,&lt;br /&gt;
  .hf-review-card,&lt;br /&gt;
  .hf-hub-card,&lt;br /&gt;
  .hf-template-card {&lt;br /&gt;
    border-radius: 10px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-ops-panel {&lt;br /&gt;
    padding: 12px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-panel-head {&lt;br /&gt;
    margin-bottom: 12px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-ops-grid {&lt;br /&gt;
    grid-template-columns: 1fr 1fr;&lt;br /&gt;
    gap: 8px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-ops-grid div {&lt;br /&gt;
    padding: 10px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-signal {&lt;br /&gt;
    display: none;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-stat-strip {&lt;br /&gt;
    grid-template-columns: 1fr 1fr;&lt;br /&gt;
    gap: 10px;&lt;br /&gt;
    margin: 12px 0 22px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-stat-strip div {&lt;br /&gt;
    padding: 12px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-stat-strip strong {&lt;br /&gt;
    font-size: 22px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-hub-grid {&lt;br /&gt;
    gap: 12px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-hub-card {&lt;br /&gt;
    min-height: 0;&lt;br /&gt;
    padding: 16px;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-section-head {&lt;br /&gt;
    display: block;&lt;br /&gt;
  }&lt;br /&gt;
&lt;br /&gt;
  .hf-section-head h2 {&lt;br /&gt;
    font-size: 26px;&lt;br /&gt;
  }&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Legalize_It&amp;diff=2495</id>
		<title>Legalize It</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Legalize_It&amp;diff=2495"/>
		<updated>2026-05-08T04:11:57Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Legalize_It source revision 2019-02-09T22:56:32Z; refreshed 2026-05-08T04:11:57+00:00 --&amp;gt;&lt;br /&gt;
{{AwardBox&lt;br /&gt;
| AwardDesc    = If you&#039;re in support of legalizing cannabis you can obtain this award with a $50 BTC purchase. 25% of all donations get sent to NORML.org. You can obtain it [http://www.hackforums.net/legalize.php HERE].&lt;br /&gt;
| AwardType    = Discontinued&lt;br /&gt;
| AwardID      = 79&lt;br /&gt;
| AwardDetails = The Legalize It award is a donator-only award given to members who donate $50 via  Bitcoin to [[Hack Forums]] in a single transaction. 25% of all revenue amassed from this award is sent to [http://norml.org/ the NORML Foundation]. To purchase this award, see [http://www.hackforums.net/legalize.php this page]. To purchase all other awards, see [http://www.hackforums.net/buyawards.php this page].&lt;br /&gt;
| AwardRecip   = To see a complete list of which members have this award, click [http://www.hackforums.net/myawards.php?awid=79 here.]&lt;br /&gt;
== Information about Donating for Awards ==&lt;br /&gt;
{{Quote|Donating and purchasing awards allows HF to continue to exist. Many members like to show their support for this website. Awards are a status symbol for accounts so that all members know you&#039;ve contributed to the site. The award will automatically be added to your account immediately after confirmation of payment. Please note that normally within 48 hours of your purchase you will probably get a personal thank you from the site owner. All members are valued but those who donate at the very least deserve an extra bit of personal appreciation. Those making high-end donations might also receive bonus awards and custom reasons in the award description. Thanks to all members who positively contribute to the community whether it&#039;s via donations or simply being part of this site.|[[Omniscient]]|[http://www.hackforums.net/buyawards.php Donation Awards]}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Grand_Amethyst&amp;diff=2494</id>
		<title>Grand Amethyst</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Grand_Amethyst&amp;diff=2494"/>
		<updated>2026-05-08T04:11:57Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Grand_Amethyst source revision 2021-03-29T14:52:56Z; refreshed 2026-05-08T04:11:56+00:00 --&amp;gt;&lt;br /&gt;
{{AwardBox&lt;br /&gt;
| AwardDesc    = For the grandest of members who&#039;ve donated one grand to HF.&lt;br /&gt;
| AwardType    = Paid&lt;br /&gt;
| AwardID      = 80&lt;br /&gt;
| AwardDetails = The Grand Amethyst award is a donator-only award given to members who donate $1000 via Bitcoin to [[Hack Forums]] in a single transaction. This award was created after Omniscient announced that the Master Donator would only be purchasable in a single $500 transaction, as opposed to previously being obtainable through cumulative donations that equaled or surpassed $500. To purchase this award and others, see [http://www.hackforums.net/buyawards.php this page].&lt;br /&gt;
| AwardRecip   = To see a complete list of which members have this award, click [http://www.hackforums.net/myawards.php?awid=80 here.]&lt;br /&gt;
== Information about Donating for Awards ==&lt;br /&gt;
{{Quote|Donating and purchasing awards allows HF to continue to exist. Many members like to show their support for this website. Awards are a status symbol for accounts so that all members know you&#039;ve contributed to the site. The award will automatically be added to your account immediately after confirmation of payment. Please note that normally within 48 hours of your purchase you will probably get a personal thank you from the site owner. All members are valued but those who donate at the very least deserve an extra bit of personal appreciation. Those making high-end donations might also receive bonus awards and custom reasons in the award description. Thanks to all members who positively contribute to the community whether it&#039;s via donations or simply being part of this site.|[[Omniscient]]|[http://www.hackforums.net/buyawards.php Donation Awards]}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Disallowed_Blackhat_Activity&amp;diff=2493</id>
		<title>Disallowed Blackhat Activity</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Disallowed_Blackhat_Activity&amp;diff=2493"/>
		<updated>2026-05-08T04:11:56Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Disallowed_Blackhat_Activity source revision 2015-07-22T15:33:44Z; refreshed 2026-05-08T04:11:56+00:00 --&amp;gt;&lt;br /&gt;
These are the blackhat hacking activities that we do not allow as part of our discussions here on Hack Forums. We don&#039;t explain the logic behind each forbidden activity, but it&#039;s somewhere between morality, ethics, and legality for each one. We ask that members do not participate in discussion around the following topics. If you&#039;ve received a warning and been asked to read this, please do so carefully.&lt;br /&gt;
&lt;br /&gt;
==Phishing==&lt;br /&gt;
This was removed from topics on HF a very long time ago. This includes posting phishing tutorials, questions on creating phishing pages, and just about any discussion on the topic. We don&#039;t feel this topic adds any value to our community nor does it assist members in becoming better hackers.&lt;br /&gt;
&lt;br /&gt;
==Dumps / Combo Lists==&lt;br /&gt;
Providing accounts that don&#039;t belong to you, whether in trades, for sale, or free, dumps are not allowed. The definition of a dump is a file with logins, passwords, personal details or emails. We do define &amp;quot;combo lists&amp;quot; as dumps as well.&lt;br /&gt;
&lt;br /&gt;
==Financial Fraud==&lt;br /&gt;
We take this very seriously. We do not allow posts in relation to these subjects. Selling information of any sort that has been stolen, in any way, is against the rules. Any information posted that&#039;s designed to commit financial fraud may result in the immediate closing of your account.&lt;br /&gt;
&lt;br /&gt;
==Virtual Credit Cards (VCC), Prepaid Credit Cards, Gift Cards and Virtual Bank Accounts (VBA)==&lt;br /&gt;
We understand that there might be a valid purpose and use for these discussions, but we&#039;ve decided to remove them from HF in an effort to stay on a more legitimate topic level.&lt;br /&gt;
&lt;br /&gt;
==Identity Theft==&lt;br /&gt;
This is another topic we feel is purely criminal in nature and we won&#039;t allow that here. Topics on stealing identities will be removed immediately.&lt;br /&gt;
&lt;br /&gt;
==Paypal Fraud==&lt;br /&gt;
With PP fraud rampant in the hacker community we feel it&#039;s our duty to take a stand on this one. We will not allow discussion on selling of paypal accounts, stealing accounts, or verifying accounts with false information. Basically if you&#039;re doing something against the TOS of paypal, you&#039;re breaking a rule here.&lt;br /&gt;
&lt;br /&gt;
==Paypal Holders==&lt;br /&gt;
We consider this financial fraud and a huge risk to our members. Anyone using this type of service or offering it to members will have their accounts immediately closed.&lt;br /&gt;
&lt;br /&gt;
==Financial Crimeware==&lt;br /&gt;
Software that has the intended goal of stealing financial data such as bank info or credit card data from those who get infected. For this reason any discussions on this type of software will be disallowed. Zeus, Beta Bot, and SpyEye are examples of Financial Crimeware.&lt;br /&gt;
&lt;br /&gt;
==Amazon/Ebay Account Trading==&lt;br /&gt;
Any buying, selling, or trading of Ebay/Amazon accounts is not allowed due to the fact that these accounts have credit cards and personal information attached.&lt;br /&gt;
&lt;br /&gt;
==Ebay Partnerships==&lt;br /&gt;
We no longer allow partnership offers concerning Ebay accounts. They&#039;re being used to commit fraud. And as such we&#039;ve disallowed the activity here.&lt;br /&gt;
&lt;br /&gt;
==Drop Shipping==&lt;br /&gt;
Guides, threads, and services related to drop shipping will not be allowed on HF.&lt;br /&gt;
&lt;br /&gt;
==Fake Programs==&lt;br /&gt;
We do not allow the distribution of fake programs that are infected. Nor do we allow the discussion of fake program creation.&lt;br /&gt;
&lt;br /&gt;
==Product Keys and Unlicensed Software==&lt;br /&gt;
Product keys, key gens, serials and software cracks are not allowed. This includes the selling, trading, or requesting of any illegal unlicensed product keys. HF is not a warez forum and we will no longer tolerate our site being used as one.&lt;br /&gt;
&lt;br /&gt;
==PID&#039;s and Call-Ins==&lt;br /&gt;
As this is pure fraud we will not allow this type of discussion here. That includes ebooks, threads, sigs, social engineering section, and marketplace.&lt;br /&gt;
&lt;br /&gt;
==Bitcoin and Cryptocurrency Fraud==&lt;br /&gt;
We consider crypto currency an excellent choice for payments here on HF. And while they have no official government backing we feel they have value to this community. As such any cryptocurrency fraud will be considered financial fraud. Discussion on stealing wallets including RATS will not be allowed on HF.&lt;br /&gt;
&lt;br /&gt;
==Blackmail and Extortion==&lt;br /&gt;
We do not want this type of discussion here. Obvious criminal activity and very illegal.&lt;br /&gt;
&lt;br /&gt;
==Ransomware==&lt;br /&gt;
Any software that&#039;s meant to lock a computer and demand payment or action for removal is ransomware and is not allowed on HF. This includes products such as Survey Lockers.&lt;br /&gt;
&lt;br /&gt;
==Xbox Products==&lt;br /&gt;
Due to the heavy amount of fraudulent deals around MS Xbox products such as the xbox one, games, xbox live points and MS points. We do not allow any sales, trades, or marketplace activity based on these products. No exceptions.&lt;br /&gt;
&lt;br /&gt;
==Apple Products==&lt;br /&gt;
Due to the heavy amount of fraudulent deals around Apple products such as the ipad, iphone, and ipods. We do not allow any sales, trades, or marketplace activity based on Apple products. No exceptions.&lt;br /&gt;
&lt;br /&gt;
==Amazon Kindles==&lt;br /&gt;
Due to the heavy amount of fraudulent deals around Amazon Kindles. We do not allow any sales, trades, or marketplace activity based on Kindle products. No exceptions.&lt;br /&gt;
&lt;br /&gt;
==Steam Gifts==&lt;br /&gt;
We don&#039;t allow selling of Steam games as keys or gifts. You may only sell Steam accounts in the Non-Free Accounts forum in the Marketplace.&lt;br /&gt;
&lt;br /&gt;
==Refund Services==&lt;br /&gt;
To help someone get a refund fraudulently is not allowed on HF. No refund services whatsoever for any product or service.&lt;br /&gt;
&lt;br /&gt;
==HYIP &amp;amp; Ponzi==&lt;br /&gt;
This type of garbage won&#039;t be tolerated here. And don&#039;t bother calling it &amp;quot;investments&amp;quot; either. If you&#039;re promising a high-yield short-term return you will get your account closed.&lt;br /&gt;
&lt;br /&gt;
==Deepweb Discussion==&lt;br /&gt;
Deepweb is a phrase to describe hidden websites on the internet that are often, but not always, directly related to illegal activity such as child porn, carding, hitmen, and other very illicit material. As such we&#039;re not going to allow it here. Not even the slightest discussion of the deepweb will be allowed.&lt;br /&gt;
&lt;br /&gt;
==Movie Torrents, Download, and Illegal Viewing==&lt;br /&gt;
Members are not allowed to use HF to spread illegal movie torrents or downloads. We also extend this to illegal viewing movie sites. HF is not a warez site.&lt;br /&gt;
&lt;br /&gt;
==Gambling==&lt;br /&gt;
We don&#039;t allow the site to be used for gambling which entails on-site lotteries, pools, or drawings. Discussion of gambling itself is allowed.&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Documents]]&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Copyright_Information_and_DMCA_claims&amp;diff=2492</id>
		<title>Copyright Information and DMCA claims</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Copyright_Information_and_DMCA_claims&amp;diff=2492"/>
		<updated>2026-05-08T04:11:56Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Copyright_Information_and_DMCA_claims source revision 2016-09-02T15:06:15Z; refreshed 2026-05-08T04:11:55+00:00 --&amp;gt;&lt;br /&gt;
==Copyright Violations, Abuse, and Notification==&lt;br /&gt;
&lt;br /&gt;
Copyright holders that wish to have content removed can do so by contacting us via our http://www.hackforums.net/contact.php contact form and selecting Copyright Violation. Please include URL of the post in question along with your statement. We will also require reasonable proof of your copyright such as a link to your own site or material. Content will be removed swiftly. &lt;br /&gt;
&lt;br /&gt;
[[Category:Help Documents]]&lt;br /&gt;
[[Category:Flagged]]&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Becoming_Staff&amp;diff=2491</id>
		<title>Becoming Staff</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Becoming_Staff&amp;diff=2491"/>
		<updated>2026-05-08T04:11:55Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Becoming_Staff source revision 2015-07-22T15:30:04Z; refreshed 2026-05-08T04:11:55+00:00 --&amp;gt;&lt;br /&gt;
==What are the requirements to become staff?==&lt;br /&gt;
We have no specific requirements to list for you. However it stands to reason a staff member should be well respected, understanding of the current rules, mature, and professional. Account activity may also play a role. This doesn&#039;t mean 3000 posts of garbage will get you on staff. The quality of your membership is going to be based on the quality of your posts.&lt;br /&gt;
&lt;br /&gt;
==How are staff chosen?==&lt;br /&gt;
Staff are selected by Omniscient with the input of the other staff members. Normally staff starts a nomination list and members are reviewed for a few days. Then an invite is sent to the member asking if they would like to be on the staff.&lt;br /&gt;
&lt;br /&gt;
==Can I moderate a specific section?==&lt;br /&gt;
We only have a few forum moderators on the site. Some forums don&#039;t require a moderator at all. The forums that do require a moderator will have one chosen by Omniscient.&lt;br /&gt;
&lt;br /&gt;
==Should I send Omni a PM about being on staff?==&lt;br /&gt;
Absolutely do not PM Omniscient. You will not get a response or at least one you will like. Staff members do not nominate themselves. Staff are chosen and invited.&lt;br /&gt;
&lt;br /&gt;
==Are staff paid?==&lt;br /&gt;
Staff are not paid on HF. Each staff member is a volunteer.&lt;br /&gt;
&lt;br /&gt;
==If I become staff can I abuse other members?==&lt;br /&gt;
Nope. You&#039;ll be removed and probably banned. &lt;br /&gt;
&lt;br /&gt;
[[Category:Help Documents]]&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Crypto_Currency&amp;diff=2490</id>
		<title>Crypto Currency</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Crypto_Currency&amp;diff=2490"/>
		<updated>2026-05-08T04:11:54Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Crypto_Currency source revision 2015-07-25T17:58:17Z; refreshed 2026-05-08T04:11:54+00:00 --&amp;gt;&lt;br /&gt;
{{ForumBox&lt;br /&gt;
| ForumName   = Crypto Currency&lt;br /&gt;
| ForumPic    = Crypto Currency (Ficon).png&lt;br /&gt;
| ForumDesc   = For all discussion on crypto currency such as Bitcoin and Litecoin post here. Topics include mining, wallets, setup, monetization, and general digital currency talk. &lt;br /&gt;
| FID         = 277&lt;br /&gt;
| Status      = Open&lt;br /&gt;
| Overview    = A forum used to discuss crypto currencies such as Bitcoin and Litecoin. &lt;br /&gt;
| Rules       = # No advertising of Ponzi or Pyramid schemes.&lt;br /&gt;
| Mod1        = Mentors&lt;br /&gt;
| Tab         = Money&lt;br /&gt;
| SubForum1   = Omnicoin&lt;br /&gt;
| Sticky1     = Guide on how to setup a mining rig!&lt;br /&gt;
| StickyTID1  = 4004983&lt;br /&gt;
| Author1     = Crypto Miner&lt;br /&gt;
| Sticky2     = BTC-E &amp;amp; BitcoinWisdom Explained &amp;amp; Tips On How To Trade And Make Profit.&lt;br /&gt;
| StickyTID2  = 4056519&lt;br /&gt;
| Author2     = mad&lt;br /&gt;
| Sticky3     = Cryptocurrencies: Most common questions answered&lt;br /&gt;
| StickyTID3  = 3651613&lt;br /&gt;
| Author3     = boing&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Benefactor&amp;diff=2489</id>
		<title>Benefactor</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Benefactor&amp;diff=2489"/>
		<updated>2026-05-08T04:11:53Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Benefactor source revision 2021-03-29T14:32:01Z; refreshed 2026-05-08T04:11:53+00:00 --&amp;gt;&lt;br /&gt;
{{AwardBox&lt;br /&gt;
| AwardDesc    = You support HF with your green stuff.&lt;br /&gt;
| AwardType    = Paid&lt;br /&gt;
| AwardID      = 83&lt;br /&gt;
| AwardDetails = The Benefactor award is a donator-only award given to members who donate $200 via Bitcoin to [[Hack Forums]] in a single transaction. It is a smaller form of the [[Master Donator]] and [[Grand Amethyst]] awards that still allows members to contribute a sum of money that is neither too big nor small. To purchase this award, see [http://www.hackforums.net/buyawards.php this page].&lt;br /&gt;
&lt;br /&gt;
| AwardRecip   = To see a complete list of which members have this award, click [http://www.hackforums.net/myawards.php?awid=83 here.]&lt;br /&gt;
== Information about Donating for Awards ==&lt;br /&gt;
{{Quote|Donating and purchasing awards allows HF to continue to exist. Many members like to show their support for this website. Awards are a status symbol for accounts so that all members know you&#039;ve contributed to the site. The award will automatically be added to your account immediately after confirmation of payment. Please note that normally within 48 hours of your purchase you will probably get a personal thank you from the site owner. All members are valued but those who donate at the very least deserve an extra bit of personal appreciation. Those making high-end donations might also receive bonus awards and custom reasons in the award description. Thanks to all members who positively contribute to the community whether it&#039;s via donations or simply being part of this site.| [[Omniscient]]|[http://www.hackforums.net/buyawards.php Donation Awards]}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Account_Pruning&amp;diff=2488</id>
		<title>Account Pruning</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Account_Pruning&amp;diff=2488"/>
		<updated>2026-05-08T04:11:53Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Account_Pruning source revision 2015-07-22T15:51:48Z; refreshed 2026-05-08T04:11:52+00:00 --&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;Account Pruning&#039;&#039;&#039; refers to the act of deletion of old threads, PMs, posts and accounts in a certain set criteria. This is a necessary step in order to keep the site running as efficiently as possible and to provide the best user experience. Omniscient was once quoted that if he did not, the databases would be too large to handle.&lt;br /&gt;
&lt;br /&gt;
==Post pruning==&lt;br /&gt;
In general, posts and threads are not pruned, even after a great deal of time has elapsed. However, the &#039;[[Junk]]&#039; forum is occassionally pruned. This section contains all the information that violates Hack Forums policy and has been removed, and also any threads that have been junked by an Ub3r member. It is not publicly scheduled, but may be announced on the [https://twitter.com/hackforumsnet Hack Forums Twitter].&lt;br /&gt;
&lt;br /&gt;
==Post count changes==&lt;br /&gt;
Users may experience a large drop in post count when the Junk forum is pruned. If you lose a larger proportion of posts  than other members, that may reflect the quality of your posts. Its advisable not to complain about this.&lt;br /&gt;
&lt;br /&gt;
==Private message pruning==&lt;br /&gt;
Private messages have a significant impact on and so are pruned regularly, based on their age. When private messages are pruned on Hack Forums, only messages created before a certain date will be removed.&lt;br /&gt;
&lt;br /&gt;
*Regular members will have all private messages older than two months pruned.&lt;br /&gt;
*L33t members will have all private messages older than six months pruned.&lt;br /&gt;
*Ub3r members will have all private messages older than a year pruned.&lt;br /&gt;
&lt;br /&gt;
==Bulk saving and deleting of private messages==&lt;br /&gt;
Hack Forums members who want to save their private messages in anticipation of a prune may export their private messages. To do so, use this [http://www.hackforums.net/private.php?action=export link]. After saving them, we ask that members empty their inbox using this [http://www.hackforums.net/private.php?action=empty link]. Please note that the emptying of your PM inbox is irreversible.&lt;br /&gt;
&lt;br /&gt;
==Pruning members==&lt;br /&gt;
Any Hack Forums account which is not regularly used and any accounts that have had zero posts for longer than two months may be deleted. This helps to keep the majority of the userbase as active members.&lt;br /&gt;
&lt;br /&gt;
==Requesting deletion of an account==&lt;br /&gt;
A member&#039;s account will not be deleted or edited in any way under the whim of another user, even if the account is inactive. This particularly applies if the request is for the username that this member has; the name will not be changed. If you wish to use that name, you must wait for the account to be pruned, if it is eligible.&lt;br /&gt;
&lt;br /&gt;
==Closing of inactive accounts==&lt;br /&gt;
Regular members&#039; accounts (not L33t or Ub3r) that have been inactive (i.e not logged into) for six months are subject to closure. Closed accounts will be inaccessible and will no longer function; if your account is closed, it will not be receovered. This is normally a safety measure in order to prevent misuse of the account by someone other than the owner.&lt;br /&gt;
&lt;br /&gt;
Should a member wish to rejoin Hack Forums, they may do so providing their account wasn&#039;t closed for an alternative reason by a staff member. If your account has been closed due to violation of site policies, the user is not welcome to rejoin the site.&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Documents]]&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Master_Donator&amp;diff=2487</id>
		<title>Master Donator</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Master_Donator&amp;diff=2487"/>
		<updated>2026-05-08T04:11:52Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Master_Donator source revision 2021-03-29T14:50:54Z; refreshed 2026-05-08T04:11:52+00:00 --&amp;gt;&lt;br /&gt;
{{AwardBox&lt;br /&gt;
| AwardDesc    = This award is for members who have donated $500.&lt;br /&gt;
| AwardType    = Paid&lt;br /&gt;
| AwardID      = 50&lt;br /&gt;
| AwardDetails = The Master Donator award, commonly abbreviated to &amp;quot;MD&amp;quot;, is a donator-only award given to members who donate $500 via Bitcoin to [[Hack Forums]] in a single transaction. It was previously possible to attain this award through successive donations that totaled $500 or more. Consecutive purchases of awards such as the [[Emerald Donator]], [[Rich Bitch]], [[Legalize It]], [[Bitcoinage]], [[Litecoinage]], and [[Liberty Reserve Head]] would allow a user to attain multiple awards and achieve the Master Donator. As of [http://www.hackforums.net/showthread.php?tid=4508616 October 26th, 2014], the award can only be purchased through a singular one-time donation.&lt;br /&gt;
&lt;br /&gt;
To purchase this award and others, see [http://www.hackforums.net/buyawards.php this page].&lt;br /&gt;
| AwardRecip   = To see a complete list of which members have this award, click [http://www.hackforums.net/myawards.php?awid=50 here.]&lt;br /&gt;
== Information about Donating for Awards ==&lt;br /&gt;
{{Quote|Donating and purchasing awards allows HF to continue to exist. Many members like to show their support for this website. Awards are a status symbol for accounts so that all members know you&#039;ve contributed to the site. The award will automatically be added to your account immediately after confirmation of payment. Please note that normally within 48 hours of your purchase you will probably get a personal thank you from the site owner. All members are valued but those who donate at the very least deserve an extra bit of personal appreciation. Those making high-end donations might also receive bonus awards and custom reasons in the award description. Thanks to all members who positively contribute to the community whether it&#039;s via donations or simply being part of this site.|[[Omniscient]]|[http://www.hackforums.net/buyawards.php Donation Awards]}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Omniscient&amp;diff=2486</id>
		<title>Omniscient</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Omniscient&amp;diff=2486"/>
		<updated>2026-05-08T04:11:51Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Omniscient source revision 2022-01-31T22:47:45Z; refreshed 2026-05-08T04:11:51+00:00 --&amp;gt;&lt;br /&gt;
{{MemberBox&lt;br /&gt;
| Username    = Omniscient&lt;br /&gt;
| UserID      = 1&lt;br /&gt;
| JoinDate    = 04-21-2007&lt;br /&gt;
| JoinYear    = 2007&lt;br /&gt;
| Status      = Active&lt;br /&gt;
| IsAdmin     = True&lt;br /&gt;
| IsOMC       = True&lt;br /&gt;
| Biography   = Omniscient is the founder and owner of Hack Forums. His name was originally labrocca in 2007, at the forum&#039;s start, until he changed it to Omniscient. His reason for this change was a need for anonymity in a rapidly growing forum, although his identity would be known publicly later on. He also called upon his favorite book series, &#039;&#039;Dune,&#039;&#039; by Frank Herbert, as a way of explaining his name, in a topic found [http://www.hackforums.net/showthread.php?tid=14187 here]:&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Omniscient reminds me of a couple things.&lt;br /&gt;
&lt;br /&gt;
A) I wield power&lt;br /&gt;
&lt;br /&gt;
B) That power is a curse&lt;br /&gt;
&lt;br /&gt;
C) Chaos is necessary to avoid boredom&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Omniscient has been involved in several web development projects and forums, including MyBB Central, Support Forums and Hack Forums, among others. A collection of projects is available at [http://witza.com Witza].&lt;br /&gt;
&lt;br /&gt;
He founded Hack Forums as a side project in 2007. The site&#039;s success was slow and steady, but it has exploded into an international community that boasts over two million threads and 400,000 registered members. With how large Hack Forums is, Omniscient&#039;s decisions on running the site are not always met with acclaim but he continues to head the site, regardless of any criticism and controversy.&lt;br /&gt;
&lt;br /&gt;
Despite Omniscient&#039;s original desire to remain more anonymous, his public identity is known throughout Hack Forums, sometimes in a negative light as some members have distributed his &amp;quot;dox&amp;quot; that includes his full name, address and other personal information. Because of this negative attention, Hack Forums automatically filters the name Labrocca back to &amp;quot;Omni.&amp;quot;&lt;br /&gt;
&lt;br /&gt;
Omniscient lives in Las Vegas, Nevada with his wife and kids.&lt;br /&gt;
| History     = &lt;br /&gt;
| NotabInvolv = *Owner and administrator of Hack Forums&lt;br /&gt;
| PersonComm  = His personal interests are drinking scotch and reading the magazine, Cigar Aficionado.&lt;br /&gt;
| Alias1      = Labrocca&lt;br /&gt;
| AwardName1 = Purple Gift&lt;br /&gt;
| AwardName2 = Blue Gift&lt;br /&gt;
| AwardName3 = Green Gift&lt;br /&gt;
| AwardName4 = Testified&lt;br /&gt;
| AwardName5 = 24k&lt;br /&gt;
| AwardName6 = Green Apple&lt;br /&gt;
| AwardName7 = SportsBook&lt;br /&gt;
| AwardName8 = Businessman&lt;br /&gt;
| AwardName9 = Quickly Loved&lt;br /&gt;
| AwardName10 = Astropink&lt;br /&gt;
| AwardName11 = Maga&#039;s of the Universe!&lt;br /&gt;
| AwardName12 = Blackened Heart Gem&lt;br /&gt;
| GroupName1 = Administrator&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Reputation&amp;diff=2485</id>
		<title>Reputation</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Reputation&amp;diff=2485"/>
		<updated>2026-05-08T04:11:51Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Reputation source revision 2016-12-24T20:38:13Z; refreshed 2026-05-08T04:11:50+00:00 --&amp;gt;&lt;br /&gt;
==Overview==&lt;br /&gt;
&lt;br /&gt;
Reputation is a [[MyBB]] in-built feature which allows certain groups of members to publicly show their opinion of another member to anyone else in the forum. Currently only people in the [[L33t]] or above usergroups can give reputation, but it is available for all members to have or see.&lt;br /&gt;
&lt;br /&gt;
It is commonly abbreviated to &#039;Rep&#039; or &#039;+*&#039;, with the star denoting an amount to add.&lt;br /&gt;
==Gaining Reputation==&lt;br /&gt;
&lt;br /&gt;
To gain reputation many users contribute to the forum in a positive manner- either by helping out other members, conducting successful trades, or providing tutorials or new methods of doing things. No user is ever obligated to give reputation to another member; however, the idea behind Hack Forums reputation is to allow other members to see the literal reputation of a member.&lt;br /&gt;
&lt;br /&gt;
==Reputation Abuse==&lt;br /&gt;
&lt;br /&gt;
As ideal as the system is, there are members who try to abuse it by offering meaningless or trivial &#039;rewards&#039; under the unsaid implication that they will receive reputation as a result. Some members even conspire with others to rep each other for the simple fact of gaining reputation. If a member is found to be abusing reputation, they will be rep killed.&lt;br /&gt;
&lt;br /&gt;
==Amounts==&lt;br /&gt;
&lt;br /&gt;
*[[L33t]] members can give neutral (0) and +1 reputation, 5 times a day.&lt;br /&gt;
*[[Ub3r]] members can give anywhere between -3 and +3, including neutral, 5 times a day.&lt;br /&gt;
*[[Staff]] can give -5 to +5, unlimited times a day. &lt;br /&gt;
*[[Administrators]] can give -10 to +10, unlimited times a day. Sometimes [[Omniscient]] will give more, though rare.&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Advertising_and_Paid_Stickies&amp;diff=2484</id>
		<title>Advertising and Paid Stickies</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Advertising_and_Paid_Stickies&amp;diff=2484"/>
		<updated>2026-05-08T04:11:50Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Advertising_and_Paid_Stickies source revision 2018-02-19T19:33:10Z; refreshed 2026-05-08T04:11:50+00:00 --&amp;gt;&lt;br /&gt;
==Image and Banner Advertising==&lt;br /&gt;
There are several options to buy ad space on Hack Forums. Here is a list of the options, as well as their pricing and sizes:&lt;br /&gt;
&lt;br /&gt;
* 300x100 Header/Top Fold (2 positions available) $40 per day or $200 for a week&lt;br /&gt;
* 468x60 After First Post in Showthread $25 per day&lt;br /&gt;
* 728x90 Footer $20 per day&lt;br /&gt;
* 88x31 Footer $25 per month &lt;br /&gt;
&lt;br /&gt;
There is a minimum purchase of $100.00 USD for any and all advertising positions. All ad space graphics must be served by Hack Forums to avoid any problems. Also, upgraded members, specifically members who are L33T &amp;amp; UB3R, do not receive any served ads, though they only account for ~2% of daily visitors. To inquire further, please send [[Omniscient]] a [http://www.hackforums.net/private.php?action=send&amp;amp;uid=1 private message]. Alternatively you can send in a [http://www.hackforums.net/contact.php Contact Form] request with the subject of &#039;&#039;&#039;Advertising&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
==Statistics==&lt;br /&gt;
To those wishing to know some recent statistical information on HF visitors, you can view a couple pages from our Google Analytics here:&lt;br /&gt;
* [http://hackforums.net/Analytics.pdf Google Analytics Statistics]&lt;br /&gt;
* [http://hackforums.net/Analytics_Lang.pdf Google Analytics Language/Country Info]&lt;br /&gt;
&lt;br /&gt;
==Paid Sticky Threads==&lt;br /&gt;
Hack Forums sells paid stickies for limited time blocks. A sticky is a thread which will remain in the Important Threads section of the forum in which it was stuck. It will remain there and never sink back in pages, allowing the content to get the most attention possible. This can be very effective for getting a message out to members, promoting a site or forum, or as an investment for a business based on Hack Forums. Many members who purchase paid stickies purchase them again. Many products continuously buy stickies when available.&lt;br /&gt;
&lt;br /&gt;
There are certain limits regarding stickies. Members may only have one paid sticky at any given time, regardless of the topic of the thread. Members may not have other users cross post for them under any circumstance, with the exception of Sponsored Marketplace Forums stickies. Members caught doing this will have their accounts banned and the threads junked. Also, there is a limit of 6 stickies per section.&lt;br /&gt;
&lt;br /&gt;
Threads are given out when a space opens up. Members cannot request one early or pre-order them. It is a first come first serve basis. Also, the first member to send Omniscient a private message may not be the person to get the sticky. Often times he will receive multiple requests as soon as a sticky expires. The paid sticky spot will be given to the first message he reads, not the first sent. Due to this, people who use scripts to automate the process are effectively ensuring they will not get the spot.&lt;br /&gt;
&lt;br /&gt;
Realize that stickies in certain sections are under very high demand, and notably the [[Premium Sellers Section|&#039;&#039;Premium Sellers Section&#039;&#039;]] and &#039;&#039;Sever Stress Testing&#039;&#039; sections are usually completely full at all times; however, we do allow for paid stickies to be placed elsewhere.&lt;br /&gt;
&lt;br /&gt;
Members who have current paid stickies and wish to continue this service must private message [http://www.hackforums.net/private.php?action=send&amp;amp;uid=1 Omniscient] as if they were just purchasing the sticky. Members are not entitled to continued service, and they will be denied if the section is already sold out or for various other reasons. Members are free to apply again when a space opens up.  &lt;br /&gt;
&lt;br /&gt;
Sales Tags are highlight images for Marketplace style threads. Current price is $20 in BTC, ETH, XMR, LTC, or BCH. You can only purchase for your own thread. Sales Tags are removed after 30 days.&lt;br /&gt;
&lt;br /&gt;
Some subforums such as [Rules, Announcements, News and Feedback|&#039;&#039;Rules, Announcements, News and Feedback&#039;&#039;]], [[Marketplace Discussions|&#039;&#039;Marketplace Discussions&#039;&#039;]], or [[Deal Disputes|&#039;&#039;Deal Disputes&#039;&#039;]] are blocked from members buying paid stickies. Prices are subject to change at any time without warning.&lt;br /&gt;
&lt;br /&gt;
To inquire about purchasing a paid sticky, send a private message to [http://www.hackforums.net/private.php?action=send&amp;amp;uid=1 Omniscient] asking him the price and the amount of time you wish to have the sticky. Remember, paid stickies are sold in 1 week periods, with 4 weeks being the maximum time. For extended advertising, specify you wish to work out an extended time deal with Omniscient via private messages.&lt;br /&gt;
&lt;br /&gt;
Hack Forums reserves the right to deny anyone of a paid sticky for any reason or no reason.&lt;br /&gt;
&lt;br /&gt;
[https://hackforums.net/paidstickies.php These are all current paid stickies.]&lt;br /&gt;
&lt;br /&gt;
==Email Marketing, Popups, Popunders, and PM Blasts==&lt;br /&gt;
Hack Forums does not offer these kinds of services, nor do we intend to.&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Documents]]&lt;br /&gt;
[Category:Flagged]]&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Emerald_Donator&amp;diff=2483</id>
		<title>Emerald Donator</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Emerald_Donator&amp;diff=2483"/>
		<updated>2026-05-08T04:11:49Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Emerald_Donator source revision 2019-01-31T02:51:55Z; refreshed 2026-05-08T04:11:49+00:00 --&amp;gt;&lt;br /&gt;
{{AwardBox&lt;br /&gt;
| AwardDesc    = You have donated to HF.&lt;br /&gt;
| AwardType    = Discontinued&lt;br /&gt;
| AwardID      = 35&lt;br /&gt;
| AwardDetails = The Emerald Donator award, commonly abbreviated to &amp;quot;ED,&amp;quot; is a donator-only award given to members who donate $20 via Bitcoin to [[Hack Forums]] in a single transaction. This award was created in the wake of a significant DDOS attack on the forums in 2009. In order to purchase better equipment for the forum&#039;s servers, Omniscient allowed members to donate $20 or more via PayPal in exchange for this award. To purchase this award and others, see [http://www.hackforums.net/buyawards.php this page].&lt;br /&gt;
| AwardRecip   = All award recipients have been barred from being seen by the community. Because of this, the Wiki is unable to gather data. &lt;br /&gt;
== Information about Donating for Awards ==&lt;br /&gt;
{{Quote|Donating and purchasing awards allows HF to continue to exist. Many members like to show their support for this website. Awards are a status symbol for accounts so that all members know you&#039;ve contributed to the site. The award will automatically be added to your account immediately after confirmation of payment. Please note that normally within 48 hours of your purchase you will probably get a personal thank you from the site owner. All members are valued but those who donate at the very least deserve an extra bit of personal appreciation. Those making high-end donations might also receive bonus awards and custom reasons in the award description. Thanks to all members who positively contribute to the community whether it&#039;s via donations or simply being part of this site.|[[Omniscient]]|[http://www.hackforums.net/buyawards.php Donation Awards]}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Staff&amp;diff=2482</id>
		<title>Staff</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Staff&amp;diff=2482"/>
		<updated>2026-05-08T04:11:49Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Staff source revision 2026-02-14T00:49:44Z; refreshed 2026-05-08T04:11:48+00:00 --&amp;gt;&lt;br /&gt;
{{GroupBox&lt;br /&gt;
| GroupName         = Staff&lt;br /&gt;
| GroupUserbar      = Staff-2025 (UserBar).png&lt;br /&gt;
| Userbar2          = Staff (Userbar).png&lt;br /&gt;
| Userbar3          = Staff 2 (Userbar).png&lt;br /&gt;
| Userbar4          = Staff 3 (Userbar).png&lt;br /&gt;
| GroupDesc = The default usergroup for all Hack Forums Staff members.&lt;br /&gt;
| Type              = Executive&lt;br /&gt;
| Parent            = None&lt;br /&gt;
| DateFounded       = 07/08/2007&lt;br /&gt;
| Owner             = Omniscient&lt;br /&gt;
| Leaders           = [[Cap]] {{o}} [[Charlie Sheen]] {{o}} [[The Pact]]&lt;br /&gt;
| PastLeaders       = [[Yseurk]] {{o}} [[Genuine]] {{o}} [[Biggy]] {{o}} [[Sky]] {{o}} [[kawaii]] {{o}} [[Vitani]] {{o}} [[webdev77]] {{o}} [[Skorp]] {{o}} [[King Of Hearts]] {{o}} [[Minimalist]] {{o}} [[Kuroda_Shun]] {{o}} [[Skittles-|Skittles- (Codine)]] {{o}} [[Raseilord-Rika]] {{o}} [[Sashi]] {{o}} [[Starwiz]] {{o}} [[bsdpunk]] {{o}} [[sangederomin]] {{o}} [[VipVince]] {{o}} [[Soldier of Fortune]] {{o}} [[Kn1ght]] {{o}} [[Historic Moron|Historic Moron (hacker22)]] {{o}} [[Simon Parker]] {{o}} [[InfamousBytes]] {{o}} [[Vaqxine]] {{o}} [[The Rated R Superstar]] {{o}} [[Etheryte]] {{o}} [[Vorfin]] {{o}} [[kutmustakurt]] {{o}} [[phire nuk3r]] {{o}} [[Saged]] {{o}} [[Rusty_v]] {{o}} [[N3w_2_H@Ck1n™]] {{o}} [[Skill (User)|Skill]] {{o}} [[AsSaSs@iN]] {{o}} [[Yin]] {{o}} [[Richie]] {{o}} [[III]] {{o}} [[kewlhotrod]] {{o}} [[cobija]] {{o}} [[scream_iam]] {{o}} [[S7N]] {{o}} [[T3h Hack3r]] {{o}} [[Moralitas]] {{o}} [[Kr4z1]] {{o}} [[xerotic]] {{o}} [[Mr Kewl]] {{o}} [[Genuine]] {{o}} [[Wolves]] {{o}} [[Chris]] {{o}} [[bugga]] {{o}} [[D3xus]] {{o}} [[Hexicidal]] {{o}} [[Emylbus]] {{o}} [[Viral Dragon]] {{o}} [[RDCA]] {{o}} [[Paradoxum]] {{o}} [[Judge Dredd]] {{o}} [[Xch4ng3]] {{o}} [[!!* Alone Vampire *!!]] {{o}} [[Roger Waters]] {{o}} [[Sam Winchester]]&lt;br /&gt;
| Introduction = This is the user group all Staff Members are a part of. Staff members have extensive moderation abilities over the forum. This includes the ability to warn users, ban users, prevent forum spam and several other duties. Staff members are chosen by [[Omniscient]].&lt;br /&gt;
| History = The Staff group has always existed since the forum&#039;s creation. Throughout the years there have been over 50 different staff members. The members [[Judge Dredd]], [[IBruteForce]], [[Factor8™]], [[Guru]], [[Crow]], [[Xerotic]] and [[Xch4ng3]] were the only six staff members ever to go on to become [[Administrators]].&lt;br /&gt;
| CurrentStatus     = There are currently 3 members of staff which play an active role throughout the forum. [[Cap]], [[Charlie Sheen]], and [[The Pact]].&lt;br /&gt;
{{ModNavbox}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Rich_Bitch&amp;diff=2481</id>
		<title>Rich Bitch</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Rich_Bitch&amp;diff=2481"/>
		<updated>2026-05-08T04:11:48Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Rich_Bitch source revision 2019-02-09T22:58:30Z; refreshed 2026-05-08T04:11:48+00:00 --&amp;gt;&lt;br /&gt;
{{AwardBox&lt;br /&gt;
| AwardDesc    = Show me da money to gain this award.&lt;br /&gt;
| AwardType    = Discontinued&lt;br /&gt;
| AwardID      = 18&lt;br /&gt;
| AwardDetails = The Rich Bitch award, commonly abbreviated to &amp;quot;RB&amp;quot;, is a donator-only award given to members who donate $50 via Bitcoin to [[Hack Forums]] in a single transaction. To purchase this award and others, see [http://www.hackforums.net/buyawards.php this page].&lt;br /&gt;
| AwardRecip   = To see a complete list of which members have this award, click [http://www.hackforums.net/myawards.php?awid=18 here.]&lt;br /&gt;
== Information about Donating for Awards ==&lt;br /&gt;
{{Quote|Donating and purchasing awards allows HF to continue to exist. Many members like to show their support for this website. Awards are a status symbol for accounts so that all members know you&#039;ve contributed to the site. The award will automatically be added to your account immediately after confirmation of payment. Please note that normally within 48 hours of your purchase you will probably get a personal thank you from the site owner. All members are valued but those who donate at the very least deserve an extra bit of personal appreciation. Those making high-end donations might also receive bonus awards and custom reasons in the award description. Thanks to all members who positively contribute to the community whether it&#039;s via donations or simply being part of this site.|[[Omniscient]]|[http://www.hackforums.net/buyawards.php Donation Awards]}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Gift&amp;diff=2480</id>
		<title>Gift</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Gift&amp;diff=2480"/>
		<updated>2026-05-08T04:11:47Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Gift source revision 2015-07-18T13:04:39Z; refreshed 2026-05-08T04:11:47+00:00 --&amp;gt;&lt;br /&gt;
{{AwardBox&lt;br /&gt;
| AwardDesc    = Any user can buy this gift for another user for $25.&lt;br /&gt;
| AwardType    = Paid&lt;br /&gt;
| AwardID      = 71&lt;br /&gt;
| AwardDetails = The Gift award can be purchased by any user to be gifted to another user. When a user purchases the Gift award for someone, the reason given reads:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;A gift from [Username].&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Users can also purchase the award for themselves, in which case the reason given is as follows:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;You bought yourself a gift.&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
To purchase this award and others, see [http://www.hackforums.net/buyawards.php this page].&lt;br /&gt;
| AwardRecip   = To see a complete list of which members have this award, click [http://www.hackforums.net/myawards.php?awid=71 here.]&lt;br /&gt;
== Information about Donating for Awards ==&lt;br /&gt;
{{Quote|Donating and purchasing awards allows HF to continue to exist. Many members like to show their support for this website. Awards are a status symbol for accounts so that all members know you&#039;ve contributed to the site. The award will automatically be added to your account immediately after confirmation of payment. Please note that normally within 48 hours of your purchase you will probably get a personal thank you from the site owner. All members are valued but those who donate at the very least deserve an extra bit of personal appreciation. Those making high-end donations might also receive bonus awards and custom reasons in the award description. Thanks to all members who positively contribute to the community whether it&#039;s via donations or simply being part of this site.|[[Omniscient]]|[http://www.hackforums.net/buyawards.php Donation Awards]}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Bitcoinage&amp;diff=2479</id>
		<title>Bitcoinage</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Bitcoinage&amp;diff=2479"/>
		<updated>2026-05-08T04:11:47Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Bitcoinage source revision 2025-11-13T17:27:17Z; refreshed 2026-05-08T04:11:46+00:00 --&amp;gt;&lt;br /&gt;
{{AwardBox&lt;br /&gt;
| AwardDesc    = This award goes to members who donate 1 Bitcoin to HF.&lt;br /&gt;
| AwardType    = Discontinued&lt;br /&gt;
| AwardID      = 70&lt;br /&gt;
| AwardDetails = The Bitcoinage award is a donator-only award given to members who donate 1 Bitcoin (abbreviated as 1 BTC) to [[Hack Forums]] in a single transaction. Since the value of Bitcoins fluctuates constantly, 1 BTC may not be worth the same when one person donates for the award as when another user does. To purchase this award and other cryptocurrency related awards, see [http://www.hackforums.net/cryptocoin.php this page]. To purchase all other awards, see [http://www.hackforums.net/buyawards.php this page].&lt;br /&gt;
| AwardRecip   = To see a complete list of which members have this award, click [http://www.hackforums.net/myawards.php?awid=70 here.]&lt;br /&gt;
== Information about Donating for Awards ==&lt;br /&gt;
{{Quote|Donating and purchasing awards allows HF to continue to exist. Many members like to show their support for this website. Awards are a status symbol for accounts so that all members know you&#039;ve contributed to the site. The award will automatically be added to your account immediately after confirmation of payment. Please note that normally within 48 hours of your purchase you will probably get a personal thank you from the site owner. All members are valued but those who donate at the very least deserve an extra bit of personal appreciation. Those making high-end donations might also receive bonus awards and custom reasons in the award description. Thanks to all members who positively contribute to the community whether it&#039;s via donations or simply being part of this site.|[[Omniscient]]|[http://www.hackforums.net/buyawards.php Donation Awards]}}&lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Coding&amp;diff=2478</id>
		<title>Coding</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Coding&amp;diff=2478"/>
		<updated>2026-05-08T04:11:46Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Coding source revision 2016-09-02T14:06:27Z; refreshed 2026-05-08T04:11:45+00:00 --&amp;gt;&lt;br /&gt;
Coding (also known as programming) is the process of designing and writing &#039;&#039;source code&#039;&#039; which sends a set of instructions to a computer system to perform certain operations. This is also known as software development. There are a huge variety of different programming languages; some more popular than others, however all of them have their subtle (or not-so-subtle) differences that make them unique. Main differences being their syntax--the format of the source code; their structure--the way the code is formed to achieve certain tasks and how they&#039;re run--[http://en.wikipedia.org/wiki/Scripting_language scripting languages] and [http://en.wikipedia.org/wiki/Compiled_language compiled languages]. Hack Forums has several sections devoted to a few of these languages.&lt;br /&gt;
&lt;br /&gt;
Coding is a very big topic throughout Hack Forums and members with a solid understanding of programming are able to dominate the [http://MARKETPLACE-WIKI Marketplace] by selling products they’ve designed and created. Below are the sections within the [http://www.hackforums.net/forumdisplay.php?fid=151 Coding] section, along with some tutorials in each respective section.&lt;br /&gt;
&lt;br /&gt;
* [http://www.hackforums.net/forumdisplay.php?fid=5 Coding and Programming]&lt;br /&gt;
* [http://www.hackforums.net/forumdisplay.php?fid=118 Visual Basic and .NET Framework]&lt;br /&gt;
* [http://www.hackforums.net/forumdisplay.php?fid=208 C# Programming Language]&lt;br /&gt;
* [http://www.hackforums.net/forumdisplay.php?fid=49 Batch, Shell, Dos and Command Line Interpreters]&lt;br /&gt;
* [http://www.hackforums.net/forumdisplay.php?fid=131 Java Language, JVM and the JRE]&lt;br /&gt;
* [http://www.hackforums.net/forumdisplay.php?fid=175 Android Development]&lt;br /&gt;
* [http://www.hackforums.net/forumdisplay.php?fid=154 PHP Development]&lt;br /&gt;
* [http://www.hackforums.net/forumdisplay.php?fid=129 Python]&lt;br /&gt;
* [http://www.hackforums.net/forumdisplay.php?fid=149 Assembly Language and Programming]&lt;br /&gt;
* [http://www.hackforums.net/forumdisplay.php?fid=130 Perl Programming]&lt;br /&gt;
* [http://www.hackforums.net/forumdisplay.php?fid=150 Delphi]&lt;br /&gt;
* [http://www.hackforums.net/forumdisplay.php?fid=161 Lua Coding]&lt;br /&gt;
&lt;br /&gt;
==Coding and Programming==&lt;br /&gt;
This is the general forum for discussion of coding or programming. This forum also serves as a place for languages that don&#039;t have their own dedicated forum, like Ruby, ASP and CSS. This is a great place to talk about getting into coding as well as general coding talk.&lt;br /&gt;
===Tutorials===&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=703543 So You Want to Learn a Programming Language?] [http://www.hackforums.net/showthread.php?tid=703543 xerotic]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=2173735 Where to Start Programming] - [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=356861 ¤ Nick™ ¤]&lt;br /&gt;
==Visual Basic and .NET Framework==&lt;br /&gt;
Visual Basic was designed by Microsoft in 2001. Their file formats are recognized as .VB and .VBS within Microsoft Visual Studio. Visual Basic is used to code simple applications that show web pages, perform math operations and store databases, among other things. It was intended to take over the role of BASIC and make compiling code much more user friendly and simple to do. .NET is a framework released by Microsoft in 2002, with intention to make programming with Microsoft systems easier. &lt;br /&gt;
===Tutorials===&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=231143 Editing Registry Keys in VB.NET] [[--([-S7N-])--]]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=196070 Learn Visual Basic Now] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=63671 Soul Collector]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=2480984 The Basics of VB.NET] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=878768 SomeWhiteGuy]&lt;br /&gt;
===C# Programming Language===&lt;br /&gt;
Also developed by Microsoft, C# is a language which utilises the .NET framework, however uses syntax similar to that of other languages in the C family. This makes progression from others languages to C# easier for coders used to the syntax. C# is an object-oriented language.&lt;br /&gt;
==C/C++/Obj-C Programming==&lt;br /&gt;
The C++ language is a widely-known language used in video games, complex programs, multimedia render engines and intricate databases. It can be a difficult language to learn, with many different families, commands and iterations for a coder. For this same reason, it is a diverse way to code almost anything imaginable; hence it being one of the most popular programming languages in the world. C++ is literally &amp;quot;C improved&amp;quot;--C being an older version of C++. Objective-C is the main language of Apple the basis of their operating systems: iOS and OSX.&lt;br /&gt;
===Tutorials===&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=271354 The Complete C++ Guide] [[Crow]]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=2542391 DLL Injection - Basics] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=1366788 Tsukuyomi]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=2522144 How To Multi-Thread] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=661180 iVision]&lt;br /&gt;
==Batch, Shell, Dos and Command Line Interpreters==&lt;br /&gt;
Batch coding operates in a sequence; commands written with batch will execute in sequential order. Batch files are normally used within the Windows OS, and are integral to the system. They can be compiled with any text editor. Shells are usually written with batch. &lt;br /&gt;
===Tutorials===&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=1472638 The Ultimate Guide to Batch Scripting] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=675453 cybεr]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=2476904 Secure Chat System] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=1155775 CardinalOfOne]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=2186025 Prevent your Batch Passwords and Usernames From Being Bypassed] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=770379 Greenpois0n]&lt;br /&gt;
==Java Language, JVM, and the JRE==&lt;br /&gt;
Java is the most used programming language in the world. Its popularity is due to its portability; Java code isn&#039;t run natively on an operating system, however through the &#039;&#039;Java Runtime Environment&#039;&#039; (JRE). A lot of mobile applications are developed in Java. Java can also be used for web development.&lt;br /&gt;
===Tutorials===&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=293412 Compilation of Java Guides and Resources] [[--([-S7N-])--]]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=25257 How to Compile and Run a Java Program] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=4395 closed_my_HF_Account]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=682439 Store an EXE As an Image!] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=432398 MrZander]&lt;br /&gt;
===Android Development===&lt;br /&gt;
The Android operating system is developed predominantly in Java, as are its third party applications. The Dalvik Virtual Machine is the tool of the trade for Android developers. Because Java is a diverse language, applications for Android have a lot more flexibility with the operating system than other smartphone applications.&lt;br /&gt;
==PHP Development==&lt;br /&gt;
PHP stands for &amp;quot;Hypertext Preprocessor&amp;quot;. Originally developed in the &#039;90s, it is currently the most popular web development language to date. It is the basis of many websites such as [http://facebook.com Facebook], [http://wikipedia.org Wikipedia] and [http://flickr.com Flickr]. PHP is a scripting language so it compile on run-time by the &#039;&#039;PHP interpreter&#039;&#039; written in C. PHP is a hugely versatile language allowing for scripts to be made rapidly and with ease. Its syntax is very similar to that of the C family, making PHP a great language to learn if you&#039;re just starting out in programming.&lt;br /&gt;
&lt;br /&gt;
PHP can be embedded within HTML, making it ideal for creating dynamic websites. PHP files usually have the extension &amp;quot;.PHP&amp;quot;.&lt;br /&gt;
===Tutorials===&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=427646 PHP Tutorials, Videos and Source Codes] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=71764 flAmingw0rm]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=3050906 Getting Started with PHP Guide] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=190854 CarrotMilk]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=3195295 Object-Oriented Programming with PHP] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=190854 CarrotMilk] &lt;br /&gt;
==Python==&lt;br /&gt;
Python is a simple language and extremely powerful to use. It is a scripting language like PHP, so it does not need to be compiled continually. Finding errors and problems with Python is easier than it is with other coding languages, due to its simplicity. The language interfaces with modules and variables, and allows for math calculations and user input. Python has a very different syntax to that of the C family. It is the base of all [http://google.com Google] code.&lt;br /&gt;
===Tutorials===&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=307552 Fundamentals of Python 2.6] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=124317 HeadRush]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=1770839 OS, Shutil Modules - Some Cool Functions] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=923041 The-Hydra]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=1368539 Python Mega Tutorial &amp;amp; Guide] [[xerotic]]&lt;br /&gt;
==Assembly Language and Programming==&lt;br /&gt;
The Assembly language is relatively low-level and simple, used mainly for machines and factory operations for which minor coding is needed. It can be used for computer hardware as well, to execute commands or actions at certain times. Assemblers, the program used to execute the code itself, are made by many different manufacturers and no one company can claim credit for the development of Assembly.&lt;br /&gt;
===Tutorials===&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=116034 Assembly Language and Programming] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=40166 Aro]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=2685206 Hello World - Tutorial] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=358008 Baseball435]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=2717640 Understanding Registers] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=1366788 Tsukuyomi]&lt;br /&gt;
==Perl Programming==&lt;br /&gt;
Perl is a high-level, interpreted, dynamic programming language. Its original purpose was to make report processing easier as as a general-purpose UNIX scripting language. Perl is also used for graphics programming, network and system administration due to its flexibility and power. There are interpreters for most operating systems, and is fairly easy to understand and learn. The language is very similar to PHP in its syntax and structure.&lt;br /&gt;
===Tutorials===&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=2208283 Perl- Getting Started - Simple, Basics For Beginners] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=347364 Mr. P-teo]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=2195777 Perl Compilation; Tutorials, Source Codes, &amp;amp; Information] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=77345 dBx]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=22205 Basic IRC Bot in Perl] [[manipulate]]&lt;br /&gt;
==Delphi==&lt;br /&gt;
Delphi supersedes the Pascal language and is a rapid application development tool for Windows. It is usually used for the framework for other applications or as a visual window layout designer. It was designed to be a &amp;quot;teaching&amp;quot; language, not meant for efficiency or high-level coding. However, its modern purpose has shown it to be a strict high-level language.&lt;br /&gt;
===Tutorials===&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=385048 Delphi Tutorials, Videos and Source Codes] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=71764 flAmingw0rm]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=660663 Login Tutorial] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=58549 Symbiotic]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=1359965 Dynamic, Static Arrays and Exception Handling] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=64749 Gartleon]&lt;br /&gt;
==Lua Coding==&lt;br /&gt;
Lua is a scripting language usually utilised for video game programming as well as modding games. It has a relatively simple C API compared to other scripting languages and is usually used to create small scripts.&lt;br /&gt;
===Tutorials===&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=786611 How to Despawn Sucessfully] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=529490 FA!L]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=798796 Lua Coding] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=239760 ariton]&lt;br /&gt;
* [http://www.hackforums.net/showthread.php?tid=786347 Notepad++ Highlighting TB Specific Lua Functions] [http://www.hackforums.net/member.php?action=profile&amp;amp;uid=492684 WIZCRAFT]&lt;br /&gt;
[[Category:Sections]]&lt;br /&gt;
[[Category:Flagged]]&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Category:HF_News_Editions&amp;diff=2477</id>
		<title>Category:HF News Editions</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Category:HF_News_Editions&amp;diff=2477"/>
		<updated>2026-05-08T04:11:45Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Category%3AHF_News_Editions source revision 2018-09-01T11:15:32Z; refreshed 2026-05-08T04:11:45+00:00 --&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:HorizTable&amp;diff=2476</id>
		<title>Template:HorizTable</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:HorizTable&amp;diff=2476"/>
		<updated>2026-05-08T04:11:44Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AHorizTable source revision 2016-02-02T21:26:20Z; refreshed 2026-05-08T04:11:44+00:00 --&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
&amp;lt;table class=&amp;quot;layout plainlinks HorizTable&amp;quot;&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-img&amp;quot;&amp;gt;[[File:{{{Row1IMG}}}|link=]] &amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-desc&amp;quot;&amp;gt; &#039;&#039;&#039;{{{Row1Title}}}&#039;&#039;&#039; &amp;lt;br&amp;gt; {{{Row1Desc}}} &amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-img&amp;quot;&amp;gt;{{#if: {{{Row2IMG|}}}|[[File:{{{Row2IMG}}}|link=]]|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-desc&amp;quot;&amp;gt; {{#if:{{{Row2IMG|}}}|&#039;&#039;&#039;{{{Row2Title}}}&#039;&#039;&#039;&amp;lt;br&amp;gt;{{{Row2Desc}}}|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-img&amp;quot;&amp;gt;{{#if: {{{Row3IMG|}}}|[[File:{{{Row3IMG}}}|link=]]|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-desc&amp;quot;&amp;gt; {{#if:{{{Row3IMG|}}}|&#039;&#039;&#039;{{{Row3Title}}}&#039;&#039;&#039;&amp;lt;br&amp;gt;{{{Row3Desc}}}|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-img&amp;quot;&amp;gt;{{#if: {{{Row4IMG|}}}|[[File:{{{Row4IMG}}}|link=]]|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-desc&amp;quot;&amp;gt; {{#if:{{{Row4IMG|}}}|&#039;&#039;&#039;{{{Row4Title}}}&#039;&#039;&#039;&amp;lt;br&amp;gt;{{{Row4Desc}}}|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-img&amp;quot;&amp;gt;{{#if: {{{Row5IMG|}}}|[[File:{{{Row5IMG}}}|link=]]|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-desc&amp;quot;&amp;gt; {{#if:{{{Row5IMG|}}}|&#039;&#039;&#039;{{{Row5Title}}}&#039;&#039;&#039;&amp;lt;br&amp;gt;{{{Row5Desc}}}|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-img&amp;quot;&amp;gt;{{#if: {{{Row6IMG|}}}|[[File:{{{Row6IMG}}}|link=]]|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-desc&amp;quot;&amp;gt; {{#if:{{{Row6IMG|}}}|&#039;&#039;&#039;{{{Row6Title}}}&#039;&#039;&#039;&amp;lt;br&amp;gt;{{{Row6Desc}}}|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-img&amp;quot;&amp;gt;{{#if: {{{Row7IMG|}}}|[[File:{{{Row7IMG}}}|link=]]|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-desc&amp;quot;&amp;gt; {{#if:{{{Row7IMG|}}}|&#039;&#039;&#039;{{{Row7Title}}}&#039;&#039;&#039;&amp;lt;br&amp;gt;{{{Row7Desc}}}|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-img&amp;quot;&amp;gt;{{#if: {{{Row8IMG|}}}|[[File:{{{Row8IMG}}}|link=]]|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-desc&amp;quot;&amp;gt; {{#if:{{{Row8IMG|}}}|&#039;&#039;&#039;{{{Row8Title}}}&#039;&#039;&#039;&amp;lt;br&amp;gt;{{{Row8Desc}}}|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-img&amp;quot;&amp;gt;{{#if: {{{Row9IMG|}}}|[[File:{{{Row9IMG}}}|link=]]|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-desc&amp;quot;&amp;gt; {{#if:{{{Row9IMG|}}}|&#039;&#039;&#039;{{{Row9Title}}}&#039;&#039;&#039;&amp;lt;br&amp;gt;{{{Row9Desc}}}|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
  &amp;lt;tr&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-img&amp;quot;&amp;gt;{{#if: {{{Row10IMG|}}}|[[File:{{{Row10IMG}}}|link=]]|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-desc&amp;quot;&amp;gt; {{#if:{{{Row10IMG|}}}|&#039;&#039;&#039;{{{Row10Title}}}&#039;&#039;&#039;&amp;lt;br&amp;gt;{{{Row10Desc}}}|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-img&amp;quot;&amp;gt;{{#if: {{{Row11IMG|}}}|[[File:{{{Row11IMG}}}|link=]]|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-desc&amp;quot;&amp;gt; {{#if:{{{Row11IMG|}}}|&#039;&#039;&#039;{{{Row11Title}}}&#039;&#039;&#039;&amp;lt;br&amp;gt;{{{Row11Desc}}}|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-img&amp;quot;&amp;gt;{{#if: {{{Row12IMG|}}}|[[File:{{{Row12IMG}}}|link=]]|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;td class=&amp;quot;HorizTable-desc&amp;quot;&amp;gt; {{#if:{{{Row12IMG|}}}|&#039;&#039;&#039;{{{Row12Title}}}&#039;&#039;&#039;&amp;lt;br&amp;gt;{{{Row12Desc}}}|{{Empty}}}}&amp;lt;/td&amp;gt;&lt;br /&gt;
  &amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
Use this template to make nice-looking horizontal tables for content organization. You can have up to twelve rows.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{HorizTable&lt;br /&gt;
| Row1IMG    = &lt;br /&gt;
| Row1Title  = &lt;br /&gt;
| Row1Desc   = &lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Category:Help_Documents&amp;diff=2475</id>
		<title>Category:Help Documents</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Category:Help_Documents&amp;diff=2475"/>
		<updated>2026-05-08T04:11:44Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Category%3AHelp_Documents source revision 2015-07-22T14:12:39Z; refreshed 2026-05-08T04:11:43+00:00 --&amp;gt;&lt;br /&gt;
A collection of all Help Documents can be found here, alphabetized for easier searching and convenience. &lt;br /&gt;
&lt;br /&gt;
The Help Documents are a collection of documents drafted up by [[Omniscient]] which outline, contain, and underline &lt;br /&gt;
the rules, inner workings, and consequences of the forum. A Help Document is primarily just a document meant to help and aid the user in &lt;br /&gt;
finding their way around the forum or help understanding why they were maybe punished via a warning or ban.&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:%3D&amp;diff=2474</id>
		<title>Template:=</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:%3D&amp;diff=2474"/>
		<updated>2026-05-08T04:11:43Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3A%3D source revision 2015-07-13T20:50:08Z; refreshed 2026-05-08T04:11:43+00:00 --&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;=&amp;lt;/includeonly&amp;gt;&amp;lt;noinclude&amp;gt;Prints an equals sign.&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:!&amp;diff=2473</id>
		<title>Template:!</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:!&amp;diff=2473"/>
		<updated>2026-05-08T04:11:43Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3A%21 source revision 2015-06-18T23:48:51Z; refreshed 2026-05-08T04:11:42+00:00 --&amp;gt;&lt;br /&gt;
|&amp;lt;noinclude&amp;gt;{{template doc}}&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:Infobox&amp;diff=2472</id>
		<title>Template:Infobox</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:Infobox&amp;diff=2472"/>
		<updated>2026-05-08T04:11:42Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AInfobox source revision 2015-03-22T19:17:17Z; refreshed 2026-05-08T04:11:41+00:00 --&amp;gt;&lt;br /&gt;
{{#invoke:Infobox|infobox}}&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{documentation}}&lt;br /&gt;
&amp;lt;!-- Categories go in the /doc subpage, and interwikis go in Wikidata. --&amp;gt;&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:HelpDocBox&amp;diff=2471</id>
		<title>Template:HelpDocBox</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:HelpDocBox&amp;diff=2471"/>
		<updated>2026-05-08T04:11:41Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AHelpDocBox source revision 2015-03-22T19:17:15Z; refreshed 2026-05-08T04:11:41+00:00 --&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|  bodystyle = overflow: auto; width: 20%; background: #333333; color: #d3d3d3; float: right;&lt;br /&gt;
|  above     = &amp;lt;u&amp;gt;&amp;lt;span style=&amp;quot;color: white; font-weight: bold;&amp;quot;&amp;gt;{{{HelpDocName}}}&amp;lt;/span&amp;gt;&amp;lt;/u&amp;gt;&lt;br /&gt;
|  data1     = &amp;lt;span style=&amp;quot;color: white; font-weight: bold;&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;&#039;&#039;&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;i&amp;gt;{{{HelpDocDesc}}}&amp;lt;/i&amp;gt;&amp;lt;span style=&amp;quot;color: white; font-weight: bold;&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;&#039;&#039;&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
|  label2    = Official Help Document:                         |  data2     = [http://www.hackforums.net/misc.php?action=help&amp;amp;hid={{{HelpDocID}}} &amp;lt;span style=&amp;quot;color: white; font-weight: bold;&amp;quot;&amp;gt;Hack Forums Link&amp;lt;/span&amp;gt;]&lt;br /&gt;
|  label3    = All Help Documents:                         |  data3     = [[:Category:Help Documents|&amp;lt;span style=&amp;quot;color: white; font-weight: bold;&amp;quot;&amp;gt;Help Documents&amp;lt;/span&amp;gt;]]&lt;br /&gt;
|  label4    = All Documents:                         |  data4     = [[:Category:Documents|&amp;lt;span style=&amp;quot;color: white; font-weight: bold;&amp;quot;&amp;gt;Documents&amp;lt;/span&amp;gt;]]&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
|  data5     = The Hack Forums Help Documents provide valuable rules and information related to forum policies, usergroups, procedures, and more.&lt;br /&gt;
&amp;lt;includeonly&amp;gt;[[Category:Help Documents]]&lt;br /&gt;
[[Category:Documents]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This template is used on HelpDoc pages (any article with the HelpDoc: namespace that is an HF Help Document) and is used to provide a foundation for the Help Document.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{HelpDocBox&lt;br /&gt;
| HelpDocName =&lt;br /&gt;
| HelpDocDesc =&lt;br /&gt;
| HelpDocID   =&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[[Category:Document Templates]]&lt;br /&gt;
[[Category:Templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:HFBox&amp;diff=2470</id>
		<title>Template:HFBox</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:HFBox&amp;diff=2470"/>
		<updated>2026-05-08T04:11:40Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AHFBox source revision 2015-03-22T19:17:14Z; refreshed 2026-05-08T04:11:40+00:00 --&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|  bodystyle = overflow: auto; width: 20%; background: #333333; color: #d3d3d3; float: right;&lt;br /&gt;
|  above     = &amp;lt;u&amp;gt;&amp;lt;span style=&amp;quot;color: white; font-weight: bold;&amp;quot;&amp;gt;{{{HFName}}}&amp;lt;/span&amp;gt;&amp;lt;/u&amp;gt;&lt;br /&gt;
|  data1     = &amp;lt;span style=&amp;quot;color: white; font-weight: bold;&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;&#039;&#039;&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;i&amp;gt;{{{HFDesc}}}&amp;lt;/i&amp;gt;&amp;lt;span style=&amp;quot;color: white; font-weight: bold;&amp;quot;&amp;gt;&amp;lt;nowiki&amp;gt;&#039;&#039;&amp;lt;/nowiki&amp;gt;&amp;lt;/span&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
|  data3     = This namespace is reserved for miscellaneous pages relating to the operations and system of Hack Forums. Pages that don&#039;t belong in any of the other namespaces but are still relevant to Hack Forums.&lt;br /&gt;
&amp;lt;includeonly&amp;gt;[[Category:HF]]&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This template is used on HelpDoc pages (any article with the HelpDoc: namespace that is an HF Help Document) and is used to provide a foundation for the Help Document.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{HFBox&lt;br /&gt;
| HFName   =&lt;br /&gt;
| HFDesc   =&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[[Category:HF Templates]]&lt;br /&gt;
[[Category:Templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:GroupsList&amp;diff=2469</id>
		<title>Template:GroupsList</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:GroupsList&amp;diff=2469"/>
		<updated>2026-05-08T04:11:40Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AGroupsList source revision 2021-03-27T08:09:29Z; refreshed 2026-05-08T04:11:39+00:00 --&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
| GroupName1= Writers&lt;br /&gt;
| GroupName2= Mentor&lt;br /&gt;
| GroupName3= Brotherhood&lt;br /&gt;
| GroupName4= Nightfall&lt;br /&gt;
| GroupName5= Ub3r&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This template is designed to show the current usergroups for a user and sort them into categories based on their groups. This automates the process of showing which users are in what groups, and allows users more control if they join new groups (or are removed from groups).&amp;lt;br&amp;gt;&lt;br /&gt;
Note: Categorization will not take effect for members who are Mentors, Staff, or Administrators, as they have templates that will categorize them accordingly.&amp;lt;br&amp;gt;&lt;br /&gt;
When using this template, specify the exact and full name of the group.&lt;br /&gt;
The template can include a maximum of 15 groups. More can be added if necessary.&amp;lt;br&amp;gt;&lt;br /&gt;
This template should only be used on the [[Template:MemberBox|MemberBox template]].&amp;lt;br&amp;gt;&lt;br /&gt;
Usage of the template should be done with one line for every group.&lt;br /&gt;
[[Category:Member Templates]]&lt;br /&gt;
[[Category:Templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{#ifeq: {{{text|}}}|False|&lt;br /&gt;
{{#if:{{{GroupName1|}}}|{{#ifexist:File:{{{GroupName1}}} (Userbar).gif|[[File:{{{GroupName1}}} (Userbar).gif|link={{{GroupName1}}}|class=groupLink]]|[[File:{{{GroupName1}}} (Userbar).png|link={{{GroupName1}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName2|}}}|{{#ifexist:File:{{{GroupName2}}} (Userbar).gif|[[File:{{{GroupName2}}} (Userbar).gif|link={{{GroupName2}}}|class=groupLink]]|[[File:{{{GroupName2}}} (Userbar).png|link={{{GroupName2}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName3|}}}|{{#ifexist:File:{{{GroupName3}}} (Userbar).gif|[[File:{{{GroupName3}}} (Userbar).gif|link={{{GroupName3}}}|class=groupLink]]|[[File:{{{GroupName3}}} (Userbar).png|link={{{GroupName3}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName4|}}}|{{#ifexist:File:{{{GroupName4}}} (Userbar).gif|[[File:{{{GroupName4}}} (Userbar).gif|link={{{GroupName4}}}|class=groupLink]]|[[File:{{{GroupName4}}} (Userbar).png|link={{{GroupName4}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName5|}}}|{{#ifexist:File:{{{GroupName5}}} (Userbar).gif|[[File:{{{GroupName5}}} (Userbar).gif|link={{{GroupName5}}}|class=groupLink]]|[[File:{{{GroupName5}}} (Userbar).png|link={{{GroupName5}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName6|}}}|{{#ifexist:File:{{{GroupName6}}} (Userbar).gif|[[File:{{{GroupName6}}} (Userbar).gif|link={{{GroupName6}}}|class=groupLink]]|[[File:{{{GroupName6}}} (Userbar).png|link={{{GroupName6}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName7|}}}|{{#ifexist:File:{{{GroupName7}}} (Userbar).gif|[[File:{{{GroupName7}}} (Userbar).gif|link={{{GroupName7}}}|class=groupLink]]|[[File:{{{GroupName7}}} (Userbar).png|link={{{GroupName7}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName8|}}}|{{#ifexist:File:{{{GroupName8}}} (Userbar).gif|[[File:{{{GroupName8}}} (Userbar).gif|link={{{GroupName8}}}|class=groupLink]]|[[File:{{{GroupName8}}} (Userbar).png|link={{{GroupName8}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName9|}}}|{{#ifexist:File:{{{GroupName9}}} (Userbar).gif|[[File:{{{GroupName9}}} (Userbar).gif|link={{{GroupName9}}}|class=groupLink]]|[[File:{{{GroupName9}}} (Userbar).png|link={{{GroupName9}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName10|}}}|{{#ifexist:File:{{{GroupName10}}} (Userbar).gif|[[File:{{{GroupName10}}} (Userbar).gif|link={{{GroupName10}}}|class=groupLink]]|[[File:{{{GroupName10}}} (Userbar).png|link={{{GroupName10}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName11|}}}|{{#ifexist:File:{{{GroupName11}}} (Userbar).gif|[[File:{{{GroupName11}}} (Userbar).gif|link={{{GroupName11}}}|class=groupLink]]|[[File:{{{GroupName11}}} (Userbar).png|link={{{GroupName11}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName12|}}}|{{#ifexist:File:{{{GroupName12}}} (Userbar).gif|[[File:{{{GroupName12}}} (Userbar).gif|link={{{GroupName12}}}|class=groupLink]]|[[File:{{{GroupName12}}} (Userbar).png|link={{{GroupName12}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName13|}}}|{{#ifexist:File:{{{GroupName13}}} (Userbar).gif|[[File:{{{GroupName13}}} (Userbar).gif|link={{{GroupName13}}}|class=groupLink]]|[[File:{{{GroupName13}}} (Userbar).png|link={{{GroupName13}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName14|}}}|{{#ifexist:File:{{{GroupName14}}} (Userbar).gif|[[File:{{{GroupName14}}} (Userbar).gif|link={{{GroupName14}}}|class=groupLink]]|[[File:{{{GroupName14}}} (Userbar).png|link={{{GroupName14}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
{{#if:{{{GroupName15|}}}|{{#ifexist:File:{{{GroupName15}}} (Userbar).gif|[[File:{{{GroupName15}}} (Userbar).gif|link={{{GroupName15}}}|class=groupLink]]|[[File:{{{GroupName15}}} (Userbar).png|link={{{GroupName15}}}|class=groupLink]]}}&amp;lt;br&amp;gt;|{{Empty}}}}&lt;br /&gt;
&lt;br /&gt;
{{#if: {{{GroupName1|}}}|{{#ifeq: {{{GroupName1|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName1|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName1|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName1|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName1|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName1}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName2|}}}|{{#ifeq: {{{GroupName2|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName2|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName2|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName2|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName2|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName2}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName3|}}}|{{#ifeq: {{{GroupName3|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName3|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName3|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName3|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName3|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName3}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName4|}}}|{{#ifeq: {{{GroupName4|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName4|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName4|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName4|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName4|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName4}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName5|}}}|{{#ifeq: {{{GroupName5|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName5|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName5|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName5|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName5|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName5}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName6|}}}|{{#ifeq: {{{GroupName6|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName6|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName6|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName6|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName6|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName6}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName7|}}}|{{#ifeq: {{{GroupName7|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName7|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName7|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName7|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName7|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName7}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName8|}}}|{{#ifeq: {{{GroupName8|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName8|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName8|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName8|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName8|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName8}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName9|}}}|{{#ifeq: {{{GroupName9|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName9|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName9|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName9|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName9|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName9}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName10|}}}|{{#ifeq: {{{GroupName10|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName10|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName10|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName10|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName10|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName10}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName11|}}}|{{#ifeq: {{{GroupName11|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName11|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName11|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName11|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName11|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName11}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName12|}}}|{{#ifeq: {{{GroupName12|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName12|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName12|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName12|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName12|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName12}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName13|}}}|{{#ifeq: {{{GroupName13|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName13|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName13|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName13|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName13|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName13}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName14|}}}|{{#ifeq: {{{GroupName14|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName14|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName14|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName14|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName14|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName14}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
{{#if: {{{GroupName15|}}}|{{#ifeq: {{{GroupName15|}}}|Mentors|[[Category:Current Mentors]]|{{#ifeq:{{{GroupName15|}}}|Staff|[[Category:Current Staff]]|{{#ifeq:{{{GroupName15|}}}|Administrators|[[Category:Current Administrators]]|{{#ifeq:{{{GroupName15|}}}|Moderator|[[Category:Current Moderators]]|{{#ifeq:{{{GroupName15|}}}|Writers|[[Category:Current Writers]]|[[Category:{{{GroupName15}}} Members]]}}}}}}}}}}}}&lt;br /&gt;
|}}&lt;br /&gt;
&lt;br /&gt;
{{#ifeq: {{{text|}}}|True|&lt;br /&gt;
{{#if: {{{GroupName1|}}}|{{Empty}}|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName1|}}}|[[{{{GroupName1}}}|{{{GroupName1}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName2|}}}| {{o}} [[{{{GroupName2}}}|{{{GroupName2}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName3|}}}| {{o}} [[{{{GroupName3}}}|{{{GroupName3}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName4|}}}| {{o}} [[{{{GroupName4}}}|{{{GroupName4}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName5|}}}| {{o}} [[{{{GroupName5}}}|{{{GroupName5}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName6|}}}| {{o}} [[{{{GroupName6}}}|{{{GroupName6}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName7|}}}| {{o}} [[{{{GroupName7}}}|{{{GroupName7}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName8|}}}| {{o}} [[{{{GroupName8}}}|{{{GroupName8}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName9|}}}| {{o}} [[{{{GroupName9}}}|{{{GroupName9}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName10|}}}| {{o}} [[{{{GroupName10}}}|{{{GroupName10}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName11|}}}| {{o}} [[{{{GroupName11}}}|{{{GroupName11}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName12|}}}| {{o}} [[{{{GroupName12}}}|{{{GroupName12}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName13|}}}| {{o}} [[{{{GroupName13}}}|{{{GroupName13}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName14|}}}| {{o}} [[{{{GroupName14}}}|{{{GroupName14}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{GroupName15|}}}| {{o}} [[{{{GroupName15}}}|{{{GroupName15}}}]]|{{Empty}}}}&lt;br /&gt;
|}}&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:GroupNavbox&amp;diff=2468</id>
		<title>Template:GroupNavbox</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:GroupNavbox&amp;diff=2468"/>
		<updated>2026-05-08T04:11:39Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AGroupNavbox source revision 2021-03-21T11:32:31Z; refreshed 2026-05-08T04:11:39+00:00 --&amp;gt;&lt;br /&gt;
{{Navbox&lt;br /&gt;
| bodystyle = margin-top: 15px; border: 1px solid transparent; border-collapse: collapse; &lt;br /&gt;
| state  = uncollapsed&lt;br /&gt;
| title  = [[The Groups of Hack Forums]]&lt;br /&gt;
| titlestyle = background: #1f1f1f; font-weight: bold; font-size: 16px; text-align: center; color: white;  padding: 2px 0px 3px 0px; border: 4px solid #1f1f1f; border-radius: 5px;&lt;br /&gt;
| groupstyle = background: #1f1f1f; color: white; border: 4px solid #1f1f1f; border-radius: 5px 0px 0px 5px;&lt;br /&gt;
| abovestyle = background: #6B6A6A; color: white;&lt;br /&gt;
| liststyle  = border: 1px solid transparent; padding: 2px; border: 4px solid #1f1f1f; border-radius: 0px 5px 5px 0px; border-left: none;&lt;br /&gt;
| group1 = [[:Category:Active Groups|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;Active Groups&amp;lt;/span&amp;gt;]]&lt;br /&gt;
| list1  = {{#dpl:category=Active Groups|mode=inline|inlinetext= &amp;amp;nbsp; &amp;amp;bull; &amp;amp;nbsp;}}&lt;br /&gt;
| group2 = [[:Category:Defunct Groups|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;Defunct Groups&amp;lt;/span&amp;gt;]]&lt;br /&gt;
| list2  = {{#dpl:category=Defunct Groups|mode=inline|inlinetext= &amp;amp;nbsp; &amp;amp;bull; &amp;amp;nbsp;}}&lt;br /&gt;
| group3 = [[:Category:Upgrade Groups|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;Upgrade Groups&amp;lt;/span&amp;gt;]]&lt;br /&gt;
| list3  = {{#dpl:category=Upgrade Groups|mode=inline|inlinetext= &amp;amp;nbsp; &amp;amp;bull; &amp;amp;nbsp;}}&lt;br /&gt;
| group4 = [[:Category:Site Groups|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;Site Groups&amp;lt;/span&amp;gt;]]&lt;br /&gt;
| list4  = {{#dpl:category=Site Groups|mode=inline|inlinetext= &amp;amp;nbsp; &amp;amp;bull; &amp;amp;nbsp;}}&lt;br /&gt;
| group5 = [[:Category:Executive Groups|&amp;lt;span style=&amp;quot;color:white&amp;quot;&amp;gt;Executive Groups&amp;lt;/span&amp;gt;]]&lt;br /&gt;
| list5  = {{#dpl:category=Executive Groups|mode=inline|inlinetext= &amp;amp;nbsp; &amp;amp;bull; &amp;amp;nbsp;}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Group Templates]]&lt;br /&gt;
[[Category:Templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:GroupCat&amp;diff=2467</id>
		<title>Template:GroupCat</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:GroupCat&amp;diff=2467"/>
		<updated>2026-05-08T04:11:38Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AGroupCat source revision 2015-03-22T19:17:14Z; refreshed 2026-05-08T04:11:38+00:00 --&amp;gt;&lt;br /&gt;
{|class=&amp;quot;Talk-Notice&amp;quot; STYLE=&amp;quot;font-size: 100%&amp;quot; align=center cellspacing=3 style=&amp;quot;background: #333333; color: #ccc; margin-bottom: 1px; width: 100%; font-size: 20px&amp;quot;&lt;br /&gt;
|align=&amp;quot;left&amp;quot;|[[File:Online Accounts (Ficon).png|left]]This page lists all members who are &amp;lt;span style=&amp;quot;color: white; font-weight: bold;&amp;quot;&amp;gt;{{PAGENAME}}&amp;lt;/span&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Group Templates]]&lt;br /&gt;
[[Category:Templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:GroupBox&amp;diff=2466</id>
		<title>Template:GroupBox</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:GroupBox&amp;diff=2466"/>
		<updated>2026-05-08T04:11:38Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AGroupBox source revision 2025-11-16T21:19:24Z; refreshed 2026-05-08T04:11:37+00:00 --&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|  bodyclass  = hf-infobox&lt;br /&gt;
|  bodystyle  = background: transparent; color: #d2d2d2; float: right; border-collapse: collapse; border-style: hidden; border-radius: 5px; box-shadow: 0 0 0 4px #1f1f1f; margin: 5px;&lt;br /&gt;
|  above      = {{{GroupName}}}&lt;br /&gt;
|  abovestyle = background: #1f1f1f; font-weight: bold; font-size: 16px; text-align: center; color: white; padding: 0px 0px 3px 0px;&lt;br /&gt;
|  header1    = &amp;lt;span class=&amp;quot;groupbox-userbar&amp;quot;&amp;gt;{{#if: {{{GroupUserbar|}}}|[[File:{{{GroupUserbar}}}|center|link=]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{Userbar2|}}}|[[File:{{{Userbar2}}}|center|link=]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{Userbar3|}}}|[[File:{{{Userbar3}}}|center|link=]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{Userbar4|}}}|[[File:{{{Userbar4}}}|center|link=]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{Userbar5|}}}|[[File:{{{Userbar5}}}|center|link=]]|{{Empty}}}}&amp;lt;/span&amp;gt;&lt;br /&gt;
|  header2    = &amp;lt;span style=&amp;quot; font-weight: normal !important; font-size: 14px; font-style: italic;&amp;quot;&amp;gt;{{{GroupDesc}}}&amp;lt;/span&amp;gt;&lt;br /&gt;
|  labelstyle = border: 2px solid #1f1f1f; padding-left: 5px;&lt;br /&gt;
|  datastyle  = border: 2px solid #1f1f1f; padding-left: 5px;&lt;br /&gt;
|  label3     = {{#if:{{{Status|}}}|Status:|}}                                        |   data3 = {{#if:{{{Status|}}}|{{{Status}}}|}}&lt;br /&gt;
|  label4     = {{#if:{{{Type|}}}|Type:|}}                                            |   data4 = {{#if:{{{Type|}}}|{{{Type}}}|}}&lt;br /&gt;
|  label5     = {{#if:{{{DateFounded|}}}|Founded:|}}                                  |   data5 = {{#if:{{{DateFounded|}}}|{{{DateFounded}}}|}}&lt;br /&gt;
|  label6     = {{#if:{{{Owner|}}}|Owner:|}}                                          |   data6 = {{#if:{{{Owner|}}}|[[{{{Owner}}}|{{White|{{{Owner}}}}}]]|}}&lt;br /&gt;
|  label7     = {{#if:{{{Leaders|}}}|{{#ifeq:{{{Type|}}}|Executive|All Members|Leaders}}|{{Empty}}|}} |   data7 = {{#if:{{{Leaders|}}}|{{#ifeq:{{{Leaders|}}}|-|-|&amp;lt;span class=&amp;quot;GroupLeaders&amp;quot;&amp;gt;{{{Leaders}}}&amp;lt;/span&amp;gt;}}|}}&lt;br /&gt;
|  label8     = {{#if:{{{PastLeaders|}}}|{{#ifeq:{{{Type|}}}|Executive|Previous Members|Past Leaders}}|}} |   data8 = {{#if:{{{PastLeaders|}}}|{{#ifeq:{{{PastLeaders|}}}|-|-|&amp;lt;span class=&amp;quot;GroupLeaders&amp;quot;&amp;gt;{{{PastLeaders}}}&amp;lt;/span&amp;gt;}}|}}&lt;br /&gt;
|  label9     = {{#if:{{{PreviousIteration|}}}|Previous Iteration:|}}  |   data9 = {{#if:{{{PreviousIteration|}}}|{{#ifeq:{{{PreviousIteration|}}}|-|-|[[{{{PreviousIteration}}}|{{White|{{{PreviousIteration}}}}}]]}}|}}&lt;br /&gt;
|  label10    = {{#if:{{{NextIteration|}}}|Next Iteration:|}}          |   data10 = {{#if:{{{NextIteration|}}}|{{#ifeq:{{{NextIteration|}}}|-|-|[[{{{NextIteration}}}|{{White|{{{NextIteration}}}}}]]}}|}}&lt;br /&gt;
|  label11    = {{#if:{{{PostStar|}}}|Post Star:|}}          |   data11 = &amp;lt;span class=&amp;quot;groupbox-poststar&amp;quot;&amp;gt;{{#if:{{{PostStar|}}}|[[File:{{{PostStar}}}|center|link=]]}}&amp;lt;/span&amp;gt;&lt;br /&gt;
}}&lt;br /&gt;
{{#if: {{{GroupBanner|}}}|&amp;lt;div class=&amp;quot;group-banner-img&amp;quot;&amp;gt;[[File:{{{GroupBanner}}}|center|link=]]&amp;lt;/div&amp;gt;|}}&lt;br /&gt;
&lt;br /&gt;
==Introduction==&lt;br /&gt;
{{#if:{{{Introduction|}}}|{{{Introduction}}}|No introduction has been specified for this group.}}&lt;br /&gt;
&lt;br /&gt;
==History==&lt;br /&gt;
{{#if:{{{History|}}}|{{{History}}}|No history has been specified for this group.}}&lt;br /&gt;
&lt;br /&gt;
==Current Status==&lt;br /&gt;
{{#if:{{{CurrentStatus|}}}|{{{CurrentStatus}}}|The current status of this group is unknown.}}&lt;br /&gt;
{{#ifeq:{{{Type|}}}|Executive||{{#ifeq:{{{Type|}}}|Official||{{#if:{{{Parent|}}}|{{GroupSequence|Parent={{{Parent}}}}}|{{GroupSequence|Parent={{{GroupName}}}}}}}}}}}&lt;br /&gt;
{{GroupNavbox}}&lt;br /&gt;
[[Category:Group]]&lt;br /&gt;
{{#switch:{{{Type|}}}|Paid = [[Category:Paid Groups]]|Free = [[Category:Free Groups]]|Site = [[Category:Site Groups]]|Official = [[Category:Official Groups]]|Upgrade = [[Category:Upgrade Groups]]|Executive = [[Category:Executive Groups]]}}&lt;br /&gt;
&lt;br /&gt;
{{#switch:{{{Status|}}}|Active = [[Category:Active Groups]]|Closed = [[Category:Closed Groups]]|Defunct = [[Category:Defunct Groups]]}}&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This template is to be used for official groups. Do not use it on any other page.&lt;br /&gt;
&lt;br /&gt;
==Documentation==&lt;br /&gt;
===Group Name===&lt;br /&gt;
The name of the group.&lt;br /&gt;
&lt;br /&gt;
===GroupBanner===&lt;br /&gt;
Filename of the banner of the group. If it is an animated image, upload a version of it that is resized to 300 pixels in width, but link the image to the original file (e.g. The Alliance (Resized Banner).png will link to The Alliance (Banner).gif)&lt;br /&gt;
&lt;br /&gt;
===GroupUserbar===&lt;br /&gt;
The filename of the userbar of the group in question. &lt;br /&gt;
&lt;br /&gt;
===Userbar2===&lt;br /&gt;
If the group had a different userbar before the current userbar, specify the filename here.&lt;br /&gt;
&lt;br /&gt;
===Userbar3===&lt;br /&gt;
Same as above for an even older userbar.&lt;br /&gt;
&lt;br /&gt;
===GroupDesc===&lt;br /&gt;
The official description of the group as found on showgroups.php or D3xus&#039; Old Groups document.&lt;br /&gt;
&lt;br /&gt;
===Type===&lt;br /&gt;
Free (the group was not paid for); Paid (the group was paid for); Official (the group was created by Omniscient for the site&#039;s purposes)&lt;br /&gt;
&lt;br /&gt;
===Status===&lt;br /&gt;
Active (the group is still around); Closed (the group no longer exists and has no successors [note: groups that are sold but the sold group is closed are treated as sold], OR the group changed while retaining the same owner); Sold (the group was sold to another member)&lt;br /&gt;
&lt;br /&gt;
===Parent===&lt;br /&gt;
The highest parent of the group. Example: Null&#039;s parent is The Alliance, Debug&#039;s parent is 143, Infamous I&#039;s parent is Propitious.&lt;br /&gt;
&lt;br /&gt;
===DateFounded===&lt;br /&gt;
If known, specify the approximate date the group was founded. Use HF News, recruitment threads, announcement threads, etc.&lt;br /&gt;
&lt;br /&gt;
===Owner===&lt;br /&gt;
Owner of the group from the same info, showgroups.php, Old Group doc&lt;br /&gt;
&lt;br /&gt;
===Leaders===&lt;br /&gt;
For current groups, specify the current leaders. For a defunct group, this should be blank.&lt;br /&gt;
&lt;br /&gt;
===PastLeaders===&lt;br /&gt;
Past leaders of the group. All leaders of a group that no longer exists go here.&lt;br /&gt;
&lt;br /&gt;
===PreviousIteration===&lt;br /&gt;
If the group was previously known as something, specify that group here.&lt;br /&gt;
&lt;br /&gt;
===NextIteration===&lt;br /&gt;
If the group becomes known as something else, specify that group here.&lt;br /&gt;
&lt;br /&gt;
===PostStar===&lt;br /&gt;
If the group has a post start different to the default, put the image name here.&lt;br /&gt;
&lt;br /&gt;
===Introduction===&lt;br /&gt;
Brief introduction to the group. Put the full description from recruitment/information threads here (please add a reference, though!). Put it in blockquote tags to indicate it is a quote. You should write something else in addition to the quote (please be neutral and factual; no bias).&lt;br /&gt;
&lt;br /&gt;
===History===&lt;br /&gt;
Events of the group, drama, whatever.&lt;br /&gt;
&lt;br /&gt;
===CurrentStatus===&lt;br /&gt;
If the group is no longer around, what came of it (why did they sell/change).&lt;br /&gt;
&lt;br /&gt;
A blank version of this can be found just below it.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{GroupBox&lt;br /&gt;
| GroupName         = &lt;br /&gt;
| GroupBanner       = &lt;br /&gt;
| GroupUserbar      = &lt;br /&gt;
| Userbar2          = &lt;br /&gt;
| Userbar3          = &lt;br /&gt;
| Userbar4          = &lt;br /&gt;
| Userbar5          =&lt;br /&gt;
| GroupDesc         = &lt;br /&gt;
| Status            = &lt;br /&gt;
| Type              = &lt;br /&gt;
| Parent            = &lt;br /&gt;
| DateFounded       = &lt;br /&gt;
| Owner             = &lt;br /&gt;
| Leaders           = &lt;br /&gt;
| PastLeaders       = &lt;br /&gt;
| PreviousIteration = &lt;br /&gt;
| NextIteration     = &lt;br /&gt;
| PostStar          = &lt;br /&gt;
| Introduction      =&lt;br /&gt;
| History           =&lt;br /&gt;
| CurrentStatus     =&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{GroupBox&lt;br /&gt;
| GroupName         = Full name of the group (includes any &amp;quot;The&amp;quot;s)&lt;br /&gt;
| GroupBanner       = Image of the group&#039;s banner (if it&#039;s animated, use the resized version). Only thing needed is the filename, not File:[...]&lt;br /&gt;
| GroupUserbar      = Image of the group&#039;s userbar. Only thing needed is the filename, not File:[...]&lt;br /&gt;
| Userbar2          = If the group has an older userbar, put the filename here.&lt;br /&gt;
| Userbar3          = If the group has an even older userbar, put the filename here.&lt;br /&gt;
| GroupDesc         = Description of the group. Use D3xus&#039; old groups doc for old groups, and showgroups.php for current groups. Keep this short; truncate things if you have to.&lt;br /&gt;
| Type              = Free / Paid / Site&lt;br /&gt;
| Status            = Active / Closed / Sold&lt;br /&gt;
| Parent            = The highest parent group of this group (e.g. Debug is 143, Null is The Alliance)&lt;br /&gt;
| DateFounded       = Date founded, if known. If not, make a guess from announcement threads on HF, recruitment threads, and &amp;quot;Hey, did anyone notice Group X just came?&amp;quot; This might be harder for older groups.&lt;br /&gt;
| Owner             = Solely the username of the owner of group, regardless of group being Active or Closed. Do not include formatting or linking, it will be done automatically.&lt;br /&gt;
| Leaders           = If the group is Closed, all leaders are Past. Otherwise, put Past Leaders here. Use {{o}} between group leaders like this: [[Member:123|Yugi]] {{o}} [[Member:456|Moto]]. If there are no current leaders (e.g. the group is closed), leave this field blank.&lt;br /&gt;
| PastLeaders       = Same thing as above. Any and all past leaders of the group go here. This might be hard to find, but dig around through both of D3xus&#039; old group threads, old recruitment threads, HF News, etc. If there are no past leaders, leave this field blank.&lt;br /&gt;
| PreviousIteration = If the group was formerly known as something (e.g. Rhythm was formerly known as Techsperts), put the name of the group here (just the name; nothing else). If this was the &amp;quot;first&amp;quot; group, leave this field blank.&lt;br /&gt;
| NextIteration     = If the group is closed and is now known as something else (e.g. The Alliance is now known as Null), put the name of the group here (just the name; nothing else). If this was the &amp;quot;last&amp;quot; group, leave this field blank.&lt;br /&gt;
| PostStar          = If the group has a post start different to the default, put the image name here.&lt;br /&gt;
| Introduction      = Brief introduction to the group. &lt;br /&gt;
| History           = How the group came to be, significant events, etc.&lt;br /&gt;
| CurrentStatus     = If the group is &amp;quot;Active,&amp;quot; say something about what they&#039;re doing now. If the group is &amp;quot;Closed,&amp;quot; add the reason why the group is closed.&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Group Templates]]&lt;br /&gt;
[[Category:Templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:Color&amp;diff=2465</id>
		<title>Template:Color</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:Color&amp;diff=2465"/>
		<updated>2026-05-08T04:11:37Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AColor source revision 2015-03-22T19:17:10Z; refreshed 2026-05-08T04:11:37+00:00 --&amp;gt;&lt;br /&gt;
&amp;lt;span style=&amp;quot;color:{{{1|}}}&amp;quot;&amp;gt;{{{2|{{{1|}}}}}}&amp;lt;/span&amp;gt;&amp;lt;noinclude&amp;gt;{{Documentation}}&amp;lt;!-- PLEASE ADD THIS TEMPLATE&#039;S CATEGORIES AND INTERWIKIS TO THE /doc SUBPAGE, THANKS --&amp;gt;&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:AwardsList&amp;diff=2464</id>
		<title>Template:AwardsList</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:AwardsList&amp;diff=2464"/>
		<updated>2026-05-08T04:11:36Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AAwardsList source revision 2021-06-08T20:22:57Z; refreshed 2026-05-08T04:11:36+00:00 --&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{AwardsList&lt;br /&gt;
| AwardName1= &lt;br /&gt;
| AwardName2= &lt;br /&gt;
| AwardName3= &lt;br /&gt;
| AwardName4= &lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
This template is no longer used. Awards are now displayed using foreach functions in the [[Template:MemberBox|MemberBox template]].&lt;br /&gt;
&lt;br /&gt;
This template is designed to show the current awards for a user and sort them into categories based on their awards. This automates the process of showing which users have what awards, and allows users more control if they gain new awards.&amp;lt;br&amp;gt;&lt;br /&gt;
When using this template, specify the full name of the award (no File, file extension, or (Award) is necessary). &lt;br /&gt;
The template can include a maximum of 50 awards. More can be added if necessary.&amp;lt;br&amp;gt;&lt;br /&gt;
This template should only be used on the [[Template:MemberBox|MemberBox template]].&amp;lt;br&amp;gt;&lt;br /&gt;
[[Category:Member Templates]]&lt;br /&gt;
[[Category:Templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{#ifeq: {{{text|}}}|False|&lt;br /&gt;
&amp;lt;span style=&amp;quot;line-height: 50%;&amp;quot;&amp;gt;&lt;br /&gt;
{{#if: {{{AwardName1|}}}|{{Empty}}|{{Empty}}}}{{#if:{{{AwardName1|}}}|[[File:{{{AwardName1}}} (Award).png|link={{{AwardName1}}}]]|{{Empty}}}}{{#if:{{{AwardName2|}}}|[[File:{{{AwardName2}}} (Award).png|link={{{AwardName2}}}]]|{{Empty}}}}{{#if:{{{AwardName3|}}}|[[File:{{{AwardName3}}} (Award).png|link={{{AwardName3}}}]]|{{Empty}}}}{{#if:{{{AwardName4|}}}|[[File:{{{AwardName4}}} (Award).png|link={{{AwardName4}}}]]|{{Empty}}}}{{#if:{{{AwardName5|}}}|[[File:{{{AwardName5}}} (Award).png|link={{{AwardName5}}}]]|{{Empty}}}}{{#if:{{{AwardName6|}}}|[[File:{{{AwardName6}}} (Award).png|link={{{AwardName6}}}]]|{{Empty}}}}{{#if:{{{AwardName7|}}}|[[File:{{{AwardName7}}} (Award).png|link={{{AwardName7}}}]]|{{Empty}}}}{{#if:{{{AwardName8|}}}|[[File:{{{AwardName8}}} (Award).png|link={{{AwardName8}}}]]|{{Empty}}}}{{#if:{{{AwardName9|}}}|[[File:{{{AwardName9}}} (Award).png|link={{{AwardName9}}}]]|{{Empty}}}}{{#if:{{{AwardName10|}}}|[[File:{{{AwardName10}}} (Award).png|link={{{AwardName10}}}]]|{{Empty}}}}{{#if:{{{AwardName11|}}}|[[File:{{{AwardName11}}} (Award).png|link={{{AwardName11}}}]]|{{Empty}}}}{{#if:{{{AwardName12|}}}|[[File:{{{AwardName12}}} (Award).png|link={{{AwardName12}}}]]|{{Empty}}}}{{#if:{{{AwardName13|}}}|[[File:{{{AwardName13}}} (Award).png|link={{{AwardName13}}}]]|{{Empty}}}}{{#if:{{{AwardName14|}}}|[[File:{{{AwardName14}}} (Award).png|link={{{AwardName14}}}]]|{{Empty}}}}{{#if:{{{AwardName15|}}}|[[File:{{{AwardName15}}} (Award).png|link={{{AwardName15}}}]]|{{Empty}}}}{{#if:{{{AwardName16|}}}|[[File:{{{AwardName16}}} (Award).png|link={{{AwardName16}}}]]|{{Empty}}}}{{#if:{{{AwardName17|}}}|[[File:{{{AwardName17}}} (Award).png|link={{{AwardName17}}}]]|{{Empty}}}}{{#if:{{{AwardName18|}}}|[[File:{{{AwardName18}}} (Award).png|link={{{AwardName18}}}]]|{{Empty}}}}{{#if:{{{AwardName19|}}}|[[File:{{{AwardName19}}} (Award).png|link={{{AwardName19}}}]]|{{Empty}}}}{{#if:{{{AwardName20|}}}|[[File:{{{AwardName20}}} (Award).png|link={{{AwardName20}}}]]|{{Empty}}}}{{#if:{{{AwardName21|}}}|[[File:{{{AwardName21}}} (Award).png|link={{{AwardName21}}}]]|{{Empty}}}}{{#if:{{{AwardName22|}}}|[[File:{{{AwardName22}}} (Award).png|link={{{AwardName22}}}]]|{{Empty}}}}{{#if:{{{AwardName23|}}}|[[File:{{{AwardName23}}} (Award).png|link={{{AwardName23}}}]]|{{Empty}}}}{{#if:{{{AwardName24|}}}|[[File:{{{AwardName24}}} (Award).png|link={{{AwardName24}}}]]|{{Empty}}}}{{#if:{{{AwardName25|}}}|[[File:{{{AwardName25}}} (Award).png|link={{{AwardName25}}}]]|{{Empty}}}}{{#if:{{{AwardName26|}}}|[[File:{{{AwardName26}}} (Award).png|link={{{AwardName26}}}]]|{{Empty}}}}{{#if:{{{AwardName27|}}}|[[File:{{{AwardName27}}} (Award).png|link={{{AwardName27}}}]]|{{Empty}}}}{{#if:{{{AwardName28|}}}|[[File:{{{AwardName28}}} (Award).png|link={{{AwardName28}}}]]|{{Empty}}}}{{#if:{{{AwardName29|}}}|[[File:{{{AwardName29}}} (Award).png|link={{{AwardName29}}}]]|{{Empty}}}}{{#if:{{{AwardName30|}}}|[[File:{{{AwardName30}}} (Award).png|link={{{AwardName30}}}]]|{{Empty}}}}{{#if:{{{AwardName31|}}}|[[File:{{{AwardName31}}} (Award).png|link={{{AwardName31}}}]]|{{Empty}}}}{{#if:{{{AwardName32|}}}|[[File:{{{AwardName32}}} (Award).png|link={{{AwardName32}}}]]|{{Empty}}}}{{#if:{{{AwardName33|}}}|[[File:{{{AwardName33}}} (Award).png|link={{{AwardName33}}}]]|{{Empty}}}}{{#if:{{{AwardName34|}}}|[[File:{{{AwardName34}}} (Award).png|link={{{AwardName34}}}]]|{{Empty}}}}{{#if:{{{AwardName35|}}}|[[File:{{{AwardName35}}} (Award).png|link={{{AwardName35}}}]]|{{Empty}}}}{{#if:{{{AwardName36|}}}|[[File:{{{AwardName36}}} (Award).png|link={{{AwardName36}}}]]|{{Empty}}}}{{#if:{{{AwardName37|}}}|[[File:{{{AwardName37}}} (Award).png|link={{{AwardName37}}}]]|{{Empty}}}}{{#if:{{{AwardName38|}}}|[[File:{{{AwardName38}}} (Award).png|link={{{AwardName38}}}]]|{{Empty}}}}{{#if:{{{AwardName39|}}}|[[File:{{{AwardName39}}} (Award).png|link={{{AwardName39}}}]]|{{Empty}}}}{{#if:{{{AwardName40|}}}|[[File:{{{AwardName40}}} (Award).png|link={{{AwardName40}}}]]|{{Empty}}}}{{#if:{{{AwardName41|}}}|[[File:{{{AwardName41}}} (Award).png|link={{{AwardName41}}}]]|{{Empty}}}}{{#if:{{{AwardName42|}}}|[[File:{{{AwardName42}}} (Award).png|link={{{AwardName42}}}]]|{{Empty}}}}{{#if:{{{AwardName43|}}}|[[File:{{{AwardName43}}} (Award).png|link={{{AwardName43}}}]]|{{Empty}}}}{{#if:{{{AwardName44|}}}|[[File:{{{AwardName44}}} (Award).png|link={{{AwardName44}}}]]|{{Empty}}}}{{#if:{{{AwardName45|}}}|[[File:{{{AwardName45}}} (Award).png|link={{{AwardName45}}}]]|{{Empty}}}}{{#if:{{{AwardName46|}}}|[[File:{{{AwardName46}}} (Award).png|link={{{AwardName46}}}]]|{{Empty}}}}{{#if:{{{AwardName47|}}}|[[File:{{{AwardName47}}} (Award).png|link={{{AwardName47}}}]]|{{Empty}}}}{{#if:{{{AwardName48|}}}|[[File:{{{AwardName48}}} (Award).png|link={{{AwardName48}}}]]|{{Empty}}}}{{#if:{{{AwardName49|}}}|[[File:{{{AwardName49}}} (Award).png|link={{{AwardName49}}}]]|{{Empty}}}}{{#if:{{{AwardName50|}}}|[[File:{{{AwardName50}}} (Award).png|link={{{AwardName50}}}]]|{{Empty}}}}{{#if:{{{AwardName51|}}}|[[File:{{{AwardName51}}} (Award).png|link={{{AwardName51}}}]]|{{Empty}}}}{{#if:{{{AwardName52|}}}|[[File:{{{AwardName52}}} (Award).png|link={{{AwardName52}}}]]|{{Empty}}}}{{#if:{{{AwardName53|}}}|[[File:{{{AwardName53}}} (Award).png|link={{{AwardName54}}}]]|{{Empty}}}}{{#if:{{{AwardName55|}}}|[[File:{{{AwardName55}}} (Award).png|link={{{AwardName55}}}]]|{{Empty}}}}{{#if:{{{AwardName56|}}}|[[File:{{{AwardName56}}} (Award).png|link={{{AwardName56}}}]]|{{Empty}}}}{{#if:{{{AwardName57|}}}|[[File:{{{AwardName57}}} (Award).png|link={{{AwardName57}}}]]|{{Empty}}}}{{#if:{{{AwardName58|}}}|[[File:{{{AwardName58}}} (Award).png|link={{{AwardName58}}}]]|{{Empty}}}}{{#if:{{{AwardName59|}}}|[[File:{{{AwardName59}}} (Award).png|link={{{AwardName59}}}]]|{{Empty}}}}{{#if:{{{AwardName60|}}}|[[File:{{{AwardName60}}} (Award).png|link={{{AwardName60}}}]]|{{Empty}}}}&lt;br /&gt;
&amp;lt;/span&amp;gt;&lt;br /&gt;
|}}&lt;br /&gt;
{{#ifeq: {{{text|}}}|True|&lt;br /&gt;
{{#if: {{{AwardName1|}}}|{{Empty}}|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName1|}}}|[[{{{AwardName1}}}|{{{AwardName1}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName2|}}}| {{o}} [[{{{AwardName2}}}|{{{AwardName2}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName3|}}}| {{o}} [[{{{AwardName3}}}|{{{AwardName3}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName4|}}}| {{o}} [[{{{AwardName4}}}|{{{AwardName4}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName5|}}}| {{o}} [[{{{AwardName5}}}|{{{AwardName5}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName6|}}}| {{o}} [[{{{AwardName6}}}|{{{AwardName6}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName7|}}}| {{o}} [[{{{AwardName7}}}|{{{AwardName7}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName8|}}}| {{o}} [[{{{AwardName8}}}|{{{AwardName8}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName9|}}}| {{o}} [[{{{AwardName9}}}|{{{AwardName9}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName10|}}}| {{o}} [[{{{AwardName10}}}|{{{AwardName10}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName11|}}}| {{o}} [[{{{AwardName11}}}|{{{AwardName11}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName12|}}}| {{o}} [[{{{AwardName12}}}|{{{AwardName12}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName13|}}}| {{o}} [[{{{AwardName13}}}|{{{AwardName13}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName14|}}}| {{o}} [[{{{AwardName14}}}|{{{AwardName14}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName15|}}}| {{o}} [[{{{AwardName15}}}|{{{AwardName15}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName16|}}}| {{o}} [[{{{AwardName16}}}|{{{AwardName16}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName17|}}}| {{o}} [[{{{AwardName17}}}|{{{AwardName17}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName18|}}}| {{o}} [[{{{AwardName18}}}|{{{AwardName18}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName19|}}}| {{o}} [[{{{AwardName19}}}|{{{AwardName19}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName20|}}}| {{o}} [[{{{AwardName20}}}|{{{AwardName20}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName21|}}}| {{o}} [[{{{AwardName21}}}|{{{AwardName21}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName22|}}}| {{o}} [[{{{AwardName22}}}|{{{AwardName22}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName23|}}}| {{o}} [[{{{AwardName23}}}|{{{AwardName23}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName24|}}}| {{o}} [[{{{AwardName24}}}|{{{AwardName24}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName25|}}}| {{o}} [[{{{AwardName25}}}|{{{AwardName25}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName26|}}}| {{o}} [[{{{AwardName26}}}|{{{AwardName26}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName27|}}}| {{o}} [[{{{AwardName27}}}|{{{AwardName27}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName28|}}}| {{o}} [[{{{AwardName28}}}|{{{AwardName28}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName29|}}}| {{o}} [[{{{AwardName29}}}|{{{AwardName29}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName30|}}}| {{o}} [[{{{AwardName30}}}|{{{AwardName30}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName31|}}}| {{o}} [[{{{AwardName31}}}|{{{AwardName31}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName32|}}}| {{o}} [[{{{AwardName32}}}|{{{AwardName32}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName33|}}}| {{o}} [[{{{AwardName33}}}|{{{AwardName33}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName34|}}}| {{o}} [[{{{AwardName34}}}|{{{AwardName34}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName35|}}}| {{o}} [[{{{AwardName35}}}|{{{AwardName35}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName36|}}}| {{o}} [[{{{AwardName36}}}|{{{AwardName36}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName37|}}}| {{o}} [[{{{AwardName37}}}|{{{AwardName37}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName38|}}}| {{o}} [[{{{AwardName38}}}|{{{AwardName38}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName39|}}}| {{o}} [[{{{AwardName39}}}|{{{AwardName39}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName40|}}}| {{o}} [[{{{AwardName40}}}|{{{AwardName40}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName41|}}}| {{o}} [[{{{AwardName41}}}|{{{AwardName41}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName42|}}}| {{o}} [[{{{AwardName42}}}|{{{AwardName42}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName43|}}}| {{o}} [[{{{AwardName43}}}|{{{AwardName43}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName44|}}}| {{o}} [[{{{AwardName44}}}|{{{AwardName44}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName45|}}}| {{o}} [[{{{AwardName45}}}|{{{AwardName45}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName46|}}}| {{o}} [[{{{AwardName46}}}|{{{AwardName46}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName47|}}}| {{o}} [[{{{AwardName47}}}|{{{AwardName47}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName48|}}}| {{o}} [[{{{AwardName48}}}|{{{AwardName48}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName49|}}}| {{o}} [[{{{AwardName49}}}|{{{AwardName49}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName50|}}}| {{o}} [[{{{AwardName50}}}|{{{AwardName50}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName51|}}}| {{o}} [[{{{AwardName51}}}|{{{AwardName51}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName52|}}}| {{o}} [[{{{AwardName52}}}|{{{AwardName52}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName53|}}}| {{o}} [[{{{AwardName53}}}|{{{AwardName53}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName54|}}}| {{o}} [[{{{AwardName54}}}|{{{AwardName54}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName55|}}}| {{o}} [[{{{AwardName55}}}|{{{AwardName55}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName56|}}}| {{o}} [[{{{AwardName56}}}|{{{AwardName56}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName57|}}}| {{o}} [[{{{AwardName57}}}|{{{AwardName57}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName58|}}}| {{o}} [[{{{AwardName58}}}|{{{AwardName58}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName59|}}}| {{o}} [[{{{AwardName59}}}|{{{AwardName59}}}]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName60|}}}| {{o}} [[{{{AwardName60}}}|{{{AwardName60}}}]]|{{Empty}}}}&lt;br /&gt;
|}}&lt;br /&gt;
{{#if: {{{AwardName1|}}}|[[Category:{{{AwardName1}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName2|}}}|[[Category:{{{AwardName2}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName3|}}}|[[Category:{{{AwardName3}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName4|}}}|[[Category:{{{AwardName4}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName5|}}}|[[Category:{{{AwardName5}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName6|}}}|[[Category:{{{AwardName6}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName7|}}}|[[Category:{{{AwardName7}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName8|}}}|[[Category:{{{AwardName8}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName9|}}}|[[Category:{{{AwardName9}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName10|}}}|[[Category:{{{AwardName10}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName11|}}}|[[Category:{{{AwardName11}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName12|}}}|[[Category:{{{AwardName12}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName13|}}}|[[Category:{{{AwardName13}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName14|}}}|[[Category:{{{AwardName14}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName15|}}}|[[Category:{{{AwardName15}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName16|}}}|[[Category:{{{AwardName16}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName17|}}}|[[Category:{{{AwardName17}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName18|}}}|[[Category:{{{AwardName18}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName19|}}}|[[Category:{{{AwardName19}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName20|}}}|[[Category:{{{AwardName20}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName21|}}}|[[Category:{{{AwardName21}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName22|}}}|[[Category:{{{AwardName22}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName23|}}}|[[Category:{{{AwardName23}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName24|}}}|[[Category:{{{AwardName24}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName25|}}}|[[Category:{{{AwardName25}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName26|}}}|[[Category:{{{AwardName26}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName27|}}}|[[Category:{{{AwardName27}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName28|}}}|[[Category:{{{AwardName28}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName29|}}}|[[Category:{{{AwardName29}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName30|}}}|[[Category:{{{AwardName30}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName31|}}}|[[Category:{{{AwardName31}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName32|}}}|[[Category:{{{AwardName32}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName33|}}}|[[Category:{{{AwardName33}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName34|}}}|[[Category:{{{AwardName34}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName35|}}}|[[Category:{{{AwardName35}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName36|}}}|[[Category:{{{AwardName36}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName37|}}}|[[Category:{{{AwardName37}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName38|}}}|[[Category:{{{AwardName38}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName39|}}}|[[Category:{{{AwardName39}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName40|}}}|[[Category:{{{AwardName40}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName41|}}}|[[Category:{{{AwardName41}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName42|}}}|[[Category:{{{AwardName42}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName43|}}}|[[Category:{{{AwardName43}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName44|}}}|[[Category:{{{AwardName44}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName45|}}}|[[Category:{{{AwardName45}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName46|}}}|[[Category:{{{AwardName46}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName47|}}}|[[Category:{{{AwardName47}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName48|}}}|[[Category:{{{AwardName48}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName49|}}}|[[Category:{{{AwardName49}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName50|}}}|[[Category:{{{AwardName50}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName51|}}}|[[Category:{{{AwardName51}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName52|}}}|[[Category:{{{AwardName52}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName53|}}}|[[Category:{{{AwardName53}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName54|}}}|[[Category:{{{AwardName54}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName55|}}}|[[Category:{{{AwardName55}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName56|}}}|[[Category:{{{AwardName56}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName57|}}}|[[Category:{{{AwardName57}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName58|}}}|[[Category:{{{AwardName58}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName59|}}}|[[Category:{{{AwardName59}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
{{#if: {{{AwardName60|}}}|[[Category:{{{AwardName60}}} Recipients]]|{{Empty}}}}&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:AwardNavbox&amp;diff=2463</id>
		<title>Template:AwardNavbox</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:AwardNavbox&amp;diff=2463"/>
		<updated>2026-05-08T04:11:36Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AAwardNavbox source revision 2022-01-31T18:47:18Z; refreshed 2026-05-08T04:11:35+00:00 --&amp;gt;&lt;br /&gt;
{{Navbox&lt;br /&gt;
| bodystyle = margin-top: 15px; width: 100%; border: 1px solid transparent; border-collapse: collapse;&lt;br /&gt;
| groupstyle = background: #1f1f1f; color: white; border: 4px solid #1f1f1f; border-radius: 5px 0px 0px 5px;&lt;br /&gt;
| abovestyle = background: #6B6A6A; color: white; &lt;br /&gt;
| state  = uncollapsed&lt;br /&gt;
| title  = [[Awards|&amp;lt;span style=&amp;quot;color: white;&amp;quot;&amp;gt;The Awards of Hack Forums&amp;lt;/span&amp;gt;]]&lt;br /&gt;
| titlestyle = background: #1f1f1f; font-weight: bold; font-size: 16px; text-align: center; color: white;  padding: 2px 0px 3px 0px; border: 4px solid #1f1f1f; border-radius: 5px;&lt;br /&gt;
| liststyle  = border: 1px solid transparent; padding: 2px; border: 4px solid #1f1f1f; border-radius: 0px 5px 5px 0px; border-left: none;&lt;br /&gt;
| group1 = Regular Awards&lt;br /&gt;
| list1  = {{#dpl:category=Regular Awards|mode=inline|inlinetext= &amp;amp;nbsp; &amp;amp;bull; &amp;amp;nbsp;}}&lt;br /&gt;
| group2 = Paid Awards&lt;br /&gt;
| list2  = {{#dpl:category=Paid Awards|mode=inline|inlinetext= &amp;amp;nbsp; &amp;amp;bull; &amp;amp;nbsp;}}&lt;br /&gt;
| group3 = Goal Awards&lt;br /&gt;
| list3  = {{#dpl:category=Goal Awards|mode=inline|inlinetext= &amp;amp;nbsp; &amp;amp;bull; &amp;amp;nbsp;}}&lt;br /&gt;
| group4 = Limited Edition Awards&lt;br /&gt;
| list4  = {{#dpl:category=Limited Awards|mode=inline|inlinetext= &amp;amp;nbsp; &amp;amp;bull; &amp;amp;nbsp;}}&lt;br /&gt;
| group5 = Discontinued Awards&lt;br /&gt;
| list5  = {{#dpl:category=Discontinued Awards|mode=inline|inlinetext= &amp;amp;nbsp; &amp;amp;bull; &amp;amp;nbsp;}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Award Templates]]&lt;br /&gt;
[[Category:Templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:AwardCat&amp;diff=2462</id>
		<title>Template:AwardCat</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:AwardCat&amp;diff=2462"/>
		<updated>2026-05-08T04:11:35Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AAwardCat source revision 2015-07-22T16:56:39Z; refreshed 2026-05-08T04:11:35+00:00 --&amp;gt;&lt;br /&gt;
{|class=&amp;quot;Talk-Notice&amp;quot; STYLE=&amp;quot;font-size: 100%&amp;quot; align=center cellspacing=3 style=&amp;quot;background: #333333; color: #ccc; margin-bottom: 1px; width: 100%; font-size: 20px&amp;quot;&lt;br /&gt;
|align=&amp;quot;left&amp;quot;|[[File:The Lounge (Ficon).png|left]]This page lists all members who are &amp;lt;span style=&amp;quot;color: white; font-weight: bold;&amp;quot;&amp;gt;{{PAGENAME}}&amp;lt;/span&amp;gt;.&lt;br /&gt;
|}&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
[[Category:Award Templates]]&lt;br /&gt;
[[Category:Templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Template:AwardBox&amp;diff=2461</id>
		<title>Template:AwardBox</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Template:AwardBox&amp;diff=2461"/>
		<updated>2026-05-08T04:11:34Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Template%3AAwardBox source revision 2025-11-21T16:53:50Z; refreshed 2026-05-08T04:11:34+00:00 --&amp;gt;&lt;br /&gt;
&amp;lt;includeonly&amp;gt;&lt;br /&gt;
{{Infobox&lt;br /&gt;
|  bodystyle  = overflow: auto; width: 20%; background: transparent; color: #d2d2d2; float: right; border-collapse: collapse; border-style: hidden; border-radius: 5px; box-shadow: 0 0 0 4px #1f1f1f; margin: 5px;&lt;br /&gt;
|  above      = {{PAGENAME}}&lt;br /&gt;
|  abovestyle = background: #1f1f1f; font-weight: bold; font-size: 16px; text-align: center; color: white; padding: 0px 0px 3px 0px;&lt;br /&gt;
|  labelstyle = border: 2px solid #1f1f1f; padding-left: 5px;&lt;br /&gt;
|  datastyle  = border: 2px solid #1f1f1f; padding-left: 5px;&lt;br /&gt;
|  image      = [[File:{{PAGENAME}} (Award).png|center|link=]]&lt;br /&gt;
|  caption    = &amp;lt;i&amp;gt;{{{AwardDesc}}}&amp;lt;/i&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
|  label1     = Type:       | data1 =  {{{AwardType}}}&lt;br /&gt;
|  label2     = Award ID:   | data2 = [http://www.hackforums.net/myawards.php?awid={{{AwardID}}} &amp;lt;span style=&amp;quot;color: white;&amp;quot;&amp;gt;{{{AwardID}}}&amp;lt;/span&amp;gt;]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Details==&lt;br /&gt;
{{#if: {{{AwardDetails|}}}|{{{AwardDetails}}}|There are no known details about this award at this time.}}&lt;br /&gt;
&lt;br /&gt;
==Recipients==&lt;br /&gt;
{{#if: {{{AwardRecip|}}}|{{{AwardRecip}}}|There are no known recipients of this award at this time, or they have not been specified.}}&lt;br /&gt;
&lt;br /&gt;
{{AwardNavbox}}&lt;br /&gt;
[[Category:Awards]]&lt;br /&gt;
{{#switch:{{{AwardType|}}}|Regular = [[Category:Regular Awards]]|Paid = [[Category:Paid Awards]]|Limited = [[Category:Limited Awards]]|Goal = [[Category:Goal Awards]]|Discontinued = [[Category:Discontinued Awards]]|}}&lt;br /&gt;
&amp;lt;/includeonly&amp;gt;&lt;br /&gt;
&amp;lt;noinclude&amp;gt;&lt;br /&gt;
This template is used on Award pages (any article with the Award: namespace), and is used to describe the specific details of said award.&lt;br /&gt;
==Documentation==&lt;br /&gt;
===AwardDesc===&lt;br /&gt;
The official description of the award as it appears on [http://www.hackforums.net/myawards.php the Awards page].&lt;br /&gt;
&lt;br /&gt;
===AwardType===&lt;br /&gt;
Valid arguments are Regular, Paid, Limited, Goal, Discontinued.&lt;br /&gt;
====Regular====&lt;br /&gt;
Anything that can be given out normally, and is not explicitly defined as Limited in its description or by Omniscient.&lt;br /&gt;
&lt;br /&gt;
====Paid====&lt;br /&gt;
Anything that you can purchase with money; all awards on [http://www.hackforums.net/buyawards.php this page] are Paid Awards.&lt;br /&gt;
&lt;br /&gt;
====Limited====&lt;br /&gt;
Anything explicitly defined as being in limited quantity. The only two that fall into this category are the [[Qwazz Star]] and [[Gavel of Dredd]].&lt;br /&gt;
&lt;br /&gt;
====Goal====&lt;br /&gt;
Anything that is an award goal.&lt;br /&gt;
&lt;br /&gt;
====Discontinued====&lt;br /&gt;
Anything that is no longer being distributed towards members. Awards that fall into this category often say that they&#039;re no longer being given out in their description.&lt;br /&gt;
&lt;br /&gt;
===AwardID===&lt;br /&gt;
ID number of the award from the Awards Page.&lt;br /&gt;
&lt;br /&gt;
===AwardDetails===&lt;br /&gt;
Go into more details on what the award is about, if it has a history or if there&#039;s anything special about it. Be creative.&lt;br /&gt;
&lt;br /&gt;
===AwardRecip===&lt;br /&gt;
Wiki Table of the Award Recipients. Blank template is below.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&amp;lt;!--DO NOT CHANGE ANYTHING BELOW ME --&amp;gt;&lt;br /&gt;
{{{!}} class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
{{!}}-&lt;br /&gt;
! Recipient Name !! Reason !! Date Given&lt;br /&gt;
{{!}}-&lt;br /&gt;
&amp;lt;!--DO NOT CHANGE ANYTHING ABOVE ME --&amp;gt;&lt;br /&gt;
{{!}} Name Here {{!}}{{!}} Reason Here {{!}}{{!}} Date Here&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Name Here {{!}}{{!}} Reason Here {{!}}{{!}} Date Here&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Name Here {{!}}{{!}} Reason Here {{!}}{{!}} Date Here&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}} Name Here {{!}}{{!}} Reason Here {{!}}{{!}} Date Here&lt;br /&gt;
{{!}}-&lt;br /&gt;
{{!}}}&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
A blank version of the template can be found below.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{AwardBox&lt;br /&gt;
| AwardDesc    = &lt;br /&gt;
| AwardType    = &lt;br /&gt;
| AwardID      = &lt;br /&gt;
| AwardDetails = &lt;br /&gt;
| AwardRecip   = &lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
Example usage is below.&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
{{AwardBox&lt;br /&gt;
| AwardDesc    = Full description of the award, as it appears on awards.php&lt;br /&gt;
| AwardType    = Paid, Regular, Limited, Discontinued.&lt;br /&gt;
| AwardID      = The exact Award ID #.&lt;br /&gt;
| AwardDetails = If details for the award are public (donator awards), list them here. Else, detail why the award is usually given out.&lt;br /&gt;
| AwardRecip   = Table of Award Recipients. When making the table, the pipe character must be escaped! Use {{!}} to do it.  &lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
[[Category:Award Templates]]&lt;br /&gt;
[[Category:Templates]]&lt;br /&gt;
&amp;lt;/noinclude&amp;gt;&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Account_Profiles_and_Pruning&amp;diff=2460</id>
		<title>Account Profiles and Pruning</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Account_Profiles_and_Pruning&amp;diff=2460"/>
		<updated>2026-05-08T04:11:33Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Account_Profiles_and_Pruning source revision 2022-09-27T21:18:38Z; refreshed 2026-05-08T04:11:33+00:00 --&amp;gt;&lt;br /&gt;
==Why do you prune data on the site?==&lt;br /&gt;
We do this to keep our database as efficient as possible. The smaller our database the better the site runs. It&#039;s a necessary evil.&lt;br /&gt;
&lt;br /&gt;
==Are posts pruned after a certain time?==&lt;br /&gt;
No, they are not. The only posts that are on occasion pruned are the ones in the Junk section which are removed from member view. However this is not very often and we often have hundreds of thousands of posts in our Junk.&lt;br /&gt;
&lt;br /&gt;
==My post count just dramatically fell. What happened?==&lt;br /&gt;
Most likely we just deleted a lot of threads in Junk and did a post recount. If you noticed your post count drop it&#039;s likely you&#039;re a post whore. Try to get a life and care less about your stats.&lt;br /&gt;
&lt;br /&gt;
==Are PMs pruned?==&lt;br /&gt;
Yes they are. Our current policy is this:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Regular Members:&#039;&#039; PMs older than 2 months&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;L33t Members:&#039;&#039; PMs older than 6 months&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Ub3r Members:&#039;&#039; PMs older than 1 year&lt;br /&gt;
&lt;br /&gt;
==Can I save my PMs before they get pruned?==&lt;br /&gt;
We don&#039;t usually announce prunes of PMs. You can do PM exports on your own at any time via the usercp. Once you export we ask that you prune on your own to help alleviate space.&lt;br /&gt;
&lt;br /&gt;
==Where do I empty my PMs?==&lt;br /&gt;
[http://www.hackforums.net/private.php?action=empty http://www.hackforums.net/private.php?action=empty]&lt;br /&gt;
&lt;br /&gt;
==How do I export my PMs?==&lt;br /&gt;
[http://www.hackforums.net/private.php?action=export http://www.hackforums.net/private.php?action=export]&lt;br /&gt;
&lt;br /&gt;
==Do you prune members?==&lt;br /&gt;
We do. We delete members that have not activated their accounts fairly often. We also delete 0 post members older than 2 months. So most of our member base is actually posting members.&lt;br /&gt;
&lt;br /&gt;
==Do you prune Convos?==&lt;br /&gt;
We do not prune conversations as a whole. We prune messages in Convos that are older than 6 months. Pruning occurs daily!&lt;br /&gt;
&lt;br /&gt;
==How do I export a Convo?==&lt;br /&gt;
Enter a convo you want to export and an option for exporting is in the upper right corner of the convo window. When you hover over it with a mouse, it says &amp;quot;Export Convo&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
==Can I export all Convos at once like PMs?==&lt;br /&gt;
Currently, that is not supported. You can only export one by one.&lt;br /&gt;
&lt;br /&gt;
==Can you delete an account so I can get the username?==&lt;br /&gt;
No, don&#039;t even ask. If it&#039;s a zero post member you can wait till the account is pruned but don&#039;t ask us to delete an individual account for you. Even if it has one post from 2 years ago and they&#039;ve never returned we will not delete the account just so you can have a username.&lt;br /&gt;
&lt;br /&gt;
==My Bytes were deleted, where did they go?==&lt;br /&gt;
The Bytes for a member are set to 0 if there is one year of account inactivity. They can&#039;t be recovered.&lt;br /&gt;
&lt;br /&gt;
==What else do you prune?==&lt;br /&gt;
Well we&#039;ve covered PMs, posts, Bytes, convo messages and members. There isn&#039;t anything else that&#039;s not MyBB standard like clearing out the search terms daily or the other things that do not affect your account.&lt;br /&gt;
&lt;br /&gt;
==My account is &amp;quot;closed&amp;quot;. What happened?==&lt;br /&gt;
Member accounts that have not been logged into for 6 months or more are subject to being closed. The account will no longer function. We will not recover these accounts. We do this to protect old inactive accounts from being stolen then used inappropriately by someone else. If you wish to rejoin HF you can may do so as long as you were not intentionally banned from HF due to a violation. You will need to use a different username and email.&lt;br /&gt;
&lt;br /&gt;
==Can you alter, delete, or prune my username history?==&lt;br /&gt;
Sorry but no. We do not alter a member&#039;s username history. It currently displays the previous 6 months to all users except Admins and Staff who can view the full history of username changes. In the rare case you just accidentally entered your password instead contact Omniscient for removal but also immediately change your password and username.&lt;br /&gt;
&lt;br /&gt;
==Can I get my account closed or deleted?==&lt;br /&gt;
Upon request we can close your account. We will first review the account to ensure you are the original account owner. If we decide to close the account it&#039;s permanent and you will not be allowed to return. We do not delete accounts once posts are made. We will not delete an accounts threads, posts, or PMs but over time these might eventually be pruned.&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Documents]]]&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Category:Awards&amp;diff=2459</id>
		<title>Category:Awards</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Category:Awards&amp;diff=2459"/>
		<updated>2026-05-08T04:11:33Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Category%3AAwards source revision 2021-07-25T11:42:45Z; refreshed 2026-05-08T04:11:32+00:00 --&amp;gt;&lt;br /&gt;
Awards are images a user can earn or buy through various means. Whether by purchasing an award, or being awarded &lt;br /&gt;
for a contribution, contest, or gift, a user can have multiple rows of awards on their profile. Displayed in the postbit &lt;br /&gt;
to the far left of their post(s). While on the member profile page you can view all the awards a user has by clicking the &amp;quot;Awards&amp;quot; button located on the far right below the user(s) stats.&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Category:Staff&amp;diff=2458</id>
		<title>Category:Staff</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Category:Staff&amp;diff=2458"/>
		<updated>2026-05-08T04:11:32Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Category%3AStaff source revision 2016-02-01T07:17:03Z; refreshed 2026-05-08T04:11:32+00:00 --&amp;gt;&lt;br /&gt;
==About==&lt;br /&gt;
For an explanation of this category, see [[Staff]].&lt;br /&gt;
&lt;br /&gt;
==Members==&lt;br /&gt;
To see a list of the current staff members, please refer to [[Current Staff Members|this link]].&lt;br /&gt;
&lt;br /&gt;
[[Category:Members]]&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Category:Members&amp;diff=2457</id>
		<title>Category:Members</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Category:Members&amp;diff=2457"/>
		<updated>2026-05-08T04:11:32Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Category%3AMembers source revision 2016-04-04T09:48:16Z; refreshed 2026-05-08T04:11:31+00:00 --&amp;gt;&lt;br /&gt;
This page lists members deemed to be notable or worth reading about.&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Awards&amp;diff=2456</id>
		<title>Awards</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Awards&amp;diff=2456"/>
		<updated>2026-05-08T04:11:31Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Awards source revision 2018-02-19T19:19:11Z; refreshed 2026-05-08T04:11:30+00:00 --&amp;gt;&lt;br /&gt;
This section should help answer some questions related to the awards system of MyBB. &lt;br /&gt;
&lt;br /&gt;
==How do I pay for a donation award?==&lt;br /&gt;
It&#039;s extremely easy and pretty self explanatory. Just go to our [http://www.hackforums.net/buyawards.php Buy Awards] page. &lt;br /&gt;
&lt;br /&gt;
==How do I get a non-donation award?==&lt;br /&gt;
Awards are distributed by Omniscient at his sole discretion. You cannot get an award by asking for one via PM. Awards are only occasionally given out. Obtaining non-donation awards isn&#039;t known to occur regularly and don&#039;t have have any specific requirements behind them.&lt;br /&gt;
&lt;br /&gt;
==Can I create a thread to nominate myself or another member for an award?==&lt;br /&gt;
No. Do not make any threads to nominate or suggest the granting of an award. If an official thread already exists you can post in it but that&#039;s the extent of it. Do not make a new thread for that purpose. &lt;br /&gt;
&lt;br /&gt;
==What are awards for?==&lt;br /&gt;
Awards are simply a way for admins to grant a member recognition for something. The award itself normally has a special meaning attached to it. You can view the reason an award was given by going to a members profile then clicking their award&#039;s details. The awards page also displays meanings for each award. &lt;br /&gt;
&lt;br /&gt;
==How do I get the donation awards?==&lt;br /&gt;
There are multiple awards that can obtained via a donation. For example, you can get the Green Emerald Donator award by donating $20 to HF. If you donate $50 or more to HF, you&#039;ll get the Rich Bitch award. All awards are for separate one-time donations. For example, to get Emerald and Rich Bitch you need to donate at least $70 in a single donation. Small donations do not accumulate towards any donation awards. The Grand Amethyst is a $1000 one-time donation. You can [http://www.hackforums.net/buyawards.php Buy Awards here].&lt;br /&gt;
&lt;br /&gt;
Here is a simple breakdown.&lt;br /&gt;
&lt;br /&gt;
[[File:Emerald Donator (Award).png|link=Emerald Donator]] [[Emerald Donator]] $20+&lt;br /&gt;
&lt;br /&gt;
[[File:Rich Bitch (Award).png|link=Rich Bitch]] [[Rich Bitch]] $50+&lt;br /&gt;
&lt;br /&gt;
[[File:Benefactor (Award).png|link=Benefactor]] [[Benefactor]] $200+&lt;br /&gt;
&lt;br /&gt;
[[File:OMC (Award).png|link=OMC]] [[OMC]] This award is no longer available.&lt;br /&gt;
&lt;br /&gt;
[[File:Bitcoinage (Award).png|link=Bitcoinage]] [[Bitcoinage]] $250 BTC&lt;br /&gt;
&lt;br /&gt;
[[File:Litecoinage (Award).png|link=Litecoinage]] [[Litecoinage]] $20 in LTC&lt;br /&gt;
&lt;br /&gt;
[[File:DarkDash (Award).png|link=DarkDash]] [[DarkDash]] $20 DASH&lt;br /&gt;
&lt;br /&gt;
[[File:Dogecoinage (Award).png|link=Dogecoinage]] [[Dogecoinage]] $20 DOGE&lt;br /&gt;
&lt;br /&gt;
[[File:Brony (Award).png|link=Brony]] [[Brony]] $100&lt;br /&gt;
&lt;br /&gt;
[[File:Gift (Award).png|link=Gift]] [[Gift]] $25&lt;br /&gt;
&lt;br /&gt;
[[File:Legalize It (Award).png|link=Legalize It]] [[Legalize It]] $50 in BTC&lt;br /&gt;
&lt;br /&gt;
[[File:Master Donator (Award).png|link=Master Donator]] [[Master Donator]] $500+&lt;br /&gt;
&lt;br /&gt;
[[File:Grand Amethyst (Award).png|link=Grand Amethyst]] [[Grand Amethyst]] $1000+&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Do member upgrades and sticky purchases count toward donation awards?==&lt;br /&gt;
No they do not. Donation awards are given following a donation towards any specific donation award.&lt;br /&gt;
&lt;br /&gt;
==Do you accept Bitcoin for other donation awards besides Bitcoinage?==&lt;br /&gt;
Yes. Bitcoin is accepted for donation awards. Donations must be made through our BTC processor at the current BTC valuation. If 1 BTC = $120 USD then you must donate .418 BTC for the Rich Bitch ($50+) award. When buying awards the payment processor will automatically convert the price of your choice of crypto currency to USD. &lt;br /&gt;
&lt;br /&gt;
==What are Bitcoin, Doge, Omnicoin, and Dash?==&lt;br /&gt;
These are all crypto currencies. Further information involving crypto currencies can be found in our [[Crypto Currency]] forum. &lt;br /&gt;
&lt;br /&gt;
==What is the Gift award?==&lt;br /&gt;
The Gift award is an award you can purchase for another member. You are also allowed to purchase it for yourself if you have no friends. The description for the award will read either &amp;quot;You bought yourself a gift&amp;quot; or &amp;quot;A gift from MEMBER&amp;quot;. You can buy as many Gift awards for different members as you&#039;d like but only one award per member will be granted. The Gift award costs $25. &lt;br /&gt;
&lt;br /&gt;
==What is the Brony award?==&lt;br /&gt;
The Brony award is that &amp;quot;damned if you do&amp;quot; type of award. Be aware that Omniscient will very likely criticize you in the award&#039;s description when granting you the award. Expect to be roasted if you purchase the Brony award, which is $100. &lt;br /&gt;
&lt;br /&gt;
==What is the Legalize It award?==&lt;br /&gt;
The Legalize It award is the first political statement award on HF. It&#039;s in support of legalizing and decriminalizing cannabis in America. 25% of all donations go toward NORML.org, which is an organization dedicated to reforming marijuana laws. While not everyone will agree with the legalization stance, the general HF community feels that this award is in line with the freedom our website and member base represents. You can purchase the award and [http://www.hackforums.net/buyawards.php make your donation here]. &lt;br /&gt;
&lt;br /&gt;
==How long after I pay before I get the award?==&lt;br /&gt;
It depends on your payment method, but in most cases it&#039;s nearly instant. If you use a crypto currency (BTC, OMC, DOGE, DASH) you have to wait for confirmations, which can take anywhere between a few minutes to a couple hours. If after 24 hours you still don&#039;t have your award please contact [[Omniscient]] with your transaction id and payment info. &lt;br /&gt;
&lt;br /&gt;
==Can I change the display order?==&lt;br /&gt;
Currently this is not possible. The display order of the awards is fixed. &lt;br /&gt;
&lt;br /&gt;
==I think I&#039;m qualified to get an award. Who do I contact?==&lt;br /&gt;
No one. What you believe about your qualifications to get an award is irrelevant. &lt;br /&gt;
&lt;br /&gt;
==I want to know how to get a specific award.==&lt;br /&gt;
Save for the donation awards, there are no specific requirements set for awards on Hack Forums. They are given at the discretion of Omniscient only.&lt;br /&gt;
&lt;br /&gt;
==Another member has an award that I want. They said they got it by doing X.==&lt;br /&gt;
Awards are given to different members for different reasons. What works for one member will in all likelihood not work for you. Awards are given out solely at the discretion of Omniscient. &lt;br /&gt;
&lt;br /&gt;
==I think another member deserves an award. Can I nominate them?==&lt;br /&gt;
No. Award nominations are not allowed on Hack Forums and are not taken into account when awards are being distributed.&lt;br /&gt;
&lt;br /&gt;
==I sent a PM to an admin about an award. They never responded.==&lt;br /&gt;
Admins are busy. Messaging administrators about awards is disallowed. Admins often completely ignore award requests and will not respond to them. Don&#039;t expect the award or a response. &lt;br /&gt;
&lt;br /&gt;
==Awards seem really hard to get but I see some members with a lot of them.==&lt;br /&gt;
The difficulty in obtaining awards is intentional and is done only so the most deserving members in the eyes of Omniscient are granted awards.&lt;br /&gt;
&lt;br /&gt;
==I heard I can buy awards. Is that true?==&lt;br /&gt;
The fact is that sometimes a donation is made and a show of appreciation is the granting of an award. Awards aren&#039;t sold per se. &lt;br /&gt;
&lt;br /&gt;
==Can I suggest a new award?==&lt;br /&gt;
No. Awards are created by the admins only at their own discretion. Suggestion for new awards are ignored. Do not PM staff or create a suggestion thread for new awards. &lt;br /&gt;
&lt;br /&gt;
==Can someone else pay for my donation award?==&lt;br /&gt;
Yes, they can use the order form to donate and buy an award for you. This can be done by entering your UID where it&#039;s requested. &lt;br /&gt;
&lt;br /&gt;
==Can I buy someone else a donation award?==&lt;br /&gt;
You sure can. Just make sure your UID is entered where it&#039;s requested. &lt;br /&gt;
&lt;br /&gt;
==I have a forum. Can I get the plugin?==&lt;br /&gt;
The plugin is called My Award, and it&#039;s for MyBB forum software developed by the admin [[Omniscient]]. You can obtain the plugin at [http://www.mybbcentral.com/ MyBB Central].&lt;br /&gt;
&lt;br /&gt;
==Can I sell my award to someone else?==&lt;br /&gt;
Awards cannot be sold or transferred unless stated otherwise by Omniscient.&lt;br /&gt;
&lt;br /&gt;
[[Category:Help Documents]]&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Administrators&amp;diff=2455</id>
		<title>Administrators</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Administrators&amp;diff=2455"/>
		<updated>2026-05-08T04:11:30Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Administrators source revision 2025-11-17T23:00:04Z; refreshed 2026-05-08T04:11:29+00:00 --&amp;gt;&lt;br /&gt;
{{Add|History, adjust template to cater to default usergroups}}&lt;br /&gt;
{{GroupBox&lt;br /&gt;
| GroupName = Administrators&lt;br /&gt;
| GroupUserbar = Administrators-a (Userbar).gif&lt;br /&gt;
| Userbar2 = Administrators (Userbar).png&lt;br /&gt;
| Userbar3 = Administrators 2 (Userbar).png&lt;br /&gt;
| Userbar4 = Administrators 3 (Userbar).png&lt;br /&gt;
| GroupDesc = The default user group for all Hack Forums Administrators. &lt;br /&gt;
| Status = &lt;br /&gt;
| Type = Executive&lt;br /&gt;
| Parent = None&lt;br /&gt;
| DateFounded = 07/08/2007&lt;br /&gt;
| Leaders = [[Omniscient]] &lt;br /&gt;
| PastLeaders = [[Factor8]] {{o}} [[Xerotic]] {{o}} [[iBruteforce]] {{o}} [[Guru]] {{o}} [[Crow]] {{o}} [[Judge Dredd]] {{o}} [[Xch4ng3]]&lt;br /&gt;
| Introduction =&lt;br /&gt;
It is the user group all Administrators belong. They perform essential tasks such as approving users for UB3R, moderating the forums, creating new forums and several other functions which are critical in keeping Hack Forums running.&lt;br /&gt;
Until early 2018 Omniscient was the only administrator of HF in a long time. &lt;br /&gt;
| History = Oldest (Executive) group in Hack Forums, considering that it was created right after the forum&#039;s creation.&lt;br /&gt;
| Current Status = &lt;br /&gt;
}}&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Category:Groups&amp;diff=2454</id>
		<title>Category:Groups</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Category:Groups&amp;diff=2454"/>
		<updated>2026-05-08T04:11:29Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Category%3AGroups source revision 2014-08-03T10:07:07Z; refreshed 2026-05-08T04:11:29+00:00 --&amp;gt;&lt;br /&gt;
For an explanation of this category, see [[Groups]].&lt;br /&gt;
&lt;br /&gt;
See also [[List of groups]].&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=Current_Staff_Members&amp;diff=2453</id>
		<title>Current Staff Members</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=Current_Staff_Members&amp;diff=2453"/>
		<updated>2026-05-08T04:11:28Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: Imported from wiki.hackforums.net public API&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;!-- Imported from https://wiki.hackforums.net/Current_Staff_Members source revision 2017-01-26T05:01:41Z; refreshed 2026-05-08T04:11:28+00:00 --&amp;gt;&lt;br /&gt;
__NOTOC__&lt;br /&gt;
[[Staff|Staff members]] enforce the Hack Forums rules, as described in the [[Help Documents]], as well as direct or indirect announcements made by any administrator, usually [[Omniscient]]. They can ban members, give or retract up to 5 [[Reputation|reputation points,]] give [[warnings]], view and act upon reported posts, [[junk]] or edit any thread/post and make small announcements based on prior administrative action. The number of staff members usually sits at 5-6 members at any given time.&lt;br /&gt;
&lt;br /&gt;
== Administrators ==&lt;br /&gt;
{{HorizTable&lt;br /&gt;
| Row1IMG    = Omniscient (Avatar1).gif&lt;br /&gt;
| Row1Title  = [[Omniscient|&amp;lt;span style=&amp;quot;color:#FF66FF&amp;quot;&amp;gt;Omniscient&amp;lt;/span&amp;gt;]]&lt;br /&gt;
| Row1Desc   = The one and only.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
== Staff Members == &lt;br /&gt;
{{HorizTable&lt;br /&gt;
&lt;br /&gt;
| Row1IMG    = KoH (Avatar1).png&lt;br /&gt;
| Row1Title  = [[King of Hearts|&amp;lt;span style=&amp;quot;color:#9999FF&amp;quot;&amp;gt;King of Hearts&amp;lt;/span&amp;gt;]]&lt;br /&gt;
| Row1Desc   = Simply the king of all.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| Row2IMG    = Skorp (Avatar1).jpg&lt;br /&gt;
| Row2Title  = [[Skorp|&amp;lt;span style=&amp;quot;color:#9999FF&amp;quot;&amp;gt;Skorp&amp;lt;/span&amp;gt;]]&lt;br /&gt;
| Row2Desc   = Anonymous to everyone for the better.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| Row3IMG    = Sam Winchester (Avatar1).jpg&lt;br /&gt;
| Row3Title  = [[Sam Winchester|&amp;lt;span style=&amp;quot;color:#9999FF&amp;quot;&amp;gt;Sam Winchester&amp;lt;/span&amp;gt;]]&lt;br /&gt;
| Row3Desc   = Flamboyant in his own style.&lt;br /&gt;
&lt;br /&gt;
| Row4IMG    = Minimalist (Avatar1).jpg&lt;br /&gt;
| Row4Title  = [[Minimalist |&amp;lt;span style=&amp;quot;color:#9999FF&amp;quot;&amp;gt;Minimalist &amp;lt;/span&amp;gt;]]&lt;br /&gt;
| Row4Desc   = &lt;br /&gt;
&lt;br /&gt;
| Row5IMG    = Eagle 95 (Avatar1).jpg&lt;br /&gt;
| Row5Title  = [[Eagle 95|&amp;lt;span style=&amp;quot;color:#9999FF&amp;quot;&amp;gt;Eagle 95&amp;lt;/span&amp;gt;]]&lt;br /&gt;
| Row5Desc   = &lt;br /&gt;
}}&lt;br /&gt;
[[Category:Staff]]&lt;br /&gt;
[[Category:Flagged]]&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=File:Xerotic_Bot_DNA_(Award).png&amp;diff=2452</id>
		<title>File:Xerotic Bot DNA (Award).png</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=File:Xerotic_Bot_DNA_(Award).png&amp;diff=2452"/>
		<updated>2026-05-08T04:02:58Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: == Summary ==
Imported from wiki.hackforums.net public API
&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Imported from wiki.hackforums.net public API&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=File:World_of_Warcraft_(Ficon).png&amp;diff=2451</id>
		<title>File:World of Warcraft (Ficon).png</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=File:World_of_Warcraft_(Ficon).png&amp;diff=2451"/>
		<updated>2026-05-08T04:02:58Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: == Summary ==
Imported from wiki.hackforums.net public API
&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Imported from wiki.hackforums.net public API&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=File:Worms,_Malware,_and_Viruses_(Ficon).png&amp;diff=2450</id>
		<title>File:Worms, Malware, and Viruses (Ficon).png</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=File:Worms,_Malware,_and_Viruses_(Ficon).png&amp;diff=2450"/>
		<updated>2026-05-08T04:02:58Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: == Summary ==
Imported from wiki.hackforums.net public API
&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Imported from wiki.hackforums.net public API&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
	<entry>
		<id>http://wiki.hftools.org/index.php?title=File:Wiki_Talk_(Ficon).png&amp;diff=2449</id>
		<title>File:Wiki Talk (Ficon).png</title>
		<link rel="alternate" type="text/html" href="http://wiki.hftools.org/index.php?title=File:Wiki_Talk_(Ficon).png&amp;diff=2449"/>
		<updated>2026-05-08T04:02:58Z</updated>

		<summary type="html">&lt;p&gt;HFAdmin: == Summary ==
Imported from wiki.hackforums.net public API
&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Summary ==&lt;br /&gt;
Imported from wiki.hackforums.net public API&lt;/div&gt;</summary>
		<author><name>HFAdmin</name></author>
	</entry>
</feed>