<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/">
	<channel>
		<title><![CDATA[R-Vivarium - Documentation Center]]></title>
		<link>https://revamp.vivariumrpg.com/</link>
		<description><![CDATA[R-Vivarium - https://revamp.vivariumrpg.com]]></description>
		<pubDate>Sat, 18 Apr 2026 14:25:33 +0000</pubDate>
		<generator>MyBB</generator>
		<item>
			<title><![CDATA[[PROFILE FIELD] Global Complete Theme Customization]]></title>
			<link>https://revamp.vivariumrpg.com/showthread.php?tid=4271</link>
			<pubDate>Mon, 29 Apr 2024 14:32:11 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://revamp.vivariumrpg.com/member.php?action=profile&uid=1">Vivarium</a>]]></dc:creator>
			<guid isPermaLink="false">https://revamp.vivariumrpg.com/showthread.php?tid=4271</guid>
			<description><![CDATA[For those that are not a fan of any of the themes (colors/imagery sets) you can globally override these with your own custom theme. Or you can just override certain aspects for font size, banner heights, fonts, etc. This is a semi complex process but once you get the hang of it it should be a smooth process.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">config.css</span><br />
The configuration CSS file holds fonts, sizes, widths, and heights. These belong in the main :root section but you can change this on light mode as well if you wanted to for some reason.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>:root {<br />
 /* FONT FAMILIES */<br />
 --base-font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;<br />
 --accent-font-family: 'Natural Precision', sans-serif;<br />
 --header-font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;<br />
 --serif-font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;<br />
 --sans-serif-font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;<br />
 --monospace-font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;<br />
 <br />
 /* FONT CALCS &amp; SETTINGS */<br />
 --base-font-size: calc(14px + 0.090625vw); /* i do not suggest changing the vw specs, only the px */<br />
 --base-line-height: 1.4;<br />
 <br />
 /* WIDTHS */<br />
 --forum-wrap-max-width: 1500px; <br />
 <br />
 /* HEIGHTS */<br />
 --banner-index-height: 55vh;<br />
 --banner-index-guest-height: 91vh;<br />
}</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">theme.css</span><br />
Holds colors and imagery. AKA the "pretty" parts.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/* DARK MODE */<br />
:root {<br />
    --banner-image: url('/wcc_assets/themes/Vivarium/sonia4kres_dark.png');<br />
    --banner-image-no-subject: url('/wcc_assets/themes/Vivarium/sonia4kres_dark_nosubject.png'); /* basically mimics banner but no subject for pattern purposes */<br />
 --banner-image-position: center center;<br />
 --texture-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');<br />
 --banner-sname-color: #faf5f1;<br />
 --banner-sname-hov-color: #A35154;<br />
 --banner-sname-shadow-color: #060817;<br />
 <br />
 --base-bg-color: #151821;<br />
 --base-bg-color-body-overlay: #151821F2;<br />
 --base-bg-color-faded: #151821D9;<br />
 --base-bg-color-muted: #151821A6;<br />
 --base-txt-color: #9f9eaa;<br />
 --base-txt-color-faded: #9f9eaaD9;<br />
 --base-txt-color-muted: #9f9eaa66;<br />
 --base-lnk-color: #617fa4;<br />
 --base-lnk-hov-color: #A35154;<br />
 --base-border-color: #9f9eaa4D;<br />
 <br />
 --main-nav-bg-color: #f2f2f2;<br />
 --main-nav-bg-color-faded: #f2f2f2D9;<br />
 --main-nav-bg-color-muted: #f2f2f2A6;<br />
 --main-nav-txt-color: #48484c;<br />
 --main-nav-lnk-color: #33537B;<br />
 --main-nav-lnk-hov-color: #548BA5;<br />
 <br />
 --box-bg-color: #53798b1A;<br />
 --box-alt-bg-color: #548BA51A;<br />
 <br />
 --primary-accent-color: #548BA5;<br />
 --primary-accent-color-faded: #548BA5D9;<br />
 --primary-accent-color-muted: #548BA5A6;<br />
 --secondary-accent-color: #A35154;<br />
 --secondary-accent-color-faded: #A35154D9;<br />
 --secondary-accent-color-muted: #A35154A6;<br />
 --tertiary-accent-color: #79ACB0;<br />
 --tertiary-accent-color-faded: #79ACB0D9;<br />
 --tertiary-accent-color-muted: #79ACB0A6;<br />
}<br />
<br />
/* LIGHT MODE (says dark but this is ACTUALLY LIGHT, dark loads first and i'm too lazy to edit javascript) */<br />
[data-theme="dark"] {<br />
    --banner-image: url('/wcc_assets/themes/Vivarium/sonia4kres.png');<br />
    --banner-image-no-subject: url('/wcc_assets/themes/Vivarium/sonia4kres_nosubject.png'); /* basically mimics banner but no subject for pattern purposes */<br />
 --texture-image: url('https://www.transparenttextures.com/patterns/asfalt-light.png');<br />
 <br />
 --base-bg-color: #eeeae5;<br />
 --base-bg-color-body-overlay: #eeeae5F2;<br />
 --base-bg-color-faded: #e1dad3D9;<br />
 --base-bg-color-muted: #e1dad3A6;<br />
 --base-txt-color: #252e3c;<br />
 --base-txt-color-faded: #252e3cD9;<br />
 --base-txt-color-muted: #252e3c66;<br />
 --base-lnk-color: #894C45;<br />
 --base-lnk-hov-color: #BC735D;<br />
 --base-border-color: #252e3c4D;<br />
 <br />
 --main-nav-bg-color: #2e3a4b;<br />
 --main-nav-bg-color-faded: #2e3a4bD9;<br />
 --main-nav-bg-color-muted: #2e3a4bA6;<br />
 --main-nav-txt-color: #A7ADAF;<br />
 --main-nav-lnk-color: #E7D3BF;<br />
 --main-nav-lnk-hov-color: #E5A180;<br />
 <br />
 --box-bg-color: #778EA01A;<br />
 --box-alt-bg-color: #A385871A;<br />
}</code></div></div><br />
<span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Usage</span></span><br />
<span style="font-weight: bold;" class="mycode_b">1. Within your "Global Complete Theme Customization" profile field insert the following:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/* DARK MODE */<br />
:root {<br />
<br />
}<br />
/* LIGHT MODE (says dark but this is ACTUALLY LIGHT, dark loads first and i'm too lazy to edit javascript) */<br />
[data-theme="dark"] {<br />
<br />
}</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">2. From here implement the variables you wish to change:</span> As an example I'm going to change the font family of accent titles (and import a new one), font size, line height, forum max width, and the navigation colors.<br />
<span style="font-style: italic;" class="mycode_i">Note: This theme was made with hexcodes only in mind. You may attempt to use an alternative but it may not work properly on some functions. If you are unfamiliar with how to create opacity variants on hexcodes check out <a href="https://davidwalsh.name/hex-opacity" target="_blank" rel="noopener" class="mycode_url">this guide</a> (you'll use the opacity's Hex Code value after the 6 digit hex.</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>@import url('https://fonts.googleapis.com/css2?family=Jersey+15&amp;display=swap');<br />
<br />
/* DARK MODE */<br />
:root {<br />
 --base-font-size: calc(16px + 0.090625vw); /* i do not suggest changing the vw specs, only the px */<br />
 --base-line-height: 1.5;<br />
 <br />
 --forum-wrap-max-width: 1200px; <br />
<br />
 --accent-font-family: "Jersey 15", sans-serif;<br />
 <br />
 --main-nav-bg-color: #somecolorhexhere;<br />
 --main-nav-bg-color-faded: #somecolorhexhere;<br />
 --main-nav-bg-color-muted: #somecolorhexhere;<br />
 --main-nav-txt-color: #somecolorhexhere;<br />
 --main-nav-lnk-color: #somecolorhexhere;<br />
 --main-nav-lnk-hov-color: #somecolorhexhere;<br />
}<br />
/* LIGHT MODE (says dark but this is ACTUALLY LIGHT, dark loads first and i'm too lazy to edit javascript) */<br />
[data-theme="dark"] {<br />
 --main-nav-bg-color: #somecolorhexhere;<br />
 --main-nav-bg-color-faded: #somecolorhexhere;<br />
 --main-nav-bg-color-muted: #somecolorhexhere;<br />
 --main-nav-txt-color: #somecolorhexhere;<br />
 --main-nav-lnk-color: #somecolorhexhere;<br />
 --main-nav-lnk-hov-color: #somecolorhexhere;<br />
}</code></div></div>]]></description>
			<content:encoded><![CDATA[For those that are not a fan of any of the themes (colors/imagery sets) you can globally override these with your own custom theme. Or you can just override certain aspects for font size, banner heights, fonts, etc. This is a semi complex process but once you get the hang of it it should be a smooth process.<br />
<br />
<span style="font-weight: bold;" class="mycode_b">config.css</span><br />
The configuration CSS file holds fonts, sizes, widths, and heights. These belong in the main :root section but you can change this on light mode as well if you wanted to for some reason.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>:root {<br />
 /* FONT FAMILIES */<br />
 --base-font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;<br />
 --accent-font-family: 'Natural Precision', sans-serif;<br />
 --header-font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;<br />
 --serif-font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;<br />
 --sans-serif-font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;<br />
 --monospace-font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;<br />
 <br />
 /* FONT CALCS &amp; SETTINGS */<br />
 --base-font-size: calc(14px + 0.090625vw); /* i do not suggest changing the vw specs, only the px */<br />
 --base-line-height: 1.4;<br />
 <br />
 /* WIDTHS */<br />
 --forum-wrap-max-width: 1500px; <br />
 <br />
 /* HEIGHTS */<br />
 --banner-index-height: 55vh;<br />
 --banner-index-guest-height: 91vh;<br />
}</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">theme.css</span><br />
Holds colors and imagery. AKA the "pretty" parts.<br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/* DARK MODE */<br />
:root {<br />
    --banner-image: url('/wcc_assets/themes/Vivarium/sonia4kres_dark.png');<br />
    --banner-image-no-subject: url('/wcc_assets/themes/Vivarium/sonia4kres_dark_nosubject.png'); /* basically mimics banner but no subject for pattern purposes */<br />
 --banner-image-position: center center;<br />
 --texture-image: url('https://www.transparenttextures.com/patterns/asfalt-dark.png');<br />
 --banner-sname-color: #faf5f1;<br />
 --banner-sname-hov-color: #A35154;<br />
 --banner-sname-shadow-color: #060817;<br />
 <br />
 --base-bg-color: #151821;<br />
 --base-bg-color-body-overlay: #151821F2;<br />
 --base-bg-color-faded: #151821D9;<br />
 --base-bg-color-muted: #151821A6;<br />
 --base-txt-color: #9f9eaa;<br />
 --base-txt-color-faded: #9f9eaaD9;<br />
 --base-txt-color-muted: #9f9eaa66;<br />
 --base-lnk-color: #617fa4;<br />
 --base-lnk-hov-color: #A35154;<br />
 --base-border-color: #9f9eaa4D;<br />
 <br />
 --main-nav-bg-color: #f2f2f2;<br />
 --main-nav-bg-color-faded: #f2f2f2D9;<br />
 --main-nav-bg-color-muted: #f2f2f2A6;<br />
 --main-nav-txt-color: #48484c;<br />
 --main-nav-lnk-color: #33537B;<br />
 --main-nav-lnk-hov-color: #548BA5;<br />
 <br />
 --box-bg-color: #53798b1A;<br />
 --box-alt-bg-color: #548BA51A;<br />
 <br />
 --primary-accent-color: #548BA5;<br />
 --primary-accent-color-faded: #548BA5D9;<br />
 --primary-accent-color-muted: #548BA5A6;<br />
 --secondary-accent-color: #A35154;<br />
 --secondary-accent-color-faded: #A35154D9;<br />
 --secondary-accent-color-muted: #A35154A6;<br />
 --tertiary-accent-color: #79ACB0;<br />
 --tertiary-accent-color-faded: #79ACB0D9;<br />
 --tertiary-accent-color-muted: #79ACB0A6;<br />
}<br />
<br />
/* LIGHT MODE (says dark but this is ACTUALLY LIGHT, dark loads first and i'm too lazy to edit javascript) */<br />
[data-theme="dark"] {<br />
    --banner-image: url('/wcc_assets/themes/Vivarium/sonia4kres.png');<br />
    --banner-image-no-subject: url('/wcc_assets/themes/Vivarium/sonia4kres_nosubject.png'); /* basically mimics banner but no subject for pattern purposes */<br />
 --texture-image: url('https://www.transparenttextures.com/patterns/asfalt-light.png');<br />
 <br />
 --base-bg-color: #eeeae5;<br />
 --base-bg-color-body-overlay: #eeeae5F2;<br />
 --base-bg-color-faded: #e1dad3D9;<br />
 --base-bg-color-muted: #e1dad3A6;<br />
 --base-txt-color: #252e3c;<br />
 --base-txt-color-faded: #252e3cD9;<br />
 --base-txt-color-muted: #252e3c66;<br />
 --base-lnk-color: #894C45;<br />
 --base-lnk-hov-color: #BC735D;<br />
 --base-border-color: #252e3c4D;<br />
 <br />
 --main-nav-bg-color: #2e3a4b;<br />
 --main-nav-bg-color-faded: #2e3a4bD9;<br />
 --main-nav-bg-color-muted: #2e3a4bA6;<br />
 --main-nav-txt-color: #A7ADAF;<br />
 --main-nav-lnk-color: #E7D3BF;<br />
 --main-nav-lnk-hov-color: #E5A180;<br />
 <br />
 --box-bg-color: #778EA01A;<br />
 --box-alt-bg-color: #A385871A;<br />
}</code></div></div><br />
<span style="font-size: x-large;" class="mycode_size"><span style="font-weight: bold;" class="mycode_b">Usage</span></span><br />
<span style="font-weight: bold;" class="mycode_b">1. Within your "Global Complete Theme Customization" profile field insert the following:</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>/* DARK MODE */<br />
:root {<br />
<br />
}<br />
/* LIGHT MODE (says dark but this is ACTUALLY LIGHT, dark loads first and i'm too lazy to edit javascript) */<br />
[data-theme="dark"] {<br />
<br />
}</code></div></div><br />
<span style="font-weight: bold;" class="mycode_b">2. From here implement the variables you wish to change:</span> As an example I'm going to change the font family of accent titles (and import a new one), font size, line height, forum max width, and the navigation colors.<br />
<span style="font-style: italic;" class="mycode_i">Note: This theme was made with hexcodes only in mind. You may attempt to use an alternative but it may not work properly on some functions. If you are unfamiliar with how to create opacity variants on hexcodes check out <a href="https://davidwalsh.name/hex-opacity" target="_blank" rel="noopener" class="mycode_url">this guide</a> (you'll use the opacity's Hex Code value after the 6 digit hex.</span><br />
<div class="codeblock"><div class="title">Code:</div><div class="body" dir="ltr"><code>@import url('https://fonts.googleapis.com/css2?family=Jersey+15&amp;display=swap');<br />
<br />
/* DARK MODE */<br />
:root {<br />
 --base-font-size: calc(16px + 0.090625vw); /* i do not suggest changing the vw specs, only the px */<br />
 --base-line-height: 1.5;<br />
 <br />
 --forum-wrap-max-width: 1200px; <br />
<br />
 --accent-font-family: "Jersey 15", sans-serif;<br />
 <br />
 --main-nav-bg-color: #somecolorhexhere;<br />
 --main-nav-bg-color-faded: #somecolorhexhere;<br />
 --main-nav-bg-color-muted: #somecolorhexhere;<br />
 --main-nav-txt-color: #somecolorhexhere;<br />
 --main-nav-lnk-color: #somecolorhexhere;<br />
 --main-nav-lnk-hov-color: #somecolorhexhere;<br />
}<br />
/* LIGHT MODE (says dark but this is ACTUALLY LIGHT, dark loads first and i'm too lazy to edit javascript) */<br />
[data-theme="dark"] {<br />
 --main-nav-bg-color: #somecolorhexhere;<br />
 --main-nav-bg-color-faded: #somecolorhexhere;<br />
 --main-nav-bg-color-muted: #somecolorhexhere;<br />
 --main-nav-txt-color: #somecolorhexhere;<br />
 --main-nav-lnk-color: #somecolorhexhere;<br />
 --main-nav-lnk-hov-color: #somecolorhexhere;<br />
}</code></div></div>]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[MyCode Guide 2.0]]></title>
			<link>https://revamp.vivariumrpg.com/showthread.php?tid=4229</link>
			<pubDate>Sat, 27 Apr 2024 23:16:21 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://revamp.vivariumrpg.com/member.php?action=profile&uid=1416">Wiki Master</a>]]></dc:creator>
			<guid isPermaLink="false">https://revamp.vivariumrpg.com/showthread.php?tid=4229</guid>
			<description><![CDATA[updated mycode guide to come soon.. making placeholder so that by seeing this i can remember to do it.<br />
<br />
<dvz_me_placeholder id="0" />]]></description>
			<content:encoded><![CDATA[updated mycode guide to come soon.. making placeholder so that by seeing this i can remember to do it.<br />
<br />
<dvz_me_placeholder id="0" />]]></content:encoded>
		</item>
		<item>
			<title><![CDATA[[ARCHIVES] Character of the month!]]></title>
			<link>https://revamp.vivariumrpg.com/showthread.php?tid=1286</link>
			<pubDate>Sat, 10 Jun 2023 21:58:18 -0400</pubDate>
			<dc:creator><![CDATA[<a href="https://revamp.vivariumrpg.com/member.php?action=profile&uid=1">admin</a>]]></dc:creator>
			<guid isPermaLink="false">https://revamp.vivariumrpg.com/showthread.php?tid=1286</guid>
			<description><![CDATA[<div style="margin: 0 auto; max-width: 700px"><div class="card border my-2"><div class="card-body">
<div style="text-align: center;" class="mycode_align"><img src="https://i.imgur.com/iAuPOn8.png" loading="lazy"  alt="[Image: iAuPOn8.png]" class="mycode_img" /></div>
<hr class="mycode_hr" />
<div style="text-align: justify;" class="mycode_align">As Vivarium roars to life, there are many characters currently active on the site to celebrate! As proof of hard work and character development, this is a place to recognize characters of importance throughout Vivarium! On (or around) the first of the month, a random character will be chosen to be put in the spotlight. <br />
<br />
<span style="font-style: italic;" class="mycode_i">How, you may ask?</span> By random number generator! <br />
<span style="font-style: italic;" class="mycode_i">Why a random number generator?</span> This is to keep it as fair and fun as possible!<br />
<br />
Also, everyone loves a good surprise ...<br />
<br />
Each month, the staff will roll a random number that connects to an in-character account. If that account has over 50 posts and is currently active on the site (this means a post has bene made within the last month!), it will be chosen as the character of the month and will be featured here. Those who don't want to participate can personally DM a staff member at any time!</div>
<br />
<hr class="mycode_hr" />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">2023</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">June</span> — <dvz_me_placeholder id="1" /> <br />
<span style="font-weight: bold;" class="mycode_b">July</span> — <dvz_me_placeholder id="2" /> <br />
<span style="font-weight: bold;" class="mycode_b">August</span> — <dvz_me_placeholder id="3" /><br />
<span style="font-weight: bold;" class="mycode_b">September</span> — <dvz_me_placeholder id="4" /><br />
<span style="font-weight: bold;" class="mycode_b">October</span> — <dvz_me_placeholder id="5" />  <br />
<span style="font-weight: bold;" class="mycode_b">November</span> — <dvz_me_placeholder id="6" /><br />
<span style="font-weight: bold;" class="mycode_b">December</span> — <dvz_me_placeholder id="7" /></div>
<br />
<hr class="mycode_hr" />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">2024</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">January</span> — <dvz_me_placeholder id="8" /><br />
<span style="font-weight: bold;" class="mycode_b">February</span> — <dvz_me_placeholder id="9" /><br />
<span style="font-weight: bold;" class="mycode_b">March</span> — <dvz_me_placeholder id="10" /><br />
<span style="font-weight: bold;" class="mycode_b">April</span> — <dvz_me_placeholder id="11" /><br />
<span style="font-weight: bold;" class="mycode_b">May</span> — <dvz_me_placeholder id="12" />  </div>
</div></div></div>]]></description>
			<content:encoded><![CDATA[<div style="margin: 0 auto; max-width: 700px"><div class="card border my-2"><div class="card-body">
<div style="text-align: center;" class="mycode_align"><img src="https://i.imgur.com/iAuPOn8.png" loading="lazy"  alt="[Image: iAuPOn8.png]" class="mycode_img" /></div>
<hr class="mycode_hr" />
<div style="text-align: justify;" class="mycode_align">As Vivarium roars to life, there are many characters currently active on the site to celebrate! As proof of hard work and character development, this is a place to recognize characters of importance throughout Vivarium! On (or around) the first of the month, a random character will be chosen to be put in the spotlight. <br />
<br />
<span style="font-style: italic;" class="mycode_i">How, you may ask?</span> By random number generator! <br />
<span style="font-style: italic;" class="mycode_i">Why a random number generator?</span> This is to keep it as fair and fun as possible!<br />
<br />
Also, everyone loves a good surprise ...<br />
<br />
Each month, the staff will roll a random number that connects to an in-character account. If that account has over 50 posts and is currently active on the site (this means a post has bene made within the last month!), it will be chosen as the character of the month and will be featured here. Those who don't want to participate can personally DM a staff member at any time!</div>
<br />
<hr class="mycode_hr" />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">2023</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">June</span> — <dvz_me_placeholder id="1" /> <br />
<span style="font-weight: bold;" class="mycode_b">July</span> — <dvz_me_placeholder id="2" /> <br />
<span style="font-weight: bold;" class="mycode_b">August</span> — <dvz_me_placeholder id="3" /><br />
<span style="font-weight: bold;" class="mycode_b">September</span> — <dvz_me_placeholder id="4" /><br />
<span style="font-weight: bold;" class="mycode_b">October</span> — <dvz_me_placeholder id="5" />  <br />
<span style="font-weight: bold;" class="mycode_b">November</span> — <dvz_me_placeholder id="6" /><br />
<span style="font-weight: bold;" class="mycode_b">December</span> — <dvz_me_placeholder id="7" /></div>
<br />
<hr class="mycode_hr" />
<br />
<div style="text-align: center;" class="mycode_align"><span style="font-weight: bold;" class="mycode_b"><span style="font-size: large;" class="mycode_size">2024</span></span><br />
<br />
<span style="font-weight: bold;" class="mycode_b">January</span> — <dvz_me_placeholder id="8" /><br />
<span style="font-weight: bold;" class="mycode_b">February</span> — <dvz_me_placeholder id="9" /><br />
<span style="font-weight: bold;" class="mycode_b">March</span> — <dvz_me_placeholder id="10" /><br />
<span style="font-weight: bold;" class="mycode_b">April</span> — <dvz_me_placeholder id="11" /><br />
<span style="font-weight: bold;" class="mycode_b">May</span> — <dvz_me_placeholder id="12" />  </div>
</div></div></div>]]></content:encoded>
		</item>
	</channel>
</rss>