')
- .append(i.clone())
- .remove()
- .html()
- .replace(/type="password"/i, 'type="text"')
- .replace(/type=password/i, 'type=text')
- );
-
- if (i.attr('id') != '')
- x.attr('id', i.attr('id') + '-polyfill-field');
-
- if (i.attr('name') != '')
- x.attr('name', i.attr('name') + '-polyfill-field');
-
- x.addClass('polyfill-placeholder')
- .val(x.attr('placeholder')).insertAfter(i);
-
- if (i.val() == '')
- i.hide();
- else
- x.hide();
-
- i
- .on('blur', function(event) {
-
- event.preventDefault();
-
- var x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
-
- if (i.val() == '') {
-
- i.hide();
- x.show();
-
- }
-
- });
-
- x
- .on('focus', function(event) {
-
- event.preventDefault();
-
- var i = x.parent().find('input[name=' + x.attr('name').replace('-polyfill-field', '') + ']');
-
- x.hide();
-
- i
- .show()
- .focus();
-
- })
- .on('keypress', function(event) {
-
- event.preventDefault();
- x.val('');
-
- });
-
- });
-
- // Events.
- $this
- .on('submit', function() {
-
- $this.find('input[type=text],input[type=password],textarea')
- .each(function(event) {
-
- var i = $(this);
-
- if (i.attr('name').match(/-polyfill-field$/))
- i.attr('name', '');
-
- if (i.val() == i.attr('placeholder')) {
-
- i.removeClass('polyfill-placeholder');
- i.val('');
-
- }
-
- });
-
- })
- .on('reset', function(event) {
-
- event.preventDefault();
-
- $this.find('select')
- .val($('option:first').val());
-
- $this.find('input,textarea')
- .each(function() {
-
- var i = $(this),
- x;
-
- i.removeClass('polyfill-placeholder');
-
- switch (this.type) {
-
- case 'submit':
- case 'reset':
- break;
-
- case 'password':
- i.val(i.attr('defaultValue'));
-
- x = i.parent().find('input[name=' + i.attr('name') + '-polyfill-field]');
-
- if (i.val() == '') {
- i.hide();
- x.show();
- }
- else {
- i.show();
- x.hide();
- }
-
- break;
-
- case 'checkbox':
- case 'radio':
- i.attr('checked', i.attr('defaultValue'));
- break;
-
- case 'text':
- case 'textarea':
- i.val(i.attr('defaultValue'));
-
- if (i.val() == '') {
- i.addClass('polyfill-placeholder');
- i.val(i.attr('placeholder'));
- }
-
- break;
-
- default:
- i.val(i.attr('defaultValue'));
- break;
-
- }
- });
-
- });
-
- return $this;
-
- };
-
- /**
- * Moves elements to/from the first positions of their respective parents.
- * @param {jQuery} $elements Elements (or selector) to move.
- * @param {bool} condition If true, moves elements to the top. Otherwise, moves elements back to their original locations.
- */
- $.prioritize = function($elements, condition) {
-
- var key = '__prioritize';
-
- // Expand $elements if it's not already a jQuery object.
- if (typeof $elements != 'jQuery')
- $elements = $($elements);
-
- // Step through elements.
- $elements.each(function() {
-
- var $e = $(this), $p,
- $parent = $e.parent();
-
- // No parent? Bail.
- if ($parent.length == 0)
- return;
-
- // Not moved? Move it.
- if (!$e.data(key)) {
-
- // Condition is false? Bail.
- if (!condition)
- return;
-
- // Get placeholder (which will serve as our point of reference for when this element needs to move back).
- $p = $e.prev();
-
- // Couldn't find anything? Means this element's already at the top, so bail.
- if ($p.length == 0)
- return;
-
- // Move element to top of parent.
- $e.prependTo($parent);
-
- // Mark element as moved.
- $e.data(key, $p);
-
- }
-
- // Moved already?
- else {
-
- // Condition is true? Bail.
- if (condition)
- return;
-
- $p = $e.data(key);
-
- // Move element back to its original location (using our placeholder).
- $e.insertAfter($p);
-
- // Unmark element as moved.
- $e.removeData(key);
-
- }
-
- });
-
- };
-
-})(jQuery);
\ No newline at end of file
diff --git a/assets/sass/libs/_breakpoints.scss b/assets/sass/libs/_breakpoints.scss
deleted file mode 100644
index c5301d8..0000000
--- a/assets/sass/libs/_breakpoints.scss
+++ /dev/null
@@ -1,223 +0,0 @@
-// breakpoints.scss v1.0 | @ajlkn | MIT licensed */
-
-// Vars.
-
- /// Breakpoints.
- /// @var {list}
- $breakpoints: () !global;
-
-// Mixins.
-
- /// Sets breakpoints.
- /// @param {map} $x Breakpoints.
- @mixin breakpoints($x: ()) {
- $breakpoints: $x !global;
- }
-
- /// Wraps @content in a @media block targeting a specific orientation.
- /// @param {string} $orientation Orientation.
- @mixin orientation($orientation) {
- @media screen and (orientation: #{$orientation}) {
- @content;
- }
- }
-
- /// Wraps @content in a @media block using a given query.
- /// @param {string} $query Query.
- @mixin breakpoint($query: null) {
-
- $breakpoint: null;
- $op: null;
- $media: null;
-
- // Determine operator, breakpoint.
-
- // Greater than or equal.
- @if (str-slice($query, 0, 2) == '>=') {
-
- $op: 'gte';
- $breakpoint: str-slice($query, 3);
-
- }
-
- // Less than or equal.
- @elseif (str-slice($query, 0, 2) == '<=') {
-
- $op: 'lte';
- $breakpoint: str-slice($query, 3);
-
- }
-
- // Greater than.
- @elseif (str-slice($query, 0, 1) == '>') {
-
- $op: 'gt';
- $breakpoint: str-slice($query, 2);
-
- }
-
- // Less than.
- @elseif (str-slice($query, 0, 1) == '<') {
-
- $op: 'lt';
- $breakpoint: str-slice($query, 2);
-
- }
-
- // Not.
- @elseif (str-slice($query, 0, 1) == '!') {
-
- $op: 'not';
- $breakpoint: str-slice($query, 2);
-
- }
-
- // Equal.
- @else {
-
- $op: 'eq';
- $breakpoint: $query;
-
- }
-
- // Build media.
- @if ($breakpoint and map-has-key($breakpoints, $breakpoint)) {
-
- $a: map-get($breakpoints, $breakpoint);
-
- // Range.
- @if (type-of($a) == 'list') {
-
- $x: nth($a, 1);
- $y: nth($a, 2);
-
- // Max only.
- @if ($x == null) {
-
- // Greater than or equal (>= 0 / anything)
- @if ($op == 'gte') {
- $media: 'screen';
- }
-
- // Less than or equal (<= y)
- @elseif ($op == 'lte') {
- $media: 'screen and (max-width: ' + $y + ')';
- }
-
- // Greater than (> y)
- @elseif ($op == 'gt') {
- $media: 'screen and (min-width: ' + ($y + 1) + ')';
- }
-
- // Less than (< 0 / invalid)
- @elseif ($op == 'lt') {
- $media: 'screen and (max-width: -1px)';
- }
-
- // Not (> y)
- @elseif ($op == 'not') {
- $media: 'screen and (min-width: ' + ($y + 1) + ')';
- }
-
- // Equal (<= y)
- @else {
- $media: 'screen and (max-width: ' + $y + ')';
- }
-
- }
-
- // Min only.
- @else if ($y == null) {
-
- // Greater than or equal (>= x)
- @if ($op == 'gte') {
- $media: 'screen and (min-width: ' + $x + ')';
- }
-
- // Less than or equal (<= inf / anything)
- @elseif ($op == 'lte') {
- $media: 'screen';
- }
-
- // Greater than (> inf / invalid)
- @elseif ($op == 'gt') {
- $media: 'screen and (max-width: -1px)';
- }
-
- // Less than (< x)
- @elseif ($op == 'lt') {
- $media: 'screen and (max-width: ' + ($x - 1) + ')';
- }
-
- // Not (< x)
- @elseif ($op == 'not') {
- $media: 'screen and (max-width: ' + ($x - 1) + ')';
- }
-
- // Equal (>= x)
- @else {
- $media: 'screen and (min-width: ' + $x + ')';
- }
-
- }
-
- // Min and max.
- @else {
-
- // Greater than or equal (>= x)
- @if ($op == 'gte') {
- $media: 'screen and (min-width: ' + $x + ')';
- }
-
- // Less than or equal (<= y)
- @elseif ($op == 'lte') {
- $media: 'screen and (max-width: ' + $y + ')';
- }
-
- // Greater than (> y)
- @elseif ($op == 'gt') {
- $media: 'screen and (min-width: ' + ($y + 1) + ')';
- }
-
- // Less than (< x)
- @elseif ($op == 'lt') {
- $media: 'screen and (max-width: ' + ($x - 1) + ')';
- }
-
- // Not (< x and > y)
- @elseif ($op == 'not') {
- $media: 'screen and (max-width: ' + ($x - 1) + '), screen and (min-width: ' + ($y + 1) + ')';
- }
-
- // Equal (>= x and <= y)
- @else {
- $media: 'screen and (min-width: ' + $x + ') and (max-width: ' + $y + ')';
- }
-
- }
-
- }
-
- // String.
- @else {
-
- // Missing a media type? Prefix with "screen".
- @if (str-slice($a, 0, 1) == '(') {
- $media: 'screen and ' + $a;
- }
-
- // Otherwise, use as-is.
- @else {
- $media: $a;
- }
-
- }
-
- }
-
- // Output.
- @media #{$media} {
- @content;
- }
-
- }
\ No newline at end of file
diff --git a/assets/sass/libs/_functions.scss b/assets/sass/libs/_functions.scss
deleted file mode 100644
index f563aab..0000000
--- a/assets/sass/libs/_functions.scss
+++ /dev/null
@@ -1,90 +0,0 @@
-/// Removes a specific item from a list.
-/// @author Hugo Giraudel
-/// @param {list} $list List.
-/// @param {integer} $index Index.
-/// @return {list} Updated list.
-@function remove-nth($list, $index) {
-
- $result: null;
-
- @if type-of($index) != number {
- @warn "$index: #{quote($index)} is not a number for `remove-nth`.";
- }
- @else if $index == 0 {
- @warn "List index 0 must be a non-zero integer for `remove-nth`.";
- }
- @else if abs($index) > length($list) {
- @warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.";
- }
- @else {
-
- $result: ();
- $index: if($index < 0, length($list) + $index + 1, $index);
-
- @for $i from 1 through length($list) {
-
- @if $i != $index {
- $result: append($result, nth($list, $i));
- }
-
- }
-
- }
-
- @return $result;
-
-}
-
-/// Gets a value from a map.
-/// @author Hugo Giraudel
-/// @param {map} $map Map.
-/// @param {string} $keys Key(s).
-/// @return {string} Value.
-@function val($map, $keys...) {
-
- @if nth($keys, 1) == null {
- $keys: remove-nth($keys, 1);
- }
-
- @each $key in $keys {
- $map: map-get($map, $key);
- }
-
- @return $map;
-
-}
-
-/// Gets a duration value.
-/// @param {string} $keys Key(s).
-/// @return {string} Value.
-@function _duration($keys...) {
- @return val($duration, $keys...);
-}
-
-/// Gets a font value.
-/// @param {string} $keys Key(s).
-/// @return {string} Value.
-@function _font($keys...) {
- @return val($font, $keys...);
-}
-
-/// Gets a misc value.
-/// @param {string} $keys Key(s).
-/// @return {string} Value.
-@function _misc($keys...) {
- @return val($misc, $keys...);
-}
-
-/// Gets a palette value.
-/// @param {string} $keys Key(s).
-/// @return {string} Value.
-@function _palette($keys...) {
- @return val($palette, $keys...);
-}
-
-/// Gets a size value.
-/// @param {string} $keys Key(s).
-/// @return {string} Value.
-@function _size($keys...) {
- @return val($size, $keys...);
-}
\ No newline at end of file
diff --git a/assets/sass/libs/_html-grid.scss b/assets/sass/libs/_html-grid.scss
deleted file mode 100644
index 3c08069..0000000
--- a/assets/sass/libs/_html-grid.scss
+++ /dev/null
@@ -1,149 +0,0 @@
-// html-grid.scss v1.0 | @ajlkn | MIT licensed */
-
-// Mixins.
-
- /// Initializes the current element as an HTML grid.
- /// @param {mixed} $gutters Gutters (either a single number to set both column/row gutters, or a list to set them individually).
- /// @param {mixed} $suffix Column class suffix (optional; either a single suffix or a list).
- @mixin html-grid($gutters: 1.5em, $suffix: '') {
-
- // Initialize.
- $cols: 12;
- $multipliers: 0, 0.25, 0.5, 1, 1.50, 2.00;
- $unit: 100% / $cols;
-
- // Suffixes.
- $suffixes: null;
-
- @if (type-of($suffix) == 'list') {
- $suffixes: $suffix;
- }
- @else {
- $suffixes: ($suffix);
- }
-
- // Gutters.
- $guttersCols: null;
- $guttersRows: null;
-
- @if (type-of($gutters) == 'list') {
-
- $guttersCols: nth($gutters, 1);
- $guttersRows: nth($gutters, 2);
-
- }
- @else {
-
- $guttersCols: $gutters;
- $guttersRows: 0;
-
- }
-
- // Row.
- display: flex;
- flex-wrap: wrap;
- box-sizing: border-box;
- align-items: stretch;
-
- // Columns.
- > * {
- box-sizing: border-box;
- }
-
- // Gutters.
- &.gtr-uniform {
- > * {
- > :last-child {
- margin-bottom: 0;
- }
- }
- }
-
- // Alignment.
- &.aln-left {
- justify-content: flex-start;
- }
-
- &.aln-center {
- justify-content: center;
- }
-
- &.aln-right {
- justify-content: flex-end;
- }
-
- &.aln-top {
- align-items: flex-start;
- }
-
- &.aln-middle {
- align-items: center;
- }
-
- &.aln-bottom {
- align-items: flex-end;
- }
-
- // Step through suffixes.
- @each $suffix in $suffixes {
-
- // Suffix.
- @if ($suffix != '') {
- $suffix: '-' + $suffix;
- }
- @else {
- $suffix: '';
- }
-
- // Row.
-
- // Important.
- > .imp#{$suffix} {
- order: -1;
- }
-
- // Columns, offsets.
- @for $i from 1 through $cols {
- > .col-#{$i}#{$suffix} {
- width: $unit * $i;
- }
-
- > .off-#{$i}#{$suffix} {
- margin-left: $unit * $i;
- }
- }
-
- // Step through multipliers.
- @each $multiplier in $multipliers {
-
- // Gutters.
- $class: null;
-
- @if ($multiplier != 1) {
- $class: '.gtr-' + ($multiplier * 100);
- }
-
- {$class} {
- margin-top: ($guttersRows * $multiplier * -1);
- margin-left: ($guttersCols * $multiplier * -1);
-
- > * {
- padding: ($guttersRows * $multiplier) 0 0 ($guttersCols * $multiplier);
- }
-
- // Uniform.
- &.gtr-uniform {
- margin-top: $guttersCols * $multiplier * -1;
-
- > * {
- padding-top: $guttersCols * $multiplier;
- }
- }
-
- }
-
- }
-
- }
-
- }
\ No newline at end of file
diff --git a/assets/sass/libs/_mixins.scss b/assets/sass/libs/_mixins.scss
deleted file mode 100644
index a331483..0000000
--- a/assets/sass/libs/_mixins.scss
+++ /dev/null
@@ -1,78 +0,0 @@
-/// Makes an element's :before pseudoelement a FontAwesome icon.
-/// @param {string} $content Optional content value to use.
-/// @param {string} $category Optional category to use.
-/// @param {string} $where Optional pseudoelement to target (before or after).
-@mixin icon($content: false, $category: regular, $where: before) {
-
- text-decoration: none;
-
- &:#{$where} {
-
- @if $content {
- content: $content;
- }
-
- -moz-osx-font-smoothing: grayscale;
- -webkit-font-smoothing: antialiased;
- display: inline-block;
- font-style: normal;
- font-variant: normal;
- text-rendering: auto;
- line-height: 1;
- text-transform: none !important;
-
- @if ($category == brands) {
- font-family: 'Font Awesome 5 Brands';
- }
- @elseif ($category == solid) {
- font-family: 'Font Awesome 5 Free';
- font-weight: 900;
- }
- @else {
- font-family: 'Font Awesome 5 Free';
- font-weight: 400;
- }
-
- }
-
-}
-
-/// Applies padding to an element, taking the current element-margin value into account.
-/// @param {mixed} $tb Top/bottom padding.
-/// @param {mixed} $lr Left/right padding.
-/// @param {list} $pad Optional extra padding (in the following order top, right, bottom, left)
-/// @param {bool} $important If true, adds !important.
-@mixin padding($tb, $lr, $pad: (0,0,0,0), $important: null) {
-
- @if $important {
- $important: '!important';
- }
-
- $x: 0.1em;
-
- @if unit(_size(element-margin)) == 'rem' {
- $x: 0.1rem;
- }
-
- padding: ($tb + nth($pad,1)) ($lr + nth($pad,2)) max($x, $tb - _size(element-margin) + nth($pad,3)) ($lr + nth($pad,4)) #{$important};
-
-}
-
-/// Encodes a SVG data URL so IE doesn't choke (via codepen.io/jakob-e/pen/YXXBrp).
-/// @param {string} $svg SVG data URL.
-/// @return {string} Encoded SVG data URL.
-@function svg-url($svg) {
-
- $svg: str-replace($svg, '"', '\'');
- $svg: str-replace($svg, '%', '%25');
- $svg: str-replace($svg, '<', '%3C');
- $svg: str-replace($svg, '>', '%3E');
- $svg: str-replace($svg, '&', '%26');
- $svg: str-replace($svg, '#', '%23');
- $svg: str-replace($svg, '{', '%7B');
- $svg: str-replace($svg, '}', '%7D');
- $svg: str-replace($svg, ';', '%3B');
-
- @return url("data:image/svg+xml;charset=utf8,#{$svg}");
-
-}
\ No newline at end of file
diff --git a/assets/sass/libs/_vars.scss b/assets/sass/libs/_vars.scss
deleted file mode 100644
index 893f8f0..0000000
--- a/assets/sass/libs/_vars.scss
+++ /dev/null
@@ -1,22 +0,0 @@
-// Misc.
- $misc: (
- z-index-base: 10000
- );
-
-// Duration.
- $duration: (
- header: 0.5s
- );
-
-// Size.
- $size: (
- header: 275px
- );
-
-// Font.
- $font: (
- );
-
-// Palette.
- $palette: (
- );
\ No newline at end of file
diff --git a/assets/sass/libs/_vendor.scss b/assets/sass/libs/_vendor.scss
deleted file mode 100644
index 6599a3f..0000000
--- a/assets/sass/libs/_vendor.scss
+++ /dev/null
@@ -1,376 +0,0 @@
-// vendor.scss v1.0 | @ajlkn | MIT licensed */
-
-// Vars.
-
- /// Vendor prefixes.
- /// @var {list}
- $vendor-prefixes: (
- '-moz-',
- '-webkit-',
- '-ms-',
- ''
- );
-
- /// Properties that should be vendorized.
- /// Data via caniuse.com, github.com/postcss/autoprefixer, and developer.mozilla.org
- /// @var {list}
- $vendor-properties: (
-
- // Animation.
- 'animation',
- 'animation-delay',
- 'animation-direction',
- 'animation-duration',
- 'animation-fill-mode',
- 'animation-iteration-count',
- 'animation-name',
- 'animation-play-state',
- 'animation-timing-function',
-
- // Appearance.
- 'appearance',
-
- // Backdrop filter.
- 'backdrop-filter',
-
- // Background image options.
- 'background-clip',
- 'background-origin',
- 'background-size',
-
- // Box sizing.
- 'box-sizing',
-
- // Clip path.
- 'clip-path',
-
- // Filter effects.
- 'filter',
-
- // Flexbox.
- 'align-content',
- 'align-items',
- 'align-self',
- 'flex',
- 'flex-basis',
- 'flex-direction',
- 'flex-flow',
- 'flex-grow',
- 'flex-shrink',
- 'flex-wrap',
- 'justify-content',
- 'order',
-
- // Font feature.
- 'font-feature-settings',
- 'font-language-override',
- 'font-variant-ligatures',
-
- // Font kerning.
- 'font-kerning',
-
- // Fragmented borders and backgrounds.
- 'box-decoration-break',
-
- // Grid layout.
- 'grid-column',
- 'grid-column-align',
- 'grid-column-end',
- 'grid-column-start',
- 'grid-row',
- 'grid-row-align',
- 'grid-row-end',
- 'grid-row-start',
- 'grid-template-columns',
- 'grid-template-rows',
-
- // Hyphens.
- 'hyphens',
- 'word-break',
-
- // Masks.
- 'mask',
- 'mask-border',
- 'mask-border-outset',
- 'mask-border-repeat',
- 'mask-border-slice',
- 'mask-border-source',
- 'mask-border-width',
- 'mask-clip',
- 'mask-composite',
- 'mask-image',
- 'mask-origin',
- 'mask-position',
- 'mask-repeat',
- 'mask-size',
-
- // Multicolumn.
- 'break-after',
- 'break-before',
- 'break-inside',
- 'column-count',
- 'column-fill',
- 'column-gap',
- 'column-rule',
- 'column-rule-color',
- 'column-rule-style',
- 'column-rule-width',
- 'column-span',
- 'column-width',
- 'columns',
-
- // Object fit.
- 'object-fit',
- 'object-position',
-
- // Regions.
- 'flow-from',
- 'flow-into',
- 'region-fragment',
-
- // Scroll snap points.
- 'scroll-snap-coordinate',
- 'scroll-snap-destination',
- 'scroll-snap-points-x',
- 'scroll-snap-points-y',
- 'scroll-snap-type',
-
- // Shapes.
- 'shape-image-threshold',
- 'shape-margin',
- 'shape-outside',
-
- // Tab size.
- 'tab-size',
-
- // Text align last.
- 'text-align-last',
-
- // Text decoration.
- 'text-decoration-color',
- 'text-decoration-line',
- 'text-decoration-skip',
- 'text-decoration-style',
-
- // Text emphasis.
- 'text-emphasis',
- 'text-emphasis-color',
- 'text-emphasis-position',
- 'text-emphasis-style',
-
- // Text size adjust.
- 'text-size-adjust',
-
- // Text spacing.
- 'text-spacing',
-
- // Transform.
- 'transform',
- 'transform-origin',
-
- // Transform 3D.
- 'backface-visibility',
- 'perspective',
- 'perspective-origin',
- 'transform-style',
-
- // Transition.
- 'transition',
- 'transition-delay',
- 'transition-duration',
- 'transition-property',
- 'transition-timing-function',
-
- // Unicode bidi.
- 'unicode-bidi',
-
- // User select.
- 'user-select',
-
- // Writing mode.
- 'writing-mode',
-
- );
-
- /// Values that should be vendorized.
- /// Data via caniuse.com, github.com/postcss/autoprefixer, and developer.mozilla.org
- /// @var {list}
- $vendor-values: (
-
- // Cross fade.
- 'cross-fade',
-
- // Element function.
- 'element',
-
- // Filter function.
- 'filter',
-
- // Flexbox.
- 'flex',
- 'inline-flex',
-
- // Grab cursors.
- 'grab',
- 'grabbing',
-
- // Gradients.
- 'linear-gradient',
- 'repeating-linear-gradient',
- 'radial-gradient',
- 'repeating-radial-gradient',
-
- // Grid layout.
- 'grid',
- 'inline-grid',
-
- // Image set.
- 'image-set',
-
- // Intrinsic width.
- 'max-content',
- 'min-content',
- 'fit-content',
- 'fill',
- 'fill-available',
- 'stretch',
-
- // Sticky position.
- 'sticky',
-
- // Transform.
- 'transform',
-
- // Zoom cursors.
- 'zoom-in',
- 'zoom-out',
-
- );
-
-// Functions.
-
- /// Removes a specific item from a list.
- /// @author Hugo Giraudel
- /// @param {list} $list List.
- /// @param {integer} $index Index.
- /// @return {list} Updated list.
- @function remove-nth($list, $index) {
-
- $result: null;
-
- @if type-of($index) != number {
- @warn "$index: #{quote($index)} is not a number for `remove-nth`.";
- }
- @else if $index == 0 {
- @warn "List index 0 must be a non-zero integer for `remove-nth`.";
- }
- @else if abs($index) > length($list) {
- @warn "List index is #{$index} but list is only #{length($list)} item long for `remove-nth`.";
- }
- @else {
-
- $result: ();
- $index: if($index < 0, length($list) + $index + 1, $index);
-
- @for $i from 1 through length($list) {
-
- @if $i != $index {
- $result: append($result, nth($list, $i));
- }
-
- }
-
- }
-
- @return $result;
-
- }
-
- /// Replaces a substring within another string.
- /// @author Hugo Giraudel
- /// @param {string} $string String.
- /// @param {string} $search Substring.
- /// @param {string} $replace Replacement.
- /// @return {string} Updated string.
- @function str-replace($string, $search, $replace: '') {
-
- $index: str-index($string, $search);
-
- @if $index {
- @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace);
- }
-
- @return $string;
-
- }
-
- /// Replaces a substring within each string in a list.
- /// @param {list} $strings List of strings.
- /// @param {string} $search Substring.
- /// @param {string} $replace Replacement.
- /// @return {list} Updated list of strings.
- @function str-replace-all($strings, $search, $replace: '') {
-
- @each $string in $strings {
- $strings: set-nth($strings, index($strings, $string), str-replace($string, $search, $replace));
- }
-
- @return $strings;
-
- }
-
-// Mixins.
-
- /// Wraps @content in vendorized keyframe blocks.
- /// @param {string} $name Name.
- @mixin keyframes($name) {
-
- @-moz-keyframes #{$name} { @content; }
- @-webkit-keyframes #{$name} { @content; }
- @-ms-keyframes #{$name} { @content; }
- @keyframes #{$name} { @content; }
-
- }
-
- /// Vendorizes a declaration's property and/or value(s).
- /// @param {string} $property Property.
- /// @param {mixed} $value String/list of value(s).
- @mixin vendor($property, $value) {
-
- // Determine if property should expand.
- $expandProperty: index($vendor-properties, $property);
-
- // Determine if value should expand (and if so, add '-prefix-' placeholder).
- $expandValue: false;
-
- @each $x in $value {
- @each $y in $vendor-values {
- @if $y == str-slice($x, 1, str-length($y)) {
-
- $value: set-nth($value, index($value, $x), '-prefix-' + $x);
- $expandValue: true;
-
- }
- }
- }
-
- // Expand property?
- @if $expandProperty {
- @each $vendor in $vendor-prefixes {
- #{$vendor}#{$property}: #{str-replace-all($value, '-prefix-', $vendor)};
- }
- }
-
- // Expand just the value?
- @elseif $expandValue {
- @each $vendor in $vendor-prefixes {
- #{$property}: #{str-replace-all($value, '-prefix-', $vendor)};
- }
- }
-
- // Neither? Treat them as a normal declaration.
- @else {
- #{$property}: #{$value};
- }
-
- }
\ No newline at end of file
diff --git a/assets/sass/main.scss b/assets/sass/main.scss
deleted file mode 100644
index 5335e3e..0000000
--- a/assets/sass/main.scss
+++ /dev/null
@@ -1,1145 +0,0 @@
-@import 'libs/vars';
-@import 'libs/functions';
-@import 'libs/mixins';
-@import 'libs/vendor';
-@import 'libs/breakpoints';
-@import 'libs/html-grid';
-@import url("fontawesome-all.min.css");
-@import url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,300italic,400,600");
-
-/*
- Prologue by HTML5 UP
- html5up.net | @ajlkn
- Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
-*/
-
-// Breakpoints.
-
- @include breakpoints((
- wide: ( 961px, 1880px ),
- normal: ( 961px, 1620px ),
- narrow: ( 961px, 1320px ),
- narrower: ( 737px, 960px ),
- mobile: ( null, 736px ),
- ));
-
-// Reset.
-// Based on meyerweb.com/eric/tools/css/reset (v2.0 | 20110126 | License: public domain)
-
- html, body, div, span, applet, object,
- iframe, h1, h2, h3, h4, h5, h6, p, blockquote,
- pre, a, abbr, acronym, address, big, cite,
- code, del, dfn, em, img, ins, kbd, q, s, samp,
- small, strike, strong, sub, sup, tt, var, b,
- u, i, center, dl, dt, dd, ol, ul, li, fieldset,
- form, label, legend, table, caption, tbody,
- tfoot, thead, tr, th, td, article, aside,
- canvas, details, embed, figure, figcaption,
- footer, header, hgroup, menu, nav, output, ruby,
- section, summary, time, mark, audio, video {
- margin: 0;
- padding: 0;
- border: 0;
- font-size: 100%;
- font: inherit;
- vertical-align: baseline;
- }
-
- article, aside, details, figcaption, figure,
- footer, header, hgroup, menu, nav, section {
- display: block;
- }
-
- body {
- line-height: 1;
- }
-
- ol, ul {
- list-style:none;
- }
-
- blockquote, q {
- quotes: none;
-
- &:before,
- &:after {
- content: '';
- content: none;
- }
- }
-
- table {
- border-collapse: collapse;
- border-spacing: 0;
- }
-
- body {
- -webkit-text-size-adjust: none;
- }
-
- mark {
- background-color: transparent;
- color: inherit;
- }
-
- input::-moz-focus-inner {
- border: 0;
- padding: 0;
- }
-
- input, select, textarea {
- -moz-appearance: none;
- -webkit-appearance: none;
- -ms-appearance: none;
- appearance: none;
- }
-
-/* Basic */
-
- // Set box model to border-box.
- // Based on css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
- html {
- box-sizing: border-box;
- }
-
- *, *:before, *:after {
- box-sizing: inherit;
- }
-
- body {
- background: #fff;
- font-family: 'Source Sans Pro', sans-serif;
- font-size: 19pt;
- font-weight: 300;
- line-height: 1.75em;
- color: #888;
-
- // Stops initial animations until page loads.
- &.is-preload {
- *, *:before, *:after {
- @include vendor('animation', 'none !important');
- @include vendor('transition', 'none !important');
- }
- }
-
- }
-
- input, textarea, select {
- font-family: 'Source Sans Pro', sans-serif;
- font-size: 19pt;
- font-weight: 300;
- line-height: 1.75em;
- color: #888;
- }
-
- h1, h2, h3, h4, h5, h6 {
- font-weight: 300;
- color: #666;
- line-height: 1.5em;
- }
-
- h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
- color: inherit;
- text-decoration: none;
-
- strong {
- color: #333;
- }
- }
-
- h2 {
- font-size: 2em;
- letter-spacing: -1px;
-
- &.alt {
- color: #888;
-
- strong {
- color: #666;
- }
- }
- }
-
- h3 {
- font-size: 1.5em;
- }
-
- header {
- margin: 0 0 2em 0;
-
- > p {
- margin: 1em 0 0 0;
- }
- }
-
- footer {
- margin: 2em 0 0 0;
- }
-
- strong, b {
- font-weight: 300;
- color: #666;
- }
-
- em, i {
- font-style: italic;
- }
-
- a {
- text-decoration: none;
- color: inherit;
- border-bottom: dotted 1px rgba(128, 128, 128, 0.5);
- @include vendor('transition', ('color 0.35s ease-in-out', 'border-bottom-color 0.35s ease-in-out'));
- outline: 0;
-
- &:hover {
- color: #E27689;
- border-bottom-color: rgba(255, 255, 255, 0);
- }
- }
-
- sub {
- position: relative;
- top: 0.5em;
- font-size: 0.8em;
- }
-
- sup {
- position: relative;
- top: -0.5em;
- font-size: 0.8em;
- }
-
- hr {
- border: 0;
- border-top: solid 1px #ddd;
- }
-
- blockquote {
- border-left: solid 0.5em #ddd;
- padding: 1em 0 1em 2em;
- font-style: italic;
- }
-
- p, ul, ol, dl, table {
- margin-bottom: 2em;
- }
-
- br.clear {
- clear: both;
- }
-
-/* Container */
-
- .container {
- margin: 0 auto;
- max-width: 100%;
- width: 1400px;
-
- @include breakpoint('wide') {
- width: 1200px;
- }
-
- @include breakpoint('normal') {
- width: 960px;
- }
-
- @include breakpoint('narrow') {
- width: 100%;
- }
-
- @include breakpoint('<=narrower') {
- width: 100%;
- }
-
- @include breakpoint('<=mobile') {
- width: 100%;
- }
- }
-
-/* Row */
-
- .row {
- @include html-grid((40px, 40px));
-
- @include breakpoint('wide') {
- @include html-grid((40px, 40px), 'wide');
- }
-
- @include breakpoint('normal') {
- @include html-grid((40px, 40px), 'normal');
- }
-
- @include breakpoint('narrow') {
- @include html-grid((20px, 20px), 'narrow');
- }
-
- @include breakpoint('<=narrower') {
- @include html-grid((20px, 20px), 'narrower');
- }
-
- @include breakpoint('<=mobile') {
- @include html-grid((20px, 20px), 'mobile');
- }
- }
-
-/* Sections/Article */
-
- section, article {
- margin-bottom: 3em;
-
- > :last-child,
- > .container,
- &:last-child {
- margin-bottom: 0;
- }
-
- .row > & {
- margin-bottom: 0;
- }
- }
-
-/* Image */
-
- .image {
- display: inline-block;
- border: 0;
-
- img {
- display: block;
- width: 100%;
- }
-
- &.avatar48 {
- width: 48px;
- height: 48px;
- background: #f00;
-
- img {
- width: 48px;
- height: 48px;
- }
- }
-
- &.fit {
- display: block;
- width: 100%;
- }
-
- &.featured {
- display: block;
- width: 100%;
- margin: 0 0 2em 0;
- }
-
- &.left {
- float: left;
- margin: 0 2em 2em 0;
- }
-
- &.centered {
- display: block;
- margin: 0 0 2em 0;
-
- img {
- margin: 0 auto;
- width: auto;
- }
- }
- }
-
-/* List */
-
- ul {
- list-style: disc;
- padding-left: 1em;
-
- li {
- padding-left: 0.5em;
- }
- }
-
- ol {
- list-style: decimal;
- padding-left: 1.25em;
-
- li {
- padding-left: 0.25em;
- }
- }
-
-/* Icons */
-
- ul.icons {
- cursor: default;
- list-style: none;
- padding-left: 0;
-
- li {
- display: inline-block;
- padding-left: 0;
- }
-
- a {
- display: inline-block;
- width: 2em;
- height: 2em;
- line-height: 2em;
- text-align: center;
- border: 0;
- }
- }
-
-/* Form */
-
- form {
- label {
- display: block;
- text-align: left;
- margin-bottom: 0.5em;
- }
-
- input[type="text"],
- input[type="email"],
- input[type="password"],
- select,
- textarea {
- position: relative;
- -webkit-appearance: none;
- display: block;
- border: 0;
- outline: 0;
- background: #fff;
- background: rgba(255, 255, 255, 0.75);
- width: 100%;
- border-radius: 0.35em;
- padding: 0.75em 1em 0.75em 1em;
- box-shadow: inset 0 0.1em 0.1em 0 rgba(0, 0, 0, 0.05);
- border: solid 1px rgba(0, 0, 0, 0.15);
- @include vendor('transition', 'all 0.35s ease-in-out');
-
- &:focus {
- box-shadow: 0 0 2px 1px #8ebebc;
- background: #fff;
- }
- }
-
- input[type="text"],
- input[type="email"],
- input[type="password"],
- select {
- line-height: 1.25em;
- }
-
- textarea {
- min-height: 14em;
- }
-
- ::-webkit-input-placeholder {
- color: #555 !important;
- }
-
- :-moz-placeholder {
- color: #555 !important;
- }
-
- ::-moz-placeholder {
- color: #555 !important;
- }
-
- :-ms-input-placeholder {
- color: #555 !important;
- }
-
- ::-moz-focus-inner {
- border: 0;
- }
- }
-
-/* Table */
-
- table {
- width: 100%;
- text-align: left;
-
- tbody {
- tr {
- &:nth-child(2n+2) {
- background: #f4f4f4;
- }
- }
- }
-
- td {
- padding: 0.5em 1em 0.5em 1em;
- }
-
- th {
- text-align: left;
- padding: 0.5em 1em 0.5em 1em;
- color: #fff;
- background: #222729 url('images/overlay.png');
- }
-
- thead {
- background: #444;
- color: #fff;
- }
-
- tfoot {
- background: #eee;
- }
- }
-
-/* Button */
-
- input[type="button"],
- input[type="submit"],
- input[type="reset"],
- button,
- .button {
- position: relative;
- display: inline-block;
- border-radius: 0.35em;
- color: #fff !important;
- text-decoration: none;
- padding: 0.75em 2.5em 0.75em 2.5em;
- background-color: #8ebebc;
- border: 0;
- cursor: pointer;
- @include vendor('background-image', ('linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15))', 'url("images/overlay.png")'));
- @include vendor('transition', 'background-color 0.35s ease-in-out');
-
- &:hover {
- background-color: #9ececc;
- }
-
- &:active {
- background-color: #7eaeac;
- }
- }
-
-/* Item */
-
- .item {
- box-shadow: 0 0.05em 0.15em 0 rgba(0, 0, 0, 0.05);
- margin-bottom: 40px;
-
- header {
- background: #fff;
- margin: 0;
- padding: 1em 0 1em 0;
- font-size: 0.8em;
-
- h3 {
- font-size: 1em;
- }
- }
- }
-
-/* Icons */
-
- .icon {
- @include icon;
- text-decoration: none;
-
- &:before {
- line-height: inherit;
- }
-
- > .label {
- display: none;
- }
-
- &.solid {
- &:before {
- font-weight: 900;
- }
- }
-
- &.brands {
- &:before {
- font-family: 'Font Awesome 5 Brands';
- }
- }
- }
-
-/* Header */
-
- #header {
- @include vendor('display', 'flex');
- @include vendor('flex-direction', 'column');
- @include vendor('justify-content', 'space-between');
- background: #222629 url('images/overlay.png');
- box-shadow: inset -0.25em 0 0.25em 0 rgba(0, 0, 0, 0.1);
- color: #fff;
- height: 100%;
- left: 0;
- overflow-y: auto;
- position: fixed;
- text-align: right;
- top: 0;
- width: 375px;
-
- .top {
- @include vendor('flex-grow', '1');
- }
-
- .bottom {
- @include vendor('flex-shrink', '0');
- padding: 1.5em 0 0.75em 0;
-
- > :last-child {
- margin-bottom: 0;
- }
- }
-
- .icons {
- font-size: 0.8em;
- text-align: center;
-
- a {
- color: #41484c;
- @include vendor('transition', 'color 0.35s ease-in-out');
-
- &:hover {
- color: #fff;
- }
- }
- }
- }
-
- #logo {
- position: relative;
- margin: 1.75em 1.5em 1.5em 1.5em;
- min-height: 48px;
- cursor: default;
-
- h1 {
- position: relative;
- color: #fff;
- font-weight: 600;
- font-size: 1em;
- line-height: 1em;
- }
-
- p {
- position: relative;
- display: block;
- font-size: 0.6em;
- color: rgba(255, 255, 255, 0.5);
- line-height: 1.25em;
- margin: 0.5em 0 0 0;
- }
-
- .image {
- position: absolute;
- left: 0;
- top: 0;
- }
- }
-
- #nav {
- ul {
- list-style: none;
- padding-left: 0;
- margin-bottom: 0;
-
- li {
- padding-left: 0;
-
- a {
- display: block;
- padding: 0.5em 1.5em 0.5em 1.5em;
- color: rgba(255, 255, 255, 0.5);
- text-decoration: none;
- outline: 0;
- border: 0;
- @include vendor('transition', 'none');
-
- span {
- position: relative;
- display: block;
- font-size: 0.8em;
-
- &:before {
- position: absolute;
- left: 0;
- color: #41484c;
- text-align: center;
- width: 1.25em;
- line-height: 1.75em;
- }
- }
-
- &.active {
- background: rgba(0, 0, 0, 0.15);
- box-shadow: inset 0 0 0.25em 0 rgba(0, 0, 0, 0.125);
- color: #fff;
-
- span:before {
- color: #e27689;
- }
- }
- }
- }
- }
- }
-
-/* Footer */
-
- #footer {
- margin-left: 375px;
- text-align: center;
- background-color: #dce3e2;
- padding: 3em 0 4em 0;
- box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.05), inset 0 0.1em 0.1em 0 rgba(0, 0, 0, 0.025);
- font-size: 0.8em;
-
- .copyright {
- cursor: default;
- margin: 0;
-
- li {
- display: inline-block;
- line-height: 1em;
- border-left: solid 1px rgba(128, 128, 128, 0.35);
- padding: 0 0 0 0.5em;
- margin: 0 0 0 0.5em;
-
- &:first-child {
- border-left: 0;
- padding-left: 0;
- margin-left: 0;
- }
- }
- }
- }
-
-/* Main */
-
- #main {
- margin-left: 375px;
-
- > section {
- margin: 0;
- overflow: hidden;
- padding: 4em 0;
- box-shadow: inset 0 1px 0 0 rgba(0, 0, 0, 0.05), inset 0 0.1em 0.1em 0 rgba(0, 0, 0, 0.025);
- text-align: center;
- background-image: url('images/overlay.png');
-
- &.dark {
- color: #ddd;
- color: rgba(255, 255, 255, 0.75);
-
- h2, h3, h4, h5, h6 {
- color: inherit;
- }
-
- strong {
- color: #fff;
- border-color: inherit;
- }
-
- a {
- color: #fff;
- border-color: inherit;
-
- &:hover {
- border-bottom-color: rgba(255, 255, 255, 0);
- }
- }
- }
-
- &.cover {
- padding: 10em 0;
- background-size: cover;
- background-position: center center;
- }
-
- &.one {
- background-color: #81918E;
- background-image: url('../../images/banner.jpg');
- }
-
- &.two {
- background-color: #f5fafa;
- }
-
- &.three {
- background-color: #ecf1f1;
- }
-
- &.four {
- background-color: #e8edec;
- }
- }
- }
-
-/* Wide */
-
- @include breakpoint('wide') {
-
- /* Basic */
-
- body, input, textarea, select {
- font-size: 17pt;
- }
-
- /* Header */
-
- #header {
- width: 300px;
- }
-
- /* Footer */
-
- #footer {
- margin-left: 300px;
- }
-
- /* Main */
-
- #main {
- margin-left: 300px;
- }
-
- }
-
-/* Normal */
-
- @include breakpoint('normal') {
-
- /* Main */
-
- #main {
- > section {
- padding: 3em 0;
- }
-
- section {
- &.cover {
- padding: 5em 0;
- }
- }
- }
-
- }
-
-/* Narrow */
-
- @include breakpoint('narrow') {
-
- /* Basic */
-
- body, input, textarea, select {
- font-size: 16pt;
- }
-
- .container {
- padding: 0 2em 0 2em;
- }
-
- /* Icons */
-
- ul.icons {
- li {
- a {
- width: 1.75em;
- }
- }
- }
-
- /* Item */
-
- .item {
- margin-bottom: 20px;
- }
-
- /* Header */
-
- #header {
- width: 20%;
- }
-
- #logo {
- .image {
- position: relative;
- margin: 0 0 0.5em 0;
- }
- }
-
- #nav {
- ul {
- li {
- a {
- font-size: 0.8em;
- padding-top: 0.5em;
- padding-bottom: 0.5em;
-
- span {
- padding-right: 2.25em;
-
- &:before {
- left: 100%;
- margin-left: -1.25em;
- line-height: 2.25em;
- }
- }
- }
- }
- }
- }
-
- /* Footer */
-
- #footer {
- margin-left: 20%;
- }
-
- /* Main */
-
- #main {
- margin-left: 20%;
- }
-
- }
-
-/* Narrower */
-
- #headerToggle {
- display: none;
- }
-
- @include breakpoint('<=narrower') {
-
- /* Basic */
-
- html, body {
- overflow-x: hidden;
- }
-
- body, input, textarea, select {
- font-size: 16pt;
- }
-
- header {
- br {
- display: none;
- }
- }
-
- .container {
- padding: 0 2em 0 2em;
- }
-
- /* Item */
-
- .item {
- margin-bottom: 15px;
- }
-
- /* Icons */
-
- ul.icons {
- a {
- width: 1.75em;
- font-size: 1.25em;
- }
- }
-
- /* Header */
-
- #header {
- @include vendor('backface-visibility', 'hidden');
- @include vendor('transform', 'translateX(#{_size(header) * -1})');
- @include vendor('transition', ('transform #{_duration(header)} ease'));
- -webkit-overflow-scrolling: touch;
- display: block;
- height: 100%;
- left: 0;
- overflow-y: auto;
- position: fixed;
- top: 0;
- width: _size(header);
- z-index: _misc(z-index-base) + 2;
- width: _size(header);
- background: #222729 url('images/overlay.png');
- box-shadow: inset -0.25em 0 0.25em 0 rgba(0, 0, 0, 0.125);
-
- .top {
- position: relative;
- }
-
- .bottom {
- border-top: solid 1px rgba(255, 255, 255, 0.05);
- box-shadow: 0 -1px 0 0 rgba(0, 0, 0, 0.15);
- padding-top: 2em;
- margin-top: 2em;
- position: relative;
- }
- }
-
- #logo {
- margin: 1.5em 1.25em 1.25em 1.25em;
- }
-
- #nav {
- ul {
- li {
- a {
- padding: 0.5em 1.25em 0.5em 1.25em;
- }
- }
- }
- }
-
- #headerToggle {
- @include vendor('backface-visibility', 'hidden');
- @include vendor('transition', 'transform #{_duration(header)} ease');
- display: block;
- height: 2.25em;
- left: 0;
- position: fixed;
- top: 0;
- width: 3.25em;
- z-index: _misc(z-index-base) + 1;
-
- .toggle {
- @include icon(false, solid);
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- height: 100%;
- outline: 0;
- border: 0;
-
- &:before {
- text-decoration: none;
- content: '\f0c9';
- color: #fff;
- font-size: 18px;
- background: rgba(128, 136, 144, 0.5);
- border-radius: 0.35em;
- text-align: center;
- position: absolute;
- left: 0.5em;
- top: 0.5em;
- display: block;
- width: 3.25em;
- height: 2.25em;
- line-height: 2.25em;
- }
- }
- }
-
- body {
- &.header-visible {
- #main {
- @include vendor('transform', 'translateX(#{_size(header)})');
- }
-
- #headerToggle {
- @include vendor('transform', 'translateX(#{_size(header)})');
- }
-
- #header {
- @include vendor('transform', 'translateX(0)');
- }
- }
- }
-
- /* Footer */
-
- #footer {
- margin-left: 0;
- }
-
- /* Main */
-
- #main {
- @include vendor('backface-visibility', 'hidden');
- @include vendor('transition', 'transform #{_duration(header)} ease');
- padding-bottom: 1px;
- margin-left: 0;
-
- > section {
- padding: 3em 0;
- }
-
- section {
- &.cover {
- padding: 4em 0;
- }
- }
- }
- }
-
-/* Mobile */
-
- @include breakpoint('<=mobile') {
-
- /* Basic */
-
- body, input, textarea, select {
- font-size: 14pt;
- }
-
- h2 {
- font-size: 1.5em;
- letter-spacing: 0;
- font-weight: 300;
- }
-
- .container {
- padding: 0 15px 0 15px;
- }
-
- /* List */
-
- ul.icons {
- a {
- width: 2em;
- font-size: 1.25em;
- }
- }
-
- /* Main */
-
- #main {
- > section {
- padding: 2em 0;
- }
-
- section {
- &.cover {
- padding: 4em 0em;
-
- header {
- padding: 0 1em;
- }
- }
- }
- }
-
- /* Footer */
-
- #footer {
- .copyright {
- li {
- display: block;
- line-height: 1.25em;
- border: 0;
- padding: 0;
- margin: 1em 0 0 0;
-
- &:first-child {
- margin-top: 0;
- }
- }
- }
- }
-
- }
\ No newline at end of file
diff --git a/assets/scss/_variables_project.scss b/assets/scss/_variables_project.scss
new file mode 100644
index 0000000..e5e7c6e
--- /dev/null
+++ b/assets/scss/_variables_project.scss
@@ -0,0 +1,7 @@
+/*
+
+Add styles or override variables from the theme here.
+
+*/
+$primary: #c1440e;
+$secondary: #fda600;
diff --git a/assets/webfonts/fa-brands-400.eot b/assets/webfonts/fa-brands-400.eot
deleted file mode 100644
index cba6c6c..0000000
Binary files a/assets/webfonts/fa-brands-400.eot and /dev/null differ
diff --git a/assets/webfonts/fa-brands-400.svg b/assets/webfonts/fa-brands-400.svg
deleted file mode 100644
index b9881a4..0000000
--- a/assets/webfonts/fa-brands-400.svg
+++ /dev/null
@@ -1,3717 +0,0 @@
-
-
-
-
-Created by FontForge 20201107 at Wed Aug 4 12:25:29 2021
- By Robert Madole
-Copyright (c) Font Awesome
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/assets/webfonts/fa-brands-400.ttf b/assets/webfonts/fa-brands-400.ttf
deleted file mode 100644
index 8d75ded..0000000
Binary files a/assets/webfonts/fa-brands-400.ttf and /dev/null differ
diff --git a/assets/webfonts/fa-brands-400.woff b/assets/webfonts/fa-brands-400.woff
deleted file mode 100644
index 3375bef..0000000
Binary files a/assets/webfonts/fa-brands-400.woff and /dev/null differ
diff --git a/assets/webfonts/fa-brands-400.woff2 b/assets/webfonts/fa-brands-400.woff2
deleted file mode 100644
index 402f81c..0000000
Binary files a/assets/webfonts/fa-brands-400.woff2 and /dev/null differ
diff --git a/assets/webfonts/fa-regular-400.eot b/assets/webfonts/fa-regular-400.eot
deleted file mode 100644
index a4e5989..0000000
Binary files a/assets/webfonts/fa-regular-400.eot and /dev/null differ
diff --git a/assets/webfonts/fa-regular-400.svg b/assets/webfonts/fa-regular-400.svg
deleted file mode 100644
index 463af27..0000000
--- a/assets/webfonts/fa-regular-400.svg
+++ /dev/null
@@ -1,801 +0,0 @@
-
-
-
-
-Created by FontForge 20201107 at Wed Aug 4 12:25:29 2021
- By Robert Madole
-Copyright (c) Font Awesome
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/assets/webfonts/fa-regular-400.ttf b/assets/webfonts/fa-regular-400.ttf
deleted file mode 100644
index 7157aaf..0000000
Binary files a/assets/webfonts/fa-regular-400.ttf and /dev/null differ
diff --git a/assets/webfonts/fa-regular-400.woff b/assets/webfonts/fa-regular-400.woff
deleted file mode 100644
index ad077c6..0000000
Binary files a/assets/webfonts/fa-regular-400.woff and /dev/null differ
diff --git a/assets/webfonts/fa-regular-400.woff2 b/assets/webfonts/fa-regular-400.woff2
deleted file mode 100644
index 5632894..0000000
Binary files a/assets/webfonts/fa-regular-400.woff2 and /dev/null differ
diff --git a/assets/webfonts/fa-solid-900.eot b/assets/webfonts/fa-solid-900.eot
deleted file mode 100644
index e994171..0000000
Binary files a/assets/webfonts/fa-solid-900.eot and /dev/null differ
diff --git a/assets/webfonts/fa-solid-900.svg b/assets/webfonts/fa-solid-900.svg
deleted file mode 100644
index 00296e9..0000000
--- a/assets/webfonts/fa-solid-900.svg
+++ /dev/null
@@ -1,5034 +0,0 @@
-
-
-
-
-Created by FontForge 20201107 at Wed Aug 4 12:25:29 2021
- By Robert Madole
-Copyright (c) Font Awesome
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/assets/webfonts/fa-solid-900.ttf b/assets/webfonts/fa-solid-900.ttf
deleted file mode 100644
index 25abf38..0000000
Binary files a/assets/webfonts/fa-solid-900.ttf and /dev/null differ
diff --git a/assets/webfonts/fa-solid-900.woff b/assets/webfonts/fa-solid-900.woff
deleted file mode 100644
index 23ee663..0000000
Binary files a/assets/webfonts/fa-solid-900.woff and /dev/null differ
diff --git a/assets/webfonts/fa-solid-900.woff2 b/assets/webfonts/fa-solid-900.woff2
deleted file mode 100644
index 2217164..0000000
Binary files a/assets/webfonts/fa-solid-900.woff2 and /dev/null differ
diff --git a/config.yaml b/config.yaml
new file mode 100644
index 0000000..9070e38
--- /dev/null
+++ b/config.yaml
@@ -0,0 +1,15 @@
+# THIS IS A TEST CONFIG ONLY!
+# FOR THE CONFIGURATION OF YOUR SITE USE hugo.yaml.
+#
+# As of Docsy 0.7.0, Hugo 0.110.0 or later must be used.
+#
+# The sole purpose of this config file is to detect Hugo-module builds that use
+# an older version of Hugo.
+#
+# DO NOT add any config parameters to this file. You can safely delete this file
+# if your project is using the required Hugo version.
+
+module:
+ hugoVersion:
+ extended: true
+ min: 0.110.0
diff --git a/content/_index.md b/content/_index.md
new file mode 100644
index 0000000..ee56156
--- /dev/null
+++ b/content/_index.md
@@ -0,0 +1,44 @@
+---
+title: Mars Simulation Project
+---
+
+{{< blocks/cover title="Welcome to MarsSim Project!" image_anchor="top" height="full" >}}
+
Simulation of life on Mars
+{{< blocks/link-down color="info" >}}
+{{< /blocks/cover >}}
+
+
+{{% blocks/lead color="primary" %}}
+The MarsSim is an Open Source project that provides an automated simulation of life on Mars for Settlers.
+
+The simulation has the following features.
+{{% /blocks/lead %}}
+
+
+{{% blocks/section color="dark" type="row" %}}
+{{% blocks/feature icon="fa-solid fa-people-group" title="Settlers" %}}
+People and Robots
+Automatically select Tasks for workflow
+Skills and Abilities modeled
+
+{{% /blocks/feature %}}
+
+{{% blocks/feature icon="fa-solid fa-city" title="Settlements"%}}
+Settlements created of various buildings
+Inter-Settlement commerce
+Earth resupply Missions
+Manage Equipment and Vehicles
+Shift patterns of workers
+Controlling Reporting Authorities, e.g. **NASA**
+{{% /blocks/feature %}}
+
+{{% blocks/feature icon="fa-solid fa-briefcase" title="Missions" %}}
+Missions created and populated
+Members selected on skills
+{{% /blocks/feature %}}
+
+{{% /blocks/section %}}
+
+{{% blocks/section color="secondary" %}}
+Please read on for more [Information](/docs/about/), how to contribute and how to use.....
+{{% /blocks/section %}}
\ No newline at end of file
diff --git a/content/community/_index.md b/content/community/_index.md
new file mode 100644
index 0000000..8d226b5
--- /dev/null
+++ b/content/community/_index.md
@@ -0,0 +1,5 @@
+---
+title: Community
+menu: {main: {weight: 40}}
+# Add blocks of content here to add more sections to the community page
+---
diff --git a/content/docs/_index.md b/content/docs/_index.md
new file mode 100644
index 0000000..768056d
--- /dev/null
+++ b/content/docs/_index.md
@@ -0,0 +1,6 @@
+---
+title: Documentation
+linkTitle: Docs
+---
+
+This section provides various documentation articles on the simulation. Covering the logic behind the simulation through to the entity definitions.
diff --git a/content/docs/about/_index.md b/content/docs/about/_index.md
new file mode 100644
index 0000000..9ceafcc
--- /dev/null
+++ b/content/docs/about/_index.md
@@ -0,0 +1,40 @@
+---
+title: About Simulation
+description: About the Simulation
+weight: 1
+menu:
+ main:
+ weight: 10
+---
+
+Robert Zubrin once proposed four phases in the economics of Mars colonization. Each represents a new progressive stage of increased human activities toward building a human civilization on Mars.
+
+{{< figure src="/images/marsyear135.gif" caption="Image from MarsOne" >}}
+
+## EXPLORATION
+
+Orbital survey of Mars, telescopic and robotic survey, precursor sample return, scientific investigations, human flyby/EVA/landing/return;
+
+{{< figure src="/images/analysis.jpg" caption="Image credit: Mashable.com, 2013" >}}
+
+
+## BASE BUILDING
+
+Semi-permanent laboratory/habitat modules, crew rotations, water/ice recovery, in-situ fuel production, outpost maintenance/sustainment;
+
+{{< figure src="/images/habcutout.jpg" caption="Cutaway of a proposed 4-person Habitat Module. Image: Ian Warpole, Scientific American" >}}
+
+## SETTLEMENT
+
+Colony expansion, food and resources supply chain, terrestrial exploitation, economic viability, industrial production, infrastructure redundancy;
+
+{{< figure src="/images/construction2.jpg" caption="Image from Outerplaces.com and Mars-One.com" >}}
+
+## TERRAFORMING
+
+Altering global climate, large scale geo-engineering, permanently transforming human surface activities.
+
+Currently, mars-sim focuses primarily in offering a simulation engine showcasing human activities in the aforementioned phase 1 and some phase 2 and a little bit of phase 3. Below are the five core features of mars-sim:
+
+{{< figure src="/images/colonizingmars2.jpg" caption="Terraforming Mars is not for faint of heart. Image credit: Stefan Morrell. Sources: Christopher McKay, NASA Ames Research Center; James Graham, University of Wisconsin–Madison; Robert Zubrin, Mars Society; Margarita Marinova, California Institute of Technology" >}}
+
\ No newline at end of file
diff --git a/content/docs/about/health.md b/content/docs/about/health.md
new file mode 100644
index 0000000..29b1a7f
--- /dev/null
+++ b/content/docs/about/health.md
@@ -0,0 +1,16 @@
+---
+title: Health and Radiation
+description: Health and Radiation Modeling
+weight: 30
+---
+
+mars-sim simulates realistic scenarios in which settler will cope with accidents of all kinds, illnesses, injuries and even death. Each settler has 4 critical health attributes reflecting the person's current physical conditions: Hunger, Fatigue, Stress and Performance level. A person's overall health status may be reported as being well or being sick (such as Suffocating, Recovering from Anxiety Attack/Flu/Pulled Muscle, and Death, etc..)
+
+In version 3.1.0, a radiation exposure modeling based on NASA's studies has been partially implemented to make it realistic. There are 3 possible type of radiation events : (A). The Baseline (B).the Galactic Cosmic Radiation (GCR) (C). Solar Energetic Event (SEP). Each with different level of radiation with SEP the highest level of exposure. The 3 body regions where the exposure are to be tracked are (1) Blood Forming Organ (BFO) (2) Ocular (3) Skin. In our modeling, there are 3 intervals (or counters) for the exposure: (1) 30 days (2) Annual (3) Career. e.g. for BFO, the max limits are set to be 250 mSV for 30 days, 500 mSV for Annual and 1000 mSV for Career.
+
+As a side note here, the Mars rover Curiosity received an average dose of 300 milli-sieverts (mSv) over the 180-day journey. Note that 300 mSv is equivalent to 24 CAT scans, or more than 15x the annual radiation limit for a worker in a nuclear power plant.
+
+One must be reminded that in the forseeable future, Mars is a by-and-large dangerous and unforgiving world. Survival hinges upon how well each settler responds to situations and how well they pull together as a team. Equipment can malfunction and building break down and require maintenance. There are times when one has to go out on a rescue mission to tow a stranded vehicle back to the base.
+
+{{< figure src="/images/insidegreenhouse2.jpg" caption="Working Inside Greenhouse. Image credit: Douglas Shrock-the Artist Shrox" >}}
+
diff --git a/content/docs/about/interconnect.md b/content/docs/about/interconnect.md
new file mode 100644
index 0000000..5ead0cd
--- /dev/null
+++ b/content/docs/about/interconnect.md
@@ -0,0 +1,21 @@
+---
+title: Interconnectiveness
+description: Interconnection between entities
+weight: 50
+---
+
+The Settlement Map provides each settlement a visual overview of the whereabout of each building, settler, bot and vehicle. You can see how buildings are seamlessly interconnected via hallways or tunnels. The Settlement Info Window provides clues on how well each system is functioning behind the scene. No two settlements are alike. You can make each settlement unique by having distinguishable mission footprints and infrastructures and by ways of how settlers behaves.
+
+Beginning version 3.1.0, each settlement has an objective-- the overall development objective that certain activities such as manufacturing and food production processes tend to gear toward.
+
+The possible objectives :
+1. Crop Farm
+2. Manufacturing
+3. Research Center
+4. Transportation Hub
+5. Trade Town
+6. Tourism
+
+{{< figure src="/images/settlementlayout.jpg" caption="2-D blueprint of a Mars outpost with connected modules. Image courtesy of Georgi Petrov and Mars Foundation" >}}
+
+As settlements grow and more buildings are shipped in or being constructed on site according to the needs, a diversity of specialty functions would result. It's not difficult to imagine a settlement become an university town housing numerous laboratories attracting academically driven settlers if it heavily sponsors research studies on those disciplines. A green town may be developed to house a large number of interonnected greenhouses having a company of biologists/botanists experimenting with improving crop rotations and genetics that give better crop yield. A maker-haven is one that consists of a lot of workshops with machineries providing high industrial throughput and attracting influx of creative individuals to prototype and tinker with tools to produce new parts and equipment. Also, with more prospectors arriving on Mars, mining outposts will be the next frontier and they will sprout up everywhere along a resource-rich basin/region, fortifying the local supply chain for raw minerals.
\ No newline at end of file
diff --git a/content/docs/about/scenarios.md b/content/docs/about/scenarios.md
new file mode 100644
index 0000000..9128980
--- /dev/null
+++ b/content/docs/about/scenarios.md
@@ -0,0 +1,15 @@
+---
+title: Mission Scenarios
+description: Introduction to the Missions
+weight: 10
+---
+
+mars-sim borrows from a variant form of the Mars Direct plan proposed by Zubrin and Baker in 1990s. Select 'New Sim' in the Main Menu will take you to the Simulation Configuration Editor. By default, you are presented with two settlements, namely a Mars Direct Base (Phase 1) with 4 settlers and an Alpha Base (Phase 4) with 24 settlers. You are free to reconfigure this template.
+
+In version 3.1.0, users may designate a space agency to sponsor each settlement. The names of the settler will be auto-generated to suit his/her national origin, based on the space agency chosen.
+
+In terms of resupply mission, for a Mars Direct Base Phase 1, the built-in resupply schedule will send one new mission each Martian year (668 or 669 sols) for the next 3 years to replenish existing settlements. Using Resupply Tool, users can tweak the launch/arrival date, the number of settlers and the type/ quantity of supplies (including buildings, equipment, vehicles, resources, and parts).
+
+{{< figure src="/images/config.png" caption="Screenshot of the Simulation Configuration Editor" >}}
+
+{{< figure src="/images/creweditor.png" caption="Screenshot of the Crew Editor" >}}
diff --git a/content/docs/about/settlers.md b/content/docs/about/settlers.md
new file mode 100644
index 0000000..b9cd2eb
--- /dev/null
+++ b/content/docs/about/settlers.md
@@ -0,0 +1,18 @@
+---
+title: Settlers
+description: Profile of Settlers
+weight: 20
+---
+
+Each settler is assigned with a Job which will determine a list of relevant tasks and missions at a given Work Shift. There are a variety of Job in mars-sim: Architect, Areologist, Astronomer, Biologist, Botanist, Chef, Chemist, Doctor, Driver, Engineer, Manager, Mathematician, Meterologist, Physicist, Technician, and Trader. Users can change a person's Job in the Activity Tab.
+
+In version 3.1.0, each settlement will have a leadership structure. For a settlement with less than 47 settlers, the hierachy comprises a commander, and sub-commander and a list of chiefs and a list of specialists. FOr a settlement with 48 people, a mayor will be elected. Each settler will have a given Role based on his/her natural attributes and skills. The roles are not fixed and can change over time.
+
+A person's Skills Tab will show his current level of achievement on each skill subject. Each individual has a blend of academic skills (such as Aerology, Astronomy, Biology, Chemistry, Mathematics, Meteorology, Physics, etc.) and survival skills (such as Botany, Cooking, Construction, Driving, EVA Operations, Material Science, Mechanics, Medicine, Trading, etc.) that will contribute to the survival and sustainment of the settlement. When a settler takes up the role of a chef, the corresponding skill--namely cooking-- will improve. The one whose skill is higher level may mentor one whose skill is lower. Over time, settlers may cross train among themselves to improve skills or acquire new skills. With overlapping skills, settlers depend on one another to get through disasters and catastrophes.
+
+Settlers perform tasks and activities according to their personal needs and the collective needs of the settlement. There are a myriad of tasks such as Growing crops, Sleeping, Cooking, Relaxing, Exercising, Doing Yoga, Eating a Meal, Performing Maintenance, Performing Experiments, Manufacturing, Tending Greenhouse, Entering/Exiting EVA, Driving Vehicle, Collecting Resources, Perform Study, and Teaching, etc.. Some tasks are more career-oriented than others. As you can imagine, chefs prepare meals, botanists tend greenhouses, technicians perform maintenance, engineers manufacture needed parts and equipment from local resources, etc..
+
+Settlers also form tag teams to explore treacherous terrains, prospect rock samples and mine minerals. Based on supply and demand, they will set out excursions to trade with neighboring settlements as there are hundreds of items called "Trade Goods". Some of these items may be in surplus on one settlement but are in wants by another settlement. On the other hand, some settlers may have overwhelming scientific ambitions to just stay put and write proposals and conduct scientific study. Their goals would be earning Scientific Achievement Credits. As the primary researchers, they recruit collaborators on their projects. Without a doubt, settlers of Mars are pioneers of the next human frontier.
+
+
+{{< figure src="/images/marsexpedition2.jpg" caption="A Mars Expedition. Image credit: Douglas Shrock- the Artist Shrox" >}}
diff --git a/content/docs/about/social.md b/content/docs/about/social.md
new file mode 100644
index 0000000..0f889b4
--- /dev/null
+++ b/content/docs/about/social.md
@@ -0,0 +1,14 @@
+---
+title: Professional
+description: Social/Professional Interactions and Achievements
+weight: 60
+---
+
+mars-sim simulates the overall professional relationship for the future settlers on Mars. In general, this social aspect is modeled by a 3-tier relationship indicator showing how close or how adversarial between any two individuals. Each settler bears an imprint of one's gender, date of birth, weight, height, BMI, age, blood type, a personality profile based on Myers-Briggs Type Indicators (MBTI) and Five Factor Model (FFM), and a set of natural attributes (such as Agility, Academic Aptitude, Attractiveness, Conversation, Endurance, Experience Aptitude, Leadership, Strength, Stress Resilience, and Teaching). These characteristics set in motion on how well a person interact with his/her team and others socially and professionally.
+
+One can track how a person relate with another with the Relationship Tab. Suffice to say that each settler with one's personality types, coupling with his unique set of natural attributes and professional skills, create the destiny of his/her own.
+
+A person's Science Tab lists the ongoing and finished scientific studies with others and the scientific achievement in his/her areas of endeavour.
+
+{{< figure src="/images/yourfacehere2.jpg" caption="Your Face Here Image credit: pioneer-city.com" >}}
+
diff --git a/content/docs/contributing-guidelines.md b/content/docs/contributing-guidelines.md
new file mode 100644
index 0000000..6db74cc
--- /dev/null
+++ b/content/docs/contributing-guidelines.md
@@ -0,0 +1,9 @@
+---
+title: Contributing Guidelines
+linkTitle: Contribute
+weight: 70
+---
+
+The project is run as a Open Source project on [GitHub](https://github.com/mars-sim/mars-sim). It uses Java as its foundation and the team is always open to new contrbutors.
+
+The project maintains a healthy backlog of tasks ranging from new features, design changes through to bugs. These can be found on the [issues list](https://github.com/mars-sim/mars-sim/issues).
\ No newline at end of file
diff --git a/content/docs/definitions/_index.md b/content/docs/definitions/_index.md
new file mode 100644
index 0000000..b747108
--- /dev/null
+++ b/content/docs/definitions/_index.md
@@ -0,0 +1,8 @@
+---
+title: Definitions
+description: Catalogue of the Entity Definition
+weight: 60
+---
+
+The simulation uses a number of entities that define the behaviour/charactertics of simulations entities.
+
diff --git a/content/docs/definitions/building/_index.md b/content/docs/definitions/building/_index.md
new file mode 100644
index 0000000..ad090ce
--- /dev/null
+++ b/content/docs/definitions/building/_index.md
@@ -0,0 +1,118 @@
+---
+title: Building Spec
+description: Building Specifications available for bases
+---
+
+
+
+
+{{< alert color="success" >}}These can be changed via the XML file _buildings.xml_. See [XML Files](/docs/guide/xml-files/){{< /alert >}}
+
+
+Grouped by Category.
+
+### Airlock {#A-airlock}
+
+- [EVA Airlock](../building/eva-airlock)
+
+### Astronomy {#A-astronomy}
+
+- [Astronomy Observatory](../building/astronomy-observatory)
+
+### Command {#A-command}
+
+- [Command and Control](../building/command-and-control)
+- [Lander Hab](../building/lander-hab)
+- [Outpost Hub](../building/outpost-hub)
+
+### Connection {#A-connection}
+
+- [Hallway](../building/hallway)
+- [Tunnel](../building/tunnel)
+
+### Earth Return {#A-earth-return}
+
+- [ERV-A](../building/erv-a)
+- [ERV-B](../building/erv-b)
+- [ERV-C](../building/erv-c)
+- [ERV-I](../building/erv-i)
+
+### Engineering {#A-engineering}
+
+- [Machinery Hab](../building/machinery-hab)
+- [Manufacturing Shed](../building/manufacturing-shed)
+- [Workshop](../building/workshop)
+
+### Farming {#A-farming}
+
+- [Algae Pond](../building/algae-pond)
+- [Central Hub A](../building/central-hub-a)
+- [Fish Farm](../building/fish-farm)
+- [Inflatable Greenhouse](../building/inflatable-greenhouse)
+- [Inground Greenhouse](../building/inground-greenhouse)
+- [Large Greenhouse](../building/large-greenhouse)
+
+### Laboratory {#A-laboratory}
+
+- [Laboratory](../building/laboratory)
+- [Mining Lab](../building/mining-lab)
+- [Research Hab](../building/research-hab)
+- [Server Farm](../building/server-farm)
+
+### Living Space {#A-living-space}
+
+- [Bunkhouse](../building/bunkhouse)
+- [Lounge](../building/lounge)
+- [Residential Hab](../building/residential-hab)
+- [Residential Quarters](../building/residential-quarters)
+
+### Medical {#A-medical}
+
+- [Infirmary](../building/infirmary)
+- [Medical Hab](../building/medical-hab)
+
+### Power Supply {#A-power-supply}
+
+- [Kilopower Reactor](../building/kilopower-reactor)
+- [Large Areothermal Well](../building/large-areothermal-well)
+- [MD1 Nuclear Reactor](../building/md1-nuclear-reactor)
+- [MD4 Nuclear Reactor](../building/md4-nuclear-reactor)
+- [Medium Battery Array](../building/medium-battery-array)
+- [Methane Power Generator](../building/methane-power-generator)
+- [Small Areothermal Well](../building/small-areothermal-well)
+- [Solar Photovoltaic Array](../building/solar-photovoltaic-array)
+- [Solar Thermal Collector](../building/solar-thermal-collector)
+- [TOPAZ-2A Reactor](../building/topaz-2a-reactor)
+- [TOPAZ-3 Reactor](../building/topaz-3-reactor)
+- [Wind Turbine](../building/wind-turbine)
+
+### Processing {#A-processing}
+
+- [Atmospheric Processor](../building/atmospheric-processor)
+- [Large Sabatier Processor](../building/large-sabatier-processor)
+- [Syngas Plant](../building/syngas-plant)
+
+### Storage {#A-storage}
+
+- [Cement Storage](../building/cement-storage)
+- [Chemical Storage](../building/chemical-storage)
+- [Concrete Storage](../building/concrete-storage)
+- [Fuel Storage](../building/fuel-storage)
+- [Gas Storage](../building/gas-storage)
+- [Ice Storage](../building/ice-storage)
+- [Lime Storage](../building/lime-storage)
+- [Metal Storage](../building/metal-storage)
+- [Ore Storage](../building/ore-storage)
+- [Regolith Storage](../building/regolith-storage)
+- [Sand Storage](../building/sand-storage)
+- [Storage Hab](../building/storage-hab)
+- [Storage Shed](../building/storage-shed)
+
+### Vehicle {#A-vehicle}
+
+- [Garage](../building/garage)
+- [Loading Dock Garage](../building/loading-dock-garage)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/algae-pond.md b/content/docs/definitions/building/algae-pond.md
new file mode 100644
index 0000000..1bbe8f6
--- /dev/null
+++ b/content/docs/definitions/building/algae-pond.md
@@ -0,0 +1,46 @@
+---
+title: Building Spec - Algae Pond
+linkTitle: Algae Pond
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+This building grows spirulina in ponds. It is furnished with a biology research lab with instruments.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Farming|
+|Construction:|PRE_FABRICATED|
+|Size:|6.0 x 9.0 m|
+|Level:|0|
+|Maintenance Period:|150|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+
+## Functions
+
+- ALGAE_FARMING
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- RECREATION
+- RESEARCH
+- ROBOTIC_STATION
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/astronomy-observatory.md b/content/docs/definitions/building/astronomy-observatory.md
new file mode 100644
index 0000000..220c6c1
--- /dev/null
+++ b/content/docs/definitions/building/astronomy-observatory.md
@@ -0,0 +1,45 @@
+---
+title: Building Spec - Astronomy Observatory
+linkTitle: Astronomy Observatory
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Astronomy Observatory is a small self-contained observatory building furnished with an optical telescope, research workbenches and laboratory equipment.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Astronomy|
+|Construction:|PRE_FABRICATED|
+|Size:|7.0 x 7.0 m|
+|Level:|0|
+|Maintenance Period:|250|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Astronomy Observatory](/docs/definitions/construction/astronomy-observatory)|
+
+## Functions
+
+- ASTRONOMICAL_OBSERVATION
+- COMPUTATION
+- DINING
+- LIFE_SUPPORT
+- POWER_STORAGE
+- RESEARCH
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/atmospheric-processor.md b/content/docs/definitions/building/atmospheric-processor.md
new file mode 100644
index 0000000..2287cd4
--- /dev/null
+++ b/content/docs/definitions/building/atmospheric-processor.md
@@ -0,0 +1,39 @@
+---
+title: Building Spec - Atmospheric Processor
+linkTitle: Atmospheric Processor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Atmospheric Processor is an resource-processing building providing black/water recycling, air processing and waste recycling functions for the settlement.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Processing|
+|Construction:|PRE_FABRICATED|
+|Size:|8.0 x 11.0 m|
+|Level:|0|
+|Maintenance Period:|150|
+|Power Demands:|0.5 kW|
+|Offline Power Demands:|0.05 kW|
+|Construction:|[Atmospheric Processor](/docs/definitions/construction/atmospheric-processor)|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+- RESOURCE_PROCESSING
+- STORAGE
+- WASTE_PROCESSING
+
+
+## Power Sources
+
+- Solar Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/bunkhouse.md b/content/docs/definitions/building/bunkhouse.md
new file mode 100644
index 0000000..2d884cc
--- /dev/null
+++ b/content/docs/definitions/building/bunkhouse.md
@@ -0,0 +1,47 @@
+---
+title: Building Spec - Bunkhouse
+linkTitle: Bunkhouse
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Bunkhouse is a spartan living quarters with two beds. It is a retractable housing custom-tailored for temporary mining outpost operation.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Living Space|
+|Construction:|CONCRETE|
+|Size:|5.0 x 5.0 m|
+|Level:|-1|
+|Maintenance Period:|150|
+|Power Demands:|1.5 kW|
+|Offline Power Demands:|0.15 kW|
+|Construction:|[Bunkhouse](/docs/definitions/construction/bunkhouse)|
+
+## Functions
+
+- LIFE_SUPPORT
+- LIVING_ACCOMMODATION
+- POWER_GENERATION
+- POWER_STORAGE
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/cement-storage.md b/content/docs/definitions/building/cement-storage.md
new file mode 100644
index 0000000..1b42e47
--- /dev/null
+++ b/content/docs/definitions/building/cement-storage.md
@@ -0,0 +1,32 @@
+---
+title: Building Spec - Cement Storage
+linkTitle: Cement Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Cement Storage Bin is a small brick bin for storing dry cement for light construction project.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x 3.0 m|
+|Level:|0|
+|Maintenance Period:|50|
+|Power Demands:|0.0 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Cement Storage](/docs/definitions/construction/cement-storage)|
+
+## Functions
+
+- STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/central-hub-a.md b/content/docs/definitions/building/central-hub-a.md
new file mode 100644
index 0000000..4022950
--- /dev/null
+++ b/content/docs/definitions/building/central-hub-a.md
@@ -0,0 +1,55 @@
+---
+title: Building Spec - Central Hub A
+linkTitle: Central Hub A
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Central Hub serves to a nexus for connecting other building modules. It has a flexible air dome and is designed to be a place of gathering and relaxation.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Farming|
+|Construction:|INFLATABLE|
+|Size:|20.0 x 20.0 m|
+|Level:|0|
+|Maintenance Period:|300|
+|Power Demands:|5.0 kW|
+|Offline Power Demands:|1.0 kW|
+
+## Functions
+
+- COOKING
+- DINING
+- EXERCISE
+- FARMING
+- FISHERY
+- FOOD_PRODUCTION
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- PREPARING_DESSERT
+- RECREATION
+- RESEARCH
+- RESOURCE_PROCESSING
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/chemical-storage.md b/content/docs/definitions/building/chemical-storage.md
new file mode 100644
index 0000000..bd4c969
--- /dev/null
+++ b/content/docs/definitions/building/chemical-storage.md
@@ -0,0 +1,32 @@
+---
+title: Building Spec - Chemical Storage
+linkTitle: Chemical Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Chemical Storage Bin is a small brick bin for storing chemical compounds.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x 3.0 m|
+|Level:|0|
+|Maintenance Period:|50|
+|Power Demands:|0.0 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Chemical Storage](/docs/definitions/construction/chemical-storage)|
+
+## Functions
+
+- STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/command-and-control.md b/content/docs/definitions/building/command-and-control.md
new file mode 100644
index 0000000..f7c6259
--- /dev/null
+++ b/content/docs/definitions/building/command-and-control.md
@@ -0,0 +1,49 @@
+---
+title: Building Spec - Command and Control
+linkTitle: Command and Control
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Command and Control is a communication facility with networking capability for high speed communications and colony-width connectivity. It also coordinates EVA operations.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Command|
+|Construction:|PRE_FABRICATED|
+|Size:|7.0 x 9.0 m|
+|Level:|0|
+|Maintenance Period:|150|
+|Power Demands:|3.0 kW|
+|Offline Power Demands:|0.3 kW|
+|Construction:|[Command and Control](/docs/definitions/construction/command-and-control)|
+
+## Functions
+
+- ADMINISTRATION
+- COMMUNICATION
+- COMPUTATION
+- LIFE_SUPPORT
+- MANAGEMENT
+- POWER_GENERATION
+- POWER_STORAGE
+- ROBOTIC_STATION
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/concrete-storage.md b/content/docs/definitions/building/concrete-storage.md
new file mode 100644
index 0000000..a2da3d8
--- /dev/null
+++ b/content/docs/definitions/building/concrete-storage.md
@@ -0,0 +1,32 @@
+---
+title: Building Spec - Concrete Storage
+linkTitle: Concrete Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Concrete Storage Bin is a small brick bin for storing dry concrete material for light construction project.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x 3.0 m|
+|Level:|0|
+|Maintenance Period:|50|
+|Power Demands:|0.0 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Concrete Storage](/docs/definitions/construction/concrete-storage)|
+
+## Functions
+
+- STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/erv-a.md b/content/docs/definitions/building/erv-a.md
new file mode 100644
index 0000000..9ce0522
--- /dev/null
+++ b/content/docs/definitions/building/erv-a.md
@@ -0,0 +1,38 @@
+---
+title: Building Spec - ERV-A
+linkTitle: ERV-A
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Earth Return Vehicle Type A (ERV-A) is a vehicle base sent ahead of the arrival of the human crew. It provides equipment package for resource processing that provide essential life-support functions. It is NOT fully flight capable and would require retrofitting to become flight-ready.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Earth Return|
+|Construction:|PRE_FABRICATED|
+|Size:|10.0 x 10.0 m|
+|Level:|0|
+|Maintenance Period:|100|
+|Power Demands:|0.5 kW|
+|Offline Power Demands:|0.05 kW|
+
+## Functions
+
+- EARTH_RETURN
+- POWER_GENERATION
+- POWER_STORAGE
+- RESOURCE_PROCESSING
+- STORAGE
+
+
+## Power Sources
+
+- Solar Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/erv-b.md b/content/docs/definitions/building/erv-b.md
new file mode 100644
index 0000000..173acbd
--- /dev/null
+++ b/content/docs/definitions/building/erv-b.md
@@ -0,0 +1,38 @@
+---
+title: Building Spec - ERV-B
+linkTitle: ERV-B
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Earth Return Vehicle Type B (ERV-B) It furnishes many regolith- related processing equipment package that extract ores and minerals. It may be reconfigured into a flight-ready space vehicle with habitation space.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Earth Return|
+|Construction:|PRE_FABRICATED|
+|Size:|10.0 x 10.0 m|
+|Level:|0|
+|Maintenance Period:|100|
+|Power Demands:|0.5 kW|
+|Offline Power Demands:|0.05 kW|
+
+## Functions
+
+- EARTH_RETURN
+- POWER_GENERATION
+- POWER_STORAGE
+- RESOURCE_PROCESSING
+- STORAGE
+
+
+## Power Sources
+
+- Solar Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/erv-c.md b/content/docs/definitions/building/erv-c.md
new file mode 100644
index 0000000..37687c2
--- /dev/null
+++ b/content/docs/definitions/building/erv-c.md
@@ -0,0 +1,38 @@
+---
+title: Building Spec - ERV-C
+linkTitle: ERV-C
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Earth Return Vehicle Type C (ERV-C) possesses many chemical-related processing equipment packages that synthesize industrial chemicals. It may be reconfigured into a flight-ready space vehicle with habitation space.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Earth Return|
+|Construction:|PRE_FABRICATED|
+|Size:|10.0 x 10.0 m|
+|Level:|0|
+|Maintenance Period:|100|
+|Power Demands:|0.5 kW|
+|Offline Power Demands:|0.05 kW|
+
+## Functions
+
+- EARTH_RETURN
+- POWER_GENERATION
+- POWER_STORAGE
+- RESOURCE_PROCESSING
+- STORAGE
+
+
+## Power Sources
+
+- Solar Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/erv-i.md b/content/docs/definitions/building/erv-i.md
new file mode 100644
index 0000000..749aa34
--- /dev/null
+++ b/content/docs/definitions/building/erv-i.md
@@ -0,0 +1,39 @@
+---
+title: Building Spec - ERV-I
+linkTitle: ERV-I
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Earth Return Vehicle Type I (ERV-I) is a vehicle base sent ahead of the arrival of the human crew. It provides equipment package for resource processing that provide ice and water related life-support functions. It is NOT fully flight capable and would require retrofitting to become flight-ready. Mars Direct Mission Plan : (1). ERV - (a). Payload imported from Earth - Consumables : 3400 kg Hydrogen feedstock : 6300 kg (b). Produced on Mars : water : 18900 kg Oxygen : 16080 kg Methane : 8400 kg (2). Hab - (a). Payload imported from Earth - Consumables : 7000 kg
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Earth Return|
+|Construction:|PRE_FABRICATED|
+|Size:|10.0 x 10.0 m|
+|Level:|0|
+|Maintenance Period:|100|
+|Power Demands:|0.5 kW|
+|Offline Power Demands:|0.05 kW|
+
+## Functions
+
+- EARTH_RETURN
+- POWER_GENERATION
+- POWER_STORAGE
+- RESOURCE_PROCESSING
+- STORAGE
+- WASTE_PROCESSING
+
+
+## Power Sources
+
+- Solar Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/eva-airlock.md b/content/docs/definitions/building/eva-airlock.md
new file mode 100644
index 0000000..77482b6
--- /dev/null
+++ b/content/docs/definitions/building/eva-airlock.md
@@ -0,0 +1,43 @@
+---
+title: Building Spec - EVA Airlock
+linkTitle: EVA Airlock
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The EVA Airlock is a node to be attached to building for giving direct access in performing EVA operations.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Airlock|
+|Construction:|PRE_FABRICATED|
+|Size:|6.0 x 4.0 m|
+|Level:|0|
+|Maintenance Period:|200|
+|Power Demands:|1.0 kW|
+|Offline Power Demands:|0.1 kW|
+
+## Functions
+
+- EVA
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/fish-farm.md b/content/docs/definitions/building/fish-farm.md
new file mode 100644
index 0000000..d4a332f
--- /dev/null
+++ b/content/docs/definitions/building/fish-farm.md
@@ -0,0 +1,46 @@
+---
+title: Building Spec - Fish Farm
+linkTitle: Fish Farm
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Fish Farm is made of stronger structural and cladding material such as coextruded laminate of polyamide and polyolefin interwoven around an aluminum frame to give rise to a scaffolded retention bladder. It is furnished with a biology research lab with instruments.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Farming|
+|Construction:|PRE_FABRICATED|
+|Size:|6.0 x 9.0 m|
+|Level:|0|
+|Maintenance Period:|150|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+
+## Functions
+
+- FISHERY
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- RECREATION
+- RESEARCH
+- ROBOTIC_STATION
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/fuel-storage.md b/content/docs/definitions/building/fuel-storage.md
new file mode 100644
index 0000000..8c21440
--- /dev/null
+++ b/content/docs/definitions/building/fuel-storage.md
@@ -0,0 +1,32 @@
+---
+title: Building Spec - Fuel Storage
+linkTitle: Fuel Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Fuel Storage is a small brick bin with tanks within for storing fuels.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x 3.0 m|
+|Level:|0|
+|Maintenance Period:|50|
+|Power Demands:|0.0 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Fuel Storage](/docs/definitions/construction/fuel-storage)|
+
+## Functions
+
+- STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/garage.md b/content/docs/definitions/building/garage.md
new file mode 100644
index 0000000..c746f10
--- /dev/null
+++ b/content/docs/definitions/building/garage.md
@@ -0,0 +1,47 @@
+---
+title: Building Spec - Garage
+linkTitle: Garage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Garage is an enclosed maintenance facility for building, repairing and modifying Martian rovers and vehicles
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Vehicle|
+|Construction:|PRE_FABRICATED|
+|Size:|12.0 x 16.0 m|
+|Level:|0|
+|Maintenance Period:|200|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Garage](/docs/definitions/construction/garage)|
+
+## Functions
+
+- VEHICLE_MAINTENANCE
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/gas-storage.md b/content/docs/definitions/building/gas-storage.md
new file mode 100644
index 0000000..9423a57
--- /dev/null
+++ b/content/docs/definitions/building/gas-storage.md
@@ -0,0 +1,32 @@
+---
+title: Building Spec - Gas Storage
+linkTitle: Gas Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Gas Storage is a small brick bin with tanks within for storing gases.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x 3.0 m|
+|Level:|0|
+|Maintenance Period:|50|
+|Power Demands:|0.0 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Gas Storage](/docs/definitions/construction/gas-storage)|
+
+## Functions
+
+- STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/hallway.md b/content/docs/definitions/building/hallway.md
new file mode 100644
index 0000000..0110975
--- /dev/null
+++ b/content/docs/definitions/building/hallway.md
@@ -0,0 +1,44 @@
+---
+title: Building Spec - Hallway
+linkTitle: Hallway
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Hallway is a pressurized access tube connecting two inhabitable buildings. It allows only one person to access it at a time.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Connection|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x -1.0 m|
+|Level:|0|
+|Maintenance Period:|20|
+|Power Demands:|0.1 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Hallway](/docs/definitions/construction/hallway)|
+
+## Functions
+
+- CONNECTION
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- ROBOTIC_STATION
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/ice-storage.md b/content/docs/definitions/building/ice-storage.md
new file mode 100644
index 0000000..f77e0f9
--- /dev/null
+++ b/content/docs/definitions/building/ice-storage.md
@@ -0,0 +1,32 @@
+---
+title: Building Spec - Ice Storage
+linkTitle: Ice Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Ice Storage Bin is a small brick bin for handling and storing extracted ice and water for future use.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x 3.0 m|
+|Level:|0|
+|Maintenance Period:|50|
+|Power Demands:|0.0 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Ice Storage](/docs/definitions/construction/ice-storage)|
+
+## Functions
+
+- STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/infirmary.md b/content/docs/definitions/building/infirmary.md
new file mode 100644
index 0000000..8a08b69
--- /dev/null
+++ b/content/docs/definitions/building/infirmary.md
@@ -0,0 +1,47 @@
+---
+title: Building Spec - Infirmary
+linkTitle: Infirmary
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Infirmary is the first medical facility equipped to provide more adequate medical care for settlers. It houses one workbench with equipment for medical research.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Medical|
+|Construction:|PRE_FABRICATED|
+|Size:|7.0 x 9.0 m|
+|Level:|0|
+|Maintenance Period:|150|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Infirmary](/docs/definitions/construction/infirmary)|
+
+## Functions
+
+- LIFE_SUPPORT
+- MEDICAL_CARE
+- POWER_GENERATION
+- POWER_STORAGE
+- RESEARCH
+- ROBOTIC_STATION
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/inflatable-greenhouse.md b/content/docs/definitions/building/inflatable-greenhouse.md
new file mode 100644
index 0000000..8eaa3a5
--- /dev/null
+++ b/content/docs/definitions/building/inflatable-greenhouse.md
@@ -0,0 +1,49 @@
+---
+title: Building Spec - Inflatable Greenhouse
+linkTitle: Inflatable Greenhouse
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Inflatable Greenhouse is a flexible air bladder made with interwoven layers of Polyurethane and polyester materials to retain an atmosphere adequate for growing crops as the food source for the settlers. It is UV-resistant, bullet-resistant and has an aluminized Mylar reflector curtain. It houses one workbench with instruments for botany research.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Farming|
+|Construction:|INFLATABLE|
+|Size:|6.0 x 9.0 m|
+|Level:|0|
+|Maintenance Period:|150|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Inflatable Greenhouse](/docs/definitions/construction/inflatable-greenhouse)|
+
+## Functions
+
+- FARMING
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- RECREATION
+- RESEARCH
+- RESOURCE_PROCESSING
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/inground-greenhouse.md b/content/docs/definitions/building/inground-greenhouse.md
new file mode 100644
index 0000000..82d3879
--- /dev/null
+++ b/content/docs/definitions/building/inground-greenhouse.md
@@ -0,0 +1,45 @@
+---
+title: Building Spec - Inground Greenhouse
+linkTitle: Inground Greenhouse
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Inground Greenhouse is a semi underground structure with a vaulted fiber glass roof which is less susceptible to meteor damage. It grows crops as food for the settlement.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Farming|
+|Construction:|CONCRETE|
+|Size:|5.0 x 10.0 m|
+|Level:|-1|
+|Maintenance Period:|150|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Inground Greenhouse](/docs/definitions/construction/inground-greenhouse)|
+
+## Functions
+
+- FARMING
+- LIFE_SUPPORT
+- POWER_STORAGE
+- RECREATION
+- RESEARCH
+- RESOURCE_PROCESSING
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/kilopower-reactor.md b/content/docs/definitions/building/kilopower-reactor.md
new file mode 100644
index 0000000..0f848c2
--- /dev/null
+++ b/content/docs/definitions/building/kilopower-reactor.md
@@ -0,0 +1,35 @@
+---
+title: Building Spec - Kilopower Reactor
+linkTitle: Kilopower Reactor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Kilopower Reactor provides ~20 kWe. It contains two 10 kWe modules, each with a reactor core using depleted uranium as fuel source. It uses stirling converters for generating power via mechanical movement of pistons inside as passive sodium heat pipes transport thermal energy between the core containment can (hot end) and the vacuum chambers (cold end). A circular radiator panel is mounted on top for heat dissipation. It includes a 10 kWh backup power battery.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Power Supply|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x 2.0 m|
+|Level:|0|
+|Maintenance Period:|150|
+|Power Demands:|0.25 kW|
+|Offline Power Demands:|0.025 kW|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+
+
+## Power Sources
+
+- Fission Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/laboratory.md b/content/docs/definitions/building/laboratory.md
new file mode 100644
index 0000000..9478aa0
--- /dev/null
+++ b/content/docs/definitions/building/laboratory.md
@@ -0,0 +1,48 @@
+---
+title: Building Spec - Laboratory
+linkTitle: Laboratory
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Laboratory is a modest facility furnished with workbench, instruments, COMPUTINGs and tablets and peer collaboration communication suites of equipment that enables making scientific inquiries on the frontier of Mars.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Laboratory|
+|Construction:|PRE_FABRICATED|
+|Size:|7.0 x 9.0 m|
+|Level:|0|
+|Maintenance Period:|200|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Laboratory](/docs/definitions/construction/laboratory)|
+
+## Functions
+
+- COMPUTATION
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- RESEARCH
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/lander-hab.md b/content/docs/definitions/building/lander-hab.md
new file mode 100644
index 0000000..6ab7683
--- /dev/null
+++ b/content/docs/definitions/building/lander-hab.md
@@ -0,0 +1,62 @@
+---
+title: Building Spec - Lander Hab
+linkTitle: Lander Hab
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Lander Hab is a jack-of-all-trades building that houses many basic but critical functions to jump start a settlement. It's commonly used as a main hub.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Command|
+|Construction:|PRE_FABRICATED|
+|Size:|9.0 x 9.0 m|
+|Level:|1|
+|Maintenance Period:|250|
+|Power Demands:|3.0 kW|
+|Offline Power Demands:|0.3 kW|
+|Construction:|[Lander Hab](/docs/definitions/construction/lander-hab)|
+
+## Functions
+
+- ADMINISTRATION
+- COMMUNICATION
+- COMPUTATION
+- COOKING
+- DINING
+- EXERCISE
+- FOOD_PRODUCTION
+- LIFE_SUPPORT
+- LIVING_ACCOMMODATION
+- MANAGEMENT
+- MANUFACTURE
+- MEDICAL_CARE
+- POWER_GENERATION
+- POWER_STORAGE
+- PREPARING_DESSERT
+- RECREATION
+- RESEARCH
+- RESOURCE_PROCESSING
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+- WASTE_PROCESSING
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/large-areothermal-well.md b/content/docs/definitions/building/large-areothermal-well.md
new file mode 100644
index 0000000..d5532ef
--- /dev/null
+++ b/content/docs/definitions/building/large-areothermal-well.md
@@ -0,0 +1,36 @@
+---
+title: Building Spec - Large Areothermal Well
+linkTitle: Large Areothermal Well
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Large Areothermal Well is an geothermal energy production system that features more advance geothermal flow path for ground loop design for capturing heat and creating electricity.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Power Supply|
+|Construction:|PRE_FABRICATED|
+|Size:|10.0 x 15.0 m|
+|Level:|0|
+|Maintenance Period:|200|
+|Power Demands:|0.1 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Large Areothermal Well](/docs/definitions/construction/large-areothermal-well)|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+
+
+## Power Sources
+
+- Areothermal Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/large-greenhouse.md b/content/docs/definitions/building/large-greenhouse.md
new file mode 100644
index 0000000..28e8db4
--- /dev/null
+++ b/content/docs/definitions/building/large-greenhouse.md
@@ -0,0 +1,50 @@
+---
+title: Building Spec - Large Greenhouse
+linkTitle: Large Greenhouse
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Large Greenhouse is made of stronger structural and cladding material such as coextruded laminate of polyamide and polyolefin interwoven around an aluminum frame to give rise to a scaffolded retention bladder. It is furnished with a lab with instruments. It has a spacious interiorfor high volume crop cultivation and has a high resource storage capability.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Farming|
+|Construction:|SEMI_ENGINEERED|
+|Size:|12.0 x 18.0 m|
+|Level:|0|
+|Maintenance Period:|250|
+|Power Demands:|4.0 kW|
+|Offline Power Demands:|0.4 kW|
+|Construction:|[Large Greenhouse](/docs/definitions/construction/large-greenhouse)|
+
+## Functions
+
+- FARMING
+- FISHERY
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- RECREATION
+- RESEARCH
+- RESOURCE_PROCESSING
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/large-sabatier-processor.md b/content/docs/definitions/building/large-sabatier-processor.md
new file mode 100644
index 0000000..c61da29
--- /dev/null
+++ b/content/docs/definitions/building/large-sabatier-processor.md
@@ -0,0 +1,33 @@
+---
+title: Building Spec - Large Sabatier Processor
+linkTitle: Large Sabatier Processor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+This building houses a number of high capacity sabatier methanation modules for processing hydrogen and carbon dioxide at elevated temperatures and pressures in the presence of a catalyst to produce methane and water.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Processing|
+|Construction:|PRE_FABRICATED|
+|Size:|5.0 x 5.0 m|
+|Level:|0|
+|Maintenance Period:|250|
+|Power Demands:|0.5 kW|
+|Offline Power Demands:|0.05 kW|
+|Construction:|[Large Sabatier Processor](/docs/definitions/construction/large-sabatier-processor)|
+
+## Functions
+
+- RESOURCE_PROCESSING
+- STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/lime-storage.md b/content/docs/definitions/building/lime-storage.md
new file mode 100644
index 0000000..a4248da
--- /dev/null
+++ b/content/docs/definitions/building/lime-storage.md
@@ -0,0 +1,32 @@
+---
+title: Building Spec - Lime Storage
+linkTitle: Lime Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Lime Storage Bin is a small brick bin for storing lime for light contruction project.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x 3.0 m|
+|Level:|0|
+|Maintenance Period:|50|
+|Power Demands:|0.0 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Lime Storage](/docs/definitions/construction/lime-storage)|
+
+## Functions
+
+- STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/loading-dock-garage.md b/content/docs/definitions/building/loading-dock-garage.md
new file mode 100644
index 0000000..fcc3bb9
--- /dev/null
+++ b/content/docs/definitions/building/loading-dock-garage.md
@@ -0,0 +1,47 @@
+---
+title: Building Spec - Loading Dock Garage
+linkTitle: Loading Dock Garage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Loading Dock Garage is an enclosed maintenance facility featuring a brick loading dock for easy access. It hosts equipment for building, repairing and modifying rovers and vehicles.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Vehicle|
+|Construction:|CONCRETE|
+|Size:|15.0 x 18.0 m|
+|Level:|-1|
+|Maintenance Period:|300|
+|Power Demands:|3.0 kW|
+|Offline Power Demands:|0.3 kW|
+|Construction:|[Loading Dock Garage](/docs/definitions/construction/loading-dock-garage)|
+
+## Functions
+
+- VEHICLE_MAINTENANCE
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/lounge.md b/content/docs/definitions/building/lounge.md
new file mode 100644
index 0000000..8c62abd
--- /dev/null
+++ b/content/docs/definitions/building/lounge.md
@@ -0,0 +1,52 @@
+---
+title: Building Spec - Lounge
+linkTitle: Lounge
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Lounge is a rest and relaxation living space furnished with dining tables and chairs for serving almost three dozens of people at a time. It has a well furnished kitchen supporting a lot of food processing activities and plenty of resource storage space. It also has a small gym room with exercise equipment.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Living Space|
+|Construction:|PRE_FABRICATED|
+|Size:|7.0 x 9.0 m|
+|Level:|0|
+|Maintenance Period:|150|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Lounge](/docs/definitions/construction/lounge)|
+
+## Functions
+
+- COOKING
+- DINING
+- EXERCISE
+- FOOD_PRODUCTION
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- PREPARING_DESSERT
+- RECREATION
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/machinery-hab.md b/content/docs/definitions/building/machinery-hab.md
new file mode 100644
index 0000000..7a9373b
--- /dev/null
+++ b/content/docs/definitions/building/machinery-hab.md
@@ -0,0 +1,48 @@
+---
+title: Building Spec - Machinery Hab
+linkTitle: Machinery Hab
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Machinery Hab is a Lander Hab refitted manufacturing workshop for making items and synthesizing resource. It provides storage space for housing commonly used resources.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Engineering|
+|Construction:|PRE_FABRICATED|
+|Size:|9.0 x 9.0 m|
+|Level:|1|
+|Maintenance Period:|250|
+|Power Demands:|3.0 kW|
+|Offline Power Demands:|0.3 kW|
+|Construction:|[Machinery Hab](/docs/definitions/construction/machinery-hab)|
+
+## Functions
+
+- COMPUTATION
+- LIFE_SUPPORT
+- MANUFACTURE
+- POWER_GENERATION
+- POWER_STORAGE
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/manufacturing-shed.md b/content/docs/definitions/building/manufacturing-shed.md
new file mode 100644
index 0000000..e04428d
--- /dev/null
+++ b/content/docs/definitions/building/manufacturing-shed.md
@@ -0,0 +1,42 @@
+---
+title: Building Spec - Manufacturing Shed
+linkTitle: Manufacturing Shed
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Manufacturing Shed is a small brick manufacturing building for forming, cutting, coating and glazing bricks for construction projects.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Engineering|
+|Construction:|PRE_FABRICATED|
+|Size:|5.0 x 5.0 m|
+|Level:|-1|
+|Maintenance Period:|200|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Manufacturing Shed](/docs/definitions/construction/manufacturing-shed)|
+
+## Functions
+
+- COMPUTATION
+- LIFE_SUPPORT
+- MANUFACTURE
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/md1-nuclear-reactor.md b/content/docs/definitions/building/md1-nuclear-reactor.md
new file mode 100644
index 0000000..7d1617e
--- /dev/null
+++ b/content/docs/definitions/building/md1-nuclear-reactor.md
@@ -0,0 +1,35 @@
+---
+title: Building Spec - MD1 Nuclear Reactor
+linkTitle: MD1 Nuclear Reactor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The MD1 Nuclear Reactor at 40kW is the first compact fission power plant commissioned for use off-world. At 83.3% load capacity, it provides a consistent power supply of ~40 kWe.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Power Supply|
+|Construction:|PRE_FABRICATED|
+|Size:|4.0 x 6.0 m|
+|Level:|0|
+|Maintenance Period:|200|
+|Power Demands:|0.25 kW|
+|Offline Power Demands:|0.025 kW|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+
+
+## Power Sources
+
+- Fission Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/md4-nuclear-reactor.md b/content/docs/definitions/building/md4-nuclear-reactor.md
new file mode 100644
index 0000000..18e5383
--- /dev/null
+++ b/content/docs/definitions/building/md4-nuclear-reactor.md
@@ -0,0 +1,35 @@
+---
+title: Building Spec - MD4 Nuclear Reactor
+linkTitle: MD4 Nuclear Reactor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The MD4 Nuclear Reactor is a robust, flight-ready nuclear fission power plant. At 83.3% load capacity, it provides a consistent power supply of ~100 kWe. It also includes a 80 kWh backup battery.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Power Supply|
+|Construction:|PRE_FABRICATED|
+|Size:|10.0 x 15.0 m|
+|Level:|0|
+|Maintenance Period:|500|
+|Power Demands:|1.0 kW|
+|Offline Power Demands:|0.1 kW|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+
+
+## Power Sources
+
+- Fission Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/medical-hab.md b/content/docs/definitions/building/medical-hab.md
new file mode 100644
index 0000000..c1504d5
--- /dev/null
+++ b/content/docs/definitions/building/medical-hab.md
@@ -0,0 +1,49 @@
+---
+title: Building Spec - Medical Hab
+linkTitle: Medical Hab
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Medical Hab is a Lander Hab refitted medical facility for providing medical basic care. It also has medical research workbench and uses solarpanels as backup power source.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Medical|
+|Construction:|PRE_FABRICATED|
+|Size:|9.0 x 9.0 m|
+|Level:|1|
+|Maintenance Period:|100|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Medical Hab](/docs/definitions/construction/medical-hab)|
+
+## Functions
+
+- EXERCISE
+- LIFE_SUPPORT
+- MEDICAL_CARE
+- POWER_GENERATION
+- POWER_STORAGE
+- RESEARCH
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/medium-battery-array.md b/content/docs/definitions/building/medium-battery-array.md
new file mode 100644
index 0000000..a0a86dd
--- /dev/null
+++ b/content/docs/definitions/building/medium-battery-array.md
@@ -0,0 +1,32 @@
+---
+title: Building Spec - Medium Battery Array
+linkTitle: Medium Battery Array
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Medium Battery Array showcase an advanced battery system that stored excess power during non-peak hours and released power during peak power usage.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Power Supply|
+|Construction:|PRE_FABRICATED|
+|Size:|5.0 x 10.0 m|
+|Level:|0|
+|Maintenance Period:|250|
+|Power Demands:|0.5 kW|
+|Offline Power Demands:|0.05 kW|
+|Construction:|[Medium Battery Array](/docs/definitions/construction/medium-battery-array)|
+
+## Functions
+
+- POWER_STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/metal-storage.md b/content/docs/definitions/building/metal-storage.md
new file mode 100644
index 0000000..285bef1
--- /dev/null
+++ b/content/docs/definitions/building/metal-storage.md
@@ -0,0 +1,32 @@
+---
+title: Building Spec - Metal Storage
+linkTitle: Metal Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Metal Storage Bin is a small brick bin for storing metallic elements for industrial uses.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x 3.0 m|
+|Level:|0|
+|Maintenance Period:|50|
+|Power Demands:|0.0 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Metal Storage](/docs/definitions/construction/metal-storage)|
+
+## Functions
+
+- STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/methane-power-generator.md b/content/docs/definitions/building/methane-power-generator.md
new file mode 100644
index 0000000..3dacf8c
--- /dev/null
+++ b/content/docs/definitions/building/methane-power-generator.md
@@ -0,0 +1,36 @@
+---
+title: Building Spec - Methane Power Generator
+linkTitle: Methane Power Generator
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+This 30 kW Methane Power generator uses methane gas for generating electricity. Note : every mole of methane (16 g) releases 810 KJ of energy if burning with 2 moles of oxygen (64 g) : CH4(g) + 2O2(g) -> CO2(g) + 2 H2O(g), deltaH = -890 kJ Thus, 890kW requires 16 g/s. Assume electric efficiency at 100%, 1 kW_e requires 1.5960 g/millisol or 1.596 kg/sol
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Power Supply|
+|Construction:|PRE_FABRICATED|
+|Size:|5.0 x 5.0 m|
+|Level:|0|
+|Maintenance Period:|500|
+|Power Demands:|0.1 kW|
+|Offline Power Demands:|0.01 kW|
+|Construction:|[Methane Power Generator](/docs/definitions/construction/methane-power-generator)|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+
+
+## Power Sources
+
+- Fuel Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/mining-lab.md b/content/docs/definitions/building/mining-lab.md
new file mode 100644
index 0000000..e5e8bf0
--- /dev/null
+++ b/content/docs/definitions/building/mining-lab.md
@@ -0,0 +1,47 @@
+---
+title: Building Spec - Mining Lab
+linkTitle: Mining Lab
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Mining Lab is a small brick laboratory furnished for mining-related scientific instruments and research workbench.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Laboratory|
+|Construction:|CONCRETE|
+|Size:|5.0 x 5.0 m|
+|Level:|-1|
+|Maintenance Period:|150|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Mining Lab](/docs/definitions/construction/mining-lab)|
+
+## Functions
+
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- RESEARCH
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/ore-storage.md b/content/docs/definitions/building/ore-storage.md
new file mode 100644
index 0000000..8d162e5
--- /dev/null
+++ b/content/docs/definitions/building/ore-storage.md
@@ -0,0 +1,32 @@
+---
+title: Building Spec - Ore Storage
+linkTitle: Ore Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Ore Storage Bin is a small brick bin for storing carbon for light contruction project.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x 3.0 m|
+|Level:|0|
+|Maintenance Period:|50|
+|Power Demands:|0.0 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Ore Storage](/docs/definitions/construction/ore-storage)|
+
+## Functions
+
+- STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/outpost-hub.md b/content/docs/definitions/building/outpost-hub.md
new file mode 100644
index 0000000..07e5e79
--- /dev/null
+++ b/content/docs/definitions/building/outpost-hub.md
@@ -0,0 +1,60 @@
+---
+title: Building Spec - Outpost Hub
+linkTitle: Outpost Hub
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Outpost Hub is a vaulted brick building that acts as the main hub of a trading or mining outpost. Like its cousin Lander Hab, it hosts a suite of functions to its inhabitants.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Command|
+|Construction:|CONCRETE|
+|Size:|10.0 x 10.0 m|
+|Level:|-1|
+|Maintenance Period:|250|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Outpost Hub](/docs/definitions/construction/outpost-hub)|
+
+## Functions
+
+- ADMINISTRATION
+- COMMUNICATION
+- COMPUTATION
+- COOKING
+- DINING
+- FOOD_PRODUCTION
+- LIFE_SUPPORT
+- MANAGEMENT
+- MANUFACTURE
+- MEDICAL_CARE
+- POWER_GENERATION
+- POWER_STORAGE
+- PREPARING_DESSERT
+- RECREATION
+- RESEARCH
+- RESOURCE_PROCESSING
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+- WASTE_PROCESSING
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/regolith-storage.md b/content/docs/definitions/building/regolith-storage.md
new file mode 100644
index 0000000..509b907
--- /dev/null
+++ b/content/docs/definitions/building/regolith-storage.md
@@ -0,0 +1,32 @@
+---
+title: Building Spec - Regolith Storage
+linkTitle: Regolith Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Regolith Storage is a small brick bin for storing Martian regolith for light contruction project.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x 3.0 m|
+|Level:|0|
+|Maintenance Period:|50|
+|Power Demands:|0.0 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Regolith Storage](/docs/definitions/construction/regolith-storage)|
+
+## Functions
+
+- STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/research-hab.md b/content/docs/definitions/building/research-hab.md
new file mode 100644
index 0000000..e9cf9f2
--- /dev/null
+++ b/content/docs/definitions/building/research-hab.md
@@ -0,0 +1,48 @@
+---
+title: Building Spec - Research Hab
+linkTitle: Research Hab
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Research Hab is a Lander Hab refitted laboratory building for scientific research. It can be custom-tailored with COMPUTING systems forup to four research subjects and has built-in solar panels.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Laboratory|
+|Construction:|PRE_FABRICATED|
+|Size:|9.0 x 9.0 m|
+|Level:|1|
+|Maintenance Period:|150|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Research Hab](/docs/definitions/construction/research-hab)|
+
+## Functions
+
+- COMPUTATION
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- RESEARCH
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/residential-hab.md b/content/docs/definitions/building/residential-hab.md
new file mode 100644
index 0000000..0c490d8
--- /dev/null
+++ b/content/docs/definitions/building/residential-hab.md
@@ -0,0 +1,47 @@
+---
+title: Building Spec - Residential Hab
+linkTitle: Residential Hab
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Residential Hab is a Lander Hab refitted residential quarters for living accommodation of up to 8 persons. It uses solar panels as backup power source.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Living Space|
+|Construction:|PRE_FABRICATED|
+|Size:|9.0 x 9.0 m|
+|Level:|1|
+|Maintenance Period:|150|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Residential Hab](/docs/definitions/construction/residential-hab)|
+
+## Functions
+
+- LIFE_SUPPORT
+- LIVING_ACCOMMODATION
+- POWER_GENERATION
+- POWER_STORAGE
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/residential-quarters.md b/content/docs/definitions/building/residential-quarters.md
new file mode 100644
index 0000000..de30b99
--- /dev/null
+++ b/content/docs/definitions/building/residential-quarters.md
@@ -0,0 +1,46 @@
+---
+title: Building Spec - Residential Quarters
+linkTitle: Residential Quarters
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Residential Quarters is the first full living accommodation building that is configured to house as many as twelve beds. It also provides storage space for critical rate resources. It is furnished with a solar panel rooftop.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Living Space|
+|Construction:|PRE_FABRICATED|
+|Size:|7.0 x 9.0 m|
+|Level:|0|
+|Maintenance Period:|150|
+|Power Demands:|2.0 kW|
+|Offline Power Demands:|0.2 kW|
+|Construction:|[Residential Quarters](/docs/definitions/construction/residential-quarters)|
+
+## Functions
+
+- LIFE_SUPPORT
+- LIVING_ACCOMMODATION
+- POWER_GENERATION
+- POWER_STORAGE
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/sand-storage.md b/content/docs/definitions/building/sand-storage.md
new file mode 100644
index 0000000..487bdda
--- /dev/null
+++ b/content/docs/definitions/building/sand-storage.md
@@ -0,0 +1,32 @@
+---
+title: Building Spec - Sand Storage
+linkTitle: Sand Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Sand Storage Bin is a small brick bin for storing sand, silicon, glass and silica for industrial uses.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|PRE_FABRICATED|
+|Size:|2.0 x 3.0 m|
+|Level:|0|
+|Maintenance Period:|50|
+|Power Demands:|0.0 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Sand Storage](/docs/definitions/construction/sand-storage)|
+
+## Functions
+
+- STORAGE
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/server-farm.md b/content/docs/definitions/building/server-farm.md
new file mode 100644
index 0000000..4dc925b
--- /dev/null
+++ b/content/docs/definitions/building/server-farm.md
@@ -0,0 +1,49 @@
+---
+title: Building Spec - Server Farm
+linkTitle: Server Farm
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Server Farm is a computer facility providing mainframe resources and networking nodes for colony-width computing needs.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Laboratory|
+|Construction:|PRE_FABRICATED|
+|Size:|9.0 x 7.0 m|
+|Level:|0|
+|Maintenance Period:|150|
+|Power Demands:|5.0 kW|
+|Offline Power Demands:|0.5 kW|
+|Construction:|[Server Farm](/docs/definitions/construction/server-farm)|
+
+## Functions
+
+- ADMINISTRATION
+- COMMUNICATION
+- COMPUTATION
+- LIFE_SUPPORT
+- MANAGEMENT
+- POWER_GENERATION
+- POWER_STORAGE
+- ROBOTIC_STATION
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/small-areothermal-well.md b/content/docs/definitions/building/small-areothermal-well.md
new file mode 100644
index 0000000..5fe9b8a
--- /dev/null
+++ b/content/docs/definitions/building/small-areothermal-well.md
@@ -0,0 +1,36 @@
+---
+title: Building Spec - Small Areothermal Well
+linkTitle: Small Areothermal Well
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Small Areothermal Well is an geothermal energy production system that captures the trapped underground heat for the power grid.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Power Supply|
+|Construction:|PRE_FABRICATED|
+|Size:|5.0 x 10.0 m|
+|Level:|0|
+|Maintenance Period:|150|
+|Power Demands:|0.05 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Small Areothermal Well](/docs/definitions/construction/small-areothermal-well)|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+
+
+## Power Sources
+
+- Areothermal Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/solar-photovoltaic-array.md b/content/docs/definitions/building/solar-photovoltaic-array.md
new file mode 100644
index 0000000..d664178
--- /dev/null
+++ b/content/docs/definitions/building/solar-photovoltaic-array.md
@@ -0,0 +1,36 @@
+---
+title: Building Spec - Solar Photovoltaic Array
+linkTitle: Solar Photovoltaic Array
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Solar Photovoltaic Array is an array of steerable photovoltaic panels that generates electricity from Martian sunlight. It is an essential part of a modular distributed renewable energy generation system for the power grid.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Power Supply|
+|Construction:|PRE_FABRICATED|
+|Size:|5.0 x 10.0 m|
+|Level:|0|
+|Maintenance Period:|300|
+|Power Demands:|0.1 kW|
+|Offline Power Demands:|0.05 kW|
+|Construction:|[Solar Photovoltaic Array](/docs/definitions/construction/solar-photovoltaic-array)|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+
+
+## Power Sources
+
+- Solar Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/solar-thermal-collector.md b/content/docs/definitions/building/solar-thermal-collector.md
new file mode 100644
index 0000000..b0a3705
--- /dev/null
+++ b/content/docs/definitions/building/solar-thermal-collector.md
@@ -0,0 +1,36 @@
+---
+title: Building Spec - Solar Thermal Collector
+linkTitle: Solar Thermal Collector
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Solar Thermal Array is an array of steerable parabolic reflectors that concentrates sunlight for heating up molten materials that move mechanical turbines generating power.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Power Supply|
+|Construction:|PRE_FABRICATED|
+|Size:|5.0 x 10.0 m|
+|Level:|0|
+|Maintenance Period:|350|
+|Power Demands:|0.1 kW|
+|Offline Power Demands:|0.05 kW|
+|Construction:|[Solar Thermal Collector](/docs/definitions/construction/solar-thermal-collector)|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+
+
+## Power Sources
+
+- Solar Thermal Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/storage-hab.md b/content/docs/definitions/building/storage-hab.md
new file mode 100644
index 0000000..ca1d1f0
--- /dev/null
+++ b/content/docs/definitions/building/storage-hab.md
@@ -0,0 +1,46 @@
+---
+title: Building Spec - Storage Hab
+linkTitle: Storage Hab
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Storage Hab is a Lander Hab refitted storage building with ample storage space. It has built-in PV panels as backup power source.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|PRE_FABRICATED|
+|Size:|9.0 x 9.0 m|
+|Level:|1|
+|Maintenance Period:|50|
+|Power Demands:|1.0 kW|
+|Offline Power Demands:|0.1 kW|
+|Construction:|[Storage Hab](/docs/definitions/construction/storage-hab)|
+
+## Functions
+
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/storage-shed.md b/content/docs/definitions/building/storage-shed.md
new file mode 100644
index 0000000..1507db6
--- /dev/null
+++ b/content/docs/definitions/building/storage-shed.md
@@ -0,0 +1,44 @@
+---
+title: Building Spec - Storage Shed
+linkTitle: Storage Shed
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Storage Shed is a small brick building for storing resources for the settlement.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Storage|
+|Construction:|CONCRETE|
+|Size:|5.0 x 5.0 m|
+|Level:|-1|
+|Maintenance Period:|50|
+|Power Demands:|0.3 kW|
+|Offline Power Demands:|0.03 kW|
+|Construction:|[Storage Shed](/docs/definitions/construction/storage-shed)|
+
+## Functions
+
+- LIFE_SUPPORT
+- POWER_GENERATION
+- POWER_STORAGE
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/syngas-plant.md b/content/docs/definitions/building/syngas-plant.md
new file mode 100644
index 0000000..b3e0ff7
--- /dev/null
+++ b/content/docs/definitions/building/syngas-plant.md
@@ -0,0 +1,37 @@
+---
+title: Building Spec - Syngas Plant
+linkTitle: Syngas Plant
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The synthesis gas plant is defined as a gas with H2 and CO as the main components of fuel. Syngas plants produces chemicals and fuel such as methanol and ammonia, etc.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Processing|
+|Construction:|PRE_FABRICATED|
+|Size:|5.0 x 5.0 m|
+|Level:|0|
+|Maintenance Period:|150|
+|Power Demands:|0.1 kW|
+|Offline Power Demands:|0.01 kW|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+- RESOURCE_PROCESSING
+- STORAGE
+
+
+## Power Sources
+
+- Solar Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/topaz-2a-reactor.md b/content/docs/definitions/building/topaz-2a-reactor.md
new file mode 100644
index 0000000..10543d6
--- /dev/null
+++ b/content/docs/definitions/building/topaz-2a-reactor.md
@@ -0,0 +1,35 @@
+---
+title: Building Spec - TOPAZ-2A Reactor
+linkTitle: TOPAZ-2A Reactor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The TOPAZ-2A Reactor is a minor improvement of the TOPAZ-II reactor system, which was developed by Soviet Union in 1987 for use by Cosmos 1818 and Cosmos 1867 satellites in space. Based on thermionic energy conversion with highly enriched uranium oxide pellet as fuel, it was cooled by liquid-metal consisting of sodium and potassium. It has 37 single-cell TFEs, with a much improved 10.5% thermal-to-electrical conversion efficiency and 83.3% load capacity to provide 10.03 kWe.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Power Supply|
+|Construction:|PRE_FABRICATED|
+|Size:|4.0 x 6.0 m|
+|Level:|0|
+|Maintenance Period:|200|
+|Power Demands:|1.0 kW|
+|Offline Power Demands:|0.1 kW|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+
+
+## Power Sources
+
+- Thermionic Nuclear Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/topaz-3-reactor.md b/content/docs/definitions/building/topaz-3-reactor.md
new file mode 100644
index 0000000..636c537
--- /dev/null
+++ b/content/docs/definitions/building/topaz-3-reactor.md
@@ -0,0 +1,35 @@
+---
+title: Building Spec - TOPAZ-3 Reactor
+linkTitle: TOPAZ-3 Reactor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The TOPAZ-3 Reactor doubles the number of TFEs cells to 74 and has higher thermal output of 4.7kW per cell. At ~10.37% conversion efficiency, it provides ~30 kWe.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Power Supply|
+|Construction:|PRE_FABRICATED|
+|Size:|4.0 x 6.0 m|
+|Level:|0|
+|Maintenance Period:|300|
+|Power Demands:|1.0 kW|
+|Offline Power Demands:|0.1 kW|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+
+
+## Power Sources
+
+- Thermionic Nuclear Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/tunnel.md b/content/docs/definitions/building/tunnel.md
new file mode 100644
index 0000000..8939fb6
--- /dev/null
+++ b/content/docs/definitions/building/tunnel.md
@@ -0,0 +1,39 @@
+---
+title: Building Spec - Tunnel
+linkTitle: Tunnel
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Tunnel is an underground pressurized access tube connecting two inhabitable buildings.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Connection|
+|Construction:|CONCRETE|
+|Size:|3.0 x -1.0 m|
+|Level:|-1|
+|Maintenance Period:|20|
+|Power Demands:|0.1 kW|
+|Offline Power Demands:|0.0 kW|
+|Construction:|[Tunnel](/docs/definitions/construction/tunnel)|
+
+## Functions
+
+- CONNECTION
+- LIFE_SUPPORT
+- ROBOTIC_STATION
+- THERMAL_GENERATION
+
+
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/wind-turbine.md b/content/docs/definitions/building/wind-turbine.md
new file mode 100644
index 0000000..44bf158
--- /dev/null
+++ b/content/docs/definitions/building/wind-turbine.md
@@ -0,0 +1,36 @@
+---
+title: Building Spec - Wind Turbine
+linkTitle: Wind Turbine
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+This Vertical Axis Wind Turbine (VAWT) is constructed with strong, lightweight material suited for Mars low gravity and low density wind load. Each VAWT provides up to a total of 18 kW of power at the wind speed of ~14 m/s
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Power Supply|
+|Construction:|PRE_FABRICATED|
+|Size:|5.0 x 5.0 m|
+|Level:|0|
+|Maintenance Period:|400|
+|Power Demands:|0.1 kW|
+|Offline Power Demands:|0.05 kW|
+|Construction:|[Wind Turbine](/docs/definitions/construction/wind-turbine)|
+
+## Functions
+
+- POWER_GENERATION
+- POWER_STORAGE
+
+
+## Power Sources
+
+- Wind Power Source
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/building/workshop.md b/content/docs/definitions/building/workshop.md
new file mode 100644
index 0000000..5a8d920
--- /dev/null
+++ b/content/docs/definitions/building/workshop.md
@@ -0,0 +1,48 @@
+---
+title: Building Spec - Workshop
+linkTitle: Workshop
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Workshop is practically a machine shop furnished with 3-D printers and additive manufacturing machines for processing resources, synthesizing parts and items for use.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Category:|Engineering|
+|Construction:|PRE_FABRICATED|
+|Size:|7.0 x 9.0 m|
+|Level:|0|
+|Maintenance Period:|200|
+|Power Demands:|3.0 kW|
+|Offline Power Demands:|0.3 kW|
+|Construction:|[Workshop](/docs/definitions/construction/workshop)|
+
+## Functions
+
+- COMPUTATION
+- LIFE_SUPPORT
+- MANUFACTURE
+- POWER_GENERATION
+- POWER_STORAGE
+- ROBOTIC_STATION
+- STORAGE
+- THERMAL_GENERATION
+
+
+## Power Sources
+
+- Solar Power Source
+- Fuel Power Source
+
+## Heating Sources
+
+- Solar Heating
+- Electric Heating
+- Fuel Heating
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/_index.md b/content/docs/definitions/complaint/_index.md
new file mode 100644
index 0000000..5f842a6
--- /dev/null
+++ b/content/docs/definitions/complaint/_index.md
@@ -0,0 +1,75 @@
+---
+title: Complaint
+description: Health Complaints affecting Persons
+---
+
+
+
+
+{{< alert color="success" >}}These can be changed via the XML file _medical.xml_. See [XML Files](/docs/guide/xml-files/){{< /alert >}}
+
+
+Grouped by Seriousness.
+
+### 1 to 10 {#A-1-to-10}
+
+- [Cold](../complaint/cold)
+- [Heartburn](../complaint/heartburn)
+- [Pulled Muscle/Tendon](../complaint/pulled-muscle-tendon)
+
+### 11 to 20 {#A-11-to-20}
+
+- [Dehydration](../complaint/dehydration)
+- [Depression](../complaint/depression)
+- [Flu](../complaint/flu)
+- [Frostnip](../complaint/frostnip)
+- [Minor Burns](../complaint/minor-burns)
+
+### 21 to 30 {#A-21-to-30}
+
+- [Fever](../complaint/fever)
+- [Panic Attack](../complaint/panic-attack)
+- [Radiation Sickness](../complaint/radiation-sickness)
+
+### 31 to 40 {#A-31-to-40}
+
+- [Heat Stroke](../complaint/heat-stroke)
+- [Starvation](../complaint/starvation)
+
+### 41 to 50 {#A-41-to-50}
+
+- [Burns](../complaint/burns)
+- [Freezing](../complaint/freezing)
+- [Frostbite](../complaint/frostbite)
+- [Laceration](../complaint/laceration)
+
+### 51 to 60 {#A-51-to-60}
+
+- [Appendicitis](../complaint/appendicitis)
+- [Broken Bone](../complaint/broken-bone)
+- [Food Poisoning](../complaint/food-poisoning)
+- [High Fatigue Collapse](../complaint/high-fatigue-collapse)
+
+### 61 to 70 {#A-61-to-70}
+
+- [Decompression](../complaint/decompression)
+
+### 71 to 80 {#A-71-to-80}
+
+- [Hypoxemia](../complaint/hypoxemia)
+- [Suffocation](../complaint/suffocation)
+
+### 81 to 90 {#A-81-to-90}
+
+- [Heart Attack](../complaint/heart-attack)
+- [Meningitis](../complaint/meningitis)
+
+### 91 to 100 {#A-91-to-100}
+
+- [Gangrene](../complaint/gangrene)
+- [Major Burns](../complaint/major-burns)
+- [Ruptured Appendix](../complaint/ruptured-appendix)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/appendicitis.md b/content/docs/definitions/complaint/appendicitis.md
new file mode 100644
index 0000000..056beaa
--- /dev/null
+++ b/content/docs/definitions/complaint/appendicitis.md
@@ -0,0 +1,24 @@
+---
+title: Complaint - Appendicitis
+linkTitle: Appendicitis
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|60|
+|Performance Impact:|0.5|
+|Probability:|0.5|
+|Degrade Time:|7000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|13.0 to 15.0 sols|
+|Influenced by Effort:|NONE|
+|Treatment:|[Minor Operation](/docs/definitions/treatment/minor-operation)|
+|Next Phase:|[Ruptured Appendix](/docs/definitions/complaint/ruptured-appendix)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/broken-bone.md b/content/docs/definitions/complaint/broken-bone.md
new file mode 100644
index 0000000..e30d2cd
--- /dev/null
+++ b/content/docs/definitions/complaint/broken-bone.md
@@ -0,0 +1,24 @@
+---
+title: Complaint - Broken Bone
+linkTitle: Broken Bone
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|60|
+|Performance Impact:|0.2|
+|Probability:|5.0|
+|Degrade Time:|7000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|14.0 to 15.400000000000002 sols|
+|Influenced by Effort:|HIGH|
+|Treatment:|[Plaster Cast](/docs/definitions/treatment/plaster-cast)|
+|Next Phase:|[Gangrene](/docs/definitions/complaint/gangrene)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/burns.md b/content/docs/definitions/complaint/burns.md
new file mode 100644
index 0000000..7e59d3c
--- /dev/null
+++ b/content/docs/definitions/complaint/burns.md
@@ -0,0 +1,23 @@
+---
+title: Complaint - Burns
+linkTitle: Burns
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|50|
+|Performance Impact:|0.4|
+|Probability:|1.0|
+|Degrade Time:|5000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|20.0 to 22.0 sols|
+|Influenced by Effort:|LOW|
+|Treatment:|[Dressing](/docs/definitions/treatment/dressing)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/cold.md b/content/docs/definitions/complaint/cold.md
new file mode 100644
index 0000000..8addca6
--- /dev/null
+++ b/content/docs/definitions/complaint/cold.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Cold
+linkTitle: Cold
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|10|
+|Performance Impact:|0.9|
+|Probability:|5.0|
+|Degrade Time:|0.0 millisols|
+|Bed Rest:|false|
+|Recovery Period:|3.0 to 12.0 sols|
+|Influenced by Effort:|NONE|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/decompression.md b/content/docs/definitions/complaint/decompression.md
new file mode 100644
index 0000000..01abacc
--- /dev/null
+++ b/content/docs/definitions/complaint/decompression.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Decompression
+linkTitle: Decompression
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|70|
+|Performance Impact:|0.3|
+|Probability:|0.0|
+|Degrade Time:|1.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|0.5 to 0.55 sols|
+|Influenced by Effort:|NONE|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/dehydration.md b/content/docs/definitions/complaint/dehydration.md
new file mode 100644
index 0000000..3ceee87
--- /dev/null
+++ b/content/docs/definitions/complaint/dehydration.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Dehydration
+linkTitle: Dehydration
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|20|
+|Performance Impact:|0.8|
+|Probability:|0.0|
+|Degrade Time:|3000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|1.0 to 1.1 sols|
+|Influenced by Effort:|NONE|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/depression.md b/content/docs/definitions/complaint/depression.md
new file mode 100644
index 0000000..eb999b2
--- /dev/null
+++ b/content/docs/definitions/complaint/depression.md
@@ -0,0 +1,23 @@
+---
+title: Complaint - Depression
+linkTitle: Depression
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|20|
+|Performance Impact:|0.6|
+|Probability:|0.0|
+|Degrade Time:|3000.0 millisols|
+|Bed Rest:|false|
+|Recovery Period:|2.0 to 5.0 sols|
+|Influenced by Effort:|NONE|
+|Treatment:|[Anxiety Medication](/docs/definitions/treatment/anxiety-medication)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/fever.md b/content/docs/definitions/complaint/fever.md
new file mode 100644
index 0000000..3030685
--- /dev/null
+++ b/content/docs/definitions/complaint/fever.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Fever
+linkTitle: Fever
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|30|
+|Performance Impact:|0.7|
+|Probability:|5.0|
+|Degrade Time:|3000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|1.0 to 2.0 sols|
+|Influenced by Effort:|NONE|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/flu.md b/content/docs/definitions/complaint/flu.md
new file mode 100644
index 0000000..967ca4f
--- /dev/null
+++ b/content/docs/definitions/complaint/flu.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Flu
+linkTitle: Flu
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|20|
+|Performance Impact:|0.8|
+|Probability:|5.0|
+|Degrade Time:|0.0 millisols|
+|Bed Rest:|false|
+|Recovery Period:|3.0 to 5.0 sols|
+|Influenced by Effort:|NONE|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/food-poisoning.md b/content/docs/definitions/complaint/food-poisoning.md
new file mode 100644
index 0000000..4f66f95
--- /dev/null
+++ b/content/docs/definitions/complaint/food-poisoning.md
@@ -0,0 +1,23 @@
+---
+title: Complaint - Food Poisoning
+linkTitle: Food Poisoning
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|55|
+|Performance Impact:|0.4|
+|Probability:|2.0|
+|Degrade Time:|2000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|3.0 to 3.3000000000000003 sols|
+|Influenced by Effort:|NONE|
+|Treatment:|[Hospitalization](/docs/definitions/treatment/hospitalization)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/freezing.md b/content/docs/definitions/complaint/freezing.md
new file mode 100644
index 0000000..73e59df
--- /dev/null
+++ b/content/docs/definitions/complaint/freezing.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Freezing
+linkTitle: Freezing
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|50|
+|Performance Impact:|0.5|
+|Probability:|0.0|
+|Degrade Time:|250.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|1.0 to 1.1 sols|
+|Influenced by Effort:|NONE|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/frostbite.md b/content/docs/definitions/complaint/frostbite.md
new file mode 100644
index 0000000..ab3704c
--- /dev/null
+++ b/content/docs/definitions/complaint/frostbite.md
@@ -0,0 +1,24 @@
+---
+title: Complaint - Frostbite
+linkTitle: Frostbite
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|50|
+|Performance Impact:|0.6|
+|Probability:|0.0|
+|Degrade Time:|10000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|10.0 to 11.0 sols|
+|Influenced by Effort:|NONE|
+|Treatment:|[Dressing](/docs/definitions/treatment/dressing)|
+|Next Phase:|[Gangrene](/docs/definitions/complaint/gangrene)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/frostnip.md b/content/docs/definitions/complaint/frostnip.md
new file mode 100644
index 0000000..c69003f
--- /dev/null
+++ b/content/docs/definitions/complaint/frostnip.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Frostnip
+linkTitle: Frostnip
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|20|
+|Performance Impact:|0.8|
+|Probability:|0.0|
+|Degrade Time:|0.0 millisols|
+|Bed Rest:|false|
+|Recovery Period:|1.0 to 1.1 sols|
+|Influenced by Effort:|NONE|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/gangrene.md b/content/docs/definitions/complaint/gangrene.md
new file mode 100644
index 0000000..27351bb
--- /dev/null
+++ b/content/docs/definitions/complaint/gangrene.md
@@ -0,0 +1,23 @@
+---
+title: Complaint - Gangrene
+linkTitle: Gangrene
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|100|
+|Performance Impact:|0.4|
+|Probability:|0.0|
+|Degrade Time:|7000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|15.0 to 16.5 sols|
+|Influenced by Effort:|NONE|
+|Treatment:|[Antibiotics](/docs/definitions/treatment/antibiotics)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/heart-attack.md b/content/docs/definitions/complaint/heart-attack.md
new file mode 100644
index 0000000..36ac443
--- /dev/null
+++ b/content/docs/definitions/complaint/heart-attack.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Heart Attack
+linkTitle: Heart Attack
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|90|
+|Performance Impact:|0.01|
+|Probability:|0.5|
+|Degrade Time:|250.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|7.0 to 7.700000000000001 sols|
+|Influenced by Effort:|NONE|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/heartburn.md b/content/docs/definitions/complaint/heartburn.md
new file mode 100644
index 0000000..f85c975
--- /dev/null
+++ b/content/docs/definitions/complaint/heartburn.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Heartburn
+linkTitle: Heartburn
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|10|
+|Performance Impact:|0.9|
+|Probability:|5.0|
+|Degrade Time:|3000.0 millisols|
+|Bed Rest:|false|
+|Recovery Period:|0.3 to 0.7 sols|
+|Influenced by Effort:|NONE|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/heat-stroke.md b/content/docs/definitions/complaint/heat-stroke.md
new file mode 100644
index 0000000..07a2f1d
--- /dev/null
+++ b/content/docs/definitions/complaint/heat-stroke.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Heat Stroke
+linkTitle: Heat Stroke
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|40|
+|Performance Impact:|0.6|
+|Probability:|0.0|
+|Degrade Time:|200.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|1.0 to 1.1 sols|
+|Influenced by Effort:|NONE|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/high-fatigue-collapse.md b/content/docs/definitions/complaint/high-fatigue-collapse.md
new file mode 100644
index 0000000..fcf9323
--- /dev/null
+++ b/content/docs/definitions/complaint/high-fatigue-collapse.md
@@ -0,0 +1,23 @@
+---
+title: Complaint - High Fatigue Collapse
+linkTitle: High Fatigue Collapse
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|60|
+|Performance Impact:|0.2|
+|Probability:|0.0|
+|Degrade Time:|1000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|1.0 to 3.0 sols|
+|Influenced by Effort:|NONE|
+|Treatment:|[Hospitalization](/docs/definitions/treatment/hospitalization)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/hypoxemia.md b/content/docs/definitions/complaint/hypoxemia.md
new file mode 100644
index 0000000..7704066
--- /dev/null
+++ b/content/docs/definitions/complaint/hypoxemia.md
@@ -0,0 +1,23 @@
+---
+title: Complaint - Hypoxemia
+linkTitle: Hypoxemia
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|80|
+|Performance Impact:|0.2|
+|Probability:|0.0|
+|Degrade Time:|2000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|1.5 to 1.6500000000000001 sols|
+|Influenced by Effort:|NONE|
+|Treatment:|[Hospitalization](/docs/definitions/treatment/hospitalization)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/laceration.md b/content/docs/definitions/complaint/laceration.md
new file mode 100644
index 0000000..455bbf0
--- /dev/null
+++ b/content/docs/definitions/complaint/laceration.md
@@ -0,0 +1,24 @@
+---
+title: Complaint - Laceration
+linkTitle: Laceration
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|50|
+|Performance Impact:|0.6|
+|Probability:|3.0|
+|Degrade Time:|7000.0 millisols|
+|Bed Rest:|false|
+|Recovery Period:|2.0 to 2.2 sols|
+|Influenced by Effort:|LOW|
+|Treatment:|[Dressing](/docs/definitions/treatment/dressing)|
+|Next Phase:|[Gangrene](/docs/definitions/complaint/gangrene)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/major-burns.md b/content/docs/definitions/complaint/major-burns.md
new file mode 100644
index 0000000..efcdea3
--- /dev/null
+++ b/content/docs/definitions/complaint/major-burns.md
@@ -0,0 +1,23 @@
+---
+title: Complaint - Major Burns
+linkTitle: Major Burns
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|100|
+|Performance Impact:|0.1|
+|Probability:|0.0|
+|Degrade Time:|10000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|40.0 to 44.0 sols|
+|Influenced by Effort:|NONE|
+|Treatment:|[Skin Graft](/docs/definitions/treatment/skin-graft)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/meningitis.md b/content/docs/definitions/complaint/meningitis.md
new file mode 100644
index 0000000..9d9c091
--- /dev/null
+++ b/content/docs/definitions/complaint/meningitis.md
@@ -0,0 +1,23 @@
+---
+title: Complaint - Meningitis
+linkTitle: Meningitis
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|90|
+|Performance Impact:|0.0|
+|Probability:|0.1|
+|Degrade Time:|2000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|10.0 to 11.0 sols|
+|Influenced by Effort:|NONE|
+|Treatment:|[Antibiotics](/docs/definitions/treatment/antibiotics)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/minor-burns.md b/content/docs/definitions/complaint/minor-burns.md
new file mode 100644
index 0000000..e69012a
--- /dev/null
+++ b/content/docs/definitions/complaint/minor-burns.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Minor Burns
+linkTitle: Minor Burns
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|20|
+|Performance Impact:|0.75|
+|Probability:|3.0|
+|Degrade Time:|0.0 millisols|
+|Bed Rest:|false|
+|Recovery Period:|10.0 to 11.0 sols|
+|Influenced by Effort:|LOW|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/panic-attack.md b/content/docs/definitions/complaint/panic-attack.md
new file mode 100644
index 0000000..9562a23
--- /dev/null
+++ b/content/docs/definitions/complaint/panic-attack.md
@@ -0,0 +1,23 @@
+---
+title: Complaint - Panic Attack
+linkTitle: Panic Attack
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|30|
+|Performance Impact:|0.6|
+|Probability:|0.0|
+|Degrade Time:|3000.0 millisols|
+|Bed Rest:|false|
+|Recovery Period:|0.5 to 1.5 sols|
+|Influenced by Effort:|NONE|
+|Treatment:|[Anxiety Medication](/docs/definitions/treatment/anxiety-medication)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/pulled-muscle-tendon.md b/content/docs/definitions/complaint/pulled-muscle-tendon.md
new file mode 100644
index 0000000..cc0de85
--- /dev/null
+++ b/content/docs/definitions/complaint/pulled-muscle-tendon.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Pulled Muscle/Tendon
+linkTitle: Pulled Muscle/Tendon
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|1|
+|Performance Impact:|0.7|
+|Probability:|3.0|
+|Degrade Time:|0.0 millisols|
+|Bed Rest:|false|
+|Recovery Period:|2.0 to 2.2 sols|
+|Influenced by Effort:|HIGH|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/radiation-sickness.md b/content/docs/definitions/complaint/radiation-sickness.md
new file mode 100644
index 0000000..e2932e8
--- /dev/null
+++ b/content/docs/definitions/complaint/radiation-sickness.md
@@ -0,0 +1,23 @@
+---
+title: Complaint - Radiation Sickness
+linkTitle: Radiation Sickness
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|30|
+|Performance Impact:|0.3|
+|Probability:|0.0|
+|Degrade Time:|8000.0 millisols|
+|Bed Rest:|false|
+|Recovery Period:|3.0 to 3.3000000000000003 sols|
+|Influenced by Effort:|NONE|
+|Treatment:|[Radioprotective Agent](/docs/definitions/treatment/radioprotective-agent)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/ruptured-appendix.md b/content/docs/definitions/complaint/ruptured-appendix.md
new file mode 100644
index 0000000..015625d
--- /dev/null
+++ b/content/docs/definitions/complaint/ruptured-appendix.md
@@ -0,0 +1,23 @@
+---
+title: Complaint - Ruptured Appendix
+linkTitle: Ruptured Appendix
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|100|
+|Performance Impact:|0.0|
+|Probability:|0.0|
+|Degrade Time:|2000.0 millisols|
+|Bed Rest:|true|
+|Recovery Period:|14.0 to 15.400000000000002 sols|
+|Influenced by Effort:|NONE|
+|Treatment:|[Major Operation](/docs/definitions/treatment/major-operation)|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/starvation.md b/content/docs/definitions/complaint/starvation.md
new file mode 100644
index 0000000..43e64e0
--- /dev/null
+++ b/content/docs/definitions/complaint/starvation.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Starvation
+linkTitle: Starvation
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|40|
+|Performance Impact:|0.6|
+|Probability:|0.0|
+|Degrade Time:|30000.0 millisols|
+|Bed Rest:|false|
+|Recovery Period:|1.0 to 1.1 sols|
+|Influenced by Effort:|NONE|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/complaint/suffocation.md b/content/docs/definitions/complaint/suffocation.md
new file mode 100644
index 0000000..ce50df8
--- /dev/null
+++ b/content/docs/definitions/complaint/suffocation.md
@@ -0,0 +1,22 @@
+---
+title: Complaint - Suffocation
+linkTitle: Suffocation
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Seriousness:|80|
+|Performance Impact:|0.2|
+|Probability:|0.0|
+|Degrade Time:|3.3800000000000003 millisols|
+|Bed Rest:|true|
+|Recovery Period:|0.5 to 0.55 sols|
+|Influenced by Effort:|NONE|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/_index.md b/content/docs/definitions/construction/_index.md
new file mode 100644
index 0000000..9d882cd
--- /dev/null
+++ b/content/docs/definitions/construction/_index.md
@@ -0,0 +1,105 @@
+---
+title: Construction Stage
+description: Stages available for constructing a new site
+---
+
+
+
+
+{{< alert color="success" >}}These can be changed via the XML file _construction.xml_. See [XML Files](/docs/guide/xml-files/){{< /alert >}}
+
+
+Grouped by Stage.
+
+### BUILDING {#A-building}
+
+- [Laboratory](../construction/laboratory)
+- [Ice Storage](../construction/ice-storage)
+- [Concrete Storage](../construction/concrete-storage)
+- [Inflatable Greenhouse](../construction/inflatable-greenhouse)
+- [Solar Thermal Collector](../construction/solar-thermal-collector)
+- [Residential Hab](../construction/residential-hab)
+- [Manufacturing Shed](../construction/manufacturing-shed)
+- [Hallway](../construction/hallway)
+- [Machinery Hab](../construction/machinery-hab)
+- [Small Areothermal Well](../construction/small-areothermal-well)
+- [Cement Storage](../construction/cement-storage)
+- [Medium Battery Array](../construction/medium-battery-array)
+- [Infirmary](../construction/infirmary)
+- [Residential Quarters](../construction/residential-quarters)
+- [Ore Storage](../construction/ore-storage)
+- [Atmospheric Processor](../construction/atmospheric-processor)
+- [Outpost Hub](../construction/outpost-hub)
+- [Inground Greenhouse](../construction/inground-greenhouse)
+- [Research Hab](../construction/research-hab)
+- [Large Areothermal Well](../construction/large-areothermal-well)
+- [Storage Shed](../construction/storage-shed)
+- [Loading Dock Garage](../construction/loading-dock-garage)
+- [Methane Power Generator](../construction/methane-power-generator)
+- [Metal Storage](../construction/metal-storage)
+- [Chemical Storage](../construction/chemical-storage)
+- [Sand Storage](../construction/sand-storage)
+- [Bunkhouse](../construction/bunkhouse)
+- [Regolith Storage](../construction/regolith-storage)
+- [Medical Hab](../construction/medical-hab)
+- [Solar Photovoltaic Array](../construction/solar-photovoltaic-array)
+- [Astronomy Observatory](../construction/astronomy-observatory)
+- [Server Farm](../construction/server-farm)
+- [Storage Hab](../construction/storage-hab)
+- [Lounge](../construction/lounge)
+- [Lander Hab](../construction/lander-hab)
+- [Workshop](../construction/workshop)
+- [Command and Control](../construction/command-and-control)
+- [Large Sabatier Processor](../construction/large-sabatier-processor)
+- [Lime Storage](../construction/lime-storage)
+- [Fuel Storage](../construction/fuel-storage)
+- [Garage](../construction/garage)
+- [Tunnel](../construction/tunnel)
+- [Wind Turbine](../construction/wind-turbine)
+- [Mining Lab](../construction/mining-lab)
+- [Gas Storage](../construction/gas-storage)
+- [Large Greenhouse](../construction/large-greenhouse)
+
+### FOUNDATION {#A-foundation}
+
+- [Shallow Borehole Drilling Site](../construction/shallow-borehole-drilling-site)
+- [Surface Foundation 5x10](../construction/surface-foundation-5x10)
+- [Ramped Subsurface Foundation 15x18x5](../construction/ramped-subsurface-foundation-15x18x5)
+- [Surface Foundation 2x3](../construction/surface-foundation-2x3)
+- [Deep Borehole Drilling Site](../construction/deep-borehole-drilling-site)
+- [Subsurface Foundation Variable Size](../construction/subsurface-foundation-variable-size)
+- [Surface Foundation 8x11](../construction/surface-foundation-8x11)
+- [Subsurface Foundation 5x10x3](../construction/subsurface-foundation-5x10x3)
+- [Surface Foundation Variable Size](../construction/surface-foundation-variable-size)
+- [Surface Foundation 12x18](../construction/surface-foundation-12x18)
+- [Subsurface Foundation 10x10x3](../construction/subsurface-foundation-10x10x3)
+- [Subsurface Foundation 5x5x3](../construction/subsurface-foundation-5x5x3)
+- [Surface Foundation 9x9](../construction/surface-foundation-9x9)
+- [Surface Foundation 5x5](../construction/surface-foundation-5x5)
+- [Surface Foundation 7x9](../construction/surface-foundation-7x9)
+
+### FRAME {#A-frame}
+
+- [Atmospheric Processor Frame](../construction/atmospheric-processor-frame)
+- [Vaulted Glass Brick Frame](../construction/vaulted-glass-brick-frame)
+- [Large Garage Brick Frame](../construction/large-garage-brick-frame)
+- [Round Vaulted Brick Frame](../construction/round-vaulted-brick-frame)
+- [Garage Frame](../construction/garage-frame)
+- [Large Greenhouse Frame](../construction/large-greenhouse-frame)
+- [Round Frame](../construction/round-frame)
+- [Array Frame](../construction/array-frame)
+- [Round Hab Frame](../construction/round-hab-frame)
+- [Small Steel Frame](../construction/small-steel-frame)
+- [Large Areothermal Well Frame](../construction/large-areothermal-well-frame)
+- [Brick Bin Frame](../construction/brick-bin-frame)
+- [Small Brick Shed Frame](../construction/small-brick-shed-frame)
+- [Brick Tunnel Frame](../construction/brick-tunnel-frame)
+- [Inflatable Frame](../construction/inflatable-frame)
+- [Hallway frame](../construction/hallway-frame)
+- [Medium Modular Frame](../construction/medium-modular-frame)
+- [Steel Frame Tower](../construction/steel-frame-tower)
+- [Small Areothermal Well Frame](../construction/small-areothermal-well-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/array-frame.md b/content/docs/definitions/construction/array-frame.md
new file mode 100644
index 0000000..4608601
--- /dev/null
+++ b/content/docs/definitions/construction/array-frame.md
@@ -0,0 +1,33 @@
+---
+title: Construction Stage - Array Frame
+linkTitle: Array Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Surface Foundation 5x10](/docs/definitions/construction/surface-foundation-5x10)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|1.5 kg|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|50.0 kg|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|6|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|20|
+
+## Later Stages
+- [Solar Thermal Collector](/docs/definitions/construction/solar-thermal-collector)
+- [Medium Battery Array](/docs/definitions/construction/medium-battery-array)
+- [Solar Photovoltaic Array](/docs/definitions/construction/solar-photovoltaic-array)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/astronomy-observatory.md b/content/docs/definitions/construction/astronomy-observatory.md
new file mode 100644
index 0000000..21c893e
--- /dev/null
+++ b/content/docs/definitions/construction/astronomy-observatory.md
@@ -0,0 +1,38 @@
+---
+title: Construction Stage - Astronomy Observatory
+linkTitle: Astronomy Observatory
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|5|
+|PreReq:|[Round Frame](/docs/definitions/construction/round-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|7|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Glass Sheet](/docs/definitions/part/glass-sheet)|Part|10|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|10|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|7|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|5|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/atmospheric-processor-frame.md b/content/docs/definitions/construction/atmospheric-processor-frame.md
new file mode 100644
index 0000000..a153873
--- /dev/null
+++ b/content/docs/definitions/construction/atmospheric-processor-frame.md
@@ -0,0 +1,41 @@
+---
+title: Construction Stage - Atmospheric Processor Frame
+linkTitle: Atmospheric Processor Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1000.0|
+|Architectural Skill:|3|
+|PreReq:|[Surface Foundation 8x11](/docs/definitions/construction/surface-foundation-8x11)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|1.0 kg|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|88.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|50|
+|[Gasket](/docs/definitions/part/gasket)|Part|18|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|50|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|10|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|10|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|6|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|20|
+|[Valve](/docs/definitions/part/valve)|Part|20|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|50|
+
+## Later Stages
+- [Atmospheric Processor](/docs/definitions/construction/atmospheric-processor)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/atmospheric-processor.md b/content/docs/definitions/construction/atmospheric-processor.md
new file mode 100644
index 0000000..041837a
--- /dev/null
+++ b/content/docs/definitions/construction/atmospheric-processor.md
@@ -0,0 +1,35 @@
+---
+title: Construction Stage - Atmospheric Processor
+linkTitle: Atmospheric Processor
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|5|
+|PreReq:|[Atmospheric Processor Frame](/docs/definitions/construction/atmospheric-processor-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|252|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|20|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|15|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|50|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|20|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|15|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|30|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|40|
+|[Valve](/docs/definitions/part/valve)|Part|50|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|50|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/brick-bin-frame.md b/content/docs/definitions/construction/brick-bin-frame.md
new file mode 100644
index 0000000..ebe76e2
--- /dev/null
+++ b/content/docs/definitions/construction/brick-bin-frame.md
@@ -0,0 +1,39 @@
+---
+title: Construction Stage - Brick Bin Frame
+linkTitle: Brick Bin Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|500.0|
+|Architectural Skill:|1|
+|PreReq:|[Surface Foundation 2x3](/docs/definitions/construction/surface-foundation-2x3)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Brick](/docs/definitions/part/brick)|Part|200|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|6.0 kg|
+
+## Later Stages
+- [Ice Storage](/docs/definitions/construction/ice-storage)
+- [Concrete Storage](/docs/definitions/construction/concrete-storage)
+- [Cement Storage](/docs/definitions/construction/cement-storage)
+- [Ore Storage](/docs/definitions/construction/ore-storage)
+- [Metal Storage](/docs/definitions/construction/metal-storage)
+- [Chemical Storage](/docs/definitions/construction/chemical-storage)
+- [Sand Storage](/docs/definitions/construction/sand-storage)
+- [Regolith Storage](/docs/definitions/construction/regolith-storage)
+- [Lime Storage](/docs/definitions/construction/lime-storage)
+- [Fuel Storage](/docs/definitions/construction/fuel-storage)
+- [Gas Storage](/docs/definitions/construction/gas-storage)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/brick-tunnel-frame.md b/content/docs/definitions/construction/brick-tunnel-frame.md
new file mode 100644
index 0000000..3ffd35d
--- /dev/null
+++ b/content/docs/definitions/construction/brick-tunnel-frame.md
@@ -0,0 +1,29 @@
+---
+title: Construction Stage - Brick Tunnel Frame
+linkTitle: Brick Tunnel Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|200.0|
+|Architectural Skill:|1|
+|PreReq:|[Subsurface Foundation Variable Size](/docs/definitions/construction/subsurface-foundation-variable-size)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Brick](/docs/definitions/part/brick)|Part|90|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|3.0 kg|
+
+## Later Stages
+- [Tunnel](/docs/definitions/construction/tunnel)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/bunkhouse.md b/content/docs/definitions/construction/bunkhouse.md
new file mode 100644
index 0000000..873bc08
--- /dev/null
+++ b/content/docs/definitions/construction/bunkhouse.md
@@ -0,0 +1,39 @@
+---
+title: Construction Stage - Bunkhouse
+linkTitle: Bunkhouse
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|3|
+|PreReq:|[Small Brick Shed Frame](/docs/definitions/construction/small-brick-shed-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|90|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|3|
+|[Cement](/docs/definitions/resource/cement)|Resource|75.0 kg|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|57.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|10|
+|[Gasket](/docs/definitions/part/gasket)|Part|5|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|25|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|4|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|1|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|3|
+|[Valve](/docs/definitions/part/valve)|Part|5|
+|[Window](/docs/definitions/part/window)|Part|2|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|10|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/cement-storage.md b/content/docs/definitions/construction/cement-storage.md
new file mode 100644
index 0000000..7301d85
--- /dev/null
+++ b/content/docs/definitions/construction/cement-storage.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Cement Storage
+linkTitle: Cement Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|250.0|
+|Architectural Skill:|1|
+|PreReq:|[Brick Bin Frame](/docs/definitions/construction/brick-bin-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|20|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|60.0 kg|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/chemical-storage.md b/content/docs/definitions/construction/chemical-storage.md
new file mode 100644
index 0000000..5796391
--- /dev/null
+++ b/content/docs/definitions/construction/chemical-storage.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Chemical Storage
+linkTitle: Chemical Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|250.0|
+|Architectural Skill:|1|
+|PreReq:|[Brick Bin Frame](/docs/definitions/construction/brick-bin-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|32|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|60.0 kg|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/command-and-control.md b/content/docs/definitions/construction/command-and-control.md
new file mode 100644
index 0000000..00fa09d
--- /dev/null
+++ b/content/docs/definitions/construction/command-and-control.md
@@ -0,0 +1,38 @@
+---
+title: Construction Stage - Command and Control
+linkTitle: Command and Control
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|4|
+|PreReq:|[Medium Modular Frame](/docs/definitions/construction/medium-modular-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|190|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|7|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|10|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|7|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|5|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/concrete-storage.md b/content/docs/definitions/construction/concrete-storage.md
new file mode 100644
index 0000000..9a20952
--- /dev/null
+++ b/content/docs/definitions/construction/concrete-storage.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Concrete Storage
+linkTitle: Concrete Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|250.0|
+|Architectural Skill:|1|
+|PreReq:|[Brick Bin Frame](/docs/definitions/construction/brick-bin-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|32|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|60.0 kg|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/deep-borehole-drilling-site.md b/content/docs/definitions/construction/deep-borehole-drilling-site.md
new file mode 100644
index 0000000..1afb467
--- /dev/null
+++ b/content/docs/definitions/construction/deep-borehole-drilling-site.md
@@ -0,0 +1,28 @@
+---
+title: Construction Stage - Deep Borehole Drilling Site
+linkTitle: Deep Borehole Drilling Site
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|15000.0|
+|Architectural Skill:|4|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|4|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|60|
+
+## Later Stages
+- [Large Areothermal Well Frame](/docs/definitions/construction/large-areothermal-well-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/fuel-storage.md b/content/docs/definitions/construction/fuel-storage.md
new file mode 100644
index 0000000..b22bbec
--- /dev/null
+++ b/content/docs/definitions/construction/fuel-storage.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Fuel Storage
+linkTitle: Fuel Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|250.0|
+|Architectural Skill:|1|
+|PreReq:|[Brick Bin Frame](/docs/definitions/construction/brick-bin-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|32|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|60.0 kg|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/garage-frame.md b/content/docs/definitions/construction/garage-frame.md
new file mode 100644
index 0000000..da17af1
--- /dev/null
+++ b/content/docs/definitions/construction/garage-frame.md
@@ -0,0 +1,41 @@
+---
+title: Construction Stage - Garage Frame
+linkTitle: Garage Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1200.0|
+|Architectural Skill:|2|
+|PreReq:|[Surface Foundation 12x18](/docs/definitions/construction/surface-foundation-12x18)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|2.5 kg|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|20|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|192.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|50|
+|[Gasket](/docs/definitions/part/gasket)|Part|40|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|20|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|100|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|20|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|12|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|20|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|30|
+|[Valve](/docs/definitions/part/valve)|Part|50|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|50|
+
+## Later Stages
+- [Garage](/docs/definitions/construction/garage)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/garage.md b/content/docs/definitions/construction/garage.md
new file mode 100644
index 0000000..4480820
--- /dev/null
+++ b/content/docs/definitions/construction/garage.md
@@ -0,0 +1,38 @@
+---
+title: Construction Stage - Garage
+linkTitle: Garage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1500.0|
+|Architectural Skill:|3|
+|PreReq:|[Garage Frame](/docs/definitions/construction/garage-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|486|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|1|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|7|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|5|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/gas-storage.md b/content/docs/definitions/construction/gas-storage.md
new file mode 100644
index 0000000..0ba1c90
--- /dev/null
+++ b/content/docs/definitions/construction/gas-storage.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Gas Storage
+linkTitle: Gas Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|250.0|
+|Architectural Skill:|1|
+|PreReq:|[Brick Bin Frame](/docs/definitions/construction/brick-bin-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|32|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|60.0 kg|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/hallway-frame.md b/content/docs/definitions/construction/hallway-frame.md
new file mode 100644
index 0000000..e76cc0e
--- /dev/null
+++ b/content/docs/definitions/construction/hallway-frame.md
@@ -0,0 +1,31 @@
+---
+title: Construction Stage - Hallway frame
+linkTitle: Hallway frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|100.0|
+|Architectural Skill:|1|
+|PreReq:|[Surface Foundation Variable Size](/docs/definitions/construction/surface-foundation-variable-size)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|0.25 kg|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|2.0 kg|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|4|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|3|
+
+## Later Stages
+- [Hallway](/docs/definitions/construction/hallway)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/hallway.md b/content/docs/definitions/construction/hallway.md
new file mode 100644
index 0000000..7901615
--- /dev/null
+++ b/content/docs/definitions/construction/hallway.md
@@ -0,0 +1,32 @@
+---
+title: Construction Stage - Hallway
+linkTitle: Hallway
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|200.0|
+|Architectural Skill:|1|
+|PreReq:|[Hallway frame](/docs/definitions/construction/hallway-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|1|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|3|
+|[Gasket](/docs/definitions/part/gasket)|Part|4|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|3|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|3|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/ice-storage.md b/content/docs/definitions/construction/ice-storage.md
new file mode 100644
index 0000000..9155bfa
--- /dev/null
+++ b/content/docs/definitions/construction/ice-storage.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Ice Storage
+linkTitle: Ice Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|250.0|
+|Architectural Skill:|1|
+|PreReq:|[Brick Bin Frame](/docs/definitions/construction/brick-bin-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|32|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|60.0 kg|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/infirmary.md b/content/docs/definitions/construction/infirmary.md
new file mode 100644
index 0000000..6432268
--- /dev/null
+++ b/content/docs/definitions/construction/infirmary.md
@@ -0,0 +1,38 @@
+---
+title: Construction Stage - Infirmary
+linkTitle: Infirmary
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|4|
+|PreReq:|[Medium Modular Frame](/docs/definitions/construction/medium-modular-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|190|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|7|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|10|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|7|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|5|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/inflatable-frame.md b/content/docs/definitions/construction/inflatable-frame.md
new file mode 100644
index 0000000..4b9ad5c
--- /dev/null
+++ b/content/docs/definitions/construction/inflatable-frame.md
@@ -0,0 +1,42 @@
+---
+title: Construction Stage - Inflatable Frame
+linkTitle: Inflatable Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Surface Foundation 7x9](/docs/definitions/construction/surface-foundation-7x9)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|1.25 kg|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|54.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|80|
+|[Gasket](/docs/definitions/part/gasket)|Part|30|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|10|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|50|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|12|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|40|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|5|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|20|
+|[Valve](/docs/definitions/part/valve)|Part|30|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|80|
+
+## Later Stages
+- [Inflatable Greenhouse](/docs/definitions/construction/inflatable-greenhouse)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/inflatable-greenhouse.md b/content/docs/definitions/construction/inflatable-greenhouse.md
new file mode 100644
index 0000000..e1da40e
--- /dev/null
+++ b/content/docs/definitions/construction/inflatable-greenhouse.md
@@ -0,0 +1,39 @@
+---
+title: Construction Stage - Inflatable Greenhouse
+linkTitle: Inflatable Greenhouse
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Inflatable Frame](/docs/definitions/construction/inflatable-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|114|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|3|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|5|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|10|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|12|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|5.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|10.0 kg|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|5|
+|[Window](/docs/definitions/part/window)|Part|6|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|5|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/inground-greenhouse.md b/content/docs/definitions/construction/inground-greenhouse.md
new file mode 100644
index 0000000..9e3edab
--- /dev/null
+++ b/content/docs/definitions/construction/inground-greenhouse.md
@@ -0,0 +1,38 @@
+---
+title: Construction Stage - Inground Greenhouse
+linkTitle: Inground Greenhouse
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|3|
+|PreReq:|[Vaulted Glass Brick Frame](/docs/definitions/construction/vaulted-glass-brick-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|15|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|7|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|5|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|5|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|10|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|5.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|10.0 kg|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|5|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|5|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/laboratory.md b/content/docs/definitions/construction/laboratory.md
new file mode 100644
index 0000000..5318c15
--- /dev/null
+++ b/content/docs/definitions/construction/laboratory.md
@@ -0,0 +1,39 @@
+---
+title: Construction Stage - Laboratory
+linkTitle: Laboratory
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|4|
+|PreReq:|[Medium Modular Frame](/docs/definitions/construction/medium-modular-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|190|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|10|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|7|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|5|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/lander-hab.md b/content/docs/definitions/construction/lander-hab.md
new file mode 100644
index 0000000..a366145
--- /dev/null
+++ b/content/docs/definitions/construction/lander-hab.md
@@ -0,0 +1,42 @@
+---
+title: Construction Stage - Lander Hab
+linkTitle: Lander Hab
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|2000.0|
+|Architectural Skill:|2|
+|PreReq:|[Round Hab Frame](/docs/definitions/construction/round-hab-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|164|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|25|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|1|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|5|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|5|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|1|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|25|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/large-areothermal-well-frame.md b/content/docs/definitions/construction/large-areothermal-well-frame.md
new file mode 100644
index 0000000..e13403b
--- /dev/null
+++ b/content/docs/definitions/construction/large-areothermal-well-frame.md
@@ -0,0 +1,31 @@
+---
+title: Construction Stage - Large Areothermal Well Frame
+linkTitle: Large Areothermal Well Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1300.0|
+|Architectural Skill:|3|
+|PreReq:|[Deep Borehole Drilling Site](/docs/definitions/construction/deep-borehole-drilling-site)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|1.0 kg|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|150.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|30|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|20|
+
+## Later Stages
+- [Large Areothermal Well](/docs/definitions/construction/large-areothermal-well)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/large-areothermal-well.md b/content/docs/definitions/construction/large-areothermal-well.md
new file mode 100644
index 0000000..4c9f17e
--- /dev/null
+++ b/content/docs/definitions/construction/large-areothermal-well.md
@@ -0,0 +1,37 @@
+---
+title: Construction Stage - Large Areothermal Well
+linkTitle: Large Areothermal Well
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|3|
+|PreReq:|[Large Areothermal Well Frame](/docs/definitions/construction/large-areothermal-well-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|2|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|40|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|15|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|2|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|20|
+|[Turbine Generator](/docs/definitions/part/turbine-generator)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|15|
+|[Water](/docs/definitions/resource/water)|Resource|1500.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|2|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|40|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/large-garage-brick-frame.md b/content/docs/definitions/construction/large-garage-brick-frame.md
new file mode 100644
index 0000000..4a214a8
--- /dev/null
+++ b/content/docs/definitions/construction/large-garage-brick-frame.md
@@ -0,0 +1,42 @@
+---
+title: Construction Stage - Large Garage Brick Frame
+linkTitle: Large Garage Brick Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1500.0|
+|Architectural Skill:|3|
+|PreReq:|[Ramped Subsurface Foundation 15x18x5](/docs/definitions/construction/ramped-subsurface-foundation-15x18x5)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|2.5 kg|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|50|
+|[Brick](/docs/definitions/part/brick)|Part|3600|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|270.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|50|
+|[Gasket](/docs/definitions/part/gasket)|Part|40|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|50|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|100|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|20|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|12|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|50|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|30|
+|[Valve](/docs/definitions/part/valve)|Part|50|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|50|
+
+## Later Stages
+- [Loading Dock Garage](/docs/definitions/construction/loading-dock-garage)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/large-greenhouse-frame.md b/content/docs/definitions/construction/large-greenhouse-frame.md
new file mode 100644
index 0000000..fb9ea2a
--- /dev/null
+++ b/content/docs/definitions/construction/large-greenhouse-frame.md
@@ -0,0 +1,42 @@
+---
+title: Construction Stage - Large Greenhouse Frame
+linkTitle: Large Greenhouse Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1500.0|
+|Architectural Skill:|3|
+|PreReq:|[Surface Foundation 12x18](/docs/definitions/construction/surface-foundation-12x18)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|2.5 kg|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|20|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|216.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|120|
+|[Gasket](/docs/definitions/part/gasket)|Part|90|
+|[Glass Sheet](/docs/definitions/part/glass-sheet)|Part|50|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|20|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|150|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|30|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|12|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|20|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|30|
+|[Valve](/docs/definitions/part/valve)|Part|90|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|120|
+
+## Later Stages
+- [Large Greenhouse](/docs/definitions/construction/large-greenhouse)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/large-greenhouse.md b/content/docs/definitions/construction/large-greenhouse.md
new file mode 100644
index 0000000..e6317a8
--- /dev/null
+++ b/content/docs/definitions/construction/large-greenhouse.md
@@ -0,0 +1,39 @@
+---
+title: Construction Stage - Large Greenhouse
+linkTitle: Large Greenhouse
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|2000.0|
+|Architectural Skill:|4|
+|PreReq:|[Large Greenhouse Frame](/docs/definitions/construction/large-greenhouse-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|336|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|15|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|9|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|15|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|15|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|15|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|30|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|54|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|15.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|30.0 kg|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|3.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|15|
+|[Window](/docs/definitions/part/window)|Part|8|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|15|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/large-sabatier-processor.md b/content/docs/definitions/construction/large-sabatier-processor.md
new file mode 100644
index 0000000..c4ae197
--- /dev/null
+++ b/content/docs/definitions/construction/large-sabatier-processor.md
@@ -0,0 +1,34 @@
+---
+title: Construction Stage - Large Sabatier Processor
+linkTitle: Large Sabatier Processor
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|3|
+|PreReq:|[Small Steel Frame](/docs/definitions/construction/small-steel-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|90|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|60|
+|[Gasket](/docs/definitions/part/gasket)|Part|6|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|6|
+|[Nickel](/docs/definitions/resource/nickel)|Resource|1.0 kg|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|18|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|6|
+|[Valve](/docs/definitions/part/valve)|Part|18|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|60|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/lime-storage.md b/content/docs/definitions/construction/lime-storage.md
new file mode 100644
index 0000000..847a37a
--- /dev/null
+++ b/content/docs/definitions/construction/lime-storage.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Lime Storage
+linkTitle: Lime Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|250.0|
+|Architectural Skill:|1|
+|PreReq:|[Brick Bin Frame](/docs/definitions/construction/brick-bin-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|32|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|60.0 kg|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/loading-dock-garage.md b/content/docs/definitions/construction/loading-dock-garage.md
new file mode 100644
index 0000000..14d02b6
--- /dev/null
+++ b/content/docs/definitions/construction/loading-dock-garage.md
@@ -0,0 +1,39 @@
+---
+title: Construction Stage - Loading Dock Garage
+linkTitle: Loading Dock Garage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1500.0|
+|Architectural Skill:|4|
+|PreReq:|[Large Garage Brick Frame](/docs/definitions/construction/large-garage-brick-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|20|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Cement](/docs/definitions/resource/cement)|Resource|100.0 kg|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|100.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|10|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|7|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|5|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/lounge.md b/content/docs/definitions/construction/lounge.md
new file mode 100644
index 0000000..247dbd3
--- /dev/null
+++ b/content/docs/definitions/construction/lounge.md
@@ -0,0 +1,35 @@
+---
+title: Construction Stage - Lounge
+linkTitle: Lounge
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|3|
+|PreReq:|[Medium Modular Frame](/docs/definitions/construction/medium-modular-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|190|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|2|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|5.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|10.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|2|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|5.0 kg|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|2|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/machinery-hab.md b/content/docs/definitions/construction/machinery-hab.md
new file mode 100644
index 0000000..95af9a8
--- /dev/null
+++ b/content/docs/definitions/construction/machinery-hab.md
@@ -0,0 +1,39 @@
+---
+title: Construction Stage - Machinery Hab
+linkTitle: Machinery Hab
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Round Hab Frame](/docs/definitions/construction/round-hab-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|164|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|25|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|5|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|5|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|25|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/manufacturing-shed.md b/content/docs/definitions/construction/manufacturing-shed.md
new file mode 100644
index 0000000..e3f1f7b
--- /dev/null
+++ b/content/docs/definitions/construction/manufacturing-shed.md
@@ -0,0 +1,40 @@
+---
+title: Construction Stage - Manufacturing Shed
+linkTitle: Manufacturing Shed
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|500.0|
+|Architectural Skill:|3|
+|PreReq:|[Small Brick Shed Frame](/docs/definitions/construction/small-brick-shed-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|90|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|5|
+|[Brick](/docs/definitions/part/brick)|Part|100|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|75.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|50|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|3|
+|[Gasket](/docs/definitions/part/gasket)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|1|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|25|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|10|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|10|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|3|
+|[Valve](/docs/definitions/part/valve)|Part|10|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|50|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/medical-hab.md b/content/docs/definitions/construction/medical-hab.md
new file mode 100644
index 0000000..79feb41
--- /dev/null
+++ b/content/docs/definitions/construction/medical-hab.md
@@ -0,0 +1,39 @@
+---
+title: Construction Stage - Medical Hab
+linkTitle: Medical Hab
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Round Hab Frame](/docs/definitions/construction/round-hab-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|164|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|25|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|5|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|5|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|25|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/medium-battery-array.md b/content/docs/definitions/construction/medium-battery-array.md
new file mode 100644
index 0000000..44f2847
--- /dev/null
+++ b/content/docs/definitions/construction/medium-battery-array.md
@@ -0,0 +1,31 @@
+---
+title: Construction Stage - Medium Battery Array
+linkTitle: Medium Battery Array
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Array Frame](/docs/definitions/construction/array-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|90|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|20|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|20|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|2|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|20|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/medium-modular-frame.md b/content/docs/definitions/construction/medium-modular-frame.md
new file mode 100644
index 0000000..71a0a0f
--- /dev/null
+++ b/content/docs/definitions/construction/medium-modular-frame.md
@@ -0,0 +1,47 @@
+---
+title: Construction Stage - Medium Modular Frame
+linkTitle: Medium Modular Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Surface Foundation 7x9](/docs/definitions/construction/surface-foundation-7x9)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|1.0 kg|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|8|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|63.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|50|
+|[Gasket](/docs/definitions/part/gasket)|Part|15|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|8|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|40|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|16|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|15|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|6|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|8|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|16|
+|[Valve](/docs/definitions/part/valve)|Part|50|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|50|
+
+## Later Stages
+- [Laboratory](/docs/definitions/construction/laboratory)
+- [Infirmary](/docs/definitions/construction/infirmary)
+- [Residential Quarters](/docs/definitions/construction/residential-quarters)
+- [Server Farm](/docs/definitions/construction/server-farm)
+- [Lounge](/docs/definitions/construction/lounge)
+- [Workshop](/docs/definitions/construction/workshop)
+- [Command and Control](/docs/definitions/construction/command-and-control)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/metal-storage.md b/content/docs/definitions/construction/metal-storage.md
new file mode 100644
index 0000000..ed675a6
--- /dev/null
+++ b/content/docs/definitions/construction/metal-storage.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Metal Storage
+linkTitle: Metal Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|250.0|
+|Architectural Skill:|1|
+|PreReq:|[Brick Bin Frame](/docs/definitions/construction/brick-bin-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|32|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|60.0 kg|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/methane-power-generator.md b/content/docs/definitions/construction/methane-power-generator.md
new file mode 100644
index 0000000..a5b0c19
--- /dev/null
+++ b/content/docs/definitions/construction/methane-power-generator.md
@@ -0,0 +1,34 @@
+---
+title: Construction Stage - Methane Power Generator
+linkTitle: Methane Power Generator
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|3|
+|PreReq:|[Small Steel Frame](/docs/definitions/construction/small-steel-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|65|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|20|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|5|
+|[Gasket](/docs/definitions/part/gasket)|Part|6|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|6|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|6|
+|[Valve](/docs/definitions/part/valve)|Part|6|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|20|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/mining-lab.md b/content/docs/definitions/construction/mining-lab.md
new file mode 100644
index 0000000..2596d68
--- /dev/null
+++ b/content/docs/definitions/construction/mining-lab.md
@@ -0,0 +1,39 @@
+---
+title: Construction Stage - Mining Lab
+linkTitle: Mining Lab
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|3|
+|PreReq:|[Small Brick Shed Frame](/docs/definitions/construction/small-brick-shed-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|5|
+|[Brick](/docs/definitions/part/brick)|Part|100|
+|[Cement](/docs/definitions/resource/cement)|Resource|50.0 kg|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|50.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|50|
+|[Gasket](/docs/definitions/part/gasket)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|1|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|25|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|10|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|10|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|3|
+|[Valve](/docs/definitions/part/valve)|Part|10|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|50|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/ore-storage.md b/content/docs/definitions/construction/ore-storage.md
new file mode 100644
index 0000000..7cab27c
--- /dev/null
+++ b/content/docs/definitions/construction/ore-storage.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Ore Storage
+linkTitle: Ore Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|250.0|
+|Architectural Skill:|1|
+|PreReq:|[Brick Bin Frame](/docs/definitions/construction/brick-bin-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|32|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|60.0 kg|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/outpost-hub.md b/content/docs/definitions/construction/outpost-hub.md
new file mode 100644
index 0000000..8a13e61
--- /dev/null
+++ b/content/docs/definitions/construction/outpost-hub.md
@@ -0,0 +1,41 @@
+---
+title: Construction Stage - Outpost Hub
+linkTitle: Outpost Hub
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|2000.0|
+|Architectural Skill:|3|
+|PreReq:|[Round Vaulted Brick Frame](/docs/definitions/construction/round-vaulted-brick-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|10|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Cement](/docs/definitions/resource/cement)|Resource|150.0 kg|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|150.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|20|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|1|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|5|
+|[Gasket](/docs/definitions/part/gasket)|Part|10|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|50|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|8|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|6|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|2|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|6|
+|[Valve](/docs/definitions/part/valve)|Part|10|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|1|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|20|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/ramped-subsurface-foundation-15x18x5.md b/content/docs/definitions/construction/ramped-subsurface-foundation-15x18x5.md
new file mode 100644
index 0000000..c797d8c
--- /dev/null
+++ b/content/docs/definitions/construction/ramped-subsurface-foundation-15x18x5.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Ramped Subsurface Foundation 15x18x5
+linkTitle: Ramped Subsurface Foundation 15x18x5
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|20000.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|369.0 kg|
+
+## Later Stages
+- [Large Garage Brick Frame](/docs/definitions/construction/large-garage-brick-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/regolith-storage.md b/content/docs/definitions/construction/regolith-storage.md
new file mode 100644
index 0000000..e731cdd
--- /dev/null
+++ b/content/docs/definitions/construction/regolith-storage.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Regolith Storage
+linkTitle: Regolith Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|250.0|
+|Architectural Skill:|1|
+|PreReq:|[Brick Bin Frame](/docs/definitions/construction/brick-bin-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|32|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|60.0 kg|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/research-hab.md b/content/docs/definitions/construction/research-hab.md
new file mode 100644
index 0000000..904b61f
--- /dev/null
+++ b/content/docs/definitions/construction/research-hab.md
@@ -0,0 +1,39 @@
+---
+title: Construction Stage - Research Hab
+linkTitle: Research Hab
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Round Hab Frame](/docs/definitions/construction/round-hab-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|164|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|25|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|5|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|5|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|25|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/residential-hab.md b/content/docs/definitions/construction/residential-hab.md
new file mode 100644
index 0000000..53df3cb
--- /dev/null
+++ b/content/docs/definitions/construction/residential-hab.md
@@ -0,0 +1,39 @@
+---
+title: Construction Stage - Residential Hab
+linkTitle: Residential Hab
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Round Hab Frame](/docs/definitions/construction/round-hab-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|164|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|10|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|3|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|5|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|3|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|10|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/residential-quarters.md b/content/docs/definitions/construction/residential-quarters.md
new file mode 100644
index 0000000..7556302
--- /dev/null
+++ b/content/docs/definitions/construction/residential-quarters.md
@@ -0,0 +1,38 @@
+---
+title: Construction Stage - Residential Quarters
+linkTitle: Residential Quarters
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|3|
+|PreReq:|[Medium Modular Frame](/docs/definitions/construction/medium-modular-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|190|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|10|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|7|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|5|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/round-frame.md b/content/docs/definitions/construction/round-frame.md
new file mode 100644
index 0000000..bac05f3
--- /dev/null
+++ b/content/docs/definitions/construction/round-frame.md
@@ -0,0 +1,40 @@
+---
+title: Construction Stage - Round Frame
+linkTitle: Round Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|1.0 kg|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|6|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|49.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|45|
+|[Gasket](/docs/definitions/part/gasket)|Part|13|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|7|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|36|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|14|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|13|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|6|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|7|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|14|
+|[Valve](/docs/definitions/part/valve)|Part|45|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|45|
+
+## Later Stages
+- [Astronomy Observatory](/docs/definitions/construction/astronomy-observatory)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/round-hab-frame.md b/content/docs/definitions/construction/round-hab-frame.md
new file mode 100644
index 0000000..675ca9d
--- /dev/null
+++ b/content/docs/definitions/construction/round-hab-frame.md
@@ -0,0 +1,48 @@
+---
+title: Construction Stage - Round Hab Frame
+linkTitle: Round Hab Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Surface Foundation 9x9](/docs/definitions/construction/surface-foundation-9x9)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|2.0 kg|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|81.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|200|
+|[Gasket](/docs/definitions/part/gasket)|Part|40|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|10|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|50|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|20|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|4|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|40|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|8|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|20|
+|[Valve](/docs/definitions/part/valve)|Part|10|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|200|
+
+## Later Stages
+- [Residential Hab](/docs/definitions/construction/residential-hab)
+- [Machinery Hab](/docs/definitions/construction/machinery-hab)
+- [Research Hab](/docs/definitions/construction/research-hab)
+- [Medical Hab](/docs/definitions/construction/medical-hab)
+- [Storage Hab](/docs/definitions/construction/storage-hab)
+- [Lander Hab](/docs/definitions/construction/lander-hab)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/round-vaulted-brick-frame.md b/content/docs/definitions/construction/round-vaulted-brick-frame.md
new file mode 100644
index 0000000..47806ca
--- /dev/null
+++ b/content/docs/definitions/construction/round-vaulted-brick-frame.md
@@ -0,0 +1,29 @@
+---
+title: Construction Stage - Round Vaulted Brick Frame
+linkTitle: Round Vaulted Brick Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1200.0|
+|Architectural Skill:|2|
+|PreReq:|[Subsurface Foundation 10x10x3](/docs/definitions/construction/subsurface-foundation-10x10x3)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Brick](/docs/definitions/part/brick)|Part|1200|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|100.0 kg|
+
+## Later Stages
+- [Outpost Hub](/docs/definitions/construction/outpost-hub)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/sand-storage.md b/content/docs/definitions/construction/sand-storage.md
new file mode 100644
index 0000000..cfa0265
--- /dev/null
+++ b/content/docs/definitions/construction/sand-storage.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Sand Storage
+linkTitle: Sand Storage
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|250.0|
+|Architectural Skill:|1|
+|PreReq:|[Brick Bin Frame](/docs/definitions/construction/brick-bin-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|32|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|60.0 kg|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/server-farm.md b/content/docs/definitions/construction/server-farm.md
new file mode 100644
index 0000000..866bc15
--- /dev/null
+++ b/content/docs/definitions/construction/server-farm.md
@@ -0,0 +1,38 @@
+---
+title: Construction Stage - Server Farm
+linkTitle: Server Farm
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|4|
+|PreReq:|[Medium Modular Frame](/docs/definitions/construction/medium-modular-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|190|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|7|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|10|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|7|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|5|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/shallow-borehole-drilling-site.md b/content/docs/definitions/construction/shallow-borehole-drilling-site.md
new file mode 100644
index 0000000..bbc7d76
--- /dev/null
+++ b/content/docs/definitions/construction/shallow-borehole-drilling-site.md
@@ -0,0 +1,28 @@
+---
+title: Construction Stage - Shallow Borehole Drilling Site
+linkTitle: Shallow Borehole Drilling Site
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|10000.0|
+|Architectural Skill:|3|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+
+## Later Stages
+- [Small Areothermal Well Frame](/docs/definitions/construction/small-areothermal-well-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/small-areothermal-well-frame.md b/content/docs/definitions/construction/small-areothermal-well-frame.md
new file mode 100644
index 0000000..df2865a
--- /dev/null
+++ b/content/docs/definitions/construction/small-areothermal-well-frame.md
@@ -0,0 +1,31 @@
+---
+title: Construction Stage - Small Areothermal Well Frame
+linkTitle: Small Areothermal Well Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Shallow Borehole Drilling Site](/docs/definitions/construction/shallow-borehole-drilling-site)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|0.5 kg|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|15|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|10|
+
+## Later Stages
+- [Small Areothermal Well](/docs/definitions/construction/small-areothermal-well)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/small-areothermal-well.md b/content/docs/definitions/construction/small-areothermal-well.md
new file mode 100644
index 0000000..c0b4ba6
--- /dev/null
+++ b/content/docs/definitions/construction/small-areothermal-well.md
@@ -0,0 +1,37 @@
+---
+title: Construction Stage - Small Areothermal Well
+linkTitle: Small Areothermal Well
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|500.0|
+|Architectural Skill:|3|
+|PreReq:|[Small Areothermal Well Frame](/docs/definitions/construction/small-areothermal-well-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|20|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Gasket](/docs/definitions/part/gasket)|Part|5|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|2|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|10|
+|[Turbine Generator](/docs/definitions/part/turbine-generator)|Part|1|
+|[Valve](/docs/definitions/part/valve)|Part|5|
+|[Water](/docs/definitions/resource/water)|Resource|500.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|1|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|20|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/small-brick-shed-frame.md b/content/docs/definitions/construction/small-brick-shed-frame.md
new file mode 100644
index 0000000..587eb01
--- /dev/null
+++ b/content/docs/definitions/construction/small-brick-shed-frame.md
@@ -0,0 +1,32 @@
+---
+title: Construction Stage - Small Brick Shed Frame
+linkTitle: Small Brick Shed Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1000.0|
+|Architectural Skill:|1|
+|PreReq:|[Subsurface Foundation 5x5x3](/docs/definitions/construction/subsurface-foundation-5x5x3)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Brick](/docs/definitions/part/brick)|Part|250|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|25.0 kg|
+
+## Later Stages
+- [Manufacturing Shed](/docs/definitions/construction/manufacturing-shed)
+- [Storage Shed](/docs/definitions/construction/storage-shed)
+- [Bunkhouse](/docs/definitions/construction/bunkhouse)
+- [Mining Lab](/docs/definitions/construction/mining-lab)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/small-steel-frame.md b/content/docs/definitions/construction/small-steel-frame.md
new file mode 100644
index 0000000..ee9b9a1
--- /dev/null
+++ b/content/docs/definitions/construction/small-steel-frame.md
@@ -0,0 +1,33 @@
+---
+title: Construction Stage - Small Steel Frame
+linkTitle: Small Steel Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1000.0|
+|Architectural Skill:|1|
+|PreReq:|[Surface Foundation 5x5](/docs/definitions/construction/surface-foundation-5x5)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|1.0 kg|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|25.0 kg|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|4|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|5|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|10|
+
+## Later Stages
+- [Methane Power Generator](/docs/definitions/construction/methane-power-generator)
+- [Large Sabatier Processor](/docs/definitions/construction/large-sabatier-processor)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/solar-photovoltaic-array.md b/content/docs/definitions/construction/solar-photovoltaic-array.md
new file mode 100644
index 0000000..90b4603
--- /dev/null
+++ b/content/docs/definitions/construction/solar-photovoltaic-array.md
@@ -0,0 +1,31 @@
+---
+title: Construction Stage - Solar Photovoltaic Array
+linkTitle: Solar Photovoltaic Array
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Array Frame](/docs/definitions/construction/array-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|16|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|6|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|20|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/solar-thermal-collector.md b/content/docs/definitions/construction/solar-thermal-collector.md
new file mode 100644
index 0000000..6e7fdfa
--- /dev/null
+++ b/content/docs/definitions/construction/solar-thermal-collector.md
@@ -0,0 +1,37 @@
+---
+title: Construction Stage - Solar Thermal Collector
+linkTitle: Solar Thermal Collector
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|3|
+|PreReq:|[Array Frame](/docs/definitions/construction/array-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|32|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|20|
+|[Glass Tube](/docs/definitions/part/glass-tube)|Part|6|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|1|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|2|
+|[Solar Parabolic Mirror](/docs/definitions/part/solar-parabolic-mirror)|Part|3|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|10|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|4|
+|[Water](/docs/definitions/resource/water)|Resource|200.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|2|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|1|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|20|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/steel-frame-tower.md b/content/docs/definitions/construction/steel-frame-tower.md
new file mode 100644
index 0000000..895df58
--- /dev/null
+++ b/content/docs/definitions/construction/steel-frame-tower.md
@@ -0,0 +1,32 @@
+---
+title: Construction Stage - Steel Frame Tower
+linkTitle: Steel Frame Tower
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Surface Foundation 5x5](/docs/definitions/construction/surface-foundation-5x5)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|1.0 kg|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|25.0 kg|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|4|
+|[Steel Cable](/docs/definitions/part/steel-cable)|Part|6|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|20|
+
+## Later Stages
+- [Wind Turbine](/docs/definitions/construction/wind-turbine)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/storage-hab.md b/content/docs/definitions/construction/storage-hab.md
new file mode 100644
index 0000000..b8edfbe
--- /dev/null
+++ b/content/docs/definitions/construction/storage-hab.md
@@ -0,0 +1,40 @@
+---
+title: Construction Stage - Storage Hab
+linkTitle: Storage Hab
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|2|
+|PreReq:|[Round Hab Frame](/docs/definitions/construction/round-hab-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|164|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|15|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|15|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|10|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|15|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|20|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|5.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|20.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|20|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|3.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|15|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|15|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/storage-shed.md b/content/docs/definitions/construction/storage-shed.md
new file mode 100644
index 0000000..69a8711
--- /dev/null
+++ b/content/docs/definitions/construction/storage-shed.md
@@ -0,0 +1,38 @@
+---
+title: Construction Stage - Storage Shed
+linkTitle: Storage Shed
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|500.0|
+|Architectural Skill:|3|
+|PreReq:|[Small Brick Shed Frame](/docs/definitions/construction/small-brick-shed-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|3|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|7|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|7|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|10|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|2.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|10.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|7|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|7|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/subsurface-foundation-10x10x3.md b/content/docs/definitions/construction/subsurface-foundation-10x10x3.md
new file mode 100644
index 0000000..8a4389b
--- /dev/null
+++ b/content/docs/definitions/construction/subsurface-foundation-10x10x3.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Subsurface Foundation 10x10x3
+linkTitle: Subsurface Foundation 10x10x3
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|15000.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|140.0 kg|
+
+## Later Stages
+- [Round Vaulted Brick Frame](/docs/definitions/construction/round-vaulted-brick-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/subsurface-foundation-5x10x3.md b/content/docs/definitions/construction/subsurface-foundation-5x10x3.md
new file mode 100644
index 0000000..245f3ef
--- /dev/null
+++ b/content/docs/definitions/construction/subsurface-foundation-5x10x3.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Subsurface Foundation 5x10x3
+linkTitle: Subsurface Foundation 5x10x3
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|12000.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|80.0 kg|
+
+## Later Stages
+- [Vaulted Glass Brick Frame](/docs/definitions/construction/vaulted-glass-brick-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/subsurface-foundation-5x5x3.md b/content/docs/definitions/construction/subsurface-foundation-5x5x3.md
new file mode 100644
index 0000000..5f9c3f5
--- /dev/null
+++ b/content/docs/definitions/construction/subsurface-foundation-5x5x3.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Subsurface Foundation 5x5x3
+linkTitle: Subsurface Foundation 5x5x3
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|8000.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|45.0 kg|
+
+## Later Stages
+- [Small Brick Shed Frame](/docs/definitions/construction/small-brick-shed-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/subsurface-foundation-variable-size.md b/content/docs/definitions/construction/subsurface-foundation-variable-size.md
new file mode 100644
index 0000000..1a98fe6
--- /dev/null
+++ b/content/docs/definitions/construction/subsurface-foundation-variable-size.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Subsurface Foundation Variable Size
+linkTitle: Subsurface Foundation Variable Size
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|2000.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|150.0 kg|
+
+## Later Stages
+- [Brick Tunnel Frame](/docs/definitions/construction/brick-tunnel-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/surface-foundation-12x18.md b/content/docs/definitions/construction/surface-foundation-12x18.md
new file mode 100644
index 0000000..3f6f047
--- /dev/null
+++ b/content/docs/definitions/construction/surface-foundation-12x18.md
@@ -0,0 +1,28 @@
+---
+title: Construction Stage - Surface Foundation 12x18
+linkTitle: Surface Foundation 12x18
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|2400.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|216.0 kg|
+
+## Later Stages
+- [Garage Frame](/docs/definitions/construction/garage-frame)
+- [Large Greenhouse Frame](/docs/definitions/construction/large-greenhouse-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/surface-foundation-2x3.md b/content/docs/definitions/construction/surface-foundation-2x3.md
new file mode 100644
index 0000000..d6d69fd
--- /dev/null
+++ b/content/docs/definitions/construction/surface-foundation-2x3.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Surface Foundation 2x3
+linkTitle: Surface Foundation 2x3
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|400.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|6.0 kg|
+
+## Later Stages
+- [Brick Bin Frame](/docs/definitions/construction/brick-bin-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/surface-foundation-5x10.md b/content/docs/definitions/construction/surface-foundation-5x10.md
new file mode 100644
index 0000000..1fb61ca
--- /dev/null
+++ b/content/docs/definitions/construction/surface-foundation-5x10.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Surface Foundation 5x10
+linkTitle: Surface Foundation 5x10
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|1200.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|50.0 kg|
+
+## Later Stages
+- [Array Frame](/docs/definitions/construction/array-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/surface-foundation-5x5.md b/content/docs/definitions/construction/surface-foundation-5x5.md
new file mode 100644
index 0000000..9114af4
--- /dev/null
+++ b/content/docs/definitions/construction/surface-foundation-5x5.md
@@ -0,0 +1,28 @@
+---
+title: Construction Stage - Surface Foundation 5x5
+linkTitle: Surface Foundation 5x5
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|800.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|25.0 kg|
+
+## Later Stages
+- [Small Steel Frame](/docs/definitions/construction/small-steel-frame)
+- [Steel Frame Tower](/docs/definitions/construction/steel-frame-tower)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/surface-foundation-7x9.md b/content/docs/definitions/construction/surface-foundation-7x9.md
new file mode 100644
index 0000000..4f770bc
--- /dev/null
+++ b/content/docs/definitions/construction/surface-foundation-7x9.md
@@ -0,0 +1,28 @@
+---
+title: Construction Stage - Surface Foundation 7x9
+linkTitle: Surface Foundation 7x9
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|1200.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|63.0 kg|
+
+## Later Stages
+- [Inflatable Frame](/docs/definitions/construction/inflatable-frame)
+- [Medium Modular Frame](/docs/definitions/construction/medium-modular-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/surface-foundation-8x11.md b/content/docs/definitions/construction/surface-foundation-8x11.md
new file mode 100644
index 0000000..5a635b0
--- /dev/null
+++ b/content/docs/definitions/construction/surface-foundation-8x11.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Surface Foundation 8x11
+linkTitle: Surface Foundation 8x11
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|1800.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|88.0 kg|
+
+## Later Stages
+- [Atmospheric Processor Frame](/docs/definitions/construction/atmospheric-processor-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/surface-foundation-9x9.md b/content/docs/definitions/construction/surface-foundation-9x9.md
new file mode 100644
index 0000000..1ce095a
--- /dev/null
+++ b/content/docs/definitions/construction/surface-foundation-9x9.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Surface Foundation 9x9
+linkTitle: Surface Foundation 9x9
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|1400.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|81.0 kg|
+
+## Later Stages
+- [Round Hab Frame](/docs/definitions/construction/round-hab-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/surface-foundation-variable-size.md b/content/docs/definitions/construction/surface-foundation-variable-size.md
new file mode 100644
index 0000000..552ce7c
--- /dev/null
+++ b/content/docs/definitions/construction/surface-foundation-variable-size.md
@@ -0,0 +1,27 @@
+---
+title: Construction Stage - Surface Foundation Variable Size
+linkTitle: Surface Foundation Variable Size
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FOUNDATION|
+|Work Time:|1000.0|
+|Architectural Skill:|1|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|100.0 kg|
+
+## Later Stages
+- [Hallway frame](/docs/definitions/construction/hallway-frame)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/tunnel.md b/content/docs/definitions/construction/tunnel.md
new file mode 100644
index 0000000..02fe6b5
--- /dev/null
+++ b/content/docs/definitions/construction/tunnel.md
@@ -0,0 +1,32 @@
+---
+title: Construction Stage - Tunnel
+linkTitle: Tunnel
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|300.0|
+|Architectural Skill:|1|
+|PreReq:|[Brick Tunnel Frame](/docs/definitions/construction/brick-tunnel-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|1|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|3|
+|[Gasket](/docs/definitions/part/gasket)|Part|4|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|15|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|3|
+|[Valve](/docs/definitions/part/valve)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|3|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/vaulted-glass-brick-frame.md b/content/docs/definitions/construction/vaulted-glass-brick-frame.md
new file mode 100644
index 0000000..4a36870
--- /dev/null
+++ b/content/docs/definitions/construction/vaulted-glass-brick-frame.md
@@ -0,0 +1,41 @@
+---
+title: Construction Stage - Vaulted Glass Brick Frame
+linkTitle: Vaulted Glass Brick Frame
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|FRAME|
+|Work Time:|1000.0|
+|Architectural Skill:|3|
+|PreReq:|[Subsurface Foundation 5x10x3](/docs/definitions/construction/subsurface-foundation-5x10x3)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetylene](/docs/definitions/resource/acetylene)|Resource|0.5 kg|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Brick](/docs/definitions/part/brick)|Part|700|
+|[Concrete](/docs/definitions/resource/concrete)|Resource|50.0 kg|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|6|
+|[Gasket](/docs/definitions/part/gasket)|Part|5|
+|[Glass Sheet](/docs/definitions/part/glass-sheet)|Part|10|
+|[Insulation board](/docs/definitions/part/insulation-board)|Part|10|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|3|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|4|
+|[Steel Truss](/docs/definitions/part/steel-truss)|Part|8|
+|[Valve](/docs/definitions/part/valve)|Part|5|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|6|
+
+## Later Stages
+- [Inground Greenhouse](/docs/definitions/construction/inground-greenhouse)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/wind-turbine.md b/content/docs/definitions/construction/wind-turbine.md
new file mode 100644
index 0000000..f701a25
--- /dev/null
+++ b/content/docs/definitions/construction/wind-turbine.md
@@ -0,0 +1,31 @@
+---
+title: Construction Stage - Wind Turbine
+linkTitle: Wind Turbine
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|3|
+|PreReq:|[Steel Frame Tower](/docs/definitions/construction/steel-frame-tower)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Aerogel tile](/docs/definitions/part/aerogel-tile)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|6|
+|[Turbine Generator](/docs/definitions/part/turbine-generator)|Part|1|
+|[Wind Turbine Blade](/docs/definitions/part/wind-turbine-blade)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|20|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/construction/workshop.md b/content/docs/definitions/construction/workshop.md
new file mode 100644
index 0000000..f905b8e
--- /dev/null
+++ b/content/docs/definitions/construction/workshop.md
@@ -0,0 +1,37 @@
+---
+title: Construction Stage - Workshop
+linkTitle: Workshop
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Type:|BUILDING|
+|Work Time:|1000.0|
+|Architectural Skill:|4|
+|PreReq:|[Medium Modular Frame](/docs/definitions/construction/medium-modular-frame)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Aluminum Sheet](/docs/definitions/part/aluminum-sheet)|Part|10|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|7|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|10|
+|[Polyester resin](/docs/definitions/resource/polyester-resin)|Resource|25.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|50.0 kg|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|10|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|15.0 kg|
+|[Valve](/docs/definitions/part/valve)|Part|7|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|5|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/crew/_index.md b/content/docs/definitions/crew/_index.md
new file mode 100644
index 0000000..4b6f332
--- /dev/null
+++ b/content/docs/definitions/crew/_index.md
@@ -0,0 +1,17 @@
+---
+title: Crew
+description: Predefined Crew for use in Scenarios
+---
+
+
+
+
+{{< alert color="success" >}}These can be changed via the XML file _crew_name.xml_. See [XML Files](/docs/guide/xml-files/){{< /alert >}}
+{{< alert color="success" >}}These can be changed via the UI ConfigEditor.{{< /alert >}}
+
+
+- [Alpha](../crew/alpha)
+- [Founders](../crew/founders)
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/crew/alpha.md b/content/docs/definitions/crew/alpha.md
new file mode 100644
index 0000000..63b07ce
--- /dev/null
+++ b/content/docs/definitions/crew/alpha.md
@@ -0,0 +1,22 @@
+---
+title: Crew - Alpha
+linkTitle: Alpha
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Preloaded Alpha crew
+
+## Members
+
+|Name|Gender|Age|Job|Country|Sponsor|
+|----|------|---|---|-------|-------|
+|Karen Andersen|Female|37|Botanist|United States||
+|Rik Declercq|Male||Areologist|United States||
+|Leonardo DaVinci|Male||Engineer|United States||
+|Lena LaGranda|Female||Technician|United States||
+|Ray Bradbury|Male|50|Doctor|United States||
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/crew/founders.md b/content/docs/definitions/crew/founders.md
new file mode 100644
index 0000000..3091234
--- /dev/null
+++ b/content/docs/definitions/crew/founders.md
@@ -0,0 +1,22 @@
+---
+title: Crew - Founders
+linkTitle: Founders
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Project contributors
+
+## Members
+
+|Name|Gender|Age|Job|Country|Sponsor|
+|----|------|---|---|-------|-------|
+|Manny Kung|Male||Botanist|United States||
+|Lars Christensen|Male||Areologist|Denmark||
+|Scott Davis|Male||Engineer|United States||
+|Dennis Krenz|Male||Technician|Germany||
+|Barry Evans|Male||Doctor|United Kingdom||
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/food/_index.md b/content/docs/definitions/food/_index.md
new file mode 100644
index 0000000..d40bb9f
--- /dev/null
+++ b/content/docs/definitions/food/_index.md
@@ -0,0 +1,91 @@
+---
+title: Food Recipe
+description: Recipe (Food Process) to create Food
+---
+
+
+
+
+{{< alert color="success" >}}These can be changed via the XML file _food_production.xml_. See [XML Files](/docs/guide/xml-files/){{< /alert >}}
+
+
+- [Bake Wheat Bread from Wheat Flour](../food/bake-wheat-bread-from-wheat-flour)
+- [Bake Wheat Bun from Wheat Flour](../food/bake-wheat-bun-from-wheat-flour)
+- [Bake White Bread from Soy Flour](../food/bake-white-bread-from-soy-flour)
+- [Chop and Roast Peanuts in Oven](../food/chop-and-roast-peanuts-in-oven)
+- [Derive Sugar, Cane Fiber, Bagasse, Sugarcane Juice from Sugarcane](../food/derive-sugar--cane-fiber--bagasse--sugarcane-juice-from-sugarcane)
+- [Expel Soybean Oil from Soybean](../food/expel-soybean-oil-from-soybean)
+- [Extract Minerals from Soybean Ash](../food/extract-minerals-from-soybean-ash)
+- [Extract Soy Protein from Soy Flour](../food/extract-soy-protein-from-soy-flour)
+- [Make Black Oncom from Okara](../food/make-black-oncom-from-okara)
+- [Make Blueberry Muffin](../food/make-blueberry-muffin)
+- [Make Cranberry Juice from Cranberry](../food/make-cranberry-juice-from-cranberry)
+- [Make Cranberry Sauce from Cranberry](../food/make-cranberry-sauce-from-cranberry)
+- [Make French Fries from Potatoes](../food/make-french-fries-from-potatoes)
+- [Make French Fries from Potatoes Recipe #1](../food/make-french-fries-from-potatoes-recipe--1)
+- [Make Granola Bar](../food/make-granola-bar)
+- [Make Granola Bar Recipe #1](../food/make-granola-bar-recipe--1)
+- [Make Granola Bar Recipe #2](../food/make-granola-bar-recipe--2)
+- [Make Granola Bar Recipe #3](../food/make-granola-bar-recipe--3)
+- [Make Granola Bar Recipe #4](../food/make-granola-bar-recipe--4)
+- [Make Immune Booster](../food/make-immune-booster)
+- [Make Ketchup from Tomatoes](../food/make-ketchup-from-tomatoes)
+- [Make Miso by Fermentation](../food/make-miso-by-fermentation)
+- [Make Mustard](../food/make-mustard)
+- [Make Okara Blueberry Muffin](../food/make-okara-blueberry-muffin)
+- [Make Okara Protein Bar](../food/make-okara-protein-bar)
+- [Make Okara Protein Bar Recipe #1](../food/make-okara-protein-bar-recipe--1)
+- [Make Okara Protein Bar Recipe #2](../food/make-okara-protein-bar-recipe--2)
+- [Make Okara Protein Bar Recipe #3](../food/make-okara-protein-bar-recipe--3)
+- [Make Okara Protein Bar Recipe #4](../food/make-okara-protein-bar-recipe--4)
+- [Make Okara and Soymilk from Soybeans](../food/make-okara-and-soymilk-from-soybeans)
+- [Make Peanut Butter from Peanuts](../food/make-peanut-butter-from-peanuts)
+- [Make Pizza Dough](../food/make-pizza-dough)
+- [Make Quinoa Sprouts from Quinoa](../food/make-quinoa-sprouts-from-quinoa)
+- [Make Rice Noodles from Rice Flour](../food/make-rice-noodles-from-rice-flour)
+- [Make Rice Vinegar by Fermentation](../food/make-rice-vinegar-by-fermentation)
+- [Make Sesame Milk from Soymilk](../food/make-sesame-milk-from-soymilk)
+- [Make Soy Sauce by Fermentation](../food/make-soy-sauce-by-fermentation)
+- [Make Soy Sprouts from Soybeans](../food/make-soy-sprouts-from-soybeans)
+- [Make Soymilk and Tofu from Soybeans, Water, and Epsom Salt](../food/make-soymilk-and-tofu-from-soybeans--water--and-epsom-salt)
+- [Make Soymilk and Tofu from Soybeans, Water, and Vinegar](../food/make-soymilk-and-tofu-from-soybeans--water--and-vinegar)
+- [Make Tempeh from Soybeans](../food/make-tempeh-from-soybeans)
+- [Make Tempeh from half Soybeans and half Okara](../food/make-tempeh-from-half-soybeans-and-half-okara)
+- [Make Tofu and Tempeh from Soybeans and Epsom Salt (large batch)](../food/make-tofu-and-tempeh-from-soybeans-and-epsom-salt--large-batch-)
+- [Make Tofu and Tempeh from Soybeans and Vinegar (large batch)](../food/make-tofu-and-tempeh-from-soybeans-and-vinegar--large-batch-)
+- [Make Tofu from Soybeans, Water, and Epsom Salt (large batch)](../food/make-tofu-from-soybeans--water--and-epsom-salt--large-batch-)
+- [Make Tofu from Soybeans, Water, and Vinegar (large batch)](../food/make-tofu-from-soybeans--water--and-vinegar--large-batch-)
+- [Make Tofu from Soymilk and Calcium Sulfate](../food/make-tofu-from-soymilk-and-calcium-sulfate)
+- [Make Tofu from Soymilk and Epsom Salt](../food/make-tofu-from-soymilk-and-epsom-salt)
+- [Make Tofu from Soymilk and Vinegar](../food/make-tofu-from-soymilk-and-vinegar)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt](../food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Vinegar](../food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar)
+- [Make Veggie Patty from Quinoa Tempeh and Spice](../food/make-veggie-patty-from-quinoa-tempeh-and-spice)
+- [Make Veggie Patty from Veg, Okara and Spice](../food/make-veggie-patty-from-veg--okara-and-spice)
+- [Make Veggie Patty from Veg, Tempeh and Spice](../food/make-veggie-patty-from-veg--tempeh-and-spice)
+- [Make Veggie Patty from Veg, Tofu and Spice](../food/make-veggie-patty-from-veg--tofu-and-spice)
+- [Make Wheat Noodles from Wheat Flour](../food/make-wheat-noodles-from-wheat-flour)
+- [Make fish patty from fish meat](../food/make-fish-patty-from-fish-meat)
+- [Package Preserved Food](../food/package-preserved-food)
+- [Package Preserved Food Recipe #1](../food/package-preserved-food-recipe--1)
+- [Package Preserved Food Recipe #2](../food/package-preserved-food-recipe--2)
+- [Package Preserved Food Recipe #3](../food/package-preserved-food-recipe--3)
+- [Package Preserved Food Recipe #4](../food/package-preserved-food-recipe--4)
+- [Package Roast Peanuts into Dry Food](../food/package-roast-peanuts-into-dry-food)
+- [Press Garlic Oil from Garlic](../food/press-garlic-oil-from-garlic)
+- [Press Olive Oil from Olive](../food/press-olive-oil-from-olive)
+- [Press Sesame Oil from Sesame Seeds](../food/press-sesame-oil-from-sesame-seeds)
+- [Press and Refine Peanut Oil from Peanuts](../food/press-and-refine-peanut-oil-from-peanuts)
+- [Process Brown Rice into Rice Flour](../food/process-brown-rice-into-rice-flour)
+- [Process Brown Rice into White Rice](../food/process-brown-rice-into-white-rice)
+- [Process Rice into Brown Rice](../food/process-rice-into-brown-rice)
+- [Process Rice into White Rice and rice bran oil](../food/process-rice-into-white-rice-and-rice-bran-oil)
+- [Process Soybean into Soy Flour](../food/process-soybean-into-soy-flour)
+- [Process Wheat into Wheat Flour](../food/process-wheat-into-wheat-flour)
+- [Process White Rice into Rice Flour](../food/process-white-rice-into-rice-flour)
+- [Process fish oil from fish meat](../food/process-fish-oil-from-fish-meat)
+- [Produce Fiber Cloth from Cane or Soy Fiber](../food/produce-fiber-cloth-from-cane-or-soy-fiber)
+- [Produce Fiber Cloth from Cane or Soy Fiber Recipe #1](../food/produce-fiber-cloth-from-cane-or-soy-fiber-recipe--1)
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/food/bake-wheat-bread-from-wheat-flour.md b/content/docs/definitions/food/bake-wheat-bread-from-wheat-flour.md
new file mode 100644
index 0000000..71177d4
--- /dev/null
+++ b/content/docs/definitions/food/bake-wheat-bread-from-wheat-flour.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Bake Wheat Bread from Wheat Flour
+linkTitle: Bake Wheat Bread from Wheat Flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Bake Wheat Bread from Wheat Flour
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|250.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Water](/docs/definitions/resource/water)|Resource|0.33 kg|
+|[Wheat Flour](/docs/definitions/resource/wheat-flour)|Resource|1.0 kg|
+|[Yeast](/docs/definitions/resource/yeast)|Resource|0.01 kg|
+|[oven](/docs/definitions/part/oven)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Wheat Bread](/docs/definitions/resource/wheat-bread)|1.0 kg|
+|[oven](/docs/definitions/part/oven)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/bake-wheat-bun-from-wheat-flour.md b/content/docs/definitions/food/bake-wheat-bun-from-wheat-flour.md
new file mode 100644
index 0000000..a235957
--- /dev/null
+++ b/content/docs/definitions/food/bake-wheat-bun-from-wheat-flour.md
@@ -0,0 +1,42 @@
+---
+title: Food Recipe - Bake Wheat Bun from Wheat Flour
+linkTitle: Bake Wheat Bun from Wheat Flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Bake Wheat Burger Bun from Wheat Flour
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|250.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Sesame Seed](/docs/definitions/resource/sesame-seed)|Resource|0.05 kg|
+|[Water](/docs/definitions/resource/water)|Resource|1.0 kg|
+|[Wheat Flour](/docs/definitions/resource/wheat-flour)|Resource|0.95 kg|
+|[Yeast](/docs/definitions/resource/yeast)|Resource|0.01 kg|
+|[oven](/docs/definitions/part/oven)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Wheat Bun](/docs/definitions/resource/wheat-bun)|1.0 kg|
+|[oven](/docs/definitions/part/oven)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/bake-white-bread-from-soy-flour.md b/content/docs/definitions/food/bake-white-bread-from-soy-flour.md
new file mode 100644
index 0000000..c61499e
--- /dev/null
+++ b/content/docs/definitions/food/bake-white-bread-from-soy-flour.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Bake White Bread from Soy Flour
+linkTitle: Bake White Bread from Soy Flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Make 2 loaves of White Bread from Soy Flour
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Soy Flour](/docs/definitions/resource/soy-flour)|Resource|1.0 kg|
+|[Water](/docs/definitions/resource/water)|Resource|0.33 kg|
+|[Yeast](/docs/definitions/resource/yeast)|Resource|0.01 kg|
+|[oven](/docs/definitions/part/oven)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[White Bread](/docs/definitions/resource/white-bread)|1.2 kg|
+|[oven](/docs/definitions/part/oven)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/chop-and-roast-peanuts-in-oven.md b/content/docs/definitions/food/chop-and-roast-peanuts-in-oven.md
new file mode 100644
index 0000000..837b421
--- /dev/null
+++ b/content/docs/definitions/food/chop-and-roast-peanuts-in-oven.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Chop and Roast Peanuts in Oven
+linkTitle: Chop and Roast Peanuts in Oven
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Chopped up peanuts and roast them in oven
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|300.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|5.0 kg|
+|[oven](/docs/definitions/part/oven)|Part|1|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.5 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Roasted Peanut](/docs/definitions/resource/roasted-peanut)|5.0 kg|
+|[oven](/docs/definitions/part/oven)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/derive-sugar--cane-fiber--bagasse--sugarcane-juice-from-sugarcane.md b/content/docs/definitions/food/derive-sugar--cane-fiber--bagasse--sugarcane-juice-from-sugarcane.md
new file mode 100644
index 0000000..1c4d15c
--- /dev/null
+++ b/content/docs/definitions/food/derive-sugar--cane-fiber--bagasse--sugarcane-juice-from-sugarcane.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Derive Sugar, Cane Fiber, Bagasse, Sugarcane Juice from Sugarcane
+linkTitle: Derive Sugar, Cane Fiber, Bagasse, Sugarcane Juice from Sugarcane
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Derive Sugar from Sugarcane. The juice is obtained by
crushing peeled sugarcane in a mill or by hand cranked machine.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Sugarcane](/docs/definitions/resource/sugarcane)|Resource|10.0 kg|
+|[Water](/docs/definitions/resource/water)|Resource|1.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|1.6 kg|
+|[Sugar](/docs/definitions/resource/sugar)|1.6 kg|
+|[Sugarcane Juice](/docs/definitions/resource/sugarcane-juice)|7.3 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/expel-soybean-oil-from-soybean.md b/content/docs/definitions/food/expel-soybean-oil-from-soybean.md
new file mode 100644
index 0000000..63838ae
--- /dev/null
+++ b/content/docs/definitions/food/expel-soybean-oil-from-soybean.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Expel Soybean Oil from Soybean
+linkTitle: Expel Soybean Oil from Soybean
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Cracking, Screening, Heating at 130 deg C, Hot extrusion, Pressure at 40-60 MPa. Screening and Decantation of Oil
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|2.5 kg|
+|[oven](/docs/definitions/part/oven)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Food Waste](/docs/definitions/resource/food-waste)|2.063 kg|
+|[Soybean Oil](/docs/definitions/resource/soybean-oil)|0.437 kg|
+|[oven](/docs/definitions/part/oven)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/extract-minerals-from-soybean-ash.md b/content/docs/definitions/food/extract-minerals-from-soybean-ash.md
new file mode 100644
index 0000000..9cad03b
--- /dev/null
+++ b/content/docs/definitions/food/extract-minerals-from-soybean-ash.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Extract Minerals from Soybean Ash
+linkTitle: Extract Minerals from Soybean Ash
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Extract minerals from Soybean Ash.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|50.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Soybean Ash](/docs/definitions/resource/soybean-ash)|Resource|1.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Calcium](/docs/definitions/resource/calcium)|0.028 kg|
+|[Magnesium](/docs/definitions/resource/magnesium)|0.028 kg|
+|[Phosphorus](/docs/definitions/resource/phosphorus)|0.07 kg|
+|[Potassium](/docs/definitions/resource/potassium)|0.018 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/extract-soy-protein-from-soy-flour.md b/content/docs/definitions/food/extract-soy-protein-from-soy-flour.md
new file mode 100644
index 0000000..a8e7eae
--- /dev/null
+++ b/content/docs/definitions/food/extract-soy-protein-from-soy-flour.md
@@ -0,0 +1,38 @@
+---
+title: Food Recipe - Extract Soy Protein from Soy Flour
+linkTitle: Extract Soy Protein from Soy Flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Create Defatted Soy Proteins from Soy Flour by Alkaline extraction, Centrifugation, Acid Precipitation of Proteins, Centrifugation, Washing, Spry Drying and Isolation of Proteins
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|400.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Soy Flour](/docs/definitions/resource/soy-flour)|Resource|1.0 kg|
+|[Water](/docs/definitions/resource/water)|Resource|3.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Soy Protein](/docs/definitions/resource/soy-protein)|1.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-black-oncom-from-okara.md b/content/docs/definitions/food/make-black-oncom-from-okara.md
new file mode 100644
index 0000000..d6818a7
--- /dev/null
+++ b/content/docs/definitions/food/make-black-oncom-from-okara.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Make Black Oncom from Okara
+linkTitle: Make Black Oncom from Okara
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Moisten Okara with vinegar, add Rhizopus oligosporus starter, and
allow to ferment.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|10500.0 millisols|
+|Work Level:|71.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Okara](/docs/definitions/resource/okara)|Resource|2.9 kg|
+|[Rhizopus oligosporus](/docs/definitions/resource/rhizopus-oligosporus)|Resource|0.0029 kg|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.174 kg|
+|[autoclave](/docs/definitions/part/autoclave)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Tempeh](/docs/definitions/resource/tempeh)|2.2 kg|
+|[autoclave](/docs/definitions/part/autoclave)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-blueberry-muffin.md b/content/docs/definitions/food/make-blueberry-muffin.md
new file mode 100644
index 0000000..f8b1390
--- /dev/null
+++ b/content/docs/definitions/food/make-blueberry-muffin.md
@@ -0,0 +1,43 @@
+---
+title: Food Recipe - Make Blueberry Muffin
+linkTitle: Make Blueberry Muffin
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Mix flour, sugar, salt, baking powder, honey, and blueberry
and bake in preheated oven at 200 deg C.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Baking Powder](/docs/definitions/resource/baking-powder)|Resource|0.1 kg|
+|[Blueberry](/docs/definitions/resource/blueberry)|Resource|0.2 kg|
+|[Honey](/docs/definitions/resource/honey)|Resource|0.1 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.2 kg|
+|[Water](/docs/definitions/resource/water)|Resource|2.0 kg|
+|[Wheat Flour](/docs/definitions/resource/wheat-flour)|Resource|1.5 kg|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.1 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Blueberry Muffin](/docs/definitions/resource/blueberry-muffin)|2.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-cranberry-juice-from-cranberry.md b/content/docs/definitions/food/make-cranberry-juice-from-cranberry.md
new file mode 100644
index 0000000..245a233
--- /dev/null
+++ b/content/docs/definitions/food/make-cranberry-juice-from-cranberry.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Make Cranberry Juice from Cranberry
+linkTitle: Make Cranberry Juice from Cranberry
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The juice is obtained by
crushing cranberries in a mill or by hand cranked machine.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Cranberry](/docs/definitions/resource/cranberry)|Resource|2.0 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|1.0 kg|
+|[Water](/docs/definitions/resource/water)|Resource|7.0 kg|
+|[blender](/docs/definitions/part/blender)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Cranberry Juice](/docs/definitions/resource/cranberry-juice)|10.0 kg|
+|[blender](/docs/definitions/part/blender)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-cranberry-sauce-from-cranberry.md b/content/docs/definitions/food/make-cranberry-sauce-from-cranberry.md
new file mode 100644
index 0000000..f7469d7
--- /dev/null
+++ b/content/docs/definitions/food/make-cranberry-sauce-from-cranberry.md
@@ -0,0 +1,43 @@
+---
+title: Food Recipe - Make Cranberry Sauce from Cranberry
+linkTitle: Make Cranberry Sauce from Cranberry
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Add sugar, salt, ginger to cranberries and cook in the pan over low heat, stirring occasionally for 10 mins,
until the sugar dissolves and the cranberries are soft. Increase the heat to medium and cook until the
cranberries burst in a few minutes. Reduce the heat to low and stir in the reserved cranberries.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Cranberry](/docs/definitions/resource/cranberry)|Resource|2.0 kg|
+|[Ginger](/docs/definitions/resource/ginger)|Resource|0.2 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.5 kg|
+|[Water](/docs/definitions/resource/water)|Resource|1.0 kg|
+|[blender](/docs/definitions/part/blender)|Part|1|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.15 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Cranberry Sauce](/docs/definitions/resource/cranberry-sauce)|2.0 kg|
+|[blender](/docs/definitions/part/blender)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-fish-patty-from-fish-meat.md b/content/docs/definitions/food/make-fish-patty-from-fish-meat.md
new file mode 100644
index 0000000..3a7ef8d
--- /dev/null
+++ b/content/docs/definitions/food/make-fish-patty-from-fish-meat.md
@@ -0,0 +1,38 @@
+---
+title: Food Recipe - Make fish patty from fish meat
+linkTitle: Make fish patty from fish meat
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A fish patty is made of
textured fish meat and other ingredients.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|25.0 millisols|
+|Work Level:|25.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[fish meat](/docs/definitions/resource/fish-meat)|Resource|3.0 kg|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.01 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[fish patty](/docs/definitions/resource/fish-patty)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-french-fries-from-potatoes-recipe--1.md b/content/docs/definitions/food/make-french-fries-from-potatoes-recipe--1.md
new file mode 100644
index 0000000..128a507
--- /dev/null
+++ b/content/docs/definitions/food/make-french-fries-from-potatoes-recipe--1.md
@@ -0,0 +1,38 @@
+---
+title: Food Recipe - Make French Fries from Potatoes Recipe #1
+linkTitle: Make French Fries from Potatoes Recipe #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Cut potatoes and make French Fries.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.7 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Potato](/docs/definitions/resource/potato)|Resource|10.0 kg|
+|[Soybean Oil](/docs/definitions/resource/soybean-oil)|Resource|1.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[French Fries](/docs/definitions/resource/french-fries)|10.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-french-fries-from-potatoes.md b/content/docs/definitions/food/make-french-fries-from-potatoes.md
new file mode 100644
index 0000000..a273b6b
--- /dev/null
+++ b/content/docs/definitions/food/make-french-fries-from-potatoes.md
@@ -0,0 +1,38 @@
+---
+title: Food Recipe - Make French Fries from Potatoes
+linkTitle: Make French Fries from Potatoes
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Cut potatoes and make French Fries.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.7 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Peanut Oil](/docs/definitions/resource/peanut-oil)|Resource|1.0 kg|
+|[Potato](/docs/definitions/resource/potato)|Resource|10.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[French Fries](/docs/definitions/resource/french-fries)|10.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-granola-bar-recipe--1.md b/content/docs/definitions/food/make-granola-bar-recipe--1.md
new file mode 100644
index 0000000..d451d4a
--- /dev/null
+++ b/content/docs/definitions/food/make-granola-bar-recipe--1.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Make Granola Bar Recipe #1
+linkTitle: Make Granola Bar Recipe #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Make granola bar using puffed quinoa/rice/wheat, honey/sugarcane, nuts and dried fruits.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|1.0 kg|
+|[Quinoa](/docs/definitions/resource/quinoa)|Resource|4.0 kg|
+|[Strawberry](/docs/definitions/resource/strawberry)|Resource|0.5 kg|
+|[Sugarcane Juice](/docs/definitions/resource/sugarcane-juice)|Resource|0.5 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Granola Bar](/docs/definitions/resource/granola-bar)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-granola-bar-recipe--2.md b/content/docs/definitions/food/make-granola-bar-recipe--2.md
new file mode 100644
index 0000000..e2b0029
--- /dev/null
+++ b/content/docs/definitions/food/make-granola-bar-recipe--2.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Make Granola Bar Recipe #2
+linkTitle: Make Granola Bar Recipe #2
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Make granola bar using puffed quinoa/rice/wheat, honey/sugarcane, nuts and dried fruits.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Blueberry](/docs/definitions/resource/blueberry)|Resource|0.5 kg|
+|[Honey](/docs/definitions/resource/honey)|Resource|0.5 kg|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|1.0 kg|
+|[Quinoa](/docs/definitions/resource/quinoa)|Resource|4.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Granola Bar](/docs/definitions/resource/granola-bar)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-granola-bar-recipe--3.md b/content/docs/definitions/food/make-granola-bar-recipe--3.md
new file mode 100644
index 0000000..33ef77c
--- /dev/null
+++ b/content/docs/definitions/food/make-granola-bar-recipe--3.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Make Granola Bar Recipe #3
+linkTitle: Make Granola Bar Recipe #3
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Make granola bar using puffed quinoa/rice/wheat, honey/sugarcane, nuts and dried fruits.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Honey](/docs/definitions/resource/honey)|Resource|0.5 kg|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|1.0 kg|
+|[Strawberry](/docs/definitions/resource/strawberry)|Resource|0.5 kg|
+|[Wheat](/docs/definitions/resource/wheat)|Resource|4.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Granola Bar](/docs/definitions/resource/granola-bar)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-granola-bar-recipe--4.md b/content/docs/definitions/food/make-granola-bar-recipe--4.md
new file mode 100644
index 0000000..43501cb
--- /dev/null
+++ b/content/docs/definitions/food/make-granola-bar-recipe--4.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Make Granola Bar Recipe #4
+linkTitle: Make Granola Bar Recipe #4
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Make granola bar using puffed quinoa/rice/wheat, honey/sugarcane, nuts and dried fruits.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Honey](/docs/definitions/resource/honey)|Resource|0.5 kg|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|1.0 kg|
+|[Rice](/docs/definitions/resource/rice)|Resource|4.0 kg|
+|[Strawberry](/docs/definitions/resource/strawberry)|Resource|0.5 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Granola Bar](/docs/definitions/resource/granola-bar)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-granola-bar.md b/content/docs/definitions/food/make-granola-bar.md
new file mode 100644
index 0000000..be51d46
--- /dev/null
+++ b/content/docs/definitions/food/make-granola-bar.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Make Granola Bar
+linkTitle: Make Granola Bar
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Make granola bar using puffed quinoa/rice/wheat, honey/sugarcane, nuts and dried fruits.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Honey](/docs/definitions/resource/honey)|Resource|0.5 kg|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|1.0 kg|
+|[Quinoa](/docs/definitions/resource/quinoa)|Resource|4.0 kg|
+|[Strawberry](/docs/definitions/resource/strawberry)|Resource|0.5 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Granola Bar](/docs/definitions/resource/granola-bar)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-immune-booster.md b/content/docs/definitions/food/make-immune-booster.md
new file mode 100644
index 0000000..0c7630c
--- /dev/null
+++ b/content/docs/definitions/food/make-immune-booster.md
@@ -0,0 +1,43 @@
+---
+title: Food Recipe - Make Immune Booster
+linkTitle: Make Immune Booster
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Make Immune Booster with minerals and fiber
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|100.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Blueberry](/docs/definitions/resource/blueberry)|Resource|0.02 kg|
+|[Calcium](/docs/definitions/resource/calcium)|Resource|0.028 kg|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.1 kg|
+|[Magnesium](/docs/definitions/resource/magnesium)|Resource|0.028 kg|
+|[Phosphorus](/docs/definitions/resource/phosphorus)|Resource|0.07 kg|
+|[Potassium](/docs/definitions/resource/potassium)|Resource|0.018 kg|
+|[Zinc](/docs/definitions/resource/zinc)|Resource|0.01 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Immune Booster](/docs/definitions/resource/immune-booster)|0.2 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-ketchup-from-tomatoes.md b/content/docs/definitions/food/make-ketchup-from-tomatoes.md
new file mode 100644
index 0000000..f35a521
--- /dev/null
+++ b/content/docs/definitions/food/make-ketchup-from-tomatoes.md
@@ -0,0 +1,47 @@
+---
+title: Food Recipe - Make Ketchup from Tomatoes
+linkTitle: Make Ketchup from Tomatoes
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Cook tomatoes. Then grind them with garlic, onions, vinegar, and spice.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Garlic](/docs/definitions/resource/garlic)|Resource|0.022 kg|
+|[Mustard](/docs/definitions/resource/mustard)|Resource|0.0092 kg|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.443 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.367 kg|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|2|
+|[stove](/docs/definitions/part/stove)|Part|1|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.0105 kg|
+|[tomato](/docs/definitions/resource/tomato)|Resource|5.0 kg|
+|[white onion](/docs/definitions/resource/white-onion)|Resource|0.267 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Ketchup](/docs/definitions/resource/ketchup)|5.0 kg|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|2|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-miso-by-fermentation.md b/content/docs/definitions/food/make-miso-by-fermentation.md
new file mode 100644
index 0000000..1dc6b69
--- /dev/null
+++ b/content/docs/definitions/food/make-miso-by-fermentation.md
@@ -0,0 +1,49 @@
+---
+title: Food Recipe - Make Miso by Fermentation
+linkTitle: Make Miso by Fermentation
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Clean bottle with bleach. Soybeans are soaked and fermented with rice and brine to produce a thick paste.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|62000.0 millisols|
+|Work Level:|150.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Aspergillus Mix](/docs/definitions/resource/aspergillus-mix)|Resource|0.001 kg|
+|[Rice](/docs/definitions/resource/rice)|Resource|0.4 kg|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|0.7 kg|
+|[Water](/docs/definitions/resource/water)|Resource|5.25 kg|
+|[autoclave](/docs/definitions/part/autoclave)|Part|1|
+|[blender](/docs/definitions/part/blender)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|1|
+|[sodium hypochlorite](/docs/definitions/resource/sodium-hypochlorite)|Resource|0.002 kg|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.3 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|3.54 kg|
+|[Miso](/docs/definitions/resource/miso)|2.81 kg|
+|[autoclave](/docs/definitions/part/autoclave)|1|
+|[blender](/docs/definitions/part/blender)|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-mustard.md b/content/docs/definitions/food/make-mustard.md
new file mode 100644
index 0000000..b8e61c2
--- /dev/null
+++ b/content/docs/definitions/food/make-mustard.md
@@ -0,0 +1,42 @@
+---
+title: Food Recipe - Make Mustard
+linkTitle: Make Mustard
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Soak seeds, crush and ground. Hulls and bran are sifted out. Liquids added to the seed flour.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Mustard Seed](/docs/definitions/resource/mustard-seed)|Resource|0.5 kg|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.1 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.4 kg|
+|[Water](/docs/definitions/resource/water)|Resource|4.0 kg|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|2|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Mustard](/docs/definitions/resource/mustard)|5.0 kg|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-okara-and-soymilk-from-soybeans.md b/content/docs/definitions/food/make-okara-and-soymilk-from-soybeans.md
new file mode 100644
index 0000000..c0d3df2
--- /dev/null
+++ b/content/docs/definitions/food/make-okara-and-soymilk-from-soybeans.md
@@ -0,0 +1,45 @@
+---
+title: Food Recipe - Make Okara and Soymilk from Soybeans
+linkTitle: Make Okara and Soymilk from Soybeans
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Make pulp (Okara) and Soymilk from Soybean after
Washing, Dehulling, Soaking, Milling, Paste
Heating, and Filtration.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|70.0 millisols|
+|Work Level:|30.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|0.95 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.0465 kg|
+|[Water](/docs/definitions/resource/water)|Resource|10.5 kg|
+|[blender](/docs/definitions/part/blender)|Part|1|
+|[stove](/docs/definitions/part/stove)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|1.9 kg|
+|[Okara](/docs/definitions/resource/okara)|1.045 kg|
+|[Soymilk](/docs/definitions/resource/soymilk)|5.0 kg|
+|[blender](/docs/definitions/part/blender)|1|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-okara-blueberry-muffin.md b/content/docs/definitions/food/make-okara-blueberry-muffin.md
new file mode 100644
index 0000000..1e4e6bd
--- /dev/null
+++ b/content/docs/definitions/food/make-okara-blueberry-muffin.md
@@ -0,0 +1,44 @@
+---
+title: Food Recipe - Make Okara Blueberry Muffin
+linkTitle: Make Okara Blueberry Muffin
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Mix flour, sugar, salt, baking powder, honey, and blueberry
and bake in preheated oven at 200 deg C.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Baking Powder](/docs/definitions/resource/baking-powder)|Resource|0.1 kg|
+|[Blueberry](/docs/definitions/resource/blueberry)|Resource|0.2 kg|
+|[Honey](/docs/definitions/resource/honey)|Resource|0.1 kg|
+|[Okara](/docs/definitions/resource/okara)|Resource|0.35 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.15 kg|
+|[Water](/docs/definitions/resource/water)|Resource|2.0 kg|
+|[Wheat Flour](/docs/definitions/resource/wheat-flour)|Resource|1.3 kg|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.1 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Blueberry Muffin](/docs/definitions/resource/blueberry-muffin)|2.1 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-okara-protein-bar-recipe--1.md b/content/docs/definitions/food/make-okara-protein-bar-recipe--1.md
new file mode 100644
index 0000000..2036835
--- /dev/null
+++ b/content/docs/definitions/food/make-okara-protein-bar-recipe--1.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Make Okara Protein Bar Recipe #1
+linkTitle: Make Okara Protein Bar Recipe #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Make protein bars using puffed quinoa/rice/wheat, honey/sugarcane juice, nuts and dried fruits.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Okara](/docs/definitions/resource/okara)|Resource|2.0 kg|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|1.0 kg|
+|[Quinoa](/docs/definitions/resource/quinoa)|Resource|2.0 kg|
+|[Strawberry](/docs/definitions/resource/strawberry)|Resource|0.5 kg|
+|[Sugarcane Juice](/docs/definitions/resource/sugarcane-juice)|Resource|0.5 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Protein Bar](/docs/definitions/resource/protein-bar)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-okara-protein-bar-recipe--2.md b/content/docs/definitions/food/make-okara-protein-bar-recipe--2.md
new file mode 100644
index 0000000..d9f2416
--- /dev/null
+++ b/content/docs/definitions/food/make-okara-protein-bar-recipe--2.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Make Okara Protein Bar Recipe #2
+linkTitle: Make Okara Protein Bar Recipe #2
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Make protein bars using puffed quinoa/rice/wheat, honey/sugarcane juice, nuts and dried fruits.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Blueberry](/docs/definitions/resource/blueberry)|Resource|0.5 kg|
+|[Honey](/docs/definitions/resource/honey)|Resource|0.5 kg|
+|[Okara](/docs/definitions/resource/okara)|Resource|2.0 kg|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|1.0 kg|
+|[Quinoa](/docs/definitions/resource/quinoa)|Resource|2.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Protein Bar](/docs/definitions/resource/protein-bar)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-okara-protein-bar-recipe--3.md b/content/docs/definitions/food/make-okara-protein-bar-recipe--3.md
new file mode 100644
index 0000000..5e84503
--- /dev/null
+++ b/content/docs/definitions/food/make-okara-protein-bar-recipe--3.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Make Okara Protein Bar Recipe #3
+linkTitle: Make Okara Protein Bar Recipe #3
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Make protein bars using puffed quinoa/rice/wheat, honey/sugarcane juice, nuts and dried fruits.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Honey](/docs/definitions/resource/honey)|Resource|0.5 kg|
+|[Okara](/docs/definitions/resource/okara)|Resource|2.0 kg|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|1.0 kg|
+|[Strawberry](/docs/definitions/resource/strawberry)|Resource|0.5 kg|
+|[Wheat](/docs/definitions/resource/wheat)|Resource|2.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Protein Bar](/docs/definitions/resource/protein-bar)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-okara-protein-bar-recipe--4.md b/content/docs/definitions/food/make-okara-protein-bar-recipe--4.md
new file mode 100644
index 0000000..514a1a1
--- /dev/null
+++ b/content/docs/definitions/food/make-okara-protein-bar-recipe--4.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Make Okara Protein Bar Recipe #4
+linkTitle: Make Okara Protein Bar Recipe #4
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Make protein bars using puffed quinoa/rice/wheat, honey/sugarcane juice, nuts and dried fruits.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Honey](/docs/definitions/resource/honey)|Resource|0.5 kg|
+|[Okara](/docs/definitions/resource/okara)|Resource|2.0 kg|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|1.0 kg|
+|[Rice](/docs/definitions/resource/rice)|Resource|2.0 kg|
+|[Strawberry](/docs/definitions/resource/strawberry)|Resource|0.5 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Protein Bar](/docs/definitions/resource/protein-bar)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-okara-protein-bar.md b/content/docs/definitions/food/make-okara-protein-bar.md
new file mode 100644
index 0000000..8da2b3d
--- /dev/null
+++ b/content/docs/definitions/food/make-okara-protein-bar.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Make Okara Protein Bar
+linkTitle: Make Okara Protein Bar
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Make protein bars using puffed quinoa/rice/wheat, honey/sugarcane juice, nuts and dried fruits.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Honey](/docs/definitions/resource/honey)|Resource|0.5 kg|
+|[Okara](/docs/definitions/resource/okara)|Resource|2.0 kg|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|1.0 kg|
+|[Quinoa](/docs/definitions/resource/quinoa)|Resource|2.0 kg|
+|[Strawberry](/docs/definitions/resource/strawberry)|Resource|0.5 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Protein Bar](/docs/definitions/resource/protein-bar)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-peanut-butter-from-peanuts.md b/content/docs/definitions/food/make-peanut-butter-from-peanuts.md
new file mode 100644
index 0000000..c4e9a57
--- /dev/null
+++ b/content/docs/definitions/food/make-peanut-butter-from-peanuts.md
@@ -0,0 +1,42 @@
+---
+title: Food Recipe - Make Peanut Butter from Peanuts
+linkTitle: Make Peanut Butter from Peanuts
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Ground peanuts, mix with oil, pour the mixture into food processor.
Blend until smooth.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|3.0 kg|
+|[Soy Protein](/docs/definitions/resource/soy-protein)|Resource|0.1 kg|
+|[Soybean Oil](/docs/definitions/resource/soybean-oil)|Resource|0.5 kg|
+|[blender](/docs/definitions/part/blender)|Part|1|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.1 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Peanut Butter](/docs/definitions/resource/peanut-butter)|3.5 kg|
+|[blender](/docs/definitions/part/blender)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-pizza-dough.md b/content/docs/definitions/food/make-pizza-dough.md
new file mode 100644
index 0000000..1a93fc6
--- /dev/null
+++ b/content/docs/definitions/food/make-pizza-dough.md
@@ -0,0 +1,45 @@
+---
+title: Food Recipe - Make Pizza Dough
+linkTitle: Make Pizza Dough
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Make round pizza dough from three types of flours
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|20.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Rice Flour](/docs/definitions/resource/rice-flour)|Resource|0.4 kg|
+|[Soy Flour](/docs/definitions/resource/soy-flour)|Resource|0.2 kg|
+|[Soybean Oil](/docs/definitions/resource/soybean-oil)|Resource|0.01 kg|
+|[Water](/docs/definitions/resource/water)|Resource|0.33 kg|
+|[Wheat Flour](/docs/definitions/resource/wheat-flour)|Resource|0.4 kg|
+|[Yeast](/docs/definitions/resource/yeast)|Resource|0.01 kg|
+|[oven](/docs/definitions/part/oven)|Part|1|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.01 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Pizza Dough](/docs/definitions/resource/pizza-dough)|1.2 kg|
+|[oven](/docs/definitions/part/oven)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-quinoa-sprouts-from-quinoa.md b/content/docs/definitions/food/make-quinoa-sprouts-from-quinoa.md
new file mode 100644
index 0000000..e906075
--- /dev/null
+++ b/content/docs/definitions/food/make-quinoa-sprouts-from-quinoa.md
@@ -0,0 +1,38 @@
+---
+title: Food Recipe - Make Quinoa Sprouts from Quinoa
+linkTitle: Make Quinoa Sprouts from Quinoa
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Rinse the quinoa seeds in a bowl. Wash the quinoa seeds
to remove the soapy coating known as saponin. Soak in water and
drain the water after 30 minutes. Repeat the rinsing and draining
process every 8 hours. Put the tray of quinoa in a dark room.
Place the cloth back over the quinoa for protection.The quinoa will
sprout into a plate full of spiral-shaped roots that are at least
one-quarter inch in length. Dry out sprouts for up to 12 hours
after fully germinated.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|2000.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Quinoa](/docs/definitions/resource/quinoa)|Resource|3.0 kg|
+|[Water](/docs/definitions/resource/water)|Resource|3.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Quinoa Sprout](/docs/definitions/resource/quinoa-sprout)|15.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-rice-noodles-from-rice-flour.md b/content/docs/definitions/food/make-rice-noodles-from-rice-flour.md
new file mode 100644
index 0000000..2cc0112
--- /dev/null
+++ b/content/docs/definitions/food/make-rice-noodles-from-rice-flour.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Make Rice Noodles from Rice Flour
+linkTitle: Make Rice Noodles from Rice Flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Mix flour with water and knead to form dough. Heat paste into flat sheet.
cut sheet into different thickness.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Baking Powder](/docs/definitions/resource/baking-powder)|Resource|0.02 kg|
+|[Rice Flour](/docs/definitions/resource/rice-flour)|Resource|1.0 kg|
+|[Soy Protein](/docs/definitions/resource/soy-protein)|Resource|0.08 kg|
+|[Water](/docs/definitions/resource/water)|Resource|1.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Rice Noodle](/docs/definitions/resource/rice-noodle)|1.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-rice-vinegar-by-fermentation.md b/content/docs/definitions/food/make-rice-vinegar-by-fermentation.md
new file mode 100644
index 0000000..8027248
--- /dev/null
+++ b/content/docs/definitions/food/make-rice-vinegar-by-fermentation.md
@@ -0,0 +1,47 @@
+---
+title: Food Recipe - Make Rice Vinegar by Fermentation
+linkTitle: Make Rice Vinegar by Fermentation
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Clean bottle with bleach. Add water to white rice and heat up mixture.
Add bacteria and wait for fermentation to complete
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|30000.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Acetic Acid Bacteria](/docs/definitions/resource/acetic-acid-bacteria)|Resource|0.3 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.5 kg|
+|[Water](/docs/definitions/resource/water)|Resource|13.25 kg|
+|[White Rice](/docs/definitions/resource/white-rice)|Resource|5.0 kg|
+|[Yeast](/docs/definitions/resource/yeast)|Resource|0.3 kg|
+|[autoclave](/docs/definitions/part/autoclave)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|5|
+|[sodium hypochlorite](/docs/definitions/resource/sodium-hypochlorite)|Resource|0.003 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|1.25 kg|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|15.0 kg|
+|[autoclave](/docs/definitions/part/autoclave)|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-sesame-milk-from-soymilk.md b/content/docs/definitions/food/make-sesame-milk-from-soymilk.md
new file mode 100644
index 0000000..2477a2c
--- /dev/null
+++ b/content/docs/definitions/food/make-sesame-milk-from-soymilk.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Make Sesame Milk from Soymilk
+linkTitle: Make Sesame Milk from Soymilk
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Make sesame milk from soymilk
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|20.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[blender](/docs/definitions/part/blender)|Part|1|
+|[sesame seed](/docs/definitions/resource/sesame-seed)|Resource|0.5 kg|
+|[soymilk](/docs/definitions/resource/soymilk)|Resource|4.5 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[blender](/docs/definitions/part/blender)|1|
+|[sesame milk](/docs/definitions/resource/sesame-milk)|5.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-soy-sauce-by-fermentation.md b/content/docs/definitions/food/make-soy-sauce-by-fermentation.md
new file mode 100644
index 0000000..411967e
--- /dev/null
+++ b/content/docs/definitions/food/make-soy-sauce-by-fermentation.md
@@ -0,0 +1,47 @@
+---
+title: Food Recipe - Make Soy Sauce by Fermentation
+linkTitle: Make Soy Sauce by Fermentation
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Soybeans are first soaked in water for an extended period, and then steamed at high temperatures.
Carbohydrates contained in wheat gives soy sauce its fine aroma and adds sweetness to the soy sauce.
Wheat is roasted at high temperatures, then crushed by rollers to facilitate fermentation.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|30000.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Aspergillus Mix](/docs/definitions/resource/aspergillus-mix)|Resource|0.0057 kg|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|5.0 kg|
+|[Water](/docs/definitions/resource/water)|Resource|11.25 kg|
+|[Wheat](/docs/definitions/resource/wheat)|Resource|1.0 kg|
+|[autoclave](/docs/definitions/part/autoclave)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|5|
+|[sodium hypochlorite](/docs/definitions/resource/sodium-hypochlorite)|Resource|0.003 kg|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.1 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|1.25 kg|
+|[Soy Sauce](/docs/definitions/resource/soy-sauce)|15.0 kg|
+|[autoclave](/docs/definitions/part/autoclave)|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-soy-sprouts-from-soybeans.md b/content/docs/definitions/food/make-soy-sprouts-from-soybeans.md
new file mode 100644
index 0000000..7e53470
--- /dev/null
+++ b/content/docs/definitions/food/make-soy-sprouts-from-soybeans.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Make Soy Sprouts from Soybeans
+linkTitle: Make Soy Sprouts from Soybeans
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Sanitize soybean seeds with sodium hypochlorite.
Wash the seeds and soak them in water and
wait for germination. When germinated, freeze dry them.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|3000.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|3.0 kg|
+|[Water](/docs/definitions/resource/water)|Resource|3.0 kg|
+|[refrigerator](/docs/definitions/part/refrigerator)|Part|1|
+|[sodium hypochlorite](/docs/definitions/resource/sodium-hypochlorite)|Resource|0.003 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Soy Sprout](/docs/definitions/resource/soy-sprout)|15.0 kg|
+|[refrigerator](/docs/definitions/part/refrigerator)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-epsom-salt.md b/content/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-epsom-salt.md
new file mode 100644
index 0000000..38da2e1
--- /dev/null
+++ b/content/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-epsom-salt.md
@@ -0,0 +1,47 @@
+---
+title: Food Recipe - Make Soymilk and Tofu from Soybeans, Water, and Epsom Salt
+linkTitle: Make Soymilk and Tofu from Soybeans, Water, and Epsom Salt
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Boil up Soybeans, grind into soymilk, filter off okra, and add Epsom Salt as Coagulants.
gently stir and heat, the curds will separate. Save and sweeten some soymilk.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|400.0 millisols|
+|Work Level:|53.0 millisols|
+|Power Required:|2.8 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Epsom Salt](/docs/definitions/resource/epsom-salt)|Resource|0.556 kg|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|1.25 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.28 kg|
+|[Water](/docs/definitions/resource/water)|Resource|13.75 kg|
+|[blender](/docs/definitions/part/blender)|Part|1|
+|[stove](/docs/definitions/part/stove)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|6.07 kg|
+|[Okara](/docs/definitions/resource/okara)|1.375 kg|
+|[Soymilk](/docs/definitions/resource/soymilk)|3.0 kg|
+|[Tofu](/docs/definitions/resource/tofu)|3.0 kg|
+|[blender](/docs/definitions/part/blender)|1|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-vinegar.md b/content/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-vinegar.md
new file mode 100644
index 0000000..8e910ee
--- /dev/null
+++ b/content/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-vinegar.md
@@ -0,0 +1,47 @@
+---
+title: Food Recipe - Make Soymilk and Tofu from Soybeans, Water, and Vinegar
+linkTitle: Make Soymilk and Tofu from Soybeans, Water, and Vinegar
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Boil up Soybeans, grind into soymilk, filter off okra, and add vinegar as coagulants.
gently stir and heat, the curds will separate. Save and sweeten some soymilk.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|400.0 millisols|
+|Work Level:|53.0 millisols|
+|Power Required:|2.8 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.0508 kg|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|1.25 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.28 kg|
+|[Water](/docs/definitions/resource/water)|Resource|13.75 kg|
+|[blender](/docs/definitions/part/blender)|Part|1|
+|[stove](/docs/definitions/part/stove)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|6.07 kg|
+|[Okara](/docs/definitions/resource/okara)|1.375 kg|
+|[Soymilk](/docs/definitions/resource/soymilk)|3.0 kg|
+|[Tofu](/docs/definitions/resource/tofu)|3.0 kg|
+|[blender](/docs/definitions/part/blender)|1|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-tempeh-from-half-soybeans-and-half-okara.md b/content/docs/definitions/food/make-tempeh-from-half-soybeans-and-half-okara.md
new file mode 100644
index 0000000..57a4c5a
--- /dev/null
+++ b/content/docs/definitions/food/make-tempeh-from-half-soybeans-and-half-okara.md
@@ -0,0 +1,44 @@
+---
+title: Food Recipe - Make Tempeh from half Soybeans and half Okara
+linkTitle: Make Tempeh from half Soybeans and half Okara
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Boil Soybeans, add vinegar, Rhizopus oligosporus starter, and okara,
and allow to ferment.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|1000.0 millisols|
+|Work Level:|72.0 millisols|
+|Power Required:|0.63 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Okara](/docs/definitions/resource/okara)|Resource|1.0 kg|
+|[Rhizopus oligosporus](/docs/definitions/resource/rhizopus-oligosporus)|Resource|0.0033 kg|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.198 kg|
+|[Water](/docs/definitions/resource/water)|Resource|3.5 kg|
+|[autoclave](/docs/definitions/part/autoclave)|Part|1|
+|[soybean](/docs/definitions/resource/soybean)|Resource|1.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|1.0 kg|
+|[Tempeh](/docs/definitions/resource/tempeh)|2.66 kg|
+|[autoclave](/docs/definitions/part/autoclave)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-tempeh-from-soybeans.md b/content/docs/definitions/food/make-tempeh-from-soybeans.md
new file mode 100644
index 0000000..bb13b36
--- /dev/null
+++ b/content/docs/definitions/food/make-tempeh-from-soybeans.md
@@ -0,0 +1,43 @@
+---
+title: Food Recipe - Make Tempeh from Soybeans
+linkTitle: Make Tempeh from Soybeans
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Boil Soybeans, add vinegar and Rhizopus oligosporus starter, and
allow to ferment.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|1000.0 millisols|
+|Work Level:|70.0 millisols|
+|Power Required:|0.6 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Rhizopus oligosporus](/docs/definitions/resource/rhizopus-oligosporus)|Resource|0.0023 kg|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.138 kg|
+|[Water](/docs/definitions/resource/water)|Resource|3.5 kg|
+|[autoclave](/docs/definitions/part/autoclave)|Part|1|
+|[soybean](/docs/definitions/resource/soybean)|Resource|1.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|2.0 kg|
+|[Tempeh](/docs/definitions/resource/tempeh)|1.9 kg|
+|[autoclave](/docs/definitions/part/autoclave)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt.md b/content/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt.md
new file mode 100644
index 0000000..e06c6bf
--- /dev/null
+++ b/content/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt.md
@@ -0,0 +1,49 @@
+---
+title: Food Recipe - Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt
+linkTitle: Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Boil Soybeans, blend, separate okara and ferment with Rhizopus
oligosporus starter. Add vinegar to some soymilk as coagulant,
sweetening the remainder.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|1000.0 millisols|
+|Work Level:|125.0 millisols|
+|Power Required:|1.3 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Epsom Salt](/docs/definitions/resource/epsom-salt)|Resource|0.0707 kg|
+|[Rhizopus oligosporus](/docs/definitions/resource/rhizopus-oligosporus)|Resource|0.0014 kg|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.0825 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.028 kg|
+|[Water](/docs/definitions/resource/water)|Resource|13.75 kg|
+|[autoclave](/docs/definitions/part/autoclave)|Part|1|
+|[soybean](/docs/definitions/resource/soybean)|Resource|1.25 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|6.07 kg|
+|[Soymilk](/docs/definitions/resource/soymilk)|3.0 kg|
+|[Tempeh](/docs/definitions/resource/tempeh)|1.04 kg|
+|[Tofu](/docs/definitions/resource/tofu)|3.0 kg|
+|[autoclave](/docs/definitions/part/autoclave)|1|
+|[blender](/docs/definitions/part/blender)|1|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar.md b/content/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar.md
new file mode 100644
index 0000000..7c80bbd
--- /dev/null
+++ b/content/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar.md
@@ -0,0 +1,48 @@
+---
+title: Food Recipe - Make Tofu, Soymilk, and Tempeh from Soybeans and Vinegar
+linkTitle: Make Tofu, Soymilk, and Tempeh from Soybeans and Vinegar
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Boil Soybeans, blend, separate okara and ferment with Rhizopus
oligosporus starter. Add vinegar to some soymilk as coagulant,
sweetening the remainder.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|1000.0 millisols|
+|Work Level:|125.0 millisols|
+|Power Required:|1.3 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Rhizopus oligosporus](/docs/definitions/resource/rhizopus-oligosporus)|Resource|0.0014 kg|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.133 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.028 kg|
+|[Water](/docs/definitions/resource/water)|Resource|13.75 kg|
+|[autoclave](/docs/definitions/part/autoclave)|Part|1|
+|[soybean](/docs/definitions/resource/soybean)|Resource|1.25 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|6.07 kg|
+|[Soymilk](/docs/definitions/resource/soymilk)|3.0 kg|
+|[Tempeh](/docs/definitions/resource/tempeh)|1.04 kg|
+|[Tofu](/docs/definitions/resource/tofu)|3.0 kg|
+|[autoclave](/docs/definitions/part/autoclave)|1|
+|[blender](/docs/definitions/part/blender)|1|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-epsom-salt--large-batch-.md b/content/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-epsom-salt--large-batch-.md
new file mode 100644
index 0000000..4095832
--- /dev/null
+++ b/content/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-epsom-salt--large-batch-.md
@@ -0,0 +1,47 @@
+---
+title: Food Recipe - Make Tofu and Tempeh from Soybeans and Epsom Salt (large batch)
+linkTitle: Make Tofu and Tempeh from Soybeans and Epsom Salt (large batch)
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Boil Soybeans, blend, separate okara and ferment with Rhizopus
oligosporus starter. Add vinegar to soymilk as coagulant. This uses
all the okara by-product of tofu.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|1000.0 millisols|
+|Work Level:|125.0 millisols|
+|Power Required:|3.85 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Epsom Salt](/docs/definitions/resource/epsom-salt)|Resource|0.0962 kg|
+|[Rhizopus oligosporus](/docs/definitions/resource/rhizopus-oligosporus)|Resource|0.0019 kg|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.112 kg|
+|[Water](/docs/definitions/resource/water)|Resource|18.7 kg|
+|[autoclave](/docs/definitions/part/autoclave)|Part|1|
+|[soybean](/docs/definitions/resource/soybean)|Resource|1.7 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|4.83 kg|
+|[Tempeh](/docs/definitions/resource/tempeh)|1.42 kg|
+|[Tofu](/docs/definitions/resource/tofu)|7.5 kg|
+|[autoclave](/docs/definitions/part/autoclave)|1|
+|[blender](/docs/definitions/part/blender)|1|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-vinegar--large-batch-.md b/content/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-vinegar--large-batch-.md
new file mode 100644
index 0000000..6c34662
--- /dev/null
+++ b/content/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-vinegar--large-batch-.md
@@ -0,0 +1,46 @@
+---
+title: Food Recipe - Make Tofu and Tempeh from Soybeans and Vinegar (large batch)
+linkTitle: Make Tofu and Tempeh from Soybeans and Vinegar (large batch)
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Boil Soybeans, blend, separate okara and ferment with Rhizopus
oligosporus starter. Add vinegar to soymilk as coagulant. This uses
all the okara by-product of tofu.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|1000.0 millisols|
+|Work Level:|125.0 millisols|
+|Power Required:|3.85 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Rhizopus oligosporus](/docs/definitions/resource/rhizopus-oligosporus)|Resource|0.0019 kg|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.181 kg|
+|[Water](/docs/definitions/resource/water)|Resource|18.7 kg|
+|[autoclave](/docs/definitions/part/autoclave)|Part|1|
+|[soybean](/docs/definitions/resource/soybean)|Resource|1.7 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|4.83 kg|
+|[Tempeh](/docs/definitions/resource/tempeh)|1.42 kg|
+|[Tofu](/docs/definitions/resource/tofu)|7.5 kg|
+|[autoclave](/docs/definitions/part/autoclave)|1|
+|[blender](/docs/definitions/part/blender)|1|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-tofu-from-soybeans--water--and-epsom-salt--large-batch-.md b/content/docs/definitions/food/make-tofu-from-soybeans--water--and-epsom-salt--large-batch-.md
new file mode 100644
index 0000000..471bf6b
--- /dev/null
+++ b/content/docs/definitions/food/make-tofu-from-soybeans--water--and-epsom-salt--large-batch-.md
@@ -0,0 +1,45 @@
+---
+title: Food Recipe - Make Tofu from Soybeans, Water, and Epsom Salt (large batch)
+linkTitle: Make Tofu from Soybeans, Water, and Epsom Salt (large batch)
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Boil up Soybeans, grind into soymilk, filter off okra, and add Epsom Salt as Coagulants.
gently stir and heat, the curds will separate.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|400.0 millisols|
+|Work Level:|70.0 millisols|
+|Power Required:|3.8 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Epsom Salt](/docs/definitions/resource/epsom-salt)|Resource|0.076 kg|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|1.7 kg|
+|[Water](/docs/definitions/resource/water)|Resource|18.7 kg|
+|[blender](/docs/definitions/part/blender)|Part|1|
+|[stove](/docs/definitions/part/stove)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|3.4 kg|
+|[Okara](/docs/definitions/resource/okara)|1.87 kg|
+|[Tofu](/docs/definitions/resource/tofu)|7.5 kg|
+|[blender](/docs/definitions/part/blender)|1|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-tofu-from-soybeans--water--and-vinegar--large-batch-.md b/content/docs/definitions/food/make-tofu-from-soybeans--water--and-vinegar--large-batch-.md
new file mode 100644
index 0000000..74a3cbe
--- /dev/null
+++ b/content/docs/definitions/food/make-tofu-from-soybeans--water--and-vinegar--large-batch-.md
@@ -0,0 +1,45 @@
+---
+title: Food Recipe - Make Tofu from Soybeans, Water, and Vinegar (large batch)
+linkTitle: Make Tofu from Soybeans, Water, and Vinegar (large batch)
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Boil up Soybeans, grind into soymilk, filter off okra, and add vinegar as Coagulants.
gently stir and heat, the curds will separate.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|400.0 millisols|
+|Work Level:|70.0 millisols|
+|Power Required:|3.8 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.0691 kg|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|1.7 kg|
+|[Water](/docs/definitions/resource/water)|Resource|18.7 kg|
+|[blender](/docs/definitions/part/blender)|Part|1|
+|[stove](/docs/definitions/part/stove)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|3.4 kg|
+|[Okara](/docs/definitions/resource/okara)|1.87 kg|
+|[Tofu](/docs/definitions/resource/tofu)|7.5 kg|
+|[blender](/docs/definitions/part/blender)|1|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-tofu-from-soymilk-and-calcium-sulfate.md b/content/docs/definitions/food/make-tofu-from-soymilk-and-calcium-sulfate.md
new file mode 100644
index 0000000..a4eadcb
--- /dev/null
+++ b/content/docs/definitions/food/make-tofu-from-soymilk-and-calcium-sulfate.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Make Tofu from Soymilk and Calcium Sulfate
+linkTitle: Make Tofu from Soymilk and Calcium Sulfate
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Boil up soymilk, add calcium sulfate as coagulant,
gently stir and heat, and the curds will separate.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|25.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Soymilk](/docs/definitions/resource/soymilk)|Resource|2.5 kg|
+|[calcium sulfate](/docs/definitions/resource/calcium-sulfate)|Resource|0.03 kg|
+|[stove](/docs/definitions/part/stove)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|0.4 kg|
+|[Tofu](/docs/definitions/resource/tofu)|2.1 kg|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-tofu-from-soymilk-and-epsom-salt.md b/content/docs/definitions/food/make-tofu-from-soymilk-and-epsom-salt.md
new file mode 100644
index 0000000..2534024
--- /dev/null
+++ b/content/docs/definitions/food/make-tofu-from-soymilk-and-epsom-salt.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Make Tofu from Soymilk and Epsom Salt
+linkTitle: Make Tofu from Soymilk and Epsom Salt
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Boil up Soymilk, add Epsom Salt as Coagulant,
gently stir and heat, and the curds will separate.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|25.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Epsom Salt](/docs/definitions/resource/epsom-salt)|Resource|0.021 kg|
+|[Soymilk](/docs/definitions/resource/soymilk)|Resource|2.5 kg|
+|[stove](/docs/definitions/part/stove)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|0.4 kg|
+|[Tofu](/docs/definitions/resource/tofu)|2.1 kg|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-tofu-from-soymilk-and-vinegar.md b/content/docs/definitions/food/make-tofu-from-soymilk-and-vinegar.md
new file mode 100644
index 0000000..a87be2c
--- /dev/null
+++ b/content/docs/definitions/food/make-tofu-from-soymilk-and-vinegar.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Make Tofu from Soymilk and Vinegar
+linkTitle: Make Tofu from Soymilk and Vinegar
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Boil up Soymilk, add Epsom Salt as Coagulant,
gently stir and heat, and the curds will separate.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|25.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.039 kg|
+|[Soymilk](/docs/definitions/resource/soymilk)|Resource|2.5 kg|
+|[stove](/docs/definitions/part/stove)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|0.4 kg|
+|[Tofu](/docs/definitions/resource/tofu)|2.1 kg|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice.md b/content/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice.md
new file mode 100644
index 0000000..e81dc4f
--- /dev/null
+++ b/content/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice.md
@@ -0,0 +1,50 @@
+---
+title: Food Recipe - Make Veggie Patty from Quinoa Tempeh and Spice
+linkTitle: Make Veggie Patty from Quinoa Tempeh and Spice
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A Veggie patty imitates a burger patty and is made of
fermented quinoa seasoned with vinegar, soy sauce, garlic,
onion, syrup, and pepper.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|1000.0 millisols|
+|Work Level:|75.0 millisols|
+|Power Required:|2.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Garlic](/docs/definitions/resource/garlic)|Resource|0.025 kg|
+|[Quinoa](/docs/definitions/resource/quinoa)|Resource|1.75 kg|
+|[Rhizopus oligosporus](/docs/definitions/resource/rhizopus-oligosporus)|Resource|0.008 kg|
+|[Rice Vinegar](/docs/definitions/resource/rice-vinegar)|Resource|0.236 kg|
+|[Soy Sauce](/docs/definitions/resource/soy-sauce)|Resource|0.035 kg|
+|[Sugarcane Juice](/docs/definitions/resource/sugarcane-juice)|Resource|0.035 kg|
+|[Water](/docs/definitions/resource/water)|Resource|6.125 kg|
+|[autoclave](/docs/definitions/part/autoclave)|Part|1|
+|[green bell pepper](/docs/definitions/resource/green-bell-pepper)|Resource|0.03 kg|
+|[oven](/docs/definitions/part/oven)|Part|1|
+|[spring onion](/docs/definitions/resource/spring-onion)|Resource|0.025 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Grey Water](/docs/definitions/resource/grey-water)|3.5 kg|
+|[Veggie Patty](/docs/definitions/resource/veggie-patty)|3.33 kg|
+|[autoclave](/docs/definitions/part/autoclave)|1|
+|[oven](/docs/definitions/part/oven)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice.md b/content/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice.md
new file mode 100644
index 0000000..ffaec76
--- /dev/null
+++ b/content/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice.md
@@ -0,0 +1,45 @@
+---
+title: Food Recipe - Make Veggie Patty from Veg, Okara and Spice
+linkTitle: Make Veggie Patty from Veg, Okara and Spice
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A Veggie patty imitates a burger patty and is made of
textured vegetable protein (like soy), legumes (beans), okara,
nuts, mushrooms, or grains or seeds, like wheat and flax.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Carrot](/docs/definitions/resource/carrot)|Resource|0.35 kg|
+|[Morel Mushroom](/docs/definitions/resource/morel-mushroom)|Resource|0.15 kg|
+|[Okara](/docs/definitions/resource/okara)|Resource|0.5 kg|
+|[Peas](/docs/definitions/resource/peas)|Resource|0.5 kg|
+|[Potato](/docs/definitions/resource/potato)|Resource|0.5 kg|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|0.45 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.05 kg|
+|[Wheat](/docs/definitions/resource/wheat)|Resource|0.5 kg|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.01 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Veggie Patty](/docs/definitions/resource/veggie-patty)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice.md b/content/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice.md
new file mode 100644
index 0000000..f9952fb
--- /dev/null
+++ b/content/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice.md
@@ -0,0 +1,45 @@
+---
+title: Food Recipe - Make Veggie Patty from Veg, Tempeh and Spice
+linkTitle: Make Veggie Patty from Veg, Tempeh and Spice
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A Veggie patty imitates a burger patty and is made of
textured vegetable protein (like soy), legumes (beans), tempeh,
nuts, mushrooms, or grains or seeds, like wheat and flax.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Carrot](/docs/definitions/resource/carrot)|Resource|0.35 kg|
+|[Morel Mushroom](/docs/definitions/resource/morel-mushroom)|Resource|0.15 kg|
+|[Peas](/docs/definitions/resource/peas)|Resource|0.5 kg|
+|[Potato](/docs/definitions/resource/potato)|Resource|0.5 kg|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|0.45 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.05 kg|
+|[Tempeh](/docs/definitions/resource/tempeh)|Resource|0.5 kg|
+|[Wheat](/docs/definitions/resource/wheat)|Resource|0.5 kg|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.01 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Veggie Patty](/docs/definitions/resource/veggie-patty)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice.md b/content/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice.md
new file mode 100644
index 0000000..bacc440
--- /dev/null
+++ b/content/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice.md
@@ -0,0 +1,45 @@
+---
+title: Food Recipe - Make Veggie Patty from Veg, Tofu and Spice
+linkTitle: Make Veggie Patty from Veg, Tofu and Spice
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A Veggie patty imitates a burger patty and is made of
textured vegetable protein (like soy), legumes (beans), tofu,
nuts, mushrooms, or grains or seeds, like wheat and flax.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Carrot](/docs/definitions/resource/carrot)|Resource|0.35 kg|
+|[Morel Mushroom](/docs/definitions/resource/morel-mushroom)|Resource|0.15 kg|
+|[Peas](/docs/definitions/resource/peas)|Resource|0.5 kg|
+|[Potato](/docs/definitions/resource/potato)|Resource|0.5 kg|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|0.45 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|0.05 kg|
+|[Tofu](/docs/definitions/resource/tofu)|Resource|0.5 kg|
+|[Wheat](/docs/definitions/resource/wheat)|Resource|0.5 kg|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|0.01 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Veggie Patty](/docs/definitions/resource/veggie-patty)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/make-wheat-noodles-from-wheat-flour.md b/content/docs/definitions/food/make-wheat-noodles-from-wheat-flour.md
new file mode 100644
index 0000000..caa90da
--- /dev/null
+++ b/content/docs/definitions/food/make-wheat-noodles-from-wheat-flour.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Make Wheat Noodles from Wheat Flour
+linkTitle: Make Wheat Noodles from Wheat Flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Mix flour with water and knead to form dough. Heat paste into flat sheet.
cut sheet into different thickness.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Baking Powder](/docs/definitions/resource/baking-powder)|Resource|0.02 kg|
+|[Soy Protein](/docs/definitions/resource/soy-protein)|Resource|0.08 kg|
+|[Water](/docs/definitions/resource/water)|Resource|1.0 kg|
+|[Wheat Flour](/docs/definitions/resource/wheat-flour)|Resource|1.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Wheat Noodle](/docs/definitions/resource/wheat-noodle)|1.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/package-preserved-food-recipe--1.md b/content/docs/definitions/food/package-preserved-food-recipe--1.md
new file mode 100644
index 0000000..5d5c06a
--- /dev/null
+++ b/content/docs/definitions/food/package-preserved-food-recipe--1.md
@@ -0,0 +1,39 @@
+---
+title: Food Recipe - Package Preserved Food Recipe #1
+linkTitle: Package Preserved Food Recipe #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Cut and freeze dry cabbage into package food.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Leaves](/docs/definitions/resource/leaves)|Resource|8.0 kg|
+|[refrigerator](/docs/definitions/part/refrigerator)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[food](/docs/definitions/resource/food)|3.0 kg|
+|[refrigerator](/docs/definitions/part/refrigerator)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/package-preserved-food-recipe--2.md b/content/docs/definitions/food/package-preserved-food-recipe--2.md
new file mode 100644
index 0000000..68fe744
--- /dev/null
+++ b/content/docs/definitions/food/package-preserved-food-recipe--2.md
@@ -0,0 +1,39 @@
+---
+title: Food Recipe - Package Preserved Food Recipe #2
+linkTitle: Package Preserved Food Recipe #2
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Cut and freeze dry cabbage into package food.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Potato](/docs/definitions/resource/potato)|Resource|3.0 kg|
+|[refrigerator](/docs/definitions/part/refrigerator)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[food](/docs/definitions/resource/food)|3.0 kg|
+|[refrigerator](/docs/definitions/part/refrigerator)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/package-preserved-food-recipe--3.md b/content/docs/definitions/food/package-preserved-food-recipe--3.md
new file mode 100644
index 0000000..f6d4845
--- /dev/null
+++ b/content/docs/definitions/food/package-preserved-food-recipe--3.md
@@ -0,0 +1,39 @@
+---
+title: Food Recipe - Package Preserved Food Recipe #3
+linkTitle: Package Preserved Food Recipe #3
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Cut and freeze dry cabbage into package food.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Carrot](/docs/definitions/resource/carrot)|Resource|5.0 kg|
+|[refrigerator](/docs/definitions/part/refrigerator)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[food](/docs/definitions/resource/food)|3.0 kg|
+|[refrigerator](/docs/definitions/part/refrigerator)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/package-preserved-food-recipe--4.md b/content/docs/definitions/food/package-preserved-food-recipe--4.md
new file mode 100644
index 0000000..ebbac37
--- /dev/null
+++ b/content/docs/definitions/food/package-preserved-food-recipe--4.md
@@ -0,0 +1,39 @@
+---
+title: Food Recipe - Package Preserved Food Recipe #4
+linkTitle: Package Preserved Food Recipe #4
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Cut and freeze dry cabbage into package food.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Swiss Chard](/docs/definitions/resource/swiss-chard)|Resource|3.0 kg|
+|[refrigerator](/docs/definitions/part/refrigerator)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[food](/docs/definitions/resource/food)|3.0 kg|
+|[refrigerator](/docs/definitions/part/refrigerator)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/package-preserved-food.md b/content/docs/definitions/food/package-preserved-food.md
new file mode 100644
index 0000000..cdd1d88
--- /dev/null
+++ b/content/docs/definitions/food/package-preserved-food.md
@@ -0,0 +1,39 @@
+---
+title: Food Recipe - Package Preserved Food
+linkTitle: Package Preserved Food
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Cut and freeze dry cabbage into package food.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Cabbage](/docs/definitions/resource/cabbage)|Resource|3.0 kg|
+|[refrigerator](/docs/definitions/part/refrigerator)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[food](/docs/definitions/resource/food)|3.0 kg|
+|[refrigerator](/docs/definitions/part/refrigerator)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/package-roast-peanuts-into-dry-food.md b/content/docs/definitions/food/package-roast-peanuts-into-dry-food.md
new file mode 100644
index 0000000..dc91b57
--- /dev/null
+++ b/content/docs/definitions/food/package-roast-peanuts-into-dry-food.md
@@ -0,0 +1,39 @@
+---
+title: Food Recipe - Package Roast Peanuts into Dry Food
+linkTitle: Package Roast Peanuts into Dry Food
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Pack peanuts into dry food
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Roasted Peanut](/docs/definitions/resource/roasted-peanut)|Resource|5.0 kg|
+|[oven](/docs/definitions/part/oven)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[food](/docs/definitions/resource/food)|5.0 kg|
+|[oven](/docs/definitions/part/oven)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/press-and-refine-peanut-oil-from-peanuts.md b/content/docs/definitions/food/press-and-refine-peanut-oil-from-peanuts.md
new file mode 100644
index 0000000..6e48ec0
--- /dev/null
+++ b/content/docs/definitions/food/press-and-refine-peanut-oil-from-peanuts.md
@@ -0,0 +1,37 @@
+---
+title: Food Recipe - Press and Refine Peanut Oil from Peanuts
+linkTitle: Press and Refine Peanut Oil from Peanuts
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Derive vegetable oil from peanuts. Press and refine it
for use
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|400.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|2.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Peanut](/docs/definitions/resource/peanut)|Resource|4.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Peanut Oil](/docs/definitions/resource/peanut-oil)|2.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/press-garlic-oil-from-garlic.md b/content/docs/definitions/food/press-garlic-oil-from-garlic.md
new file mode 100644
index 0000000..567d74d
--- /dev/null
+++ b/content/docs/definitions/food/press-garlic-oil-from-garlic.md
@@ -0,0 +1,39 @@
+---
+title: Food Recipe - Press Garlic Oil from Garlic
+linkTitle: Press Garlic Oil from Garlic
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Continuous pressing by means of expellers is a widely applied
process for the extraction of oil from Garlic
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Garlic](/docs/definitions/resource/garlic)|Resource|5.0 kg|
+|[Sesame Oil](/docs/definitions/resource/sesame-oil)|Resource|0.99 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Food Waste](/docs/definitions/resource/food-waste)|4.99 kg|
+|[Garlic Oil](/docs/definitions/resource/garlic-oil)|1.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/press-olive-oil-from-olive.md b/content/docs/definitions/food/press-olive-oil-from-olive.md
new file mode 100644
index 0000000..0c6b0f5
--- /dev/null
+++ b/content/docs/definitions/food/press-olive-oil-from-olive.md
@@ -0,0 +1,39 @@
+---
+title: Food Recipe - Press Olive Oil from Olive
+linkTitle: Press Olive Oil from Olive
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Ripe olives can yield up to 30% of oil. It's about
3 kg of olives per liter (around 0.9kg) of oil.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Olive](/docs/definitions/resource/olive)|Resource|3.0 kg|
+|[Water](/docs/definitions/resource/water)|Resource|0.9 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Food Waste](/docs/definitions/resource/food-waste)|3.0 kg|
+|[Olive Oil](/docs/definitions/resource/olive-oil)|0.9 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/press-sesame-oil-from-sesame-seeds.md b/content/docs/definitions/food/press-sesame-oil-from-sesame-seeds.md
new file mode 100644
index 0000000..ad46462
--- /dev/null
+++ b/content/docs/definitions/food/press-sesame-oil-from-sesame-seeds.md
@@ -0,0 +1,38 @@
+---
+title: Food Recipe - Press Sesame Oil from Sesame Seeds
+linkTitle: Press Sesame Oil from Sesame Seeds
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Continuous pressing by means of expellers is a widely applied process for the extraction of oil from sesame seeds
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Sesame Seed](/docs/definitions/resource/sesame-seed)|Resource|2.5 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Food Waste](/docs/definitions/resource/food-waste)|1.25 kg|
+|[Sesame Oil](/docs/definitions/resource/sesame-oil)|1.25 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/process-brown-rice-into-rice-flour.md b/content/docs/definitions/food/process-brown-rice-into-rice-flour.md
new file mode 100644
index 0000000..d331e29
--- /dev/null
+++ b/content/docs/definitions/food/process-brown-rice-into-rice-flour.md
@@ -0,0 +1,41 @@
+---
+title: Food Recipe - Process Brown Rice into Rice Flour
+linkTitle: Process Brown Rice into Rice Flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Rinse rice, dry, and finely grind
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|330.0 millisols|
+|Work Level:|38.0 millisols|
+|Power Required:|5.3 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Brown Rice](/docs/definitions/resource/brown-rice)|Resource|1.0 kg|
+|[Water](/docs/definitions/resource/water)|Resource|3.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Food Waste](/docs/definitions/resource/food-waste)|0.032 kg|
+|[Grey Water](/docs/definitions/resource/grey-water)|2.9 kg|
+|[Rice Flour](/docs/definitions/resource/rice-flour)|0.856 kg|
+|[rice bran oil](/docs/definitions/resource/rice-bran-oil)|0.112 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/process-brown-rice-into-white-rice.md b/content/docs/definitions/food/process-brown-rice-into-white-rice.md
new file mode 100644
index 0000000..f867831
--- /dev/null
+++ b/content/docs/definitions/food/process-brown-rice-into-white-rice.md
@@ -0,0 +1,39 @@
+---
+title: Food Recipe - Process Brown Rice into White Rice
+linkTitle: Process Brown Rice into White Rice
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Remove bran layers and germ from rice.
May enrich milled rice with vitamins and minerals
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|30.0 millisols|
+|Work Level:|15.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Brown Rice](/docs/definitions/resource/brown-rice)|Resource|2.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Crop Waste](/docs/definitions/resource/crop-waste)|0.064 kg|
+|[White Rice](/docs/definitions/resource/white-rice)|1.71 kg|
+|[rice bran oil](/docs/definitions/resource/rice-bran-oil)|0.225 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/process-fish-oil-from-fish-meat.md b/content/docs/definitions/food/process-fish-oil-from-fish-meat.md
new file mode 100644
index 0000000..e2448c4
--- /dev/null
+++ b/content/docs/definitions/food/process-fish-oil-from-fish-meat.md
@@ -0,0 +1,37 @@
+---
+title: Food Recipe - Process fish oil from fish meat
+linkTitle: Process fish oil from fish meat
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Derive fish oil from fish meats. Press and refine it
for use
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|5.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[fish meat](/docs/definitions/resource/fish-meat)|Resource|2.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[fish oil](/docs/definitions/resource/fish-oil)|0.5 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/process-rice-into-brown-rice.md b/content/docs/definitions/food/process-rice-into-brown-rice.md
new file mode 100644
index 0000000..c0e8129
--- /dev/null
+++ b/content/docs/definitions/food/process-rice-into-brown-rice.md
@@ -0,0 +1,38 @@
+---
+title: Food Recipe - Process Rice into Brown Rice
+linkTitle: Process Rice into Brown Rice
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Remove only hulls from rice. The light brown color is due to the presence of the bran layers
and the embryo or germ. Brown rice requires longer cooking time than either parboiled or regular-milled white rice
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Rice](/docs/definitions/resource/rice)|Resource|2.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Brown Rice](/docs/definitions/resource/brown-rice)|1.55 kg|
+|[Crop Waste](/docs/definitions/resource/crop-waste)|0.45 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/process-rice-into-white-rice-and-rice-bran-oil.md b/content/docs/definitions/food/process-rice-into-white-rice-and-rice-bran-oil.md
new file mode 100644
index 0000000..d475505
--- /dev/null
+++ b/content/docs/definitions/food/process-rice-into-white-rice-and-rice-bran-oil.md
@@ -0,0 +1,39 @@
+---
+title: Food Recipe - Process Rice into White Rice and rice bran oil
+linkTitle: Process Rice into White Rice and rice bran oil
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Remove hulls, bran layers and germ from rice.
May enrich milled rice with vitamins and minerals
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Rice](/docs/definitions/resource/rice)|Resource|2.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Crop Waste](/docs/definitions/resource/crop-waste)|0.495 kg|
+|[White Rice](/docs/definitions/resource/white-rice)|1.33 kg|
+|[rice bran oil](/docs/definitions/resource/rice-bran-oil)|0.175 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/process-soybean-into-soy-flour.md b/content/docs/definitions/food/process-soybean-into-soy-flour.md
new file mode 100644
index 0000000..77cfde6
--- /dev/null
+++ b/content/docs/definitions/food/process-soybean-into-soy-flour.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Process Soybean into Soy Flour
+linkTitle: Process Soybean into Soy Flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Create defatted soy flour by cracking, screening, heating soybean
at 130 deg C with hot extrusion and high pressure .
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|300.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.25 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Soybean](/docs/definitions/resource/soybean)|Resource|1.0 kg|
+|[Water](/docs/definitions/resource/water)|Resource|1.0 kg|
+|[oven](/docs/definitions/part/oven)|Part|1|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Soy Flour](/docs/definitions/resource/soy-flour)|1.0 kg|
+|[oven](/docs/definitions/part/oven)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/process-wheat-into-wheat-flour.md b/content/docs/definitions/food/process-wheat-into-wheat-flour.md
new file mode 100644
index 0000000..1c7f474
--- /dev/null
+++ b/content/docs/definitions/food/process-wheat-into-wheat-flour.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Process Wheat into Wheat Flour
+linkTitle: Process Wheat into Wheat Flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Rinse wheat, dry, and finely grind
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|400.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|5.0 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Water](/docs/definitions/resource/water)|Resource|3.0 kg|
+|[Wheat](/docs/definitions/resource/wheat)|Resource|1.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Crop Waste](/docs/definitions/resource/crop-waste)|0.208 kg|
+|[Grey Water](/docs/definitions/resource/grey-water)|2.9 kg|
+|[Wheat Flour](/docs/definitions/resource/wheat-flour)|0.792 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/process-white-rice-into-rice-flour.md b/content/docs/definitions/food/process-white-rice-into-rice-flour.md
new file mode 100644
index 0000000..96e04a0
--- /dev/null
+++ b/content/docs/definitions/food/process-white-rice-into-rice-flour.md
@@ -0,0 +1,40 @@
+---
+title: Food Recipe - Process White Rice into Rice Flour
+linkTitle: Process White Rice into Rice Flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Rinse rice, dry, and finely grind.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|300.0 millisols|
+|Work Level:|25.0 millisols|
+|Power Required:|0.25 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Water](/docs/definitions/resource/water)|Resource|3.0 kg|
+|[White Rice](/docs/definitions/resource/white-rice)|Resource|1.0 kg|
+|[calcium sulfate](/docs/definitions/resource/calcium-sulfate)|Resource|0.05 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Rice Flour](/docs/definitions/resource/rice-flour)|1.0 kg|
+|[Water](/docs/definitions/resource/water)|2.9 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/produce-fiber-cloth-from-cane-or-soy-fiber-recipe--1.md b/content/docs/definitions/food/produce-fiber-cloth-from-cane-or-soy-fiber-recipe--1.md
new file mode 100644
index 0000000..71492e8
--- /dev/null
+++ b/content/docs/definitions/food/produce-fiber-cloth-from-cane-or-soy-fiber-recipe--1.md
@@ -0,0 +1,37 @@
+---
+title: Food Recipe - Produce Fiber Cloth from Cane or Soy Fiber Recipe #1
+linkTitle: Produce Fiber Cloth from Cane or Soy Fiber Recipe #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Fiber cloth Weaving
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Soy Fiber](/docs/definitions/resource/soy-fiber)|Resource|2.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Fiber Cloth](/docs/definitions/resource/fiber-cloth)|2.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/food/produce-fiber-cloth-from-cane-or-soy-fiber.md b/content/docs/definitions/food/produce-fiber-cloth-from-cane-or-soy-fiber.md
new file mode 100644
index 0000000..de148bc
--- /dev/null
+++ b/content/docs/definitions/food/produce-fiber-cloth-from-cane-or-soy-fiber.md
@@ -0,0 +1,37 @@
+---
+title: Food Recipe - Produce Fiber Cloth from Cane or Soy Fiber
+linkTitle: Produce Fiber Cloth from Cane or Soy Fiber
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Fiber cloth Weaving
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Ingredients
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|2.0 kg|
+
+## Outcomes
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Fiber Cloth](/docs/definitions/resource/fiber-cloth)|2.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/manifest/_index.md b/content/docs/definitions/manifest/_index.md
new file mode 100644
index 0000000..83f84b9
--- /dev/null
+++ b/content/docs/definitions/manifest/_index.md
@@ -0,0 +1,18 @@
+---
+title: Resupply Manifest
+description: Resupply Manifests that are used to resupply a Settlement templates
+---
+
+
+
+
+
+
+- [Standard Resupply 1](../manifest/standard-resupply-1)
+- [Food Resupply 1](../manifest/food-resupply-1)
+- [Resupply for Phase 1](../manifest/resupply-for-phase-1)
+- [Resupply for Phase 2](../manifest/resupply-for-phase-2)
+- [Resupply for Phase 3](../manifest/resupply-for-phase-3)
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/manifest/food-resupply-1.md b/content/docs/definitions/manifest/food-resupply-1.md
new file mode 100644
index 0000000..7e9991d
--- /dev/null
+++ b/content/docs/definitions/manifest/food-resupply-1.md
@@ -0,0 +1,104 @@
+---
+title: Resupply Manifest - Food Resupply 1
+linkTitle: Food Resupply 1
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|New People:|0|
+
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetic acid bacteria](/docs/definitions/resource/acetic-acid-bacteria)|Resource|20.0 kg|
+|[Baking powder](/docs/definitions/resource/baking-powder)|Resource|100.0 kg|
+|[Bisphenol-a](/docs/definitions/resource/bisphenol-a)|Resource|100.0 kg|
+|[Bleaching chemical](/docs/definitions/resource/bleaching-chemical)|Resource|50.0 kg|
+|[Blueberry Tissue](/docs/definitions/resource/blueberry-tissue)|Resource|1.0 kg|
+|[Cabbage Tissue](/docs/definitions/resource/cabbage-tissue)|Resource|1.0 kg|
+|[Cane fiber](/docs/definitions/resource/cane-fiber)|Resource|100.0 kg|
+|[Carrot Tissue](/docs/definitions/resource/carrot-tissue)|Resource|1.0 kg|
+|[Celery Tissue](/docs/definitions/resource/celery-tissue)|Resource|1.0 kg|
+|[Chlorine](/docs/definitions/resource/chlorine)|Resource|50.0 kg|
+|[Corn Tissue](/docs/definitions/resource/corn-tissue)|Resource|1.0 kg|
+|[Cranberry Tissue](/docs/definitions/resource/cranberry-tissue)|Resource|1.0 kg|
+|[Cucumber Tissue](/docs/definitions/resource/cucumber-tissue)|Resource|1.0 kg|
+|[Epsom salt](/docs/definitions/resource/epsom-salt)|Resource|50.0 kg|
+|[Fertilizer](/docs/definitions/resource/fertilizer)|Resource|50.0 kg|
+|[Garlic Tissue](/docs/definitions/resource/garlic-tissue)|Resource|1.0 kg|
+|[Garlic oil](/docs/definitions/resource/garlic-oil)|Resource|50.0 kg|
+|[Ginger Tissue](/docs/definitions/resource/ginger-tissue)|Resource|1.0 kg|
+|[Granola bar](/docs/definitions/resource/granola-bar)|Resource|10.0 kg|
+|[Green Bell Pepper Tissue](/docs/definitions/resource/green-bell-pepper-tissue)|Resource|1.0 kg|
+|[Honey](/docs/definitions/resource/honey)|Resource|100.0 kg|
+|[Kidney Bean Tissue](/docs/definitions/resource/kidney-bean-tissue)|Resource|1.0 kg|
+|[Lettuce Tissue](/docs/definitions/resource/lettuce-tissue)|Resource|1.0 kg|
+|[Morel Mushroom Tissue](/docs/definitions/resource/morel-mushroom-tissue)|Resource|1.0 kg|
+|[Mustard](/docs/definitions/resource/mustard)|Resource|50.0 kg|
+|[Mustard seed](/docs/definitions/resource/mustard-seed)|Resource|50.0 kg|
+|[Napkin](/docs/definitions/resource/napkin)|Resource|100.0 kg|
+|[Nitrosomonas SPP](/docs/definitions/resource/nitrosomonas-spp)|Resource|20.0 kg|
+|[Nitrospira SPP](/docs/definitions/resource/nitrospira-spp)|Resource|20.0 kg|
+|[Olive](/docs/definitions/resource/olive)|Resource|50.0 kg|
+|[Olive oil](/docs/definitions/resource/olive-oil)|Resource|50.0 kg|
+|[Paper](/docs/definitions/resource/paper)|Resource|100.0 kg|
+|[Peanut Tissue](/docs/definitions/resource/peanut-tissue)|Resource|1.0 kg|
+|[Peanut butter](/docs/definitions/resource/peanut-butter)|Resource|50.0 kg|
+|[Peanut oil](/docs/definitions/resource/peanut-oil)|Resource|50.0 kg|
+|[Peas Tissue](/docs/definitions/resource/peas-tissue)|Resource|1.0 kg|
+|[Potato Tissue](/docs/definitions/resource/potato-tissue)|Resource|1.0 kg|
+|[Protein bar](/docs/definitions/resource/protein-bar)|Resource|10.0 kg|
+|[Pulp](/docs/definitions/resource/pulp)|Resource|100.0 kg|
+|[Quinoa Tissue](/docs/definitions/resource/quinoa-tissue)|Resource|1.0 kg|
+|[Radish Tissue](/docs/definitions/resource/radish-tissue)|Resource|1.0 kg|
+|[Red Beet Tissue](/docs/definitions/resource/red-beet-tissue)|Resource|1.0 kg|
+|[Rhizobia](/docs/definitions/resource/rhizobia)|Resource|20.0 kg|
+|[Rice Tissue](/docs/definitions/resource/rice-tissue)|Resource|1.0 kg|
+|[Rice vinegar](/docs/definitions/resource/rice-vinegar)|Resource|50.0 kg|
+|[Roasted peanut](/docs/definitions/resource/roasted-peanut)|Resource|50.0 kg|
+|[Sesame Tissue](/docs/definitions/resource/sesame-tissue)|Resource|1.0 kg|
+|[Sesame oil](/docs/definitions/resource/sesame-oil)|Resource|50.0 kg|
+|[Sesame seed](/docs/definitions/resource/sesame-seed)|Resource|50.0 kg|
+|[Sodium hypochlorite](/docs/definitions/resource/sodium-hypochlorite)|Resource|20.0 kg|
+|[Soy flour](/docs/definitions/resource/soy-flour)|Resource|50.0 kg|
+|[Soy protein](/docs/definitions/resource/soy-protein)|Resource|50.0 kg|
+|[Soy sauce](/docs/definitions/resource/soy-sauce)|Resource|50.0 kg|
+|[Soy sprout](/docs/definitions/resource/soy-sprout)|Resource|50.0 kg|
+|[Soybean Tissue](/docs/definitions/resource/soybean-tissue)|Resource|1.0 kg|
+|[Soybean oil](/docs/definitions/resource/soybean-oil)|Resource|50.0 kg|
+|[Soymilk](/docs/definitions/resource/soymilk)|Resource|50.0 kg|
+|[Spring Onion Tissue](/docs/definitions/resource/spring-onion-tissue)|Resource|1.0 kg|
+|[Strawberry Tissue](/docs/definitions/resource/strawberry-tissue)|Resource|1.0 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|50.0 kg|
+|[Sugarcane Tissue](/docs/definitions/resource/sugarcane-tissue)|Resource|1.0 kg|
+|[Sweet Potato Tissue](/docs/definitions/resource/sweet-potato-tissue)|Resource|1.0 kg|
+|[Swiss Chard Tissue](/docs/definitions/resource/swiss-chard-tissue)|Resource|1.0 kg|
+|[Table salt](/docs/definitions/resource/table-salt)|Resource|50.0 kg|
+|[Taro Tissue](/docs/definitions/resource/taro-tissue)|Resource|1.0 kg|
+|[Tofu](/docs/definitions/resource/tofu)|Resource|50.0 kg|
+|[Toilet tissue](/docs/definitions/resource/toilet-tissue)|Resource|100.0 kg|
+|[Tomato Tissue](/docs/definitions/resource/tomato-tissue)|Resource|1.0 kg|
+|[Veggie patty](/docs/definitions/resource/veggie-patty)|Resource|50.0 kg|
+|[Wheat Tissue](/docs/definitions/resource/wheat-tissue)|Resource|1.0 kg|
+|[Wheat bread](/docs/definitions/resource/wheat-bread)|Resource|50.0 kg|
+|[Wheat bun](/docs/definitions/resource/wheat-bun)|Resource|50.0 kg|
+|[Wheat flour](/docs/definitions/resource/wheat-flour)|Resource|50.0 kg|
+|[White bread](/docs/definitions/resource/white-bread)|Resource|50.0 kg|
+|[White bun](/docs/definitions/resource/white-bun)|Resource|50.0 kg|
+|[White mustard Tissue](/docs/definitions/resource/white-mustard-tissue)|Resource|1.0 kg|
+|[White onion Tissue](/docs/definitions/resource/white-onion-tissue)|Resource|1.0 kg|
+|[Yam Tissue](/docs/definitions/resource/yam-tissue)|Resource|1.0 kg|
+|[Yeast](/docs/definitions/resource/yeast)|Resource|50.0 kg|
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/manifest/resupply-for-phase-1.md b/content/docs/definitions/manifest/resupply-for-phase-1.md
new file mode 100644
index 0000000..f27ed16
--- /dev/null
+++ b/content/docs/definitions/manifest/resupply-for-phase-1.md
@@ -0,0 +1,145 @@
+---
+title: Resupply Manifest - Resupply for Phase 1
+linkTitle: Resupply for Phase 1
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|New People:|4|
+
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|10|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|20|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|306|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|10|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|10|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|2|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|30|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|10|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|10|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|10|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|4|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|2|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|22|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|32|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|4|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|2|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|64|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|32|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|32|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|32|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|32|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|32|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|38|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|16|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|521|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|10|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|6|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|20|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|46|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|20|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|16|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|168|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|46|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|5|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|46|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|10|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|16|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|18|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|100|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|40|
+|[Logic board](/docs/definitions/part/logic-board)|Part|50|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|24|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|400|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|6|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|400|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|6|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|120|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|5|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|3|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|8|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|10|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|2|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|40|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|40|
+|[Oven](/docs/definitions/part/oven)|Part|10|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|6|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|200|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|3|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|286|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|39|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|104|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|24|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|120|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|32|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|10|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|10|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|6|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|6|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|10|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|6|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|18|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|10|
+|[Stove](/docs/definitions/part/stove)|Part|10|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|18|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|10|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|92|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|10|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|2|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|6|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|331|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|32|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|4|
+|barrel|80|
+|wheelbarrow|4|
+|EVA Suit|8|
+|specimen box|80|
+|bag|80|
+|large bag|80|
+|gas canister|80|
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/manifest/resupply-for-phase-2.md b/content/docs/definitions/manifest/resupply-for-phase-2.md
new file mode 100644
index 0000000..fef6ae8
--- /dev/null
+++ b/content/docs/definitions/manifest/resupply-for-phase-2.md
@@ -0,0 +1,155 @@
+---
+title: Resupply Manifest - Resupply for Phase 2
+linkTitle: Resupply for Phase 2
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|New People:|4|
+
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|15|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|30|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|468|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|15|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|4|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|10|
+|[Blender](/docs/definitions/part/blender)|Part|15|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|4|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|40|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|4|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|20|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|15|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|15|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|8|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|4|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|36|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|32|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|48|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|4|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|6|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|4|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|96|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|48|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|48|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|48|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|48|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|48|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|58|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|24|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|797|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|15|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|12|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|40|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|72|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|30|
+|[Food](/docs/definitions/resource/food)|Resource|1657.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|40|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|6|
+|[Garment](/docs/definitions/part/garment)|Part|24|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|40|
+|[Gasket](/docs/definitions/part/gasket)|Part|258|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|72|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|10|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|72|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|20|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|24|
+|[Hydrogen](/docs/definitions/resource/hydrogen)|Resource|1000.0 kg|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|26|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|150|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|60|
+|[Logic board](/docs/definitions/part/logic-board)|Part|100|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|46|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|600|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|8|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|600|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|8|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|160|
+|[Microwave](/docs/definitions/part/microwave)|Part|15|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|6|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|4|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|10|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|15|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|60|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|60|
+|[Oven](/docs/definitions/part/oven)|Part|15|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|4|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|9|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|300|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|4|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|460|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|35|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|160|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|4|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|30|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|32|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|160|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|48|
+|[Propeller](/docs/definitions/part/propeller)|Part|6|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|20|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|15|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|4|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|22|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|4|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|8|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|10|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|15|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|4|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|8|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|36|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|26|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|14|
+|[Stove](/docs/definitions/part/stove)|Part|15|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|26|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|34|
+|[Transformer](/docs/definitions/part/transformer)|Part|15|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|138|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|8|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|15|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|3|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|9|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|40|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|4|
+|[Window](/docs/definitions/part/window)|Part|8|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|511|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|48|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|4|
+|barrel|80|
+|wheelbarrow|2|
+|EVA Suit|8|
+|specimen box|80|
+|bag|80|
+|large bag|80|
+|gas canister|80|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|1|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+|[Transport Rover](/docs/definitions/vehicle/transport-rover)|1|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/manifest/resupply-for-phase-3.md b/content/docs/definitions/manifest/resupply-for-phase-3.md
new file mode 100644
index 0000000..458fd98
--- /dev/null
+++ b/content/docs/definitions/manifest/resupply-for-phase-3.md
@@ -0,0 +1,155 @@
+---
+title: Resupply Manifest - Resupply for Phase 3
+linkTitle: Resupply for Phase 3
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|New People:|4|
+
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|15|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|40|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|536|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|15|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|6|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|16|
+|[Blender](/docs/definitions/part/blender)|Part|15|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|6|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|60|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|6|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|30|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|15|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|20|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|12|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|6|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|64|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|40|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|48|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|6|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|12|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|6|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|96|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|48|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|48|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|48|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|48|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|48|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|58|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|24|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|1104|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|20|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|24|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|80|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|78|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|40|
+|[Food](/docs/definitions/resource/food)|Resource|4970.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|80|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|10|
+|[Garment](/docs/definitions/part/garment)|Part|48|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|80|
+|[Gasket](/docs/definitions/part/gasket)|Part|372|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|100|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|20|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|100|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|30|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|24|
+|[Hydrogen](/docs/definitions/resource/hydrogen)|Resource|1000.0 kg|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|38|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|200|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|100|
+|[Logic board](/docs/definitions/part/logic-board)|Part|200|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|74|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|800|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|12|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|800|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|12|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|400|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|8|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|6|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|12|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|20|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|8|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|80|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|80|
+|[Oven](/docs/definitions/part/oven)|Part|15|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|8|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|12|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|400|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|5|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|620|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|86|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|16|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|220|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|6|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|50|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|36|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|400|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|48|
+|[Propeller](/docs/definitions/part/propeller)|Part|12|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|30|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|15|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|8|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|38|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|8|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|16|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|16|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|20|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|6|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|8|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|64|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|38|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|40|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|16|
+|[Stove](/docs/definitions/part/stove)|Part|15|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|26|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|58|
+|[Transformer](/docs/definitions/part/transformer)|Part|25|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|4|
+|[Valve](/docs/definitions/part/valve)|Part|202|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|14|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|15|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|4|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|12|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|80|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|4|
+|[Winch](/docs/definitions/part/winch)|Part|8|
+|[Window](/docs/definitions/part/window)|Part|12|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|716|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|48|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|12|
+|barrel|80|
+|wheelbarrow|12|
+|EVA Suit|24|
+|specimen box|80|
+|bag|80|
+|large bag|80|
+|gas canister|80|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Long Range Explorer](/docs/definitions/vehicle/long-range-explorer)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+|[Transport Rover](/docs/definitions/vehicle/transport-rover)|2|
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/manifest/standard-resupply-1.md b/content/docs/definitions/manifest/standard-resupply-1.md
new file mode 100644
index 0000000..8b0dd8c
--- /dev/null
+++ b/content/docs/definitions/manifest/standard-resupply-1.md
@@ -0,0 +1,117 @@
+---
+title: Resupply Manifest - Standard Resupply 1
+linkTitle: Standard Resupply 1
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|New People:|0|
+
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Acetic acid bacteria](/docs/definitions/resource/acetic-acid-bacteria)|Resource|20.0 kg|
+|[Argon](/docs/definitions/resource/argon)|Resource|60.0 kg|
+|[Baking powder](/docs/definitions/resource/baking-powder)|Resource|100.0 kg|
+|[Bisphenol-a](/docs/definitions/resource/bisphenol-a)|Resource|100.0 kg|
+|[Bleaching chemical](/docs/definitions/resource/bleaching-chemical)|Resource|50.0 kg|
+|[Blueberry Tissue](/docs/definitions/resource/blueberry-tissue)|Resource|1.0 kg|
+|[Cabbage Tissue](/docs/definitions/resource/cabbage-tissue)|Resource|1.0 kg|
+|[Cane fiber](/docs/definitions/resource/cane-fiber)|Resource|100.0 kg|
+|[Carrot Tissue](/docs/definitions/resource/carrot-tissue)|Resource|1.0 kg|
+|[Celery Tissue](/docs/definitions/resource/celery-tissue)|Resource|1.0 kg|
+|[Chlorine](/docs/definitions/resource/chlorine)|Resource|50.0 kg|
+|[Corn Tissue](/docs/definitions/resource/corn-tissue)|Resource|1.0 kg|
+|[Cranberry Tissue](/docs/definitions/resource/cranberry-tissue)|Resource|1.0 kg|
+|[Cucumber Tissue](/docs/definitions/resource/cucumber-tissue)|Resource|1.0 kg|
+|[Epsom salt](/docs/definitions/resource/epsom-salt)|Resource|50.0 kg|
+|[Fertilizer](/docs/definitions/resource/fertilizer)|Resource|50.0 kg|
+|[Food](/docs/definitions/resource/food)|Resource|1000.0 kg|
+|[Garlic Tissue](/docs/definitions/resource/garlic-tissue)|Resource|1.0 kg|
+|[Garlic oil](/docs/definitions/resource/garlic-oil)|Resource|50.0 kg|
+|[Ginger Tissue](/docs/definitions/resource/ginger-tissue)|Resource|1.0 kg|
+|[Granola bar](/docs/definitions/resource/granola-bar)|Resource|10.0 kg|
+|[Green Bell Pepper Tissue](/docs/definitions/resource/green-bell-pepper-tissue)|Resource|1.0 kg|
+|[Honey](/docs/definitions/resource/honey)|Resource|100.0 kg|
+|[Iron powder](/docs/definitions/resource/iron-powder)|Resource|10.0 kg|
+|[Kidney Bean Tissue](/docs/definitions/resource/kidney-bean-tissue)|Resource|1.0 kg|
+|[Lettuce Tissue](/docs/definitions/resource/lettuce-tissue)|Resource|1.0 kg|
+|[Morel Mushroom Tissue](/docs/definitions/resource/morel-mushroom-tissue)|Resource|1.0 kg|
+|[Mustard](/docs/definitions/resource/mustard)|Resource|50.0 kg|
+|[Mustard seed](/docs/definitions/resource/mustard-seed)|Resource|50.0 kg|
+|[Napkin](/docs/definitions/resource/napkin)|Resource|100.0 kg|
+|[Nitrosomonas SPP](/docs/definitions/resource/nitrosomonas-spp)|Resource|20.0 kg|
+|[Nitrospira SPP](/docs/definitions/resource/nitrospira-spp)|Resource|20.0 kg|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1000.0 kg|
+|[Paper](/docs/definitions/resource/paper)|Resource|100.0 kg|
+|[Peanut Tissue](/docs/definitions/resource/peanut-tissue)|Resource|1.0 kg|
+|[Peanut butter](/docs/definitions/resource/peanut-butter)|Resource|50.0 kg|
+|[Peanut oil](/docs/definitions/resource/peanut-oil)|Resource|50.0 kg|
+|[Peas Tissue](/docs/definitions/resource/peas-tissue)|Resource|1.0 kg|
+|[Potato Tissue](/docs/definitions/resource/potato-tissue)|Resource|1.0 kg|
+|[Pulp](/docs/definitions/resource/pulp)|Resource|100.0 kg|
+|[Quinoa Tissue](/docs/definitions/resource/quinoa-tissue)|Resource|1.0 kg|
+|[Radish Tissue](/docs/definitions/resource/radish-tissue)|Resource|1.0 kg|
+|[Red Beet Tissue](/docs/definitions/resource/red-beet-tissue)|Resource|1.0 kg|
+|[Rhizobia](/docs/definitions/resource/rhizobia)|Resource|20.0 kg|
+|[Rice Tissue](/docs/definitions/resource/rice-tissue)|Resource|1.0 kg|
+|[Rice vinegar](/docs/definitions/resource/rice-vinegar)|Resource|50.0 kg|
+|[Roasted peanut](/docs/definitions/resource/roasted-peanut)|Resource|50.0 kg|
+|[Sesame Tissue](/docs/definitions/resource/sesame-tissue)|Resource|1.0 kg|
+|[Sesame oil](/docs/definitions/resource/sesame-oil)|Resource|50.0 kg|
+|[Sesame seed](/docs/definitions/resource/sesame-seed)|Resource|50.0 kg|
+|[Sodium hypochlorite](/docs/definitions/resource/sodium-hypochlorite)|Resource|20.0 kg|
+|[Soy flour](/docs/definitions/resource/soy-flour)|Resource|50.0 kg|
+|[Soy protein](/docs/definitions/resource/soy-protein)|Resource|50.0 kg|
+|[Soy sauce](/docs/definitions/resource/soy-sauce)|Resource|50.0 kg|
+|[Soy sprout](/docs/definitions/resource/soy-sprout)|Resource|50.0 kg|
+|[Soybean Tissue](/docs/definitions/resource/soybean-tissue)|Resource|1.0 kg|
+|[Soybean oil](/docs/definitions/resource/soybean-oil)|Resource|50.0 kg|
+|[Soymilk](/docs/definitions/resource/soymilk)|Resource|50.0 kg|
+|[Spring Onion Tissue](/docs/definitions/resource/spring-onion-tissue)|Resource|1.0 kg|
+|[Strawberry Tissue](/docs/definitions/resource/strawberry-tissue)|Resource|1.0 kg|
+|[Sugar](/docs/definitions/resource/sugar)|Resource|50.0 kg|
+|[Sugarcane Tissue](/docs/definitions/resource/sugarcane-tissue)|Resource|1.0 kg|
+|[Sweet Potato Tissue](/docs/definitions/resource/sweet-potato-tissue)|Resource|1.0 kg|
+|[Swiss Chard Tissue](/docs/definitions/resource/swiss-chard-tissue)|Resource|1.0 kg|
+|[Table salt](/docs/definitions/resource/table-salt)|Resource|50.0 kg|
+|[Taro Tissue](/docs/definitions/resource/taro-tissue)|Resource|1.0 kg|
+|[Tofu](/docs/definitions/resource/tofu)|Resource|50.0 kg|
+|[Toilet tissue](/docs/definitions/resource/toilet-tissue)|Resource|100.0 kg|
+|[Tomato Tissue](/docs/definitions/resource/tomato-tissue)|Resource|1.0 kg|
+|[Veggie patty](/docs/definitions/resource/veggie-patty)|Resource|50.0 kg|
+|[Water](/docs/definitions/resource/water)|Resource|4000.0 kg|
+|[Wheat Tissue](/docs/definitions/resource/wheat-tissue)|Resource|1.0 kg|
+|[Wheat bread](/docs/definitions/resource/wheat-bread)|Resource|50.0 kg|
+|[Wheat bun](/docs/definitions/resource/wheat-bun)|Resource|50.0 kg|
+|[Wheat flour](/docs/definitions/resource/wheat-flour)|Resource|50.0 kg|
+|[White bread](/docs/definitions/resource/white-bread)|Resource|50.0 kg|
+|[White bun](/docs/definitions/resource/white-bun)|Resource|50.0 kg|
+|[White mustard Tissue](/docs/definitions/resource/white-mustard-tissue)|Resource|1.0 kg|
+|[White onion Tissue](/docs/definitions/resource/white-onion-tissue)|Resource|1.0 kg|
+|[Yam Tissue](/docs/definitions/resource/yam-tissue)|Resource|1.0 kg|
+|[Yeast](/docs/definitions/resource/yeast)|Resource|50.0 kg|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|24|
+|wheelbarrow|8|
+|specimen box|24|
+|bag|24|
+|large bag|24|
+|gas canister|24|
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/part/_index.md b/content/docs/definitions/part/_index.md
new file mode 100644
index 0000000..418df5e
--- /dev/null
+++ b/content/docs/definitions/part/_index.md
@@ -0,0 +1,210 @@
+---
+title: Part
+description: Parts used for repairs and processes
+---
+
+
+
+
+{{< alert color="success" >}}These can be changed via the XML file _parts.xml_. See [XML Files](/docs/guide/xml-files/){{< /alert >}}
+
+
+Grouped by Good Type.
+
+### Attachment {#A-attachment}
+
+- [Backhoe](../part/backhoe)
+- [Bulldozer Blade](../part/bulldozer-blade)
+- [Crane Boom](../part/crane-boom)
+- [Pneumatic Drill](../part/pneumatic-drill)
+- [Soil Compactor](../part/soil-compactor)
+
+### Construction {#A-construction}
+
+- [Aerogel tile](../part/aerogel-tile)
+- [Brick](../part/brick)
+- [Insulation board](../part/insulation-board)
+- [Polycarbonate roofing](../part/polycarbonate-roofing)
+- [Steel Post](../part/steel-post)
+- [Steel Truss](../part/steel-truss)
+- [Window](../part/window)
+
+### Container {#A-container}
+
+- [Petri dish](../part/petri-dish)
+
+### EVA {#A-eva}
+
+- [Coveralls](../part/coveralls)
+- [EVA Antenna](../part/eva-antenna)
+- [EVA Battery](../part/eva-battery)
+- [EVA Boots](../part/eva-boots)
+- [EVA Gloves](../part/eva-gloves)
+- [EVA Helmet](../part/eva-helmet)
+- [EVA Pads](../part/eva-pads)
+- [EVA Radio](../part/eva-radio)
+- [EVA backpack](../part/eva-backpack)
+- [Helmet Visor](../part/helmet-visor)
+- [Pressure Suit](../part/pressure-suit)
+- [Suit Heating Unit](../part/suit-heating-unit)
+
+### Electrical {#A-electrical}
+
+- [Air Compressor](../part/air-compressor)
+- [Aluminum Wire](../part/aluminum-wire)
+- [Condenser Coil](../part/condenser-coil)
+- [Copper Wire](../part/copper-wire)
+- [Electrical Wire](../part/electrical-wire)
+- [Flood light](../part/flood-light)
+- [Glass Tube](../part/glass-tube)
+- [Heating Element](../part/heating-element)
+- [High Pressure Sodium lamp](../part/high-pressure-sodium-lamp)
+- [Motor 5 kW](../part/motor-5-kw)
+- [Power Cable](../part/power-cable)
+- [Power Panel](../part/power-panel)
+- [Solar Panel](../part/solar-panel)
+- [Solar Parabolic Mirror](../part/solar-parabolic-mirror)
+- [Spark Plug](../part/spark-plug)
+- [Steel Cable](../part/steel-cable)
+- [Steel Wire](../part/steel-wire)
+- [Stepper Motor](../part/stepper-motor)
+- [Surge Protector](../part/surge-protector)
+- [Transformer](../part/transformer)
+- [Turbine Generator](../part/turbine-generator)
+- [Ventilation fan](../part/ventilation-fan)
+- [Wind Turbine Blade](../part/wind-turbine-blade)
+- [Wire Connector](../part/wire-connector)
+
+### Electronic {#A-electronic}
+
+- [CMOS sensor](../part/cmos-sensor)
+- [Capacitor](../part/capacitor)
+- [Carbon Dioxide laser](../part/carbon-dioxide-laser)
+- [Communications Circuit Board](../part/communications-circuit-board)
+- [Diode](../part/diode)
+- [Helium Neon laser](../part/helium-neon-laser)
+- [Light Emitting Diode bulb](../part/light-emitting-diode-bulb)
+- [Light Emitting Diode kit](../part/light-emitting-diode-kit)
+- [Logic board](../part/logic-board)
+- [Metal Oxide Varistor](../part/metal-oxide-varistor)
+- [Methane Fuel cell](../part/methane-fuel-cell)
+- [Methane Fuel cell stack](../part/methane-fuel-cell-stack)
+- [Methanol Fuel cell](../part/methanol-fuel-cell)
+- [Methanol Fuel cell stack](../part/methanol-fuel-cell-stack)
+- [Microcontroller](../part/microcontroller)
+- [Navigation Circuit Board](../part/navigation-circuit-board)
+- [Optical Lens](../part/optical-lens)
+- [Optical Prism](../part/optical-prism)
+- [Optical cable](../part/optical-cable)
+- [Power Transistor](../part/power-transistor)
+- [Radio Antenna](../part/radio-antenna)
+- [Resistor](../part/resistor)
+- [SLS 3D Printer](../part/sls-3d-printer)
+- [Satellite Dish](../part/satellite-dish)
+- [Semiconductor Wafer](../part/semiconductor-wafer)
+- [biosensor](../part/biosensor)
+
+### Instrument {#A-instrument}
+
+- [Gas Chromatograph](../part/gas-chromatograph)
+- [Heat Probe](../part/heat-probe)
+- [Infra-Red Spectrometer](../part/infra-red-spectrometer)
+- [Mass Spectrometer](../part/mass-spectrometer)
+- [Plasma cutter](../part/plasma-cutter)
+- [Telescoping antenna](../part/telescoping-antenna)
+- [X-Ray Fluorescene Spectrometer](../part/x-ray-fluorescene-spectrometer)
+
+### Kitchen {#A-kitchen}
+
+- [Autoclave](../part/autoclave)
+- [Blender](../part/blender)
+- [Microwave](../part/microwave)
+- [Oven](../part/oven)
+- [Refrigerator](../part/refrigerator)
+- [Stove](../part/stove)
+
+### Metallic {#A-metallic}
+
+- [Aluminum Ingot](../part/aluminum-ingot)
+- [Aluminum Scrap](../part/aluminum-scrap)
+- [Aluminum Sheet](../part/aluminum-sheet)
+- [Copper Pipe](../part/copper-pipe)
+- [Copper Sheet](../part/copper-sheet)
+- [Iron Ingot](../part/iron-ingot)
+- [Iron Pipe](../part/iron-pipe)
+- [Iron Sheet](../part/iron-sheet)
+- [Steel Ingot](../part/steel-ingot)
+- [Steel Pipe](../part/steel-pipe)
+- [Steel Scrap](../part/steel-scrap)
+- [Steel Sheet](../part/steel-sheet)
+
+### Tool {#A-tool}
+
+- [Bore Drill Bit](../part/bore-drill-bit)
+- [Bore Drill Pipe](../part/bore-drill-pipe)
+- [Drilling Rig](../part/drilling-rig)
+- [Mushroom Containment kit](../part/mushroom-containment-kit)
+- [Pipe wrench](../part/pipe-wrench)
+- [Small Hammer](../part/small-hammer)
+- [Socket wrench](../part/socket-wrench)
+- [Winch](../part/winch)
+
+### Utility {#A-utility}
+
+- [Air Duct](../part/air-duct)
+- [Airleak Patch](../part/airleak-patch)
+- [Carbon Dioxide pump](../part/carbon-dioxide-pump)
+- [Charcoal filter](../part/charcoal-filter)
+- [Coolant Bottle](../part/coolant-bottle)
+- [Decontamination kit](../part/decontamination-kit)
+- [Electrostatic Precipitator](../part/electrostatic-precipitator)
+- [Fiberglass](../part/fiberglass)
+- [Fiberglass Cloth](../part/fiberglass-cloth)
+- [Fire Extinguisher](../part/fire-extinguisher)
+- [Flexible hose](../part/flexible-hose)
+- [Fuel Tank](../part/fuel-tank)
+- [Fuel pump](../part/fuel-pump)
+- [Garment](../part/garment)
+- [Gas Tank](../part/gas-tank)
+- [Gasket](../part/gasket)
+- [Glass Bottle](../part/glass-bottle)
+- [Glass Sheet](../part/glass-sheet)
+- [Heat pipe](../part/heat-pipe)
+- [Heat pump](../part/heat-pump)
+- [Liquid Cooling Garment](../part/liquid-cooling-garment)
+- [Lubricant Bottle](../part/lubricant-bottle)
+- [Oxygen pump](../part/oxygen-pump)
+- [Pathogen filter](../part/pathogen-filter)
+- [Plastic Bottle](../part/plastic-bottle)
+- [Plastic Pipe](../part/plastic-pipe)
+- [Plastic Sheet](../part/plastic-sheet)
+- [Plastic Tubing](../part/plastic-tubing)
+- [Rope](../part/rope)
+- [Steel Canister](../part/steel-canister)
+- [Turbopump](../part/turbopump)
+- [Valve](../part/valve)
+- [Water Pump large](../part/water-pump-large)
+- [Water Pump small](../part/water-pump-small)
+- [Water Tank](../part/water-tank)
+- [Work gloves](../part/work-gloves)
+
+### Vehicle {#A-vehicle}
+
+- [Battery Module](../part/battery-module)
+- [Drone Chassis Panel](../part/drone-chassis-panel)
+- [Motor 10 kW](../part/motor-10-kw)
+- [Motor 30 kW](../part/motor-30-kw)
+- [Propeller](../part/propeller)
+- [Rover Control Panel](../part/rover-control-panel)
+- [Rover Wheel](../part/rover-wheel)
+- [Rover Windshield](../part/rover-windshield)
+- [Timing Belt](../part/timing-belt)
+- [Utility Vehicle Control Panel](../part/utility-vehicle-control-panel)
+- [Vehicle Chassis Panel](../part/vehicle-chassis-panel)
+- [Vehicle Frame large](../part/vehicle-frame-large)
+- [Vehicle Frame small](../part/vehicle-frame-small)
+- [Wheel small](../part/wheel-small)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/part/aerogel-tile.md b/content/docs/definitions/part/aerogel-tile.md
new file mode 100644
index 0000000..f15089c
--- /dev/null
+++ b/content/docs/definitions/part/aerogel-tile.md
@@ -0,0 +1,35 @@
+---
+title: Part - Aerogel tile
+linkTitle: Aerogel tile
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Assume each tile is about 1m x 1m. Excellent for transparent insulation,
a silica aerogel tile contain nanoscale networks of interconnecting silica clusters,
contain over 97% air by volume and have some of the lowest measured thermal conductivities of
any known material (of 0.02 W/m/K at 1 bar pressure or 0.01 W/m/K at Martian atmospheric
pressure). Routinely employed in many engineering applications, including
NASA’s Mars Exploration Rovers where thin aerogel layers provided night-time thermal
insulation. A 3 cm layer of silica aerogel can increase the temperature of the underlying
surface by 45 K when it receives a flux of 150 W/m2.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.3 kg|
+|Type:|Construction|
+
+## Made by Manufacturing Process
+
+- [Make aerogel tile](/docs/definitions/process/make-aerogel-tile)
+
+## Used by Manufacturing Process
+
+- [Manufacture rover windshield](/docs/definitions/process/manufacture-rover-windshield)
+- [Manufacture window](/docs/definitions/process/manufacture-window)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+- [Manufacture polycarbonate roofing](/docs/definitions/process/manufacture-polycarbonate-roofing)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/air-compressor.md b/content/docs/definitions/part/air-compressor.md
new file mode 100644
index 0000000..5da85ff
--- /dev/null
+++ b/content/docs/definitions/part/air-compressor.md
@@ -0,0 +1,26 @@
+---
+title: Part - Air Compressor
+linkTitle: Air Compressor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Make air compressor](/docs/definitions/process/make-air-compressor)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/air-duct.md b/content/docs/definitions/part/air-duct.md
new file mode 100644
index 0000000..7c18e8a
--- /dev/null
+++ b/content/docs/definitions/part/air-duct.md
@@ -0,0 +1,26 @@
+---
+title: Part - Air Duct
+linkTitle: Air Duct
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.3 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Manufacture large air duct](/docs/definitions/process/manufacture-large-air-duct)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/airleak-patch.md b/content/docs/definitions/part/airleak-patch.md
new file mode 100644
index 0000000..5da7a40
--- /dev/null
+++ b/content/docs/definitions/part/airleak-patch.md
@@ -0,0 +1,26 @@
+---
+title: Part - Airleak Patch
+linkTitle: Airleak Patch
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Plastic and adhesive patch for airleak.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.2 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make airleak patch](/docs/definitions/process/make-airleak-patch)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/aluminum-ingot.md b/content/docs/definitions/part/aluminum-ingot.md
new file mode 100644
index 0000000..32112e6
--- /dev/null
+++ b/content/docs/definitions/part/aluminum-ingot.md
@@ -0,0 +1,31 @@
+---
+title: Part - Aluminum Ingot
+linkTitle: Aluminum Ingot
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|Metallic|
+
+## Made by Manufacturing Process
+
+- [Cast aluminum ingot](/docs/definitions/process/cast-aluminum-ingot)
+- [Cast aluminum ingot (large batch)](/docs/definitions/process/cast-aluminum-ingot--large-batch-)
+- [Recycle aluminum scrap](/docs/definitions/process/recycle-aluminum-scrap)
+
+## Used by Manufacturing Process
+
+- [Roll aluminum sheet](/docs/definitions/process/roll-aluminum-sheet)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/aluminum-scrap.md b/content/docs/definitions/part/aluminum-scrap.md
new file mode 100644
index 0000000..3d45c6e
--- /dev/null
+++ b/content/docs/definitions/part/aluminum-scrap.md
@@ -0,0 +1,26 @@
+---
+title: Part - Aluminum Scrap
+linkTitle: Aluminum Scrap
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A 5 kg piece of salvaged aluminum scrap.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|Metallic|
+
+
+## Used by Manufacturing Process
+
+- [Recycle aluminum scrap](/docs/definitions/process/recycle-aluminum-scrap)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/aluminum-sheet.md b/content/docs/definitions/part/aluminum-sheet.md
new file mode 100644
index 0000000..5ac345b
--- /dev/null
+++ b/content/docs/definitions/part/aluminum-sheet.md
@@ -0,0 +1,46 @@
+---
+title: Part - Aluminum Sheet
+linkTitle: Aluminum Sheet
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A density of 2.72 g/cm3. 1m x 1m x 1mm sheet of aluminum
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.72 kg|
+|Type:|Metallic|
+
+## Made by Manufacturing Process
+
+- [Make aluminum sheet](/docs/definitions/process/make-aluminum-sheet)
+- [Roll aluminum sheet](/docs/definitions/process/roll-aluminum-sheet)
+
+## Used by Manufacturing Process
+
+- [Make satellite dish](/docs/definitions/process/make-satellite-dish)
+- [Make satellite dish Alt #1](/docs/definitions/process/make-satellite-dish-alt--1)
+- [Make radio antenna](/docs/definitions/process/make-radio-antenna)
+- [Make radio antenna Alt #1](/docs/definitions/process/make-radio-antenna-alt--1)
+- [Make suit heating unit](/docs/definitions/process/make-suit-heating-unit)
+- [Make EVA antenna](/docs/definitions/process/make-eva-antenna)
+- [Make EVA antenna Alt #1](/docs/definitions/process/make-eva-antenna-alt--1)
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Draw aluminum wire](/docs/definitions/process/draw-aluminum-wire)
+- [Roll heat pipe from aluminum sheet](/docs/definitions/process/roll-heat-pipe-from-aluminum-sheet)
+- [Fabricate solar panel](/docs/definitions/process/fabricate-solar-panel)
+- [Fabricate solar parabolic mirror](/docs/definitions/process/fabricate-solar-parabolic-mirror)
+- [Make light emitting diode kit](/docs/definitions/process/make-light-emitting-diode-kit)
+- [Make flood light](/docs/definitions/process/make-flood-light)
+- [Manufacture large air duct](/docs/definitions/process/manufacture-large-air-duct)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/aluminum-wire.md b/content/docs/definitions/part/aluminum-wire.md
new file mode 100644
index 0000000..69c14ba
--- /dev/null
+++ b/content/docs/definitions/part/aluminum-wire.md
@@ -0,0 +1,46 @@
+---
+title: Part - Aluminum Wire
+linkTitle: Aluminum Wire
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.544 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Draw aluminum wire](/docs/definitions/process/draw-aluminum-wire)
+
+## Used by Manufacturing Process
+
+- [Make fuel pump](/docs/definitions/process/make-fuel-pump)
+- [Make oxygen pump](/docs/definitions/process/make-oxygen-pump)
+- [Make carbon dioxide pump](/docs/definitions/process/make-carbon-dioxide-pump)
+- [Make electrical wire](/docs/definitions/process/make-electrical-wire)
+- [Make aluminum power cable](/docs/definitions/process/make-aluminum-power-cable)
+- [Make wire connector](/docs/definitions/process/make-wire-connector)
+- [Make large water pump](/docs/definitions/process/make-large-water-pump)
+- [Make small water pump](/docs/definitions/process/make-small-water-pump)
+- [Make heat pump](/docs/definitions/process/make-heat-pump)
+- [Make air compressor](/docs/definitions/process/make-air-compressor)
+- [Manufacture food blender](/docs/definitions/process/manufacture-food-blender)
+- [Manufacture oven](/docs/definitions/process/manufacture-oven)
+- [Manufacture ventilation fan](/docs/definitions/process/manufacture-ventilation-fan)
+- [Manufacture kitchen stove](/docs/definitions/process/manufacture-kitchen-stove)
+- [Manufacture refrigerator](/docs/definitions/process/manufacture-refrigerator)
+- [Manufacture autoclave](/docs/definitions/process/manufacture-autoclave)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+- [Manufacture transformer](/docs/definitions/process/manufacture-transformer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/autoclave.md b/content/docs/definitions/part/autoclave.md
new file mode 100644
index 0000000..161d3cb
--- /dev/null
+++ b/content/docs/definitions/part/autoclave.md
@@ -0,0 +1,26 @@
+---
+title: Part - Autoclave
+linkTitle: Autoclave
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|20.0 kg|
+|Type:|Kitchen|
+
+## Made by Manufacturing Process
+
+- [Manufacture autoclave](/docs/definitions/process/manufacture-autoclave)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/backhoe.md b/content/docs/definitions/part/backhoe.md
new file mode 100644
index 0000000..05c9059
--- /dev/null
+++ b/content/docs/definitions/part/backhoe.md
@@ -0,0 +1,26 @@
+---
+title: Part - Backhoe
+linkTitle: Backhoe
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Attachment part for LUV. An excavating equipment with a digging bucket on the end of a two-part articulated arm
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|35.0 kg|
+|Type:|Attachment|
+
+## Made by Manufacturing Process
+
+- [Assemble backhoe](/docs/definitions/process/assemble-backhoe)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/battery-module.md b/content/docs/definitions/part/battery-module.md
new file mode 100644
index 0000000..8c08bd4
--- /dev/null
+++ b/content/docs/definitions/part/battery-module.md
@@ -0,0 +1,35 @@
+---
+title: Part - Battery Module
+linkTitle: Battery Module
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Assuming the future achievement of 1 kg/kWh or 1 kWh/kg,
this 15 kWh rechargeable battery provides 'auxiliary' electrical power to
the vehicle, on top of the primary fuel cell stack.
With 15 kWh capacity, or it's 37.5 Ah (= 15/.4) and is rated to operate at 400V.
Assume 6.43 km/kWh (based on a Tesla Model S battery pack weighing 2240 kg
with 100 kWh capacity that can travel 643 km),
this battery allows traveling a distance of 96.5 km on a single charge.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|15.0 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Manufacture battery module](/docs/definitions/process/manufacture-battery-module)
+- [Manufacture battery module Alt #1](/docs/definitions/process/manufacture-battery-module-alt--1)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/biosensor.md b/content/docs/definitions/part/biosensor.md
new file mode 100644
index 0000000..39b34ea
--- /dev/null
+++ b/content/docs/definitions/part/biosensor.md
@@ -0,0 +1,30 @@
+---
+title: Part - biosensor
+linkTitle: biosensor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A biopolymer sensor that can be printed on a wide range of materials
for sensing trace levels of pollutants/toxins or whatever airborne/waterborne bacteria
and virus. It contains embedded molecular switches consisting of a protein that acts
like a lock and key. A target molecule or pathogen binds to the switch, which opens
the 'lock' to combine to form an enzyme and emits a light indicating the presence and
quantity of the target. Useful for pathogen detection, food analysis, medical monitoring,
and measurement of pollutants
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.1 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Make biosensor](/docs/definitions/process/make-biosensor)
+- [Make biosensor Alt #1](/docs/definitions/process/make-biosensor-alt--1)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/blender.md b/content/docs/definitions/part/blender.md
new file mode 100644
index 0000000..edc2c8a
--- /dev/null
+++ b/content/docs/definitions/part/blender.md
@@ -0,0 +1,26 @@
+---
+title: Part - Blender
+linkTitle: Blender
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.0 kg|
+|Type:|Kitchen|
+
+## Made by Manufacturing Process
+
+- [Manufacture food blender](/docs/definitions/process/manufacture-food-blender)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/bore-drill-bit.md b/content/docs/definitions/part/bore-drill-bit.md
new file mode 100644
index 0000000..2a99a70
--- /dev/null
+++ b/content/docs/definitions/part/bore-drill-bit.md
@@ -0,0 +1,26 @@
+---
+title: Part - Bore Drill Bit
+linkTitle: Bore Drill Bit
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A steel drill bit for drilling bore holes.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|25.0 kg|
+|Type:|Tool|
+
+## Made by Manufacturing Process
+
+- [Manufacture bore drill bit](/docs/definitions/process/manufacture-bore-drill-bit)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/bore-drill-pipe.md b/content/docs/definitions/part/bore-drill-pipe.md
new file mode 100644
index 0000000..b99e07b
--- /dev/null
+++ b/content/docs/definitions/part/bore-drill-pipe.md
@@ -0,0 +1,26 @@
+---
+title: Part - Bore Drill Pipe
+linkTitle: Bore Drill Pipe
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A steel pipe for drilling and lining bore holes.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|50.0 kg|
+|Type:|Tool|
+
+## Made by Manufacturing Process
+
+- [Manufacture bore drill pipe](/docs/definitions/process/manufacture-bore-drill-pipe)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/brick.md b/content/docs/definitions/part/brick.md
new file mode 100644
index 0000000..e5e1982
--- /dev/null
+++ b/content/docs/definitions/part/brick.md
@@ -0,0 +1,27 @@
+---
+title: Part - Brick
+linkTitle: Brick
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Construction brick (215mm x 102.5mm x 65mm) 2.86kg
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.86 kg|
+|Type:|Construction|
+
+## Made by Manufacturing Process
+
+- [Bake regolith brick](/docs/definitions/process/bake-regolith-brick)
+- [Bake sand brick](/docs/definitions/process/bake-sand-brick)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/bulldozer-blade.md b/content/docs/definitions/part/bulldozer-blade.md
new file mode 100644
index 0000000..46ad092
--- /dev/null
+++ b/content/docs/definitions/part/bulldozer-blade.md
@@ -0,0 +1,26 @@
+---
+title: Part - Bulldozer Blade
+linkTitle: Bulldozer Blade
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Attachment part for LUV. A bulldozer blade (possible use for new structures).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|40.0 kg|
+|Type:|Attachment|
+
+## Made by Manufacturing Process
+
+- [Manufacture bulldozer blade](/docs/definitions/process/manufacture-bulldozer-blade)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/capacitor.md b/content/docs/definitions/part/capacitor.md
new file mode 100644
index 0000000..e48af64
--- /dev/null
+++ b/content/docs/definitions/part/capacitor.md
@@ -0,0 +1,30 @@
+---
+title: Part - Capacitor
+linkTitle: Capacitor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+a basic electrical component.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.005 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture capacitors](/docs/definitions/process/manufacture-capacitors)
+
+## Used by Manufacturing Process
+
+- [Manufacture logic board](/docs/definitions/process/manufacture-logic-board)
+- [Manufacture plasma cutter](/docs/definitions/process/manufacture-plasma-cutter)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/carbon-dioxide-laser.md b/content/docs/definitions/part/carbon-dioxide-laser.md
new file mode 100644
index 0000000..9490f39
--- /dev/null
+++ b/content/docs/definitions/part/carbon-dioxide-laser.md
@@ -0,0 +1,29 @@
+---
+title: Part - Carbon Dioxide laser
+linkTitle: Carbon Dioxide laser
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture carbon dioxide laser](/docs/definitions/process/manufacture-carbon-dioxide-laser)
+
+## Used by Manufacturing Process
+
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/carbon-dioxide-pump.md b/content/docs/definitions/part/carbon-dioxide-pump.md
new file mode 100644
index 0000000..43b215d
--- /dev/null
+++ b/content/docs/definitions/part/carbon-dioxide-pump.md
@@ -0,0 +1,29 @@
+---
+title: Part - Carbon Dioxide pump
+linkTitle: Carbon Dioxide pump
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make carbon dioxide pump](/docs/definitions/process/make-carbon-dioxide-pump)
+
+## Used by Manufacturing Process
+
+- [Make mushroom containment kit](/docs/definitions/process/make-mushroom-containment-kit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/charcoal-filter.md b/content/docs/definitions/part/charcoal-filter.md
new file mode 100644
index 0000000..c07fddd
--- /dev/null
+++ b/content/docs/definitions/part/charcoal-filter.md
@@ -0,0 +1,29 @@
+---
+title: Part - Charcoal filter
+linkTitle: Charcoal filter
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make charcoal filter](/docs/definitions/process/make-charcoal-filter)
+
+## Used by Manufacturing Process
+
+- [Manufacture pathogen filter](/docs/definitions/process/manufacture-pathogen-filter)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/cmos-sensor.md b/content/docs/definitions/part/cmos-sensor.md
new file mode 100644
index 0000000..d1d434f
--- /dev/null
+++ b/content/docs/definitions/part/cmos-sensor.md
@@ -0,0 +1,36 @@
+---
+title: Part - CMOS sensor
+linkTitle: CMOS sensor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Complementary Metal–Oxide–Semiconductor(CMOS) consists
of millions of pixel sensors, each of which includes a photodetector.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.05 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Make CMOS sensor](/docs/definitions/process/make-cmos-sensor)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+- [Make biosensor](/docs/definitions/process/make-biosensor)
+- [Make biosensor Alt #1](/docs/definitions/process/make-biosensor-alt--1)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/communications-circuit-board.md b/content/docs/definitions/part/communications-circuit-board.md
new file mode 100644
index 0000000..7131dea
--- /dev/null
+++ b/content/docs/definitions/part/communications-circuit-board.md
@@ -0,0 +1,36 @@
+---
+title: Part - Communications Circuit Board
+linkTitle: Communications Circuit Board
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.5 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture communications circuit board](/docs/definitions/process/manufacture-communications-circuit-board)
+
+## Used by Manufacturing Process
+
+- [Manufacture rover control panel](/docs/definitions/process/manufacture-rover-control-panel)
+- [Manufacture rover control panel Alt #1](/docs/definitions/process/manufacture-rover-control-panel-alt--1)
+- [Manufacture rover control panel Alt #2](/docs/definitions/process/manufacture-rover-control-panel-alt--2)
+- [Manufacture utility vehicle control panel](/docs/definitions/process/manufacture-utility-vehicle-control-panel)
+- [Manufacture utility vehicle control panel Alt #1](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1)
+- [Manufacture utility vehicle control panel Alt #2](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2)
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/condenser-coil.md b/content/docs/definitions/part/condenser-coil.md
new file mode 100644
index 0000000..5139624
--- /dev/null
+++ b/content/docs/definitions/part/condenser-coil.md
@@ -0,0 +1,29 @@
+---
+title: Part - Condenser Coil
+linkTitle: Condenser Coil
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Copper tube coil used to condense steam into liquid water.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|10.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Make condenser coil](/docs/definitions/process/make-condenser-coil)
+
+## Used by Manufacturing Process
+
+- [Make heat pump](/docs/definitions/process/make-heat-pump)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/coolant-bottle.md b/content/docs/definitions/part/coolant-bottle.md
new file mode 100644
index 0000000..2a68876
--- /dev/null
+++ b/content/docs/definitions/part/coolant-bottle.md
@@ -0,0 +1,26 @@
+---
+title: Part - Coolant Bottle
+linkTitle: Coolant Bottle
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.2 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make coolant bottle](/docs/definitions/process/make-coolant-bottle)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/copper-pipe.md b/content/docs/definitions/part/copper-pipe.md
new file mode 100644
index 0000000..4b133fc
--- /dev/null
+++ b/content/docs/definitions/part/copper-pipe.md
@@ -0,0 +1,29 @@
+---
+title: Part - Copper Pipe
+linkTitle: Copper Pipe
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A density of 8.94 g/cm3. length of 1m. Thickness of 2mm. Diameter of 20mm
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.011 kg|
+|Type:|Metallic|
+
+## Made by Manufacturing Process
+
+- [Make copper pipe](/docs/definitions/process/make-copper-pipe)
+
+## Used by Manufacturing Process
+
+- [Make condenser coil](/docs/definitions/process/make-condenser-coil)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/copper-sheet.md b/content/docs/definitions/part/copper-sheet.md
new file mode 100644
index 0000000..45ee5e7
--- /dev/null
+++ b/content/docs/definitions/part/copper-sheet.md
@@ -0,0 +1,32 @@
+---
+title: Part - Copper Sheet
+linkTitle: Copper Sheet
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A density of 8.94 g/cm3. 1m x 1m x 1mm sheet of copper
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|8.94 kg|
+|Type:|Metallic|
+
+## Made by Manufacturing Process
+
+- [Make copper sheet](/docs/definitions/process/make-copper-sheet)
+
+## Used by Manufacturing Process
+
+- [Draw copper wire](/docs/definitions/process/draw-copper-wire)
+- [Make copper pipe](/docs/definitions/process/make-copper-pipe)
+- [Roll heat pipe from copper sheet](/docs/definitions/process/roll-heat-pipe-from-copper-sheet)
+- [Make heat pump](/docs/definitions/process/make-heat-pump)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/copper-wire.md b/content/docs/definitions/part/copper-wire.md
new file mode 100644
index 0000000..a303267
--- /dev/null
+++ b/content/docs/definitions/part/copper-wire.md
@@ -0,0 +1,39 @@
+---
+title: Part - Copper Wire
+linkTitle: Copper Wire
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.526 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Draw copper wire](/docs/definitions/process/draw-copper-wire)
+
+## Used by Manufacturing Process
+
+- [Manufacture turbine generator](/docs/definitions/process/manufacture-turbine-generator)
+- [Manufacture Stepper Motor](/docs/definitions/process/manufacture-stepper-motor)
+- [Manufacture 5 kW Motor](/docs/definitions/process/manufacture-5-kw-motor)
+- [Manufacture 10 kW Motor](/docs/definitions/process/manufacture-10-kw-motor)
+- [Manufacture 30 kW Motor](/docs/definitions/process/manufacture-30-kw-motor)
+- [Make copper electrical wire](/docs/definitions/process/make-copper-electrical-wire)
+- [Make copper power cable](/docs/definitions/process/make-copper-power-cable)
+- [Make copper wire connector](/docs/definitions/process/make-copper-wire-connector)
+- [Make heating element](/docs/definitions/process/make-heating-element)
+- [Make flood light](/docs/definitions/process/make-flood-light)
+- [Manufacture transformer](/docs/definitions/process/manufacture-transformer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/coveralls.md b/content/docs/definitions/part/coveralls.md
new file mode 100644
index 0000000..99df65b
--- /dev/null
+++ b/content/docs/definitions/part/coveralls.md
@@ -0,0 +1,30 @@
+---
+title: Part - Coveralls
+linkTitle: Coveralls
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Outer EVA suit with insulative liner.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|EVA|
+
+## Made by Manufacturing Process
+
+- [Make coveralls](/docs/definitions/process/make-coveralls)
+- [Make coveralls Alt #1](/docs/definitions/process/make-coveralls-alt--1)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/crane-boom.md b/content/docs/definitions/part/crane-boom.md
new file mode 100644
index 0000000..6899613
--- /dev/null
+++ b/content/docs/definitions/part/crane-boom.md
@@ -0,0 +1,26 @@
+---
+title: Part - Crane Boom
+linkTitle: Crane Boom
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Attachment part for LUV. A long, telescopic or fixed arm for moving objects
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|75.0 kg|
+|Type:|Attachment|
+
+## Made by Manufacturing Process
+
+- [Manufacture crane boom](/docs/definitions/process/manufacture-crane-boom)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/decontamination-kit.md b/content/docs/definitions/part/decontamination-kit.md
new file mode 100644
index 0000000..bf82258
--- /dev/null
+++ b/content/docs/definitions/part/decontamination-kit.md
@@ -0,0 +1,26 @@
+---
+title: Part - Decontamination kit
+linkTitle: Decontamination kit
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Useful for cleaning up a chemical spill.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.2 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make decontamination kit](/docs/definitions/process/make-decontamination-kit)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/diode.md b/content/docs/definitions/part/diode.md
new file mode 100644
index 0000000..c668de0
--- /dev/null
+++ b/content/docs/definitions/part/diode.md
@@ -0,0 +1,33 @@
+---
+title: Part - Diode
+linkTitle: Diode
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+a basic electrical component.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.005 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture diodes](/docs/definitions/process/manufacture-diodes)
+
+## Used by Manufacturing Process
+
+- [Manufacture carbon dioxide laser](/docs/definitions/process/manufacture-carbon-dioxide-laser)
+- [Manufacture helium neon laser](/docs/definitions/process/manufacture-helium-neon-laser)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+- [Manufacture logic board](/docs/definitions/process/manufacture-logic-board)
+- [Manufacture plasma cutter](/docs/definitions/process/manufacture-plasma-cutter)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/drilling-rig.md b/content/docs/definitions/part/drilling-rig.md
new file mode 100644
index 0000000..5f8597f
--- /dev/null
+++ b/content/docs/definitions/part/drilling-rig.md
@@ -0,0 +1,26 @@
+---
+title: Part - Drilling Rig
+linkTitle: Drilling Rig
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
An attachment for luv. A motor platform for supporting drilling (used in conjunction with the crane boom)
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|135.0 kg|
+|Type:|Tool|
+
+## Made by Manufacturing Process
+
+- [Assemble drilling rig](/docs/definitions/process/assemble-drilling-rig)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/drone-chassis-panel.md b/content/docs/definitions/part/drone-chassis-panel.md
new file mode 100644
index 0000000..7351eab
--- /dev/null
+++ b/content/docs/definitions/part/drone-chassis-panel.md
@@ -0,0 +1,27 @@
+---
+title: Part - Drone Chassis Panel
+linkTitle: Drone Chassis Panel
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Reinforced fiberglass panels.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|20.0 kg|
+|Type:|Vehicle|
+
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/electrical-wire.md b/content/docs/definitions/part/electrical-wire.md
new file mode 100644
index 0000000..69e3cd1
--- /dev/null
+++ b/content/docs/definitions/part/electrical-wire.md
@@ -0,0 +1,105 @@
+---
+title: Part - Electrical Wire
+linkTitle: Electrical Wire
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.05 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Make electrical wire](/docs/definitions/process/make-electrical-wire)
+- [Make copper electrical wire](/docs/definitions/process/make-copper-electrical-wire)
+
+## Used by Manufacturing Process
+
+- [Make satellite dish](/docs/definitions/process/make-satellite-dish)
+- [Make satellite dish Alt #1](/docs/definitions/process/make-satellite-dish-alt--1)
+- [Make radio antenna](/docs/definitions/process/make-radio-antenna)
+- [Make radio antenna Alt #1](/docs/definitions/process/make-radio-antenna-alt--1)
+- [Make suit heating unit](/docs/definitions/process/make-suit-heating-unit)
+- [Make EVA helmet](/docs/definitions/process/make-eva-helmet)
+- [Make EVA helmet Alt #1](/docs/definitions/process/make-eva-helmet-alt--1)
+- [Make EVA helmet Alt #2](/docs/definitions/process/make-eva-helmet-alt--2)
+- [Make EVA backpack](/docs/definitions/process/make-eva-backpack)
+- [Make EVA backpack Alt #1](/docs/definitions/process/make-eva-backpack-alt--1)
+- [Make EVA backpack Alt #2](/docs/definitions/process/make-eva-backpack-alt--2)
+- [Make EVA antenna](/docs/definitions/process/make-eva-antenna)
+- [Make EVA antenna Alt #1](/docs/definitions/process/make-eva-antenna-alt--1)
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+- [Manufacture turbine generator](/docs/definitions/process/manufacture-turbine-generator)
+- [Manufacture Stepper Motor](/docs/definitions/process/manufacture-stepper-motor)
+- [Manufacture 5 kW Motor](/docs/definitions/process/manufacture-5-kw-motor)
+- [Manufacture 10 kW Motor](/docs/definitions/process/manufacture-10-kw-motor)
+- [Manufacture 30 kW Motor](/docs/definitions/process/manufacture-30-kw-motor)
+- [Manufacture rover control panel](/docs/definitions/process/manufacture-rover-control-panel)
+- [Manufacture rover control panel Alt #1](/docs/definitions/process/manufacture-rover-control-panel-alt--1)
+- [Manufacture rover control panel Alt #2](/docs/definitions/process/manufacture-rover-control-panel-alt--2)
+- [Manufacture utility vehicle control panel](/docs/definitions/process/manufacture-utility-vehicle-control-panel)
+- [Manufacture utility vehicle control panel Alt #1](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1)
+- [Manufacture utility vehicle control panel Alt #2](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2)
+- [Make fuel pump](/docs/definitions/process/make-fuel-pump)
+- [Make oxygen pump](/docs/definitions/process/make-oxygen-pump)
+- [Make carbon dioxide pump](/docs/definitions/process/make-carbon-dioxide-pump)
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+- [Make heating element](/docs/definitions/process/make-heating-element)
+- [Manufacture pneumatic drill](/docs/definitions/process/manufacture-pneumatic-drill)
+- [Assemble backhoe](/docs/definitions/process/assemble-backhoe)
+- [Manufacture crane boom](/docs/definitions/process/manufacture-crane-boom)
+- [Fabricate solar panel](/docs/definitions/process/fabricate-solar-panel)
+- [Manufacture battery module](/docs/definitions/process/manufacture-battery-module)
+- [Manufacture battery module Alt #1](/docs/definitions/process/manufacture-battery-module-alt--1)
+- [Manufacture EVA battery](/docs/definitions/process/manufacture-eva-battery)
+- [Manufacture EVA battery Alt #1](/docs/definitions/process/manufacture-eva-battery-alt--1)
+- [Make large water pump](/docs/definitions/process/make-large-water-pump)
+- [Make small water pump](/docs/definitions/process/make-small-water-pump)
+- [Make heat pump](/docs/definitions/process/make-heat-pump)
+- [Make air compressor](/docs/definitions/process/make-air-compressor)
+- [Manufacture food blender](/docs/definitions/process/manufacture-food-blender)
+- [Manufacture oven](/docs/definitions/process/manufacture-oven)
+- [Manufacture microwave](/docs/definitions/process/manufacture-microwave)
+- [Manufacture ventilation fan](/docs/definitions/process/manufacture-ventilation-fan)
+- [Manufacture kitchen stove](/docs/definitions/process/manufacture-kitchen-stove)
+- [Manufacture refrigerator](/docs/definitions/process/manufacture-refrigerator)
+- [Manufacture autoclave](/docs/definitions/process/manufacture-autoclave)
+- [Make mushroom containment kit](/docs/definitions/process/make-mushroom-containment-kit)
+- [Manufacture navigation circuit board](/docs/definitions/process/manufacture-navigation-circuit-board)
+- [Manufacture communications circuit board](/docs/definitions/process/manufacture-communications-circuit-board)
+- [Make biosensor](/docs/definitions/process/make-biosensor)
+- [Make biosensor Alt #1](/docs/definitions/process/make-biosensor-alt--1)
+- [Make CMOS sensor](/docs/definitions/process/make-cmos-sensor)
+- [Make light emitting diode kit](/docs/definitions/process/make-light-emitting-diode-kit)
+- [Manufacture carbon dioxide laser](/docs/definitions/process/manufacture-carbon-dioxide-laser)
+- [Manufacture helium neon laser](/docs/definitions/process/manufacture-helium-neon-laser)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+- [Manufacture pathogen filter](/docs/definitions/process/manufacture-pathogen-filter)
+- [Manufacture transformer](/docs/definitions/process/manufacture-transformer)
+- [Manufacture electrostatic precipitator](/docs/definitions/process/manufacture-electrostatic-precipitator)
+- [Make methane fuel cell stack](/docs/definitions/process/make-methane-fuel-cell-stack)
+- [Make methanol fuel cell stack](/docs/definitions/process/make-methanol-fuel-cell-stack)
+- [Manufacture turbopump](/docs/definitions/process/manufacture-turbopump)
+- [Make Power Panel](/docs/definitions/process/make-power-panel)
+- [Make Power Panel Alt #1](/docs/definitions/process/make-power-panel-alt--1)
+- [Make Surge Protector](/docs/definitions/process/make-surge-protector)
+- [Make Surge Protector Alt #1](/docs/definitions/process/make-surge-protector-alt--1)
+- [Make Metal Oxide Varistor](/docs/definitions/process/make-metal-oxide-varistor)
+- [Make Metal Oxide Varistor Alt #1](/docs/definitions/process/make-metal-oxide-varistor-alt--1)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/electrostatic-precipitator.md b/content/docs/definitions/part/electrostatic-precipitator.md
new file mode 100644
index 0000000..892f6ea
--- /dev/null
+++ b/content/docs/definitions/part/electrostatic-precipitator.md
@@ -0,0 +1,26 @@
+---
+title: Part - Electrostatic Precipitator
+linkTitle: Electrostatic Precipitator
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A filterless device that removes fine particles,
like dust and smoke, from a flowing gas using the force of
an induced electrostatic charge minimally impeding the
flow of gases through the unit
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.7 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Manufacture electrostatic precipitator](/docs/definitions/process/manufacture-electrostatic-precipitator)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/eva-antenna.md b/content/docs/definitions/part/eva-antenna.md
new file mode 100644
index 0000000..a75b9a7
--- /dev/null
+++ b/content/docs/definitions/part/eva-antenna.md
@@ -0,0 +1,30 @@
+---
+title: Part - EVA Antenna
+linkTitle: EVA Antenna
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.05 kg|
+|Type:|EVA|
+
+## Made by Manufacturing Process
+
+- [Make EVA antenna](/docs/definitions/process/make-eva-antenna)
+- [Make EVA antenna Alt #1](/docs/definitions/process/make-eva-antenna-alt--1)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/eva-backpack.md b/content/docs/definitions/part/eva-backpack.md
new file mode 100644
index 0000000..144b327
--- /dev/null
+++ b/content/docs/definitions/part/eva-backpack.md
@@ -0,0 +1,31 @@
+---
+title: Part - EVA backpack
+linkTitle: EVA backpack
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The backpack is the most crucial part of the Portable Life-Support System (PLSS).
It is made with polyethylene and a steel frame.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|EVA|
+
+## Made by Manufacturing Process
+
+- [Make EVA backpack](/docs/definitions/process/make-eva-backpack)
+- [Make EVA backpack Alt #1](/docs/definitions/process/make-eva-backpack-alt--1)
+- [Make EVA backpack Alt #2](/docs/definitions/process/make-eva-backpack-alt--2)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/eva-battery.md b/content/docs/definitions/part/eva-battery.md
new file mode 100644
index 0000000..830e3c1
--- /dev/null
+++ b/content/docs/definitions/part/eva-battery.md
@@ -0,0 +1,30 @@
+---
+title: Part - EVA Battery
+linkTitle: EVA Battery
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Assuming the future achievement of 1 kg/kWh or 1 kWh/kg,
(as of 4 Aug 2024 CATL Condensed battery has 500 Wh/kg)
this rechargeable battery module is rated for 150 W at 18V.
for providing 8 hrs of electrical power to the EVA suit.
Energy capacity: 150 W * 8 hrs = 1.2 kWh.
Weight: 1.2 kWh / 1 kWh/kg = 1.2 kg.
Amperage: 1.2 kWh / 18 Volt = 66.67 Ah.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.2 kg|
+|Type:|EVA|
+
+## Made by Manufacturing Process
+
+- [Manufacture EVA battery](/docs/definitions/process/manufacture-eva-battery)
+- [Manufacture EVA battery Alt #1](/docs/definitions/process/manufacture-eva-battery-alt--1)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/eva-boots.md b/content/docs/definitions/part/eva-boots.md
new file mode 100644
index 0000000..e57f2ad
--- /dev/null
+++ b/content/docs/definitions/part/eva-boots.md
@@ -0,0 +1,30 @@
+---
+title: Part - EVA Boots
+linkTitle: EVA Boots
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+steel soled and tipped. Fiberglass insulated.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.0 kg|
+|Type:|EVA|
+
+## Made by Manufacturing Process
+
+- [Make EVA boots](/docs/definitions/process/make-eva-boots)
+- [Make EVA boots Alt #1](/docs/definitions/process/make-eva-boots-alt--1)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/eva-gloves.md b/content/docs/definitions/part/eva-gloves.md
new file mode 100644
index 0000000..8331e5c
--- /dev/null
+++ b/content/docs/definitions/part/eva-gloves.md
@@ -0,0 +1,30 @@
+---
+title: Part - EVA Gloves
+linkTitle: EVA Gloves
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.1 kg|
+|Type:|EVA|
+
+## Made by Manufacturing Process
+
+- [Make EVA gloves](/docs/definitions/process/make-eva-gloves)
+- [Make EVA gloves Alt #1](/docs/definitions/process/make-eva-gloves-alt--1)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/eva-helmet.md b/content/docs/definitions/part/eva-helmet.md
new file mode 100644
index 0000000..aa2b217
--- /dev/null
+++ b/content/docs/definitions/part/eva-helmet.md
@@ -0,0 +1,31 @@
+---
+title: Part - EVA Helmet
+linkTitle: EVA Helmet
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.0 kg|
+|Type:|EVA|
+
+## Made by Manufacturing Process
+
+- [Make EVA helmet](/docs/definitions/process/make-eva-helmet)
+- [Make EVA helmet Alt #1](/docs/definitions/process/make-eva-helmet-alt--1)
+- [Make EVA helmet Alt #2](/docs/definitions/process/make-eva-helmet-alt--2)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/eva-pads.md b/content/docs/definitions/part/eva-pads.md
new file mode 100644
index 0000000..953a5f7
--- /dev/null
+++ b/content/docs/definitions/part/eva-pads.md
@@ -0,0 +1,30 @@
+---
+title: Part - EVA Pads
+linkTitle: EVA Pads
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+steel plate with fiberglass insulation.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.5 kg|
+|Type:|EVA|
+
+## Made by Manufacturing Process
+
+- [Make EVA pads](/docs/definitions/process/make-eva-pads)
+- [Make EVA pads Alt #1](/docs/definitions/process/make-eva-pads-alt--1)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/eva-radio.md b/content/docs/definitions/part/eva-radio.md
new file mode 100644
index 0000000..bb96c7f
--- /dev/null
+++ b/content/docs/definitions/part/eva-radio.md
@@ -0,0 +1,26 @@
+---
+title: Part - EVA Radio
+linkTitle: EVA Radio
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.25 kg|
+|Type:|EVA|
+
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/fiberglass-cloth.md b/content/docs/definitions/part/fiberglass-cloth.md
new file mode 100644
index 0000000..00bcb81
--- /dev/null
+++ b/content/docs/definitions/part/fiberglass-cloth.md
@@ -0,0 +1,44 @@
+---
+title: Part - Fiberglass Cloth
+linkTitle: Fiberglass Cloth
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.1 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Weave fiberglass cloth](/docs/definitions/process/weave-fiberglass-cloth)
+
+## Used by Manufacturing Process
+
+- [Make timing belt](/docs/definitions/process/make-timing-belt)
+- [Manufacture bag](/docs/definitions/process/manufacture-bag)
+- [Manufacture large bag](/docs/definitions/process/manufacture-large-bag)
+- [Make coveralls](/docs/definitions/process/make-coveralls)
+- [Make coveralls Alt #1](/docs/definitions/process/make-coveralls-alt--1)
+- [Make EVA gloves](/docs/definitions/process/make-eva-gloves)
+- [Make EVA gloves Alt #1](/docs/definitions/process/make-eva-gloves-alt--1)
+- [Make EVA boots](/docs/definitions/process/make-eva-boots)
+- [Make EVA boots Alt #1](/docs/definitions/process/make-eva-boots-alt--1)
+- [Make EVA backpack](/docs/definitions/process/make-eva-backpack)
+- [Make EVA backpack Alt #1](/docs/definitions/process/make-eva-backpack-alt--1)
+- [Make EVA backpack Alt #2](/docs/definitions/process/make-eva-backpack-alt--2)
+- [Make work gloves](/docs/definitions/process/make-work-gloves)
+- [Make work gloves Alt #1](/docs/definitions/process/make-work-gloves-alt--1)
+- [Make mushroom containment kit](/docs/definitions/process/make-mushroom-containment-kit)
+- [Make charcoal filter](/docs/definitions/process/make-charcoal-filter)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/fiberglass.md b/content/docs/definitions/part/fiberglass.md
new file mode 100644
index 0000000..83fc14e
--- /dev/null
+++ b/content/docs/definitions/part/fiberglass.md
@@ -0,0 +1,55 @@
+---
+title: Part - Fiberglass
+linkTitle: Fiberglass
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Draw optical fiber glass](/docs/definitions/process/draw-optical-fiber-glass)
+
+## Used by Manufacturing Process
+
+- [Make satellite dish](/docs/definitions/process/make-satellite-dish)
+- [Make satellite dish Alt #1](/docs/definitions/process/make-satellite-dish-alt--1)
+- [Make radio antenna](/docs/definitions/process/make-radio-antenna)
+- [Make radio antenna Alt #1](/docs/definitions/process/make-radio-antenna-alt--1)
+- [Weave fiberglass cloth](/docs/definitions/process/weave-fiberglass-cloth)
+- [Make EVA gloves](/docs/definitions/process/make-eva-gloves)
+- [Make EVA gloves Alt #1](/docs/definitions/process/make-eva-gloves-alt--1)
+- [Make EVA boots](/docs/definitions/process/make-eva-boots)
+- [Make EVA boots Alt #1](/docs/definitions/process/make-eva-boots-alt--1)
+- [Make EVA pads](/docs/definitions/process/make-eva-pads)
+- [Make EVA pads Alt #1](/docs/definitions/process/make-eva-pads-alt--1)
+- [Make EVA antenna](/docs/definitions/process/make-eva-antenna)
+- [Make EVA antenna Alt #1](/docs/definitions/process/make-eva-antenna-alt--1)
+- [Make work gloves](/docs/definitions/process/make-work-gloves)
+- [Make work gloves Alt #1](/docs/definitions/process/make-work-gloves-alt--1)
+- [Manufacture vehicle chassis panel](/docs/definitions/process/manufacture-vehicle-chassis-panel)
+- [Manufacture vehicle chassis panel Alt #1](/docs/definitions/process/manufacture-vehicle-chassis-panel-alt--1)
+- [Manufacture rover control panel](/docs/definitions/process/manufacture-rover-control-panel)
+- [Manufacture rover control panel Alt #1](/docs/definitions/process/manufacture-rover-control-panel-alt--1)
+- [Manufacture rover control panel Alt #2](/docs/definitions/process/manufacture-rover-control-panel-alt--2)
+- [Manufacture utility vehicle control panel](/docs/definitions/process/manufacture-utility-vehicle-control-panel)
+- [Manufacture utility vehicle control panel Alt #1](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1)
+- [Manufacture utility vehicle control panel Alt #2](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2)
+- [Fabricate turbine blade](/docs/definitions/process/fabricate-turbine-blade)
+- [Fabricate turbine blade Alt #1](/docs/definitions/process/fabricate-turbine-blade-alt--1)
+- [Fabricate solar panel](/docs/definitions/process/fabricate-solar-panel)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/fire-extinguisher.md b/content/docs/definitions/part/fire-extinguisher.md
new file mode 100644
index 0000000..25e2cea
--- /dev/null
+++ b/content/docs/definitions/part/fire-extinguisher.md
@@ -0,0 +1,26 @@
+---
+title: Part - Fire Extinguisher
+linkTitle: Fire Extinguisher
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|3.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make fire extinguisher](/docs/definitions/process/make-fire-extinguisher)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/flexible-hose.md b/content/docs/definitions/part/flexible-hose.md
new file mode 100644
index 0000000..cce2fa5
--- /dev/null
+++ b/content/docs/definitions/part/flexible-hose.md
@@ -0,0 +1,30 @@
+---
+title: Part - Flexible hose
+linkTitle: Flexible hose
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.1 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Manufacture flexible hose](/docs/definitions/process/manufacture-flexible-hose)
+
+## Used by Manufacturing Process
+
+- [Make mushroom containment kit](/docs/definitions/process/make-mushroom-containment-kit)
+- [Manufacture pathogen filter](/docs/definitions/process/manufacture-pathogen-filter)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/flood-light.md b/content/docs/definitions/part/flood-light.md
new file mode 100644
index 0000000..9ff854e
--- /dev/null
+++ b/content/docs/definitions/part/flood-light.md
@@ -0,0 +1,26 @@
+---
+title: Part - Flood light
+linkTitle: Flood light
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+a LED outdoor weather-proof, adjustable flood light with tripod stand
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|3.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Make flood light](/docs/definitions/process/make-flood-light)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/fuel-pump.md b/content/docs/definitions/part/fuel-pump.md
new file mode 100644
index 0000000..21e181a
--- /dev/null
+++ b/content/docs/definitions/part/fuel-pump.md
@@ -0,0 +1,34 @@
+---
+title: Part - Fuel pump
+linkTitle: Fuel pump
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make fuel pump](/docs/definitions/process/make-fuel-pump)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/fuel-tank.md b/content/docs/definitions/part/fuel-tank.md
new file mode 100644
index 0000000..5eb0d70
--- /dev/null
+++ b/content/docs/definitions/part/fuel-tank.md
@@ -0,0 +1,34 @@
+---
+title: Part - Fuel Tank
+linkTitle: Fuel Tank
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+for storing methane
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|10.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Manufacture fuel tank](/docs/definitions/process/manufacture-fuel-tank)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/garment.md b/content/docs/definitions/part/garment.md
new file mode 100644
index 0000000..3d516aa
--- /dev/null
+++ b/content/docs/definitions/part/garment.md
@@ -0,0 +1,27 @@
+---
+title: Part - Garment
+linkTitle: Garment
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+a standard set of clothing for indoor use.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.5 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make Garment](/docs/definitions/process/make-garment)
+- [Make Garment Alt #1](/docs/definitions/process/make-garment-alt--1)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/gas-chromatograph.md b/content/docs/definitions/part/gas-chromatograph.md
new file mode 100644
index 0000000..49c3daf
--- /dev/null
+++ b/content/docs/definitions/part/gas-chromatograph.md
@@ -0,0 +1,23 @@
+---
+title: Part - Gas Chromatograph
+linkTitle: Gas Chromatograph
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+This portable lab instrument separates the constituents of a volatile substance
and is used to gas content analysis.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|15.0 kg|
+|Type:|Instrument|
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/gas-tank.md b/content/docs/definitions/part/gas-tank.md
new file mode 100644
index 0000000..848124d
--- /dev/null
+++ b/content/docs/definitions/part/gas-tank.md
@@ -0,0 +1,34 @@
+---
+title: Part - Gas Tank
+linkTitle: Gas Tank
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|10.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Manufacture gas tank](/docs/definitions/process/manufacture-gas-tank)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/gasket.md b/content/docs/definitions/part/gasket.md
new file mode 100644
index 0000000..85b03cc
--- /dev/null
+++ b/content/docs/definitions/part/gasket.md
@@ -0,0 +1,41 @@
+---
+title: Part - Gasket
+linkTitle: Gasket
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.1 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make gasket](/docs/definitions/process/make-gasket)
+
+## Used by Manufacturing Process
+
+- [Make fire extinguisher](/docs/definitions/process/make-fire-extinguisher)
+- [Make gas canister](/docs/definitions/process/make-gas-canister)
+- [Make EVA helmet](/docs/definitions/process/make-eva-helmet)
+- [Make EVA helmet Alt #1](/docs/definitions/process/make-eva-helmet-alt--1)
+- [Make EVA helmet Alt #2](/docs/definitions/process/make-eva-helmet-alt--2)
+- [Make EVA backpack](/docs/definitions/process/make-eva-backpack)
+- [Make EVA backpack Alt #1](/docs/definitions/process/make-eva-backpack-alt--1)
+- [Make EVA backpack Alt #2](/docs/definitions/process/make-eva-backpack-alt--2)
+- [Manufacture fuel tank](/docs/definitions/process/manufacture-fuel-tank)
+- [Manufacture gas tank](/docs/definitions/process/manufacture-gas-tank)
+- [Manufacture water tank](/docs/definitions/process/manufacture-water-tank)
+- [Manufacture pneumatic drill](/docs/definitions/process/manufacture-pneumatic-drill)
+- [Make mushroom containment kit](/docs/definitions/process/make-mushroom-containment-kit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/glass-bottle.md b/content/docs/definitions/part/glass-bottle.md
new file mode 100644
index 0000000..921d456
--- /dev/null
+++ b/content/docs/definitions/part/glass-bottle.md
@@ -0,0 +1,26 @@
+---
+title: Part - Glass Bottle
+linkTitle: Glass Bottle
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.5 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make clear glass bottle](/docs/definitions/process/make-clear-glass-bottle)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/glass-sheet.md b/content/docs/definitions/part/glass-sheet.md
new file mode 100644
index 0000000..fd858a0
--- /dev/null
+++ b/content/docs/definitions/part/glass-sheet.md
@@ -0,0 +1,35 @@
+---
+title: Part - Glass Sheet
+linkTitle: Glass Sheet
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|27.56 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make sheet glass](/docs/definitions/process/make-sheet-glass)
+
+## Used by Manufacturing Process
+
+- [Manufacture rover windshield](/docs/definitions/process/manufacture-rover-windshield)
+- [Manufacture window](/docs/definitions/process/manufacture-window)
+- [Fabricate solar parabolic mirror](/docs/definitions/process/fabricate-solar-parabolic-mirror)
+- [Make light emitting diode kit](/docs/definitions/process/make-light-emitting-diode-kit)
+- [Manufacture carbon dioxide laser](/docs/definitions/process/manufacture-carbon-dioxide-laser)
+- [Manufacture optical lens](/docs/definitions/process/manufacture-optical-lens)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/glass-tube.md b/content/docs/definitions/part/glass-tube.md
new file mode 100644
index 0000000..5f90441
--- /dev/null
+++ b/content/docs/definitions/part/glass-tube.md
@@ -0,0 +1,26 @@
+---
+title: Part - Glass Tube
+linkTitle: Glass Tube
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Long transparent glass tube.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Fabricate glass tube](/docs/definitions/process/fabricate-glass-tube)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/heat-pipe.md b/content/docs/definitions/part/heat-pipe.md
new file mode 100644
index 0000000..36d608f
--- /dev/null
+++ b/content/docs/definitions/part/heat-pipe.md
@@ -0,0 +1,32 @@
+---
+title: Part - Heat pipe
+linkTitle: Heat pipe
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Heat pipe is a passive heat transfer device with an extremely
effective thermal conductivity. Its two-phase heat transfer mechanism
results in heat transfer capabilities from one hundred to several thousand
times that of an equivalent piece of copper.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.2 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Roll heat pipe from copper sheet](/docs/definitions/process/roll-heat-pipe-from-copper-sheet)
+- [Roll heat pipe from aluminum sheet](/docs/definitions/process/roll-heat-pipe-from-aluminum-sheet)
+
+## Used by Manufacturing Process
+
+- [Make suit heating unit](/docs/definitions/process/make-suit-heating-unit)
+- [Make heat pump](/docs/definitions/process/make-heat-pump)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/heat-probe.md b/content/docs/definitions/part/heat-probe.md
new file mode 100644
index 0000000..9a8933d
--- /dev/null
+++ b/content/docs/definitions/part/heat-probe.md
@@ -0,0 +1,23 @@
+---
+title: Part - Heat Probe
+linkTitle: Heat Probe
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+This instrument is used for thermometry applications in that one can measure temperature inside
fluid containers, tanks, and pipes and underground environment
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Instrument|
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/heat-pump.md b/content/docs/definitions/part/heat-pump.md
new file mode 100644
index 0000000..f783543
--- /dev/null
+++ b/content/docs/definitions/part/heat-pump.md
@@ -0,0 +1,29 @@
+---
+title: Part - Heat pump
+linkTitle: Heat pump
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make heat pump](/docs/definitions/process/make-heat-pump)
+
+## Used by Manufacturing Process
+
+- [Manufacture refrigerator](/docs/definitions/process/manufacture-refrigerator)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/heating-element.md b/content/docs/definitions/part/heating-element.md
new file mode 100644
index 0000000..5cd24f5
--- /dev/null
+++ b/content/docs/definitions/part/heating-element.md
@@ -0,0 +1,34 @@
+---
+title: Part - Heating Element
+linkTitle: Heating Element
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The heating element is a thermofoil conductive
electrical element embedded in a thin Kapton substrate.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Make heating element](/docs/definitions/process/make-heating-element)
+
+## Used by Manufacturing Process
+
+- [Make suit heating unit](/docs/definitions/process/make-suit-heating-unit)
+- [Manufacture kitchen stove](/docs/definitions/process/manufacture-kitchen-stove)
+- [Manufacture autoclave](/docs/definitions/process/manufacture-autoclave)
+- [Make mushroom containment kit](/docs/definitions/process/make-mushroom-containment-kit)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+- [Manufacture plasma cutter](/docs/definitions/process/manufacture-plasma-cutter)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/helium-neon-laser.md b/content/docs/definitions/part/helium-neon-laser.md
new file mode 100644
index 0000000..f95b968
--- /dev/null
+++ b/content/docs/definitions/part/helium-neon-laser.md
@@ -0,0 +1,26 @@
+---
+title: Part - Helium Neon laser
+linkTitle: Helium Neon laser
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture helium neon laser](/docs/definitions/process/manufacture-helium-neon-laser)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/helmet-visor.md b/content/docs/definitions/part/helmet-visor.md
new file mode 100644
index 0000000..8d89e40
--- /dev/null
+++ b/content/docs/definitions/part/helmet-visor.md
@@ -0,0 +1,29 @@
+---
+title: Part - Helmet Visor
+linkTitle: Helmet Visor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.5 kg|
+|Type:|EVA|
+
+## Made by Manufacturing Process
+
+- [Make helmet visor](/docs/definitions/process/make-helmet-visor)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/high-pressure-sodium-lamp.md b/content/docs/definitions/part/high-pressure-sodium-lamp.md
new file mode 100644
index 0000000..bc3206e
--- /dev/null
+++ b/content/docs/definitions/part/high-pressure-sodium-lamp.md
@@ -0,0 +1,23 @@
+---
+title: Part - High Pressure Sodium lamp
+linkTitle: High Pressure Sodium lamp
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+High Intensity Discharge (HID), and more specifically, High Pressure Sodium (HPS)
lights have long been used as indoor grow lights, particularly for the late vegetative
and flowering/fruiting stages of growth.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.3 kg|
+|Type:|Electrical|
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/infra-red-spectrometer.md b/content/docs/definitions/part/infra-red-spectrometer.md
new file mode 100644
index 0000000..aa5839a
--- /dev/null
+++ b/content/docs/definitions/part/infra-red-spectrometer.md
@@ -0,0 +1,23 @@
+---
+title: Part - Infra-Red Spectrometer
+linkTitle: Infra-Red Spectrometer
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+This portable instrument can identify and study chemicals on a given sample (solid, liquid, or gaseous)
by using IR spectroscopy to produce an infrared spectrum of the sample.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|10.0 kg|
+|Type:|Instrument|
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/insulation-board.md b/content/docs/definitions/part/insulation-board.md
new file mode 100644
index 0000000..6b0b5d5
--- /dev/null
+++ b/content/docs/definitions/part/insulation-board.md
@@ -0,0 +1,26 @@
+---
+title: Part - Insulation board
+linkTitle: Insulation board
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Assume each tile is about 1m x 1m. Each board comprises extruded polystyrene (XPS)
and expanded polystyrene insulation (EPS) that contain millions of air pockets trapped
within the foam. Because the polystyrene itself is also highly resistant to heat,
the result is a great thermal insulator which can give excellent R-ratings.
XPS is often lined with aluminium foil.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Construction|
+
+## Made by Manufacturing Process
+
+- [Manufacture insulation board](/docs/definitions/process/manufacture-insulation-board)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/iron-ingot.md b/content/docs/definitions/part/iron-ingot.md
new file mode 100644
index 0000000..abe34d5
--- /dev/null
+++ b/content/docs/definitions/part/iron-ingot.md
@@ -0,0 +1,41 @@
+---
+title: Part - Iron Ingot
+linkTitle: Iron Ingot
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|7.0 kg|
+|Type:|Metallic|
+
+## Made by Manufacturing Process
+
+- [Cast iron ingot](/docs/definitions/process/cast-iron-ingot)
+
+## Used by Manufacturing Process
+
+- [Roll iron sheet](/docs/definitions/process/roll-iron-sheet)
+- [Manufacture turbine generator](/docs/definitions/process/manufacture-turbine-generator)
+- [Manufacture Stepper Motor](/docs/definitions/process/manufacture-stepper-motor)
+- [Manufacture 5 kW Motor](/docs/definitions/process/manufacture-5-kw-motor)
+- [Manufacture 10 kW Motor](/docs/definitions/process/manufacture-10-kw-motor)
+- [Manufacture 30 kW Motor](/docs/definitions/process/manufacture-30-kw-motor)
+- [Make fuel pump](/docs/definitions/process/make-fuel-pump)
+- [Make oxygen pump](/docs/definitions/process/make-oxygen-pump)
+- [Make carbon dioxide pump](/docs/definitions/process/make-carbon-dioxide-pump)
+- [Make large water pump](/docs/definitions/process/make-large-water-pump)
+- [Make small water pump](/docs/definitions/process/make-small-water-pump)
+- [Make heat pump](/docs/definitions/process/make-heat-pump)
+- [Manufacture transformer](/docs/definitions/process/manufacture-transformer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/iron-pipe.md b/content/docs/definitions/part/iron-pipe.md
new file mode 100644
index 0000000..a93ecbb
--- /dev/null
+++ b/content/docs/definitions/part/iron-pipe.md
@@ -0,0 +1,26 @@
+---
+title: Part - Iron Pipe
+linkTitle: Iron Pipe
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A density of 7.85 g/cm3. length of 1m. Thickness of 2mm. Diameter of 20mm
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.888 kg|
+|Type:|Metallic|
+
+## Made by Manufacturing Process
+
+- [Make iron pipe](/docs/definitions/process/make-iron-pipe)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/iron-sheet.md b/content/docs/definitions/part/iron-sheet.md
new file mode 100644
index 0000000..79aa5dc
--- /dev/null
+++ b/content/docs/definitions/part/iron-sheet.md
@@ -0,0 +1,38 @@
+---
+title: Part - Iron Sheet
+linkTitle: Iron Sheet
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A density of 7.85 g/cm3. 1m x 1m x 1mm sheet of iron
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|7.85 kg|
+|Type:|Metallic|
+
+## Made by Manufacturing Process
+
+- [Make iron sheet](/docs/definitions/process/make-iron-sheet)
+- [Roll iron sheet](/docs/definitions/process/roll-iron-sheet)
+
+## Used by Manufacturing Process
+
+- [Make iron pipe](/docs/definitions/process/make-iron-pipe)
+- [Manufacture turbine generator](/docs/definitions/process/manufacture-turbine-generator)
+- [Manufacture Stepper Motor](/docs/definitions/process/manufacture-stepper-motor)
+- [Manufacture 5 kW Motor](/docs/definitions/process/manufacture-5-kw-motor)
+- [Manufacture 10 kW Motor](/docs/definitions/process/manufacture-10-kw-motor)
+- [Manufacture 30 kW Motor](/docs/definitions/process/manufacture-30-kw-motor)
+- [Manufacture battery module](/docs/definitions/process/manufacture-battery-module)
+- [Manufacture battery module Alt #1](/docs/definitions/process/manufacture-battery-module-alt--1)
+- [Make wheelbarrow](/docs/definitions/process/make-wheelbarrow)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/light-emitting-diode-bulb.md b/content/docs/definitions/part/light-emitting-diode-bulb.md
new file mode 100644
index 0000000..c8db363
--- /dev/null
+++ b/content/docs/definitions/part/light-emitting-diode-bulb.md
@@ -0,0 +1,31 @@
+---
+title: Part - Light Emitting Diode bulb
+linkTitle: Light Emitting Diode bulb
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Solid State Light bulb
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.1 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture light emitting diode bulb](/docs/definitions/process/manufacture-light-emitting-diode-bulb)
+
+## Used by Manufacturing Process
+
+- [Manufacture navigation circuit board](/docs/definitions/process/manufacture-navigation-circuit-board)
+- [Manufacture communications circuit board](/docs/definitions/process/manufacture-communications-circuit-board)
+- [Make light emitting diode kit](/docs/definitions/process/make-light-emitting-diode-kit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/light-emitting-diode-kit.md b/content/docs/definitions/part/light-emitting-diode-kit.md
new file mode 100644
index 0000000..aeadd0b
--- /dev/null
+++ b/content/docs/definitions/part/light-emitting-diode-kit.md
@@ -0,0 +1,31 @@
+---
+title: Part - Light Emitting Diode kit
+linkTitle: Light Emitting Diode kit
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Make light emitting diode kit](/docs/definitions/process/make-light-emitting-diode-kit)
+
+## Used by Manufacturing Process
+
+- [Make flood light](/docs/definitions/process/make-flood-light)
+- [Manufacture carbon dioxide laser](/docs/definitions/process/manufacture-carbon-dioxide-laser)
+- [Manufacture helium neon laser](/docs/definitions/process/manufacture-helium-neon-laser)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/liquid-cooling-garment.md b/content/docs/definitions/part/liquid-cooling-garment.md
new file mode 100644
index 0000000..c65e6bb
--- /dev/null
+++ b/content/docs/definitions/part/liquid-cooling-garment.md
@@ -0,0 +1,32 @@
+---
+title: Part - Liquid Cooling Garment
+linkTitle: Liquid Cooling Garment
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The innermost layer of the EVA suit. Provides thermal control
by circulating air and water cooled by a sublimator over crew member's
body. Can handle peak loads of up to 500 kcal/hr for 15 minutes,
400 kcal/hr for up to an hour, or 250 kcal/hr for up to 7 hours.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.5 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make Liquid Cooling Garment](/docs/definitions/process/make-liquid-cooling-garment)
+- [Make Liquid Cooling Garment Alt #1](/docs/definitions/process/make-liquid-cooling-garment-alt--1)
+- [Make Liquid Cooling Garment Alt #2](/docs/definitions/process/make-liquid-cooling-garment-alt--2)
+- [Make Liquid Cooling Garment Alt #3](/docs/definitions/process/make-liquid-cooling-garment-alt--3)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/logic-board.md b/content/docs/definitions/part/logic-board.md
new file mode 100644
index 0000000..0ea89d1
--- /dev/null
+++ b/content/docs/definitions/part/logic-board.md
@@ -0,0 +1,44 @@
+---
+title: Part - Logic board
+linkTitle: Logic board
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+a printed circuit board (PCB) that
mechanically supports and electrically connects electronic components
using conductive tracks, pads and other features etched from copper
sheets laminated onto a non-conductive substrate.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.1 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture logic board](/docs/definitions/process/manufacture-logic-board)
+
+## Used by Manufacturing Process
+
+- [Manufacture Stepper Motor](/docs/definitions/process/manufacture-stepper-motor)
+- [Fabricate solar panel](/docs/definitions/process/fabricate-solar-panel)
+- [Manufacture battery module](/docs/definitions/process/manufacture-battery-module)
+- [Manufacture battery module Alt #1](/docs/definitions/process/manufacture-battery-module-alt--1)
+- [Manufacture EVA battery](/docs/definitions/process/manufacture-eva-battery)
+- [Manufacture EVA battery Alt #1](/docs/definitions/process/manufacture-eva-battery-alt--1)
+- [Manufacture microwave](/docs/definitions/process/manufacture-microwave)
+- [Manufacture autoclave](/docs/definitions/process/manufacture-autoclave)
+- [Manufacture navigation circuit board](/docs/definitions/process/manufacture-navigation-circuit-board)
+- [Manufacture communications circuit board](/docs/definitions/process/manufacture-communications-circuit-board)
+- [Make biosensor](/docs/definitions/process/make-biosensor)
+- [Make biosensor Alt #1](/docs/definitions/process/make-biosensor-alt--1)
+- [Make light emitting diode kit](/docs/definitions/process/make-light-emitting-diode-kit)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+- [Make methane fuel cell stack](/docs/definitions/process/make-methane-fuel-cell-stack)
+- [Make methanol fuel cell stack](/docs/definitions/process/make-methanol-fuel-cell-stack)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/lubricant-bottle.md b/content/docs/definitions/part/lubricant-bottle.md
new file mode 100644
index 0000000..84da9a6
--- /dev/null
+++ b/content/docs/definitions/part/lubricant-bottle.md
@@ -0,0 +1,32 @@
+---
+title: Part - Lubricant Bottle
+linkTitle: Lubricant Bottle
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.2 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make lubricant bottle](/docs/definitions/process/make-lubricant-bottle)
+
+## Used by Manufacturing Process
+
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/mass-spectrometer.md b/content/docs/definitions/part/mass-spectrometer.md
new file mode 100644
index 0000000..8208187
--- /dev/null
+++ b/content/docs/definitions/part/mass-spectrometer.md
@@ -0,0 +1,23 @@
+---
+title: Part - Mass Spectrometer
+linkTitle: Mass Spectrometer
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+This portable apparatus can separate isotopes and molecular fragments according to
mass. The sample is vaporized and ionized, and the ions are accelerated in an electric
field and deflected by a magnetic field into a curved trajectory that
gives a distinctive mass spectrum.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|10.0 kg|
+|Type:|Instrument|
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/metal-oxide-varistor.md b/content/docs/definitions/part/metal-oxide-varistor.md
new file mode 100644
index 0000000..1aff2bb
--- /dev/null
+++ b/content/docs/definitions/part/metal-oxide-varistor.md
@@ -0,0 +1,31 @@
+---
+title: Part - Metal Oxide Varistor
+linkTitle: Metal Oxide Varistor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.2 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Make Metal Oxide Varistor](/docs/definitions/process/make-metal-oxide-varistor)
+- [Make Metal Oxide Varistor Alt #1](/docs/definitions/process/make-metal-oxide-varistor-alt--1)
+
+## Used by Manufacturing Process
+
+- [Make Surge Protector](/docs/definitions/process/make-surge-protector)
+- [Make Surge Protector Alt #1](/docs/definitions/process/make-surge-protector-alt--1)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/methane-fuel-cell-stack.md b/content/docs/definitions/part/methane-fuel-cell-stack.md
new file mode 100644
index 0000000..4ac0e8a
--- /dev/null
+++ b/content/docs/definitions/part/methane-fuel-cell-stack.md
@@ -0,0 +1,29 @@
+---
+title: Part - Methane Fuel cell stack
+linkTitle: Methane Fuel cell stack
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A 15 kW Solid Oxide Fuel Cell (SOFC) stack comprises
75 fuel cells, furnished with valves, coolant and pump, filter, sensors,
cold plate and heat pipes.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|15.0 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Make methane fuel cell stack](/docs/definitions/process/make-methane-fuel-cell-stack)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/methane-fuel-cell.md b/content/docs/definitions/part/methane-fuel-cell.md
new file mode 100644
index 0000000..30e1ac8
--- /dev/null
+++ b/content/docs/definitions/part/methane-fuel-cell.md
@@ -0,0 +1,30 @@
+---
+title: Part - Methane Fuel cell
+linkTitle: Methane Fuel cell
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Assume each solid oxide fuel cell (SOFC) can generate 200W
with the achievement of 1kWh/kg. Weight: 200W * 1kWh/kg = 0.2 kg
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.2 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Make methane solid oxide fuel cells](/docs/definitions/process/make-methane-solid-oxide-fuel-cells)
+- [Make methanol fuel cells](/docs/definitions/process/make-methanol-fuel-cells)
+
+## Used by Manufacturing Process
+
+- [Make methane fuel cell stack](/docs/definitions/process/make-methane-fuel-cell-stack)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/methanol-fuel-cell-stack.md b/content/docs/definitions/part/methanol-fuel-cell-stack.md
new file mode 100644
index 0000000..8c5e10c
--- /dev/null
+++ b/content/docs/definitions/part/methanol-fuel-cell-stack.md
@@ -0,0 +1,33 @@
+---
+title: Part - Methanol Fuel cell stack
+linkTitle: Methanol Fuel cell stack
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A 15 kW Reformed Methanol Fuel Cell (RMFC) stack comprises
75 fuel cells and heat exchanger, radiator and supporting structure.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|15.0 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Make methanol fuel cell stack](/docs/definitions/process/make-methanol-fuel-cell-stack)
+
+## Used by Manufacturing Process
+
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/methanol-fuel-cell.md b/content/docs/definitions/part/methanol-fuel-cell.md
new file mode 100644
index 0000000..3073678
--- /dev/null
+++ b/content/docs/definitions/part/methanol-fuel-cell.md
@@ -0,0 +1,26 @@
+---
+title: Part - Methanol Fuel cell
+linkTitle: Methanol Fuel cell
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Assume each methanol fuel cell can generate 200W
continuous power.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.2 kg|
+|Type:|Electronic|
+
+
+## Used by Manufacturing Process
+
+- [Make methanol fuel cell stack](/docs/definitions/process/make-methanol-fuel-cell-stack)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/microcontroller.md b/content/docs/definitions/part/microcontroller.md
new file mode 100644
index 0000000..f74a6f6
--- /dev/null
+++ b/content/docs/definitions/part/microcontroller.md
@@ -0,0 +1,33 @@
+---
+title: Part - Microcontroller
+linkTitle: Microcontroller
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.1 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture microcontroller](/docs/definitions/process/manufacture-microcontroller)
+
+## Used by Manufacturing Process
+
+- [Manufacture microwave](/docs/definitions/process/manufacture-microwave)
+- [Manufacture autoclave](/docs/definitions/process/manufacture-autoclave)
+- [Manufacture navigation circuit board](/docs/definitions/process/manufacture-navigation-circuit-board)
+- [Manufacture communications circuit board](/docs/definitions/process/manufacture-communications-circuit-board)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/microwave.md b/content/docs/definitions/part/microwave.md
new file mode 100644
index 0000000..b7a82f6
--- /dev/null
+++ b/content/docs/definitions/part/microwave.md
@@ -0,0 +1,26 @@
+---
+title: Part - Microwave
+linkTitle: Microwave
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|3.0 kg|
+|Type:|Kitchen|
+
+## Made by Manufacturing Process
+
+- [Manufacture microwave](/docs/definitions/process/manufacture-microwave)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/motor-10-kw.md b/content/docs/definitions/part/motor-10-kw.md
new file mode 100644
index 0000000..502a477
--- /dev/null
+++ b/content/docs/definitions/part/motor-10-kw.md
@@ -0,0 +1,31 @@
+---
+title: Part - Motor 10 kW
+linkTitle: Motor 10 kW
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An induction motor with 10 kW power output.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|10.0 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Manufacture 10 kW Motor](/docs/definitions/process/manufacture-10-kw-motor)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/motor-30-kw.md b/content/docs/definitions/part/motor-30-kw.md
new file mode 100644
index 0000000..7950a39
--- /dev/null
+++ b/content/docs/definitions/part/motor-30-kw.md
@@ -0,0 +1,32 @@
+---
+title: Part - Motor 30 kW
+linkTitle: Motor 30 kW
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An induction motor with 30 kW power output.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|30.0 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Manufacture 30 kW Motor](/docs/definitions/process/manufacture-30-kw-motor)
+
+## Used by Manufacturing Process
+
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+- [Assemble drilling rig](/docs/definitions/process/assemble-drilling-rig)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/motor-5-kw.md b/content/docs/definitions/part/motor-5-kw.md
new file mode 100644
index 0000000..d47b7aa
--- /dev/null
+++ b/content/docs/definitions/part/motor-5-kw.md
@@ -0,0 +1,31 @@
+---
+title: Part - Motor 5 kW
+linkTitle: Motor 5 kW
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A motor with 5 kW power output.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Manufacture 5 kW Motor](/docs/definitions/process/manufacture-5-kw-motor)
+
+## Used by Manufacturing Process
+
+- [Assemble backhoe](/docs/definitions/process/assemble-backhoe)
+- [Manufacture crane boom](/docs/definitions/process/manufacture-crane-boom)
+- [Make air compressor](/docs/definitions/process/make-air-compressor)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/mushroom-containment-kit.md b/content/docs/definitions/part/mushroom-containment-kit.md
new file mode 100644
index 0000000..1e02f93
--- /dev/null
+++ b/content/docs/definitions/part/mushroom-containment-kit.md
@@ -0,0 +1,26 @@
+---
+title: Part - Mushroom Containment kit
+linkTitle: Mushroom Containment kit
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Tool|
+
+## Made by Manufacturing Process
+
+- [Make mushroom containment kit](/docs/definitions/process/make-mushroom-containment-kit)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/navigation-circuit-board.md b/content/docs/definitions/part/navigation-circuit-board.md
new file mode 100644
index 0000000..a90efa2
--- /dev/null
+++ b/content/docs/definitions/part/navigation-circuit-board.md
@@ -0,0 +1,36 @@
+---
+title: Part - Navigation Circuit Board
+linkTitle: Navigation Circuit Board
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.5 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture navigation circuit board](/docs/definitions/process/manufacture-navigation-circuit-board)
+
+## Used by Manufacturing Process
+
+- [Manufacture rover control panel](/docs/definitions/process/manufacture-rover-control-panel)
+- [Manufacture rover control panel Alt #1](/docs/definitions/process/manufacture-rover-control-panel-alt--1)
+- [Manufacture rover control panel Alt #2](/docs/definitions/process/manufacture-rover-control-panel-alt--2)
+- [Manufacture utility vehicle control panel](/docs/definitions/process/manufacture-utility-vehicle-control-panel)
+- [Manufacture utility vehicle control panel Alt #1](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1)
+- [Manufacture utility vehicle control panel Alt #2](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2)
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/optical-cable.md b/content/docs/definitions/part/optical-cable.md
new file mode 100644
index 0000000..b3f504b
--- /dev/null
+++ b/content/docs/definitions/part/optical-cable.md
@@ -0,0 +1,41 @@
+---
+title: Part - Optical cable
+linkTitle: Optical cable
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+a cable made of optic fiber
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.01 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture optical cable](/docs/definitions/process/manufacture-optical-cable)
+
+## Used by Manufacturing Process
+
+- [Make satellite dish](/docs/definitions/process/make-satellite-dish)
+- [Make satellite dish Alt #1](/docs/definitions/process/make-satellite-dish-alt--1)
+- [Make radio antenna](/docs/definitions/process/make-radio-antenna)
+- [Make radio antenna Alt #1](/docs/definitions/process/make-radio-antenna-alt--1)
+- [Make EVA antenna](/docs/definitions/process/make-eva-antenna)
+- [Make EVA antenna Alt #1](/docs/definitions/process/make-eva-antenna-alt--1)
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/optical-lens.md b/content/docs/definitions/part/optical-lens.md
new file mode 100644
index 0000000..0e10aed
--- /dev/null
+++ b/content/docs/definitions/part/optical-lens.md
@@ -0,0 +1,32 @@
+---
+title: Part - Optical Lens
+linkTitle: Optical Lens
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.1 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture optical lens](/docs/definitions/process/manufacture-optical-lens)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Manufacture carbon dioxide laser](/docs/definitions/process/manufacture-carbon-dioxide-laser)
+- [Manufacture helium neon laser](/docs/definitions/process/manufacture-helium-neon-laser)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/optical-prism.md b/content/docs/definitions/part/optical-prism.md
new file mode 100644
index 0000000..d424ae1
--- /dev/null
+++ b/content/docs/definitions/part/optical-prism.md
@@ -0,0 +1,27 @@
+---
+title: Part - Optical Prism
+linkTitle: Optical Prism
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.1 kg|
+|Type:|Electronic|
+
+
+## Used by Manufacturing Process
+
+- [Manufacture helium neon laser](/docs/definitions/process/manufacture-helium-neon-laser)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/oven.md b/content/docs/definitions/part/oven.md
new file mode 100644
index 0000000..6846735
--- /dev/null
+++ b/content/docs/definitions/part/oven.md
@@ -0,0 +1,26 @@
+---
+title: Part - Oven
+linkTitle: Oven
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|10.0 kg|
+|Type:|Kitchen|
+
+## Made by Manufacturing Process
+
+- [Manufacture oven](/docs/definitions/process/manufacture-oven)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/oxygen-pump.md b/content/docs/definitions/part/oxygen-pump.md
new file mode 100644
index 0000000..cd8007e
--- /dev/null
+++ b/content/docs/definitions/part/oxygen-pump.md
@@ -0,0 +1,34 @@
+---
+title: Part - Oxygen pump
+linkTitle: Oxygen pump
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make oxygen pump](/docs/definitions/process/make-oxygen-pump)
+
+## Used by Manufacturing Process
+
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+- [Manufacture pneumatic drill](/docs/definitions/process/manufacture-pneumatic-drill)
+- [Make mushroom containment kit](/docs/definitions/process/make-mushroom-containment-kit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/pathogen-filter.md b/content/docs/definitions/part/pathogen-filter.md
new file mode 100644
index 0000000..75dd49d
--- /dev/null
+++ b/content/docs/definitions/part/pathogen-filter.md
@@ -0,0 +1,29 @@
+---
+title: Part - Pathogen filter
+linkTitle: Pathogen filter
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|3.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Manufacture pathogen filter](/docs/definitions/process/manufacture-pathogen-filter)
+
+## Used by Manufacturing Process
+
+- [Manufacture electrostatic precipitator](/docs/definitions/process/manufacture-electrostatic-precipitator)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/petri-dish.md b/content/docs/definitions/part/petri-dish.md
new file mode 100644
index 0000000..3e233d3
--- /dev/null
+++ b/content/docs/definitions/part/petri-dish.md
@@ -0,0 +1,26 @@
+---
+title: Part - Petri dish
+linkTitle: Petri dish
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+a small dish shaped like a cylinder for growing cells. Made of polystyrene.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.02 kg|
+|Type:|Container|
+
+## Made by Manufacturing Process
+
+- [Produce petri dish](/docs/definitions/process/produce-petri-dish)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/pipe-wrench.md b/content/docs/definitions/part/pipe-wrench.md
new file mode 100644
index 0000000..babcbd6
--- /dev/null
+++ b/content/docs/definitions/part/pipe-wrench.md
@@ -0,0 +1,26 @@
+---
+title: Part - Pipe wrench
+linkTitle: Pipe wrench
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+a socket wrench for vehicle
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.5 kg|
+|Type:|Tool|
+
+## Made by Manufacturing Process
+
+- [Make pipe wrench](/docs/definitions/process/make-pipe-wrench)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/plasma-cutter.md b/content/docs/definitions/part/plasma-cutter.md
new file mode 100644
index 0000000..1cf60d7
--- /dev/null
+++ b/content/docs/definitions/part/plasma-cutter.md
@@ -0,0 +1,26 @@
+---
+title: Part - Plasma cutter
+linkTitle: Plasma cutter
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Plasma is electrified gas. a plasma cutter will cut any material
that conducts electricity. Aluminum, steel, stainless, brass, copper, etc.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|20.0 kg|
+|Type:|Instrument|
+
+## Made by Manufacturing Process
+
+- [Manufacture plasma cutter](/docs/definitions/process/manufacture-plasma-cutter)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/plastic-bottle.md b/content/docs/definitions/part/plastic-bottle.md
new file mode 100644
index 0000000..d30567a
--- /dev/null
+++ b/content/docs/definitions/part/plastic-bottle.md
@@ -0,0 +1,43 @@
+---
+title: Part - Plastic Bottle
+linkTitle: Plastic Bottle
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.2 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make plastic bottle](/docs/definitions/process/make-plastic-bottle)
+- [Make plastic bottle Alt #1](/docs/definitions/process/make-plastic-bottle-alt--1)
+- [Make plastic bottle Alt #2](/docs/definitions/process/make-plastic-bottle-alt--2)
+
+## Used by Manufacturing Process
+
+- [Manufacture rover control panel](/docs/definitions/process/manufacture-rover-control-panel)
+- [Manufacture rover control panel Alt #1](/docs/definitions/process/manufacture-rover-control-panel-alt--1)
+- [Manufacture rover control panel Alt #2](/docs/definitions/process/manufacture-rover-control-panel-alt--2)
+- [Manufacture utility vehicle control panel](/docs/definitions/process/manufacture-utility-vehicle-control-panel)
+- [Manufacture utility vehicle control panel Alt #1](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1)
+- [Manufacture utility vehicle control panel Alt #2](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2)
+- [Manufacture fuel tank](/docs/definitions/process/manufacture-fuel-tank)
+- [Manufacture gas tank](/docs/definitions/process/manufacture-gas-tank)
+- [Manufacture water tank](/docs/definitions/process/manufacture-water-tank)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/plastic-pipe.md b/content/docs/definitions/part/plastic-pipe.md
new file mode 100644
index 0000000..a37def2
--- /dev/null
+++ b/content/docs/definitions/part/plastic-pipe.md
@@ -0,0 +1,35 @@
+---
+title: Part - Plastic Pipe
+linkTitle: Plastic Pipe
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make plastic pipe](/docs/definitions/process/make-plastic-pipe)
+- [Make plastic pipe Alt #1](/docs/definitions/process/make-plastic-pipe-alt--1)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/plastic-sheet.md b/content/docs/definitions/part/plastic-sheet.md
new file mode 100644
index 0000000..caed2c5
--- /dev/null
+++ b/content/docs/definitions/part/plastic-sheet.md
@@ -0,0 +1,49 @@
+---
+title: Part - Plastic Sheet
+linkTitle: Plastic Sheet
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.1 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Do plastic sheet extrusion](/docs/definitions/process/do-plastic-sheet-extrusion)
+
+## Used by Manufacturing Process
+
+- [Manufacture bag](/docs/definitions/process/manufacture-bag)
+- [Manufacture large bag](/docs/definitions/process/manufacture-large-bag)
+- [Manufacture thermal bottle](/docs/definitions/process/manufacture-thermal-bottle)
+- [Manufacture food blender](/docs/definitions/process/manufacture-food-blender)
+- [Manufacture oven](/docs/definitions/process/manufacture-oven)
+- [Manufacture microwave](/docs/definitions/process/manufacture-microwave)
+- [Manufacture ventilation fan](/docs/definitions/process/manufacture-ventilation-fan)
+- [Manufacture kitchen stove](/docs/definitions/process/manufacture-kitchen-stove)
+- [Manufacture refrigerator](/docs/definitions/process/manufacture-refrigerator)
+- [Manufacture autoclave](/docs/definitions/process/manufacture-autoclave)
+- [Manufacture navigation circuit board](/docs/definitions/process/manufacture-navigation-circuit-board)
+- [Manufacture communications circuit board](/docs/definitions/process/manufacture-communications-circuit-board)
+- [Manufacture carbon dioxide laser](/docs/definitions/process/manufacture-carbon-dioxide-laser)
+- [Manufacture helium neon laser](/docs/definitions/process/manufacture-helium-neon-laser)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+- [Manufacture pathogen filter](/docs/definitions/process/manufacture-pathogen-filter)
+- [Make methane fuel cell stack](/docs/definitions/process/make-methane-fuel-cell-stack)
+- [Make methanol fuel cell stack](/docs/definitions/process/make-methanol-fuel-cell-stack)
+- [Manufacture turbopump](/docs/definitions/process/manufacture-turbopump)
+- [Make decontamination kit](/docs/definitions/process/make-decontamination-kit)
+- [Manufacture logic board](/docs/definitions/process/manufacture-logic-board)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/plastic-tubing.md b/content/docs/definitions/part/plastic-tubing.md
new file mode 100644
index 0000000..3d0d7ce
--- /dev/null
+++ b/content/docs/definitions/part/plastic-tubing.md
@@ -0,0 +1,56 @@
+---
+title: Part - Plastic Tubing
+linkTitle: Plastic Tubing
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.05 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make plastic tubing](/docs/definitions/process/make-plastic-tubing)
+
+## Used by Manufacturing Process
+
+- [Make fire extinguisher](/docs/definitions/process/make-fire-extinguisher)
+- [Make Liquid Cooling Garment](/docs/definitions/process/make-liquid-cooling-garment)
+- [Make Liquid Cooling Garment Alt #1](/docs/definitions/process/make-liquid-cooling-garment-alt--1)
+- [Make Liquid Cooling Garment Alt #2](/docs/definitions/process/make-liquid-cooling-garment-alt--2)
+- [Make Liquid Cooling Garment Alt #3](/docs/definitions/process/make-liquid-cooling-garment-alt--3)
+- [Make EVA helmet](/docs/definitions/process/make-eva-helmet)
+- [Make EVA helmet Alt #1](/docs/definitions/process/make-eva-helmet-alt--1)
+- [Make EVA helmet Alt #2](/docs/definitions/process/make-eva-helmet-alt--2)
+- [Make pressure suit](/docs/definitions/process/make-pressure-suit)
+- [Make pressure suit Alt #1](/docs/definitions/process/make-pressure-suit-alt--1)
+- [Make pressure suit Alt #2](/docs/definitions/process/make-pressure-suit-alt--2)
+- [Make pressure suit Alt #3](/docs/definitions/process/make-pressure-suit-alt--3)
+- [Make EVA backpack](/docs/definitions/process/make-eva-backpack)
+- [Make EVA backpack Alt #1](/docs/definitions/process/make-eva-backpack-alt--1)
+- [Make EVA backpack Alt #2](/docs/definitions/process/make-eva-backpack-alt--2)
+- [Manufacture fuel tank](/docs/definitions/process/manufacture-fuel-tank)
+- [Manufacture gas tank](/docs/definitions/process/manufacture-gas-tank)
+- [Manufacture water tank](/docs/definitions/process/manufacture-water-tank)
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+- [Manufacture pneumatic drill](/docs/definitions/process/manufacture-pneumatic-drill)
+- [Make mushroom containment kit](/docs/definitions/process/make-mushroom-containment-kit)
+- [Make Power Panel](/docs/definitions/process/make-power-panel)
+- [Make Power Panel Alt #1](/docs/definitions/process/make-power-panel-alt--1)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/pneumatic-drill.md b/content/docs/definitions/part/pneumatic-drill.md
new file mode 100644
index 0000000..28f1fd4
--- /dev/null
+++ b/content/docs/definitions/part/pneumatic-drill.md
@@ -0,0 +1,26 @@
+---
+title: Part - Pneumatic Drill
+linkTitle: Pneumatic Drill
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Attachment part for LUV. A pneumatic hand for lifting.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|25.0 kg|
+|Type:|Attachment|
+
+## Made by Manufacturing Process
+
+- [Manufacture pneumatic drill](/docs/definitions/process/manufacture-pneumatic-drill)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/polycarbonate-roofing.md b/content/docs/definitions/part/polycarbonate-roofing.md
new file mode 100644
index 0000000..92ae310
--- /dev/null
+++ b/content/docs/definitions/part/polycarbonate-roofing.md
@@ -0,0 +1,26 @@
+---
+title: Part - Polycarbonate roofing
+linkTitle: Polycarbonate roofing
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Assume 2m x 2m, highly transparent, "bullet-resistant" plastic cladding
roofing for greenhouses
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Construction|
+
+## Made by Manufacturing Process
+
+- [Manufacture polycarbonate roofing](/docs/definitions/process/manufacture-polycarbonate-roofing)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/power-cable.md b/content/docs/definitions/part/power-cable.md
new file mode 100644
index 0000000..d2dbded
--- /dev/null
+++ b/content/docs/definitions/part/power-cable.md
@@ -0,0 +1,34 @@
+---
+title: Part - Power Cable
+linkTitle: Power Cable
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Make aluminum power cable](/docs/definitions/process/make-aluminum-power-cable)
+- [Make copper power cable](/docs/definitions/process/make-copper-power-cable)
+
+## Used by Manufacturing Process
+
+- [Make flood light](/docs/definitions/process/make-flood-light)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+- [Manufacture transformer](/docs/definitions/process/manufacture-transformer)
+- [Make Power Panel](/docs/definitions/process/make-power-panel)
+- [Make Power Panel Alt #1](/docs/definitions/process/make-power-panel-alt--1)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/power-panel.md b/content/docs/definitions/part/power-panel.md
new file mode 100644
index 0000000..0e2bdda
--- /dev/null
+++ b/content/docs/definitions/part/power-panel.md
@@ -0,0 +1,27 @@
+---
+title: Part - Power Panel
+linkTitle: Power Panel
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Make Power Panel](/docs/definitions/process/make-power-panel)
+- [Make Power Panel Alt #1](/docs/definitions/process/make-power-panel-alt--1)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/power-transistor.md b/content/docs/definitions/part/power-transistor.md
new file mode 100644
index 0000000..711afef
--- /dev/null
+++ b/content/docs/definitions/part/power-transistor.md
@@ -0,0 +1,26 @@
+---
+title: Part - Power Transistor
+linkTitle: Power Transistor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.01 kg|
+|Type:|Electronic|
+
+
+## Used by Manufacturing Process
+
+- [Manufacture microwave](/docs/definitions/process/manufacture-microwave)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/pressure-suit.md b/content/docs/definitions/part/pressure-suit.md
new file mode 100644
index 0000000..54dbc7d
--- /dev/null
+++ b/content/docs/definitions/part/pressure-suit.md
@@ -0,0 +1,32 @@
+---
+title: Part - Pressure Suit
+linkTitle: Pressure Suit
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Spandex inner EVA suit for counter pressure.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|EVA|
+
+## Made by Manufacturing Process
+
+- [Make pressure suit](/docs/definitions/process/make-pressure-suit)
+- [Make pressure suit Alt #1](/docs/definitions/process/make-pressure-suit-alt--1)
+- [Make pressure suit Alt #2](/docs/definitions/process/make-pressure-suit-alt--2)
+- [Make pressure suit Alt #3](/docs/definitions/process/make-pressure-suit-alt--3)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/propeller.md b/content/docs/definitions/part/propeller.md
new file mode 100644
index 0000000..e2007c4
--- /dev/null
+++ b/content/docs/definitions/part/propeller.md
@@ -0,0 +1,30 @@
+---
+title: Part - Propeller
+linkTitle: Propeller
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+polycarbonate propeller for drones
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.0 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Manufacture propeller](/docs/definitions/process/manufacture-propeller)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/radio-antenna.md b/content/docs/definitions/part/radio-antenna.md
new file mode 100644
index 0000000..f9aaa2c
--- /dev/null
+++ b/content/docs/definitions/part/radio-antenna.md
@@ -0,0 +1,35 @@
+---
+title: Part - Radio Antenna
+linkTitle: Radio Antenna
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.0 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Make radio antenna](/docs/definitions/process/make-radio-antenna)
+- [Make radio antenna Alt #1](/docs/definitions/process/make-radio-antenna-alt--1)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/refrigerator.md b/content/docs/definitions/part/refrigerator.md
new file mode 100644
index 0000000..5613abd
--- /dev/null
+++ b/content/docs/definitions/part/refrigerator.md
@@ -0,0 +1,26 @@
+---
+title: Part - Refrigerator
+linkTitle: Refrigerator
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|70.0 kg|
+|Type:|Kitchen|
+
+## Made by Manufacturing Process
+
+- [Manufacture refrigerator](/docs/definitions/process/manufacture-refrigerator)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/resistor.md b/content/docs/definitions/part/resistor.md
new file mode 100644
index 0000000..858c470
--- /dev/null
+++ b/content/docs/definitions/part/resistor.md
@@ -0,0 +1,30 @@
+---
+title: Part - Resistor
+linkTitle: Resistor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+a basic electrical component.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.001 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture resistors](/docs/definitions/process/manufacture-resistors)
+
+## Used by Manufacturing Process
+
+- [Manufacture logic board](/docs/definitions/process/manufacture-logic-board)
+- [Manufacture plasma cutter](/docs/definitions/process/manufacture-plasma-cutter)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/rope.md b/content/docs/definitions/part/rope.md
new file mode 100644
index 0000000..5471c23
--- /dev/null
+++ b/content/docs/definitions/part/rope.md
@@ -0,0 +1,26 @@
+---
+title: Part - Rope
+linkTitle: Rope
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make Polypropylene rope](/docs/definitions/process/make-polypropylene-rope)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/rover-control-panel.md b/content/docs/definitions/part/rover-control-panel.md
new file mode 100644
index 0000000..51f43d0
--- /dev/null
+++ b/content/docs/definitions/part/rover-control-panel.md
@@ -0,0 +1,33 @@
+---
+title: Part - Rover Control Panel
+linkTitle: Rover Control Panel
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Made from polyethylene and reinforced fiberglass.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|30.0 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Manufacture rover control panel](/docs/definitions/process/manufacture-rover-control-panel)
+- [Manufacture rover control panel Alt #1](/docs/definitions/process/manufacture-rover-control-panel-alt--1)
+- [Manufacture rover control panel Alt #2](/docs/definitions/process/manufacture-rover-control-panel-alt--2)
+
+## Used by Manufacturing Process
+
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/rover-wheel.md b/content/docs/definitions/part/rover-wheel.md
new file mode 100644
index 0000000..e4d0999
--- /dev/null
+++ b/content/docs/definitions/part/rover-wheel.md
@@ -0,0 +1,32 @@
+---
+title: Part - Rover Wheel
+linkTitle: Rover Wheel
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Rover wheels are made of durable steel wires and Nickel-titanium alloy wires.
See 'kinky' wire wheel at https://www.youtube.com/watch?v=vSNtifE0Z2Q
Read Martensite at https://www.tf.uni-kiel.de/matwis/amat/iss/kap_8/backbone/r8_4_1.html
Shape memory alloys (SMAs) https://onlinelibrary.wiley.com/doi/10.1111/j.1747-1567.2008.00410.x
Nickel-titanium alloy https://www.space.com/39305-metal-tires-for-mars-rovers.html
Nitinol wire https://space.stackexchange.com/questions/23758/are-these-experimental-stoichiometric-niti-wire-mesh-wheels-made-from-memory-al
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|8.9 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Make rover wheels](/docs/definitions/process/make-rover-wheels)
+
+## Used by Manufacturing Process
+
+- [Make winch](/docs/definitions/process/make-winch)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/rover-windshield.md b/content/docs/definitions/part/rover-windshield.md
new file mode 100644
index 0000000..0fe18c1
--- /dev/null
+++ b/content/docs/definitions/part/rover-windshield.md
@@ -0,0 +1,31 @@
+---
+title: Part - Rover Windshield
+linkTitle: Rover Windshield
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|50.0 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Manufacture rover windshield](/docs/definitions/process/manufacture-rover-windshield)
+
+## Used by Manufacturing Process
+
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/satellite-dish.md b/content/docs/definitions/part/satellite-dish.md
new file mode 100644
index 0000000..deddcdd
--- /dev/null
+++ b/content/docs/definitions/part/satellite-dish.md
@@ -0,0 +1,32 @@
+---
+title: Part - Satellite Dish
+linkTitle: Satellite Dish
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|4.0 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Make satellite dish](/docs/definitions/process/make-satellite-dish)
+- [Make satellite dish Alt #1](/docs/definitions/process/make-satellite-dish-alt--1)
+
+## Used by Manufacturing Process
+
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/semiconductor-wafer.md b/content/docs/definitions/part/semiconductor-wafer.md
new file mode 100644
index 0000000..58e3bbb
--- /dev/null
+++ b/content/docs/definitions/part/semiconductor-wafer.md
@@ -0,0 +1,35 @@
+---
+title: Part - Semiconductor Wafer
+linkTitle: Semiconductor Wafer
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Fabricate semiconductor wafer](/docs/definitions/process/fabricate-semiconductor-wafer)
+
+## Used by Manufacturing Process
+
+- [Fabricate solar panel](/docs/definitions/process/fabricate-solar-panel)
+- [Make CMOS sensor](/docs/definitions/process/make-cmos-sensor)
+- [Manufacture light emitting diode bulb](/docs/definitions/process/manufacture-light-emitting-diode-bulb)
+- [Manufacture microcontroller](/docs/definitions/process/manufacture-microcontroller)
+- [Manufacture carbon dioxide laser](/docs/definitions/process/manufacture-carbon-dioxide-laser)
+- [Manufacture helium neon laser](/docs/definitions/process/manufacture-helium-neon-laser)
+- [Manufacture logic board](/docs/definitions/process/manufacture-logic-board)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/sls-3d-printer.md b/content/docs/definitions/part/sls-3d-printer.md
new file mode 100644
index 0000000..ff6377e
--- /dev/null
+++ b/content/docs/definitions/part/sls-3d-printer.md
@@ -0,0 +1,26 @@
+---
+title: Part - SLS 3D Printer
+linkTitle: SLS 3D Printer
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|50.0 kg|
+|Type:|Electronic|
+
+## Made by Manufacturing Process
+
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/small-hammer.md b/content/docs/definitions/part/small-hammer.md
new file mode 100644
index 0000000..24c2e1d
--- /dev/null
+++ b/content/docs/definitions/part/small-hammer.md
@@ -0,0 +1,23 @@
+---
+title: Part - Small Hammer
+linkTitle: Small Hammer
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+an utility hammer for light use
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.5 kg|
+|Type:|Tool|
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/socket-wrench.md b/content/docs/definitions/part/socket-wrench.md
new file mode 100644
index 0000000..3e81520
--- /dev/null
+++ b/content/docs/definitions/part/socket-wrench.md
@@ -0,0 +1,26 @@
+---
+title: Part - Socket wrench
+linkTitle: Socket wrench
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+a socket wrench for vehicle
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Tool|
+
+## Made by Manufacturing Process
+
+- [Make socket wrench](/docs/definitions/process/make-socket-wrench)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/soil-compactor.md b/content/docs/definitions/part/soil-compactor.md
new file mode 100644
index 0000000..8937e54
--- /dev/null
+++ b/content/docs/definitions/part/soil-compactor.md
@@ -0,0 +1,26 @@
+---
+title: Part - Soil Compactor
+linkTitle: Soil Compactor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Attachment part for LUV. A drum roller that applied stress to a soil
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|100.0 kg|
+|Type:|Attachment|
+
+## Made by Manufacturing Process
+
+- [Manufacture soil compactor](/docs/definitions/process/manufacture-soil-compactor)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/solar-panel.md b/content/docs/definitions/part/solar-panel.md
new file mode 100644
index 0000000..a6ee120
--- /dev/null
+++ b/content/docs/definitions/part/solar-panel.md
@@ -0,0 +1,26 @@
+---
+title: Part - Solar Panel
+linkTitle: Solar Panel
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Solar photovoltaic panel.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|10.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Fabricate solar panel](/docs/definitions/process/fabricate-solar-panel)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/solar-parabolic-mirror.md b/content/docs/definitions/part/solar-parabolic-mirror.md
new file mode 100644
index 0000000..009f3e9
--- /dev/null
+++ b/content/docs/definitions/part/solar-parabolic-mirror.md
@@ -0,0 +1,26 @@
+---
+title: Part - Solar Parabolic Mirror
+linkTitle: Solar Parabolic Mirror
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Mirror for solar thermal power source.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|50.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Fabricate solar parabolic mirror](/docs/definitions/process/fabricate-solar-parabolic-mirror)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/spark-plug.md b/content/docs/definitions/part/spark-plug.md
new file mode 100644
index 0000000..cc79de6
--- /dev/null
+++ b/content/docs/definitions/part/spark-plug.md
@@ -0,0 +1,26 @@
+---
+title: Part - Spark Plug
+linkTitle: Spark Plug
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.1 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Make spark plug](/docs/definitions/process/make-spark-plug)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/steel-cable.md b/content/docs/definitions/part/steel-cable.md
new file mode 100644
index 0000000..8c65f2a
--- /dev/null
+++ b/content/docs/definitions/part/steel-cable.md
@@ -0,0 +1,30 @@
+---
+title: Part - Steel Cable
+linkTitle: Steel Cable
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Do steel cable winding](/docs/definitions/process/do-steel-cable-winding)
+
+## Used by Manufacturing Process
+
+- [Make winch](/docs/definitions/process/make-winch)
+- [Assemble drilling rig](/docs/definitions/process/assemble-drilling-rig)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/steel-canister.md b/content/docs/definitions/part/steel-canister.md
new file mode 100644
index 0000000..9d3a6c7
--- /dev/null
+++ b/content/docs/definitions/part/steel-canister.md
@@ -0,0 +1,33 @@
+---
+title: Part - Steel Canister
+linkTitle: Steel Canister
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|3.9 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make steel canister](/docs/definitions/process/make-steel-canister)
+
+## Used by Manufacturing Process
+
+- [Make fire extinguisher](/docs/definitions/process/make-fire-extinguisher)
+- [Make gas canister](/docs/definitions/process/make-gas-canister)
+- [Make EVA backpack](/docs/definitions/process/make-eva-backpack)
+- [Make EVA backpack Alt #1](/docs/definitions/process/make-eva-backpack-alt--1)
+- [Make EVA backpack Alt #2](/docs/definitions/process/make-eva-backpack-alt--2)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/steel-ingot.md b/content/docs/definitions/part/steel-ingot.md
new file mode 100644
index 0000000..582510b
--- /dev/null
+++ b/content/docs/definitions/part/steel-ingot.md
@@ -0,0 +1,55 @@
+---
+title: Part - Steel Ingot
+linkTitle: Steel Ingot
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|Metallic|
+
+## Made by Manufacturing Process
+
+- [Do steel ingot alloying](/docs/definitions/process/do-steel-ingot-alloying)
+- [Do steel ingot nickel alloying](/docs/definitions/process/do-steel-ingot-nickel-alloying)
+- [Recycle steel scrap](/docs/definitions/process/recycle-steel-scrap)
+
+## Used by Manufacturing Process
+
+- [Roll steel sheet](/docs/definitions/process/roll-steel-sheet)
+- [Draw steel wire](/docs/definitions/process/draw-steel-wire)
+- [Do steel cable winding](/docs/definitions/process/do-steel-cable-winding)
+- [Make steel valve](/docs/definitions/process/make-steel-valve)
+- [Make spark plug](/docs/definitions/process/make-spark-plug)
+- [Make EVA boots](/docs/definitions/process/make-eva-boots)
+- [Make EVA boots Alt #1](/docs/definitions/process/make-eva-boots-alt--1)
+- [Make EVA pads](/docs/definitions/process/make-eva-pads)
+- [Make EVA pads Alt #1](/docs/definitions/process/make-eva-pads-alt--1)
+- [Make EVA backpack](/docs/definitions/process/make-eva-backpack)
+- [Make EVA backpack Alt #1](/docs/definitions/process/make-eva-backpack-alt--1)
+- [Make EVA backpack Alt #2](/docs/definitions/process/make-eva-backpack-alt--2)
+- [Make small vehicle frame](/docs/definitions/process/make-small-vehicle-frame)
+- [Make large vehicle frame](/docs/definitions/process/make-large-vehicle-frame)
+- [Manufacture rover windshield](/docs/definitions/process/manufacture-rover-windshield)
+- [Manufacture window](/docs/definitions/process/manufacture-window)
+- [Make winch](/docs/definitions/process/make-winch)
+- [Make socket wrench](/docs/definitions/process/make-socket-wrench)
+- [Make pipe wrench](/docs/definitions/process/make-pipe-wrench)
+- [Manufacture pneumatic drill](/docs/definitions/process/manufacture-pneumatic-drill)
+- [Manufacture bulldozer blade](/docs/definitions/process/manufacture-bulldozer-blade)
+- [Manufacture soil compactor](/docs/definitions/process/manufacture-soil-compactor)
+- [Manufacture steel truss](/docs/definitions/process/manufacture-steel-truss)
+- [Manufacture steel post](/docs/definitions/process/manufacture-steel-post)
+- [Manufacture bore drill bit](/docs/definitions/process/manufacture-bore-drill-bit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/steel-pipe.md b/content/docs/definitions/part/steel-pipe.md
new file mode 100644
index 0000000..f285bc3
--- /dev/null
+++ b/content/docs/definitions/part/steel-pipe.md
@@ -0,0 +1,37 @@
+---
+title: Part - Steel Pipe
+linkTitle: Steel Pipe
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A density of 7.8 g/cm3. length of 1m. Thickness of 2mm. Diameter of 20mm
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.882 kg|
+|Type:|Metallic|
+
+## Made by Manufacturing Process
+
+- [Make steel pipe](/docs/definitions/process/make-steel-pipe)
+
+## Used by Manufacturing Process
+
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+- [Manufacture oven](/docs/definitions/process/manufacture-oven)
+- [Manufacture transformer](/docs/definitions/process/manufacture-transformer)
+- [Manufacture electrostatic precipitator](/docs/definitions/process/manufacture-electrostatic-precipitator)
+- [Make methane fuel cell stack](/docs/definitions/process/make-methane-fuel-cell-stack)
+- [Make methanol fuel cell stack](/docs/definitions/process/make-methanol-fuel-cell-stack)
+- [Manufacture turbopump](/docs/definitions/process/manufacture-turbopump)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/steel-post.md b/content/docs/definitions/part/steel-post.md
new file mode 100644
index 0000000..df3d1fd
--- /dev/null
+++ b/content/docs/definitions/part/steel-post.md
@@ -0,0 +1,26 @@
+---
+title: Part - Steel Post
+linkTitle: Steel Post
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A small, light steel bar used for construction.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|Construction|
+
+## Made by Manufacturing Process
+
+- [Manufacture steel post](/docs/definitions/process/manufacture-steel-post)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/steel-scrap.md b/content/docs/definitions/part/steel-scrap.md
new file mode 100644
index 0000000..df08778
--- /dev/null
+++ b/content/docs/definitions/part/steel-scrap.md
@@ -0,0 +1,26 @@
+---
+title: Part - Steel Scrap
+linkTitle: Steel Scrap
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A 25 kg piece of salvaged steel scrap.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|25.0 kg|
+|Type:|Metallic|
+
+
+## Used by Manufacturing Process
+
+- [Recycle steel scrap](/docs/definitions/process/recycle-steel-scrap)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/steel-sheet.md b/content/docs/definitions/part/steel-sheet.md
new file mode 100644
index 0000000..d47159d
--- /dev/null
+++ b/content/docs/definitions/part/steel-sheet.md
@@ -0,0 +1,74 @@
+---
+title: Part - Steel Sheet
+linkTitle: Steel Sheet
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A density of 7.8 g/cm3. 1m x 1m x 1mm sheet of steel
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|7.8 kg|
+|Type:|Metallic|
+
+## Made by Manufacturing Process
+
+- [Make steel sheet](/docs/definitions/process/make-steel-sheet)
+- [Roll steel sheet](/docs/definitions/process/roll-steel-sheet)
+
+## Used by Manufacturing Process
+
+- [Make steel pipe](/docs/definitions/process/make-steel-pipe)
+- [Make steel canister](/docs/definitions/process/make-steel-canister)
+- [Make small wheels](/docs/definitions/process/make-small-wheels)
+- [Make rover wheels](/docs/definitions/process/make-rover-wheels)
+- [Make winch](/docs/definitions/process/make-winch)
+- [Manufacture turbine generator](/docs/definitions/process/manufacture-turbine-generator)
+- [Manufacture Stepper Motor](/docs/definitions/process/manufacture-stepper-motor)
+- [Manufacture 5 kW Motor](/docs/definitions/process/manufacture-5-kw-motor)
+- [Manufacture 10 kW Motor](/docs/definitions/process/manufacture-10-kw-motor)
+- [Manufacture 30 kW Motor](/docs/definitions/process/manufacture-30-kw-motor)
+- [Manufacture fuel tank](/docs/definitions/process/manufacture-fuel-tank)
+- [Manufacture gas tank](/docs/definitions/process/manufacture-gas-tank)
+- [Manufacture water tank](/docs/definitions/process/manufacture-water-tank)
+- [Make fuel pump](/docs/definitions/process/make-fuel-pump)
+- [Make oxygen pump](/docs/definitions/process/make-oxygen-pump)
+- [Make carbon dioxide pump](/docs/definitions/process/make-carbon-dioxide-pump)
+- [Manufacture pneumatic drill](/docs/definitions/process/manufacture-pneumatic-drill)
+- [Assemble backhoe](/docs/definitions/process/assemble-backhoe)
+- [Manufacture bulldozer blade](/docs/definitions/process/manufacture-bulldozer-blade)
+- [Manufacture crane boom](/docs/definitions/process/manufacture-crane-boom)
+- [Manufacture soil compactor](/docs/definitions/process/manufacture-soil-compactor)
+- [Fabricate solar parabolic mirror](/docs/definitions/process/fabricate-solar-parabolic-mirror)
+- [Manufacture bore drill pipe](/docs/definitions/process/manufacture-bore-drill-pipe)
+- [Assemble drilling rig](/docs/definitions/process/assemble-drilling-rig)
+- [Make large water pump](/docs/definitions/process/make-large-water-pump)
+- [Make small water pump](/docs/definitions/process/make-small-water-pump)
+- [Manufacture oven](/docs/definitions/process/manufacture-oven)
+- [Manufacture microwave](/docs/definitions/process/manufacture-microwave)
+- [Manufacture ventilation fan](/docs/definitions/process/manufacture-ventilation-fan)
+- [Manufacture kitchen stove](/docs/definitions/process/manufacture-kitchen-stove)
+- [Manufacture refrigerator](/docs/definitions/process/manufacture-refrigerator)
+- [Manufacture autoclave](/docs/definitions/process/manufacture-autoclave)
+- [Manufacture navigation circuit board](/docs/definitions/process/manufacture-navigation-circuit-board)
+- [Manufacture communications circuit board](/docs/definitions/process/manufacture-communications-circuit-board)
+- [Manufacture carbon dioxide laser](/docs/definitions/process/manufacture-carbon-dioxide-laser)
+- [Manufacture helium neon laser](/docs/definitions/process/manufacture-helium-neon-laser)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+- [Manufacture transformer](/docs/definitions/process/manufacture-transformer)
+- [Manufacture electrostatic precipitator](/docs/definitions/process/manufacture-electrostatic-precipitator)
+- [Make methane fuel cell stack](/docs/definitions/process/make-methane-fuel-cell-stack)
+- [Make methanol fuel cell stack](/docs/definitions/process/make-methanol-fuel-cell-stack)
+- [Manufacture turbopump](/docs/definitions/process/manufacture-turbopump)
+- [Manufacture plasma cutter](/docs/definitions/process/manufacture-plasma-cutter)
+- [Make Power Panel](/docs/definitions/process/make-power-panel)
+- [Make Power Panel Alt #1](/docs/definitions/process/make-power-panel-alt--1)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/steel-truss.md b/content/docs/definitions/part/steel-truss.md
new file mode 100644
index 0000000..86eb5a5
--- /dev/null
+++ b/content/docs/definitions/part/steel-truss.md
@@ -0,0 +1,26 @@
+---
+title: Part - Steel Truss
+linkTitle: Steel Truss
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Large steel bar used for construction.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|50.0 kg|
+|Type:|Construction|
+
+## Made by Manufacturing Process
+
+- [Manufacture steel truss](/docs/definitions/process/manufacture-steel-truss)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/steel-wire.md b/content/docs/definitions/part/steel-wire.md
new file mode 100644
index 0000000..9b2fb63
--- /dev/null
+++ b/content/docs/definitions/part/steel-wire.md
@@ -0,0 +1,34 @@
+---
+title: Part - Steel Wire
+linkTitle: Steel Wire
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.52 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Draw steel wire](/docs/definitions/process/draw-steel-wire)
+
+## Used by Manufacturing Process
+
+- [Make small wheels](/docs/definitions/process/make-small-wheels)
+- [Make rover wheels](/docs/definitions/process/make-rover-wheels)
+- [Make heating element](/docs/definitions/process/make-heating-element)
+- [Assemble backhoe](/docs/definitions/process/assemble-backhoe)
+- [Manufacture crane boom](/docs/definitions/process/manufacture-crane-boom)
+- [Make wheelbarrow](/docs/definitions/process/make-wheelbarrow)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/stepper-motor.md b/content/docs/definitions/part/stepper-motor.md
new file mode 100644
index 0000000..89bc0e4
--- /dev/null
+++ b/content/docs/definitions/part/stepper-motor.md
@@ -0,0 +1,31 @@
+---
+title: Part - Stepper Motor
+linkTitle: Stepper Motor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A 24 V precision motor for use in 3D printing
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Manufacture Stepper Motor](/docs/definitions/process/manufacture-stepper-motor)
+
+## Used by Manufacturing Process
+
+- [Manufacture food blender](/docs/definitions/process/manufacture-food-blender)
+- [Manufacture ventilation fan](/docs/definitions/process/manufacture-ventilation-fan)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/stove.md b/content/docs/definitions/part/stove.md
new file mode 100644
index 0000000..7547754
--- /dev/null
+++ b/content/docs/definitions/part/stove.md
@@ -0,0 +1,26 @@
+---
+title: Part - Stove
+linkTitle: Stove
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|20.0 kg|
+|Type:|Kitchen|
+
+## Made by Manufacturing Process
+
+- [Manufacture kitchen stove](/docs/definitions/process/manufacture-kitchen-stove)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/suit-heating-unit.md b/content/docs/definitions/part/suit-heating-unit.md
new file mode 100644
index 0000000..1d6112b
--- /dev/null
+++ b/content/docs/definitions/part/suit-heating-unit.md
@@ -0,0 +1,29 @@
+---
+title: Part - Suit Heating Unit
+linkTitle: Suit Heating Unit
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.25 kg|
+|Type:|EVA|
+
+## Made by Manufacturing Process
+
+- [Make suit heating unit](/docs/definitions/process/make-suit-heating-unit)
+
+## Used by Manufacturing Process
+
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/surge-protector.md b/content/docs/definitions/part/surge-protector.md
new file mode 100644
index 0000000..04ef78b
--- /dev/null
+++ b/content/docs/definitions/part/surge-protector.md
@@ -0,0 +1,31 @@
+---
+title: Part - Surge Protector
+linkTitle: Surge Protector
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Make Surge Protector](/docs/definitions/process/make-surge-protector)
+- [Make Surge Protector Alt #1](/docs/definitions/process/make-surge-protector-alt--1)
+
+## Used by Manufacturing Process
+
+- [Make Power Panel](/docs/definitions/process/make-power-panel)
+- [Make Power Panel Alt #1](/docs/definitions/process/make-power-panel-alt--1)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/telescoping-antenna.md b/content/docs/definitions/part/telescoping-antenna.md
new file mode 100644
index 0000000..04a5591
--- /dev/null
+++ b/content/docs/definitions/part/telescoping-antenna.md
@@ -0,0 +1,23 @@
+---
+title: Part - Telescoping antenna
+linkTitle: Telescoping antenna
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+This long transmitting antenna serves to transmit telemetry data for a portable science station in the field.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.0 kg|
+|Type:|Instrument|
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/timing-belt.md b/content/docs/definitions/part/timing-belt.md
new file mode 100644
index 0000000..a137780
--- /dev/null
+++ b/content/docs/definitions/part/timing-belt.md
@@ -0,0 +1,29 @@
+---
+title: Part - Timing Belt
+linkTitle: Timing Belt
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.2 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Make timing belt](/docs/definitions/process/make-timing-belt)
+
+## Used by Manufacturing Process
+
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/transformer.md b/content/docs/definitions/part/transformer.md
new file mode 100644
index 0000000..caf9820
--- /dev/null
+++ b/content/docs/definitions/part/transformer.md
@@ -0,0 +1,30 @@
+---
+title: Part - Transformer
+linkTitle: Transformer
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Manufacture transformer](/docs/definitions/process/manufacture-transformer)
+
+## Used by Manufacturing Process
+
+- [Manufacture microwave](/docs/definitions/process/manufacture-microwave)
+- [Manufacture electrostatic precipitator](/docs/definitions/process/manufacture-electrostatic-precipitator)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/turbine-generator.md b/content/docs/definitions/part/turbine-generator.md
new file mode 100644
index 0000000..1009afd
--- /dev/null
+++ b/content/docs/definitions/part/turbine-generator.md
@@ -0,0 +1,26 @@
+---
+title: Part - Turbine Generator
+linkTitle: Turbine Generator
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Turbine power generator.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|50.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Manufacture turbine generator](/docs/definitions/process/manufacture-turbine-generator)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/turbopump.md b/content/docs/definitions/part/turbopump.md
new file mode 100644
index 0000000..bee14f3
--- /dev/null
+++ b/content/docs/definitions/part/turbopump.md
@@ -0,0 +1,26 @@
+---
+title: Part - Turbopump
+linkTitle: Turbopump
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+This turbopump is compatible with delivering liquid methane. The purpose of a turbopump is
to produce a high pressure fluid for feeding a combustion chamber.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|50.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Manufacture turbopump](/docs/definitions/process/manufacture-turbopump)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/utility-vehicle-control-panel.md b/content/docs/definitions/part/utility-vehicle-control-panel.md
new file mode 100644
index 0000000..4a6660d
--- /dev/null
+++ b/content/docs/definitions/part/utility-vehicle-control-panel.md
@@ -0,0 +1,31 @@
+---
+title: Part - Utility Vehicle Control Panel
+linkTitle: Utility Vehicle Control Panel
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|10.0 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Manufacture utility vehicle control panel](/docs/definitions/process/manufacture-utility-vehicle-control-panel)
+- [Manufacture utility vehicle control panel Alt #1](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1)
+- [Manufacture utility vehicle control panel Alt #2](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2)
+
+## Used by Manufacturing Process
+
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/valve.md b/content/docs/definitions/part/valve.md
new file mode 100644
index 0000000..f393414
--- /dev/null
+++ b/content/docs/definitions/part/valve.md
@@ -0,0 +1,40 @@
+---
+title: Part - Valve
+linkTitle: Valve
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.2 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make steel valve](/docs/definitions/process/make-steel-valve)
+
+## Used by Manufacturing Process
+
+- [Make fire extinguisher](/docs/definitions/process/make-fire-extinguisher)
+- [Make gas canister](/docs/definitions/process/make-gas-canister)
+- [Make EVA backpack](/docs/definitions/process/make-eva-backpack)
+- [Make EVA backpack Alt #1](/docs/definitions/process/make-eva-backpack-alt--1)
+- [Make EVA backpack Alt #2](/docs/definitions/process/make-eva-backpack-alt--2)
+- [Manufacture fuel tank](/docs/definitions/process/manufacture-fuel-tank)
+- [Manufacture gas tank](/docs/definitions/process/manufacture-gas-tank)
+- [Manufacture water tank](/docs/definitions/process/manufacture-water-tank)
+- [Manufacture pneumatic drill](/docs/definitions/process/manufacture-pneumatic-drill)
+- [Manufacture oven](/docs/definitions/process/manufacture-oven)
+- [Make mushroom containment kit](/docs/definitions/process/make-mushroom-containment-kit)
+- [Manufacture pathogen filter](/docs/definitions/process/manufacture-pathogen-filter)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/vehicle-chassis-panel.md b/content/docs/definitions/part/vehicle-chassis-panel.md
new file mode 100644
index 0000000..e4000c5
--- /dev/null
+++ b/content/docs/definitions/part/vehicle-chassis-panel.md
@@ -0,0 +1,33 @@
+---
+title: Part - Vehicle Chassis Panel
+linkTitle: Vehicle Chassis Panel
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Reinforced fiberglass panels.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|20.0 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Manufacture vehicle chassis panel](/docs/definitions/process/manufacture-vehicle-chassis-panel)
+- [Manufacture vehicle chassis panel Alt #1](/docs/definitions/process/manufacture-vehicle-chassis-panel-alt--1)
+
+## Used by Manufacturing Process
+
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/vehicle-frame-large.md b/content/docs/definitions/part/vehicle-frame-large.md
new file mode 100644
index 0000000..a4267a1
--- /dev/null
+++ b/content/docs/definitions/part/vehicle-frame-large.md
@@ -0,0 +1,31 @@
+---
+title: Part - Vehicle Frame large
+linkTitle: Vehicle Frame large
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Heavy steel frame
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|50.0 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Make large vehicle frame](/docs/definitions/process/make-large-vehicle-frame)
+
+## Used by Manufacturing Process
+
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/vehicle-frame-small.md b/content/docs/definitions/part/vehicle-frame-small.md
new file mode 100644
index 0000000..15dcaef
--- /dev/null
+++ b/content/docs/definitions/part/vehicle-frame-small.md
@@ -0,0 +1,31 @@
+---
+title: Part - Vehicle Frame small
+linkTitle: Vehicle Frame small
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Small steel frame
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|15.0 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Make small vehicle frame](/docs/definitions/process/make-small-vehicle-frame)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/ventilation-fan.md b/content/docs/definitions/part/ventilation-fan.md
new file mode 100644
index 0000000..d468cf8
--- /dev/null
+++ b/content/docs/definitions/part/ventilation-fan.md
@@ -0,0 +1,33 @@
+---
+title: Part - Ventilation fan
+linkTitle: Ventilation fan
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.2 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Manufacture ventilation fan](/docs/definitions/process/manufacture-ventilation-fan)
+
+## Used by Manufacturing Process
+
+- [Make heat pump](/docs/definitions/process/make-heat-pump)
+- [Manufacture kitchen stove](/docs/definitions/process/manufacture-kitchen-stove)
+- [Manufacture autoclave](/docs/definitions/process/manufacture-autoclave)
+- [Make mushroom containment kit](/docs/definitions/process/make-mushroom-containment-kit)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/water-pump-large.md b/content/docs/definitions/part/water-pump-large.md
new file mode 100644
index 0000000..88cd3b3
--- /dev/null
+++ b/content/docs/definitions/part/water-pump-large.md
@@ -0,0 +1,26 @@
+---
+title: Part - Water Pump large
+linkTitle: Water Pump large
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|5.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make large water pump](/docs/definitions/process/make-large-water-pump)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/water-pump-small.md b/content/docs/definitions/part/water-pump-small.md
new file mode 100644
index 0000000..57fa10a
--- /dev/null
+++ b/content/docs/definitions/part/water-pump-small.md
@@ -0,0 +1,31 @@
+---
+title: Part - Water Pump small
+linkTitle: Water Pump small
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|1.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make small water pump](/docs/definitions/process/make-small-water-pump)
+
+## Used by Manufacturing Process
+
+- [Manufacture refrigerator](/docs/definitions/process/manufacture-refrigerator)
+- [Manufacture autoclave](/docs/definitions/process/manufacture-autoclave)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/water-tank.md b/content/docs/definitions/part/water-tank.md
new file mode 100644
index 0000000..5c7e5fa
--- /dev/null
+++ b/content/docs/definitions/part/water-tank.md
@@ -0,0 +1,34 @@
+---
+title: Part - Water Tank
+linkTitle: Water Tank
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.0 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Manufacture water tank](/docs/definitions/process/manufacture-water-tank)
+
+## Used by Manufacturing Process
+
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/wheel-small.md b/content/docs/definitions/part/wheel-small.md
new file mode 100644
index 0000000..6dfc3b7
--- /dev/null
+++ b/content/docs/definitions/part/wheel-small.md
@@ -0,0 +1,29 @@
+---
+title: Part - Wheel small
+linkTitle: Wheel small
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|4.45 kg|
+|Type:|Vehicle|
+
+## Made by Manufacturing Process
+
+- [Make small wheels](/docs/definitions/process/make-small-wheels)
+
+## Used by Manufacturing Process
+
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/winch.md b/content/docs/definitions/part/winch.md
new file mode 100644
index 0000000..5661689
--- /dev/null
+++ b/content/docs/definitions/part/winch.md
@@ -0,0 +1,31 @@
+---
+title: Part - Winch
+linkTitle: Winch
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|75.0 kg|
+|Type:|Tool|
+
+## Made by Manufacturing Process
+
+- [Make winch](/docs/definitions/process/make-winch)
+
+## Used by Manufacturing Process
+
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/wind-turbine-blade.md b/content/docs/definitions/part/wind-turbine-blade.md
new file mode 100644
index 0000000..ab0e6a5
--- /dev/null
+++ b/content/docs/definitions/part/wind-turbine-blade.md
@@ -0,0 +1,27 @@
+---
+title: Part - Wind Turbine Blade
+linkTitle: Wind Turbine Blade
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Blade for a wind turbine.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|2.0 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Fabricate turbine blade](/docs/definitions/process/fabricate-turbine-blade)
+- [Fabricate turbine blade Alt #1](/docs/definitions/process/fabricate-turbine-blade-alt--1)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/window.md b/content/docs/definitions/part/window.md
new file mode 100644
index 0000000..dc9c597
--- /dev/null
+++ b/content/docs/definitions/part/window.md
@@ -0,0 +1,31 @@
+---
+title: Part - Window
+linkTitle: Window
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|25.0 kg|
+|Type:|Construction|
+
+## Made by Manufacturing Process
+
+- [Manufacture window](/docs/definitions/process/manufacture-window)
+
+## Used by Manufacturing Process
+
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/wire-connector.md b/content/docs/definitions/part/wire-connector.md
new file mode 100644
index 0000000..f7ec77c
--- /dev/null
+++ b/content/docs/definitions/part/wire-connector.md
@@ -0,0 +1,97 @@
+---
+title: Part - Wire Connector
+linkTitle: Wire Connector
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+no description available.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.005 kg|
+|Type:|Electrical|
+
+## Made by Manufacturing Process
+
+- [Make wire connector](/docs/definitions/process/make-wire-connector)
+- [Make copper wire connector](/docs/definitions/process/make-copper-wire-connector)
+
+## Used by Manufacturing Process
+
+- [Make satellite dish](/docs/definitions/process/make-satellite-dish)
+- [Make satellite dish Alt #1](/docs/definitions/process/make-satellite-dish-alt--1)
+- [Make radio antenna](/docs/definitions/process/make-radio-antenna)
+- [Make radio antenna Alt #1](/docs/definitions/process/make-radio-antenna-alt--1)
+- [Make suit heating unit](/docs/definitions/process/make-suit-heating-unit)
+- [Make EVA helmet](/docs/definitions/process/make-eva-helmet)
+- [Make EVA helmet Alt #1](/docs/definitions/process/make-eva-helmet-alt--1)
+- [Make EVA helmet Alt #2](/docs/definitions/process/make-eva-helmet-alt--2)
+- [Make EVA backpack](/docs/definitions/process/make-eva-backpack)
+- [Make EVA backpack Alt #1](/docs/definitions/process/make-eva-backpack-alt--1)
+- [Make EVA backpack Alt #2](/docs/definitions/process/make-eva-backpack-alt--2)
+- [Make EVA antenna](/docs/definitions/process/make-eva-antenna)
+- [Make EVA antenna Alt #1](/docs/definitions/process/make-eva-antenna-alt--1)
+- [Assemble EVA suit](/docs/definitions/process/assemble-eva-suit)
+- [Manufacture turbine generator](/docs/definitions/process/manufacture-turbine-generator)
+- [Manufacture Stepper Motor](/docs/definitions/process/manufacture-stepper-motor)
+- [Manufacture 5 kW Motor](/docs/definitions/process/manufacture-5-kw-motor)
+- [Manufacture 10 kW Motor](/docs/definitions/process/manufacture-10-kw-motor)
+- [Manufacture 30 kW Motor](/docs/definitions/process/manufacture-30-kw-motor)
+- [Manufacture rover control panel](/docs/definitions/process/manufacture-rover-control-panel)
+- [Manufacture rover control panel Alt #1](/docs/definitions/process/manufacture-rover-control-panel-alt--1)
+- [Manufacture rover control panel Alt #2](/docs/definitions/process/manufacture-rover-control-panel-alt--2)
+- [Manufacture utility vehicle control panel](/docs/definitions/process/manufacture-utility-vehicle-control-panel)
+- [Manufacture utility vehicle control panel Alt #1](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1)
+- [Manufacture utility vehicle control panel Alt #2](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2)
+- [Make fuel pump](/docs/definitions/process/make-fuel-pump)
+- [Make oxygen pump](/docs/definitions/process/make-oxygen-pump)
+- [Make carbon dioxide pump](/docs/definitions/process/make-carbon-dioxide-pump)
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+- [Make heating element](/docs/definitions/process/make-heating-element)
+- [Manufacture pneumatic drill](/docs/definitions/process/manufacture-pneumatic-drill)
+- [Assemble backhoe](/docs/definitions/process/assemble-backhoe)
+- [Manufacture crane boom](/docs/definitions/process/manufacture-crane-boom)
+- [Fabricate solar panel](/docs/definitions/process/fabricate-solar-panel)
+- [Manufacture battery module](/docs/definitions/process/manufacture-battery-module)
+- [Manufacture battery module Alt #1](/docs/definitions/process/manufacture-battery-module-alt--1)
+- [Manufacture EVA battery](/docs/definitions/process/manufacture-eva-battery)
+- [Manufacture EVA battery Alt #1](/docs/definitions/process/manufacture-eva-battery-alt--1)
+- [Make large water pump](/docs/definitions/process/make-large-water-pump)
+- [Make small water pump](/docs/definitions/process/make-small-water-pump)
+- [Make heat pump](/docs/definitions/process/make-heat-pump)
+- [Make air compressor](/docs/definitions/process/make-air-compressor)
+- [Manufacture food blender](/docs/definitions/process/manufacture-food-blender)
+- [Manufacture oven](/docs/definitions/process/manufacture-oven)
+- [Manufacture microwave](/docs/definitions/process/manufacture-microwave)
+- [Manufacture ventilation fan](/docs/definitions/process/manufacture-ventilation-fan)
+- [Manufacture kitchen stove](/docs/definitions/process/manufacture-kitchen-stove)
+- [Manufacture refrigerator](/docs/definitions/process/manufacture-refrigerator)
+- [Manufacture autoclave](/docs/definitions/process/manufacture-autoclave)
+- [Make mushroom containment kit](/docs/definitions/process/make-mushroom-containment-kit)
+- [Manufacture navigation circuit board](/docs/definitions/process/manufacture-navigation-circuit-board)
+- [Manufacture communications circuit board](/docs/definitions/process/manufacture-communications-circuit-board)
+- [Make light emitting diode kit](/docs/definitions/process/make-light-emitting-diode-kit)
+- [Make flood light](/docs/definitions/process/make-flood-light)
+- [Manufacture carbon dioxide laser](/docs/definitions/process/manufacture-carbon-dioxide-laser)
+- [Manufacture helium neon laser](/docs/definitions/process/manufacture-helium-neon-laser)
+- [Manufacture SLS 3D Printer](/docs/definitions/process/manufacture-sls-3d-printer)
+- [Manufacture pathogen filter](/docs/definitions/process/manufacture-pathogen-filter)
+- [Manufacture transformer](/docs/definitions/process/manufacture-transformer)
+- [Manufacture electrostatic precipitator](/docs/definitions/process/manufacture-electrostatic-precipitator)
+- [Make methane fuel cell stack](/docs/definitions/process/make-methane-fuel-cell-stack)
+- [Make methanol fuel cell stack](/docs/definitions/process/make-methanol-fuel-cell-stack)
+- [Manufacture turbopump](/docs/definitions/process/manufacture-turbopump)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/work-gloves.md b/content/docs/definitions/part/work-gloves.md
new file mode 100644
index 0000000..121dfe4
--- /dev/null
+++ b/content/docs/definitions/part/work-gloves.md
@@ -0,0 +1,27 @@
+---
+title: Part - Work gloves
+linkTitle: Work gloves
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+a pair of utility work gloves for medium to heavy use.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|0.05 kg|
+|Type:|Utility|
+
+## Made by Manufacturing Process
+
+- [Make work gloves](/docs/definitions/process/make-work-gloves)
+- [Make work gloves Alt #1](/docs/definitions/process/make-work-gloves-alt--1)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/part/x-ray-fluorescene-spectrometer.md b/content/docs/definitions/part/x-ray-fluorescene-spectrometer.md
new file mode 100644
index 0000000..ee4f9be
--- /dev/null
+++ b/content/docs/definitions/part/x-ray-fluorescene-spectrometer.md
@@ -0,0 +1,23 @@
+---
+title: Part - X-Ray Fluorescene Spectrometer
+linkTitle: X-Ray Fluorescene Spectrometer
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+This portable apparatus is used to perform non-destructive chemical analysis of rocks, minerals, sediments and fluids.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Mass:|8.0 kg|
+|Type:|Instrument|
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/_index.md b/content/docs/definitions/process/_index.md
new file mode 100644
index 0000000..249fd24
--- /dev/null
+++ b/content/docs/definitions/process/_index.md
@@ -0,0 +1,301 @@
+---
+title: Manufacturing Process
+description: Manufacturing Processes that consume resoruce to create new resources.
+---
+
+
+
+
+{{< alert color="success" >}}These can be changed via the XML file _manufacturing.xml_. See [XML Files](/docs/guide/xml-files/){{< /alert >}}
+
+
+Grouped by Name.
+
+### A {#A-a}
+
+- [Assemble Cargo Drone](../process/assemble-cargo-drone)
+- [Assemble Delivery Drone](../process/assemble-delivery-drone)
+- [Assemble EVA suit](../process/assemble-eva-suit)
+- [Assemble LUV](../process/assemble-luv)
+- [Assemble backhoe](../process/assemble-backhoe)
+- [Assemble cargo rover](../process/assemble-cargo-rover)
+- [Assemble drilling rig](../process/assemble-drilling-rig)
+- [Assemble explorer rover](../process/assemble-explorer-rover)
+- [Assemble transport rover](../process/assemble-transport-rover)
+
+### B {#A-b}
+
+- [Bake regolith brick](../process/bake-regolith-brick)
+- [Bake sand brick](../process/bake-sand-brick)
+
+### C {#A-c}
+
+- [Cast aluminum ingot](../process/cast-aluminum-ingot)
+- [Cast aluminum ingot (large batch)](../process/cast-aluminum-ingot--large-batch-)
+- [Cast iron ingot](../process/cast-iron-ingot)
+
+### D {#A-d}
+
+- [Do carbon monoxide iron reduction](../process/do-carbon-monoxide-iron-reduction)
+- [Do hydrogen iron reduction](../process/do-hydrogen-iron-reduction)
+- [Do plastic sheet extrusion](../process/do-plastic-sheet-extrusion)
+- [Do potassium chloride electrolysis](../process/do-potassium-chloride-electrolysis)
+- [Do steel cable winding](../process/do-steel-cable-winding)
+- [Do steel ingot alloying](../process/do-steel-ingot-alloying)
+- [Do steel ingot nickel alloying](../process/do-steel-ingot-nickel-alloying)
+- [Draw aluminum wire](../process/draw-aluminum-wire)
+- [Draw copper wire](../process/draw-copper-wire)
+- [Draw optical fiber glass](../process/draw-optical-fiber-glass)
+- [Draw steel wire](../process/draw-steel-wire)
+- [Dry potash into potassium crystal](../process/dry-potash-into-potassium-crystal)
+
+### F {#A-f}
+
+- [Fabricate glass tube](../process/fabricate-glass-tube)
+- [Fabricate semiconductor wafer](../process/fabricate-semiconductor-wafer)
+- [Fabricate solar panel](../process/fabricate-solar-panel)
+- [Fabricate solar parabolic mirror](../process/fabricate-solar-parabolic-mirror)
+- [Fabricate turbine blade](../process/fabricate-turbine-blade)
+- [Fabricate turbine blade Alt #1](../process/fabricate-turbine-blade-alt--1)
+
+### G {#A-g}
+
+- [gasify sugarcane and biomass into methanol](../process/gasify-sugarcane-and-biomass-into-methanol)
+
+### M {#A-m}
+
+- [Make CMOS sensor](../process/make-cmos-sensor)
+- [Make EVA antenna](../process/make-eva-antenna)
+- [Make EVA antenna Alt #1](../process/make-eva-antenna-alt--1)
+- [Make EVA backpack](../process/make-eva-backpack)
+- [Make EVA backpack Alt #1](../process/make-eva-backpack-alt--1)
+- [Make EVA backpack Alt #2](../process/make-eva-backpack-alt--2)
+- [Make EVA boots](../process/make-eva-boots)
+- [Make EVA boots Alt #1](../process/make-eva-boots-alt--1)
+- [Make EVA gloves](../process/make-eva-gloves)
+- [Make EVA gloves Alt #1](../process/make-eva-gloves-alt--1)
+- [Make EVA helmet](../process/make-eva-helmet)
+- [Make EVA helmet Alt #1](../process/make-eva-helmet-alt--1)
+- [Make EVA helmet Alt #2](../process/make-eva-helmet-alt--2)
+- [Make EVA pads](../process/make-eva-pads)
+- [Make EVA pads Alt #1](../process/make-eva-pads-alt--1)
+- [Make Garment](../process/make-garment)
+- [Make Garment Alt #1](../process/make-garment-alt--1)
+- [Make Liquid Cooling Garment](../process/make-liquid-cooling-garment)
+- [Make Liquid Cooling Garment Alt #1](../process/make-liquid-cooling-garment-alt--1)
+- [Make Liquid Cooling Garment Alt #2](../process/make-liquid-cooling-garment-alt--2)
+- [Make Liquid Cooling Garment Alt #3](../process/make-liquid-cooling-garment-alt--3)
+- [Make Metal Oxide Varistor](../process/make-metal-oxide-varistor)
+- [Make Metal Oxide Varistor Alt #1](../process/make-metal-oxide-varistor-alt--1)
+- [Make Nitrates](../process/make-nitrates)
+- [Make Nitrites](../process/make-nitrites)
+- [Make Paraffin Composites](../process/make-paraffin-composites)
+- [Make Paraffin Composites Alt #1](../process/make-paraffin-composites-alt--1)
+- [Make Polypropylene rope](../process/make-polypropylene-rope)
+- [Make Power Panel](../process/make-power-panel)
+- [Make Power Panel Alt #1](../process/make-power-panel-alt--1)
+- [Make Silicone Elastomer](../process/make-silicone-elastomer)
+- [Make Surge Protector](../process/make-surge-protector)
+- [Make Surge Protector Alt #1](../process/make-surge-protector-alt--1)
+- [Make Thermoplastic Elastomer](../process/make-thermoplastic-elastomer)
+- [Make activated charcoal](../process/make-activated-charcoal)
+- [Make aerogel tile](../process/make-aerogel-tile)
+- [Make air compressor](../process/make-air-compressor)
+- [Make airleak patch](../process/make-airleak-patch)
+- [Make aluminum power cable](../process/make-aluminum-power-cable)
+- [Make aluminum sheet](../process/make-aluminum-sheet)
+- [Make basket](../process/make-basket)
+- [Make basket Alt #1](../process/make-basket-alt--1)
+- [Make biosensor](../process/make-biosensor)
+- [Make biosensor Alt #1](../process/make-biosensor-alt--1)
+- [Make bleaching chemical for paper making](../process/make-bleaching-chemical-for-paper-making)
+- [Make bleaching chemical for paper making (large batch)](../process/make-bleaching-chemical-for-paper-making--large-batch-)
+- [Make carbon dioxide pump](../process/make-carbon-dioxide-pump)
+- [Make ceramic electrolyte](../process/make-ceramic-electrolyte)
+- [Make charcoal filter](../process/make-charcoal-filter)
+- [Make clear glass bottle](../process/make-clear-glass-bottle)
+- [Make condenser coil](../process/make-condenser-coil)
+- [Make coolant bottle](../process/make-coolant-bottle)
+- [Make copper electrical wire](../process/make-copper-electrical-wire)
+- [Make copper pipe](../process/make-copper-pipe)
+- [Make copper power cable](../process/make-copper-power-cable)
+- [Make copper sheet](../process/make-copper-sheet)
+- [Make copper wire connector](../process/make-copper-wire-connector)
+- [Make coveralls](../process/make-coveralls)
+- [Make coveralls Alt #1](../process/make-coveralls-alt--1)
+- [Make crate](../process/make-crate)
+- [Make crate Alt #1](../process/make-crate-alt--1)
+- [Make crop fertilizers](../process/make-crop-fertilizers)
+- [Make crop fertilizers Alt #1](../process/make-crop-fertilizers-alt--1)
+- [Make crop fertilizers Alt #2](../process/make-crop-fertilizers-alt--2)
+- [Make crop fertilizers Alt #3](../process/make-crop-fertilizers-alt--3)
+- [Make crop fertilizers Alt #4](../process/make-crop-fertilizers-alt--4)
+- [Make crop fertilizers Alt #5](../process/make-crop-fertilizers-alt--5)
+- [Make crop fertilizers Alt #6](../process/make-crop-fertilizers-alt--6)
+- [Make crop fertilizers Alt #7](../process/make-crop-fertilizers-alt--7)
+- [Make crop fertilizers Alt #8](../process/make-crop-fertilizers-alt--8)
+- [Make crop fertilizers Alt #9](../process/make-crop-fertilizers-alt--9)
+- [Make decontamination kit](../process/make-decontamination-kit)
+- [Make electrical wire](../process/make-electrical-wire)
+- [Make fire extinguisher](../process/make-fire-extinguisher)
+- [Make flood light](../process/make-flood-light)
+- [Make fuel pump](../process/make-fuel-pump)
+- [Make gas canister](../process/make-gas-canister)
+- [Make gasket](../process/make-gasket)
+- [Make heat pump](../process/make-heat-pump)
+- [Make heating element](../process/make-heating-element)
+- [Make helmet visor](../process/make-helmet-visor)
+- [Make iron pipe](../process/make-iron-pipe)
+- [Make iron sheet](../process/make-iron-sheet)
+- [Make large vehicle frame](../process/make-large-vehicle-frame)
+- [Make large water pump](../process/make-large-water-pump)
+- [Make light emitting diode kit](../process/make-light-emitting-diode-kit)
+- [Make lubricant bottle](../process/make-lubricant-bottle)
+- [Make methane fuel cell stack](../process/make-methane-fuel-cell-stack)
+- [Make methane solid oxide fuel cells](../process/make-methane-solid-oxide-fuel-cells)
+- [Make methanol fuel cell stack](../process/make-methanol-fuel-cell-stack)
+- [Make methanol fuel cells](../process/make-methanol-fuel-cells)
+- [Make mushroom containment kit](../process/make-mushroom-containment-kit)
+- [Make oxygen pump](../process/make-oxygen-pump)
+- [Make paper, napkin and toilet tissue from pulp](../process/make-paper--napkin-and-toilet-tissue-from-pulp)
+- [Make paper, napkin and toilet tissue from pulp (large batch)](../process/make-paper--napkin-and-toilet-tissue-from-pulp--large-batch-)
+- [Make pipe wrench](../process/make-pipe-wrench)
+- [Make plastic barrel](../process/make-plastic-barrel)
+- [Make plastic barrel Alt #1](../process/make-plastic-barrel-alt--1)
+- [Make plastic bottle](../process/make-plastic-bottle)
+- [Make plastic bottle Alt #1](../process/make-plastic-bottle-alt--1)
+- [Make plastic bottle Alt #2](../process/make-plastic-bottle-alt--2)
+- [Make plastic pipe](../process/make-plastic-pipe)
+- [Make plastic pipe Alt #1](../process/make-plastic-pipe-alt--1)
+- [Make plastic specimen box](../process/make-plastic-specimen-box)
+- [Make plastic specimen box Alt #1](../process/make-plastic-specimen-box-alt--1)
+- [Make plastic tubing](../process/make-plastic-tubing)
+- [Make pot](../process/make-pot)
+- [Make pot Alt #1](../process/make-pot-alt--1)
+- [Make pressure suit](../process/make-pressure-suit)
+- [Make pressure suit Alt #1](../process/make-pressure-suit-alt--1)
+- [Make pressure suit Alt #2](../process/make-pressure-suit-alt--2)
+- [Make pressure suit Alt #3](../process/make-pressure-suit-alt--3)
+- [Make pulp from cane fiber and crop waste](../process/make-pulp-from-cane-fiber-and-crop-waste)
+- [Make pulp from cane fiber and crop waste (large batch)](../process/make-pulp-from-cane-fiber-and-crop-waste--large-batch-)
+- [Make radio antenna](../process/make-radio-antenna)
+- [Make radio antenna Alt #1](../process/make-radio-antenna-alt--1)
+- [Make rover wheels](../process/make-rover-wheels)
+- [Make satellite dish](../process/make-satellite-dish)
+- [Make satellite dish Alt #1](../process/make-satellite-dish-alt--1)
+- [Make sheet glass](../process/make-sheet-glass)
+- [Make small vehicle frame](../process/make-small-vehicle-frame)
+- [Make small water pump](../process/make-small-water-pump)
+- [Make small wheels](../process/make-small-wheels)
+- [Make socket wrench](../process/make-socket-wrench)
+- [Make sodium hypochlorite for bleaching and sanitation](../process/make-sodium-hypochlorite-for-bleaching-and-sanitation)
+- [Make sodium hypochlorite for bleaching and sanitation (large batch)](../process/make-sodium-hypochlorite-for-bleaching-and-sanitation--large-batch-)
+- [Make spark plug](../process/make-spark-plug)
+- [Make steel canister](../process/make-steel-canister)
+- [Make steel pipe](../process/make-steel-pipe)
+- [Make steel sheet](../process/make-steel-sheet)
+- [Make steel valve](../process/make-steel-valve)
+- [Make suit heating unit](../process/make-suit-heating-unit)
+- [Make timing belt](../process/make-timing-belt)
+- [Make wheelbarrow](../process/make-wheelbarrow)
+- [Make winch](../process/make-winch)
+- [Make wire connector](../process/make-wire-connector)
+- [Make work gloves](../process/make-work-gloves)
+- [Make work gloves Alt #1](../process/make-work-gloves-alt--1)
+- [Manufacture 10 kW Motor](../process/manufacture-10-kw-motor)
+- [Manufacture 30 kW Motor](../process/manufacture-30-kw-motor)
+- [Manufacture 5 kW Motor](../process/manufacture-5-kw-motor)
+- [Manufacture EVA battery](../process/manufacture-eva-battery)
+- [Manufacture EVA battery Alt #1](../process/manufacture-eva-battery-alt--1)
+- [Manufacture SLS 3D Printer](../process/manufacture-sls-3d-printer)
+- [Manufacture Stepper Motor](../process/manufacture-stepper-motor)
+- [Manufacture autoclave](../process/manufacture-autoclave)
+- [Manufacture bag](../process/manufacture-bag)
+- [Manufacture battery module](../process/manufacture-battery-module)
+- [Manufacture battery module Alt #1](../process/manufacture-battery-module-alt--1)
+- [Manufacture bore drill bit](../process/manufacture-bore-drill-bit)
+- [Manufacture bore drill pipe](../process/manufacture-bore-drill-pipe)
+- [Manufacture bulldozer blade](../process/manufacture-bulldozer-blade)
+- [Manufacture capacitors](../process/manufacture-capacitors)
+- [Manufacture carbon dioxide laser](../process/manufacture-carbon-dioxide-laser)
+- [Manufacture communications circuit board](../process/manufacture-communications-circuit-board)
+- [Manufacture crane boom](../process/manufacture-crane-boom)
+- [Manufacture diodes](../process/manufacture-diodes)
+- [Manufacture electrostatic precipitator](../process/manufacture-electrostatic-precipitator)
+- [Manufacture flexible hose](../process/manufacture-flexible-hose)
+- [Manufacture food blender](../process/manufacture-food-blender)
+- [Manufacture fuel tank](../process/manufacture-fuel-tank)
+- [Manufacture gas tank](../process/manufacture-gas-tank)
+- [Manufacture helium neon laser](../process/manufacture-helium-neon-laser)
+- [Manufacture insulation board](../process/manufacture-insulation-board)
+- [Manufacture kitchen stove](../process/manufacture-kitchen-stove)
+- [Manufacture large air duct](../process/manufacture-large-air-duct)
+- [Manufacture large bag](../process/manufacture-large-bag)
+- [Manufacture light emitting diode bulb](../process/manufacture-light-emitting-diode-bulb)
+- [Manufacture logic board](../process/manufacture-logic-board)
+- [Manufacture microcontroller](../process/manufacture-microcontroller)
+- [Manufacture microwave](../process/manufacture-microwave)
+- [Manufacture navigation circuit board](../process/manufacture-navigation-circuit-board)
+- [Manufacture optical cable](../process/manufacture-optical-cable)
+- [Manufacture optical lens](../process/manufacture-optical-lens)
+- [Manufacture oven](../process/manufacture-oven)
+- [Manufacture pathogen filter](../process/manufacture-pathogen-filter)
+- [Manufacture plasma cutter](../process/manufacture-plasma-cutter)
+- [Manufacture pneumatic drill](../process/manufacture-pneumatic-drill)
+- [Manufacture polycarbonate roofing](../process/manufacture-polycarbonate-roofing)
+- [Manufacture propeller](../process/manufacture-propeller)
+- [Manufacture refrigerator](../process/manufacture-refrigerator)
+- [Manufacture resistors](../process/manufacture-resistors)
+- [Manufacture rover control panel](../process/manufacture-rover-control-panel)
+- [Manufacture rover control panel Alt #1](../process/manufacture-rover-control-panel-alt--1)
+- [Manufacture rover control panel Alt #2](../process/manufacture-rover-control-panel-alt--2)
+- [Manufacture rover windshield](../process/manufacture-rover-windshield)
+- [Manufacture soil compactor](../process/manufacture-soil-compactor)
+- [Manufacture steel post](../process/manufacture-steel-post)
+- [Manufacture steel truss](../process/manufacture-steel-truss)
+- [Manufacture thermal bottle](../process/manufacture-thermal-bottle)
+- [Manufacture transformer](../process/manufacture-transformer)
+- [Manufacture turbine generator](../process/manufacture-turbine-generator)
+- [Manufacture turbopump](../process/manufacture-turbopump)
+- [Manufacture utility vehicle control panel](../process/manufacture-utility-vehicle-control-panel)
+- [Manufacture utility vehicle control panel Alt #1](../process/manufacture-utility-vehicle-control-panel-alt--1)
+- [Manufacture utility vehicle control panel Alt #2](../process/manufacture-utility-vehicle-control-panel-alt--2)
+- [Manufacture vehicle chassis panel](../process/manufacture-vehicle-chassis-panel)
+- [Manufacture vehicle chassis panel Alt #1](../process/manufacture-vehicle-chassis-panel-alt--1)
+- [Manufacture ventilation fan](../process/manufacture-ventilation-fan)
+- [Manufacture water tank](../process/manufacture-water-tank)
+- [Manufacture window](../process/manufacture-window)
+
+### P {#A-p}
+
+- [Produce Dimethyl Terephthalate](../process/produce-dimethyl-terephthalate)
+- [Produce Polyester Resin](../process/produce-polyester-resin)
+- [Produce Terephthalic Acid](../process/produce-terephthalic-acid)
+- [Produce bisphenol-a](../process/produce-bisphenol-a)
+- [Produce ethylene glycol](../process/produce-ethylene-glycol)
+- [Produce petri dish](../process/produce-petri-dish)
+- [Produce polycarbonate resin](../process/produce-polycarbonate-resin)
+- [Produce polyester fiber](../process/produce-polyester-fiber)
+- [Produce polyurethane](../process/produce-polyurethane)
+- [Purify rock salt into compounds](../process/purify-rock-salt-into-compounds)
+
+### R {#A-r}
+
+- [Recycle aluminum scrap](../process/recycle-aluminum-scrap)
+- [Recycle steel scrap](../process/recycle-steel-scrap)
+- [Roll aluminized mylar foil](../process/roll-aluminized-mylar-foil)
+- [Roll aluminum sheet](../process/roll-aluminum-sheet)
+- [Roll heat pipe from aluminum sheet](../process/roll-heat-pipe-from-aluminum-sheet)
+- [Roll heat pipe from copper sheet](../process/roll-heat-pipe-from-copper-sheet)
+- [Roll iron sheet](../process/roll-iron-sheet)
+- [Roll mylar film](../process/roll-mylar-film)
+- [Roll mylar film Alt #1](../process/roll-mylar-film-alt--1)
+- [Roll steel sheet](../process/roll-steel-sheet)
+
+### W {#A-w}
+
+- [Weave fiberglass cloth](../process/weave-fiberglass-cloth)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/process/assemble-backhoe.md b/content/docs/definitions/process/assemble-backhoe.md
new file mode 100644
index 0000000..07a1d5b
--- /dev/null
+++ b/content/docs/definitions/process/assemble-backhoe.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Assemble backhoe
+linkTitle: Assemble backhoe
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|400.0 millisols|
+|Work Level:|400.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[steel wire](/docs/definitions/part/steel-wire)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[backhoe](/docs/definitions/part/backhoe)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/assemble-cargo-drone.md b/content/docs/definitions/process/assemble-cargo-drone.md
new file mode 100644
index 0000000..91233f7
--- /dev/null
+++ b/content/docs/definitions/process/assemble-cargo-drone.md
@@ -0,0 +1,56 @@
+---
+title: Manufacturing Process - Assemble Cargo Drone
+linkTitle: Assemble Cargo Drone
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|750.0 millisols|
+|Work Level:|1000.0 millisols|
+|Power Required:|2.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[CMOS sensor](/docs/definitions/part/cmos-sensor)|Part|8|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|2.0 kg|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|3|
+|[battery module](/docs/definitions/part/battery-module)|Part|1|
+|[communications circuit board](/docs/definitions/part/communications-circuit-board)|Part|1|
+|[drone chassis panel](/docs/definitions/part/drone-chassis-panel)|Part|3|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|10|
+|[fuel pump](/docs/definitions/part/fuel-pump)|Part|1|
+|[fuel tank](/docs/definitions/part/fuel-tank)|Part|1|
+|[gas tank](/docs/definitions/part/gas-tank)|Part|1|
+|[methane fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|2|
+|[navigation circuit board](/docs/definitions/part/navigation-circuit-board)|Part|1|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|2|
+|[optical lens](/docs/definitions/part/optical-lens)|Part|2|
+|[plastic pipe](/docs/definitions/part/plastic-pipe)|Part|1|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|2|
+|[propeller](/docs/definitions/part/propeller)|Part|4|
+|[radio antenna](/docs/definitions/part/radio-antenna)|Part|1|
+|[vehicle frame small](/docs/definitions/part/vehicle-frame-small)|Part|1|
+|[water tank](/docs/definitions/part/water-tank)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[cargo drone](/docs/definitions/vehicle/cargo-drone)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/assemble-cargo-rover.md b/content/docs/definitions/process/assemble-cargo-rover.md
new file mode 100644
index 0000000..aa897ce
--- /dev/null
+++ b/content/docs/definitions/process/assemble-cargo-rover.md
@@ -0,0 +1,63 @@
+---
+title: Manufacturing Process - Assemble cargo rover
+linkTitle: Assemble cargo rover
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|1000.0 millisols|
+|Work Level:|2500.0 millisols|
+|Power Required:|6.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[CMOS sensor](/docs/definitions/part/cmos-sensor)|Part|8|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|5|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|3.0 kg|
+|[aerogel tile](/docs/definitions/part/aerogel-tile)|Part|120|
+|[battery module](/docs/definitions/part/battery-module)|Part|5|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|20|
+|[fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[fuel tank](/docs/definitions/part/fuel-tank)|Part|4|
+|[gas tank](/docs/definitions/part/gas-tank)|Part|4|
+|[lubricant bottle](/docs/definitions/part/lubricant-bottle)|Part|5|
+|[methanol fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|6|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|10|
+|[oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|5|
+|[plastic pipe](/docs/definitions/part/plastic-pipe)|Part|5|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|5|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|30.0 kg|
+|[radio antenna](/docs/definitions/part/radio-antenna)|Part|1|
+|[rover control panel](/docs/definitions/part/rover-control-panel)|Part|1|
+|[rover wheel](/docs/definitions/part/rover-wheel)|Part|18|
+|[rover windshield](/docs/definitions/part/rover-windshield)|Part|1|
+|[satellite dish](/docs/definitions/part/satellite-dish)|Part|1|
+|[steel pipe](/docs/definitions/part/steel-pipe)|Part|5|
+|[vehicle chassis panel](/docs/definitions/part/vehicle-chassis-panel)|Part|12|
+|[vehicle frame large](/docs/definitions/part/vehicle-frame-large)|Part|5|
+|[water tank](/docs/definitions/part/water-tank)|Part|4|
+|[winch](/docs/definitions/part/winch)|Part|1|
+|[window](/docs/definitions/part/window)|Part|2|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|20|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[cargo rover](/docs/definitions/vehicle/cargo-rover)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/assemble-delivery-drone.md b/content/docs/definitions/process/assemble-delivery-drone.md
new file mode 100644
index 0000000..d11cf81
--- /dev/null
+++ b/content/docs/definitions/process/assemble-delivery-drone.md
@@ -0,0 +1,56 @@
+---
+title: Manufacturing Process - Assemble Delivery Drone
+linkTitle: Assemble Delivery Drone
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|750.0 millisols|
+|Work Level:|750.0 millisols|
+|Power Required:|2.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[CMOS sensor](/docs/definitions/part/cmos-sensor)|Part|8|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|2.0 kg|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|2|
+|[battery module](/docs/definitions/part/battery-module)|Part|1|
+|[communications circuit board](/docs/definitions/part/communications-circuit-board)|Part|1|
+|[drone chassis panel](/docs/definitions/part/drone-chassis-panel)|Part|2|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|10|
+|[fuel pump](/docs/definitions/part/fuel-pump)|Part|1|
+|[fuel tank](/docs/definitions/part/fuel-tank)|Part|1|
+|[gas tank](/docs/definitions/part/gas-tank)|Part|1|
+|[methanol fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|2|
+|[navigation circuit board](/docs/definitions/part/navigation-circuit-board)|Part|1|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|2|
+|[optical lens](/docs/definitions/part/optical-lens)|Part|2|
+|[plastic pipe](/docs/definitions/part/plastic-pipe)|Part|1|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|2|
+|[propeller](/docs/definitions/part/propeller)|Part|4|
+|[radio antenna](/docs/definitions/part/radio-antenna)|Part|1|
+|[vehicle frame small](/docs/definitions/part/vehicle-frame-small)|Part|1|
+|[water tank](/docs/definitions/part/water-tank)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[delivery drone](/docs/definitions/vehicle/delivery-drone)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/assemble-drilling-rig.md b/content/docs/definitions/process/assemble-drilling-rig.md
new file mode 100644
index 0000000..25d7fff
--- /dev/null
+++ b/content/docs/definitions/process/assemble-drilling-rig.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Assemble drilling rig
+linkTitle: Assemble drilling rig
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|0.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|1|
+|[steel cable](/docs/definitions/part/steel-cable)|Part|4|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[drilling rig](/docs/definitions/part/drilling-rig)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/assemble-eva-suit.md b/content/docs/definitions/process/assemble-eva-suit.md
new file mode 100644
index 0000000..34739bc
--- /dev/null
+++ b/content/docs/definitions/process/assemble-eva-suit.md
@@ -0,0 +1,50 @@
+---
+title: Manufacturing Process - Assemble EVA suit
+linkTitle: Assemble EVA suit
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|0.0 millisols|
+|Work Level:|500.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[EVA antenna](/docs/definitions/part/eva-antenna)|Part|1|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|1|
+|[EVA battery](/docs/definitions/part/eva-battery)|Part|1|
+|[EVA boots](/docs/definitions/part/eva-boots)|Part|1|
+|[EVA gloves](/docs/definitions/part/eva-gloves)|Part|1|
+|[EVA helmet](/docs/definitions/part/eva-helmet)|Part|1|
+|[EVA pads](/docs/definitions/part/eva-pads)|Part|1|
+|[EVA radio](/docs/definitions/part/eva-radio)|Part|1|
+|[Liquid Cooling Garment](/docs/definitions/part/liquid-cooling-garment)|Part|1|
+|[biosensor](/docs/definitions/part/biosensor)|Part|6|
+|[coveralls](/docs/definitions/part/coveralls)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[helmet visor](/docs/definitions/part/helmet-visor)|Part|1|
+|[pressure suit](/docs/definitions/part/pressure-suit)|Part|1|
+|[suit heating unit](/docs/definitions/part/suit-heating-unit)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA suit](/docs/definitions/null/eva-suit)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/assemble-explorer-rover.md b/content/docs/definitions/process/assemble-explorer-rover.md
new file mode 100644
index 0000000..96065aa
--- /dev/null
+++ b/content/docs/definitions/process/assemble-explorer-rover.md
@@ -0,0 +1,63 @@
+---
+title: Manufacturing Process - Assemble explorer rover
+linkTitle: Assemble explorer rover
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|1000.0 millisols|
+|Work Level:|2000.0 millisols|
+|Power Required:|4.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[CMOS sensor](/docs/definitions/part/cmos-sensor)|Part|6|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|3|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|2.0 kg|
+|[aerogel tile](/docs/definitions/part/aerogel-tile)|Part|80|
+|[battery module](/docs/definitions/part/battery-module)|Part|2|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|20|
+|[fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[fuel tank](/docs/definitions/part/fuel-tank)|Part|2|
+|[gas tank](/docs/definitions/part/gas-tank)|Part|2|
+|[lubricant bottle](/docs/definitions/part/lubricant-bottle)|Part|3|
+|[methanol fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|6|
+|[oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|3|
+|[plastic pipe](/docs/definitions/part/plastic-pipe)|Part|3|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|15.0 kg|
+|[radio antenna](/docs/definitions/part/radio-antenna)|Part|1|
+|[rover control panel](/docs/definitions/part/rover-control-panel)|Part|1|
+|[rover wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[rover windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[satellite dish](/docs/definitions/part/satellite-dish)|Part|1|
+|[steel pipe](/docs/definitions/part/steel-pipe)|Part|3|
+|[vehicle chassis panel](/docs/definitions/part/vehicle-chassis-panel)|Part|6|
+|[vehicle frame large](/docs/definitions/part/vehicle-frame-large)|Part|3|
+|[water tank](/docs/definitions/part/water-tank)|Part|2|
+|[winch](/docs/definitions/part/winch)|Part|1|
+|[window](/docs/definitions/part/window)|Part|2|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|20|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[explorer rover](/docs/definitions/vehicle/explorer-rover)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/assemble-luv.md b/content/docs/definitions/process/assemble-luv.md
new file mode 100644
index 0000000..8ffd76f
--- /dev/null
+++ b/content/docs/definitions/process/assemble-luv.md
@@ -0,0 +1,59 @@
+---
+title: Manufacturing Process - Assemble LUV
+linkTitle: Assemble LUV
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|500.0 millisols|
+|Work Level:|1000.0 millisols|
+|Power Required:|1.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[CMOS sensor](/docs/definitions/part/cmos-sensor)|Part|4|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|2|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|1.0 kg|
+|[aerogel tile](/docs/definitions/part/aerogel-tile)|Part|20|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|5|
+|[battery module](/docs/definitions/part/battery-module)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|10|
+|[fuel pump](/docs/definitions/part/fuel-pump)|Part|1|
+|[fuel tank](/docs/definitions/part/fuel-tank)|Part|1|
+|[gas tank](/docs/definitions/part/gas-tank)|Part|1|
+|[lubricant bottle](/docs/definitions/part/lubricant-bottle)|Part|1|
+|[methanol fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|2|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|4|
+|[oxygen pump](/docs/definitions/part/oxygen-pump)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|1|
+|[plastic pipe](/docs/definitions/part/plastic-pipe)|Part|2|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|5.0 kg|
+|[radio antenna](/docs/definitions/part/radio-antenna)|Part|1|
+|[utility vehicle control panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|1|
+|[vehicle chassis panel](/docs/definitions/part/vehicle-chassis-panel)|Part|3|
+|[vehicle frame small](/docs/definitions/part/vehicle-frame-small)|Part|2|
+|[water tank](/docs/definitions/part/water-tank)|Part|1|
+|[wheel small](/docs/definitions/part/wheel-small)|Part|4|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[light utility vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/assemble-transport-rover.md b/content/docs/definitions/process/assemble-transport-rover.md
new file mode 100644
index 0000000..05d841d
--- /dev/null
+++ b/content/docs/definitions/process/assemble-transport-rover.md
@@ -0,0 +1,63 @@
+---
+title: Manufacturing Process - Assemble transport rover
+linkTitle: Assemble transport rover
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|1000.0 millisols|
+|Work Level:|2500.0 millisols|
+|Power Required:|5.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[CMOS sensor](/docs/definitions/part/cmos-sensor)|Part|10|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|5|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|3.0 kg|
+|[aerogel tile](/docs/definitions/part/aerogel-tile)|Part|120|
+|[battery module](/docs/definitions/part/battery-module)|Part|4|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|20|
+|[fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[fuel tank](/docs/definitions/part/fuel-tank)|Part|4|
+|[gas tank](/docs/definitions/part/gas-tank)|Part|4|
+|[lubricant bottle](/docs/definitions/part/lubricant-bottle)|Part|5|
+|[methanol fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|5|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|8|
+|[oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|5|
+|[plastic pipe](/docs/definitions/part/plastic-pipe)|Part|5|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|5|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|20.0 kg|
+|[radio antenna](/docs/definitions/part/radio-antenna)|Part|1|
+|[rover control panel](/docs/definitions/part/rover-control-panel)|Part|1|
+|[rover wheel](/docs/definitions/part/rover-wheel)|Part|18|
+|[rover windshield](/docs/definitions/part/rover-windshield)|Part|1|
+|[satellite dish](/docs/definitions/part/satellite-dish)|Part|1|
+|[steel pipe](/docs/definitions/part/steel-pipe)|Part|5|
+|[vehicle chassis panel](/docs/definitions/part/vehicle-chassis-panel)|Part|10|
+|[vehicle frame large](/docs/definitions/part/vehicle-frame-large)|Part|5|
+|[water tank](/docs/definitions/part/water-tank)|Part|4|
+|[winch](/docs/definitions/part/winch)|Part|1|
+|[window](/docs/definitions/part/window)|Part|5|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|20|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[transport rover](/docs/definitions/vehicle/transport-rover)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/bake-regolith-brick.md b/content/docs/definitions/process/bake-regolith-brick.md
new file mode 100644
index 0000000..53f2062
--- /dev/null
+++ b/content/docs/definitions/process/bake-regolith-brick.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Bake regolith brick
+linkTitle: Bake regolith brick
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|50.0 millisols|
+|Work Level:|5.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[calcium carbonate](/docs/definitions/resource/calcium-carbonate)|Resource|2.6 kg|
+|[regolith](/docs/definitions/resource/regolith)|Resource|30.0 kg|
+|[water](/docs/definitions/resource/water)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[brick](/docs/definitions/part/brick)|10|
+|[grey water](/docs/definitions/resource/grey-water)|0.6 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/bake-sand-brick.md b/content/docs/definitions/process/bake-sand-brick.md
new file mode 100644
index 0000000..111bd0d
--- /dev/null
+++ b/content/docs/definitions/process/bake-sand-brick.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Bake sand brick
+linkTitle: Bake sand brick
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|50.0 millisols|
+|Work Level:|5.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[calcium carbonate](/docs/definitions/resource/calcium-carbonate)|Resource|2.6 kg|
+|[sand](/docs/definitions/resource/sand)|Resource|30.0 kg|
+|[water](/docs/definitions/resource/water)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[brick](/docs/definitions/part/brick)|10|
+|[grey water](/docs/definitions/resource/grey-water)|0.6 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/cast-aluminum-ingot--large-batch-.md b/content/docs/definitions/process/cast-aluminum-ingot--large-batch-.md
new file mode 100644
index 0000000..805bd96
--- /dev/null
+++ b/content/docs/definitions/process/cast-aluminum-ingot--large-batch-.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Cast aluminum ingot (large batch)
+linkTitle: Cast aluminum ingot (large batch)
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Al<sub>2</sub>O<sub>3</sub> + 3C -> 2Al + 3CO
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|250.0 millisols|
+|Work Level:|250.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|33.3 kg|
+|[aluminum oxide](/docs/definitions/resource/aluminum-oxide)|Resource|94.4 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[aluminum ingot](/docs/definitions/part/aluminum-ingot)|10|
+|[carbon monoxide](/docs/definitions/resource/carbon-monoxide)|77.8 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/cast-aluminum-ingot.md b/content/docs/definitions/process/cast-aluminum-ingot.md
new file mode 100644
index 0000000..261ccca
--- /dev/null
+++ b/content/docs/definitions/process/cast-aluminum-ingot.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Cast aluminum ingot
+linkTitle: Cast aluminum ingot
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Al<sub>2</sub>O<sub>3</sub> + 3C -> 2Al + 3CO;
1 mole - Al2CO3: 101.96g; 3C: 36g; 2Al: 54g; 3CO: 64g
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|3.33 kg|
+|[aluminum oxide](/docs/definitions/resource/aluminum-oxide)|Resource|9.44 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[aluminum ingot](/docs/definitions/part/aluminum-ingot)|1|
+|[carbon monoxide](/docs/definitions/resource/carbon-monoxide)|7.78 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/cast-iron-ingot.md b/content/docs/definitions/process/cast-iron-ingot.md
new file mode 100644
index 0000000..6b4dd91
--- /dev/null
+++ b/content/docs/definitions/process/cast-iron-ingot.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Cast iron ingot
+linkTitle: Cast iron ingot
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|75.0 millisols|
+|Work Level:|25.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|35.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[iron ingot](/docs/definitions/part/iron-ingot)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/do-carbon-monoxide-iron-reduction.md b/content/docs/definitions/process/do-carbon-monoxide-iron-reduction.md
new file mode 100644
index 0000000..d6abc45
--- /dev/null
+++ b/content/docs/definitions/process/do-carbon-monoxide-iron-reduction.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Do carbon monoxide iron reduction
+linkTitle: Do carbon monoxide iron reduction
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Fe<sub>2</sub>O<sub>3</sub> + 3CO -> 2Fe + 3CO<sub>2</sub>
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[carbon monoxide](/docs/definitions/resource/carbon-monoxide)|Resource|26.4 kg|
+|[iron oxide](/docs/definitions/resource/iron-oxide)|Resource|50.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[carbon dioxide](/docs/definitions/resource/carbon-dioxide)|41.3 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|34.9 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/do-hydrogen-iron-reduction.md b/content/docs/definitions/process/do-hydrogen-iron-reduction.md
new file mode 100644
index 0000000..154a2d4
--- /dev/null
+++ b/content/docs/definitions/process/do-hydrogen-iron-reduction.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Do hydrogen iron reduction
+linkTitle: Do hydrogen iron reduction
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Fe<sub>2</sub>O<sub>3</sub> + 3H<sub>2</sub>
-> 2Fe + 3H<sub>2</sub>O
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[hydrogen](/docs/definitions/resource/hydrogen)|Resource|2.5 kg|
+|[iron oxide](/docs/definitions/resource/iron-oxide)|Resource|50.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[grey water](/docs/definitions/resource/grey-water)|16.9 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|34.9 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/do-plastic-sheet-extrusion.md b/content/docs/definitions/process/do-plastic-sheet-extrusion.md
new file mode 100644
index 0000000..ff39fb2
--- /dev/null
+++ b/content/docs/definitions/process/do-plastic-sheet-extrusion.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Do plastic sheet extrusion
+linkTitle: Do plastic sheet extrusion
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|200.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|10.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/do-potassium-chloride-electrolysis.md b/content/docs/definitions/process/do-potassium-chloride-electrolysis.md
new file mode 100644
index 0000000..9a9340e
--- /dev/null
+++ b/content/docs/definitions/process/do-potassium-chloride-electrolysis.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Do potassium chloride electrolysis
+linkTitle: Do potassium chloride electrolysis
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
2 K+(aq) + 2H<sub>2</sub>O(l) + 2e− → H<sub>2</sub>(g) + 2 KOH(aq)
2 Cl– — 2e− → Cl<sub>2</sub>(g)
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|3.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[sylvite](/docs/definitions/resource/sylvite)|Resource|7.46 kg|
+|[water](/docs/definitions/resource/water)|Resource|1.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[chlorine](/docs/definitions/resource/chlorine)|7.1 kg|
+|[hydrogen](/docs/definitions/resource/hydrogen)|0.1 kg|
+|[potash lye](/docs/definitions/resource/potash-lye)|5.6 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/do-steel-cable-winding.md b/content/docs/definitions/process/do-steel-cable-winding.md
new file mode 100644
index 0000000..306cd54
--- /dev/null
+++ b/content/docs/definitions/process/do-steel-cable-winding.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Do steel cable winding
+linkTitle: Do steel cable winding
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|20.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[steel cable](/docs/definitions/part/steel-cable)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/do-steel-ingot-alloying.md b/content/docs/definitions/process/do-steel-ingot-alloying.md
new file mode 100644
index 0000000..ef7b5e9
--- /dev/null
+++ b/content/docs/definitions/process/do-steel-ingot-alloying.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Do steel ingot alloying
+linkTitle: Do steel ingot alloying
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|20.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|0.5 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|25.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[steel ingot](/docs/definitions/part/steel-ingot)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/do-steel-ingot-nickel-alloying.md b/content/docs/definitions/process/do-steel-ingot-nickel-alloying.md
new file mode 100644
index 0000000..9d0152b
--- /dev/null
+++ b/content/docs/definitions/process/do-steel-ingot-nickel-alloying.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Do steel ingot nickel alloying
+linkTitle: Do steel ingot nickel alloying
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|0.3 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|22.5 kg|
+|[nickel](/docs/definitions/resource/nickel)|Resource|2.5 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[steel ingot](/docs/definitions/part/steel-ingot)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/draw-aluminum-wire.md b/content/docs/definitions/process/draw-aluminum-wire.md
new file mode 100644
index 0000000..58195bf
--- /dev/null
+++ b/content/docs/definitions/process/draw-aluminum-wire.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Draw aluminum wire
+linkTitle: Draw aluminum wire
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|20.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/draw-copper-wire.md b/content/docs/definitions/process/draw-copper-wire.md
new file mode 100644
index 0000000..ad8678a
--- /dev/null
+++ b/content/docs/definitions/process/draw-copper-wire.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Draw copper wire
+linkTitle: Draw copper wire
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|20.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|2.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper sheet](/docs/definitions/part/copper-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[copper wire](/docs/definitions/part/copper-wire)|17|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/draw-optical-fiber-glass.md b/content/docs/definitions/process/draw-optical-fiber-glass.md
new file mode 100644
index 0000000..9688351
--- /dev/null
+++ b/content/docs/definitions/process/draw-optical-fiber-glass.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Draw optical fiber glass
+linkTitle: Draw optical fiber glass
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|3|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[sand](/docs/definitions/resource/sand)|Resource|2.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[fiberglass](/docs/definitions/part/fiberglass)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/draw-steel-wire.md b/content/docs/definitions/process/draw-steel-wire.md
new file mode 100644
index 0000000..f1e1d95
--- /dev/null
+++ b/content/docs/definitions/process/draw-steel-wire.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Draw steel wire
+linkTitle: Draw steel wire
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|20.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[steel wire](/docs/definitions/part/steel-wire)|100|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/dry-potash-into-potassium-crystal.md b/content/docs/definitions/process/dry-potash-into-potassium-crystal.md
new file mode 100644
index 0000000..2d6e336
--- /dev/null
+++ b/content/docs/definitions/process/dry-potash-into-potassium-crystal.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Dry potash into potassium crystal
+linkTitle: Dry potash into potassium crystal
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|20.0 millisols|
+|Work Level:|2.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[potash lye](/docs/definitions/resource/potash-lye)|Resource|5.6 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[oxygen](/docs/definitions/resource/oxygen)|0.8 kg|
+|[potassium](/docs/definitions/resource/potassium)|3.9 kg|
+|[water](/docs/definitions/resource/water)|0.9 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/fabricate-glass-tube.md b/content/docs/definitions/process/fabricate-glass-tube.md
new file mode 100644
index 0000000..f89ab32
--- /dev/null
+++ b/content/docs/definitions/process/fabricate-glass-tube.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Fabricate glass tube
+linkTitle: Fabricate glass tube
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.7 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[sand](/docs/definitions/resource/sand)|Resource|10.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[glass tube](/docs/definitions/part/glass-tube)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/fabricate-semiconductor-wafer.md b/content/docs/definitions/process/fabricate-semiconductor-wafer.md
new file mode 100644
index 0000000..aad0e83
--- /dev/null
+++ b/content/docs/definitions/process/fabricate-semiconductor-wafer.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Fabricate semiconductor wafer
+linkTitle: Fabricate semiconductor wafer
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|800.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[silicon](/docs/definitions/resource/silicon)|Resource|1.2 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[semiconductor wafer](/docs/definitions/part/semiconductor-wafer)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/fabricate-solar-panel.md b/content/docs/definitions/process/fabricate-solar-panel.md
new file mode 100644
index 0000000..237a7f9
--- /dev/null
+++ b/content/docs/definitions/process/fabricate-solar-panel.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Fabricate solar panel
+linkTitle: Fabricate solar panel
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|4|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|2|
+|[logic board](/docs/definitions/part/logic-board)|Part|2|
+|[semiconductor wafer](/docs/definitions/part/semiconductor-wafer)|Part|2|
+|[silicon](/docs/definitions/resource/silicon)|Resource|25.0 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[solar panel](/docs/definitions/part/solar-panel)|3|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/fabricate-solar-parabolic-mirror.md b/content/docs/definitions/process/fabricate-solar-parabolic-mirror.md
new file mode 100644
index 0000000..209a499
--- /dev/null
+++ b/content/docs/definitions/process/fabricate-solar-parabolic-mirror.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Fabricate solar parabolic mirror
+linkTitle: Fabricate solar parabolic mirror
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|300.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|2|
+|[glass sheet](/docs/definitions/part/glass-sheet)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[solar parabolic mirror](/docs/definitions/part/solar-parabolic-mirror)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/fabricate-turbine-blade-alt--1.md b/content/docs/definitions/process/fabricate-turbine-blade-alt--1.md
new file mode 100644
index 0000000..a902a3e
--- /dev/null
+++ b/content/docs/definitions/process/fabricate-turbine-blade-alt--1.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Fabricate turbine blade Alt #1
+linkTitle: Fabricate turbine blade Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|0.5 kg|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[styrene](/docs/definitions/resource/styrene)|Resource|0.5 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[wind turbine blade](/docs/definitions/part/wind-turbine-blade)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/fabricate-turbine-blade.md b/content/docs/definitions/process/fabricate-turbine-blade.md
new file mode 100644
index 0000000..7379f16
--- /dev/null
+++ b/content/docs/definitions/process/fabricate-turbine-blade.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Fabricate turbine blade
+linkTitle: Fabricate turbine blade
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|0.5 kg|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[styrene](/docs/definitions/resource/styrene)|Resource|0.5 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[wind turbine blade](/docs/definitions/part/wind-turbine-blade)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/gasify-sugarcane-and-biomass-into-methanol.md b/content/docs/definitions/process/gasify-sugarcane-and-biomass-into-methanol.md
new file mode 100644
index 0000000..1921460
--- /dev/null
+++ b/content/docs/definitions/process/gasify-sugarcane-and-biomass-into-methanol.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - gasify sugarcane and biomass into methanol
+linkTitle: gasify sugarcane and biomass into methanol
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Use biomass gasification to derive methanol, which is useful for powering PEM fuel cells.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[carbon dioxide](/docs/definitions/resource/carbon-dioxide)|Resource|5.0 kg|
+|[crop waste](/docs/definitions/resource/crop-waste)|Resource|5.0 kg|
+|[sugarcane](/docs/definitions/resource/sugarcane)|Resource|5.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|6.0 kg|
+|[methanol](/docs/definitions/resource/methanol)|9.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-activated-charcoal.md b/content/docs/definitions/process/make-activated-charcoal.md
new file mode 100644
index 0000000..5b4ea04
--- /dev/null
+++ b/content/docs/definitions/process/make-activated-charcoal.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make activated charcoal
+linkTitle: Make activated charcoal
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|1.0 kg|
+|[sodium hypochlorite](/docs/definitions/resource/sodium-hypochlorite)|Resource|0.1 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[activated charcoal](/docs/definitions/resource/activated-charcoal)|1.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-aerogel-tile.md b/content/docs/definitions/process/make-aerogel-tile.md
new file mode 100644
index 0000000..19a520f
--- /dev/null
+++ b/content/docs/definitions/process/make-aerogel-tile.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make aerogel tile
+linkTitle: Make aerogel tile
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Aerogel is a porous, translucent material that could allow sunlight
to penetrate and be trapped, thus acting as a better insulator and having stronger
tensile strengthe fiberglass composite. It's made by extracting liquid from silica gel to
create a thin, 2-to-3 cm layer of aerogel via supercritical CO2 drying. Doping it
with crossliking agents provide improved mechanical properties. See aerogel.org/?p=1058.
The empiral formula of aerogel is simply SiO2.
SiO2: 60 g/mol, CO2: 44 g/mol, Si: 28 g/mol, O: 32 g/mol
The silica solidifies into three-dimensional, intertwined clusters that make up only
3% of the volume. Conduction through the solid is therefore very low. The remaining
97% of the volume is composed of air in extremely small nanopores. The air has little
room to move, inhibiting both convection and gas-phase conduction.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[carbon dioxide](/docs/definitions/resource/carbon-dioxide)|Resource|4.4 kg|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|0.5 kg|
+|[silica](/docs/definitions/resource/silica)|Resource|6.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[aerogel tile](/docs/definitions/part/aerogel-tile)|20|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-air-compressor.md b/content/docs/definitions/process/make-air-compressor.md
new file mode 100644
index 0000000..14febe1
--- /dev/null
+++ b/content/docs/definitions/process/make-air-compressor.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Make air compressor
+linkTitle: Make air compressor
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|1|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[air compressor](/docs/definitions/part/air-compressor)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-airleak-patch.md b/content/docs/definitions/process/make-airleak-patch.md
new file mode 100644
index 0000000..63137a3
--- /dev/null
+++ b/content/docs/definitions/process/make-airleak-patch.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make airleak patch
+linkTitle: Make airleak patch
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|3|
+|Process Time:|100.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|7.5 kg|
+|[styrene](/docs/definitions/resource/styrene)|Resource|7.5 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[airleak patch](/docs/definitions/part/airleak-patch)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-aluminum-power-cable.md b/content/docs/definitions/process/make-aluminum-power-cable.md
new file mode 100644
index 0000000..40f8a26
--- /dev/null
+++ b/content/docs/definitions/process/make-aluminum-power-cable.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make aluminum power cable
+linkTitle: Make aluminum power cable
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|400.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|20|
+|[styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[power cable](/docs/definitions/part/power-cable)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-aluminum-sheet.md b/content/docs/definitions/process/make-aluminum-sheet.md
new file mode 100644
index 0000000..20d7782
--- /dev/null
+++ b/content/docs/definitions/process/make-aluminum-sheet.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make aluminum sheet
+linkTitle: Make aluminum sheet
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Al<sub>2</sub>O<sub>3</sub> + 3C -> 2Al + 3CO
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|20.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.7 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|3.0 kg|
+|[aluminum oxide](/docs/definitions/resource/aluminum-oxide)|Resource|9.5 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|1|
+|[carbon monoxide](/docs/definitions/resource/carbon-monoxide)|7.5 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-basket-alt--1.md b/content/docs/definitions/process/make-basket-alt--1.md
new file mode 100644
index 0000000..713224c
--- /dev/null
+++ b/content/docs/definitions/process/make-basket-alt--1.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make basket Alt #1
+linkTitle: Make basket Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[basket](/docs/definitions/null/basket)|12|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-basket.md b/content/docs/definitions/process/make-basket.md
new file mode 100644
index 0000000..3ecef4e
--- /dev/null
+++ b/content/docs/definitions/process/make-basket.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make basket
+linkTitle: Make basket
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[basket](/docs/definitions/null/basket)|12|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-biosensor-alt--1.md b/content/docs/definitions/process/make-biosensor-alt--1.md
new file mode 100644
index 0000000..1f791de
--- /dev/null
+++ b/content/docs/definitions/process/make-biosensor-alt--1.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Make biosensor Alt #1
+linkTitle: Make biosensor Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|20.0 millisols|
+|Work Level:|80.0 millisols|
+|Power Required:|0.01 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[CMOS sensor](/docs/definitions/part/cmos-sensor)|Part|1|
+|[Polyester Fiber](/docs/definitions/resource/polyester-fiber)|Resource|0.1 kg|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|3|
+|[logic board](/docs/definitions/part/logic-board)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[biosensor](/docs/definitions/part/biosensor)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-biosensor.md b/content/docs/definitions/process/make-biosensor.md
new file mode 100644
index 0000000..df9055d
--- /dev/null
+++ b/content/docs/definitions/process/make-biosensor.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Make biosensor
+linkTitle: Make biosensor
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|20.0 millisols|
+|Work Level:|80.0 millisols|
+|Power Required:|0.01 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[CMOS sensor](/docs/definitions/part/cmos-sensor)|Part|1|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.1 kg|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|3|
+|[logic board](/docs/definitions/part/logic-board)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[biosensor](/docs/definitions/part/biosensor)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-bleaching-chemical-for-paper-making--large-batch-.md b/content/docs/definitions/process/make-bleaching-chemical-for-paper-making--large-batch-.md
new file mode 100644
index 0000000..da288b5
--- /dev/null
+++ b/content/docs/definitions/process/make-bleaching-chemical-for-paper-making--large-batch-.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Make bleaching chemical for paper making (large batch)
+linkTitle: Make bleaching chemical for paper making (large batch)
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[ammonia](/docs/definitions/resource/ammonia)|Resource|0.5 kg|
+|[calcium carbonate](/docs/definitions/resource/calcium-carbonate)|Resource|1.0 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.5 kg|
+|[oxygen](/docs/definitions/resource/oxygen)|Resource|2.0 kg|
+|[sodium hypochlorite](/docs/definitions/resource/sodium-hypochlorite)|Resource|0.5 kg|
+|[sulfur](/docs/definitions/resource/sulfur)|Resource|0.5 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[bleaching chemical](/docs/definitions/resource/bleaching-chemical)|5.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-bleaching-chemical-for-paper-making.md b/content/docs/definitions/process/make-bleaching-chemical-for-paper-making.md
new file mode 100644
index 0000000..a126eb9
--- /dev/null
+++ b/content/docs/definitions/process/make-bleaching-chemical-for-paper-making.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Make bleaching chemical for paper making
+linkTitle: Make bleaching chemical for paper making
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[ammonia](/docs/definitions/resource/ammonia)|Resource|0.05 kg|
+|[calcium carbonate](/docs/definitions/resource/calcium-carbonate)|Resource|0.1 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.05 kg|
+|[oxygen](/docs/definitions/resource/oxygen)|Resource|0.2 kg|
+|[sodium hypochlorite](/docs/definitions/resource/sodium-hypochlorite)|Resource|0.05 kg|
+|[sulfur](/docs/definitions/resource/sulfur)|Resource|0.05 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[bleaching chemical](/docs/definitions/resource/bleaching-chemical)|0.5 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-carbon-dioxide-pump.md b/content/docs/definitions/process/make-carbon-dioxide-pump.md
new file mode 100644
index 0000000..1275ed1
--- /dev/null
+++ b/content/docs/definitions/process/make-carbon-dioxide-pump.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make carbon dioxide pump
+linkTitle: Make carbon dioxide pump
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|100.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|3|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[carbon dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-ceramic-electrolyte.md b/content/docs/definitions/process/make-ceramic-electrolyte.md
new file mode 100644
index 0000000..ddf82bb
--- /dev/null
+++ b/content/docs/definitions/process/make-ceramic-electrolyte.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Make ceramic electrolyte
+linkTitle: Make ceramic electrolyte
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Ceramic electrolytes are critical for the production of batteries and fuel cells
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminum](/docs/definitions/resource/aluminum)|Resource|0.1 kg|
+|[glass](/docs/definitions/resource/glass)|Resource|4.2 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|0.1 kg|
+|[manganese](/docs/definitions/resource/manganese)|Resource|0.1 kg|
+|[nickel](/docs/definitions/resource/nickel)|Resource|0.1 kg|
+|[oxygen](/docs/definitions/resource/oxygen)|Resource|0.5 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[ceramic electrolyte](/docs/definitions/resource/ceramic-electrolyte)|5.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-charcoal-filter.md b/content/docs/definitions/process/make-charcoal-filter.md
new file mode 100644
index 0000000..f1eb364
--- /dev/null
+++ b/content/docs/definitions/process/make-charcoal-filter.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make charcoal filter
+linkTitle: Make charcoal filter
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[activated charcoal](/docs/definitions/resource/activated-charcoal)|Resource|1.0 kg|
+|[calcium carbonate](/docs/definitions/resource/calcium-carbonate)|Resource|1.0 kg|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[charcoal filter](/docs/definitions/part/charcoal-filter)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-clear-glass-bottle.md b/content/docs/definitions/process/make-clear-glass-bottle.md
new file mode 100644
index 0000000..1e33c76
--- /dev/null
+++ b/content/docs/definitions/process/make-clear-glass-bottle.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make clear glass bottle
+linkTitle: Make clear glass bottle
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[sand](/docs/definitions/resource/sand)|Resource|3.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Glass Bottle](/docs/definitions/part/glass-bottle)|11|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-cmos-sensor.md b/content/docs/definitions/process/make-cmos-sensor.md
new file mode 100644
index 0000000..88e78c8
--- /dev/null
+++ b/content/docs/definitions/process/make-cmos-sensor.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make CMOS sensor
+linkTitle: Make CMOS sensor
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|80.0 millisols|
+|Power Required:|0.01 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[semiconductor wafer](/docs/definitions/part/semiconductor-wafer)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[CMOS sensor](/docs/definitions/part/cmos-sensor)|20|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-condenser-coil.md b/content/docs/definitions/process/make-condenser-coil.md
new file mode 100644
index 0000000..847565b
--- /dev/null
+++ b/content/docs/definitions/process/make-condenser-coil.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make condenser coil
+linkTitle: Make condenser coil
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|25.0 millisols|
+|Work Level:|150.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper pipe](/docs/definitions/part/copper-pipe)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[condenser coil](/docs/definitions/part/condenser-coil)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-coolant-bottle.md b/content/docs/definitions/process/make-coolant-bottle.md
new file mode 100644
index 0000000..28c617b
--- /dev/null
+++ b/content/docs/definitions/process/make-coolant-bottle.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make coolant bottle
+linkTitle: Make coolant bottle
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|3|
+|Process Time:|300.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[coolant bottle](/docs/definitions/part/coolant-bottle)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-copper-electrical-wire.md b/content/docs/definitions/process/make-copper-electrical-wire.md
new file mode 100644
index 0000000..694a2ab
--- /dev/null
+++ b/content/docs/definitions/process/make-copper-electrical-wire.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make copper electrical wire
+linkTitle: Make copper electrical wire
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|40.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper wire](/docs/definitions/part/copper-wire)|Part|1|
+|[styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[electrical wire](/docs/definitions/part/electrical-wire)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-copper-pipe.md b/content/docs/definitions/process/make-copper-pipe.md
new file mode 100644
index 0000000..1de1e4d
--- /dev/null
+++ b/content/docs/definitions/process/make-copper-pipe.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make copper pipe
+linkTitle: Make copper pipe
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|20.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper sheet](/docs/definitions/part/copper-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[copper](/docs/definitions/resource/copper)|0.9 kg|
+|[copper pipe](/docs/definitions/part/copper-pipe)|8|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-copper-power-cable.md b/content/docs/definitions/process/make-copper-power-cable.md
new file mode 100644
index 0000000..4d4b9dd
--- /dev/null
+++ b/content/docs/definitions/process/make-copper-power-cable.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make copper power cable
+linkTitle: Make copper power cable
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|40.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper wire](/docs/definitions/part/copper-wire)|Part|20|
+|[styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[power cable](/docs/definitions/part/power-cable)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-copper-sheet.md b/content/docs/definitions/process/make-copper-sheet.md
new file mode 100644
index 0000000..10ed03c
--- /dev/null
+++ b/content/docs/definitions/process/make-copper-sheet.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make copper sheet
+linkTitle: Make copper sheet
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|20.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper](/docs/definitions/resource/copper)|Resource|8.94 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[copper sheet](/docs/definitions/part/copper-sheet)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-copper-wire-connector.md b/content/docs/definitions/process/make-copper-wire-connector.md
new file mode 100644
index 0000000..e3f42fd
--- /dev/null
+++ b/content/docs/definitions/process/make-copper-wire-connector.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make copper wire connector
+linkTitle: Make copper wire connector
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|40.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper wire](/docs/definitions/part/copper-wire)|Part|1|
+|[styrene](/docs/definitions/resource/styrene)|Resource|0.5 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[wire connector](/docs/definitions/part/wire-connector)|15|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-coveralls-alt--1.md b/content/docs/definitions/process/make-coveralls-alt--1.md
new file mode 100644
index 0000000..b97e3a7
--- /dev/null
+++ b/content/docs/definitions/process/make-coveralls-alt--1.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Make coveralls Alt #1
+linkTitle: Make coveralls Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminized Mylar](/docs/definitions/resource/aluminized-mylar)|Resource|1.0 kg|
+|[Polyester Fiber](/docs/definitions/resource/polyester-fiber)|Resource|0.2 kg|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|4|
+|[polyurethane](/docs/definitions/resource/polyurethane)|Resource|0.1 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[coveralls](/docs/definitions/part/coveralls)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-coveralls.md b/content/docs/definitions/process/make-coveralls.md
new file mode 100644
index 0000000..c8ea513
--- /dev/null
+++ b/content/docs/definitions/process/make-coveralls.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Make coveralls
+linkTitle: Make coveralls
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminized Mylar](/docs/definitions/resource/aluminized-mylar)|Resource|1.0 kg|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.2 kg|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|4|
+|[polyurethane](/docs/definitions/resource/polyurethane)|Resource|0.1 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[coveralls](/docs/definitions/part/coveralls)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-crate-alt--1.md b/content/docs/definitions/process/make-crate-alt--1.md
new file mode 100644
index 0000000..0a81af7
--- /dev/null
+++ b/content/docs/definitions/process/make-crate-alt--1.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make crate Alt #1
+linkTitle: Make crate Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[crate](/docs/definitions/null/crate)|6|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-crate.md b/content/docs/definitions/process/make-crate.md
new file mode 100644
index 0000000..e6cdb4d
--- /dev/null
+++ b/content/docs/definitions/process/make-crate.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make crate
+linkTitle: Make crate
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[crate](/docs/definitions/null/crate)|6|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-crop-fertilizers-alt--1.md b/content/docs/definitions/process/make-crop-fertilizers-alt--1.md
new file mode 100644
index 0000000..e6d9924
--- /dev/null
+++ b/content/docs/definitions/process/make-crop-fertilizers-alt--1.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make crop fertilizers Alt #1
+linkTitle: Make crop fertilizers Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
An arbitrary N-P-K-ratio (the percentage the product contains by volume of nitrogen (N), phosphorus (P), and potassium (K)) is used.
A. 3 main macronutrients (NPK):
a. Nitrogen (N): leaf growth;
b. Phosphorus (P): development of roots, flowers, seeds, fruit;
c. Potassium (K): strong stem growth, movement of water in plants, promotion of flowering and fruiting;
B. 3 secondary macronutrients:
a. calcium (Ca), magnesium (Mg), and sulfur (S);
C. Micronutrients:
a. copper (Cu), iron (Fe), manganese (Mn), molybdenum (Mo), zinc (Zn), boron (B).
D. Of occasional significance are silicon (Si), cobalt (Co), and vanadium (V).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Compost](/docs/definitions/resource/compost)|Resource|0.5 kg|
+|[Nitrate](/docs/definitions/resource/nitrate)|Resource|0.5 kg|
+|[Nitrosomonas SPP](/docs/definitions/resource/nitrosomonas-spp)|Resource|0.05 kg|
+|[Phosphorus](/docs/definitions/resource/phosphorus)|Resource|0.5 kg|
+|[calcium](/docs/definitions/resource/calcium)|Resource|0.02 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.02 kg|
+|[methane](/docs/definitions/resource/methane)|Resource|1.0 kg|
+|[potash lye](/docs/definitions/resource/potash-lye)|Resource|0.5 kg|
+|[sulfur](/docs/definitions/resource/sulfur)|Resource|0.02 kg|
+|[zinc](/docs/definitions/resource/zinc)|Resource|0.02 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Fertilizer](/docs/definitions/resource/fertilizer)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-crop-fertilizers-alt--2.md b/content/docs/definitions/process/make-crop-fertilizers-alt--2.md
new file mode 100644
index 0000000..df8e05f
--- /dev/null
+++ b/content/docs/definitions/process/make-crop-fertilizers-alt--2.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make crop fertilizers Alt #2
+linkTitle: Make crop fertilizers Alt #2
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
An arbitrary N-P-K-ratio (the percentage the product contains by volume of nitrogen (N), phosphorus (P), and potassium (K)) is used.
A. 3 main macronutrients (NPK):
a. Nitrogen (N): leaf growth;
b. Phosphorus (P): development of roots, flowers, seeds, fruit;
c. Potassium (K): strong stem growth, movement of water in plants, promotion of flowering and fruiting;
B. 3 secondary macronutrients:
a. calcium (Ca), magnesium (Mg), and sulfur (S);
C. Micronutrients:
a. copper (Cu), iron (Fe), manganese (Mn), molybdenum (Mo), zinc (Zn), boron (B).
D. Of occasional significance are silicon (Si), cobalt (Co), and vanadium (V).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Ammonia](/docs/definitions/resource/ammonia)|Resource|0.5 kg|
+|[Compost](/docs/definitions/resource/compost)|Resource|0.5 kg|
+|[Nitrosomonas SPP](/docs/definitions/resource/nitrosomonas-spp)|Resource|0.05 kg|
+|[Phosphorus](/docs/definitions/resource/phosphorus)|Resource|0.5 kg|
+|[Potassium](/docs/definitions/resource/potassium)|Resource|0.5 kg|
+|[calcium](/docs/definitions/resource/calcium)|Resource|0.02 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.02 kg|
+|[methane](/docs/definitions/resource/methane)|Resource|1.0 kg|
+|[sulfur](/docs/definitions/resource/sulfur)|Resource|0.02 kg|
+|[zinc](/docs/definitions/resource/zinc)|Resource|0.02 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Fertilizer](/docs/definitions/resource/fertilizer)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-crop-fertilizers-alt--3.md b/content/docs/definitions/process/make-crop-fertilizers-alt--3.md
new file mode 100644
index 0000000..af132c2
--- /dev/null
+++ b/content/docs/definitions/process/make-crop-fertilizers-alt--3.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make crop fertilizers Alt #3
+linkTitle: Make crop fertilizers Alt #3
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
An arbitrary N-P-K-ratio (the percentage the product contains by volume of nitrogen (N), phosphorus (P), and potassium (K)) is used.
A. 3 main macronutrients (NPK):
a. Nitrogen (N): leaf growth;
b. Phosphorus (P): development of roots, flowers, seeds, fruit;
c. Potassium (K): strong stem growth, movement of water in plants, promotion of flowering and fruiting;
B. 3 secondary macronutrients:
a. calcium (Ca), magnesium (Mg), and sulfur (S);
C. Micronutrients:
a. copper (Cu), iron (Fe), manganese (Mn), molybdenum (Mo), zinc (Zn), boron (B).
D. Of occasional significance are silicon (Si), cobalt (Co), and vanadium (V).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Compost](/docs/definitions/resource/compost)|Resource|0.5 kg|
+|[Nitrate](/docs/definitions/resource/nitrate)|Resource|0.5 kg|
+|[Phosphorus](/docs/definitions/resource/phosphorus)|Resource|0.5 kg|
+|[Potassium](/docs/definitions/resource/potassium)|Resource|0.5 kg|
+|[Rhizobia](/docs/definitions/resource/rhizobia)|Resource|0.05 kg|
+|[calcium](/docs/definitions/resource/calcium)|Resource|0.02 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.02 kg|
+|[methane](/docs/definitions/resource/methane)|Resource|1.0 kg|
+|[sulfur](/docs/definitions/resource/sulfur)|Resource|0.02 kg|
+|[zinc](/docs/definitions/resource/zinc)|Resource|0.02 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Fertilizer](/docs/definitions/resource/fertilizer)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-crop-fertilizers-alt--4.md b/content/docs/definitions/process/make-crop-fertilizers-alt--4.md
new file mode 100644
index 0000000..858a0ef
--- /dev/null
+++ b/content/docs/definitions/process/make-crop-fertilizers-alt--4.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make crop fertilizers Alt #4
+linkTitle: Make crop fertilizers Alt #4
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
An arbitrary N-P-K-ratio (the percentage the product contains by volume of nitrogen (N), phosphorus (P), and potassium (K)) is used.
A. 3 main macronutrients (NPK):
a. Nitrogen (N): leaf growth;
b. Phosphorus (P): development of roots, flowers, seeds, fruit;
c. Potassium (K): strong stem growth, movement of water in plants, promotion of flowering and fruiting;
B. 3 secondary macronutrients:
a. calcium (Ca), magnesium (Mg), and sulfur (S);
C. Micronutrients:
a. copper (Cu), iron (Fe), manganese (Mn), molybdenum (Mo), zinc (Zn), boron (B).
D. Of occasional significance are silicon (Si), cobalt (Co), and vanadium (V).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Compost](/docs/definitions/resource/compost)|Resource|0.5 kg|
+|[Nitrate](/docs/definitions/resource/nitrate)|Resource|0.5 kg|
+|[Nitrospira SPP](/docs/definitions/resource/nitrospira-spp)|Resource|0.05 kg|
+|[Phosphorus](/docs/definitions/resource/phosphorus)|Resource|0.5 kg|
+|[Potassium](/docs/definitions/resource/potassium)|Resource|0.5 kg|
+|[calcium](/docs/definitions/resource/calcium)|Resource|0.02 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.02 kg|
+|[methane](/docs/definitions/resource/methane)|Resource|1.0 kg|
+|[sulfur](/docs/definitions/resource/sulfur)|Resource|0.02 kg|
+|[zinc](/docs/definitions/resource/zinc)|Resource|0.02 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Fertilizer](/docs/definitions/resource/fertilizer)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-crop-fertilizers-alt--5.md b/content/docs/definitions/process/make-crop-fertilizers-alt--5.md
new file mode 100644
index 0000000..20e06a9
--- /dev/null
+++ b/content/docs/definitions/process/make-crop-fertilizers-alt--5.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make crop fertilizers Alt #5
+linkTitle: Make crop fertilizers Alt #5
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
An arbitrary N-P-K-ratio (the percentage the product contains by volume of nitrogen (N), phosphorus (P), and potassium (K)) is used.
A. 3 main macronutrients (NPK):
a. Nitrogen (N): leaf growth;
b. Phosphorus (P): development of roots, flowers, seeds, fruit;
c. Potassium (K): strong stem growth, movement of water in plants, promotion of flowering and fruiting;
B. 3 secondary macronutrients:
a. calcium (Ca), magnesium (Mg), and sulfur (S);
C. Micronutrients:
a. copper (Cu), iron (Fe), manganese (Mn), molybdenum (Mo), zinc (Zn), boron (B).
D. Of occasional significance are silicon (Si), cobalt (Co), and vanadium (V).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Compost](/docs/definitions/resource/compost)|Resource|0.5 kg|
+|[Nitrate](/docs/definitions/resource/nitrate)|Resource|0.5 kg|
+|[Nitrosomonas SPP](/docs/definitions/resource/nitrosomonas-spp)|Resource|0.05 kg|
+|[Phosphorus](/docs/definitions/resource/phosphorus)|Resource|0.5 kg|
+|[Potassium](/docs/definitions/resource/potassium)|Resource|0.5 kg|
+|[calcium](/docs/definitions/resource/calcium)|Resource|0.02 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|0.02 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.02 kg|
+|[methane](/docs/definitions/resource/methane)|Resource|1.0 kg|
+|[sulfur](/docs/definitions/resource/sulfur)|Resource|0.02 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Fertilizer](/docs/definitions/resource/fertilizer)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-crop-fertilizers-alt--6.md b/content/docs/definitions/process/make-crop-fertilizers-alt--6.md
new file mode 100644
index 0000000..148dfd5
--- /dev/null
+++ b/content/docs/definitions/process/make-crop-fertilizers-alt--6.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make crop fertilizers Alt #6
+linkTitle: Make crop fertilizers Alt #6
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
An arbitrary N-P-K-ratio (the percentage the product contains by volume of nitrogen (N), phosphorus (P), and potassium (K)) is used.
A. 3 main macronutrients (NPK):
a. Nitrogen (N): leaf growth;
b. Phosphorus (P): development of roots, flowers, seeds, fruit;
c. Potassium (K): strong stem growth, movement of water in plants, promotion of flowering and fruiting;
B. 3 secondary macronutrients:
a. calcium (Ca), magnesium (Mg), and sulfur (S);
C. Micronutrients:
a. copper (Cu), iron (Fe), manganese (Mn), molybdenum (Mo), zinc (Zn), boron (B).
D. Of occasional significance are silicon (Si), cobalt (Co), and vanadium (V).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Compost](/docs/definitions/resource/compost)|Resource|0.5 kg|
+|[Nitrate](/docs/definitions/resource/nitrate)|Resource|0.5 kg|
+|[Nitrosomonas SPP](/docs/definitions/resource/nitrosomonas-spp)|Resource|0.05 kg|
+|[Phosphorus](/docs/definitions/resource/phosphorus)|Resource|0.5 kg|
+|[Potassium](/docs/definitions/resource/potassium)|Resource|0.5 kg|
+|[calcium](/docs/definitions/resource/calcium)|Resource|0.02 kg|
+|[copper](/docs/definitions/resource/copper)|Resource|0.02 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.02 kg|
+|[methane](/docs/definitions/resource/methane)|Resource|1.0 kg|
+|[sulfur](/docs/definitions/resource/sulfur)|Resource|0.02 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Fertilizer](/docs/definitions/resource/fertilizer)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-crop-fertilizers-alt--7.md b/content/docs/definitions/process/make-crop-fertilizers-alt--7.md
new file mode 100644
index 0000000..4c09fd1
--- /dev/null
+++ b/content/docs/definitions/process/make-crop-fertilizers-alt--7.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make crop fertilizers Alt #7
+linkTitle: Make crop fertilizers Alt #7
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
An arbitrary N-P-K-ratio (the percentage the product contains by volume of nitrogen (N), phosphorus (P), and potassium (K)) is used.
A. 3 main macronutrients (NPK):
a. Nitrogen (N): leaf growth;
b. Phosphorus (P): development of roots, flowers, seeds, fruit;
c. Potassium (K): strong stem growth, movement of water in plants, promotion of flowering and fruiting;
B. 3 secondary macronutrients:
a. calcium (Ca), magnesium (Mg), and sulfur (S);
C. Micronutrients:
a. copper (Cu), iron (Fe), manganese (Mn), molybdenum (Mo), zinc (Zn), boron (B).
D. Of occasional significance are silicon (Si), cobalt (Co), and vanadium (V).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Crop Waste](/docs/definitions/resource/crop-waste)|Resource|0.5 kg|
+|[Nitrate](/docs/definitions/resource/nitrate)|Resource|0.5 kg|
+|[Nitrosomonas SPP](/docs/definitions/resource/nitrosomonas-spp)|Resource|0.05 kg|
+|[Phosphorus](/docs/definitions/resource/phosphorus)|Resource|0.5 kg|
+|[Potassium](/docs/definitions/resource/potassium)|Resource|0.5 kg|
+|[calcium](/docs/definitions/resource/calcium)|Resource|0.02 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.02 kg|
+|[methane](/docs/definitions/resource/methane)|Resource|1.0 kg|
+|[sulfur](/docs/definitions/resource/sulfur)|Resource|0.02 kg|
+|[zinc](/docs/definitions/resource/zinc)|Resource|0.02 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Fertilizer](/docs/definitions/resource/fertilizer)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-crop-fertilizers-alt--8.md b/content/docs/definitions/process/make-crop-fertilizers-alt--8.md
new file mode 100644
index 0000000..845e658
--- /dev/null
+++ b/content/docs/definitions/process/make-crop-fertilizers-alt--8.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make crop fertilizers Alt #8
+linkTitle: Make crop fertilizers Alt #8
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
An arbitrary N-P-K-ratio (the percentage the product contains by volume of nitrogen (N), phosphorus (P), and potassium (K)) is used.
A. 3 main macronutrients (NPK):
a. Nitrogen (N): leaf growth;
b. Phosphorus (P): development of roots, flowers, seeds, fruit;
c. Potassium (K): strong stem growth, movement of water in plants, promotion of flowering and fruiting;
B. 3 secondary macronutrients:
a. calcium (Ca), magnesium (Mg), and sulfur (S);
C. Micronutrients:
a. copper (Cu), iron (Fe), manganese (Mn), molybdenum (Mo), zinc (Zn), boron (B).
D. Of occasional significance are silicon (Si), cobalt (Co), and vanadium (V).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Compost](/docs/definitions/resource/compost)|Resource|0.5 kg|
+|[Nitrite](/docs/definitions/resource/nitrite)|Resource|0.5 kg|
+|[Nitrosomonas SPP](/docs/definitions/resource/nitrosomonas-spp)|Resource|0.05 kg|
+|[Phosphorus](/docs/definitions/resource/phosphorus)|Resource|0.5 kg|
+|[Potassium](/docs/definitions/resource/potassium)|Resource|0.5 kg|
+|[calcium](/docs/definitions/resource/calcium)|Resource|0.02 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.02 kg|
+|[methane](/docs/definitions/resource/methane)|Resource|1.0 kg|
+|[sulfur](/docs/definitions/resource/sulfur)|Resource|0.02 kg|
+|[zinc](/docs/definitions/resource/zinc)|Resource|0.02 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Fertilizer](/docs/definitions/resource/fertilizer)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-crop-fertilizers-alt--9.md b/content/docs/definitions/process/make-crop-fertilizers-alt--9.md
new file mode 100644
index 0000000..01354e7
--- /dev/null
+++ b/content/docs/definitions/process/make-crop-fertilizers-alt--9.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make crop fertilizers Alt #9
+linkTitle: Make crop fertilizers Alt #9
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
An arbitrary N-P-K-ratio (the percentage the product contains by volume of nitrogen (N), phosphorus (P), and potassium (K)) is used.
A. 3 main macronutrients (NPK):
a. Nitrogen (N): leaf growth;
b. Phosphorus (P): development of roots, flowers, seeds, fruit;
c. Potassium (K): strong stem growth, movement of water in plants, promotion of flowering and fruiting;
B. 3 secondary macronutrients:
a. calcium (Ca), magnesium (Mg), and sulfur (S);
C. Micronutrients:
a. copper (Cu), iron (Fe), manganese (Mn), molybdenum (Mo), zinc (Zn), boron (B).
D. Of occasional significance are silicon (Si), cobalt (Co), and vanadium (V).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Compost](/docs/definitions/resource/compost)|Resource|0.5 kg|
+|[Nitrate](/docs/definitions/resource/nitrate)|Resource|0.5 kg|
+|[Nitrosomonas SPP](/docs/definitions/resource/nitrosomonas-spp)|Resource|0.05 kg|
+|[Phosphorus](/docs/definitions/resource/phosphorus)|Resource|0.5 kg|
+|[Potassium](/docs/definitions/resource/potassium)|Resource|0.5 kg|
+|[calcium](/docs/definitions/resource/calcium)|Resource|0.02 kg|
+|[hydrogen](/docs/definitions/resource/hydrogen)|Resource|1.0 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.02 kg|
+|[sulfur](/docs/definitions/resource/sulfur)|Resource|0.02 kg|
+|[zinc](/docs/definitions/resource/zinc)|Resource|0.02 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Fertilizer](/docs/definitions/resource/fertilizer)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-crop-fertilizers.md b/content/docs/definitions/process/make-crop-fertilizers.md
new file mode 100644
index 0000000..3d70b67
--- /dev/null
+++ b/content/docs/definitions/process/make-crop-fertilizers.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make crop fertilizers
+linkTitle: Make crop fertilizers
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
An arbitrary N-P-K-ratio (the percentage the product contains by volume of nitrogen (N), phosphorus (P), and potassium (K)) is used.
A. 3 main macronutrients (NPK):
a. Nitrogen (N): leaf growth;
b. Phosphorus (P): development of roots, flowers, seeds, fruit;
c. Potassium (K): strong stem growth, movement of water in plants, promotion of flowering and fruiting;
B. 3 secondary macronutrients:
a. calcium (Ca), magnesium (Mg), and sulfur (S);
C. Micronutrients:
a. copper (Cu), iron (Fe), manganese (Mn), molybdenum (Mo), zinc (Zn), boron (B).
D. Of occasional significance are silicon (Si), cobalt (Co), and vanadium (V).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Compost](/docs/definitions/resource/compost)|Resource|0.5 kg|
+|[Nitrate](/docs/definitions/resource/nitrate)|Resource|0.5 kg|
+|[Nitrosomonas SPP](/docs/definitions/resource/nitrosomonas-spp)|Resource|0.05 kg|
+|[Phosphorus](/docs/definitions/resource/phosphorus)|Resource|0.5 kg|
+|[Potassium](/docs/definitions/resource/potassium)|Resource|0.5 kg|
+|[calcium](/docs/definitions/resource/calcium)|Resource|0.02 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.02 kg|
+|[methane](/docs/definitions/resource/methane)|Resource|1.0 kg|
+|[sulfur](/docs/definitions/resource/sulfur)|Resource|0.02 kg|
+|[zinc](/docs/definitions/resource/zinc)|Resource|0.02 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Fertilizer](/docs/definitions/resource/fertilizer)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-decontamination-kit.md b/content/docs/definitions/process/make-decontamination-kit.md
new file mode 100644
index 0000000..77b0298
--- /dev/null
+++ b/content/docs/definitions/process/make-decontamination-kit.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make decontamination kit
+linkTitle: Make decontamination kit
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[activated charcoal](/docs/definitions/resource/activated-charcoal)|Resource|3.0 kg|
+|[calcium carbonate](/docs/definitions/resource/calcium-carbonate)|Resource|0.1 kg|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[decontamination kit](/docs/definitions/part/decontamination-kit)|3|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-electrical-wire.md b/content/docs/definitions/process/make-electrical-wire.md
new file mode 100644
index 0000000..ec4a749
--- /dev/null
+++ b/content/docs/definitions/process/make-electrical-wire.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make electrical wire
+linkTitle: Make electrical wire
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|2|
+|Process Time:|400.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|1|
+|[styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[electrical wire](/docs/definitions/part/electrical-wire)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-antenna-alt--1.md b/content/docs/definitions/process/make-eva-antenna-alt--1.md
new file mode 100644
index 0000000..629a8d8
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-antenna-alt--1.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Make EVA antenna Alt #1
+linkTitle: Make EVA antenna Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|0.5 kg|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|1|
+|[styrene](/docs/definitions/resource/styrene)|Resource|0.5 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA antenna](/docs/definitions/part/eva-antenna)|20|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-antenna.md b/content/docs/definitions/process/make-eva-antenna.md
new file mode 100644
index 0000000..329e9d2
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-antenna.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Make EVA antenna
+linkTitle: Make EVA antenna
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|0.5 kg|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|1|
+|[styrene](/docs/definitions/resource/styrene)|Resource|0.5 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA antenna](/docs/definitions/part/eva-antenna)|20|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-backpack-alt--1.md b/content/docs/definitions/process/make-eva-backpack-alt--1.md
new file mode 100644
index 0000000..c01bb96
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-backpack-alt--1.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make EVA backpack Alt #1
+linkTitle: Make EVA backpack Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Polyethylene box with steel frame and fiberglass cloth straps.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Fiber](/docs/definitions/resource/polyester-fiber)|Resource|0.5 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|5.0 kg|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|1|
+|[gasket](/docs/definitions/part/gasket)|Part|3|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+|[steel canister](/docs/definitions/part/steel-canister)|Part|1|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+|[valve](/docs/definitions/part/valve)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-backpack-alt--2.md b/content/docs/definitions/process/make-eva-backpack-alt--2.md
new file mode 100644
index 0000000..289092b
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-backpack-alt--2.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make EVA backpack Alt #2
+linkTitle: Make EVA backpack Alt #2
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Polyethylene box with steel frame and fiberglass cloth straps.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.5 kg|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|5.0 kg|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|1|
+|[gasket](/docs/definitions/part/gasket)|Part|3|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+|[steel canister](/docs/definitions/part/steel-canister)|Part|1|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+|[valve](/docs/definitions/part/valve)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-backpack.md b/content/docs/definitions/process/make-eva-backpack.md
new file mode 100644
index 0000000..928d444
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-backpack.md
@@ -0,0 +1,46 @@
+---
+title: Manufacturing Process - Make EVA backpack
+linkTitle: Make EVA backpack
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Polyethylene box with steel frame and fiberglass cloth straps.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.5 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|5.0 kg|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|1|
+|[gasket](/docs/definitions/part/gasket)|Part|3|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+|[steel canister](/docs/definitions/part/steel-canister)|Part|1|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+|[valve](/docs/definitions/part/valve)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-boots-alt--1.md b/content/docs/definitions/process/make-eva-boots-alt--1.md
new file mode 100644
index 0000000..00b178f
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-boots-alt--1.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make EVA boots Alt #1
+linkTitle: Make EVA boots Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Fiber](/docs/definitions/resource/polyester-fiber)|Resource|0.4 kg|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|1|
+|[polyurethane](/docs/definitions/resource/polyurethane)|Resource|0.1 kg|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA boots](/docs/definitions/part/eva-boots)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-boots.md b/content/docs/definitions/process/make-eva-boots.md
new file mode 100644
index 0000000..da7f96c
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-boots.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make EVA boots
+linkTitle: Make EVA boots
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.4 kg|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|1|
+|[polyurethane](/docs/definitions/resource/polyurethane)|Resource|0.1 kg|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA boots](/docs/definitions/part/eva-boots)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-gloves-alt--1.md b/content/docs/definitions/process/make-eva-gloves-alt--1.md
new file mode 100644
index 0000000..d184c68
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-gloves-alt--1.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Make EVA gloves Alt #1
+linkTitle: Make EVA gloves Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Fiber](/docs/definitions/resource/polyester-fiber)|Resource|0.1 kg|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|1|
+|[polyurethane](/docs/definitions/resource/polyurethane)|Resource|0.05 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA gloves](/docs/definitions/part/eva-gloves)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-gloves.md b/content/docs/definitions/process/make-eva-gloves.md
new file mode 100644
index 0000000..fdfa6dc
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-gloves.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Make EVA gloves
+linkTitle: Make EVA gloves
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.1 kg|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|1|
+|[polyurethane](/docs/definitions/resource/polyurethane)|Resource|0.05 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA gloves](/docs/definitions/part/eva-gloves)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-helmet-alt--1.md b/content/docs/definitions/process/make-eva-helmet-alt--1.md
new file mode 100644
index 0000000..13e572f
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-helmet-alt--1.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Make EVA helmet Alt #1
+linkTitle: Make EVA helmet Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|300.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminized Mylar](/docs/definitions/resource/aluminized-mylar)|Resource|0.25 kg|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|0.5 kg|
+|[Polyester Fiber](/docs/definitions/resource/polyester-fiber)|Resource|0.2 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|0.5 kg|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[gasket](/docs/definitions/part/gasket)|Part|2|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|2|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA helmet](/docs/definitions/part/eva-helmet)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-helmet-alt--2.md b/content/docs/definitions/process/make-eva-helmet-alt--2.md
new file mode 100644
index 0000000..6b6ba43
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-helmet-alt--2.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Make EVA helmet Alt #2
+linkTitle: Make EVA helmet Alt #2
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|300.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminized Mylar](/docs/definitions/resource/aluminized-mylar)|Resource|0.25 kg|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.2 kg|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|0.5 kg|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|0.5 kg|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[gasket](/docs/definitions/part/gasket)|Part|2|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|2|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA helmet](/docs/definitions/part/eva-helmet)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-helmet.md b/content/docs/definitions/process/make-eva-helmet.md
new file mode 100644
index 0000000..c54c6af
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-helmet.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Make EVA helmet
+linkTitle: Make EVA helmet
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|300.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminized Mylar](/docs/definitions/resource/aluminized-mylar)|Resource|0.25 kg|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.2 kg|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|0.5 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|0.5 kg|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[gasket](/docs/definitions/part/gasket)|Part|2|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|2|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA helmet](/docs/definitions/part/eva-helmet)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-pads-alt--1.md b/content/docs/definitions/process/make-eva-pads-alt--1.md
new file mode 100644
index 0000000..51b35f4
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-pads-alt--1.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Make EVA pads Alt #1
+linkTitle: Make EVA pads Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.7 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Fiber](/docs/definitions/resource/polyester-fiber)|Resource|0.1 kg|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[polyurethane](/docs/definitions/resource/polyurethane)|Resource|0.05 kg|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA pads](/docs/definitions/part/eva-pads)|3|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-eva-pads.md b/content/docs/definitions/process/make-eva-pads.md
new file mode 100644
index 0000000..a7994ab
--- /dev/null
+++ b/content/docs/definitions/process/make-eva-pads.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Make EVA pads
+linkTitle: Make EVA pads
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.7 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.1 kg|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[polyurethane](/docs/definitions/resource/polyurethane)|Resource|0.05 kg|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA pads](/docs/definitions/part/eva-pads)|3|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-fire-extinguisher.md b/content/docs/definitions/process/make-fire-extinguisher.md
new file mode 100644
index 0000000..47df968
--- /dev/null
+++ b/content/docs/definitions/process/make-fire-extinguisher.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make fire extinguisher
+linkTitle: Make fire extinguisher
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[carbon dioxide](/docs/definitions/resource/carbon-dioxide)|Resource|10.0 kg|
+|[gasket](/docs/definitions/part/gasket)|Part|4|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|1|
+|[steel canister](/docs/definitions/part/steel-canister)|Part|1|
+|[valve](/docs/definitions/part/valve)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[fire extinguisher](/docs/definitions/part/fire-extinguisher)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-flood-light.md b/content/docs/definitions/process/make-flood-light.md
new file mode 100644
index 0000000..b04187c
--- /dev/null
+++ b/content/docs/definitions/process/make-flood-light.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Make flood light
+linkTitle: Make flood light
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|20.0 millisols|
+|Work Level:|90.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+|[copper wire](/docs/definitions/part/copper-wire)|Part|3|
+|[light emitting diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|9|
+|[power cable](/docs/definitions/part/power-cable)|Part|1|
+|[styrene](/docs/definitions/resource/styrene)|Resource|0.5 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|9|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[flood light](/docs/definitions/part/flood-light)|3|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-fuel-pump.md b/content/docs/definitions/process/make-fuel-pump.md
new file mode 100644
index 0000000..185d2e6
--- /dev/null
+++ b/content/docs/definitions/process/make-fuel-pump.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make fuel pump
+linkTitle: Make fuel pump
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|100.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|3|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[fuel pump](/docs/definitions/part/fuel-pump)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-garment-alt--1.md b/content/docs/definitions/process/make-garment-alt--1.md
new file mode 100644
index 0000000..98069b2
--- /dev/null
+++ b/content/docs/definitions/process/make-garment-alt--1.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make Garment Alt #1
+linkTitle: Make Garment Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Fiber](/docs/definitions/resource/polyester-fiber)|Resource|0.2 kg|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|1.0 kg|
+|[polyurethane](/docs/definitions/resource/polyurethane)|Resource|0.1 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Garment](/docs/definitions/part/garment)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-garment.md b/content/docs/definitions/process/make-garment.md
new file mode 100644
index 0000000..427b624
--- /dev/null
+++ b/content/docs/definitions/process/make-garment.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make Garment
+linkTitle: Make Garment
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.2 kg|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|1.0 kg|
+|[polyurethane](/docs/definitions/resource/polyurethane)|Resource|0.1 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Garment](/docs/definitions/part/garment)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-gas-canister.md b/content/docs/definitions/process/make-gas-canister.md
new file mode 100644
index 0000000..63f16bf
--- /dev/null
+++ b/content/docs/definitions/process/make-gas-canister.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make gas canister
+linkTitle: Make gas canister
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|5.0 millisols|
+|Work Level:|5.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[gasket](/docs/definitions/part/gasket)|Part|1|
+|[steel canister](/docs/definitions/part/steel-canister)|Part|1|
+|[valve](/docs/definitions/part/valve)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[gas canister](/docs/definitions/null/gas-canister)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-gasket.md b/content/docs/definitions/process/make-gasket.md
new file mode 100644
index 0000000..b983e1c
--- /dev/null
+++ b/content/docs/definitions/process/make-gasket.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make gasket
+linkTitle: Make gasket
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|4|
+|Process Time:|200.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[styrene](/docs/definitions/resource/styrene)|Resource|2.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[gasket](/docs/definitions/part/gasket)|20|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-heat-pump.md b/content/docs/definitions/process/make-heat-pump.md
new file mode 100644
index 0000000..efb63cb
--- /dev/null
+++ b/content/docs/definitions/process/make-heat-pump.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Make heat pump
+linkTitle: Make heat pump
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|1|
+|[condenser coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[copper sheet](/docs/definitions/part/copper-sheet)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[heat pipe](/docs/definitions/part/heat-pipe)|Part|2|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|1|
+|[ventilation fan](/docs/definitions/part/ventilation-fan)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|5|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[heat pump](/docs/definitions/part/heat-pump)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-heating-element.md b/content/docs/definitions/process/make-heating-element.md
new file mode 100644
index 0000000..f477d26
--- /dev/null
+++ b/content/docs/definitions/process/make-heating-element.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Make heating element
+linkTitle: Make heating element
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper wire](/docs/definitions/part/copper-wire)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|4|
+|[lime](/docs/definitions/resource/lime)|Resource|0.25 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|Resource|0.25 kg|
+|[sand](/docs/definitions/resource/sand)|Resource|0.25 kg|
+|[steel wire](/docs/definitions/part/steel-wire)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|4|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[heating element](/docs/definitions/part/heating-element)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-helmet-visor.md b/content/docs/definitions/process/make-helmet-visor.md
new file mode 100644
index 0000000..3d60acd
--- /dev/null
+++ b/content/docs/definitions/process/make-helmet-visor.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make helmet visor
+linkTitle: Make helmet visor
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|0.2 kg|
+|[glass](/docs/definitions/resource/glass)|Resource|3.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[helmet visor](/docs/definitions/part/helmet-visor)|13|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-iron-pipe.md b/content/docs/definitions/process/make-iron-pipe.md
new file mode 100644
index 0000000..2e6c832
--- /dev/null
+++ b/content/docs/definitions/process/make-iron-pipe.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make iron pipe
+linkTitle: Make iron pipe
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|20.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[iron sheet](/docs/definitions/part/iron-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[iron pipe](/docs/definitions/part/iron-pipe)|8|
+|[iron powder](/docs/definitions/resource/iron-powder)|0.8 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-iron-sheet.md b/content/docs/definitions/process/make-iron-sheet.md
new file mode 100644
index 0000000..b677dc0
--- /dev/null
+++ b/content/docs/definitions/process/make-iron-sheet.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make iron sheet
+linkTitle: Make iron sheet
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|15.7 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[iron sheet](/docs/definitions/part/iron-sheet)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-large-vehicle-frame.md b/content/docs/definitions/process/make-large-vehicle-frame.md
new file mode 100644
index 0000000..02c7cca
--- /dev/null
+++ b/content/docs/definitions/process/make-large-vehicle-frame.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make large vehicle frame
+linkTitle: Make large vehicle frame
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|300.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|5.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|1.0 kg|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[vehicle frame large](/docs/definitions/part/vehicle-frame-large)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-large-water-pump.md b/content/docs/definitions/process/make-large-water-pump.md
new file mode 100644
index 0000000..fa2b0e6
--- /dev/null
+++ b/content/docs/definitions/process/make-large-water-pump.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make large water pump
+linkTitle: Make large water pump
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|5|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|10|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|2|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|2|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[water pump large](/docs/definitions/part/water-pump-large)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-light-emitting-diode-kit.md b/content/docs/definitions/process/make-light-emitting-diode-kit.md
new file mode 100644
index 0000000..fc51c17
--- /dev/null
+++ b/content/docs/definitions/process/make-light-emitting-diode-kit.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Make light emitting diode kit
+linkTitle: Make light emitting diode kit
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|50.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|3|
+|[glass sheet](/docs/definitions/part/glass-sheet)|Part|1|
+|[light emitting diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|20|
+|[logic board](/docs/definitions/part/logic-board)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[light emitting diode kit](/docs/definitions/part/light-emitting-diode-kit)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-liquid-cooling-garment-alt--1.md b/content/docs/definitions/process/make-liquid-cooling-garment-alt--1.md
new file mode 100644
index 0000000..a3f9d2c
--- /dev/null
+++ b/content/docs/definitions/process/make-liquid-cooling-garment-alt--1.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Make Liquid Cooling Garment Alt #1
+linkTitle: Make Liquid Cooling Garment Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ The Liquid Cooling and Ventilation Garment (LCVG) serves to regulate the transport
water-vapor from the body and maximize thermal conductivity to maintain astronaut comfort.
See technical papers at https://www.science.gov/topicpages/v/ventilation+garment+lcvg
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.5 kg|
+|[Kevlar](/docs/definitions/resource/kevlar)|Resource|0.2 kg|
+|[Paraffin Composites](/docs/definitions/resource/paraffin-composites)|Resource|0.15 kg|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|0.1 kg|
+|[Thermoplastic Elastomer](/docs/definitions/resource/thermoplastic-elastomer)|Resource|0.4 kg|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Liquid Cooling Garment](/docs/definitions/part/liquid-cooling-garment)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-liquid-cooling-garment-alt--2.md b/content/docs/definitions/process/make-liquid-cooling-garment-alt--2.md
new file mode 100644
index 0000000..aa8151e
--- /dev/null
+++ b/content/docs/definitions/process/make-liquid-cooling-garment-alt--2.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Make Liquid Cooling Garment Alt #2
+linkTitle: Make Liquid Cooling Garment Alt #2
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ The Liquid Cooling and Ventilation Garment (LCVG) serves to regulate the transport
water-vapor from the body and maximize thermal conductivity to maintain astronaut comfort.
See technical papers at https://www.science.gov/topicpages/v/ventilation+garment+lcvg
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.5 kg|
+|[Fiber Cloth](/docs/definitions/resource/fiber-cloth)|Resource|0.2 kg|
+|[Paraffin Composites](/docs/definitions/resource/paraffin-composites)|Resource|0.15 kg|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|0.1 kg|
+|[Thermoplastic Elastomer](/docs/definitions/resource/thermoplastic-elastomer)|Resource|0.4 kg|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Liquid Cooling Garment](/docs/definitions/part/liquid-cooling-garment)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-liquid-cooling-garment-alt--3.md b/content/docs/definitions/process/make-liquid-cooling-garment-alt--3.md
new file mode 100644
index 0000000..e6f94b9
--- /dev/null
+++ b/content/docs/definitions/process/make-liquid-cooling-garment-alt--3.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Make Liquid Cooling Garment Alt #3
+linkTitle: Make Liquid Cooling Garment Alt #3
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ The Liquid Cooling and Ventilation Garment (LCVG) serves to regulate the transport
water-vapor from the body and maximize thermal conductivity to maintain astronaut comfort.
See technical papers at https://www.science.gov/topicpages/v/ventilation+garment+lcvg
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Nylon](/docs/definitions/resource/nylon)|Resource|0.2 kg|
+|[Paraffin Composites](/docs/definitions/resource/paraffin-composites)|Resource|0.15 kg|
+|[Polyester Fiber](/docs/definitions/resource/polyester-fiber)|Resource|0.5 kg|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|0.1 kg|
+|[Thermoplastic Elastomer](/docs/definitions/resource/thermoplastic-elastomer)|Resource|0.4 kg|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Liquid Cooling Garment](/docs/definitions/part/liquid-cooling-garment)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-liquid-cooling-garment.md b/content/docs/definitions/process/make-liquid-cooling-garment.md
new file mode 100644
index 0000000..f770c23
--- /dev/null
+++ b/content/docs/definitions/process/make-liquid-cooling-garment.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Make Liquid Cooling Garment
+linkTitle: Make Liquid Cooling Garment
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ The Liquid Cooling and Ventilation Garment (LCVG) serves to regulate the transport
water-vapor from the body and maximize thermal conductivity to maintain astronaut comfort.
See technical papers at https://www.science.gov/topicpages/v/ventilation+garment+lcvg
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.5 kg|
+|[Nylon](/docs/definitions/resource/nylon)|Resource|0.2 kg|
+|[Paraffin Composites](/docs/definitions/resource/paraffin-composites)|Resource|0.15 kg|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|0.1 kg|
+|[Thermoplastic Elastomer](/docs/definitions/resource/thermoplastic-elastomer)|Resource|0.4 kg|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Liquid Cooling Garment](/docs/definitions/part/liquid-cooling-garment)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-lubricant-bottle.md b/content/docs/definitions/process/make-lubricant-bottle.md
new file mode 100644
index 0000000..eb40f5b
--- /dev/null
+++ b/content/docs/definitions/process/make-lubricant-bottle.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make lubricant bottle
+linkTitle: Make lubricant bottle
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|3|
+|Process Time:|300.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-metal-oxide-varistor-alt--1.md b/content/docs/definitions/process/make-metal-oxide-varistor-alt--1.md
new file mode 100644
index 0000000..5faa4f3
--- /dev/null
+++ b/content/docs/definitions/process/make-metal-oxide-varistor-alt--1.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make Metal Oxide Varistor Alt #1
+linkTitle: Make Metal Oxide Varistor Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ A metal-oxide varistor is a surge protecting electronic component with an
electrical resistance that varies with the applied voltage. It is made of sintered ceramic
metal-oxide materials protecting against excessive transient voltages from sensitive components
when triggered.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[Sand](/docs/definitions/resource/sand)|Resource|0.25 kg|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|0.05 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Metal Oxide Varistor](/docs/definitions/part/metal-oxide-varistor)|4|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-metal-oxide-varistor.md b/content/docs/definitions/process/make-metal-oxide-varistor.md
new file mode 100644
index 0000000..232b6b9
--- /dev/null
+++ b/content/docs/definitions/process/make-metal-oxide-varistor.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make Metal Oxide Varistor
+linkTitle: Make Metal Oxide Varistor
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ A metal-oxide varistor is a surge protecting electronic component with an
electrical resistance that varies with the applied voltage. It is made of sintered ceramic
metal-oxide materials protecting against excessive transient voltages from sensitive components
when triggered.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|0.05 kg|
+|[Sand](/docs/definitions/resource/sand)|Resource|0.25 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Metal Oxide Varistor](/docs/definitions/part/metal-oxide-varistor)|4|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-methane-fuel-cell-stack.md b/content/docs/definitions/process/make-methane-fuel-cell-stack.md
new file mode 100644
index 0000000..1835691
--- /dev/null
+++ b/content/docs/definitions/process/make-methane-fuel-cell-stack.md
@@ -0,0 +1,43 @@
+---
+title: Manufacturing Process - Make methane fuel cell stack
+linkTitle: Make methane fuel cell stack
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Each fuel cell stack comprises 75 solid oxide fuel cells at 15 kWe.
Two steps :
Reforming: CH4 + 2H2O -> CO2 + 4H2
Fuel cell operation: 4H2 + 2O2 -> 4H2O
Overall: CH4 + 2O2 -> CO2 + 4H2 + 2H2O
References :
1. http://large.stanford.edu/courses/2023/ph240/thierstein2/
2. https://www.mtu.edu/news/2023/04/an-energy-breakthrough-tech-researchers-create-new-type-of-fuel-cell.html
3. https://www.nature.com/articles/s41467-023-43388-8
4. https://www.sciencedirect.com/science/article/pii/S0959652621000974
5. https://www.greenh2world.com/post/methane-fuel-cells-powering-the-future-with-clean-energy
6. https://pubs.rsc.org/en/content/articlelanding/2017/ra/c7ra05245f
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|600.0 millisols|
+|Power Required:|2.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|20|
+|[logic board](/docs/definitions/part/logic-board)|Part|1|
+|[methane fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|75|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[steel pipe](/docs/definitions/part/steel-pipe)|Part|2|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|5|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[methane fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-methane-solid-oxide-fuel-cells.md b/content/docs/definitions/process/make-methane-solid-oxide-fuel-cells.md
new file mode 100644
index 0000000..9d9a582
--- /dev/null
+++ b/content/docs/definitions/process/make-methane-solid-oxide-fuel-cells.md
@@ -0,0 +1,43 @@
+---
+title: Manufacturing Process - Make methane solid oxide fuel cells
+linkTitle: Make methane solid oxide fuel cells
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Each methane solid oxide fuel cell (SOFC) can generate 200W. Each fuel cell weighs 0.2 kg.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminum](/docs/definitions/resource/aluminum)|Resource|0.5 kg|
+|[ceramic electrolyte](/docs/definitions/resource/ceramic-electrolyte)|Resource|0.6 kg|
+|[glass](/docs/definitions/resource/glass)|Resource|0.1 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|0.5 kg|
+|[lithium](/docs/definitions/resource/lithium)|Resource|0.025 kg|
+|[nickel](/docs/definitions/resource/nickel)|Resource|0.025 kg|
+|[sodium carbonate](/docs/definitions/resource/sodium-carbonate)|Resource|0.25 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[methane fuel cell](/docs/definitions/part/methane-fuel-cell)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-methanol-fuel-cell-stack.md b/content/docs/definitions/process/make-methanol-fuel-cell-stack.md
new file mode 100644
index 0000000..bf915d2
--- /dev/null
+++ b/content/docs/definitions/process/make-methanol-fuel-cell-stack.md
@@ -0,0 +1,43 @@
+---
+title: Manufacturing Process - Make methanol fuel cell stack
+linkTitle: Make methanol fuel cell stack
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Each fuel cell stack comprises 75 solid oxide fuel cells at 15 kW.
For Direct methanol fuel cells (DMFCs),
1. Anode reaction: CH3OH + H2O → 6H+ + 6e- + CO2
2. Cathode reaction: 3/2O2 + 6H+ + 6e- → 3H2O
3. Overall reaction: CH3OH + 3/2O2 → 2H2O + CO2
For indirect methanol fuel cells,
a. Entity 1: Steam Reforming Reaction
Chemical Formula: CH₃OH + H₂O → CO + 3H₂
b. Entity 2: Fuel Cell Reaction
Overall Reaction: 3H₂ + CO₂ → 3H₂O + electrical energy
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|100.0 millisols|
+|Work Level:|800.0 millisols|
+|Power Required:|2.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|20|
+|[logic board](/docs/definitions/part/logic-board)|Part|1|
+|[methanol fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|75|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[steel pipe](/docs/definitions/part/steel-pipe)|Part|2|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|5|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[methanol fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-methanol-fuel-cells.md b/content/docs/definitions/process/make-methanol-fuel-cells.md
new file mode 100644
index 0000000..43bef56
--- /dev/null
+++ b/content/docs/definitions/process/make-methanol-fuel-cells.md
@@ -0,0 +1,43 @@
+---
+title: Manufacturing Process - Make methanol fuel cells
+linkTitle: Make methanol fuel cells
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Each methanol fuel cell (SOFC) can generate 200W. Each fuel cell weighs 0.2 kg.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminum](/docs/definitions/resource/aluminum)|Resource|0.5 kg|
+|[ceramic electrolyte](/docs/definitions/resource/ceramic-electrolyte)|Resource|0.6 kg|
+|[glass](/docs/definitions/resource/glass)|Resource|0.1 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|0.5 kg|
+|[lithium](/docs/definitions/resource/lithium)|Resource|0.025 kg|
+|[nickel](/docs/definitions/resource/nickel)|Resource|0.025 kg|
+|[sodium carbonate](/docs/definitions/resource/sodium-carbonate)|Resource|0.25 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[methane fuel cell](/docs/definitions/part/methane-fuel-cell)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-mushroom-containment-kit.md b/content/docs/definitions/process/make-mushroom-containment-kit.md
new file mode 100644
index 0000000..ad75dc1
--- /dev/null
+++ b/content/docs/definitions/process/make-mushroom-containment-kit.md
@@ -0,0 +1,45 @@
+---
+title: Manufacturing Process - Make mushroom containment kit
+linkTitle: Make mushroom containment kit
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[carbon dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|2|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|2|
+|[flexible hose](/docs/definitions/part/flexible-hose)|Part|3|
+|[gasket](/docs/definitions/part/gasket)|Part|2|
+|[heating element](/docs/definitions/part/heating-element)|Part|2|
+|[oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+|[valve](/docs/definitions/part/valve)|Part|5|
+|[ventilation fan](/docs/definitions/part/ventilation-fan)|Part|2|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[mushroom containment kit](/docs/definitions/part/mushroom-containment-kit)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-nitrates.md b/content/docs/definitions/process/make-nitrates.md
new file mode 100644
index 0000000..7e227ef
--- /dev/null
+++ b/content/docs/definitions/process/make-nitrates.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Make Nitrates
+linkTitle: Make Nitrates
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
1 mole of N2 : 14 g
1 mole of O2 : 16 g
For Nitrate NO3(-2)
14 g/mole N + 48 g/mole O = 62 g/mole NO3(-2)
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|5.0 millisols|
+|Work Level:|5.0 millisols|
+|Power Required:|0.01 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[nitrogen](/docs/definitions/resource/nitrogen)|Resource|1.4 kg|
+|[oxygen](/docs/definitions/resource/oxygen)|Resource|4.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[nitrite](/docs/definitions/resource/nitrite)|6.2 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-nitrites.md b/content/docs/definitions/process/make-nitrites.md
new file mode 100644
index 0000000..8f10a19
--- /dev/null
+++ b/content/docs/definitions/process/make-nitrites.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Make Nitrites
+linkTitle: Make Nitrites
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
1 mole of N2 : 14 g
1 mole of O2 : 16 g
For Nitrite NO2(-1)
14 g/mole N + 32 g/mole O = 46 g/mole NO2(-1)
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|5.0 millisols|
+|Work Level:|5.0 millisols|
+|Power Required:|0.01 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[nitrogen](/docs/definitions/resource/nitrogen)|Resource|1.4 kg|
+|[oxygen](/docs/definitions/resource/oxygen)|Resource|3.2 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[nitrite](/docs/definitions/resource/nitrite)|4.6 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-oxygen-pump.md b/content/docs/definitions/process/make-oxygen-pump.md
new file mode 100644
index 0000000..339a7c0
--- /dev/null
+++ b/content/docs/definitions/process/make-oxygen-pump.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make oxygen pump
+linkTitle: Make oxygen pump
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|100.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|3|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[oxygen pump](/docs/definitions/part/oxygen-pump)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp--large-batch-.md b/content/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp--large-batch-.md
new file mode 100644
index 0000000..23b9efb
--- /dev/null
+++ b/content/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp--large-batch-.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make paper, napkin and toilet tissue from pulp (large batch)
+linkTitle: Make paper, napkin and toilet tissue from pulp (large batch)
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|500.0 millisols|
+|Work Level:|150.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[bleaching chemical](/docs/definitions/resource/bleaching-chemical)|Resource|0.5 kg|
+|[calcium sulfate](/docs/definitions/resource/calcium-sulfate)|Resource|0.5 kg|
+|[pulp](/docs/definitions/resource/pulp)|Resource|50.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[napkin](/docs/definitions/resource/napkin)|20.0 kg|
+|[paper](/docs/definitions/resource/paper)|10.0 kg|
+|[toilet tissue](/docs/definitions/resource/toilet-tissue)|20.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp.md b/content/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp.md
new file mode 100644
index 0000000..896e930
--- /dev/null
+++ b/content/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make paper, napkin and toilet tissue from pulp
+linkTitle: Make paper, napkin and toilet tissue from pulp
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[bleaching chemical](/docs/definitions/resource/bleaching-chemical)|Resource|0.05 kg|
+|[calcium sulfate](/docs/definitions/resource/calcium-sulfate)|Resource|0.05 kg|
+|[pulp](/docs/definitions/resource/pulp)|Resource|5.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[napkin](/docs/definitions/resource/napkin)|2.0 kg|
+|[paper](/docs/definitions/resource/paper)|1.0 kg|
+|[toilet tissue](/docs/definitions/resource/toilet-tissue)|2.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-paraffin-composites-alt--1.md b/content/docs/definitions/process/make-paraffin-composites-alt--1.md
new file mode 100644
index 0000000..7717c65
--- /dev/null
+++ b/content/docs/definitions/process/make-paraffin-composites-alt--1.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make Paraffin Composites Alt #1
+linkTitle: Make Paraffin Composites Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Create paraffin using high density polyethylene (HDPE) composites as
form-stable solid-liquid phase change material (PCM) for thermal energy storage
purposes such as in EVA suit's liquid cooling garment.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Paraffin Composites](/docs/definitions/resource/paraffin-composites)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-paraffin-composites.md b/content/docs/definitions/process/make-paraffin-composites.md
new file mode 100644
index 0000000..b3c3800
--- /dev/null
+++ b/content/docs/definitions/process/make-paraffin-composites.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make Paraffin Composites
+linkTitle: Make Paraffin Composites
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Create paraffin using high density polyethylene (HDPE) composites as
form-stable solid-liquid phase change material (PCM) for thermal energy storage
purposes such as in EVA suit's liquid cooling garment.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Paraffin Composites](/docs/definitions/resource/paraffin-composites)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-pipe-wrench.md b/content/docs/definitions/process/make-pipe-wrench.md
new file mode 100644
index 0000000..59bcaf7
--- /dev/null
+++ b/content/docs/definitions/process/make-pipe-wrench.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make pipe wrench
+linkTitle: Make pipe wrench
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|60.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|0.1 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|1.0 kg|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[pipe wrench](/docs/definitions/part/pipe-wrench)|6|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-plastic-barrel-alt--1.md b/content/docs/definitions/process/make-plastic-barrel-alt--1.md
new file mode 100644
index 0000000..5585553
--- /dev/null
+++ b/content/docs/definitions/process/make-plastic-barrel-alt--1.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make plastic barrel Alt #1
+linkTitle: Make plastic barrel Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[barrel](/docs/definitions/null/barrel)|6|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-plastic-barrel.md b/content/docs/definitions/process/make-plastic-barrel.md
new file mode 100644
index 0000000..e88ee20
--- /dev/null
+++ b/content/docs/definitions/process/make-plastic-barrel.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make plastic barrel
+linkTitle: Make plastic barrel
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[barrel](/docs/definitions/null/barrel)|6|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-plastic-bottle-alt--1.md b/content/docs/definitions/process/make-plastic-bottle-alt--1.md
new file mode 100644
index 0000000..6f5a59f
--- /dev/null
+++ b/content/docs/definitions/process/make-plastic-bottle-alt--1.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make plastic bottle Alt #1
+linkTitle: Make plastic bottle Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-plastic-bottle-alt--2.md b/content/docs/definitions/process/make-plastic-bottle-alt--2.md
new file mode 100644
index 0000000..f4cf979
--- /dev/null
+++ b/content/docs/definitions/process/make-plastic-bottle-alt--2.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make plastic bottle Alt #2
+linkTitle: Make plastic bottle Alt #2
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[bisphenol-a](/docs/definitions/resource/bisphenol-a)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-plastic-bottle.md b/content/docs/definitions/process/make-plastic-bottle.md
new file mode 100644
index 0000000..af80b97
--- /dev/null
+++ b/content/docs/definitions/process/make-plastic-bottle.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make plastic bottle
+linkTitle: Make plastic bottle
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-plastic-pipe-alt--1.md b/content/docs/definitions/process/make-plastic-pipe-alt--1.md
new file mode 100644
index 0000000..6639842
--- /dev/null
+++ b/content/docs/definitions/process/make-plastic-pipe-alt--1.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make plastic pipe Alt #1
+linkTitle: Make plastic pipe Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|400.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|10.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[plastic pipe](/docs/definitions/part/plastic-pipe)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-plastic-pipe.md b/content/docs/definitions/process/make-plastic-pipe.md
new file mode 100644
index 0000000..476ac6e
--- /dev/null
+++ b/content/docs/definitions/process/make-plastic-pipe.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make plastic pipe
+linkTitle: Make plastic pipe
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|400.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|10.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[plastic pipe](/docs/definitions/part/plastic-pipe)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-plastic-specimen-box-alt--1.md b/content/docs/definitions/process/make-plastic-specimen-box-alt--1.md
new file mode 100644
index 0000000..d48a5fb
--- /dev/null
+++ b/content/docs/definitions/process/make-plastic-specimen-box-alt--1.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make plastic specimen box Alt #1
+linkTitle: Make plastic specimen box Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[specimen box](/docs/definitions/null/specimen-box)|12|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-plastic-specimen-box.md b/content/docs/definitions/process/make-plastic-specimen-box.md
new file mode 100644
index 0000000..2ef7881
--- /dev/null
+++ b/content/docs/definitions/process/make-plastic-specimen-box.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make plastic specimen box
+linkTitle: Make plastic specimen box
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[specimen box](/docs/definitions/null/specimen-box)|12|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-plastic-tubing.md b/content/docs/definitions/process/make-plastic-tubing.md
new file mode 100644
index 0000000..cb8673c
--- /dev/null
+++ b/content/docs/definitions/process/make-plastic-tubing.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make plastic tubing
+linkTitle: Make plastic tubing
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|4|
+|Process Time:|75.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-polypropylene-rope.md b/content/docs/definitions/process/make-polypropylene-rope.md
new file mode 100644
index 0000000..cfddb16
--- /dev/null
+++ b/content/docs/definitions/process/make-polypropylene-rope.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make Polypropylene rope
+linkTitle: Make Polypropylene rope
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|2.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[rope](/docs/definitions/part/rope)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-pot-alt--1.md b/content/docs/definitions/process/make-pot-alt--1.md
new file mode 100644
index 0000000..ef5c99e
--- /dev/null
+++ b/content/docs/definitions/process/make-pot-alt--1.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make pot Alt #1
+linkTitle: Make pot Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[pot](/docs/definitions/null/pot)|8|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-pot.md b/content/docs/definitions/process/make-pot.md
new file mode 100644
index 0000000..622f8ec
--- /dev/null
+++ b/content/docs/definitions/process/make-pot.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make pot
+linkTitle: Make pot
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[pot](/docs/definitions/null/pot)|8|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-power-panel-alt--1.md b/content/docs/definitions/process/make-power-panel-alt--1.md
new file mode 100644
index 0000000..62e5579
--- /dev/null
+++ b/content/docs/definitions/process/make-power-panel-alt--1.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Make Power Panel Alt #1
+linkTitle: Make Power Panel Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ A power panel safely distributes electricity throughout a building. It divides
an electrical power feed into branch circuits, while providing a protective circuit
breaker or fuse for each circuit, in a common enclosure. A panelboard services to protect
branch circuits from overloads and short circuits.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|6|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|2|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+|[Surge Protector](/docs/definitions/part/surge-protector)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Power Panel](/docs/definitions/part/power-panel)|3|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-power-panel.md b/content/docs/definitions/process/make-power-panel.md
new file mode 100644
index 0000000..1755669
--- /dev/null
+++ b/content/docs/definitions/process/make-power-panel.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Make Power Panel
+linkTitle: Make Power Panel
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ A power panel safely distributes electricity throughout a building. It divides
an electrical power feed into branch circuits, while providing a protective circuit
breaker or fuse for each circuit, in a common enclosure. A panelboard services to protect
branch circuits from overloads and short circuits.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|6|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|1.0 kg|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|2|
+|[Steel Sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[Surge Protector](/docs/definitions/part/surge-protector)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Power Panel](/docs/definitions/part/power-panel)|3|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-pressure-suit-alt--1.md b/content/docs/definitions/process/make-pressure-suit-alt--1.md
new file mode 100644
index 0000000..b249d5c
--- /dev/null
+++ b/content/docs/definitions/process/make-pressure-suit-alt--1.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make pressure suit Alt #1
+linkTitle: Make pressure suit Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Fiber](/docs/definitions/resource/polyester-fiber)|Resource|0.3 kg|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|0.5 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|0.2 kg|
+|[Silicone Elastomer](/docs/definitions/resource/silicone-elastomer)|Resource|1.0 kg|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[pressure suit](/docs/definitions/part/pressure-suit)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-pressure-suit-alt--2.md b/content/docs/definitions/process/make-pressure-suit-alt--2.md
new file mode 100644
index 0000000..db7e644
--- /dev/null
+++ b/content/docs/definitions/process/make-pressure-suit-alt--2.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make pressure suit Alt #2
+linkTitle: Make pressure suit Alt #2
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.3 kg|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|0.5 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|0.2 kg|
+|[Silicone Elastomer](/docs/definitions/resource/silicone-elastomer)|Resource|1.0 kg|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[pressure suit](/docs/definitions/part/pressure-suit)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-pressure-suit-alt--3.md b/content/docs/definitions/process/make-pressure-suit-alt--3.md
new file mode 100644
index 0000000..0c0416c
--- /dev/null
+++ b/content/docs/definitions/process/make-pressure-suit-alt--3.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make pressure suit Alt #3
+linkTitle: Make pressure suit Alt #3
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.3 kg|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|0.5 kg|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|0.2 kg|
+|[Silicone Elastomer](/docs/definitions/resource/silicone-elastomer)|Resource|1.0 kg|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[pressure suit](/docs/definitions/part/pressure-suit)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-pressure-suit.md b/content/docs/definitions/process/make-pressure-suit.md
new file mode 100644
index 0000000..71641e2
--- /dev/null
+++ b/content/docs/definitions/process/make-pressure-suit.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make pressure suit
+linkTitle: Make pressure suit
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.3 kg|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|0.5 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|0.2 kg|
+|[Silicone Elastomer](/docs/definitions/resource/silicone-elastomer)|Resource|1.0 kg|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[pressure suit](/docs/definitions/part/pressure-suit)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste--large-batch-.md b/content/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste--large-batch-.md
new file mode 100644
index 0000000..2fcde59
--- /dev/null
+++ b/content/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste--large-batch-.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make pulp from cane fiber and crop waste (large batch)
+linkTitle: Make pulp from cane fiber and crop waste (large batch)
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|800.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|25.0 kg|
+|[crop waste](/docs/definitions/resource/crop-waste)|Resource|25.0 kg|
+|[water](/docs/definitions/resource/water)|Resource|10.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[grey water](/docs/definitions/resource/grey-water)|4.0 kg|
+|[pulp](/docs/definitions/resource/pulp)|55.0 kg|
+|[solid waste](/docs/definitions/resource/solid-waste)|1.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste.md b/content/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste.md
new file mode 100644
index 0000000..f8e7c62
--- /dev/null
+++ b/content/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make pulp from cane fiber and crop waste
+linkTitle: Make pulp from cane fiber and crop waste
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|2|
+|Process Time:|300.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|2.5 kg|
+|[crop waste](/docs/definitions/resource/crop-waste)|Resource|2.5 kg|
+|[water](/docs/definitions/resource/water)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[grey water](/docs/definitions/resource/grey-water)|0.4 kg|
+|[pulp](/docs/definitions/resource/pulp)|5.5 kg|
+|[solid waste](/docs/definitions/resource/solid-waste)|0.1 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-radio-antenna-alt--1.md b/content/docs/definitions/process/make-radio-antenna-alt--1.md
new file mode 100644
index 0000000..3196cb2
--- /dev/null
+++ b/content/docs/definitions/process/make-radio-antenna-alt--1.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Make radio antenna Alt #1
+linkTitle: Make radio antenna Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|0.5 kg|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|1|
+|[styrene](/docs/definitions/resource/styrene)|Resource|0.5 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[radio antenna](/docs/definitions/part/radio-antenna)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-radio-antenna.md b/content/docs/definitions/process/make-radio-antenna.md
new file mode 100644
index 0000000..855fb1f
--- /dev/null
+++ b/content/docs/definitions/process/make-radio-antenna.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Make radio antenna
+linkTitle: Make radio antenna
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|0.5 kg|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|1|
+|[styrene](/docs/definitions/resource/styrene)|Resource|0.5 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[radio antenna](/docs/definitions/part/radio-antenna)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-rover-wheels.md b/content/docs/definitions/process/make-rover-wheels.md
new file mode 100644
index 0000000..bb2e516
--- /dev/null
+++ b/content/docs/definitions/process/make-rover-wheels.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make rover wheels
+linkTitle: Make rover wheels
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|400.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|2|
+|[steel wire](/docs/definitions/part/steel-wire)|Part|40|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[rover wheel](/docs/definitions/part/rover-wheel)|4|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-satellite-dish-alt--1.md b/content/docs/definitions/process/make-satellite-dish-alt--1.md
new file mode 100644
index 0000000..9a25d62
--- /dev/null
+++ b/content/docs/definitions/process/make-satellite-dish-alt--1.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Make satellite dish Alt #1
+linkTitle: Make satellite dish Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.4 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|3|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|2|
+|[polycarbonate resin](/docs/definitions/resource/polycarbonate-resin)|Resource|0.5 kg|
+|[styrene](/docs/definitions/resource/styrene)|Resource|0.5 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|4|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[satellite dish](/docs/definitions/part/satellite-dish)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-satellite-dish.md b/content/docs/definitions/process/make-satellite-dish.md
new file mode 100644
index 0000000..e7e0d66
--- /dev/null
+++ b/content/docs/definitions/process/make-satellite-dish.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Make satellite dish
+linkTitle: Make satellite dish
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.4 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|0.5 kg|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|3|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|2|
+|[styrene](/docs/definitions/resource/styrene)|Resource|0.5 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|4|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[satellite dish](/docs/definitions/part/satellite-dish)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-sheet-glass.md b/content/docs/definitions/process/make-sheet-glass.md
new file mode 100644
index 0000000..2c56a31
--- /dev/null
+++ b/content/docs/definitions/process/make-sheet-glass.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make sheet glass
+linkTitle: Make sheet glass
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|300.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[sand](/docs/definitions/resource/sand)|Resource|26.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[glass sheet](/docs/definitions/part/glass-sheet)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-silicone-elastomer.md b/content/docs/definitions/process/make-silicone-elastomer.md
new file mode 100644
index 0000000..ebdb315
--- /dev/null
+++ b/content/docs/definitions/process/make-silicone-elastomer.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make Silicone Elastomer
+linkTitle: Make Silicone Elastomer
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ https://en.wikipedia.org/wiki/Silicone_rubber
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|2.0 kg|
+|[Hydrogen](/docs/definitions/resource/hydrogen)|Resource|0.5 kg|
+|[Silica](/docs/definitions/resource/silica)|Resource|3.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Silicone Elastomer](/docs/definitions/resource/silicone-elastomer)|5.5 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-small-vehicle-frame.md b/content/docs/definitions/process/make-small-vehicle-frame.md
new file mode 100644
index 0000000..d12ca53
--- /dev/null
+++ b/content/docs/definitions/process/make-small-vehicle-frame.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make small vehicle frame
+linkTitle: Make small vehicle frame
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|550.0 millisols|
+|Work Level:|550.0 millisols|
+|Power Required:|3.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|0.5 kg|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[vehicle frame small](/docs/definitions/part/vehicle-frame-small)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-small-water-pump.md b/content/docs/definitions/process/make-small-water-pump.md
new file mode 100644
index 0000000..0df4d5b
--- /dev/null
+++ b/content/docs/definitions/process/make-small-water-pump.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make small water pump
+linkTitle: Make small water pump
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|6|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|6|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|6|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[water pump small](/docs/definitions/part/water-pump-small)|3|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-small-wheels.md b/content/docs/definitions/process/make-small-wheels.md
new file mode 100644
index 0000000..a0add85
--- /dev/null
+++ b/content/docs/definitions/process/make-small-wheels.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make small wheels
+linkTitle: Make small wheels
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[steel wire](/docs/definitions/part/steel-wire)|Part|20|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[wheel small](/docs/definitions/part/wheel-small)|4|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-socket-wrench.md b/content/docs/definitions/process/make-socket-wrench.md
new file mode 100644
index 0000000..29f3c99
--- /dev/null
+++ b/content/docs/definitions/process/make-socket-wrench.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make socket wrench
+linkTitle: Make socket wrench
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|40.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|0.1 kg|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[socket wrench](/docs/definitions/part/socket-wrench)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation--large-batch-.md b/content/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation--large-batch-.md
new file mode 100644
index 0000000..7e8644c
--- /dev/null
+++ b/content/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation--large-batch-.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make sodium hypochlorite for bleaching and sanitation (large batch)
+linkTitle: Make sodium hypochlorite for bleaching and sanitation (large batch)
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|400.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|58.5 kg|
+|[water](/docs/definitions/resource/water)|Resource|18.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[hydrogen](/docs/definitions/resource/hydrogen)|2.0 kg|
+|[sodium hypochlorite](/docs/definitions/resource/sodium-hypochlorite)|74.5 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation.md b/content/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation.md
new file mode 100644
index 0000000..823c878
--- /dev/null
+++ b/content/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make sodium hypochlorite for bleaching and sanitation
+linkTitle: Make sodium hypochlorite for bleaching and sanitation
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[table salt](/docs/definitions/resource/table-salt)|Resource|5.85 kg|
+|[water](/docs/definitions/resource/water)|Resource|1.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[hydrogen](/docs/definitions/resource/hydrogen)|0.2 kg|
+|[sodium hypochlorite](/docs/definitions/resource/sodium-hypochlorite)|7.45 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-spark-plug.md b/content/docs/definitions/process/make-spark-plug.md
new file mode 100644
index 0000000..34b0f74
--- /dev/null
+++ b/content/docs/definitions/process/make-spark-plug.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make spark plug
+linkTitle: Make spark plug
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum oxide](/docs/definitions/resource/aluminum-oxide)|Resource|0.5 kg|
+|[copper](/docs/definitions/resource/copper)|Resource|2.0 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|2.0 kg|
+|[lime](/docs/definitions/resource/lime)|Resource|2.0 kg|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[spark plug](/docs/definitions/part/spark-plug)|100|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-steel-canister.md b/content/docs/definitions/process/make-steel-canister.md
new file mode 100644
index 0000000..0d8abe1
--- /dev/null
+++ b/content/docs/definitions/process/make-steel-canister.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make steel canister
+linkTitle: Make steel canister
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[iron powder](/docs/definitions/resource/iron-powder)|0.4 kg|
+|[steel canister](/docs/definitions/part/steel-canister)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-steel-pipe.md b/content/docs/definitions/process/make-steel-pipe.md
new file mode 100644
index 0000000..c7182a9
--- /dev/null
+++ b/content/docs/definitions/process/make-steel-pipe.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make steel pipe
+linkTitle: Make steel pipe
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|20.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[iron powder](/docs/definitions/resource/iron-powder)|0.8 kg|
+|[steel pipe](/docs/definitions/part/steel-pipe)|8|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-steel-sheet.md b/content/docs/definitions/process/make-steel-sheet.md
new file mode 100644
index 0000000..f7e14f3
--- /dev/null
+++ b/content/docs/definitions/process/make-steel-sheet.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make steel sheet
+linkTitle: Make steel sheet
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|10.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|0.1 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|7.7 kg|
+|[manganese](/docs/definitions/resource/manganese)|Resource|0.1 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[steel sheet](/docs/definitions/part/steel-sheet)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-steel-valve.md b/content/docs/definitions/process/make-steel-valve.md
new file mode 100644
index 0000000..4dde44f
--- /dev/null
+++ b/content/docs/definitions/process/make-steel-valve.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Make steel valve
+linkTitle: Make steel valve
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[valve](/docs/definitions/part/valve)|25|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-suit-heating-unit.md b/content/docs/definitions/process/make-suit-heating-unit.md
new file mode 100644
index 0000000..deef5bf
--- /dev/null
+++ b/content/docs/definitions/process/make-suit-heating-unit.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make suit heating unit
+linkTitle: Make suit heating unit
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[heat pipe](/docs/definitions/part/heat-pipe)|Part|1|
+|[heating element](/docs/definitions/part/heating-element)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|4|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[suit heating unit](/docs/definitions/part/suit-heating-unit)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-surge-protector-alt--1.md b/content/docs/definitions/process/make-surge-protector-alt--1.md
new file mode 100644
index 0000000..2fadc39
--- /dev/null
+++ b/content/docs/definitions/process/make-surge-protector-alt--1.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make Surge Protector Alt #1
+linkTitle: Make Surge Protector Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ A surge protector protects electrical devices in alternating current (AC) circuits from
voltage spikes, which can arise from a variety of causes including lightning strikes in the
vicinity and have a very short duration measured in microseconds. It limits the voltage supplied
to electrical devices to a certain threshold, by short-circuiting current to ground or absorbing
the spike when a transient occurs, thus avoiding damage to the appliances and devices connected
to it.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[Metal Oxide Varistor](/docs/definitions/part/metal-oxide-varistor)|Part|4|
+|[Styrene](/docs/definitions/resource/styrene)|Resource|0.2 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Surge Protector](/docs/definitions/part/surge-protector)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-surge-protector.md b/content/docs/definitions/process/make-surge-protector.md
new file mode 100644
index 0000000..56a1a42
--- /dev/null
+++ b/content/docs/definitions/process/make-surge-protector.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make Surge Protector
+linkTitle: Make Surge Protector
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ A surge protector protects electrical devices in alternating current (AC) circuits from
voltage spikes, which can arise from a variety of causes including lightning strikes in the
vicinity and have a very short duration measured in microseconds. It limits the voltage supplied
to electrical devices to a certain threshold, by short-circuiting current to ground or absorbing
the spike when a transient occurs, thus avoiding damage to the appliances and devices connected
to it.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[Metal Oxide Varistor](/docs/definitions/part/metal-oxide-varistor)|Part|4|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|0.2 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Surge Protector](/docs/definitions/part/surge-protector)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-thermoplastic-elastomer.md b/content/docs/definitions/process/make-thermoplastic-elastomer.md
new file mode 100644
index 0000000..32bdce7
--- /dev/null
+++ b/content/docs/definitions/process/make-thermoplastic-elastomer.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make Thermoplastic Elastomer
+linkTitle: Make Thermoplastic Elastomer
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
https://tractus3d.com/materials/tpe/
https://www.elastomer.kuraray.com/blog/what-is-tpe/#processing
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|7.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Thermoplastic Elastomer](/docs/definitions/resource/thermoplastic-elastomer)|6.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-timing-belt.md b/content/docs/definitions/process/make-timing-belt.md
new file mode 100644
index 0000000..d0f6205
--- /dev/null
+++ b/content/docs/definitions/process/make-timing-belt.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make timing belt
+linkTitle: Make timing belt
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|4|
+|Process Time:|75.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|1|
+|[styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[timing belt](/docs/definitions/part/timing-belt)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-wheelbarrow.md b/content/docs/definitions/process/make-wheelbarrow.md
new file mode 100644
index 0000000..09f967e
--- /dev/null
+++ b/content/docs/definitions/process/make-wheelbarrow.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make wheelbarrow
+linkTitle: Make wheelbarrow
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.75 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|0.15 kg|
+|[iron sheet](/docs/definitions/part/iron-sheet)|Part|1|
+|[steel wire](/docs/definitions/part/steel-wire)|Part|8|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[wheelbarrow](/docs/definitions/null/wheelbarrow)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-winch.md b/content/docs/definitions/process/make-winch.md
new file mode 100644
index 0000000..6c23202
--- /dev/null
+++ b/content/docs/definitions/process/make-winch.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Make winch
+linkTitle: Make winch
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|80.0 millisols|
+|Work Level:|40.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|0.5 kg|
+|[rover wheel](/docs/definitions/part/rover-wheel)|Part|2|
+|[steel cable](/docs/definitions/part/steel-cable)|Part|4|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|6|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[winch](/docs/definitions/part/winch)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-wire-connector.md b/content/docs/definitions/process/make-wire-connector.md
new file mode 100644
index 0000000..d618b74
--- /dev/null
+++ b/content/docs/definitions/process/make-wire-connector.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Make wire connector
+linkTitle: Make wire connector
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|2|
+|Process Time:|400.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|1|
+|[styrene](/docs/definitions/resource/styrene)|Resource|0.5 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[wire connector](/docs/definitions/part/wire-connector)|15|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-work-gloves-alt--1.md b/content/docs/definitions/process/make-work-gloves-alt--1.md
new file mode 100644
index 0000000..482ed3b
--- /dev/null
+++ b/content/docs/definitions/process/make-work-gloves-alt--1.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make work gloves Alt #1
+linkTitle: Make work gloves Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Fiber](/docs/definitions/resource/polyester-fiber)|Resource|0.1 kg|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[work gloves](/docs/definitions/part/work-gloves)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/make-work-gloves.md b/content/docs/definitions/process/make-work-gloves.md
new file mode 100644
index 0000000..6f89290
--- /dev/null
+++ b/content/docs/definitions/process/make-work-gloves.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Make work gloves
+linkTitle: Make work gloves
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Cane Fiber](/docs/definitions/resource/cane-fiber)|Resource|0.1 kg|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[work gloves](/docs/definitions/part/work-gloves)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-10-kw-motor.md b/content/docs/definitions/process/manufacture-10-kw-motor.md
new file mode 100644
index 0000000..45519d6
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-10-kw-motor.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Manufacture 10 kW Motor
+linkTitle: Manufacture 10 kW Motor
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper wire](/docs/definitions/part/copper-wire)|Part|12|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|12|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|1|
+|[iron sheet](/docs/definitions/part/iron-sheet)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|12|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-30-kw-motor.md b/content/docs/definitions/process/manufacture-30-kw-motor.md
new file mode 100644
index 0000000..5ea5574
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-30-kw-motor.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Manufacture 30 kW Motor
+linkTitle: Manufacture 30 kW Motor
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|150.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper wire](/docs/definitions/part/copper-wire)|Part|22|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|24|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|2|
+|[iron sheet](/docs/definitions/part/iron-sheet)|Part|2|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|3|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|24|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-5-kw-motor.md b/content/docs/definitions/process/manufacture-5-kw-motor.md
new file mode 100644
index 0000000..2f45a87
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-5-kw-motor.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Manufacture 5 kW Motor
+linkTitle: Manufacture 5 kW Motor
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper wire](/docs/definitions/part/copper-wire)|Part|9|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|9|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|1|
+|[iron sheet](/docs/definitions/part/iron-sheet)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|2|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|9|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|3|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-autoclave.md b/content/docs/definitions/process/manufacture-autoclave.md
new file mode 100644
index 0000000..aed74a1
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-autoclave.md
@@ -0,0 +1,44 @@
+---
+title: Manufacturing Process - Manufacture autoclave
+linkTitle: Manufacture autoclave
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|700.0 millisols|
+|Power Required:|2.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|2|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|3|
+|[heating element](/docs/definitions/part/heating-element)|Part|6|
+|[logic board](/docs/definitions/part/logic-board)|Part|1|
+|[microcontroller](/docs/definitions/part/microcontroller)|Part|1|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|2|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|2|
+|[ventilation fan](/docs/definitions/part/ventilation-fan)|Part|1|
+|[water pump small](/docs/definitions/part/water-pump-small)|Part|2|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|6|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[autoclave](/docs/definitions/part/autoclave)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-bag.md b/content/docs/definitions/process/manufacture-bag.md
new file mode 100644
index 0000000..5b62754
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-bag.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Manufacture bag
+linkTitle: Manufacture bag
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|5.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|5|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|5|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[bag](/docs/definitions/null/bag)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-battery-module-alt--1.md b/content/docs/definitions/process/manufacture-battery-module-alt--1.md
new file mode 100644
index 0000000..99085ff
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-battery-module-alt--1.md
@@ -0,0 +1,44 @@
+---
+title: Manufacturing Process - Manufacture battery module Alt #1
+linkTitle: Manufacture battery module Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ At operating voltage of 4.2V, the lithium content is 0.075g/Wh.
For a cathode material (LiMn1.5Ni0.5O4) on a lithium ion battery, when cycled at C/30
in the 2.5-4.3V voltage range, the theoretical capacity of LiNMC Q_specific is 165 mAh g-1.
or 160 Ah kg-1. At 3.8V, 3.8V * 160 mAh g-1 = 608 Wh kg-1. Content is 1.6447 kg/kWh.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|5.0 kg|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|12|
+|[iron sheet](/docs/definitions/part/iron-sheet)|Part|1|
+|[lithium](/docs/definitions/resource/lithium)|Resource|0.05 kg|
+|[logic board](/docs/definitions/part/logic-board)|Part|1|
+|[nickel](/docs/definitions/resource/nickel)|Resource|0.25 kg|
+|[potash lye](/docs/definitions/resource/potash-lye)|Resource|0.5 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|4|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[battery module](/docs/definitions/part/battery-module)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-battery-module.md b/content/docs/definitions/process/manufacture-battery-module.md
new file mode 100644
index 0000000..6ae0baf
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-battery-module.md
@@ -0,0 +1,44 @@
+---
+title: Manufacturing Process - Manufacture battery module
+linkTitle: Manufacture battery module
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ At operating voltage of 4.2V, the lithium content is 0.075g/Wh.
For a cathode material (LiMn1.5Ni0.5O4) on a lithium ion battery, when cycled at C/30
in the 2.5-4.3V voltage range, the theoretical capacity of LiNMC Q_specific is 165 mAh g-1.
or 160 Ah kg-1. At 3.8V, 3.8V * 160 mAh g-1 = 608 Wh kg-1. Content is 1.6447 kg/kWh.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|5.0 kg|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|12|
+|[iron sheet](/docs/definitions/part/iron-sheet)|Part|1|
+|[lithium](/docs/definitions/resource/lithium)|Resource|0.05 kg|
+|[logic board](/docs/definitions/part/logic-board)|Part|1|
+|[nickel](/docs/definitions/resource/nickel)|Resource|0.25 kg|
+|[potash lye](/docs/definitions/resource/potash-lye)|Resource|0.5 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|4|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[battery module](/docs/definitions/part/battery-module)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-bore-drill-bit.md b/content/docs/definitions/process/manufacture-bore-drill-bit.md
new file mode 100644
index 0000000..4783cc2
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-bore-drill-bit.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Manufacture bore drill bit
+linkTitle: Manufacture bore drill bit
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|150.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|5|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[bore drill bit](/docs/definitions/part/bore-drill-bit)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-bore-drill-pipe.md b/content/docs/definitions/process/manufacture-bore-drill-pipe.md
new file mode 100644
index 0000000..161672b
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-bore-drill-pipe.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Manufacture bore drill pipe
+linkTitle: Manufacture bore drill pipe
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|150.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[bore drill pipe](/docs/definitions/part/bore-drill-pipe)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-bulldozer-blade.md b/content/docs/definitions/process/manufacture-bulldozer-blade.md
new file mode 100644
index 0000000..98088d0
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-bulldozer-blade.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Manufacture bulldozer blade
+linkTitle: Manufacture bulldozer blade
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|300.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|2|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[bulldozer blade](/docs/definitions/part/bulldozer-blade)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-capacitors.md b/content/docs/definitions/process/manufacture-capacitors.md
new file mode 100644
index 0000000..4553d1d
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-capacitors.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Manufacture capacitors
+linkTitle: Manufacture capacitors
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|300.0 millisols|
+|Work Level:|75.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminum](/docs/definitions/resource/aluminum)|Resource|0.1 kg|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|1.0 kg|
+|[aluminum oxide](/docs/definitions/resource/aluminum-oxide)|Resource|0.1 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|0.05 kg|
+|[nickel](/docs/definitions/resource/nickel)|Resource|0.05 kg|
+|[silicon](/docs/definitions/resource/silicon)|Resource|1.0 kg|
+|[zinc](/docs/definitions/resource/zinc)|Resource|0.05 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[capacitor](/docs/definitions/part/capacitor)|150|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-carbon-dioxide-laser.md b/content/docs/definitions/process/manufacture-carbon-dioxide-laser.md
new file mode 100644
index 0000000..7452840
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-carbon-dioxide-laser.md
@@ -0,0 +1,43 @@
+---
+title: Manufacturing Process - Manufacture carbon dioxide laser
+linkTitle: Manufacture carbon dioxide laser
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|600.0 millisols|
+|Work Level:|400.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[diode](/docs/definitions/part/diode)|Part|15|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[glass sheet](/docs/definitions/part/glass-sheet)|Part|1|
+|[light emitting diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|5|
+|[optical lens](/docs/definitions/part/optical-lens)|Part|10|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[semiconductor wafer](/docs/definitions/part/semiconductor-wafer)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[carbon dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-communications-circuit-board.md b/content/docs/definitions/process/manufacture-communications-circuit-board.md
new file mode 100644
index 0000000..20e4a56
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-communications-circuit-board.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Manufacture communications circuit board
+linkTitle: Manufacture communications circuit board
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|500.0 millisols|
+|Work Level:|400.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[light emitting diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|10|
+|[logic board](/docs/definitions/part/logic-board)|Part|2|
+|[microcontroller](/docs/definitions/part/microcontroller)|Part|1|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[communications circuit board](/docs/definitions/part/communications-circuit-board)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-crane-boom.md b/content/docs/definitions/process/manufacture-crane-boom.md
new file mode 100644
index 0000000..ba03eb9
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-crane-boom.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Manufacture crane boom
+linkTitle: Manufacture crane boom
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|400.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|4|
+|[steel wire](/docs/definitions/part/steel-wire)|Part|5|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[crane boom](/docs/definitions/part/crane-boom)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-diodes.md b/content/docs/definitions/process/manufacture-diodes.md
new file mode 100644
index 0000000..9c2ed1b
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-diodes.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Manufacture diodes
+linkTitle: Manufacture diodes
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|500.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminum](/docs/definitions/resource/aluminum)|Resource|0.1 kg|
+|[aluminum oxide](/docs/definitions/resource/aluminum-oxide)|Resource|0.1 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|0.1 kg|
+|[silicon](/docs/definitions/resource/silicon)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[diode](/docs/definitions/part/diode)|200|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-electrostatic-precipitator.md b/content/docs/definitions/process/manufacture-electrostatic-precipitator.md
new file mode 100644
index 0000000..55a5605
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-electrostatic-precipitator.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Manufacture electrostatic precipitator
+linkTitle: Manufacture electrostatic precipitator
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[pathogen filter](/docs/definitions/part/pathogen-filter)|Part|1|
+|[steel pipe](/docs/definitions/part/steel-pipe)|Part|6|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|3|
+|[transformer](/docs/definitions/part/transformer)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|5|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[electrostatic precipitator](/docs/definitions/part/electrostatic-precipitator)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-eva-battery-alt--1.md b/content/docs/definitions/process/manufacture-eva-battery-alt--1.md
new file mode 100644
index 0000000..8f8bd53
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-eva-battery-alt--1.md
@@ -0,0 +1,43 @@
+---
+title: Manufacturing Process - Manufacture EVA battery Alt #1
+linkTitle: Manufacture EVA battery Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Assume a small EVA battery has the capacity of 0.5kWh.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|0.75 kg|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|8|
+|[lithium](/docs/definitions/resource/lithium)|Resource|0.01 kg|
+|[logic board](/docs/definitions/part/logic-board)|Part|2|
+|[nickel](/docs/definitions/resource/nickel)|Resource|0.05 kg|
+|[potash lye](/docs/definitions/resource/potash-lye)|Resource|0.1 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|4|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA battery](/docs/definitions/part/eva-battery)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-eva-battery.md b/content/docs/definitions/process/manufacture-eva-battery.md
new file mode 100644
index 0000000..df4db2e
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-eva-battery.md
@@ -0,0 +1,43 @@
+---
+title: Manufacturing Process - Manufacture EVA battery
+linkTitle: Manufacture EVA battery
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Assume a small EVA battery has the capacity of 0.5kWh.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|0.75 kg|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|8|
+|[lithium](/docs/definitions/resource/lithium)|Resource|0.01 kg|
+|[logic board](/docs/definitions/part/logic-board)|Part|2|
+|[nickel](/docs/definitions/resource/nickel)|Resource|0.05 kg|
+|[potash lye](/docs/definitions/resource/potash-lye)|Resource|0.1 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|4|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[EVA battery](/docs/definitions/part/eva-battery)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-flexible-hose.md b/content/docs/definitions/process/manufacture-flexible-hose.md
new file mode 100644
index 0000000..ad85bf9
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-flexible-hose.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Manufacture flexible hose
+linkTitle: Manufacture flexible hose
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|0.5 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[flexible hose](/docs/definitions/part/flexible-hose)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-food-blender.md b/content/docs/definitions/process/manufacture-food-blender.md
new file mode 100644
index 0000000..0f7d579
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-food-blender.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Manufacture food blender
+linkTitle: Manufacture food blender
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|400.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|1|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|5|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[blender](/docs/definitions/part/blender)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-fuel-tank.md b/content/docs/definitions/process/manufacture-fuel-tank.md
new file mode 100644
index 0000000..f008401
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-fuel-tank.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Manufacture fuel tank
+linkTitle: Manufacture fuel tank
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|0.1 kg|
+|[gasket](/docs/definitions/part/gasket)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|1|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|4|
+|[valve](/docs/definitions/part/valve)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[fuel tank](/docs/definitions/part/fuel-tank)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-gas-tank.md b/content/docs/definitions/process/manufacture-gas-tank.md
new file mode 100644
index 0000000..0746781
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-gas-tank.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Manufacture gas tank
+linkTitle: Manufacture gas tank
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|0.1 kg|
+|[gasket](/docs/definitions/part/gasket)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|1|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|2|
+|[valve](/docs/definitions/part/valve)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[gas tank](/docs/definitions/part/gas-tank)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-helium-neon-laser.md b/content/docs/definitions/process/manufacture-helium-neon-laser.md
new file mode 100644
index 0000000..2540ec8
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-helium-neon-laser.md
@@ -0,0 +1,44 @@
+---
+title: Manufacturing Process - Manufacture helium neon laser
+linkTitle: Manufacture helium neon laser
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|600.0 millisols|
+|Work Level:|400.0 millisols|
+|Power Required:|2.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[diode](/docs/definitions/part/diode)|Part|20|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[glass](/docs/definitions/resource/glass)|Resource|1.0 kg|
+|[light emitting diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|5|
+|[optical lens](/docs/definitions/part/optical-lens)|Part|10|
+|[optical prism](/docs/definitions/part/optical-prism)|Part|10|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[semiconductor wafer](/docs/definitions/part/semiconductor-wafer)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[helium neon laser](/docs/definitions/part/helium-neon-laser)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-insulation-board.md b/content/docs/definitions/process/manufacture-insulation-board.md
new file mode 100644
index 0000000..22a9ac2
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-insulation-board.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Manufacture insulation board
+linkTitle: Manufacture insulation board
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|60.0 millisols|
+|Work Level:|30.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminum](/docs/definitions/resource/aluminum)|Resource|0.5 kg|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|9.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[insulation board](/docs/definitions/part/insulation-board)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-kitchen-stove.md b/content/docs/definitions/process/manufacture-kitchen-stove.md
new file mode 100644
index 0000000..3b683fc
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-kitchen-stove.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Manufacture kitchen stove
+linkTitle: Manufacture kitchen stove
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|2|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[heating element](/docs/definitions/part/heating-element)|Part|4|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|2|
+|[ventilation fan](/docs/definitions/part/ventilation-fan)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|6|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[stove](/docs/definitions/part/stove)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-large-air-duct.md b/content/docs/definitions/process/manufacture-large-air-duct.md
new file mode 100644
index 0000000..f6d1a20
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-large-air-duct.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Manufacture large air duct
+linkTitle: Manufacture large air duct
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[air duct](/docs/definitions/part/air-duct)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-large-bag.md b/content/docs/definitions/process/manufacture-large-bag.md
new file mode 100644
index 0000000..71edb01
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-large-bag.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Manufacture large bag
+linkTitle: Manufacture large bag
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|5.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|Part|2|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[large bag](/docs/definitions/null/large-bag)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-light-emitting-diode-bulb.md b/content/docs/definitions/process/manufacture-light-emitting-diode-bulb.md
new file mode 100644
index 0000000..91401e3
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-light-emitting-diode-bulb.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Manufacture light emitting diode bulb
+linkTitle: Manufacture light emitting diode bulb
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|100.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[semiconductor wafer](/docs/definitions/part/semiconductor-wafer)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[light emitting diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|40|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-logic-board.md b/content/docs/definitions/process/manufacture-logic-board.md
new file mode 100644
index 0000000..371ee5a
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-logic-board.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Manufacture logic board
+linkTitle: Manufacture logic board
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|300.0 millisols|
+|Work Level:|400.0 millisols|
+|Power Required:|3.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminum](/docs/definitions/resource/aluminum)|Resource|0.1 kg|
+|[capacitor](/docs/definitions/part/capacitor)|Part|20|
+|[copper](/docs/definitions/resource/copper)|Resource|0.2 kg|
+|[diode](/docs/definitions/part/diode)|Part|10|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|0.2 kg|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[resistor](/docs/definitions/part/resistor)|Part|40|
+|[semiconductor wafer](/docs/definitions/part/semiconductor-wafer)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[logic board](/docs/definitions/part/logic-board)|4|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-microcontroller.md b/content/docs/definitions/process/manufacture-microcontroller.md
new file mode 100644
index 0000000..bff3ab1
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-microcontroller.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Manufacture microcontroller
+linkTitle: Manufacture microcontroller
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|4|
+|Process Time:|200.0 millisols|
+|Work Level:|400.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[semiconductor wafer](/docs/definitions/part/semiconductor-wafer)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[microcontroller](/docs/definitions/part/microcontroller)|40|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-microwave.md b/content/docs/definitions/process/manufacture-microwave.md
new file mode 100644
index 0000000..9ed003f
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-microwave.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Manufacture microwave
+linkTitle: Manufacture microwave
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|20.0 millisols|
+|Work Level:|500.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[logic board](/docs/definitions/part/logic-board)|Part|1|
+|[microcontroller](/docs/definitions/part/microcontroller)|Part|1|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[power transistor](/docs/definitions/part/power-transistor)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|2|
+|[transformer](/docs/definitions/part/transformer)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|5|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[microwave](/docs/definitions/part/microwave)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-navigation-circuit-board.md b/content/docs/definitions/process/manufacture-navigation-circuit-board.md
new file mode 100644
index 0000000..3fca18f
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-navigation-circuit-board.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Manufacture navigation circuit board
+linkTitle: Manufacture navigation circuit board
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|500.0 millisols|
+|Work Level:|400.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[light emitting diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|10|
+|[logic board](/docs/definitions/part/logic-board)|Part|2|
+|[microcontroller](/docs/definitions/part/microcontroller)|Part|1|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[navigation circuit board](/docs/definitions/part/navigation-circuit-board)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-optical-cable.md b/content/docs/definitions/process/manufacture-optical-cable.md
new file mode 100644
index 0000000..f24089d
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-optical-cable.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Manufacture optical cable
+linkTitle: Manufacture optical cable
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[glass](/docs/definitions/resource/glass)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[optical cable](/docs/definitions/part/optical-cable)|20|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-optical-lens.md b/content/docs/definitions/process/manufacture-optical-lens.md
new file mode 100644
index 0000000..e31c139
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-optical-lens.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Manufacture optical lens
+linkTitle: Manufacture optical lens
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|300.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[glass sheet](/docs/definitions/part/glass-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[optical lens](/docs/definitions/part/optical-lens)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-oven.md b/content/docs/definitions/process/manufacture-oven.md
new file mode 100644
index 0000000..93ed151
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-oven.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Manufacture oven
+linkTitle: Manufacture oven
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|500.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[steel pipe](/docs/definitions/part/steel-pipe)|Part|3|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|2|
+|[valve](/docs/definitions/part/valve)|Part|4|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|5|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[oven](/docs/definitions/part/oven)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-pathogen-filter.md b/content/docs/definitions/process/manufacture-pathogen-filter.md
new file mode 100644
index 0000000..68476c7
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-pathogen-filter.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Manufacture pathogen filter
+linkTitle: Manufacture pathogen filter
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|500.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[charcoal filter](/docs/definitions/part/charcoal-filter)|Part|2|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[flexible hose](/docs/definitions/part/flexible-hose)|Part|2|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[valve](/docs/definitions/part/valve)|Part|4|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[pathogen filter](/docs/definitions/part/pathogen-filter)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-plasma-cutter.md b/content/docs/definitions/process/manufacture-plasma-cutter.md
new file mode 100644
index 0000000..55b5dc4
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-plasma-cutter.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Manufacture plasma cutter
+linkTitle: Manufacture plasma cutter
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|100.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminum](/docs/definitions/resource/aluminum)|Resource|0.1 kg|
+|[capacitor](/docs/definitions/part/capacitor)|Part|10|
+|[copper](/docs/definitions/resource/copper)|Resource|0.2 kg|
+|[diode](/docs/definitions/part/diode)|Part|10|
+|[heating element](/docs/definitions/part/heating-element)|Part|6|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|0.2 kg|
+|[resistor](/docs/definitions/part/resistor)|Part|10|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[plasma cutter](/docs/definitions/part/plasma-cutter)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-pneumatic-drill.md b/content/docs/definitions/process/manufacture-pneumatic-drill.md
new file mode 100644
index 0000000..27297cf
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-pneumatic-drill.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Manufacture pneumatic drill
+linkTitle: Manufacture pneumatic drill
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|400.0 millisols|
+|Work Level:|400.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[gasket](/docs/definitions/part/gasket)|Part|5|
+|[oxygen pump](/docs/definitions/part/oxygen-pump)|Part|1|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|5|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[valve](/docs/definitions/part/valve)|Part|5|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[pneumatic drill](/docs/definitions/part/pneumatic-drill)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-polycarbonate-roofing.md b/content/docs/definitions/process/manufacture-polycarbonate-roofing.md
new file mode 100644
index 0000000..108d801
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-polycarbonate-roofing.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Manufacture polycarbonate roofing
+linkTitle: Manufacture polycarbonate roofing
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Assume each roofing tile is 2m x 2m
Asahi/Chi Mei produces DPC (polycarbonate) from DMC which is produced via
methanolysis of ethylene carbonate. Ethylene carbonate is produced by the
reaction between ethylene oxide and carbon dioxide. Sandwiched inside are
double stacks of aerogel tiles.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|3.5 kg|
+|[aerogel tile](/docs/definitions/part/aerogel-tile)|Part|8|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|3|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-propeller.md b/content/docs/definitions/process/manufacture-propeller.md
new file mode 100644
index 0000000..ca6e553
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-propeller.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Manufacture propeller
+linkTitle: Manufacture propeller
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|120.0 millisols|
+|Work Level:|80.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|1.5 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|0.25 kg|
+|[titanium](/docs/definitions/resource/titanium)|Resource|0.25 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[propeller](/docs/definitions/part/propeller)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-refrigerator.md b/content/docs/definitions/process/manufacture-refrigerator.md
new file mode 100644
index 0000000..df68730
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-refrigerator.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Manufacture refrigerator
+linkTitle: Manufacture refrigerator
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|50.0 millisols|
+|Work Level:|700.0 millisols|
+|Power Required:|2.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|2|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|3|
+|[heat pump](/docs/definitions/part/heat-pump)|Part|1|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|2|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|2|
+|[water pump small](/docs/definitions/part/water-pump-small)|Part|2|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|6|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[refrigerator](/docs/definitions/part/refrigerator)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-resistors.md b/content/docs/definitions/process/manufacture-resistors.md
new file mode 100644
index 0000000..7c3ebad
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-resistors.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Manufacture resistors
+linkTitle: Manufacture resistors
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminum](/docs/definitions/resource/aluminum)|Resource|0.1 kg|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|1.0 kg|
+|[aluminum oxide](/docs/definitions/resource/aluminum-oxide)|Resource|0.1 kg|
+|[iron powder](/docs/definitions/resource/iron-powder)|Resource|0.1 kg|
+|[nickel](/docs/definitions/resource/nickel)|Resource|0.1 kg|
+|[zinc](/docs/definitions/resource/zinc)|Resource|0.1 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[resistor](/docs/definitions/part/resistor)|200|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-rover-control-panel-alt--1.md b/content/docs/definitions/process/manufacture-rover-control-panel-alt--1.md
new file mode 100644
index 0000000..70b0668
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-rover-control-panel-alt--1.md
@@ -0,0 +1,44 @@
+---
+title: Manufacturing Process - Manufacture rover control panel Alt #1
+linkTitle: Manufacture rover control panel Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|5.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|3.0 kg|
+|[communications circuit board](/docs/definitions/part/communications-circuit-board)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|4|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[navigation circuit board](/docs/definitions/part/navigation-circuit-board)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|1|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|10.0 kg|
+|[styrene](/docs/definitions/resource/styrene)|Resource|2.0 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|20|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[rover control panel](/docs/definitions/part/rover-control-panel)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-rover-control-panel-alt--2.md b/content/docs/definitions/process/manufacture-rover-control-panel-alt--2.md
new file mode 100644
index 0000000..e01b446
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-rover-control-panel-alt--2.md
@@ -0,0 +1,44 @@
+---
+title: Manufacturing Process - Manufacture rover control panel Alt #2
+linkTitle: Manufacture rover control panel Alt #2
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|5.0 kg|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|3.0 kg|
+|[communications circuit board](/docs/definitions/part/communications-circuit-board)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|4|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[navigation circuit board](/docs/definitions/part/navigation-circuit-board)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|1|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|10.0 kg|
+|[styrene](/docs/definitions/resource/styrene)|Resource|2.0 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|20|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[rover control panel](/docs/definitions/part/rover-control-panel)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-rover-control-panel.md b/content/docs/definitions/process/manufacture-rover-control-panel.md
new file mode 100644
index 0000000..55ca4ff
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-rover-control-panel.md
@@ -0,0 +1,44 @@
+---
+title: Manufacturing Process - Manufacture rover control panel
+linkTitle: Manufacture rover control panel
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|5.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|3.0 kg|
+|[communications circuit board](/docs/definitions/part/communications-circuit-board)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|4|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[navigation circuit board](/docs/definitions/part/navigation-circuit-board)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|1|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|10.0 kg|
+|[styrene](/docs/definitions/resource/styrene)|Resource|2.0 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|20|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[rover control panel](/docs/definitions/part/rover-control-panel)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-rover-windshield.md b/content/docs/definitions/process/manufacture-rover-windshield.md
new file mode 100644
index 0000000..defd42a
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-rover-windshield.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Manufacture rover windshield
+linkTitle: Manufacture rover windshield
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ The rover windshield use a double stack of aerogel tiles between two layers
of glass for insulation.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|150.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aerogel tile](/docs/definitions/part/aerogel-tile)|Part|8|
+|[glass sheet](/docs/definitions/part/glass-sheet)|Part|2|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[rover windshield](/docs/definitions/part/rover-windshield)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-sls-3d-printer.md b/content/docs/definitions/process/manufacture-sls-3d-printer.md
new file mode 100644
index 0000000..47268e2
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-sls-3d-printer.md
@@ -0,0 +1,54 @@
+---
+title: Manufacturing Process - Manufacture SLS 3D Printer
+linkTitle: Manufacture SLS 3D Printer
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|1000.0 millisols|
+|Work Level:|1000.0 millisols|
+|Power Required:|5.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|3|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|10|
+|[carbon dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|2|
+|[diode](/docs/definitions/part/diode)|Part|5|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|5|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|2|
+|[glass sheet](/docs/definitions/part/glass-sheet)|Part|1|
+|[heat pipe](/docs/definitions/part/heat-pipe)|Part|2|
+|[heating element](/docs/definitions/part/heating-element)|Part|2|
+|[logic board](/docs/definitions/part/logic-board)|Part|3|
+|[microcontroller](/docs/definitions/part/microcontroller)|Part|2|
+|[optical cable](/docs/definitions/part/optical-cable)|Part|3|
+|[optical prism](/docs/definitions/part/optical-prism)|Part|3|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|2|
+|[power cable](/docs/definitions/part/power-cable)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|5|
+|[timing belt](/docs/definitions/part/timing-belt)|Part|3|
+|[ventilation fan](/docs/definitions/part/ventilation-fan)|Part|1|
+|[water pump small](/docs/definitions/part/water-pump-small)|Part|2|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-soil-compactor.md b/content/docs/definitions/process/manufacture-soil-compactor.md
new file mode 100644
index 0000000..08bb319
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-soil-compactor.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Manufacture soil compactor
+linkTitle: Manufacture soil compactor
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|14|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[soil compactor](/docs/definitions/part/soil-compactor)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-steel-post.md b/content/docs/definitions/process/manufacture-steel-post.md
new file mode 100644
index 0000000..56beb97
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-steel-post.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Manufacture steel post
+linkTitle: Manufacture steel post
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|20.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[steel post](/docs/definitions/part/steel-post)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-steel-truss.md b/content/docs/definitions/process/manufacture-steel-truss.md
new file mode 100644
index 0000000..7e3e3ab
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-steel-truss.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Manufacture steel truss
+linkTitle: Manufacture steel truss
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|20.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[steel truss](/docs/definitions/part/steel-truss)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-stepper-motor.md b/content/docs/definitions/process/manufacture-stepper-motor.md
new file mode 100644
index 0000000..413f4cc
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-stepper-motor.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Manufacture Stepper Motor
+linkTitle: Manufacture Stepper Motor
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|400.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper wire](/docs/definitions/part/copper-wire)|Part|8|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|8|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|1|
+|[iron sheet](/docs/definitions/part/iron-sheet)|Part|1|
+|[logic board](/docs/definitions/part/logic-board)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|8|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|4|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-thermal-bottle.md b/content/docs/definitions/process/manufacture-thermal-bottle.md
new file mode 100644
index 0000000..7551e6f
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-thermal-bottle.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Manufacture thermal bottle
+linkTitle: Manufacture thermal bottle
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|20.0 millisols|
+|Work Level:|20.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminum](/docs/definitions/resource/aluminum)|Resource|0.8 kg|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[thermal bottle](/docs/definitions/null/thermal-bottle)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-transformer.md b/content/docs/definitions/process/manufacture-transformer.md
new file mode 100644
index 0000000..2cece27
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-transformer.md
@@ -0,0 +1,42 @@
+---
+title: Manufacturing Process - Manufacture transformer
+linkTitle: Manufacture transformer
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|2|
+|[copper wire](/docs/definitions/part/copper-wire)|Part|2|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|10|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|2|
+|[power cable](/docs/definitions/part/power-cable)|Part|2|
+|[steel pipe](/docs/definitions/part/steel-pipe)|Part|2|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|10|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[transformer](/docs/definitions/part/transformer)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-turbine-generator.md b/content/docs/definitions/process/manufacture-turbine-generator.md
new file mode 100644
index 0000000..237d9df
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-turbine-generator.md
@@ -0,0 +1,41 @@
+---
+title: Manufacturing Process - Manufacture turbine generator
+linkTitle: Manufacture turbine generator
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|300.0 millisols|
+|Work Level:|300.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|0.3 kg|
+|[copper wire](/docs/definitions/part/copper-wire)|Part|15|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|3|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|20|
+|[iron sheet](/docs/definitions/part/iron-sheet)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|8|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[turbine generator](/docs/definitions/part/turbine-generator)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-turbopump.md b/content/docs/definitions/process/manufacture-turbopump.md
new file mode 100644
index 0000000..c71302d
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-turbopump.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Manufacture turbopump
+linkTitle: Manufacture turbopump
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|4|
+|Tech Level:|3|
+|Process Time:|100.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[steel pipe](/docs/definitions/part/steel-pipe)|Part|3|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[turbopump](/docs/definitions/part/turbopump)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1.md b/content/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1.md
new file mode 100644
index 0000000..50ef508
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1.md
@@ -0,0 +1,44 @@
+---
+title: Manufacturing Process - Manufacture utility vehicle control panel Alt #1
+linkTitle: Manufacture utility vehicle control panel Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|2.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|0.5 kg|
+|[communications circuit board](/docs/definitions/part/communications-circuit-board)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[navigation circuit board](/docs/definitions/part/navigation-circuit-board)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|1|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|1.0 kg|
+|[styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|5|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[utility vehicle control panel](/docs/definitions/part/utility-vehicle-control-panel)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2.md b/content/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2.md
new file mode 100644
index 0000000..3116afb
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2.md
@@ -0,0 +1,44 @@
+---
+title: Manufacturing Process - Manufacture utility vehicle control panel Alt #2
+linkTitle: Manufacture utility vehicle control panel Alt #2
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|2.0 kg|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|0.5 kg|
+|[communications circuit board](/docs/definitions/part/communications-circuit-board)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[navigation circuit board](/docs/definitions/part/navigation-circuit-board)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|1|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|1.0 kg|
+|[styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|5|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[utility vehicle control panel](/docs/definitions/part/utility-vehicle-control-panel)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-utility-vehicle-control-panel.md b/content/docs/definitions/process/manufacture-utility-vehicle-control-panel.md
new file mode 100644
index 0000000..3ac13ce
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-utility-vehicle-control-panel.md
@@ -0,0 +1,44 @@
+---
+title: Manufacturing Process - Manufacture utility vehicle control panel
+linkTitle: Manufacture utility vehicle control panel
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|200.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|2.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|0.5 kg|
+|[communications circuit board](/docs/definitions/part/communications-circuit-board)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|2|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[navigation circuit board](/docs/definitions/part/navigation-circuit-board)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|1|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|1.0 kg|
+|[styrene](/docs/definitions/resource/styrene)|Resource|1.0 kg|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|5|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[utility vehicle control panel](/docs/definitions/part/utility-vehicle-control-panel)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-vehicle-chassis-panel-alt--1.md b/content/docs/definitions/process/manufacture-vehicle-chassis-panel-alt--1.md
new file mode 100644
index 0000000..1baf271
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-vehicle-chassis-panel-alt--1.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Manufacture vehicle chassis panel Alt #1
+linkTitle: Manufacture vehicle chassis panel Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|Resource|5.0 kg|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|5.0 kg|
+|[styrene](/docs/definitions/resource/styrene)|Resource|5.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[vehicle chassis panel](/docs/definitions/part/vehicle-chassis-panel)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-vehicle-chassis-panel.md b/content/docs/definitions/process/manufacture-vehicle-chassis-panel.md
new file mode 100644
index 0000000..e61ca5a
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-vehicle-chassis-panel.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Manufacture vehicle chassis panel
+linkTitle: Manufacture vehicle chassis panel
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|3|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|5.0 kg|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|5|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|5.0 kg|
+|[styrene](/docs/definitions/resource/styrene)|Resource|5.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[vehicle chassis panel](/docs/definitions/part/vehicle-chassis-panel)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-ventilation-fan.md b/content/docs/definitions/process/manufacture-ventilation-fan.md
new file mode 100644
index 0000000..c6f851f
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-ventilation-fan.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Manufacture ventilation fan
+linkTitle: Manufacture ventilation fan
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|20.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|1|
+|[aluminum wire](/docs/definitions/part/aluminum-wire)|Part|1|
+|[electrical wire](/docs/definitions/part/electrical-wire)|Part|1|
+|[plastic sheet](/docs/definitions/part/plastic-sheet)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|1|
+|[wire connector](/docs/definitions/part/wire-connector)|Part|3|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[ventilation fan](/docs/definitions/part/ventilation-fan)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-water-tank.md b/content/docs/definitions/process/manufacture-water-tank.md
new file mode 100644
index 0000000..d2b5f35
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-water-tank.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Manufacture water tank
+linkTitle: Manufacture water tank
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[acetylene](/docs/definitions/resource/acetylene)|Resource|0.1 kg|
+|[gasket](/docs/definitions/part/gasket)|Part|1|
+|[plastic bottle](/docs/definitions/part/plastic-bottle)|Part|1|
+|[plastic tubing](/docs/definitions/part/plastic-tubing)|Part|1|
+|[steel sheet](/docs/definitions/part/steel-sheet)|Part|2|
+|[valve](/docs/definitions/part/valve)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[water tank](/docs/definitions/part/water-tank)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/manufacture-window.md b/content/docs/definitions/process/manufacture-window.md
new file mode 100644
index 0000000..daf5e75
--- /dev/null
+++ b/content/docs/definitions/process/manufacture-window.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Manufacture window
+linkTitle: Manufacture window
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Each window panel use a double stack of aerogel tiles between two layers
of glass for trapping heat.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|150.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aerogel tile](/docs/definitions/part/aerogel-tile)|Part|8|
+|[glass sheet](/docs/definitions/part/glass-sheet)|Part|1|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[window](/docs/definitions/part/window)|2|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/produce-bisphenol-a.md b/content/docs/definitions/process/produce-bisphenol-a.md
new file mode 100644
index 0000000..6add005
--- /dev/null
+++ b/content/docs/definitions/process/produce-bisphenol-a.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Produce bisphenol-a
+linkTitle: Produce bisphenol-a
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Bisphenol A (BPA), a colourless crystalline solid belonging to the family of organic compounds;
its molecular formula is C15H16O2. BPA is best known for its use in the manufacture of polycarbonate plastics and epoxy resins
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|3|
+|Process Time:|600.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|18.0 kg|
+|[hydrogen](/docs/definitions/resource/hydrogen)|Resource|1.6 kg|
+|[oxygen](/docs/definitions/resource/oxygen)|Resource|3.2 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[bisphenol-a](/docs/definitions/resource/bisphenol-a)|22.8 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/produce-dimethyl-terephthalate.md b/content/docs/definitions/process/produce-dimethyl-terephthalate.md
new file mode 100644
index 0000000..3b5be33
--- /dev/null
+++ b/content/docs/definitions/process/produce-dimethyl-terephthalate.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Produce Dimethyl Terephthalate
+linkTitle: Produce Dimethyl Terephthalate
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
This is to produce dimethyl terephthalate. Molar mass : 194.186
Dimethyl terephthalate (DMT) is an organic compound with the formula C6H4(COOCH3)2
or C10H10O4;
It is the diester formed from terephthalic acid and methanol.
It is a white solid that melts to give a distillable colourless liquid.
DMT can also be made by a different route, namely direct esterification of
terephthalic acid with methanol. The dimethyl terephthalate that is formed is
then purified by distillation. Even terephthalic acid of low purity may be used
in this method.
C8H6O4 + 2CH3OH → C10H10O4 + 2 H2O
16.6 g 64 g 194 g 36 g
in the presence of o-xylene at 250–300 °C.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|40.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Methanol](/docs/definitions/resource/methanol)|Resource|6.4 kg|
+|[Terephthalic acid](/docs/definitions/resource/terephthalic-acid)|Resource|1.66 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Dimethyl Terephthalate](/docs/definitions/resource/dimethyl-terephthalate)|19.4 kg|
+|[water](/docs/definitions/resource/water)|3.6 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/produce-ethylene-glycol.md b/content/docs/definitions/process/produce-ethylene-glycol.md
new file mode 100644
index 0000000..89e9ba6
--- /dev/null
+++ b/content/docs/definitions/process/produce-ethylene-glycol.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Produce ethylene glycol
+linkTitle: Produce ethylene glycol
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
This is to produce ethylene glycol (CH2OH)2. Ethylene glycol is produced from ethylene
(ethene), via the intermediate ethylene oxide.
Ethylene oxide reacts with water to produce ethylene glycol according to the
chemical equation:
C2H4O + H2O → HO−CH2CH2−OH
44 g 18 g 62 g
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|40.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Ethylene](/docs/definitions/resource/ethylene)|Resource|4.4 kg|
+|[Water](/docs/definitions/resource/water)|Resource|1.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Ethylene Glycol](/docs/definitions/resource/ethylene-glycol)|6.2 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/produce-petri-dish.md b/content/docs/definitions/process/produce-petri-dish.md
new file mode 100644
index 0000000..8522eee
--- /dev/null
+++ b/content/docs/definitions/process/produce-petri-dish.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Produce petri dish
+linkTitle: Produce petri dish
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|40.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.1 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[polystyrene](/docs/definitions/resource/polystyrene)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[petri dish](/docs/definitions/part/petri-dish)|50|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/produce-polycarbonate-resin.md b/content/docs/definitions/process/produce-polycarbonate-resin.md
new file mode 100644
index 0000000..85924ce
--- /dev/null
+++ b/content/docs/definitions/process/produce-polycarbonate-resin.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Produce polycarbonate resin
+linkTitle: Produce polycarbonate resin
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|200.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Ethylene](/docs/definitions/resource/ethylene)|Resource|1.0 kg|
+|[bisphenol-a](/docs/definitions/resource/bisphenol-a)|Resource|1.0 kg|
+|[carbon dioxide](/docs/definitions/resource/carbon-dioxide)|Resource|1.0 kg|
+|[food waste](/docs/definitions/resource/food-waste)|Resource|0.5 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Polycarbonate Resin](/docs/definitions/resource/polycarbonate-resin)|3.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/produce-polyester-fiber.md b/content/docs/definitions/process/produce-polyester-fiber.md
new file mode 100644
index 0000000..f8ae39f
--- /dev/null
+++ b/content/docs/definitions/process/produce-polyester-fiber.md
@@ -0,0 +1,39 @@
+---
+title: Manufacturing Process - Produce polyester fiber
+linkTitle: Produce polyester fiber
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
This is to produce polyester fiber.
https://www.britannica.com/science/Polyethylene-terephthalate
Ethylene glycol + C10H10O4 -> Polyester fiber (PET) + 2H2O
62 g 194 g 220 g 36 g
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|40.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Dimethyl Terephthalate](/docs/definitions/resource/dimethyl-terephthalate)|Resource|19.4 kg|
+|[Ethylene Glycol](/docs/definitions/resource/ethylene-glycol)|Resource|6.2 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Polyester Fiber](/docs/definitions/resource/polyester-fiber)|22.0 kg|
+|[water](/docs/definitions/resource/water)|3.6 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/produce-polyester-resin.md b/content/docs/definitions/process/produce-polyester-resin.md
new file mode 100644
index 0000000..2503234
--- /dev/null
+++ b/content/docs/definitions/process/produce-polyester-resin.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Produce Polyester Resin
+linkTitle: Produce Polyester Resin
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
This is to produce unsaturated polyester resin (C<sub>10</sub>H<sub>8</sub>O<sub>4</sub>).
We don't have a detailed process for producing polyester, so we're just using component elements.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|40.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|30.0 kg|
+|[water](/docs/definitions/resource/water)|Resource|20.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|50.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/produce-polyurethane.md b/content/docs/definitions/process/produce-polyurethane.md
new file mode 100644
index 0000000..373e4fc
--- /dev/null
+++ b/content/docs/definitions/process/produce-polyurethane.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Produce polyurethane
+linkTitle: Produce polyurethane
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|3|
+|Process Time:|200.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[carbon dioxide](/docs/definitions/resource/carbon-dioxide)|Resource|3.0 kg|
+|[crop waste](/docs/definitions/resource/crop-waste)|Resource|2.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[polyurethane](/docs/definitions/resource/polyurethane)|2.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/produce-terephthalic-acid.md b/content/docs/definitions/process/produce-terephthalic-acid.md
new file mode 100644
index 0000000..7e76cc3
--- /dev/null
+++ b/content/docs/definitions/process/produce-terephthalic-acid.md
@@ -0,0 +1,40 @@
+---
+title: Manufacturing Process - Produce Terephthalic Acid
+linkTitle: Produce Terephthalic Acid
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
This is to produce terephthalic acid. C8H6O4 Molar mass : 166
In the Amoco process, which is widely adopted worldwide, terephthalic acid
is produced by catalytic oxidation of p-Xylene (C8H10):
C8H10 + 3O2 --> C8H6O4 + 2H2O
106 g 48 g 166 g 36 g
The process uses a cobalt–manganese–bromide catalyst. The bromide source can
be sodium bromide, hydrogen bromide or tetrabromoethane.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|40.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Carbon](/docs/definitions/resource/carbon)|Resource|9.6 kg|
+|[hydrogen](/docs/definitions/resource/hydrogen)|Resource|5.0 kg|
+|[oxygen](/docs/definitions/resource/oxygen)|Resource|4.8 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Terephthalic acid](/docs/definitions/resource/terephthalic-acid)|16.6 kg|
+|[water](/docs/definitions/resource/water)|3.6 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/purify-rock-salt-into-compounds.md b/content/docs/definitions/process/purify-rock-salt-into-compounds.md
new file mode 100644
index 0000000..09731ac
--- /dev/null
+++ b/content/docs/definitions/process/purify-rock-salt-into-compounds.md
@@ -0,0 +1,45 @@
+---
+title: Manufacturing Process - Purify rock salt into compounds
+linkTitle: Purify rock salt into compounds
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ http://www.madehow.com/Volume-2/Salt.html
One method of evaporating brine is solar evaporation.
Most brine is processed by a multiple-effect vacuum evaporator.
This device consists of three or more closed metal cylinders with conical bottoms.
Brine is first treated chemically to remove calcium and magnesium compounds.
It then fills the bottom.
Brine may also be processed in a grainer.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.4 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[rock salt](/docs/definitions/resource/rock-salt)|Resource|7.5 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[calcium](/docs/definitions/resource/calcium)|0.5 kg|
+|[calcium carbonate](/docs/definitions/resource/calcium-carbonate)|1.0 kg|
+|[calcium sulfate](/docs/definitions/resource/calcium-sulfate)|0.5 kg|
+|[epsom salt](/docs/definitions/resource/epsom-salt)|0.5 kg|
+|[magnesium](/docs/definitions/resource/magnesium)|0.5 kg|
+|[perchlorate](/docs/definitions/resource/perchlorate)|1.5 kg|
+|[potassium](/docs/definitions/resource/potassium)|0.5 kg|
+|[sodium carbonate](/docs/definitions/resource/sodium-carbonate)|1.0 kg|
+|[table salt](/docs/definitions/resource/table-salt)|1.5 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/recycle-aluminum-scrap.md b/content/docs/definitions/process/recycle-aluminum-scrap.md
new file mode 100644
index 0000000..6f78e92
--- /dev/null
+++ b/content/docs/definitions/process/recycle-aluminum-scrap.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Recycle aluminum scrap
+linkTitle: Recycle aluminum scrap
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum scrap](/docs/definitions/part/aluminum-scrap)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[aluminum ingot](/docs/definitions/part/aluminum-ingot)|1|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/recycle-steel-scrap.md b/content/docs/definitions/process/recycle-steel-scrap.md
new file mode 100644
index 0000000..dce5260
--- /dev/null
+++ b/content/docs/definitions/process/recycle-steel-scrap.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Recycle steel scrap
+linkTitle: Recycle steel scrap
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|10.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.2 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[steel scrap](/docs/definitions/part/steel-scrap)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[steel ingot](/docs/definitions/part/steel-ingot)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/roll-aluminized-mylar-foil.md b/content/docs/definitions/process/roll-aluminized-mylar-foil.md
new file mode 100644
index 0000000..231bcd7
--- /dev/null
+++ b/content/docs/definitions/process/roll-aluminized-mylar-foil.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Roll aluminized mylar foil
+linkTitle: Roll aluminized mylar foil
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Biaxially oriented PET film is metallized by vapor deposition of a thin film of
evaporated aluminum, gold, or other metal onto it.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|40.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Aluminum](/docs/definitions/resource/aluminum)|Resource|0.5 kg|
+|[Mylar](/docs/definitions/resource/mylar)|Resource|2.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Aluminized Mylar](/docs/definitions/resource/aluminized-mylar)|2.5 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/roll-aluminum-sheet.md b/content/docs/definitions/process/roll-aluminum-sheet.md
new file mode 100644
index 0000000..fd16c68
--- /dev/null
+++ b/content/docs/definitions/process/roll-aluminum-sheet.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Roll aluminum sheet
+linkTitle: Roll aluminum sheet
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|1|
+|Process Time:|20.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.4 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum ingot](/docs/definitions/part/aluminum-ingot)|Part|2|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[aluminum oxide](/docs/definitions/resource/aluminum-oxide)|1.84 kg|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|3|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/roll-heat-pipe-from-aluminum-sheet.md b/content/docs/definitions/process/roll-heat-pipe-from-aluminum-sheet.md
new file mode 100644
index 0000000..f2ecf3d
--- /dev/null
+++ b/content/docs/definitions/process/roll-heat-pipe-from-aluminum-sheet.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Roll heat pipe from aluminum sheet
+linkTitle: Roll heat pipe from aluminum sheet
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[aluminum sheet](/docs/definitions/part/aluminum-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[heat pipe](/docs/definitions/part/heat-pipe)|4|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/roll-heat-pipe-from-copper-sheet.md b/content/docs/definitions/process/roll-heat-pipe-from-copper-sheet.md
new file mode 100644
index 0000000..5b45482
--- /dev/null
+++ b/content/docs/definitions/process/roll-heat-pipe-from-copper-sheet.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Roll heat pipe from copper sheet
+linkTitle: Roll heat pipe from copper sheet
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|100.0 millisols|
+|Work Level:|100.0 millisols|
+|Power Required:|1.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[copper sheet](/docs/definitions/part/copper-sheet)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[heat pipe](/docs/definitions/part/heat-pipe)|4|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/roll-iron-sheet.md b/content/docs/definitions/process/roll-iron-sheet.md
new file mode 100644
index 0000000..ddf7e4d
--- /dev/null
+++ b/content/docs/definitions/process/roll-iron-sheet.md
@@ -0,0 +1,36 @@
+---
+title: Manufacturing Process - Roll iron sheet
+linkTitle: Roll iron sheet
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|1|
+|Process Time:|200.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.5 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[iron ingot](/docs/definitions/part/iron-ingot)|Part|8|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[iron powder](/docs/definitions/resource/iron-powder)|1.05 kg|
+|[iron sheet](/docs/definitions/part/iron-sheet)|7|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/roll-mylar-film-alt--1.md b/content/docs/definitions/process/roll-mylar-film-alt--1.md
new file mode 100644
index 0000000..6f8d262
--- /dev/null
+++ b/content/docs/definitions/process/roll-mylar-film-alt--1.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Roll mylar film Alt #1
+linkTitle: Roll mylar film Alt #1
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Mylar film that can be coated with evaporated aluminum on one side
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|40.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|1.0 kg|
+|[Polypropylene](/docs/definitions/resource/polypropylene)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Mylar](/docs/definitions/resource/mylar)|2.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/roll-mylar-film.md b/content/docs/definitions/process/roll-mylar-film.md
new file mode 100644
index 0000000..e186be0
--- /dev/null
+++ b/content/docs/definitions/process/roll-mylar-film.md
@@ -0,0 +1,38 @@
+---
+title: Manufacturing Process - Roll mylar film
+linkTitle: Roll mylar film
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Mylar film that can be coated with evaporated aluminum on one side
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|2|
+|Tech Level:|2|
+|Process Time:|40.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.05 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[Polyester Resin](/docs/definitions/resource/polyester-resin)|Resource|1.0 kg|
+|[Polyethylene](/docs/definitions/resource/polyethylene)|Resource|1.0 kg|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[Mylar](/docs/definitions/resource/mylar)|2.0 kg|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/roll-steel-sheet.md b/content/docs/definitions/process/roll-steel-sheet.md
new file mode 100644
index 0000000..551b203
--- /dev/null
+++ b/content/docs/definitions/process/roll-steel-sheet.md
@@ -0,0 +1,37 @@
+---
+title: Manufacturing Process - Roll steel sheet
+linkTitle: Roll steel sheet
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|0|
+|Tech Level:|0|
+|Process Time:|10.0 millisols|
+|Work Level:|50.0 millisols|
+|Power Required:|0.3 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[manganese](/docs/definitions/resource/manganese)|Resource|0.1 kg|
+|[steel ingot](/docs/definitions/part/steel-ingot)|Part|8|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[iron powder](/docs/definitions/resource/iron-powder)|1.0 kg|
+|[steel sheet](/docs/definitions/part/steel-sheet)|5|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/process/weave-fiberglass-cloth.md b/content/docs/definitions/process/weave-fiberglass-cloth.md
new file mode 100644
index 0000000..67ea369
--- /dev/null
+++ b/content/docs/definitions/process/weave-fiberglass-cloth.md
@@ -0,0 +1,35 @@
+---
+title: Manufacturing Process - Weave fiberglass cloth
+linkTitle: Weave fiberglass cloth
+toc_hide: true
+hide_summary: true
+---
+
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Skill Level:|1|
+|Tech Level:|2|
+|Process Time:|50.0 millisols|
+|Work Level:|10.0 millisols|
+|Power Required:|0.0 kW/hr|
+
+## Inputs
+
+| Input | Amount |
+|--------:|:------|
+|[fiberglass](/docs/definitions/part/fiberglass)|Part|1|
+
+## Products
+
+
+| Produce | Amount |
+|--------:|:------|
+|[fiberglass cloth](/docs/definitions/part/fiberglass-cloth)|10|
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
+
diff --git a/content/docs/definitions/resource/_index.md b/content/docs/definitions/resource/_index.md
new file mode 100644
index 0000000..119f8ff
--- /dev/null
+++ b/content/docs/definitions/resource/_index.md
@@ -0,0 +1,302 @@
+---
+title: Resource
+description: Resources that can be stored and used for manufacturing and cooking.
+---
+
+
+
+
+{{< alert color="success" >}}These can be changed via the XML file _resources.xml_. See [XML Files](/docs/guide/xml-files/){{< /alert >}}
+
+
+Grouped by Phase.
+
+### Gas {#A-gas}
+
+- [Acetylene](../resource/acetylene)
+- [Argon](../resource/argon)
+- [Carbon dioxide](../resource/carbon-dioxide)
+- [Carbon monoxide](../resource/carbon-monoxide)
+- [Chlorine](../resource/chlorine)
+- [Ethane](../resource/ethane)
+- [Ethylene](../resource/ethylene)
+- [Hydrogen](../resource/hydrogen)
+- [Methane](../resource/methane)
+- [Nitrogen](../resource/nitrogen)
+- [Oxygen](../resource/oxygen)
+- [Prophylene](../resource/prophylene)
+- [Propylene](../resource/propylene)
+
+### Liquid {#A-liquid}
+
+- [Black water](../resource/black-water)
+- [Bleaching chemical](../resource/bleaching-chemical)
+- [Brine Water](../resource/brine-water)
+- [Dimethyl terephthalate](../resource/dimethyl-terephthalate)
+- [Ethylene glycol](../resource/ethylene-glycol)
+- [Fish oil](../resource/fish-oil)
+- [Garlic oil](../resource/garlic-oil)
+- [Grey water](../resource/grey-water)
+- [Honey](../resource/honey)
+- [Ketchup](../resource/ketchup)
+- [Methanol](../resource/methanol)
+- [Mustard](../resource/mustard)
+- [Olive oil](../resource/olive-oil)
+- [Peanut oil](../resource/peanut-oil)
+- [Polyester resin](../resource/polyester-resin)
+- [Propolis](../resource/propolis)
+- [Rice bran oil](../resource/rice-bran-oil)
+- [Rice vinegar](../resource/rice-vinegar)
+- [Sesame milk](../resource/sesame-milk)
+- [Sesame oil](../resource/sesame-oil)
+- [Sodium hypochlorite](../resource/sodium-hypochlorite)
+- [Soy sauce](../resource/soy-sauce)
+- [Soybean oil](../resource/soybean-oil)
+- [Soymilk](../resource/soymilk)
+- [Styrene](../resource/styrene)
+- [Sugarcane juice](../resource/sugarcane-juice)
+- [Water](../resource/water)
+
+### Solid {#A-solid}
+
+- [Acetic acid bacteria](../resource/acetic-acid-bacteria)
+- [Activated charcoal](../resource/activated-charcoal)
+- [Akaganeite](../resource/akaganeite)
+- [Allophane](../resource/allophane)
+- [Aluminized Mylar](../resource/aluminized-mylar)
+- [Aluminum](../resource/aluminum)
+- [Aluminum oxide](../resource/aluminum-oxide)
+- [Ammonia](../resource/ammonia)
+- [Apple](../resource/apple)
+- [Apple Tissue](../resource/apple-tissue)
+- [Aspergillus mix](../resource/aspergillus-mix)
+- [Baking powder](../resource/baking-powder)
+- [Basaltic](../resource/basaltic)
+- [Bassanite](../resource/bassanite)
+- [Beeswax](../resource/beeswax)
+- [Bisphenol-a](../resource/bisphenol-a)
+- [Blueberry](../resource/blueberry)
+- [Blueberry Tissue](../resource/blueberry-tissue)
+- [Blueberry muffin](../resource/blueberry-muffin)
+- [Brown rice](../resource/brown-rice)
+- [Cabbage](../resource/cabbage)
+- [Cabbage Tissue](../resource/cabbage-tissue)
+- [Calcium](../resource/calcium)
+- [Calcium carbonate](../resource/calcium-carbonate)
+- [Calcium sulfate](../resource/calcium-sulfate)
+- [Cane fiber](../resource/cane-fiber)
+- [Carbon](../resource/carbon)
+- [Carrot](../resource/carrot)
+- [Carrot Tissue](../resource/carrot-tissue)
+- [Celery](../resource/celery)
+- [Celery Tissue](../resource/celery-tissue)
+- [Cement](../resource/cement)
+- [Ceramic electrolyte](../resource/ceramic-electrolyte)
+- [Chalcopyrite](../resource/chalcopyrite)
+- [Chromium](../resource/chromium)
+- [Cilantro](../resource/cilantro)
+- [Cilantro Tissue](../resource/cilantro-tissue)
+- [Cinnamon](../resource/cinnamon)
+- [Cinnamon Tissue](../resource/cinnamon-tissue)
+- [Columnar basalt](../resource/columnar-basalt)
+- [Compost](../resource/compost)
+- [Concrete](../resource/concrete)
+- [Conglomerate](../resource/conglomerate)
+- [Copper](../resource/copper)
+- [Coriander](../resource/coriander)
+- [Corn](../resource/corn)
+- [Corn Tissue](../resource/corn-tissue)
+- [Cranberry](../resource/cranberry)
+- [Cranberry Tissue](../resource/cranberry-tissue)
+- [Cranberry juice](../resource/cranberry-juice)
+- [Cranberry sauce](../resource/cranberry-sauce)
+- [Crop waste](../resource/crop-waste)
+- [Cross bedding](../resource/cross-bedding)
+- [Cucumber](../resource/cucumber)
+- [Cucumber Tissue](../resource/cucumber-tissue)
+- [Electronic waste](../resource/electronic-waste)
+- [Epsom salt](../resource/epsom-salt)
+- [Fertilizer](../resource/fertilizer)
+- [Fiber cloth](../resource/fiber-cloth)
+- [Fish meat](../resource/fish-meat)
+- [Fish patty](../resource/fish-patty)
+- [Food](../resource/food)
+- [Food waste](../resource/food-waste)
+- [French fries](../resource/french-fries)
+- [Garlic](../resource/garlic)
+- [Garlic Tissue](../resource/garlic-tissue)
+- [Ginger](../resource/ginger)
+- [Ginger Tissue](../resource/ginger-tissue)
+- [Glass](../resource/glass)
+- [Goethite](../resource/goethite)
+- [Gold](../resource/gold)
+- [Granite](../resource/granite)
+- [Granola bar](../resource/granola-bar)
+- [Green Bell Pepper](../resource/green-bell-pepper)
+- [Green Bell Pepper Tissue](../resource/green-bell-pepper-tissue)
+- [Gypsum](../resource/gypsum)
+- [Gypsum plaster](../resource/gypsum-plaster)
+- [Hematite](../resource/hematite)
+- [Ice](../resource/ice)
+- [Immune booster](../resource/immune-booster)
+- [Iron chloride](../resource/iron-chloride)
+- [Iron hydroxide](../resource/iron-hydroxide)
+- [Iron oxide](../resource/iron-oxide)
+- [Iron powder](../resource/iron-powder)
+- [Kamacite](../resource/kamacite)
+- [Kevlar](../resource/kevlar)
+- [Kidney Bean](../resource/kidney-bean)
+- [Kidney Bean Tissue](../resource/kidney-bean-tissue)
+- [Leaves](../resource/leaves)
+- [Lemon](../resource/lemon)
+- [Lemon Tissue](../resource/lemon-tissue)
+- [Lettuce](../resource/lettuce)
+- [Lettuce Tissue](../resource/lettuce-tissue)
+- [Lime](../resource/lime)
+- [Lithium](../resource/lithium)
+- [Magnesite](../resource/magnesite)
+- [Magnesium](../resource/magnesium)
+- [Magnetite](../resource/magnetite)
+- [Malachite](../resource/malachite)
+- [Manganese](../resource/manganese)
+- [Meteorite](../resource/meteorite)
+- [Miso](../resource/miso)
+- [Morel Mushroom](../resource/morel-mushroom)
+- [Morel Mushroom Tissue](../resource/morel-mushroom-tissue)
+- [Mudstone](../resource/mudstone)
+- [Mustard seed](../resource/mustard-seed)
+- [Mylar](../resource/mylar)
+- [Napkin](../resource/napkin)
+- [Nickel](../resource/nickel)
+- [Nitrate](../resource/nitrate)
+- [Nitrite](../resource/nitrite)
+- [Nitrosomonas SPP](../resource/nitrosomonas-spp)
+- [Nitrospira SPP](../resource/nitrospira-spp)
+- [Nylon](../resource/nylon)
+- [Okara](../resource/okara)
+- [Olive](../resource/olive)
+- [Olive Tissue](../resource/olive-tissue)
+- [Olivine](../resource/olivine)
+- [Orange](../resource/orange)
+- [Orange Tissue](../resource/orange-tissue)
+- [Paper](../resource/paper)
+- [Paraffin Composites](../resource/paraffin-composites)
+- [Peanut](../resource/peanut)
+- [Peanut Tissue](../resource/peanut-tissue)
+- [Peanut butter](../resource/peanut-butter)
+- [Peas](../resource/peas)
+- [Peas Tissue](../resource/peas-tissue)
+- [Perchlorate](../resource/perchlorate)
+- [Phosphorus](../resource/phosphorus)
+- [Pizza dough](../resource/pizza-dough)
+- [Platinum](../resource/platinum)
+- [Polycarbonate resin](../resource/polycarbonate-resin)
+- [Polyester fiber](../resource/polyester-fiber)
+- [Polyethylene](../resource/polyethylene)
+- [Polypropylene](../resource/polypropylene)
+- [Polystyrene](../resource/polystyrene)
+- [Polyurethane](../resource/polyurethane)
+- [Potash lye](../resource/potash-lye)
+- [Potassium](../resource/potassium)
+- [Potato](../resource/potato)
+- [Potato Tissue](../resource/potato-tissue)
+- [Protein bar](../resource/protein-bar)
+- [Pulp](../resource/pulp)
+- [Pyroxene](../resource/pyroxene)
+- [Quartz](../resource/quartz)
+- [Quinoa](../resource/quinoa)
+- [Quinoa Tissue](../resource/quinoa-tissue)
+- [Quinoa sprout](../resource/quinoa-sprout)
+- [Radish](../resource/radish)
+- [Radish Tissue](../resource/radish-tissue)
+- [Red Beet](../resource/red-beet)
+- [Red Beet Tissue](../resource/red-beet-tissue)
+- [Regolith](../resource/regolith)
+- [Regolith-B](../resource/regolith-b)
+- [Regolith-C](../resource/regolith-c)
+- [Regolith-D](../resource/regolith-d)
+- [Rhizobia](../resource/rhizobia)
+- [Rhizopus oligosporus](../resource/rhizopus-oligosporus)
+- [Rice](../resource/rice)
+- [Rice Tissue](../resource/rice-tissue)
+- [Rice flour](../resource/rice-flour)
+- [Rice noodle](../resource/rice-noodle)
+- [Roasted peanut](../resource/roasted-peanut)
+- [Rock salt](../resource/rock-salt)
+- [Rock samples](../resource/rock-samples)
+- [Sand](../resource/sand)
+- [Sandstone](../resource/sandstone)
+- [Scoria](../resource/scoria)
+- [Sesame](../resource/sesame)
+- [Sesame Tissue](../resource/sesame-tissue)
+- [Sesame seed](../resource/sesame-seed)
+- [Shale](../resource/shale)
+- [Silica](../resource/silica)
+- [Silicon](../resource/silicon)
+- [Silicone Elastomer](../resource/silicone-elastomer)
+- [Silver](../resource/silver)
+- [Smectite](../resource/smectite)
+- [Sodium carbonate](../resource/sodium-carbonate)
+- [Sodium oxide](../resource/sodium-oxide)
+- [Soil](../resource/soil)
+- [Solid waste](../resource/solid-waste)
+- [Soy fiber](../resource/soy-fiber)
+- [Soy flour](../resource/soy-flour)
+- [Soy protein](../resource/soy-protein)
+- [Soy sprout](../resource/soy-sprout)
+- [Soybean](../resource/soybean)
+- [Soybean Tissue](../resource/soybean-tissue)
+- [Soybean ash](../resource/soybean-ash)
+- [Spirulina](../resource/spirulina)
+- [Spring Onion](../resource/spring-onion)
+- [Spring Onion Tissue](../resource/spring-onion-tissue)
+- [Strawberry](../resource/strawberry)
+- [Strawberry Tissue](../resource/strawberry-tissue)
+- [Sugar](../resource/sugar)
+- [Sugarcane](../resource/sugarcane)
+- [Sugarcane Tissue](../resource/sugarcane-tissue)
+- [Sulfur](../resource/sulfur)
+- [Sweet Potato](../resource/sweet-potato)
+- [Sweet Potato Tissue](../resource/sweet-potato-tissue)
+- [Swiss Chard](../resource/swiss-chard)
+- [Swiss Chard Tissue](../resource/swiss-chard-tissue)
+- [Sylvite](../resource/sylvite)
+- [Table salt](../resource/table-salt)
+- [Taenite](../resource/taenite)
+- [Taro](../resource/taro)
+- [Taro Tissue](../resource/taro-tissue)
+- [Tempeh](../resource/tempeh)
+- [Terephthalic acid](../resource/terephthalic-acid)
+- [Thermoplastic Elastomer](../resource/thermoplastic-elastomer)
+- [Tin](../resource/tin)
+- [Titanium](../resource/titanium)
+- [Tofu](../resource/tofu)
+- [Toilet tissue](../resource/toilet-tissue)
+- [Tomato](../resource/tomato)
+- [Tomato Tissue](../resource/tomato-tissue)
+- [Toxic waste](../resource/toxic-waste)
+- [Vanadium](../resource/vanadium)
+- [Veggie patty](../resource/veggie-patty)
+- [Wheat](../resource/wheat)
+- [Wheat Tissue](../resource/wheat-tissue)
+- [Wheat bread](../resource/wheat-bread)
+- [Wheat bun](../resource/wheat-bun)
+- [Wheat flour](../resource/wheat-flour)
+- [Wheat noodle](../resource/wheat-noodle)
+- [White bread](../resource/white-bread)
+- [White bun](../resource/white-bun)
+- [White mustard](../resource/white-mustard)
+- [White mustard Tissue](../resource/white-mustard-tissue)
+- [White onion](../resource/white-onion)
+- [White onion Tissue](../resource/white-onion-tissue)
+- [White rice](../resource/white-rice)
+- [Yam](../resource/yam)
+- [Yam Tissue](../resource/yam-tissue)
+- [Yeast](../resource/yeast)
+- [Zeolite](../resource/zeolite)
+- [Zinc](../resource/zinc)
+- [scandium](../resource/scandium)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/resource/acetic-acid-bacteria.md b/content/docs/definitions/resource/acetic-acid-bacteria.md
new file mode 100644
index 0000000..177c379
--- /dev/null
+++ b/content/docs/definitions/resource/acetic-acid-bacteria.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Acetic acid bacteria
+linkTitle: Acetic acid bacteria
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+This bacteria has the ability to oxidize
many types of sugars and alcohols to organic acids as end products during fermentation
process. Useful for making vinegar.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Organism|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Rice Vinegar by Fermentation](/docs/definitions/food/make-rice-vinegar-by-fermentation)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/acetylene.md b/content/docs/definitions/resource/acetylene.md
new file mode 100644
index 0000000..23aa801
--- /dev/null
+++ b/content/docs/definitions/resource/acetylene.md
@@ -0,0 +1,42 @@
+---
+title: Resource - Acetylene
+linkTitle: Acetylene
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Acetylene is a colorless gas that has a strong garlic-like odor. When
combined with oxygen, it becomes very hot and is classified as the
hottest fuel gas.
It is also the only fuel gas that can weld and cut steel, making it
the preferred choice for welders. The welding process that uses
acetylene is known as oxy-fuel cutting or gas cutting.
Acetylene is probably the hottest burning fuel gas available to us.
Acetylene releases almost 40% of its heat in the inner flame cone.
Acetylene is also commonly used for the production of other chemicals used
in perfumes, vitamins, polymers, solvents and other materials due to its
versatility and ease of reactive control in comparison to other gases.
It combines nicely with a variety of elements and compounds, making it
the most important of starting materials for
organic synthesis.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Gas|
+
+
+## Used by Manufacturing Process
+
+- [Make small vehicle frame](/docs/definitions/process/make-small-vehicle-frame)
+- [Make large vehicle frame](/docs/definitions/process/make-large-vehicle-frame)
+- [Make winch](/docs/definitions/process/make-winch)
+- [Make socket wrench](/docs/definitions/process/make-socket-wrench)
+- [Make pipe wrench](/docs/definitions/process/make-pipe-wrench)
+- [Manufacture turbine generator](/docs/definitions/process/manufacture-turbine-generator)
+- [Manufacture fuel tank](/docs/definitions/process/manufacture-fuel-tank)
+- [Manufacture gas tank](/docs/definitions/process/manufacture-gas-tank)
+- [Manufacture water tank](/docs/definitions/process/manufacture-water-tank)
+- [Assemble Cargo Drone](/docs/definitions/process/assemble-cargo-drone)
+- [Assemble Delivery Drone](/docs/definitions/process/assemble-delivery-drone)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/activated-charcoal.md b/content/docs/definitions/resource/activated-charcoal.md
new file mode 100644
index 0000000..225ce94
--- /dev/null
+++ b/content/docs/definitions/resource/activated-charcoal.md
@@ -0,0 +1,32 @@
+---
+title: Resource - Activated charcoal
+linkTitle: Activated charcoal
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Activated charcoal's main use is as an
antidote in poisoning and in constructing water filter
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make activated charcoal](/docs/definitions/process/make-activated-charcoal)
+
+## Used by Manufacturing Process
+
+- [Make charcoal filter](/docs/definitions/process/make-charcoal-filter)
+- [Make decontamination kit](/docs/definitions/process/make-decontamination-kit)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/akaganeite.md b/content/docs/definitions/resource/akaganeite.md
new file mode 100644
index 0000000..a38d781
--- /dev/null
+++ b/content/docs/definitions/resource/akaganeite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Akaganeite
+linkTitle: Akaganeite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Akaganeite is an iron oxide-hydroxide / chloride mineral with
formula: Fe3+O e.g.; β-FeO. It is formed by the weathering of pyrrhotite. A regolith derived mineral deposit
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Ore|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/allophane.md b/content/docs/definitions/resource/allophane.md
new file mode 100644
index 0000000..330b974
--- /dev/null
+++ b/content/docs/definitions/resource/allophane.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Allophane
+linkTitle: Allophane
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Allophane is an amorphous to poorly crystalline hydrous aluminum
silicate clay mineraloid. Its chemical formula is Al2O3·1.3-2·H2O. A regolith derived mineral deposit
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Ore|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/aluminized-mylar.md b/content/docs/definitions/resource/aluminized-mylar.md
new file mode 100644
index 0000000..038adb5
--- /dev/null
+++ b/content/docs/definitions/resource/aluminized-mylar.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Aluminized Mylar
+linkTitle: Aluminized Mylar
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Aluminized Mylar is a reflective,
electrical insulating material. It contains a coat of aluminum, resulting in a silver-colored radiant
barrier that reflects radiant heat and thermal radiation. It shields Space Stations against the
thermal radiation of the sun and the bitter cold of space. See 'Efficiency of aluminized mylar
insulation at cryogenic temperatures' by James B. Heaney
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Utility|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Roll aluminized mylar foil](/docs/definitions/process/roll-aluminized-mylar-foil)
+
+## Used by Manufacturing Process
+
+- [Make EVA helmet](/docs/definitions/process/make-eva-helmet)
+- [Make EVA helmet Alt #1](/docs/definitions/process/make-eva-helmet-alt--1)
+- [Make EVA helmet Alt #2](/docs/definitions/process/make-eva-helmet-alt--2)
+- [Make coveralls](/docs/definitions/process/make-coveralls)
+- [Make coveralls Alt #1](/docs/definitions/process/make-coveralls-alt--1)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/aluminum-oxide.md b/content/docs/definitions/resource/aluminum-oxide.md
new file mode 100644
index 0000000..ea0d4ff
--- /dev/null
+++ b/content/docs/definitions/resource/aluminum-oxide.md
@@ -0,0 +1,37 @@
+---
+title: Resource - Aluminum oxide
+linkTitle: Aluminum oxide
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Roll aluminum sheet](/docs/definitions/process/roll-aluminum-sheet)
+
+## Used by Manufacturing Process
+
+- [Cast aluminum ingot](/docs/definitions/process/cast-aluminum-ingot)
+- [Cast aluminum ingot (large batch)](/docs/definitions/process/cast-aluminum-ingot--large-batch-)
+- [Make aluminum sheet](/docs/definitions/process/make-aluminum-sheet)
+- [Make spark plug](/docs/definitions/process/make-spark-plug)
+- [Manufacture resistors](/docs/definitions/process/manufacture-resistors)
+- [Manufacture capacitors](/docs/definitions/process/manufacture-capacitors)
+- [Manufacture diodes](/docs/definitions/process/manufacture-diodes)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/aluminum.md b/content/docs/definitions/resource/aluminum.md
new file mode 100644
index 0000000..ab167a3
--- /dev/null
+++ b/content/docs/definitions/resource/aluminum.md
@@ -0,0 +1,38 @@
+---
+title: Resource - Aluminum
+linkTitle: Aluminum
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Roll aluminized mylar foil](/docs/definitions/process/roll-aluminized-mylar-foil)
+- [Manufacture thermal bottle](/docs/definitions/process/manufacture-thermal-bottle)
+- [Make ceramic electrolyte](/docs/definitions/process/make-ceramic-electrolyte)
+- [Make methane solid oxide fuel cells](/docs/definitions/process/make-methane-solid-oxide-fuel-cells)
+- [Make methanol fuel cells](/docs/definitions/process/make-methanol-fuel-cells)
+- [Manufacture resistors](/docs/definitions/process/manufacture-resistors)
+- [Manufacture capacitors](/docs/definitions/process/manufacture-capacitors)
+- [Manufacture diodes](/docs/definitions/process/manufacture-diodes)
+- [Manufacture logic board](/docs/definitions/process/manufacture-logic-board)
+- [Manufacture plasma cutter](/docs/definitions/process/manufacture-plasma-cutter)
+- [Manufacture insulation board](/docs/definitions/process/manufacture-insulation-board)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/ammonia.md b/content/docs/definitions/resource/ammonia.md
new file mode 100644
index 0000000..fdb5731
--- /dev/null
+++ b/content/docs/definitions/resource/ammonia.md
@@ -0,0 +1,30 @@
+---
+title: Resource - Ammonia
+linkTitle: Ammonia
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ NH3+ is an essential nutrient for plants
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make bleaching chemical for paper making](/docs/definitions/process/make-bleaching-chemical-for-paper-making)
+- [Make bleaching chemical for paper making (large batch)](/docs/definitions/process/make-bleaching-chemical-for-paper-making--large-batch-)
+- [Make crop fertilizers Alt #2](/docs/definitions/process/make-crop-fertilizers-alt--2)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/apple-tissue.md b/content/docs/definitions/resource/apple-tissue.md
new file mode 100644
index 0000000..c6c236c
--- /dev/null
+++ b/content/docs/definitions/resource/apple-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Apple Tissue
+linkTitle: Apple Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/apple.md b/content/docs/definitions/resource/apple.md
new file mode 100644
index 0000000..43999fa
--- /dev/null
+++ b/content/docs/definitions/resource/apple.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Apple
+linkTitle: Apple
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/argon.md b/content/docs/definitions/resource/argon.md
new file mode 100644
index 0000000..7b0723c
--- /dev/null
+++ b/content/docs/definitions/resource/argon.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Argon
+linkTitle: Argon
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Gas|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/aspergillus-mix.md b/content/docs/definitions/resource/aspergillus-mix.md
new file mode 100644
index 0000000..445a1fe
--- /dev/null
+++ b/content/docs/definitions/resource/aspergillus-mix.md
@@ -0,0 +1,30 @@
+---
+title: Resource - Aspergillus mix
+linkTitle: Aspergillus mix
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
A mix of the fungi Aspergillus oryzae and
Aspergillus sojae. Used in the fermentation of miso, soy sauce, and sake.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Organism|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Soy Sauce by Fermentation](/docs/definitions/food/make-soy-sauce-by-fermentation)
+- [Make Miso by Fermentation](/docs/definitions/food/make-miso-by-fermentation)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/baking-powder.md b/content/docs/definitions/resource/baking-powder.md
new file mode 100644
index 0000000..e1dac22
--- /dev/null
+++ b/content/docs/definitions/resource/baking-powder.md
@@ -0,0 +1,32 @@
+---
+title: Resource - Baking powder
+linkTitle: Baking powder
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Baking powder contains sodium bicarbonate as well as the acidifying agent (cream of tartar), and also a drying agent (usually starch).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Chemical|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Wheat Noodles from Wheat Flour](/docs/definitions/food/make-wheat-noodles-from-wheat-flour)
+- [Make Rice Noodles from Rice Flour](/docs/definitions/food/make-rice-noodles-from-rice-flour)
+- [Make Blueberry Muffin](/docs/definitions/food/make-blueberry-muffin)
+- [Make Okara Blueberry Muffin](/docs/definitions/food/make-okara-blueberry-muffin)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/basaltic.md b/content/docs/definitions/resource/basaltic.md
new file mode 100644
index 0000000..3539975
--- /dev/null
+++ b/content/docs/definitions/resource/basaltic.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Basaltic
+linkTitle: Basaltic
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Basalt is a common extrusive igneous rock formed from the rapid cooling
of basaltic lava exposed at or very near the surface of a planet. A typical regolith derived mineral deposit
in NASA Water ISRU Study Type Case D regolith that makes up of 23.5% basaltic.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Ore|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/bassanite.md b/content/docs/definitions/resource/bassanite.md
new file mode 100644
index 0000000..f0bf578
--- /dev/null
+++ b/content/docs/definitions/resource/bassanite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Bassanite
+linkTitle: Bassanite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Bassanite is a calcium sulfate mineral with formula CaSO4·0.5
or 2CaSO4·H2O. In other words it has half a water per CaSO4 unit hence its synonym hemihydrate.
A regolith derived mineral deposit
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Ore|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/beeswax.md b/content/docs/definitions/resource/beeswax.md
new file mode 100644
index 0000000..0fd6032
--- /dev/null
+++ b/content/docs/definitions/resource/beeswax.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Beeswax
+linkTitle: Beeswax
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
a natural wax produced by honey as a lubricant,
waterproofing agent, an ingredient in cosmetics, a medicinal agent to help lower cholesterol levels, prevent
infections, and help protect the stomach from ulcers.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Insect|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/bisphenol-a.md b/content/docs/definitions/resource/bisphenol-a.md
new file mode 100644
index 0000000..42ae0d2
--- /dev/null
+++ b/content/docs/definitions/resource/bisphenol-a.md
@@ -0,0 +1,32 @@
+---
+title: Resource - Bisphenol-a
+linkTitle: Bisphenol-a
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
The chemical used for reinforcing
plastic and for making polycarbonate
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Produce bisphenol-a](/docs/definitions/process/produce-bisphenol-a)
+
+## Used by Manufacturing Process
+
+- [Make plastic bottle Alt #2](/docs/definitions/process/make-plastic-bottle-alt--2)
+- [Produce polycarbonate resin](/docs/definitions/process/produce-polycarbonate-resin)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/black-water.md b/content/docs/definitions/resource/black-water.md
new file mode 100644
index 0000000..02ce2ec
--- /dev/null
+++ b/content/docs/definitions/resource/black-water.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Black water
+linkTitle: Black water
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Sewage water come into contact with fecal matter and potentially hosting harmful bacteria and disease-causing pathogens.
Need special treatment to be useful.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Waste|
+|Form:|Liquid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/bleaching-chemical.md b/content/docs/definitions/resource/bleaching-chemical.md
new file mode 100644
index 0000000..5a75dd1
--- /dev/null
+++ b/content/docs/definitions/resource/bleaching-chemical.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Bleaching chemical
+linkTitle: Bleaching chemical
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Bleaching chemical
include chlorine dioxide, oxygen, or hydrogen peroxide.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Liquid|
+
+## Made by Manufacturing Process
+
+- [Make bleaching chemical for paper making](/docs/definitions/process/make-bleaching-chemical-for-paper-making)
+- [Make bleaching chemical for paper making (large batch)](/docs/definitions/process/make-bleaching-chemical-for-paper-making--large-batch-)
+
+## Used by Manufacturing Process
+
+- [Make paper, napkin and toilet tissue from pulp](/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp)
+- [Make paper, napkin and toilet tissue from pulp (large batch)](/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp--large-batch-)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/blueberry-muffin.md b/content/docs/definitions/resource/blueberry-muffin.md
new file mode 100644
index 0000000..ed24db0
--- /dev/null
+++ b/content/docs/definitions/resource/blueberry-muffin.md
@@ -0,0 +1,30 @@
+---
+title: Resource - Blueberry muffin
+linkTitle: Blueberry muffin
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Blueberry Muffin](/docs/definitions/food/make-blueberry-muffin)
+- [Make Okara Blueberry Muffin](/docs/definitions/food/make-okara-blueberry-muffin)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/blueberry-tissue.md b/content/docs/definitions/resource/blueberry-tissue.md
new file mode 100644
index 0000000..96aae0e
--- /dev/null
+++ b/content/docs/definitions/resource/blueberry-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Blueberry Tissue
+linkTitle: Blueberry Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/blueberry.md b/content/docs/definitions/resource/blueberry.md
new file mode 100644
index 0000000..37a8c20
--- /dev/null
+++ b/content/docs/definitions/resource/blueberry.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Blueberry
+linkTitle: Blueberry
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Granola Bar Recipe #2](/docs/definitions/food/make-granola-bar-recipe--2)
+- [Make Okara Protein Bar Recipe #2](/docs/definitions/food/make-okara-protein-bar-recipe--2)
+- [Make Blueberry Muffin](/docs/definitions/food/make-blueberry-muffin)
+- [Make Okara Blueberry Muffin](/docs/definitions/food/make-okara-blueberry-muffin)
+- [Make Immune Booster](/docs/definitions/food/make-immune-booster)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/brine-water.md b/content/docs/definitions/resource/brine-water.md
new file mode 100644
index 0000000..6616a4e
--- /dev/null
+++ b/content/docs/definitions/resource/brine-water.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Brine Water
+linkTitle: Brine Water
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Brine water comes from melted mineral ice or from underground water reserve.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Liquid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/brown-rice.md b/content/docs/definitions/resource/brown-rice.md
new file mode 100644
index 0000000..c26db93
--- /dev/null
+++ b/content/docs/definitions/resource/brown-rice.md
@@ -0,0 +1,34 @@
+---
+title: Resource - Brown rice
+linkTitle: Brown rice
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Process Rice into Brown Rice](/docs/definitions/food/process-rice-into-brown-rice)
+
+
+## Used by Food Process
+
+- [Process Brown Rice into Rice Flour](/docs/definitions/food/process-brown-rice-into-rice-flour)
+- [Process Brown Rice into White Rice](/docs/definitions/food/process-brown-rice-into-white-rice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cabbage-tissue.md b/content/docs/definitions/resource/cabbage-tissue.md
new file mode 100644
index 0000000..67071d4
--- /dev/null
+++ b/content/docs/definitions/resource/cabbage-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Cabbage Tissue
+linkTitle: Cabbage Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cabbage.md b/content/docs/definitions/resource/cabbage.md
new file mode 100644
index 0000000..54f5b01
--- /dev/null
+++ b/content/docs/definitions/resource/cabbage.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Cabbage
+linkTitle: Cabbage
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Package Preserved Food](/docs/definitions/food/package-preserved-food)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/calcium-carbonate.md b/content/docs/definitions/resource/calcium-carbonate.md
new file mode 100644
index 0000000..b538ebf
--- /dev/null
+++ b/content/docs/definitions/resource/calcium-carbonate.md
@@ -0,0 +1,36 @@
+---
+title: Resource - Calcium carbonate
+linkTitle: Calcium carbonate
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Purify rock salt into compounds](/docs/definitions/process/purify-rock-salt-into-compounds)
+
+## Used by Manufacturing Process
+
+- [Make bleaching chemical for paper making](/docs/definitions/process/make-bleaching-chemical-for-paper-making)
+- [Make bleaching chemical for paper making (large batch)](/docs/definitions/process/make-bleaching-chemical-for-paper-making--large-batch-)
+- [Bake regolith brick](/docs/definitions/process/bake-regolith-brick)
+- [Bake sand brick](/docs/definitions/process/bake-sand-brick)
+- [Make charcoal filter](/docs/definitions/process/make-charcoal-filter)
+- [Make decontamination kit](/docs/definitions/process/make-decontamination-kit)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/calcium-sulfate.md b/content/docs/definitions/resource/calcium-sulfate.md
new file mode 100644
index 0000000..7fc13cc
--- /dev/null
+++ b/content/docs/definitions/resource/calcium-sulfate.md
@@ -0,0 +1,37 @@
+---
+title: Resource - Calcium sulfate
+linkTitle: Calcium sulfate
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
CaSO4 has a molecular weight of 136.14 g/mol. Derived from limestone, it
occurs naturally in the form of gypsum, and may be used as a sequestrant
in food as well as a buffer and firming agent. Artificial sweetener base,
bleaching agent for bread rolls, flour, tinned tomatoes, soy tofu,
dried egg, cheese products, tooth paste. Used in mortar,
cement and plaster of Paris. Calcium sulfate has a long history of use
in medicine and dentistry, including bone regeneration as a graft material
and graft binder/extender, and as a barrier in guided tissue regeneration.
Crystalline phases of CaSO4
(1). Anhydrite. CaSO4.
(2). Dihydrate. CaSO4·2H2O. Called gypsum, as a bleaching agent for crude
soya bean vegetable oil
(3). Hemihydrate. CaSO4.1⁄2H2O). bassanite. Also called plaster of Paris.
Calcium sulfate, 516 or E516, a common laboratory and industrial chemical.
Also used as a coagulant in products like tofu.
CaSO4 is used as a coating agent for papers and adds thickness and
durability, making the paper harder to rip.
Specifically, it's used in cooking as a
a. Firming agent - Helps maintain firmness of fruits and vegetables or interacts with
gelling agents to strengthen food structure.
b. Flour treatment agent - A substance that improves baking quality or colour of flour.
c. Sequestrant - A substance which controls the availability of a cation.
d. Stabiliser - A substance that maintains the uniform dispersal of substances in a food.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Purify rock salt into compounds](/docs/definitions/process/purify-rock-salt-into-compounds)
+
+## Used by Manufacturing Process
+
+- [Make paper, napkin and toilet tissue from pulp](/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp)
+- [Make paper, napkin and toilet tissue from pulp (large batch)](/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp--large-batch-)
+
+
+
+## Used by Food Process
+
+- [Make Tofu from Soymilk and Calcium Sulfate](/docs/definitions/food/make-tofu-from-soymilk-and-calcium-sulfate)
+- [Process White Rice into Rice Flour](/docs/definitions/food/process-white-rice-into-rice-flour)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/calcium.md b/content/docs/definitions/resource/calcium.md
new file mode 100644
index 0000000..d7981f0
--- /dev/null
+++ b/content/docs/definitions/resource/calcium.md
@@ -0,0 +1,48 @@
+---
+title: Resource - Calcium
+linkTitle: Calcium
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Purify rock salt into compounds](/docs/definitions/process/purify-rock-salt-into-compounds)
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers](/docs/definitions/process/make-crop-fertilizers)
+- [Make crop fertilizers Alt #1](/docs/definitions/process/make-crop-fertilizers-alt--1)
+- [Make crop fertilizers Alt #2](/docs/definitions/process/make-crop-fertilizers-alt--2)
+- [Make crop fertilizers Alt #3](/docs/definitions/process/make-crop-fertilizers-alt--3)
+- [Make crop fertilizers Alt #4](/docs/definitions/process/make-crop-fertilizers-alt--4)
+- [Make crop fertilizers Alt #5](/docs/definitions/process/make-crop-fertilizers-alt--5)
+- [Make crop fertilizers Alt #6](/docs/definitions/process/make-crop-fertilizers-alt--6)
+- [Make crop fertilizers Alt #7](/docs/definitions/process/make-crop-fertilizers-alt--7)
+- [Make crop fertilizers Alt #8](/docs/definitions/process/make-crop-fertilizers-alt--8)
+- [Make crop fertilizers Alt #9](/docs/definitions/process/make-crop-fertilizers-alt--9)
+
+
+## Made by Food Process
+
+- [Extract Minerals from Soybean Ash](/docs/definitions/food/extract-minerals-from-soybean-ash)
+
+
+## Used by Food Process
+
+- [Make Immune Booster](/docs/definitions/food/make-immune-booster)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cane-fiber.md b/content/docs/definitions/resource/cane-fiber.md
new file mode 100644
index 0000000..1a32f62
--- /dev/null
+++ b/content/docs/definitions/resource/cane-fiber.md
@@ -0,0 +1,55 @@
+---
+title: Resource - Cane fiber
+linkTitle: Cane fiber
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Fiber processed from Sugarcane.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make pulp from cane fiber and crop waste](/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste)
+- [Make pulp from cane fiber and crop waste (large batch)](/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste--large-batch-)
+- [Make Garment](/docs/definitions/process/make-garment)
+- [Make Liquid Cooling Garment](/docs/definitions/process/make-liquid-cooling-garment)
+- [Make Liquid Cooling Garment Alt #1](/docs/definitions/process/make-liquid-cooling-garment-alt--1)
+- [Make Liquid Cooling Garment Alt #2](/docs/definitions/process/make-liquid-cooling-garment-alt--2)
+- [Make EVA helmet](/docs/definitions/process/make-eva-helmet)
+- [Make EVA helmet Alt #2](/docs/definitions/process/make-eva-helmet-alt--2)
+- [Make pressure suit](/docs/definitions/process/make-pressure-suit)
+- [Make pressure suit Alt #2](/docs/definitions/process/make-pressure-suit-alt--2)
+- [Make pressure suit Alt #3](/docs/definitions/process/make-pressure-suit-alt--3)
+- [Make coveralls](/docs/definitions/process/make-coveralls)
+- [Make EVA gloves](/docs/definitions/process/make-eva-gloves)
+- [Make EVA boots](/docs/definitions/process/make-eva-boots)
+- [Make EVA pads](/docs/definitions/process/make-eva-pads)
+- [Make EVA backpack](/docs/definitions/process/make-eva-backpack)
+- [Make EVA backpack Alt #2](/docs/definitions/process/make-eva-backpack-alt--2)
+- [Make work gloves](/docs/definitions/process/make-work-gloves)
+- [Make biosensor](/docs/definitions/process/make-biosensor)
+
+
+## Made by Food Process
+
+- [Derive Sugar, Cane Fiber, Bagasse, Sugarcane Juice from Sugarcane](/docs/definitions/food/derive-sugar--cane-fiber--bagasse--sugarcane-juice-from-sugarcane)
+
+
+## Used by Food Process
+
+- [Produce Fiber Cloth from Cane or Soy Fiber](/docs/definitions/food/produce-fiber-cloth-from-cane-or-soy-fiber)
+- [Make Immune Booster](/docs/definitions/food/make-immune-booster)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/carbon-dioxide.md b/content/docs/definitions/resource/carbon-dioxide.md
new file mode 100644
index 0000000..baed46b
--- /dev/null
+++ b/content/docs/definitions/resource/carbon-dioxide.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Carbon dioxide
+linkTitle: Carbon dioxide
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Gas|
+
+## Made by Manufacturing Process
+
+- [Do carbon monoxide iron reduction](/docs/definitions/process/do-carbon-monoxide-iron-reduction)
+
+## Used by Manufacturing Process
+
+- [Make fire extinguisher](/docs/definitions/process/make-fire-extinguisher)
+- [Produce polycarbonate resin](/docs/definitions/process/produce-polycarbonate-resin)
+- [Produce polyurethane](/docs/definitions/process/produce-polyurethane)
+- [gasify sugarcane and biomass into methanol](/docs/definitions/process/gasify-sugarcane-and-biomass-into-methanol)
+- [Make aerogel tile](/docs/definitions/process/make-aerogel-tile)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/carbon-monoxide.md b/content/docs/definitions/resource/carbon-monoxide.md
new file mode 100644
index 0000000..6f80314
--- /dev/null
+++ b/content/docs/definitions/resource/carbon-monoxide.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Carbon monoxide
+linkTitle: Carbon monoxide
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Gas|
+
+## Made by Manufacturing Process
+
+- [Cast aluminum ingot](/docs/definitions/process/cast-aluminum-ingot)
+- [Cast aluminum ingot (large batch)](/docs/definitions/process/cast-aluminum-ingot--large-batch-)
+- [Make aluminum sheet](/docs/definitions/process/make-aluminum-sheet)
+
+## Used by Manufacturing Process
+
+- [Do carbon monoxide iron reduction](/docs/definitions/process/do-carbon-monoxide-iron-reduction)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/carbon.md b/content/docs/definitions/resource/carbon.md
new file mode 100644
index 0000000..8c7b27d
--- /dev/null
+++ b/content/docs/definitions/resource/carbon.md
@@ -0,0 +1,45 @@
+---
+title: Resource - Carbon
+linkTitle: Carbon
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Carbon powder
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [gasify sugarcane and biomass into methanol](/docs/definitions/process/gasify-sugarcane-and-biomass-into-methanol)
+
+## Used by Manufacturing Process
+
+- [Cast aluminum ingot](/docs/definitions/process/cast-aluminum-ingot)
+- [Cast aluminum ingot (large batch)](/docs/definitions/process/cast-aluminum-ingot--large-batch-)
+- [Make aluminum sheet](/docs/definitions/process/make-aluminum-sheet)
+- [Do steel ingot alloying](/docs/definitions/process/do-steel-ingot-alloying)
+- [Make steel sheet](/docs/definitions/process/make-steel-sheet)
+- [Produce Terephthalic Acid](/docs/definitions/process/produce-terephthalic-acid)
+- [Produce Polyester Resin](/docs/definitions/process/produce-polyester-resin)
+- [Do steel ingot nickel alloying](/docs/definitions/process/do-steel-ingot-nickel-alloying)
+- [Make activated charcoal](/docs/definitions/process/make-activated-charcoal)
+- [Produce bisphenol-a](/docs/definitions/process/produce-bisphenol-a)
+- [Manufacture resistors](/docs/definitions/process/manufacture-resistors)
+- [Manufacture capacitors](/docs/definitions/process/manufacture-capacitors)
+- [Make wheelbarrow](/docs/definitions/process/make-wheelbarrow)
+- [Make Thermoplastic Elastomer](/docs/definitions/process/make-thermoplastic-elastomer)
+- [Make Silicone Elastomer](/docs/definitions/process/make-silicone-elastomer)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/carrot-tissue.md b/content/docs/definitions/resource/carrot-tissue.md
new file mode 100644
index 0000000..c4d272b
--- /dev/null
+++ b/content/docs/definitions/resource/carrot-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Carrot Tissue
+linkTitle: Carrot Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/carrot.md b/content/docs/definitions/resource/carrot.md
new file mode 100644
index 0000000..ed9638f
--- /dev/null
+++ b/content/docs/definitions/resource/carrot.md
@@ -0,0 +1,32 @@
+---
+title: Resource - Carrot
+linkTitle: Carrot
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Package Preserved Food Recipe #3](/docs/definitions/food/package-preserved-food-recipe--3)
+- [Make Veggie Patty from Veg, Tofu and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice)
+- [Make Veggie Patty from Veg, Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice)
+- [Make Veggie Patty from Veg, Okara and Spice](/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/celery-tissue.md b/content/docs/definitions/resource/celery-tissue.md
new file mode 100644
index 0000000..53665b1
--- /dev/null
+++ b/content/docs/definitions/resource/celery-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Celery Tissue
+linkTitle: Celery Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/celery.md b/content/docs/definitions/resource/celery.md
new file mode 100644
index 0000000..2462933
--- /dev/null
+++ b/content/docs/definitions/resource/celery.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Celery
+linkTitle: Celery
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cement.md b/content/docs/definitions/resource/cement.md
new file mode 100644
index 0000000..831f1bd
--- /dev/null
+++ b/content/docs/definitions/resource/cement.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Cement
+linkTitle: Cement
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A Building Material.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Construction|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/ceramic-electrolyte.md b/content/docs/definitions/resource/ceramic-electrolyte.md
new file mode 100644
index 0000000..3e9cd0a
--- /dev/null
+++ b/content/docs/definitions/resource/ceramic-electrolyte.md
@@ -0,0 +1,32 @@
+---
+title: Resource - Ceramic electrolyte
+linkTitle: Ceramic electrolyte
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
The ceramic electrolyte
is highly ion-conductive and chemically stable for making batteries and fuel cells.
This solid metal oxide is an insulator that will not conduct electricity. However, it
is capable of conducting oxygen ions and suitable for cell reactions.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make ceramic electrolyte](/docs/definitions/process/make-ceramic-electrolyte)
+
+## Used by Manufacturing Process
+
+- [Make methane solid oxide fuel cells](/docs/definitions/process/make-methane-solid-oxide-fuel-cells)
+- [Make methanol fuel cells](/docs/definitions/process/make-methanol-fuel-cells)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/chalcopyrite.md b/content/docs/definitions/resource/chalcopyrite.md
new file mode 100644
index 0000000..18ba8b3
--- /dev/null
+++ b/content/docs/definitions/resource/chalcopyrite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Chalcopyrite
+linkTitle: Chalcopyrite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A copper iron sulfide (CuFeS2) mineral that
crystallizes in the tetragonal system.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Mineral|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/chlorine.md b/content/docs/definitions/resource/chlorine.md
new file mode 100644
index 0000000..34270ff
--- /dev/null
+++ b/content/docs/definitions/resource/chlorine.md
@@ -0,0 +1,28 @@
+---
+title: Resource - Chlorine
+linkTitle: Chlorine
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Gas|
+
+## Made by Manufacturing Process
+
+- [Do potassium chloride electrolysis](/docs/definitions/process/do-potassium-chloride-electrolysis)
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/chromium.md b/content/docs/definitions/resource/chromium.md
new file mode 100644
index 0000000..312e476
--- /dev/null
+++ b/content/docs/definitions/resource/chromium.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Chromium
+linkTitle: Chromium
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cilantro-tissue.md b/content/docs/definitions/resource/cilantro-tissue.md
new file mode 100644
index 0000000..a5fc032
--- /dev/null
+++ b/content/docs/definitions/resource/cilantro-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Cilantro Tissue
+linkTitle: Cilantro Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cilantro.md b/content/docs/definitions/resource/cilantro.md
new file mode 100644
index 0000000..4f98b2a
--- /dev/null
+++ b/content/docs/definitions/resource/cilantro.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Cilantro
+linkTitle: Cilantro
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cinnamon-tissue.md b/content/docs/definitions/resource/cinnamon-tissue.md
new file mode 100644
index 0000000..0e2b33f
--- /dev/null
+++ b/content/docs/definitions/resource/cinnamon-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Cinnamon Tissue
+linkTitle: Cinnamon Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cinnamon.md b/content/docs/definitions/resource/cinnamon.md
new file mode 100644
index 0000000..6841f89
--- /dev/null
+++ b/content/docs/definitions/resource/cinnamon.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Cinnamon
+linkTitle: Cinnamon
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/columnar-basalt.md b/content/docs/definitions/resource/columnar-basalt.md
new file mode 100644
index 0000000..89336e3
--- /dev/null
+++ b/content/docs/definitions/resource/columnar-basalt.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Columnar basalt
+linkTitle: Columnar basalt
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Basalt is a dark-colored, fine-grained, igneous rock
composed mainly of plagioclase and pyroxene minerals. It most commonly forms as an
extrusive rock, such as a lava flow.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Rock|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/compost.md b/content/docs/definitions/resource/compost.md
new file mode 100644
index 0000000..c039f24
--- /dev/null
+++ b/content/docs/definitions/resource/compost.md
@@ -0,0 +1,36 @@
+---
+title: Resource - Compost
+linkTitle: Compost
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Organic waste consists of decaying food waste and crop remains.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Waste|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers](/docs/definitions/process/make-crop-fertilizers)
+- [Make crop fertilizers Alt #1](/docs/definitions/process/make-crop-fertilizers-alt--1)
+- [Make crop fertilizers Alt #2](/docs/definitions/process/make-crop-fertilizers-alt--2)
+- [Make crop fertilizers Alt #3](/docs/definitions/process/make-crop-fertilizers-alt--3)
+- [Make crop fertilizers Alt #4](/docs/definitions/process/make-crop-fertilizers-alt--4)
+- [Make crop fertilizers Alt #5](/docs/definitions/process/make-crop-fertilizers-alt--5)
+- [Make crop fertilizers Alt #6](/docs/definitions/process/make-crop-fertilizers-alt--6)
+- [Make crop fertilizers Alt #8](/docs/definitions/process/make-crop-fertilizers-alt--8)
+- [Make crop fertilizers Alt #9](/docs/definitions/process/make-crop-fertilizers-alt--9)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/concrete.md b/content/docs/definitions/resource/concrete.md
new file mode 100644
index 0000000..045d7fe
--- /dev/null
+++ b/content/docs/definitions/resource/concrete.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Concrete
+linkTitle: Concrete
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A Building Material.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Construction|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/conglomerate.md b/content/docs/definitions/resource/conglomerate.md
new file mode 100644
index 0000000..83056b3
--- /dev/null
+++ b/content/docs/definitions/resource/conglomerate.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Conglomerate
+linkTitle: Conglomerate
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Rock|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/copper.md b/content/docs/definitions/resource/copper.md
new file mode 100644
index 0000000..1afac95
--- /dev/null
+++ b/content/docs/definitions/resource/copper.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Copper
+linkTitle: Copper
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make copper pipe](/docs/definitions/process/make-copper-pipe)
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers Alt #6](/docs/definitions/process/make-crop-fertilizers-alt--6)
+- [Make spark plug](/docs/definitions/process/make-spark-plug)
+- [Make copper sheet](/docs/definitions/process/make-copper-sheet)
+- [Manufacture logic board](/docs/definitions/process/manufacture-logic-board)
+- [Manufacture plasma cutter](/docs/definitions/process/manufacture-plasma-cutter)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/coriander.md b/content/docs/definitions/resource/coriander.md
new file mode 100644
index 0000000..66ba16f
--- /dev/null
+++ b/content/docs/definitions/resource/coriander.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Coriander
+linkTitle: Coriander
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Seeds from cilantro.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/corn-tissue.md b/content/docs/definitions/resource/corn-tissue.md
new file mode 100644
index 0000000..3171b48
--- /dev/null
+++ b/content/docs/definitions/resource/corn-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Corn Tissue
+linkTitle: Corn Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/corn.md b/content/docs/definitions/resource/corn.md
new file mode 100644
index 0000000..50d7b3c
--- /dev/null
+++ b/content/docs/definitions/resource/corn.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Corn
+linkTitle: Corn
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cranberry-juice.md b/content/docs/definitions/resource/cranberry-juice.md
new file mode 100644
index 0000000..b4bb912
--- /dev/null
+++ b/content/docs/definitions/resource/cranberry-juice.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Cranberry juice
+linkTitle: Cranberry juice
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Juice made from Cranberries
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Cranberry Juice from Cranberry](/docs/definitions/food/make-cranberry-juice-from-cranberry)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cranberry-sauce.md b/content/docs/definitions/resource/cranberry-sauce.md
new file mode 100644
index 0000000..e58d877
--- /dev/null
+++ b/content/docs/definitions/resource/cranberry-sauce.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Cranberry sauce
+linkTitle: Cranberry sauce
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Sauce or relish made from Cranberries
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Cranberry Sauce from Cranberry](/docs/definitions/food/make-cranberry-sauce-from-cranberry)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cranberry-tissue.md b/content/docs/definitions/resource/cranberry-tissue.md
new file mode 100644
index 0000000..489dc32
--- /dev/null
+++ b/content/docs/definitions/resource/cranberry-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Cranberry Tissue
+linkTitle: Cranberry Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cranberry.md b/content/docs/definitions/resource/cranberry.md
new file mode 100644
index 0000000..1681332
--- /dev/null
+++ b/content/docs/definitions/resource/cranberry.md
@@ -0,0 +1,30 @@
+---
+title: Resource - Cranberry
+linkTitle: Cranberry
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Cranberry Juice from Cranberry](/docs/definitions/food/make-cranberry-juice-from-cranberry)
+- [Make Cranberry Sauce from Cranberry](/docs/definitions/food/make-cranberry-sauce-from-cranberry)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/crop-waste.md b/content/docs/definitions/resource/crop-waste.md
new file mode 100644
index 0000000..799d581
--- /dev/null
+++ b/content/docs/definitions/resource/crop-waste.md
@@ -0,0 +1,39 @@
+---
+title: Resource - Crop waste
+linkTitle: Crop waste
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Organic waste from a dead crop or inedible biomass after harvest.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Waste|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make pulp from cane fiber and crop waste](/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste)
+- [Make pulp from cane fiber and crop waste (large batch)](/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste--large-batch-)
+- [Make crop fertilizers Alt #7](/docs/definitions/process/make-crop-fertilizers-alt--7)
+- [Produce polyurethane](/docs/definitions/process/produce-polyurethane)
+- [gasify sugarcane and biomass into methanol](/docs/definitions/process/gasify-sugarcane-and-biomass-into-methanol)
+
+
+## Made by Food Process
+
+- [Process Rice into White Rice and rice bran oil](/docs/definitions/food/process-rice-into-white-rice-and-rice-bran-oil)
+- [Process Rice into Brown Rice](/docs/definitions/food/process-rice-into-brown-rice)
+- [Process Brown Rice into White Rice](/docs/definitions/food/process-brown-rice-into-white-rice)
+- [Process Wheat into Wheat Flour](/docs/definitions/food/process-wheat-into-wheat-flour)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cross-bedding.md b/content/docs/definitions/resource/cross-bedding.md
new file mode 100644
index 0000000..959ed60
--- /dev/null
+++ b/content/docs/definitions/resource/cross-bedding.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Cross bedding
+linkTitle: Cross bedding
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Rock|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cucumber-tissue.md b/content/docs/definitions/resource/cucumber-tissue.md
new file mode 100644
index 0000000..cac3b78
--- /dev/null
+++ b/content/docs/definitions/resource/cucumber-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Cucumber Tissue
+linkTitle: Cucumber Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/cucumber.md b/content/docs/definitions/resource/cucumber.md
new file mode 100644
index 0000000..8f52a00
--- /dev/null
+++ b/content/docs/definitions/resource/cucumber.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Cucumber
+linkTitle: Cucumber
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/dimethyl-terephthalate.md b/content/docs/definitions/resource/dimethyl-terephthalate.md
new file mode 100644
index 0000000..ca81d4e
--- /dev/null
+++ b/content/docs/definitions/resource/dimethyl-terephthalate.md
@@ -0,0 +1,31 @@
+---
+title: Resource - Dimethyl terephthalate
+linkTitle: Dimethyl terephthalate
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Dimethyl terephthalate (DMT) is an organic compound with the formula C6H4(COOCH3)2.
It is the diester formed from terephthalic acid and methanol.
It is a white solid that melts to give a distillable colourless liquid.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Liquid|
+
+## Made by Manufacturing Process
+
+- [Produce Dimethyl Terephthalate](/docs/definitions/process/produce-dimethyl-terephthalate)
+
+## Used by Manufacturing Process
+
+- [Produce polyester fiber](/docs/definitions/process/produce-polyester-fiber)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/electronic-waste.md b/content/docs/definitions/resource/electronic-waste.md
new file mode 100644
index 0000000..1ae9d31
--- /dev/null
+++ b/content/docs/definitions/resource/electronic-waste.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Electronic waste
+linkTitle: Electronic waste
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Electronic waste comprises discarded electronic devices, circuit boards and scrap components.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Waste|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/epsom-salt.md b/content/docs/definitions/resource/epsom-salt.md
new file mode 100644
index 0000000..226d3c1
--- /dev/null
+++ b/content/docs/definitions/resource/epsom-salt.md
@@ -0,0 +1,36 @@
+---
+title: Resource - Epsom salt
+linkTitle: Epsom salt
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Magnesium Sulfate as bath salt to
soothe sore muscles or for gardeners to improve crops.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Purify rock salt into compounds](/docs/definitions/process/purify-rock-salt-into-compounds)
+
+
+
+
+## Used by Food Process
+
+- [Make Tofu from Soymilk and Epsom Salt](/docs/definitions/food/make-tofu-from-soymilk-and-epsom-salt)
+- [Make Tofu from Soybeans, Water, and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-from-soybeans--water--and-epsom-salt--large-batch-)
+- [Make Soymilk and Tofu from Soybeans, Water, and Epsom Salt](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-epsom-salt)
+- [Make Tofu and Tempeh from Soybeans and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-epsom-salt--large-batch-)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/ethane.md b/content/docs/definitions/resource/ethane.md
new file mode 100644
index 0000000..007da13
--- /dev/null
+++ b/content/docs/definitions/resource/ethane.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Ethane
+linkTitle: Ethane
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Ethane is a naturally
occurring organic chemical compound with chemical formula C2H6.
and has a molecular mass of 30.07 g/mol. At standard temperature
and pressure, ethane is a colorless, odorless gas. It can be used as
a fuel for power generation in power plants or used as a feedstock for
the production of ethylene.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Gas|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/ethylene-glycol.md b/content/docs/definitions/resource/ethylene-glycol.md
new file mode 100644
index 0000000..a453ea0
--- /dev/null
+++ b/content/docs/definitions/resource/ethylene-glycol.md
@@ -0,0 +1,31 @@
+---
+title: Resource - Ethylene glycol
+linkTitle: Ethylene glycol
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Ethylene glycol is a colorless, odorless, flammable, and viscous liquid.
It's commonly used in various industrial and consumer products, including antifreeze,
hydraulic brake fluids, some stamp pad inks, ballpoint pens, solvents, paints,
plastics, films, cosmetics, and pharmaceutical vehicles.
It is also used as a raw material in the manufacture of polyester fibers and
primarily used as a component of de-icer and anti-icer/anti-freeze fluid
used in aircraft de-icing and anti-icing operations, and as an anti-freeze
component in motor vehicles.
Ethylene glycol is a popular refrigerants ingredient due to its excellent
heat transfer properties and is used in a wide variety of heating and cooling
applications such as HVAC systems, plastic mould making, food, and pharmaceutical
processes.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Liquid|
+
+## Made by Manufacturing Process
+
+- [Produce ethylene glycol](/docs/definitions/process/produce-ethylene-glycol)
+
+## Used by Manufacturing Process
+
+- [Produce polyester fiber](/docs/definitions/process/produce-polyester-fiber)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/ethylene.md b/content/docs/definitions/resource/ethylene.md
new file mode 100644
index 0000000..2d3fe6e
--- /dev/null
+++ b/content/docs/definitions/resource/ethylene.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Ethylene
+linkTitle: Ethylene
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Ethylene is a colorless, flammable gas with a sweet and musky odor.
It is a hydrocarbon with the chemical formula C2H4, also known as ethene
or polyethylene. Ethylene is widely used in the chemical industry and is
a natural plant hormone that plays a crucial role in plant growth and
development.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Gas|
+
+
+## Used by Manufacturing Process
+
+- [Produce ethylene glycol](/docs/definitions/process/produce-ethylene-glycol)
+- [Produce polycarbonate resin](/docs/definitions/process/produce-polycarbonate-resin)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/fertilizer.md b/content/docs/definitions/resource/fertilizer.md
new file mode 100644
index 0000000..e034095
--- /dev/null
+++ b/content/docs/definitions/resource/fertilizer.md
@@ -0,0 +1,37 @@
+---
+title: Resource - Fertilizer
+linkTitle: Fertilizer
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Inorganic nutrients for crop growth
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make crop fertilizers](/docs/definitions/process/make-crop-fertilizers)
+- [Make crop fertilizers Alt #1](/docs/definitions/process/make-crop-fertilizers-alt--1)
+- [Make crop fertilizers Alt #2](/docs/definitions/process/make-crop-fertilizers-alt--2)
+- [Make crop fertilizers Alt #3](/docs/definitions/process/make-crop-fertilizers-alt--3)
+- [Make crop fertilizers Alt #4](/docs/definitions/process/make-crop-fertilizers-alt--4)
+- [Make crop fertilizers Alt #5](/docs/definitions/process/make-crop-fertilizers-alt--5)
+- [Make crop fertilizers Alt #6](/docs/definitions/process/make-crop-fertilizers-alt--6)
+- [Make crop fertilizers Alt #7](/docs/definitions/process/make-crop-fertilizers-alt--7)
+- [Make crop fertilizers Alt #8](/docs/definitions/process/make-crop-fertilizers-alt--8)
+- [Make crop fertilizers Alt #9](/docs/definitions/process/make-crop-fertilizers-alt--9)
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/fiber-cloth.md b/content/docs/definitions/resource/fiber-cloth.md
new file mode 100644
index 0000000..7772432
--- /dev/null
+++ b/content/docs/definitions/resource/fiber-cloth.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Fiber cloth
+linkTitle: Fiber cloth
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Cloth made from soy fiber and cane fiber.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Utility|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make Liquid Cooling Garment Alt #2](/docs/definitions/process/make-liquid-cooling-garment-alt--2)
+
+
+## Made by Food Process
+
+- [Produce Fiber Cloth from Cane or Soy Fiber](/docs/definitions/food/produce-fiber-cloth-from-cane-or-soy-fiber)
+- [Produce Fiber Cloth from Cane or Soy Fiber Recipe #1](/docs/definitions/food/produce-fiber-cloth-from-cane-or-soy-fiber-recipe--1)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/fish-meat.md b/content/docs/definitions/resource/fish-meat.md
new file mode 100644
index 0000000..904d393
--- /dev/null
+++ b/content/docs/definitions/resource/fish-meat.md
@@ -0,0 +1,30 @@
+---
+title: Resource - Fish meat
+linkTitle: Fish meat
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
meat from fish
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Animal|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Process fish oil from fish meat](/docs/definitions/food/process-fish-oil-from-fish-meat)
+- [Make fish patty from fish meat](/docs/definitions/food/make-fish-patty-from-fish-meat)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/fish-oil.md b/content/docs/definitions/resource/fish-oil.md
new file mode 100644
index 0000000..6ab28e7
--- /dev/null
+++ b/content/docs/definitions/resource/fish-oil.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Fish oil
+linkTitle: Fish oil
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Oil derived from fish.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Animal|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Process fish oil from fish meat](/docs/definitions/food/process-fish-oil-from-fish-meat)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/fish-patty.md b/content/docs/definitions/resource/fish-patty.md
new file mode 100644
index 0000000..7fe3515
--- /dev/null
+++ b/content/docs/definitions/resource/fish-patty.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Fish patty
+linkTitle: Fish patty
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
patty made of fish meat
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Animal|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make fish patty from fish meat](/docs/definitions/food/make-fish-patty-from-fish-meat)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/food-waste.md b/content/docs/definitions/resource/food-waste.md
new file mode 100644
index 0000000..bb44266
--- /dev/null
+++ b/content/docs/definitions/resource/food-waste.md
@@ -0,0 +1,36 @@
+---
+title: Resource - Food waste
+linkTitle: Food waste
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Organic waste from leftover or expired food.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Waste|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Produce polycarbonate resin](/docs/definitions/process/produce-polycarbonate-resin)
+
+
+## Made by Food Process
+
+- [Process Brown Rice into Rice Flour](/docs/definitions/food/process-brown-rice-into-rice-flour)
+- [Expel Soybean Oil from Soybean](/docs/definitions/food/expel-soybean-oil-from-soybean)
+- [Press Sesame Oil from Sesame Seeds](/docs/definitions/food/press-sesame-oil-from-sesame-seeds)
+- [Press Garlic Oil from Garlic](/docs/definitions/food/press-garlic-oil-from-garlic)
+- [Press Olive Oil from Olive](/docs/definitions/food/press-olive-oil-from-olive)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/food.md b/content/docs/definitions/resource/food.md
new file mode 100644
index 0000000..531b90f
--- /dev/null
+++ b/content/docs/definitions/resource/food.md
@@ -0,0 +1,34 @@
+---
+title: Resource - Food
+linkTitle: Food
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Represents thermo-stabilized food that can afford long-term storage.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Package Preserved Food](/docs/definitions/food/package-preserved-food)
+- [Package Preserved Food Recipe #1](/docs/definitions/food/package-preserved-food-recipe--1)
+- [Package Preserved Food Recipe #2](/docs/definitions/food/package-preserved-food-recipe--2)
+- [Package Preserved Food Recipe #3](/docs/definitions/food/package-preserved-food-recipe--3)
+- [Package Preserved Food Recipe #4](/docs/definitions/food/package-preserved-food-recipe--4)
+- [Package Roast Peanuts into Dry Food](/docs/definitions/food/package-roast-peanuts-into-dry-food)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/french-fries.md b/content/docs/definitions/resource/french-fries.md
new file mode 100644
index 0000000..b7e769d
--- /dev/null
+++ b/content/docs/definitions/resource/french-fries.md
@@ -0,0 +1,30 @@
+---
+title: Resource - French fries
+linkTitle: French fries
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+French fries made from potatoes.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make French Fries from Potatoes](/docs/definitions/food/make-french-fries-from-potatoes)
+- [Make French Fries from Potatoes Recipe #1](/docs/definitions/food/make-french-fries-from-potatoes-recipe--1)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/garlic-oil.md b/content/docs/definitions/resource/garlic-oil.md
new file mode 100644
index 0000000..894cb73
--- /dev/null
+++ b/content/docs/definitions/resource/garlic-oil.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Garlic oil
+linkTitle: Garlic oil
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Oil pressed from garlic.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Press Garlic Oil from Garlic](/docs/definitions/food/press-garlic-oil-from-garlic)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/garlic-tissue.md b/content/docs/definitions/resource/garlic-tissue.md
new file mode 100644
index 0000000..af94322
--- /dev/null
+++ b/content/docs/definitions/resource/garlic-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Garlic Tissue
+linkTitle: Garlic Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/garlic.md b/content/docs/definitions/resource/garlic.md
new file mode 100644
index 0000000..eae5b12
--- /dev/null
+++ b/content/docs/definitions/resource/garlic.md
@@ -0,0 +1,31 @@
+---
+title: Resource - Garlic
+linkTitle: Garlic
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Press Garlic Oil from Garlic](/docs/definitions/food/press-garlic-oil-from-garlic)
+- [Make Veggie Patty from Quinoa Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice)
+- [Make Ketchup from Tomatoes](/docs/definitions/food/make-ketchup-from-tomatoes)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/ginger-tissue.md b/content/docs/definitions/resource/ginger-tissue.md
new file mode 100644
index 0000000..4c65af1
--- /dev/null
+++ b/content/docs/definitions/resource/ginger-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Ginger Tissue
+linkTitle: Ginger Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/ginger.md b/content/docs/definitions/resource/ginger.md
new file mode 100644
index 0000000..c2fe37a
--- /dev/null
+++ b/content/docs/definitions/resource/ginger.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Ginger
+linkTitle: Ginger
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Cranberry Sauce from Cranberry](/docs/definitions/food/make-cranberry-sauce-from-cranberry)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/glass.md b/content/docs/definitions/resource/glass.md
new file mode 100644
index 0000000..5f9f491
--- /dev/null
+++ b/content/docs/definitions/resource/glass.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Glass
+linkTitle: Glass
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+For making vessels
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Gemstone|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make helmet visor](/docs/definitions/process/make-helmet-visor)
+- [Manufacture optical cable](/docs/definitions/process/manufacture-optical-cable)
+- [Manufacture helium neon laser](/docs/definitions/process/manufacture-helium-neon-laser)
+- [Make ceramic electrolyte](/docs/definitions/process/make-ceramic-electrolyte)
+- [Make methane solid oxide fuel cells](/docs/definitions/process/make-methane-solid-oxide-fuel-cells)
+- [Make methanol fuel cells](/docs/definitions/process/make-methanol-fuel-cells)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/goethite.md b/content/docs/definitions/resource/goethite.md
new file mode 100644
index 0000000..813211c
--- /dev/null
+++ b/content/docs/definitions/resource/goethite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Goethite
+linkTitle: Goethite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An iron bearing oxyhydroxide mineral containing
ferric iron. Found in soil and other low-temperature environments, Goethite has been
well known since ancient times for its use as a pigment (brown ochre).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Mineral|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/gold.md b/content/docs/definitions/resource/gold.md
new file mode 100644
index 0000000..fb8e2b2
--- /dev/null
+++ b/content/docs/definitions/resource/gold.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Gold
+linkTitle: Gold
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/granite.md b/content/docs/definitions/resource/granite.md
new file mode 100644
index 0000000..4775a07
--- /dev/null
+++ b/content/docs/definitions/resource/granite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Granite
+linkTitle: Granite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The granitoid rocks on Mars may have formed when thick
sequences of basaltic rocks were metamorphosed by moderate heat and pressure and then
partially melted. Observed the craters' central peaks, they must have been dredged up from
depths by the force of the crater-making impact. http://themis.asu.edu/node/5395.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Rock|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/granola-bar.md b/content/docs/definitions/resource/granola-bar.md
new file mode 100644
index 0000000..e7c20d5
--- /dev/null
+++ b/content/docs/definitions/resource/granola-bar.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Granola bar
+linkTitle: Granola bar
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A popular snake bar made from puffed quinoa/rice/wheat, honey/sugarcane juice, dried fruits and peanuts
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Granola Bar](/docs/definitions/food/make-granola-bar)
+- [Make Granola Bar Recipe #1](/docs/definitions/food/make-granola-bar-recipe--1)
+- [Make Granola Bar Recipe #2](/docs/definitions/food/make-granola-bar-recipe--2)
+- [Make Granola Bar Recipe #3](/docs/definitions/food/make-granola-bar-recipe--3)
+- [Make Granola Bar Recipe #4](/docs/definitions/food/make-granola-bar-recipe--4)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/green-bell-pepper-tissue.md b/content/docs/definitions/resource/green-bell-pepper-tissue.md
new file mode 100644
index 0000000..a459830
--- /dev/null
+++ b/content/docs/definitions/resource/green-bell-pepper-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Green Bell Pepper Tissue
+linkTitle: Green Bell Pepper Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/green-bell-pepper.md b/content/docs/definitions/resource/green-bell-pepper.md
new file mode 100644
index 0000000..7d405e0
--- /dev/null
+++ b/content/docs/definitions/resource/green-bell-pepper.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Green Bell Pepper
+linkTitle: Green Bell Pepper
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Veggie Patty from Quinoa Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/grey-water.md b/content/docs/definitions/resource/grey-water.md
new file mode 100644
index 0000000..6aeebcf
--- /dev/null
+++ b/content/docs/definitions/resource/grey-water.md
@@ -0,0 +1,55 @@
+---
+title: Resource - Grey water
+linkTitle: Grey water
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Sewage water from washing, bathing, cooking and cleaning and can be converted into use for crop irrigating.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Waste|
+|Form:|Liquid|
+
+## Made by Manufacturing Process
+
+- [Make pulp from cane fiber and crop waste](/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste)
+- [Make pulp from cane fiber and crop waste (large batch)](/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste--large-batch-)
+- [Do hydrogen iron reduction](/docs/definitions/process/do-hydrogen-iron-reduction)
+- [Bake regolith brick](/docs/definitions/process/bake-regolith-brick)
+- [Bake sand brick](/docs/definitions/process/bake-sand-brick)
+
+
+
+## Made by Food Process
+
+- [Make Okara and Soymilk from Soybeans](/docs/definitions/food/make-okara-and-soymilk-from-soybeans)
+- [Make Tofu from Soymilk and Calcium Sulfate](/docs/definitions/food/make-tofu-from-soymilk-and-calcium-sulfate)
+- [Make Tofu from Soymilk and Epsom Salt](/docs/definitions/food/make-tofu-from-soymilk-and-epsom-salt)
+- [Make Tofu from Soymilk and Vinegar](/docs/definitions/food/make-tofu-from-soymilk-and-vinegar)
+- [Make Tofu from Soybeans, Water, and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-from-soybeans--water--and-epsom-salt--large-batch-)
+- [Make Tofu from Soybeans, Water, and Vinegar (large batch)](/docs/definitions/food/make-tofu-from-soybeans--water--and-vinegar--large-batch-)
+- [Make Soymilk and Tofu from Soybeans, Water, and Epsom Salt](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-epsom-salt)
+- [Make Soymilk and Tofu from Soybeans, Water, and Vinegar](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-vinegar)
+- [Make Tempeh from Soybeans](/docs/definitions/food/make-tempeh-from-soybeans)
+- [Make Tempeh from half Soybeans and half Okara](/docs/definitions/food/make-tempeh-from-half-soybeans-and-half-okara)
+- [Make Tofu and Tempeh from Soybeans and Vinegar (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-vinegar--large-batch-)
+- [Make Tofu and Tempeh from Soybeans and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-epsom-salt--large-batch-)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Vinegar](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt)
+- [Process Brown Rice into Rice Flour](/docs/definitions/food/process-brown-rice-into-rice-flour)
+- [Process Wheat into Wheat Flour](/docs/definitions/food/process-wheat-into-wheat-flour)
+- [Make Veggie Patty from Quinoa Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice)
+- [Make Rice Vinegar by Fermentation](/docs/definitions/food/make-rice-vinegar-by-fermentation)
+- [Make Soy Sauce by Fermentation](/docs/definitions/food/make-soy-sauce-by-fermentation)
+- [Make Miso by Fermentation](/docs/definitions/food/make-miso-by-fermentation)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/gypsum-plaster.md b/content/docs/definitions/resource/gypsum-plaster.md
new file mode 100644
index 0000000..a2e4bd6
--- /dev/null
+++ b/content/docs/definitions/resource/gypsum-plaster.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Gypsum plaster
+linkTitle: Gypsum plaster
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
See https://civiconcepts.com/blog/gypsum-plaster
A white cementing building material made by partial or complete
dehydration of the mineral gypsum, commonly with special retarders or
hardeners added.
Uses of gypsum plaster includes :
(1). Medical : an orthopedic cast for the hand made out of plaster.
(2). Dental : make denture and implantation in infected cavities.
(3). Art : as a agent for decorative architecture, making surfaces like the walls of a house smooth before.
painting them and for making ornamental designs on the ceilings of houses and other buildings.
(4). Utility : make toys, decorative materials, cheap ornaments, cosmetics, black-board, chalk and casts for statue.
(5). Fire protection : as a fire-proofing material, hard wall plaster provides passive fire protection
for interior surfaces.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/gypsum.md b/content/docs/definitions/resource/gypsum.md
new file mode 100644
index 0000000..a7de07b
--- /dev/null
+++ b/content/docs/definitions/resource/gypsum.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Gypsum
+linkTitle: Gypsum
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Gypsum is a soft sulfate mineral composed of calcium sulfate dihydrate,
with the chemical formula CaSO4·2H2O. It is widely mined and used as a fertilizer. A typical regolith
derived mineral deposit in NASA Water ISRU Study Reference Case B
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Ore|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/hematite.md b/content/docs/definitions/resource/hematite.md
new file mode 100644
index 0000000..0e33e86
--- /dev/null
+++ b/content/docs/definitions/resource/hematite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Hematite
+linkTitle: Hematite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The mineral form of iron(III) oxide (Fe2O3).
Seen in abundance at Terra Meridiani near the equator at 0° longitude,
and the Aram Chaos site near the Valles Marineris, and Aureum Chaos.
https://en.wikipedia.org/wiki/Hematite#Mars
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Mineral|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/honey.md b/content/docs/definitions/resource/honey.md
new file mode 100644
index 0000000..9233b08
--- /dev/null
+++ b/content/docs/definitions/resource/honey.md
@@ -0,0 +1,38 @@
+---
+title: Resource - Honey
+linkTitle: Honey
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Honey extracted from bee hives
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Liquid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Granola Bar](/docs/definitions/food/make-granola-bar)
+- [Make Granola Bar Recipe #2](/docs/definitions/food/make-granola-bar-recipe--2)
+- [Make Granola Bar Recipe #3](/docs/definitions/food/make-granola-bar-recipe--3)
+- [Make Granola Bar Recipe #4](/docs/definitions/food/make-granola-bar-recipe--4)
+- [Make Okara Protein Bar](/docs/definitions/food/make-okara-protein-bar)
+- [Make Okara Protein Bar Recipe #2](/docs/definitions/food/make-okara-protein-bar-recipe--2)
+- [Make Okara Protein Bar Recipe #3](/docs/definitions/food/make-okara-protein-bar-recipe--3)
+- [Make Okara Protein Bar Recipe #4](/docs/definitions/food/make-okara-protein-bar-recipe--4)
+- [Make Blueberry Muffin](/docs/definitions/food/make-blueberry-muffin)
+- [Make Okara Blueberry Muffin](/docs/definitions/food/make-okara-blueberry-muffin)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/hydrogen.md b/content/docs/definitions/resource/hydrogen.md
new file mode 100644
index 0000000..a096f50
--- /dev/null
+++ b/content/docs/definitions/resource/hydrogen.md
@@ -0,0 +1,37 @@
+---
+title: Resource - Hydrogen
+linkTitle: Hydrogen
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Gas|
+
+## Made by Manufacturing Process
+
+- [Make sodium hypochlorite for bleaching and sanitation](/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation)
+- [Make sodium hypochlorite for bleaching and sanitation (large batch)](/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation--large-batch-)
+- [Do potassium chloride electrolysis](/docs/definitions/process/do-potassium-chloride-electrolysis)
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers Alt #9](/docs/definitions/process/make-crop-fertilizers-alt--9)
+- [Do hydrogen iron reduction](/docs/definitions/process/do-hydrogen-iron-reduction)
+- [Produce Terephthalic Acid](/docs/definitions/process/produce-terephthalic-acid)
+- [Produce bisphenol-a](/docs/definitions/process/produce-bisphenol-a)
+- [Make Silicone Elastomer](/docs/definitions/process/make-silicone-elastomer)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/ice.md b/content/docs/definitions/resource/ice.md
new file mode 100644
index 0000000..9c813d3
--- /dev/null
+++ b/content/docs/definitions/resource/ice.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Ice
+linkTitle: Ice
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Extracted from ice-rich underground permafrost
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/immune-booster.md b/content/docs/definitions/resource/immune-booster.md
new file mode 100644
index 0000000..e47c8b6
--- /dev/null
+++ b/content/docs/definitions/resource/immune-booster.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Immune booster
+linkTitle: Immune booster
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A Drug.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Medical|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Immune Booster](/docs/definitions/food/make-immune-booster)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/iron-chloride.md b/content/docs/definitions/resource/iron-chloride.md
new file mode 100644
index 0000000..06c08b7
--- /dev/null
+++ b/content/docs/definitions/resource/iron-chloride.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Iron chloride
+linkTitle: Iron chloride
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Iron(III) chloride, also called ferric chloride,
is an industrial scale commodity chemical compound, with the formula FeCl3 and with
iron in the +3 oxidation state. When dissolved in water, iron(III) chloride undergoes
hydrolysis and gives off heat in an exothermic reaction. The resulting brown, acidic, and
corrosive solution is used as a flocculant in sewage treatment and drinking water production,
and as an etchant for copper-based metals in printed circuit boards. Extracted from akaganeite.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/iron-hydroxide.md b/content/docs/definitions/resource/iron-hydroxide.md
new file mode 100644
index 0000000..86f861f
--- /dev/null
+++ b/content/docs/definitions/resource/iron-hydroxide.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Iron hydroxide
+linkTitle: Iron hydroxide
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Iron(II) hydroxide is a white solid, but even traces
of oxygen impart a greenish tinge. The air-oxidized solid is sometimes known as "green rust".
Extracted from akaganeite.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/iron-oxide.md b/content/docs/definitions/resource/iron-oxide.md
new file mode 100644
index 0000000..8a6c4da
--- /dev/null
+++ b/content/docs/definitions/resource/iron-oxide.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Iron oxide
+linkTitle: Iron oxide
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ oxide mineral such as Fe2O3
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Do carbon monoxide iron reduction](/docs/definitions/process/do-carbon-monoxide-iron-reduction)
+- [Do hydrogen iron reduction](/docs/definitions/process/do-hydrogen-iron-reduction)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/iron-powder.md b/content/docs/definitions/resource/iron-powder.md
new file mode 100644
index 0000000..2767933
--- /dev/null
+++ b/content/docs/definitions/resource/iron-powder.md
@@ -0,0 +1,53 @@
+---
+title: Resource - Iron powder
+linkTitle: Iron powder
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Do carbon monoxide iron reduction](/docs/definitions/process/do-carbon-monoxide-iron-reduction)
+- [Do hydrogen iron reduction](/docs/definitions/process/do-hydrogen-iron-reduction)
+- [Roll iron sheet](/docs/definitions/process/roll-iron-sheet)
+- [Roll steel sheet](/docs/definitions/process/roll-steel-sheet)
+- [Make steel pipe](/docs/definitions/process/make-steel-pipe)
+- [Make iron pipe](/docs/definitions/process/make-iron-pipe)
+- [Make steel canister](/docs/definitions/process/make-steel-canister)
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers Alt #5](/docs/definitions/process/make-crop-fertilizers-alt--5)
+- [Cast iron ingot](/docs/definitions/process/cast-iron-ingot)
+- [Make iron sheet](/docs/definitions/process/make-iron-sheet)
+- [Do steel ingot alloying](/docs/definitions/process/do-steel-ingot-alloying)
+- [Make steel sheet](/docs/definitions/process/make-steel-sheet)
+- [Make spark plug](/docs/definitions/process/make-spark-plug)
+- [Make pipe wrench](/docs/definitions/process/make-pipe-wrench)
+- [Manufacture propeller](/docs/definitions/process/manufacture-propeller)
+- [Do steel ingot nickel alloying](/docs/definitions/process/do-steel-ingot-nickel-alloying)
+- [Make ceramic electrolyte](/docs/definitions/process/make-ceramic-electrolyte)
+- [Make methane solid oxide fuel cells](/docs/definitions/process/make-methane-solid-oxide-fuel-cells)
+- [Make methanol fuel cells](/docs/definitions/process/make-methanol-fuel-cells)
+- [Manufacture resistors](/docs/definitions/process/manufacture-resistors)
+- [Manufacture capacitors](/docs/definitions/process/manufacture-capacitors)
+- [Manufacture diodes](/docs/definitions/process/manufacture-diodes)
+- [Manufacture logic board](/docs/definitions/process/manufacture-logic-board)
+- [Manufacture plasma cutter](/docs/definitions/process/manufacture-plasma-cutter)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/kamacite.md b/content/docs/definitions/resource/kamacite.md
new file mode 100644
index 0000000..ea14d01
--- /dev/null
+++ b/content/docs/definitions/resource/kamacite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Kamacite
+linkTitle: Kamacite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An alloy of iron and nickel, may originate from
meteorites. The proportion iron:nickel is between 90:10 and 95:5; small quantities of
other elements, such as cobalt or carbon may also be present. The mineral has a metallic
luster, is gray and has no clear cleavage although its crystal structure is
isometric-hexoctahedral.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Mineral|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/ketchup.md b/content/docs/definitions/resource/ketchup.md
new file mode 100644
index 0000000..1d22d90
--- /dev/null
+++ b/content/docs/definitions/resource/ketchup.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Ketchup
+linkTitle: Ketchup
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Jam made from tomatoes.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Make Ketchup from Tomatoes](/docs/definitions/food/make-ketchup-from-tomatoes)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/kevlar.md b/content/docs/definitions/resource/kevlar.md
new file mode 100644
index 0000000..d21399e
--- /dev/null
+++ b/content/docs/definitions/resource/kevlar.md
@@ -0,0 +1,28 @@
+---
+title: Resource - Kevlar
+linkTitle: Kevlar
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Kevlar is a trademark for one of DuPont’s
aramid products as both Kevlar and Nomex are examples of chemicals called synthetic aromatic
polyamides or aramids for short. The fundamental structure of an aramid is C14H14N2O4.
Aramid fibers are short for aromatic polyamide. They are manufactured fibers where the
composition is a type of synthetic polyamide, in which more than 85% of the linkages must
link to two aromatic rings. Kevlar is prone to soaking up water in composite applications
and it’s not ideal in compression, so fiberglass and carbon fiber are used in composites
rather than Kevlar in those situations.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Utility|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make Liquid Cooling Garment Alt #1](/docs/definitions/process/make-liquid-cooling-garment-alt--1)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/kidney-bean-tissue.md b/content/docs/definitions/resource/kidney-bean-tissue.md
new file mode 100644
index 0000000..8813d7a
--- /dev/null
+++ b/content/docs/definitions/resource/kidney-bean-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Kidney Bean Tissue
+linkTitle: Kidney Bean Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/kidney-bean.md b/content/docs/definitions/resource/kidney-bean.md
new file mode 100644
index 0000000..63cf8c6
--- /dev/null
+++ b/content/docs/definitions/resource/kidney-bean.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Kidney Bean
+linkTitle: Kidney Bean
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/leaves.md b/content/docs/definitions/resource/leaves.md
new file mode 100644
index 0000000..3b18650
--- /dev/null
+++ b/content/docs/definitions/resource/leaves.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Leaves
+linkTitle: Leaves
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Edible leaves extracted during harvest. A filler fiber for meal
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Package Preserved Food Recipe #1](/docs/definitions/food/package-preserved-food-recipe--1)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/lemon-tissue.md b/content/docs/definitions/resource/lemon-tissue.md
new file mode 100644
index 0000000..d63198c
--- /dev/null
+++ b/content/docs/definitions/resource/lemon-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Lemon Tissue
+linkTitle: Lemon Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/lemon.md b/content/docs/definitions/resource/lemon.md
new file mode 100644
index 0000000..55fdf3a
--- /dev/null
+++ b/content/docs/definitions/resource/lemon.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Lemon
+linkTitle: Lemon
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/lettuce-tissue.md b/content/docs/definitions/resource/lettuce-tissue.md
new file mode 100644
index 0000000..303797c
--- /dev/null
+++ b/content/docs/definitions/resource/lettuce-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Lettuce Tissue
+linkTitle: Lettuce Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/lettuce.md b/content/docs/definitions/resource/lettuce.md
new file mode 100644
index 0000000..5a5ed32
--- /dev/null
+++ b/content/docs/definitions/resource/lettuce.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Lettuce
+linkTitle: Lettuce
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/lime.md b/content/docs/definitions/resource/lime.md
new file mode 100644
index 0000000..2c4c2dd
--- /dev/null
+++ b/content/docs/definitions/resource/lime.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Lime
+linkTitle: Lime
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Lime is a calcium-containing inorganic
material in which carbonates, oxides, and hydroxides predominate. In the
strict sense of the term, lime is CaO or Ca(OH)2.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make spark plug](/docs/definitions/process/make-spark-plug)
+- [Make heating element](/docs/definitions/process/make-heating-element)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/lithium.md b/content/docs/definitions/resource/lithium.md
new file mode 100644
index 0000000..9a2924a
--- /dev/null
+++ b/content/docs/definitions/resource/lithium.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Lithium
+linkTitle: Lithium
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Manufacture battery module](/docs/definitions/process/manufacture-battery-module)
+- [Manufacture battery module Alt #1](/docs/definitions/process/manufacture-battery-module-alt--1)
+- [Manufacture EVA battery](/docs/definitions/process/manufacture-eva-battery)
+- [Manufacture EVA battery Alt #1](/docs/definitions/process/manufacture-eva-battery-alt--1)
+- [Make methane solid oxide fuel cells](/docs/definitions/process/make-methane-solid-oxide-fuel-cells)
+- [Make methanol fuel cells](/docs/definitions/process/make-methanol-fuel-cells)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/magnesite.md b/content/docs/definitions/resource/magnesite.md
new file mode 100644
index 0000000..25e9245
--- /dev/null
+++ b/content/docs/definitions/resource/magnesite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Magnesite
+linkTitle: Magnesite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A magnesium carbonate mineral MgCO3. Mixed
crystals of iron(II) carbonate and magnesite (mixed crystals known as ankerite) possess
a layered structure. These magnesites often are cryptocrystalline and contain silica in
the form of opal or chert. Manganese, cobalt and nickel may also occur in small amounts.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Mineral|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/magnesium.md b/content/docs/definitions/resource/magnesium.md
new file mode 100644
index 0000000..f657c46
--- /dev/null
+++ b/content/docs/definitions/resource/magnesium.md
@@ -0,0 +1,51 @@
+---
+title: Resource - Magnesium
+linkTitle: Magnesium
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Purify rock salt into compounds](/docs/definitions/process/purify-rock-salt-into-compounds)
+
+## Used by Manufacturing Process
+
+- [Make bleaching chemical for paper making](/docs/definitions/process/make-bleaching-chemical-for-paper-making)
+- [Make bleaching chemical for paper making (large batch)](/docs/definitions/process/make-bleaching-chemical-for-paper-making--large-batch-)
+- [Make crop fertilizers](/docs/definitions/process/make-crop-fertilizers)
+- [Make crop fertilizers Alt #1](/docs/definitions/process/make-crop-fertilizers-alt--1)
+- [Make crop fertilizers Alt #2](/docs/definitions/process/make-crop-fertilizers-alt--2)
+- [Make crop fertilizers Alt #3](/docs/definitions/process/make-crop-fertilizers-alt--3)
+- [Make crop fertilizers Alt #4](/docs/definitions/process/make-crop-fertilizers-alt--4)
+- [Make crop fertilizers Alt #5](/docs/definitions/process/make-crop-fertilizers-alt--5)
+- [Make crop fertilizers Alt #6](/docs/definitions/process/make-crop-fertilizers-alt--6)
+- [Make crop fertilizers Alt #7](/docs/definitions/process/make-crop-fertilizers-alt--7)
+- [Make crop fertilizers Alt #8](/docs/definitions/process/make-crop-fertilizers-alt--8)
+- [Make crop fertilizers Alt #9](/docs/definitions/process/make-crop-fertilizers-alt--9)
+- [Make heating element](/docs/definitions/process/make-heating-element)
+
+
+## Made by Food Process
+
+- [Extract Minerals from Soybean Ash](/docs/definitions/food/extract-minerals-from-soybean-ash)
+
+
+## Used by Food Process
+
+- [Make Immune Booster](/docs/definitions/food/make-immune-booster)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/magnetite.md b/content/docs/definitions/resource/magnetite.md
new file mode 100644
index 0000000..66ca5f9
--- /dev/null
+++ b/content/docs/definitions/resource/magnetite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Magnetite
+linkTitle: Magnetite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A rock mineral and one of the main iron ores,
with the chemical formula Fe3O4. It is one of the oxides of iron, and is ferrimagnetic;
it is attracted to a magnet and can be magnetized to become a permanent magnet itself.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Mineral|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/malachite.md b/content/docs/definitions/resource/malachite.md
new file mode 100644
index 0000000..adb65c5
--- /dev/null
+++ b/content/docs/definitions/resource/malachite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Malachite
+linkTitle: Malachite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A copper carbonate hydroxide mineral Cu2CO3(OH)2.
This opaque, green banded mineral crystallizes in the monoclinic crystal system, and most
often forms botryoidal, fibrous, or stalagmitic masses, in fractures and spaces, deep
underground, where the water table and hydrothermal fluids provide the means for chemical
precipitation.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Mineral|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/manganese.md b/content/docs/definitions/resource/manganese.md
new file mode 100644
index 0000000..47bd25a
--- /dev/null
+++ b/content/docs/definitions/resource/manganese.md
@@ -0,0 +1,30 @@
+---
+title: Resource - Manganese
+linkTitle: Manganese
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make steel sheet](/docs/definitions/process/make-steel-sheet)
+- [Roll steel sheet](/docs/definitions/process/roll-steel-sheet)
+- [Make ceramic electrolyte](/docs/definitions/process/make-ceramic-electrolyte)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/meteorite.md b/content/docs/definitions/resource/meteorite.md
new file mode 100644
index 0000000..9557867
--- /dev/null
+++ b/content/docs/definitions/resource/meteorite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Meteorite
+linkTitle: Meteorite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Rock|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/methane.md b/content/docs/definitions/resource/methane.md
new file mode 100644
index 0000000..0273abe
--- /dev/null
+++ b/content/docs/definitions/resource/methane.md
@@ -0,0 +1,36 @@
+---
+title: Resource - Methane
+linkTitle: Methane
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Gas|
+
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers](/docs/definitions/process/make-crop-fertilizers)
+- [Make crop fertilizers Alt #1](/docs/definitions/process/make-crop-fertilizers-alt--1)
+- [Make crop fertilizers Alt #2](/docs/definitions/process/make-crop-fertilizers-alt--2)
+- [Make crop fertilizers Alt #3](/docs/definitions/process/make-crop-fertilizers-alt--3)
+- [Make crop fertilizers Alt #4](/docs/definitions/process/make-crop-fertilizers-alt--4)
+- [Make crop fertilizers Alt #5](/docs/definitions/process/make-crop-fertilizers-alt--5)
+- [Make crop fertilizers Alt #6](/docs/definitions/process/make-crop-fertilizers-alt--6)
+- [Make crop fertilizers Alt #7](/docs/definitions/process/make-crop-fertilizers-alt--7)
+- [Make crop fertilizers Alt #8](/docs/definitions/process/make-crop-fertilizers-alt--8)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/methanol.md b/content/docs/definitions/resource/methanol.md
new file mode 100644
index 0000000..352010c
--- /dev/null
+++ b/content/docs/definitions/resource/methanol.md
@@ -0,0 +1,31 @@
+---
+title: Resource - Methanol
+linkTitle: Methanol
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Methanol CH3OH
can be used as a fuel source, solvent, pesticide, or
a chemical feedstock for production of a range of important industrial
chemicals such as polyester. It appears as a colorless fairly volatile
liquid with a faintly sweet pungent odor like that of ethyl alcohol.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Liquid|
+
+## Made by Manufacturing Process
+
+- [gasify sugarcane and biomass into methanol](/docs/definitions/process/gasify-sugarcane-and-biomass-into-methanol)
+
+## Used by Manufacturing Process
+
+- [Produce Dimethyl Terephthalate](/docs/definitions/process/produce-dimethyl-terephthalate)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/miso.md b/content/docs/definitions/resource/miso.md
new file mode 100644
index 0000000..ae4a352
--- /dev/null
+++ b/content/docs/definitions/resource/miso.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Miso
+linkTitle: Miso
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Paste made from fermented soybeans and rice
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Soy-based|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Miso by Fermentation](/docs/definitions/food/make-miso-by-fermentation)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/morel-mushroom-tissue.md b/content/docs/definitions/resource/morel-mushroom-tissue.md
new file mode 100644
index 0000000..513e9a3
--- /dev/null
+++ b/content/docs/definitions/resource/morel-mushroom-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Morel Mushroom Tissue
+linkTitle: Morel Mushroom Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/morel-mushroom.md b/content/docs/definitions/resource/morel-mushroom.md
new file mode 100644
index 0000000..3a27674
--- /dev/null
+++ b/content/docs/definitions/resource/morel-mushroom.md
@@ -0,0 +1,31 @@
+---
+title: Resource - Morel Mushroom
+linkTitle: Morel Mushroom
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Veggie Patty from Veg, Tofu and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice)
+- [Make Veggie Patty from Veg, Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice)
+- [Make Veggie Patty from Veg, Okara and Spice](/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/mudstone.md b/content/docs/definitions/resource/mudstone.md
new file mode 100644
index 0000000..26c92d2
--- /dev/null
+++ b/content/docs/definitions/resource/mudstone.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Mudstone
+linkTitle: Mudstone
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
A rock succession on the lower slopes of Mount Sharp that comprises thinly laminated mudstones.
These rock outcrops are very fine-grained sedimentary rocks that we interpret as having formed
from particles suspended in water, which slowly settled.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Rock|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/mustard-seed.md b/content/docs/definitions/resource/mustard-seed.md
new file mode 100644
index 0000000..ef03018
--- /dev/null
+++ b/content/docs/definitions/resource/mustard-seed.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Mustard seed
+linkTitle: Mustard seed
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Seeds from white mustard plant
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Mustard](/docs/definitions/food/make-mustard)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/mustard.md b/content/docs/definitions/resource/mustard.md
new file mode 100644
index 0000000..10e2173
--- /dev/null
+++ b/content/docs/definitions/resource/mustard.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Mustard
+linkTitle: Mustard
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Mustard made from mustard seed
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Make Mustard](/docs/definitions/food/make-mustard)
+
+
+## Used by Food Process
+
+- [Make Ketchup from Tomatoes](/docs/definitions/food/make-ketchup-from-tomatoes)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/mylar.md b/content/docs/definitions/resource/mylar.md
new file mode 100644
index 0000000..1035f68
--- /dev/null
+++ b/content/docs/definitions/resource/mylar.md
@@ -0,0 +1,32 @@
+---
+title: Resource - Mylar
+linkTitle: Mylar
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Mylar is paper that is coated with or made
from a polyester film BoPET material. BoPET (biaxially-oriented polyethylene terephthalate) is
a polyester film made from stretched polyethylene terephthalate (PET). Mylar has a high tensile
strength and is very durable yet flexible, making it perfect for packing materials, electrical
insulation, solar technology and countless other practical uses.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Utility|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Roll mylar film](/docs/definitions/process/roll-mylar-film)
+- [Roll mylar film Alt #1](/docs/definitions/process/roll-mylar-film-alt--1)
+
+## Used by Manufacturing Process
+
+- [Roll aluminized mylar foil](/docs/definitions/process/roll-aluminized-mylar-foil)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/napkin.md b/content/docs/definitions/resource/napkin.md
new file mode 100644
index 0000000..ae10697
--- /dev/null
+++ b/content/docs/definitions/resource/napkin.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Napkin
+linkTitle: Napkin
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Utility|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make paper, napkin and toilet tissue from pulp](/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp)
+- [Make paper, napkin and toilet tissue from pulp (large batch)](/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp--large-batch-)
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/nickel.md b/content/docs/definitions/resource/nickel.md
new file mode 100644
index 0000000..fc81298
--- /dev/null
+++ b/content/docs/definitions/resource/nickel.md
@@ -0,0 +1,37 @@
+---
+title: Resource - Nickel
+linkTitle: Nickel
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Do steel ingot nickel alloying](/docs/definitions/process/do-steel-ingot-nickel-alloying)
+- [Manufacture battery module](/docs/definitions/process/manufacture-battery-module)
+- [Manufacture battery module Alt #1](/docs/definitions/process/manufacture-battery-module-alt--1)
+- [Manufacture EVA battery](/docs/definitions/process/manufacture-eva-battery)
+- [Manufacture EVA battery Alt #1](/docs/definitions/process/manufacture-eva-battery-alt--1)
+- [Make ceramic electrolyte](/docs/definitions/process/make-ceramic-electrolyte)
+- [Make methane solid oxide fuel cells](/docs/definitions/process/make-methane-solid-oxide-fuel-cells)
+- [Make methanol fuel cells](/docs/definitions/process/make-methanol-fuel-cells)
+- [Manufacture resistors](/docs/definitions/process/manufacture-resistors)
+- [Manufacture capacitors](/docs/definitions/process/manufacture-capacitors)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/nitrate.md b/content/docs/definitions/resource/nitrate.md
new file mode 100644
index 0000000..91632db
--- /dev/null
+++ b/content/docs/definitions/resource/nitrate.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Nitrate
+linkTitle: Nitrate
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ NO3 is an essential nutrient for plants
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers](/docs/definitions/process/make-crop-fertilizers)
+- [Make crop fertilizers Alt #1](/docs/definitions/process/make-crop-fertilizers-alt--1)
+- [Make crop fertilizers Alt #3](/docs/definitions/process/make-crop-fertilizers-alt--3)
+- [Make crop fertilizers Alt #4](/docs/definitions/process/make-crop-fertilizers-alt--4)
+- [Make crop fertilizers Alt #5](/docs/definitions/process/make-crop-fertilizers-alt--5)
+- [Make crop fertilizers Alt #6](/docs/definitions/process/make-crop-fertilizers-alt--6)
+- [Make crop fertilizers Alt #7](/docs/definitions/process/make-crop-fertilizers-alt--7)
+- [Make crop fertilizers Alt #9](/docs/definitions/process/make-crop-fertilizers-alt--9)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/nitrite.md b/content/docs/definitions/resource/nitrite.md
new file mode 100644
index 0000000..2f0fb41
--- /dev/null
+++ b/content/docs/definitions/resource/nitrite.md
@@ -0,0 +1,32 @@
+---
+title: Resource - Nitrite
+linkTitle: Nitrite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ NO2 is an essential nutrient for plants
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make Nitrites](/docs/definitions/process/make-nitrites)
+- [Make Nitrates](/docs/definitions/process/make-nitrates)
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers Alt #8](/docs/definitions/process/make-crop-fertilizers-alt--8)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/nitrogen.md b/content/docs/definitions/resource/nitrogen.md
new file mode 100644
index 0000000..780d42f
--- /dev/null
+++ b/content/docs/definitions/resource/nitrogen.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Nitrogen
+linkTitle: Nitrogen
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+N2 is an odorless gas
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Gas|
+
+
+## Used by Manufacturing Process
+
+- [Make Nitrites](/docs/definitions/process/make-nitrites)
+- [Make Nitrates](/docs/definitions/process/make-nitrates)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/nitrosomonas-spp.md b/content/docs/definitions/resource/nitrosomonas-spp.md
new file mode 100644
index 0000000..769641d
--- /dev/null
+++ b/content/docs/definitions/resource/nitrosomonas-spp.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Nitrosomonas SPP
+linkTitle: Nitrosomonas SPP
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Used in the oxidation of ammonia (NH3)
to nitrite (NO2−) in the nitrification of waste water.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Organism|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers](/docs/definitions/process/make-crop-fertilizers)
+- [Make crop fertilizers Alt #1](/docs/definitions/process/make-crop-fertilizers-alt--1)
+- [Make crop fertilizers Alt #2](/docs/definitions/process/make-crop-fertilizers-alt--2)
+- [Make crop fertilizers Alt #5](/docs/definitions/process/make-crop-fertilizers-alt--5)
+- [Make crop fertilizers Alt #6](/docs/definitions/process/make-crop-fertilizers-alt--6)
+- [Make crop fertilizers Alt #7](/docs/definitions/process/make-crop-fertilizers-alt--7)
+- [Make crop fertilizers Alt #8](/docs/definitions/process/make-crop-fertilizers-alt--8)
+- [Make crop fertilizers Alt #9](/docs/definitions/process/make-crop-fertilizers-alt--9)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/nitrospira-spp.md b/content/docs/definitions/resource/nitrospira-spp.md
new file mode 100644
index 0000000..08027a1
--- /dev/null
+++ b/content/docs/definitions/resource/nitrospira-spp.md
@@ -0,0 +1,28 @@
+---
+title: Resource - Nitrospira SPP
+linkTitle: Nitrospira SPP
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Used in the oxidation of nitrite to nitrate
(NO3−) in the nitrification of waste water.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Organism|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers Alt #4](/docs/definitions/process/make-crop-fertilizers-alt--4)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/nylon.md b/content/docs/definitions/resource/nylon.md
new file mode 100644
index 0000000..1cf9466
--- /dev/null
+++ b/content/docs/definitions/resource/nylon.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Nylon
+linkTitle: Nylon
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Nylon C12H22N2O2, came from DuPont’s work in
their high pressure ammonia laboratory. The innermost layer of the EVA suit is made up of a
Nylon tricot material.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Utility|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make Liquid Cooling Garment](/docs/definitions/process/make-liquid-cooling-garment)
+- [Make Liquid Cooling Garment Alt #3](/docs/definitions/process/make-liquid-cooling-garment-alt--3)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/okara.md b/content/docs/definitions/resource/okara.md
new file mode 100644
index 0000000..1bf397a
--- /dev/null
+++ b/content/docs/definitions/resource/okara.md
@@ -0,0 +1,45 @@
+---
+title: Resource - Okara
+linkTitle: Okara
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+The Soy Pulp consisting of insoluble parts of the soybean which
after pureed Soybean are filtered in the production of soymilk and tofu.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Soy-based|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Okara and Soymilk from Soybeans](/docs/definitions/food/make-okara-and-soymilk-from-soybeans)
+- [Make Tofu from Soybeans, Water, and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-from-soybeans--water--and-epsom-salt--large-batch-)
+- [Make Tofu from Soybeans, Water, and Vinegar (large batch)](/docs/definitions/food/make-tofu-from-soybeans--water--and-vinegar--large-batch-)
+- [Make Soymilk and Tofu from Soybeans, Water, and Epsom Salt](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-epsom-salt)
+- [Make Soymilk and Tofu from Soybeans, Water, and Vinegar](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-vinegar)
+
+
+## Used by Food Process
+
+- [Make Okara Protein Bar](/docs/definitions/food/make-okara-protein-bar)
+- [Make Okara Protein Bar Recipe #1](/docs/definitions/food/make-okara-protein-bar-recipe--1)
+- [Make Okara Protein Bar Recipe #2](/docs/definitions/food/make-okara-protein-bar-recipe--2)
+- [Make Okara Protein Bar Recipe #3](/docs/definitions/food/make-okara-protein-bar-recipe--3)
+- [Make Okara Protein Bar Recipe #4](/docs/definitions/food/make-okara-protein-bar-recipe--4)
+- [Make Black Oncom from Okara](/docs/definitions/food/make-black-oncom-from-okara)
+- [Make Tempeh from half Soybeans and half Okara](/docs/definitions/food/make-tempeh-from-half-soybeans-and-half-okara)
+- [Make Veggie Patty from Veg, Okara and Spice](/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice)
+- [Make Okara Blueberry Muffin](/docs/definitions/food/make-okara-blueberry-muffin)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/olive-oil.md b/content/docs/definitions/resource/olive-oil.md
new file mode 100644
index 0000000..ef21708
--- /dev/null
+++ b/content/docs/definitions/resource/olive-oil.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Olive oil
+linkTitle: Olive oil
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Oil pressed from olive.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Oil|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Press Olive Oil from Olive](/docs/definitions/food/press-olive-oil-from-olive)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/olive-tissue.md b/content/docs/definitions/resource/olive-tissue.md
new file mode 100644
index 0000000..2f5ce16
--- /dev/null
+++ b/content/docs/definitions/resource/olive-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Olive Tissue
+linkTitle: Olive Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/olive.md b/content/docs/definitions/resource/olive.md
new file mode 100644
index 0000000..67ab3f4
--- /dev/null
+++ b/content/docs/definitions/resource/olive.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Olive
+linkTitle: Olive
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Press Olive Oil from Olive](/docs/definitions/food/press-olive-oil-from-olive)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/olivine.md b/content/docs/definitions/resource/olivine.md
new file mode 100644
index 0000000..ba37433
--- /dev/null
+++ b/content/docs/definitions/resource/olivine.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Olivine
+linkTitle: Olivine
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A magnesium iron silicate (Mg2+, Fe2+)2SiO4. A type
of nesosilicate or orthosilicate. Olivine incorporates only minor amounts of elements other
than oxygen, silicon, magnesium and iron. Manganese and nickel commonly are the additional
elements present in highest concentrations. Olivine gives its name to the group of minerals
with a related structure (the olivine group)—which includes tephroite (Mn2SiO4),
monticellite (CaMgSiO4) and kirschsteinite (CaFeSiO4).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Mineral|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/orange-tissue.md b/content/docs/definitions/resource/orange-tissue.md
new file mode 100644
index 0000000..ffe9602
--- /dev/null
+++ b/content/docs/definitions/resource/orange-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Orange Tissue
+linkTitle: Orange Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/orange.md b/content/docs/definitions/resource/orange.md
new file mode 100644
index 0000000..58bd61b
--- /dev/null
+++ b/content/docs/definitions/resource/orange.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Orange
+linkTitle: Orange
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/oxygen.md b/content/docs/definitions/resource/oxygen.md
new file mode 100644
index 0000000..b7344c3
--- /dev/null
+++ b/content/docs/definitions/resource/oxygen.md
@@ -0,0 +1,37 @@
+---
+title: Resource - Oxygen
+linkTitle: Oxygen
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Gas|
+
+## Made by Manufacturing Process
+
+- [Dry potash into potassium crystal](/docs/definitions/process/dry-potash-into-potassium-crystal)
+
+## Used by Manufacturing Process
+
+- [Make bleaching chemical for paper making](/docs/definitions/process/make-bleaching-chemical-for-paper-making)
+- [Make bleaching chemical for paper making (large batch)](/docs/definitions/process/make-bleaching-chemical-for-paper-making--large-batch-)
+- [Make Nitrites](/docs/definitions/process/make-nitrites)
+- [Make Nitrates](/docs/definitions/process/make-nitrates)
+- [Produce Terephthalic Acid](/docs/definitions/process/produce-terephthalic-acid)
+- [Produce bisphenol-a](/docs/definitions/process/produce-bisphenol-a)
+- [Make ceramic electrolyte](/docs/definitions/process/make-ceramic-electrolyte)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/paper.md b/content/docs/definitions/resource/paper.md
new file mode 100644
index 0000000..c819e2a
--- /dev/null
+++ b/content/docs/definitions/resource/paper.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Paper
+linkTitle: Paper
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Utility|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make paper, napkin and toilet tissue from pulp](/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp)
+- [Make paper, napkin and toilet tissue from pulp (large batch)](/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp--large-batch-)
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/paraffin-composites.md b/content/docs/definitions/resource/paraffin-composites.md
new file mode 100644
index 0000000..68dec5c
--- /dev/null
+++ b/content/docs/definitions/resource/paraffin-composites.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Paraffin Composites
+linkTitle: Paraffin Composites
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Paraffin is a phase change
materials (PCMs) and is a mixture of straight-chain n-alkanes with the general formula
CH3-(CH2)n-CH3. Paraffin is a name that is commonly used to denote a group of saturated
alkane hydrocarbons with the general formula CnH2n+2, where “n” is greater than 20.
They are in both solid and liquid forms.
Paraffins typically have high latent heat capacity. If the length of the
chain increases, the melting ranges of waxes also increase.
As a PCM that isothermally absorbs heat energy, it changes from solid to liquid. Paraffin
is housed in a special metal matrix xposed to the space environment to radiate heat energy
efficiently into space.
See https://www.1-act.com/thermal-solutions/passive/pcm/
See https://paraffinwaxco.com/phase-change-materials/
See DOI: http://dx.doi.org/10.5772/intechopen.90487
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Utility|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make Paraffin Composites](/docs/definitions/process/make-paraffin-composites)
+- [Make Paraffin Composites Alt #1](/docs/definitions/process/make-paraffin-composites-alt--1)
+
+## Used by Manufacturing Process
+
+- [Make Liquid Cooling Garment](/docs/definitions/process/make-liquid-cooling-garment)
+- [Make Liquid Cooling Garment Alt #1](/docs/definitions/process/make-liquid-cooling-garment-alt--1)
+- [Make Liquid Cooling Garment Alt #2](/docs/definitions/process/make-liquid-cooling-garment-alt--2)
+- [Make Liquid Cooling Garment Alt #3](/docs/definitions/process/make-liquid-cooling-garment-alt--3)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/peanut-butter.md b/content/docs/definitions/resource/peanut-butter.md
new file mode 100644
index 0000000..2f02f15
--- /dev/null
+++ b/content/docs/definitions/resource/peanut-butter.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Peanut butter
+linkTitle: Peanut butter
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Peanut Butter from Peanuts](/docs/definitions/food/make-peanut-butter-from-peanuts)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/peanut-oil.md b/content/docs/definitions/resource/peanut-oil.md
new file mode 100644
index 0000000..4a9279f
--- /dev/null
+++ b/content/docs/definitions/resource/peanut-oil.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Peanut oil
+linkTitle: Peanut oil
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Oil is extracted from peanuts.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Oil|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Press and Refine Peanut Oil from Peanuts](/docs/definitions/food/press-and-refine-peanut-oil-from-peanuts)
+
+
+## Used by Food Process
+
+- [Make French Fries from Potatoes](/docs/definitions/food/make-french-fries-from-potatoes)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/peanut-tissue.md b/content/docs/definitions/resource/peanut-tissue.md
new file mode 100644
index 0000000..faca925
--- /dev/null
+++ b/content/docs/definitions/resource/peanut-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Peanut Tissue
+linkTitle: Peanut Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/peanut.md b/content/docs/definitions/resource/peanut.md
new file mode 100644
index 0000000..16e31f7
--- /dev/null
+++ b/content/docs/definitions/resource/peanut.md
@@ -0,0 +1,41 @@
+---
+title: Resource - Peanut
+linkTitle: Peanut
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Granola Bar](/docs/definitions/food/make-granola-bar)
+- [Make Granola Bar Recipe #1](/docs/definitions/food/make-granola-bar-recipe--1)
+- [Make Granola Bar Recipe #2](/docs/definitions/food/make-granola-bar-recipe--2)
+- [Make Granola Bar Recipe #3](/docs/definitions/food/make-granola-bar-recipe--3)
+- [Make Granola Bar Recipe #4](/docs/definitions/food/make-granola-bar-recipe--4)
+- [Make Okara Protein Bar](/docs/definitions/food/make-okara-protein-bar)
+- [Make Okara Protein Bar Recipe #1](/docs/definitions/food/make-okara-protein-bar-recipe--1)
+- [Make Okara Protein Bar Recipe #2](/docs/definitions/food/make-okara-protein-bar-recipe--2)
+- [Make Okara Protein Bar Recipe #3](/docs/definitions/food/make-okara-protein-bar-recipe--3)
+- [Make Okara Protein Bar Recipe #4](/docs/definitions/food/make-okara-protein-bar-recipe--4)
+- [Press and Refine Peanut Oil from Peanuts](/docs/definitions/food/press-and-refine-peanut-oil-from-peanuts)
+- [Chop and Roast Peanuts in Oven](/docs/definitions/food/chop-and-roast-peanuts-in-oven)
+- [Make Peanut Butter from Peanuts](/docs/definitions/food/make-peanut-butter-from-peanuts)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/peas-tissue.md b/content/docs/definitions/resource/peas-tissue.md
new file mode 100644
index 0000000..0ad136d
--- /dev/null
+++ b/content/docs/definitions/resource/peas-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Peas Tissue
+linkTitle: Peas Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/peas.md b/content/docs/definitions/resource/peas.md
new file mode 100644
index 0000000..2e526a5
--- /dev/null
+++ b/content/docs/definitions/resource/peas.md
@@ -0,0 +1,31 @@
+---
+title: Resource - Peas
+linkTitle: Peas
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Veggie Patty from Veg, Tofu and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice)
+- [Make Veggie Patty from Veg, Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice)
+- [Make Veggie Patty from Veg, Okara and Spice](/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/perchlorate.md b/content/docs/definitions/resource/perchlorate.md
new file mode 100644
index 0000000..ae76260
--- /dev/null
+++ b/content/docs/definitions/resource/perchlorate.md
@@ -0,0 +1,28 @@
+---
+title: Resource - Perchlorate
+linkTitle: Perchlorate
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Perchlorate salts such as magnesium perchlorate Mg(ClO4)2 is a powerful
oxidizing agent.
The salt is also a superior desiccant (drying agent)
to dry gas or air samples for gas analysis.
Perchlorates have been found on Mars. Being a drying agent, it retains
water from the atmosphere and may release it when conditions are
favorable and temperature is above 273 K.
Briny solutions that contain salts such as magnesium perchlorate
have a lower melting point than that of pure water.
The abundance of perchlorate salts on Mars could support the theory
that liquid aqueous solutions might exist on or below the surface,
where temperature and pressure conditions would ordinarily cause
the water to freeze.
However, when irradiated with a simulated Martian UV flux,
perchlorates become bacteriocidal. It ensures the low probability of
survival of biological contaminants released from robotic
and human exploration missions.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Purify rock salt into compounds](/docs/definitions/process/purify-rock-salt-into-compounds)
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/phosphorus.md b/content/docs/definitions/resource/phosphorus.md
new file mode 100644
index 0000000..fd0ca8d
--- /dev/null
+++ b/content/docs/definitions/resource/phosphorus.md
@@ -0,0 +1,45 @@
+---
+title: Resource - Phosphorus
+linkTitle: Phosphorus
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers](/docs/definitions/process/make-crop-fertilizers)
+- [Make crop fertilizers Alt #1](/docs/definitions/process/make-crop-fertilizers-alt--1)
+- [Make crop fertilizers Alt #2](/docs/definitions/process/make-crop-fertilizers-alt--2)
+- [Make crop fertilizers Alt #3](/docs/definitions/process/make-crop-fertilizers-alt--3)
+- [Make crop fertilizers Alt #4](/docs/definitions/process/make-crop-fertilizers-alt--4)
+- [Make crop fertilizers Alt #5](/docs/definitions/process/make-crop-fertilizers-alt--5)
+- [Make crop fertilizers Alt #6](/docs/definitions/process/make-crop-fertilizers-alt--6)
+- [Make crop fertilizers Alt #7](/docs/definitions/process/make-crop-fertilizers-alt--7)
+- [Make crop fertilizers Alt #8](/docs/definitions/process/make-crop-fertilizers-alt--8)
+- [Make crop fertilizers Alt #9](/docs/definitions/process/make-crop-fertilizers-alt--9)
+
+
+## Made by Food Process
+
+- [Extract Minerals from Soybean Ash](/docs/definitions/food/extract-minerals-from-soybean-ash)
+
+
+## Used by Food Process
+
+- [Make Immune Booster](/docs/definitions/food/make-immune-booster)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/pizza-dough.md b/content/docs/definitions/resource/pizza-dough.md
new file mode 100644
index 0000000..cf1d1d9
--- /dev/null
+++ b/content/docs/definitions/resource/pizza-dough.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Pizza dough
+linkTitle: Pizza dough
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Pizza Dough](/docs/definitions/food/make-pizza-dough)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/platinum.md b/content/docs/definitions/resource/platinum.md
new file mode 100644
index 0000000..54dabb0
--- /dev/null
+++ b/content/docs/definitions/resource/platinum.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Platinum
+linkTitle: Platinum
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/polycarbonate-resin.md b/content/docs/definitions/resource/polycarbonate-resin.md
new file mode 100644
index 0000000..e35296c
--- /dev/null
+++ b/content/docs/definitions/resource/polycarbonate-resin.md
@@ -0,0 +1,47 @@
+---
+title: Resource - Polycarbonate resin
+linkTitle: Polycarbonate resin
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
These are partially bio-based
polycarbonates made use of renewable feedstocks (food waste) and CO2. See
https://www.bio.org/sites/default/files/Natalie%20Bittner.pdf. They
are strong, tough materials, easily worked, molded, and thermoformed.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Produce polycarbonate resin](/docs/definitions/process/produce-polycarbonate-resin)
+
+## Used by Manufacturing Process
+
+- [Make satellite dish Alt #1](/docs/definitions/process/make-satellite-dish-alt--1)
+- [Make radio antenna Alt #1](/docs/definitions/process/make-radio-antenna-alt--1)
+- [Make EVA helmet](/docs/definitions/process/make-eva-helmet)
+- [Make EVA helmet Alt #1](/docs/definitions/process/make-eva-helmet-alt--1)
+- [Make EVA helmet Alt #2](/docs/definitions/process/make-eva-helmet-alt--2)
+- [Make helmet visor](/docs/definitions/process/make-helmet-visor)
+- [Make pressure suit Alt #2](/docs/definitions/process/make-pressure-suit-alt--2)
+- [Make EVA antenna Alt #1](/docs/definitions/process/make-eva-antenna-alt--1)
+- [Manufacture vehicle chassis panel Alt #1](/docs/definitions/process/manufacture-vehicle-chassis-panel-alt--1)
+- [Manufacture propeller](/docs/definitions/process/manufacture-propeller)
+- [Manufacture rover control panel Alt #1](/docs/definitions/process/manufacture-rover-control-panel-alt--1)
+- [Manufacture utility vehicle control panel Alt #1](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1)
+- [Fabricate turbine blade Alt #1](/docs/definitions/process/fabricate-turbine-blade-alt--1)
+- [Manufacture polycarbonate roofing](/docs/definitions/process/manufacture-polycarbonate-roofing)
+- [Make Power Panel](/docs/definitions/process/make-power-panel)
+- [Make Surge Protector](/docs/definitions/process/make-surge-protector)
+- [Make Metal Oxide Varistor](/docs/definitions/process/make-metal-oxide-varistor)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/polyester-fiber.md b/content/docs/definitions/resource/polyester-fiber.md
new file mode 100644
index 0000000..eeb6ad2
--- /dev/null
+++ b/content/docs/definitions/resource/polyester-fiber.md
@@ -0,0 +1,41 @@
+---
+title: Resource - Polyester fiber
+linkTitle: Polyester fiber
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Polyester fiber are strong, heat resistant material for clothing and fabric.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Produce polyester fiber](/docs/definitions/process/produce-polyester-fiber)
+
+## Used by Manufacturing Process
+
+- [Make Garment Alt #1](/docs/definitions/process/make-garment-alt--1)
+- [Make Liquid Cooling Garment Alt #3](/docs/definitions/process/make-liquid-cooling-garment-alt--3)
+- [Make EVA helmet Alt #1](/docs/definitions/process/make-eva-helmet-alt--1)
+- [Make pressure suit Alt #1](/docs/definitions/process/make-pressure-suit-alt--1)
+- [Make coveralls Alt #1](/docs/definitions/process/make-coveralls-alt--1)
+- [Make EVA gloves Alt #1](/docs/definitions/process/make-eva-gloves-alt--1)
+- [Make EVA boots Alt #1](/docs/definitions/process/make-eva-boots-alt--1)
+- [Make EVA pads Alt #1](/docs/definitions/process/make-eva-pads-alt--1)
+- [Make EVA backpack Alt #1](/docs/definitions/process/make-eva-backpack-alt--1)
+- [Make work gloves Alt #1](/docs/definitions/process/make-work-gloves-alt--1)
+- [Make biosensor Alt #1](/docs/definitions/process/make-biosensor-alt--1)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/polyester-resin.md b/content/docs/definitions/resource/polyester-resin.md
new file mode 100644
index 0000000..43603bf
--- /dev/null
+++ b/content/docs/definitions/resource/polyester-resin.md
@@ -0,0 +1,49 @@
+---
+title: Resource - Polyester resin
+linkTitle: Polyester resin
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Polyester resins are thermoplastic polymers. It's the most widely used resin systems in the marine industry.
By far the majority of dinghies, yachts and workboats built in composites make use of this
resin system. Polyesters are produced commercially both as saturated and unsaturated resins.
The most common, highest volume produced polyester is Polyethylene terephthalate (PET), a
saturated polyester that finds utilization in such applications as fibers for clothing and
carpet, food and liquid containers (such as a water/soda bottles), as well as films.
PET’s non-reactance with many foods makes it an ideal packaging material. Because
of its easy application and durability, polyester resin is also applied to patch cracks
and holes that need to remain watertight. See comparison between polyester resin and
epoxy resin at https://www.pcepoxy.com/what-is-the-difference-between-epoxy-and-polyester-resin/
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Liquid|
+
+## Made by Manufacturing Process
+
+- [Produce Polyester Resin](/docs/definitions/process/produce-polyester-resin)
+
+## Used by Manufacturing Process
+
+- [Make satellite dish](/docs/definitions/process/make-satellite-dish)
+- [Make radio antenna](/docs/definitions/process/make-radio-antenna)
+- [Roll mylar film](/docs/definitions/process/roll-mylar-film)
+- [Roll mylar film Alt #1](/docs/definitions/process/roll-mylar-film-alt--1)
+- [Make lubricant bottle](/docs/definitions/process/make-lubricant-bottle)
+- [Make airleak patch](/docs/definitions/process/make-airleak-patch)
+- [Do plastic sheet extrusion](/docs/definitions/process/do-plastic-sheet-extrusion)
+- [Make Garment](/docs/definitions/process/make-garment)
+- [Make Garment Alt #1](/docs/definitions/process/make-garment-alt--1)
+- [Make pressure suit](/docs/definitions/process/make-pressure-suit)
+- [Make pressure suit Alt #1](/docs/definitions/process/make-pressure-suit-alt--1)
+- [Make pressure suit Alt #3](/docs/definitions/process/make-pressure-suit-alt--3)
+- [Make EVA antenna](/docs/definitions/process/make-eva-antenna)
+- [Manufacture vehicle chassis panel](/docs/definitions/process/manufacture-vehicle-chassis-panel)
+- [Manufacture rover control panel](/docs/definitions/process/manufacture-rover-control-panel)
+- [Manufacture rover control panel Alt #2](/docs/definitions/process/manufacture-rover-control-panel-alt--2)
+- [Manufacture utility vehicle control panel](/docs/definitions/process/manufacture-utility-vehicle-control-panel)
+- [Manufacture utility vehicle control panel Alt #2](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2)
+- [Fabricate turbine blade](/docs/definitions/process/fabricate-turbine-blade)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/polyethylene.md b/content/docs/definitions/resource/polyethylene.md
new file mode 100644
index 0000000..cb21f4f
--- /dev/null
+++ b/content/docs/definitions/resource/polyethylene.md
@@ -0,0 +1,49 @@
+---
+title: Resource - Polyethylene
+linkTitle: Polyethylene
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Polyethylene pellets or flakes. It has two different types (HDPE vs LDPE).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make plastic barrel](/docs/definitions/process/make-plastic-barrel)
+- [Make pot](/docs/definitions/process/make-pot)
+- [Make basket](/docs/definitions/process/make-basket)
+- [Make crate](/docs/definitions/process/make-crate)
+- [Make plastic specimen box](/docs/definitions/process/make-plastic-specimen-box)
+- [Make plastic pipe](/docs/definitions/process/make-plastic-pipe)
+- [Roll mylar film](/docs/definitions/process/roll-mylar-film)
+- [Make plastic bottle](/docs/definitions/process/make-plastic-bottle)
+- [Make EVA helmet](/docs/definitions/process/make-eva-helmet)
+- [Make EVA helmet Alt #1](/docs/definitions/process/make-eva-helmet-alt--1)
+- [Make pressure suit](/docs/definitions/process/make-pressure-suit)
+- [Make pressure suit Alt #1](/docs/definitions/process/make-pressure-suit-alt--1)
+- [Make pressure suit Alt #2](/docs/definitions/process/make-pressure-suit-alt--2)
+- [Make EVA backpack](/docs/definitions/process/make-eva-backpack)
+- [Make EVA backpack Alt #1](/docs/definitions/process/make-eva-backpack-alt--1)
+- [Manufacture rover control panel](/docs/definitions/process/manufacture-rover-control-panel)
+- [Manufacture rover control panel Alt #1](/docs/definitions/process/manufacture-rover-control-panel-alt--1)
+- [Manufacture utility vehicle control panel](/docs/definitions/process/manufacture-utility-vehicle-control-panel)
+- [Manufacture utility vehicle control panel Alt #1](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1)
+- [Manufacture battery module](/docs/definitions/process/manufacture-battery-module)
+- [Manufacture EVA battery](/docs/definitions/process/manufacture-eva-battery)
+- [Make Paraffin Composites](/docs/definitions/process/make-paraffin-composites)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/polypropylene.md b/content/docs/definitions/resource/polypropylene.md
new file mode 100644
index 0000000..452fdf6
--- /dev/null
+++ b/content/docs/definitions/resource/polypropylene.md
@@ -0,0 +1,50 @@
+---
+title: Resource - Polypropylene
+linkTitle: Polypropylene
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
A thermoplastic polymer stiffer than polyethylene. Characterized by a more
transparent appearance and higher tensile strength, polypropylene bags
offer a higher heat and chemical resistance than polyethylene bags, as well
as rigid protective edges to prevent scratches. Polypropylene is a soft,
flexible type of plastic that is considered safer than other plastics.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make plastic barrel Alt #1](/docs/definitions/process/make-plastic-barrel-alt--1)
+- [Make Polypropylene rope](/docs/definitions/process/make-polypropylene-rope)
+- [Make pot Alt #1](/docs/definitions/process/make-pot-alt--1)
+- [Make basket Alt #1](/docs/definitions/process/make-basket-alt--1)
+- [Make crate Alt #1](/docs/definitions/process/make-crate-alt--1)
+- [Make plastic specimen box Alt #1](/docs/definitions/process/make-plastic-specimen-box-alt--1)
+- [Make plastic pipe Alt #1](/docs/definitions/process/make-plastic-pipe-alt--1)
+- [Roll mylar film Alt #1](/docs/definitions/process/roll-mylar-film-alt--1)
+- [Make plastic bottle Alt #1](/docs/definitions/process/make-plastic-bottle-alt--1)
+- [Make coolant bottle](/docs/definitions/process/make-coolant-bottle)
+- [Make Liquid Cooling Garment](/docs/definitions/process/make-liquid-cooling-garment)
+- [Make Liquid Cooling Garment Alt #1](/docs/definitions/process/make-liquid-cooling-garment-alt--1)
+- [Make Liquid Cooling Garment Alt #2](/docs/definitions/process/make-liquid-cooling-garment-alt--2)
+- [Make Liquid Cooling Garment Alt #3](/docs/definitions/process/make-liquid-cooling-garment-alt--3)
+- [Make EVA helmet Alt #2](/docs/definitions/process/make-eva-helmet-alt--2)
+- [Make pressure suit Alt #3](/docs/definitions/process/make-pressure-suit-alt--3)
+- [Make EVA backpack Alt #2](/docs/definitions/process/make-eva-backpack-alt--2)
+- [Manufacture rover control panel Alt #2](/docs/definitions/process/manufacture-rover-control-panel-alt--2)
+- [Manufacture utility vehicle control panel Alt #2](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2)
+- [Manufacture battery module Alt #1](/docs/definitions/process/manufacture-battery-module-alt--1)
+- [Manufacture EVA battery Alt #1](/docs/definitions/process/manufacture-eva-battery-alt--1)
+- [Manufacture flexible hose](/docs/definitions/process/manufacture-flexible-hose)
+- [Make Paraffin Composites Alt #1](/docs/definitions/process/make-paraffin-composites-alt--1)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/polystyrene.md b/content/docs/definitions/resource/polystyrene.md
new file mode 100644
index 0000000..89886d3
--- /dev/null
+++ b/content/docs/definitions/resource/polystyrene.md
@@ -0,0 +1,42 @@
+---
+title: Resource - Polystyrene
+linkTitle: Polystyrene
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
When styrene molecules are linked together into a polymer, polystyrene (C8H8)n is created. Polystyrene is an inert plastic that can
be used to make many products, such as disposable plates, cups and other foodservice
packaging products.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Produce petri dish](/docs/definitions/process/produce-petri-dish)
+- [Manufacture vehicle chassis panel](/docs/definitions/process/manufacture-vehicle-chassis-panel)
+- [Manufacture vehicle chassis panel Alt #1](/docs/definitions/process/manufacture-vehicle-chassis-panel-alt--1)
+- [Manufacture rover control panel](/docs/definitions/process/manufacture-rover-control-panel)
+- [Manufacture rover control panel Alt #1](/docs/definitions/process/manufacture-rover-control-panel-alt--1)
+- [Manufacture rover control panel Alt #2](/docs/definitions/process/manufacture-rover-control-panel-alt--2)
+- [Manufacture utility vehicle control panel](/docs/definitions/process/manufacture-utility-vehicle-control-panel)
+- [Manufacture utility vehicle control panel Alt #1](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1)
+- [Manufacture utility vehicle control panel Alt #2](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2)
+- [Assemble LUV](/docs/definitions/process/assemble-luv)
+- [Assemble explorer rover](/docs/definitions/process/assemble-explorer-rover)
+- [Assemble transport rover](/docs/definitions/process/assemble-transport-rover)
+- [Assemble cargo rover](/docs/definitions/process/assemble-cargo-rover)
+- [Make aerogel tile](/docs/definitions/process/make-aerogel-tile)
+- [Manufacture insulation board](/docs/definitions/process/manufacture-insulation-board)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/polyurethane.md b/content/docs/definitions/resource/polyurethane.md
new file mode 100644
index 0000000..509803f
--- /dev/null
+++ b/content/docs/definitions/resource/polyurethane.md
@@ -0,0 +1,40 @@
+---
+title: Resource - Polyurethane
+linkTitle: Polyurethane
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
These bio-based polyurethane made
use of natural-oil polyols (NOPs) produced from renewable
raw materials such as soybean or vegetable oil. Polyurethanes are used
in the manufacturing of foot wears, solid plastic items, foams for
bedding and upholstery.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Produce polyurethane](/docs/definitions/process/produce-polyurethane)
+
+## Used by Manufacturing Process
+
+- [Make Garment](/docs/definitions/process/make-garment)
+- [Make Garment Alt #1](/docs/definitions/process/make-garment-alt--1)
+- [Make coveralls](/docs/definitions/process/make-coveralls)
+- [Make coveralls Alt #1](/docs/definitions/process/make-coveralls-alt--1)
+- [Make EVA gloves](/docs/definitions/process/make-eva-gloves)
+- [Make EVA gloves Alt #1](/docs/definitions/process/make-eva-gloves-alt--1)
+- [Make EVA boots](/docs/definitions/process/make-eva-boots)
+- [Make EVA boots Alt #1](/docs/definitions/process/make-eva-boots-alt--1)
+- [Make EVA pads](/docs/definitions/process/make-eva-pads)
+- [Make EVA pads Alt #1](/docs/definitions/process/make-eva-pads-alt--1)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/potash-lye.md b/content/docs/definitions/resource/potash-lye.md
new file mode 100644
index 0000000..1279c3d
--- /dev/null
+++ b/content/docs/definitions/resource/potash-lye.md
@@ -0,0 +1,36 @@
+---
+title: Resource - Potash lye
+linkTitle: Potash lye
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Potassium Hydroxide (KOH). Used for
liquid soap production. Also for food processing, such as curing olives and making certain types of noodles.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Do potassium chloride electrolysis](/docs/definitions/process/do-potassium-chloride-electrolysis)
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers Alt #1](/docs/definitions/process/make-crop-fertilizers-alt--1)
+- [Dry potash into potassium crystal](/docs/definitions/process/dry-potash-into-potassium-crystal)
+- [Manufacture battery module](/docs/definitions/process/manufacture-battery-module)
+- [Manufacture battery module Alt #1](/docs/definitions/process/manufacture-battery-module-alt--1)
+- [Manufacture EVA battery](/docs/definitions/process/manufacture-eva-battery)
+- [Manufacture EVA battery Alt #1](/docs/definitions/process/manufacture-eva-battery-alt--1)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/potassium.md b/content/docs/definitions/resource/potassium.md
new file mode 100644
index 0000000..865ed86
--- /dev/null
+++ b/content/docs/definitions/resource/potassium.md
@@ -0,0 +1,48 @@
+---
+title: Resource - Potassium
+linkTitle: Potassium
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Purify rock salt into compounds](/docs/definitions/process/purify-rock-salt-into-compounds)
+- [Dry potash into potassium crystal](/docs/definitions/process/dry-potash-into-potassium-crystal)
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers](/docs/definitions/process/make-crop-fertilizers)
+- [Make crop fertilizers Alt #2](/docs/definitions/process/make-crop-fertilizers-alt--2)
+- [Make crop fertilizers Alt #3](/docs/definitions/process/make-crop-fertilizers-alt--3)
+- [Make crop fertilizers Alt #4](/docs/definitions/process/make-crop-fertilizers-alt--4)
+- [Make crop fertilizers Alt #5](/docs/definitions/process/make-crop-fertilizers-alt--5)
+- [Make crop fertilizers Alt #6](/docs/definitions/process/make-crop-fertilizers-alt--6)
+- [Make crop fertilizers Alt #7](/docs/definitions/process/make-crop-fertilizers-alt--7)
+- [Make crop fertilizers Alt #8](/docs/definitions/process/make-crop-fertilizers-alt--8)
+- [Make crop fertilizers Alt #9](/docs/definitions/process/make-crop-fertilizers-alt--9)
+
+
+## Made by Food Process
+
+- [Extract Minerals from Soybean Ash](/docs/definitions/food/extract-minerals-from-soybean-ash)
+
+
+## Used by Food Process
+
+- [Make Immune Booster](/docs/definitions/food/make-immune-booster)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/potato-tissue.md b/content/docs/definitions/resource/potato-tissue.md
new file mode 100644
index 0000000..2b87834
--- /dev/null
+++ b/content/docs/definitions/resource/potato-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Potato Tissue
+linkTitle: Potato Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/potato.md b/content/docs/definitions/resource/potato.md
new file mode 100644
index 0000000..b7bfb02
--- /dev/null
+++ b/content/docs/definitions/resource/potato.md
@@ -0,0 +1,34 @@
+---
+title: Resource - Potato
+linkTitle: Potato
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Package Preserved Food Recipe #2](/docs/definitions/food/package-preserved-food-recipe--2)
+- [Make French Fries from Potatoes](/docs/definitions/food/make-french-fries-from-potatoes)
+- [Make French Fries from Potatoes Recipe #1](/docs/definitions/food/make-french-fries-from-potatoes-recipe--1)
+- [Make Veggie Patty from Veg, Tofu and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice)
+- [Make Veggie Patty from Veg, Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice)
+- [Make Veggie Patty from Veg, Okara and Spice](/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/prophylene.md b/content/docs/definitions/resource/prophylene.md
new file mode 100644
index 0000000..abf3a19
--- /dev/null
+++ b/content/docs/definitions/resource/prophylene.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Prophylene
+linkTitle: Prophylene
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
The common name for the organic chemical compound propene. An alkene which is a
colorless gaseous (at room temperature and pressure) hydrocarbon with the chemical
formula C3H6. It's a colorless gas with a faint petroleum-like odor and is
flammable, and is often used as fuel.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Gas|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/propolis.md b/content/docs/definitions/resource/propolis.md
new file mode 100644
index 0000000..6f8c5ca
--- /dev/null
+++ b/content/docs/definitions/resource/propolis.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Propolis
+linkTitle: Propolis
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Propolis or bee glue is a resinous
mixture collected by honey bees from tree buds, sap flows, or other
botanical sources. Used as a sealant for unwanted open spaces in the
hive. It's the focus of a large number of research projects published
in the biomedical literature as an oral hygiene product, emollient,
antioxidant or an antimicrobial agent, as a treatment for allergies,
in cancer treatment and cancer prevention.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Insect|
+|Form:|Liquid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/propylene.md b/content/docs/definitions/resource/propylene.md
new file mode 100644
index 0000000..4298edd
--- /dev/null
+++ b/content/docs/definitions/resource/propylene.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Propylene
+linkTitle: Propylene
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Propylene is a colorless, flammable gas with the chemical formula C3H6
at room temperature and pressure, with a faint petroleum-like odor. It is a
product of combustion and a unsaturated organic compound with one double bond.
It is the second simplest member of the alkene class of hydrocarbons.
It is widely used in the production of various chemicals, plastics, and fuels.
As plastics such as production of resins, fibers, and elastomers (polyolefins).
As chemical products such as polypropylene, polyethylene, and polyvinyl chloride (PVC).
As fuel for industrial processes and as a component of gasoline and
for production of antifreeze and other industrial chemicals.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Gas|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/protein-bar.md b/content/docs/definitions/resource/protein-bar.md
new file mode 100644
index 0000000..9266c6d
--- /dev/null
+++ b/content/docs/definitions/resource/protein-bar.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Protein bar
+linkTitle: Protein bar
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A popular snack bar made from puffed quinoa/rice/wheat, honey/sugarcane juice, dried fruits and peanuts
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Okara Protein Bar](/docs/definitions/food/make-okara-protein-bar)
+- [Make Okara Protein Bar Recipe #1](/docs/definitions/food/make-okara-protein-bar-recipe--1)
+- [Make Okara Protein Bar Recipe #2](/docs/definitions/food/make-okara-protein-bar-recipe--2)
+- [Make Okara Protein Bar Recipe #3](/docs/definitions/food/make-okara-protein-bar-recipe--3)
+- [Make Okara Protein Bar Recipe #4](/docs/definitions/food/make-okara-protein-bar-recipe--4)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/pulp.md b/content/docs/definitions/resource/pulp.md
new file mode 100644
index 0000000..aefbb98
--- /dev/null
+++ b/content/docs/definitions/resource/pulp.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Pulp
+linkTitle: Pulp
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Pulp is a mixture of cellulose fibers.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Utility|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make pulp from cane fiber and crop waste](/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste)
+- [Make pulp from cane fiber and crop waste (large batch)](/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste--large-batch-)
+
+## Used by Manufacturing Process
+
+- [Make paper, napkin and toilet tissue from pulp](/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp)
+- [Make paper, napkin and toilet tissue from pulp (large batch)](/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp--large-batch-)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/pyroxene.md b/content/docs/definitions/resource/pyroxene.md
new file mode 100644
index 0000000..1e8b75c
--- /dev/null
+++ b/content/docs/definitions/resource/pyroxene.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Pyroxene
+linkTitle: Pyroxene
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Pyroxenes have the general formula XY(Si,Al)2O6,
where X represents calcium (Ca), sodium (Na), iron (Fe(II)) or magnesium (Mg) and more rarely zinc,
manganese or lithium, and Y represents ions of smaller size, such as chromium (Cr), aluminium (Al),
magnesium (Mg), cobalt (Co), manganese (Mn), scandium (Sc), titanium (Ti), vanadium (V) or even
iron (Fe(II) or Fe(III)).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Mineral|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/quartz.md b/content/docs/definitions/resource/quartz.md
new file mode 100644
index 0000000..b92bcb6
--- /dev/null
+++ b/content/docs/definitions/resource/quartz.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Quartz
+linkTitle: Quartz
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+For making electronic components
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Gemstone|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/quinoa-sprout.md b/content/docs/definitions/resource/quinoa-sprout.md
new file mode 100644
index 0000000..b123d7f
--- /dev/null
+++ b/content/docs/definitions/resource/quinoa-sprout.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Quinoa sprout
+linkTitle: Quinoa sprout
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Sprouts from Quinoa
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Quinoa Sprouts from Quinoa](/docs/definitions/food/make-quinoa-sprouts-from-quinoa)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/quinoa-tissue.md b/content/docs/definitions/resource/quinoa-tissue.md
new file mode 100644
index 0000000..99db55b
--- /dev/null
+++ b/content/docs/definitions/resource/quinoa-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Quinoa Tissue
+linkTitle: Quinoa Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A nutritious grain
having most amino acids
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/quinoa.md b/content/docs/definitions/resource/quinoa.md
new file mode 100644
index 0000000..d85ea76
--- /dev/null
+++ b/content/docs/definitions/resource/quinoa.md
@@ -0,0 +1,36 @@
+---
+title: Resource - Quinoa
+linkTitle: Quinoa
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A nutritious grain
having most amino acids
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Granola Bar](/docs/definitions/food/make-granola-bar)
+- [Make Granola Bar Recipe #1](/docs/definitions/food/make-granola-bar-recipe--1)
+- [Make Granola Bar Recipe #2](/docs/definitions/food/make-granola-bar-recipe--2)
+- [Make Okara Protein Bar](/docs/definitions/food/make-okara-protein-bar)
+- [Make Okara Protein Bar Recipe #1](/docs/definitions/food/make-okara-protein-bar-recipe--1)
+- [Make Okara Protein Bar Recipe #2](/docs/definitions/food/make-okara-protein-bar-recipe--2)
+- [Make Quinoa Sprouts from Quinoa](/docs/definitions/food/make-quinoa-sprouts-from-quinoa)
+- [Make Veggie Patty from Quinoa Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/radish-tissue.md b/content/docs/definitions/resource/radish-tissue.md
new file mode 100644
index 0000000..896a067
--- /dev/null
+++ b/content/docs/definitions/resource/radish-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Radish Tissue
+linkTitle: Radish Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/radish.md b/content/docs/definitions/resource/radish.md
new file mode 100644
index 0000000..ec25358
--- /dev/null
+++ b/content/docs/definitions/resource/radish.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Radish
+linkTitle: Radish
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/red-beet-tissue.md b/content/docs/definitions/resource/red-beet-tissue.md
new file mode 100644
index 0000000..bd1a31a
--- /dev/null
+++ b/content/docs/definitions/resource/red-beet-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Red Beet Tissue
+linkTitle: Red Beet Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/red-beet.md b/content/docs/definitions/resource/red-beet.md
new file mode 100644
index 0000000..b85b0f2
--- /dev/null
+++ b/content/docs/definitions/resource/red-beet.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Red Beet
+linkTitle: Red Beet
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/regolith-b.md b/content/docs/definitions/resource/regolith-b.md
new file mode 100644
index 0000000..28f54d4
--- /dev/null
+++ b/content/docs/definitions/resource/regolith-b.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Regolith-B
+linkTitle: Regolith-B
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Type B Martian soil rich in poly-hydrated sulfate. 40% gypsum.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Regolith|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/regolith-c.md b/content/docs/definitions/resource/regolith-c.md
new file mode 100644
index 0000000..9def8e4
--- /dev/null
+++ b/content/docs/definitions/resource/regolith-c.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Regolith-C
+linkTitle: Regolith-C
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Type C Martian soil rich in phyllo-silicate. 40% smectite.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Regolith|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/regolith-d.md b/content/docs/definitions/resource/regolith-d.md
new file mode 100644
index 0000000..45eeb4c
--- /dev/null
+++ b/content/docs/definitions/resource/regolith-d.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Regolith-D
+linkTitle: Regolith-D
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Type D Martian soil 23.5% basaltic.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Regolith|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/regolith.md b/content/docs/definitions/resource/regolith.md
new file mode 100644
index 0000000..959b2a0
--- /dev/null
+++ b/content/docs/definitions/resource/regolith.md
@@ -0,0 +1,28 @@
+---
+title: Resource - Regolith
+linkTitle: Regolith
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Unspecified type of Martian soil.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Regolith|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Bake regolith brick](/docs/definitions/process/bake-regolith-brick)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/rhizobia.md b/content/docs/definitions/resource/rhizobia.md
new file mode 100644
index 0000000..ec46fb7
--- /dev/null
+++ b/content/docs/definitions/resource/rhizobia.md
@@ -0,0 +1,28 @@
+---
+title: Resource - Rhizobia
+linkTitle: Rhizobia
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Seen as organic fertilizer, the nitrogen fixing
bacteria that colonize the roots of their preferred plant partner and take nitrogen
from the air and convert it into ammonia, a form of nitrogen that plants can use.
In return, legumes feed the bacteria a steady diet of plant sugars.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Organism|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers Alt #3](/docs/definitions/process/make-crop-fertilizers-alt--3)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/rhizopus-oligosporus.md b/content/docs/definitions/resource/rhizopus-oligosporus.md
new file mode 100644
index 0000000..8441a90
--- /dev/null
+++ b/content/docs/definitions/resource/rhizopus-oligosporus.md
@@ -0,0 +1,36 @@
+---
+title: Resource - Rhizopus oligosporus
+linkTitle: Rhizopus oligosporus
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
This edible fungus is used to ferment
tempeh. As the fungus grows, its mycelia grow throughout the edible medium, producing
an edible block.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Organism|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Tempeh from Soybeans](/docs/definitions/food/make-tempeh-from-soybeans)
+- [Make Black Oncom from Okara](/docs/definitions/food/make-black-oncom-from-okara)
+- [Make Tempeh from half Soybeans and half Okara](/docs/definitions/food/make-tempeh-from-half-soybeans-and-half-okara)
+- [Make Tofu and Tempeh from Soybeans and Vinegar (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-vinegar--large-batch-)
+- [Make Tofu and Tempeh from Soybeans and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-epsom-salt--large-batch-)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Vinegar](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt)
+- [Make Veggie Patty from Quinoa Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/rice-bran-oil.md b/content/docs/definitions/resource/rice-bran-oil.md
new file mode 100644
index 0000000..f3569e7
--- /dev/null
+++ b/content/docs/definitions/resource/rice-bran-oil.md
@@ -0,0 +1,31 @@
+---
+title: Resource - Rice bran oil
+linkTitle: Rice bran oil
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Oil is extracted from the germ and inner husk of rice.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Oil|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Process Rice into White Rice and rice bran oil](/docs/definitions/food/process-rice-into-white-rice-and-rice-bran-oil)
+- [Process Brown Rice into Rice Flour](/docs/definitions/food/process-brown-rice-into-rice-flour)
+- [Process Brown Rice into White Rice](/docs/definitions/food/process-brown-rice-into-white-rice)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/rice-flour.md b/content/docs/definitions/resource/rice-flour.md
new file mode 100644
index 0000000..a56415c
--- /dev/null
+++ b/content/docs/definitions/resource/rice-flour.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Rice flour
+linkTitle: Rice flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Flour made from White Rice.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Process White Rice into Rice Flour](/docs/definitions/food/process-white-rice-into-rice-flour)
+- [Process Brown Rice into Rice Flour](/docs/definitions/food/process-brown-rice-into-rice-flour)
+
+
+## Used by Food Process
+
+- [Make Rice Noodles from Rice Flour](/docs/definitions/food/make-rice-noodles-from-rice-flour)
+- [Make Pizza Dough](/docs/definitions/food/make-pizza-dough)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/rice-noodle.md b/content/docs/definitions/resource/rice-noodle.md
new file mode 100644
index 0000000..f9aa25a
--- /dev/null
+++ b/content/docs/definitions/resource/rice-noodle.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Rice noodle
+linkTitle: Rice noodle
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Noodle made of Rice Flour.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Rice Noodles from Rice Flour](/docs/definitions/food/make-rice-noodles-from-rice-flour)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/rice-tissue.md b/content/docs/definitions/resource/rice-tissue.md
new file mode 100644
index 0000000..56fa92a
--- /dev/null
+++ b/content/docs/definitions/resource/rice-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Rice Tissue
+linkTitle: Rice Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/rice-vinegar.md b/content/docs/definitions/resource/rice-vinegar.md
new file mode 100644
index 0000000..f314cb0
--- /dev/null
+++ b/content/docs/definitions/resource/rice-vinegar.md
@@ -0,0 +1,45 @@
+---
+title: Resource - Rice vinegar
+linkTitle: Rice vinegar
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Rice vinegar is more popular in the cuisines of East and Southeast Asia. It is available in "white" (light yellow), red, and black varieties.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Make Rice Vinegar by Fermentation](/docs/definitions/food/make-rice-vinegar-by-fermentation)
+
+
+## Used by Food Process
+
+- [Make Tofu from Soymilk and Vinegar](/docs/definitions/food/make-tofu-from-soymilk-and-vinegar)
+- [Make Tofu from Soybeans, Water, and Vinegar (large batch)](/docs/definitions/food/make-tofu-from-soybeans--water--and-vinegar--large-batch-)
+- [Make Soymilk and Tofu from Soybeans, Water, and Vinegar](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-vinegar)
+- [Make Tempeh from Soybeans](/docs/definitions/food/make-tempeh-from-soybeans)
+- [Make Black Oncom from Okara](/docs/definitions/food/make-black-oncom-from-okara)
+- [Make Tempeh from half Soybeans and half Okara](/docs/definitions/food/make-tempeh-from-half-soybeans-and-half-okara)
+- [Make Tofu and Tempeh from Soybeans and Vinegar (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-vinegar--large-batch-)
+- [Make Tofu and Tempeh from Soybeans and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-epsom-salt--large-batch-)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Vinegar](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt)
+- [Make Veggie Patty from Quinoa Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice)
+- [Make Mustard](/docs/definitions/food/make-mustard)
+- [Make Ketchup from Tomatoes](/docs/definitions/food/make-ketchup-from-tomatoes)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/rice.md b/content/docs/definitions/resource/rice.md
new file mode 100644
index 0000000..b73f32e
--- /dev/null
+++ b/content/docs/definitions/resource/rice.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Rice
+linkTitle: Rice
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Granola Bar Recipe #4](/docs/definitions/food/make-granola-bar-recipe--4)
+- [Make Okara Protein Bar Recipe #4](/docs/definitions/food/make-okara-protein-bar-recipe--4)
+- [Process Rice into White Rice and rice bran oil](/docs/definitions/food/process-rice-into-white-rice-and-rice-bran-oil)
+- [Process Rice into Brown Rice](/docs/definitions/food/process-rice-into-brown-rice)
+- [Make Miso by Fermentation](/docs/definitions/food/make-miso-by-fermentation)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/roasted-peanut.md b/content/docs/definitions/resource/roasted-peanut.md
new file mode 100644
index 0000000..0f4467a
--- /dev/null
+++ b/content/docs/definitions/resource/roasted-peanut.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Roasted peanut
+linkTitle: Roasted peanut
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Chop and Roast Peanuts in Oven](/docs/definitions/food/chop-and-roast-peanuts-in-oven)
+
+
+## Used by Food Process
+
+- [Package Roast Peanuts into Dry Food](/docs/definitions/food/package-roast-peanuts-into-dry-food)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/rock-salt.md b/content/docs/definitions/resource/rock-salt.md
new file mode 100644
index 0000000..a3d4a0f
--- /dev/null
+++ b/content/docs/definitions/resource/rock-salt.md
@@ -0,0 +1,28 @@
+---
+title: Resource - Rock salt
+linkTitle: Rock salt
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Halite, commonly known as rock salt, is the mineral
form of sodium chloride (NaCl).
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Purify rock salt into compounds](/docs/definitions/process/purify-rock-salt-into-compounds)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/rock-samples.md b/content/docs/definitions/resource/rock-samples.md
new file mode 100644
index 0000000..8c326fd
--- /dev/null
+++ b/content/docs/definitions/resource/rock-samples.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Rock samples
+linkTitle: Rock samples
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Rock samples collected from explored sites.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Rock|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sand.md b/content/docs/definitions/resource/sand.md
new file mode 100644
index 0000000..b8b0f5c
--- /dev/null
+++ b/content/docs/definitions/resource/sand.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Sand
+linkTitle: Sand
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Soil with iron oxide removed. Used for making glass.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make clear glass bottle](/docs/definitions/process/make-clear-glass-bottle)
+- [Draw optical fiber glass](/docs/definitions/process/draw-optical-fiber-glass)
+- [Make sheet glass](/docs/definitions/process/make-sheet-glass)
+- [Make heating element](/docs/definitions/process/make-heating-element)
+- [Fabricate glass tube](/docs/definitions/process/fabricate-glass-tube)
+- [Bake sand brick](/docs/definitions/process/bake-sand-brick)
+- [Make Metal Oxide Varistor](/docs/definitions/process/make-metal-oxide-varistor)
+- [Make Metal Oxide Varistor Alt #1](/docs/definitions/process/make-metal-oxide-varistor-alt--1)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sandstone.md b/content/docs/definitions/resource/sandstone.md
new file mode 100644
index 0000000..a31c915
--- /dev/null
+++ b/content/docs/definitions/resource/sandstone.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Sandstone
+linkTitle: Sandstone
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Rock|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/scandium.md b/content/docs/definitions/resource/scandium.md
new file mode 100644
index 0000000..ef09658
--- /dev/null
+++ b/content/docs/definitions/resource/scandium.md
@@ -0,0 +1,25 @@
+---
+title: Resource - scandium
+linkTitle: scandium
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/scoria.md b/content/docs/definitions/resource/scoria.md
new file mode 100644
index 0000000..a6b8bad
--- /dev/null
+++ b/content/docs/definitions/resource/scoria.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Scoria
+linkTitle: Scoria
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Rock|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sesame-milk.md b/content/docs/definitions/resource/sesame-milk.md
new file mode 100644
index 0000000..bcdc8d1
--- /dev/null
+++ b/content/docs/definitions/resource/sesame-milk.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Sesame milk
+linkTitle: Sesame milk
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Plant milk produced by soaking dry Soybean and sesame seeds and grinding them with water.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Make Sesame Milk from Soymilk](/docs/definitions/food/make-sesame-milk-from-soymilk)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sesame-oil.md b/content/docs/definitions/resource/sesame-oil.md
new file mode 100644
index 0000000..0606751
--- /dev/null
+++ b/content/docs/definitions/resource/sesame-oil.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Sesame oil
+linkTitle: Sesame oil
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Oil pressed from sesame seeds.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Oil|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Press Sesame Oil from Sesame Seeds](/docs/definitions/food/press-sesame-oil-from-sesame-seeds)
+
+
+## Used by Food Process
+
+- [Press Garlic Oil from Garlic](/docs/definitions/food/press-garlic-oil-from-garlic)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sesame-seed.md b/content/docs/definitions/resource/sesame-seed.md
new file mode 100644
index 0000000..6e09520
--- /dev/null
+++ b/content/docs/definitions/resource/sesame-seed.md
@@ -0,0 +1,31 @@
+---
+title: Resource - Sesame seed
+linkTitle: Sesame seed
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Seeds from sesame plant.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Sesame Milk from Soymilk](/docs/definitions/food/make-sesame-milk-from-soymilk)
+- [Press Sesame Oil from Sesame Seeds](/docs/definitions/food/press-sesame-oil-from-sesame-seeds)
+- [Bake Wheat Bun from Wheat Flour](/docs/definitions/food/bake-wheat-bun-from-wheat-flour)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sesame-tissue.md b/content/docs/definitions/resource/sesame-tissue.md
new file mode 100644
index 0000000..87450b1
--- /dev/null
+++ b/content/docs/definitions/resource/sesame-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Sesame Tissue
+linkTitle: Sesame Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A flowering plant--
source of sesame seeds
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sesame.md b/content/docs/definitions/resource/sesame.md
new file mode 100644
index 0000000..8650a5c
--- /dev/null
+++ b/content/docs/definitions/resource/sesame.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Sesame
+linkTitle: Sesame
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+A flowering plant--
source of sesame seeds
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/shale.md b/content/docs/definitions/resource/shale.md
new file mode 100644
index 0000000..8bee776
--- /dev/null
+++ b/content/docs/definitions/resource/shale.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Shale
+linkTitle: Shale
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Rock|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/silica.md b/content/docs/definitions/resource/silica.md
new file mode 100644
index 0000000..c23e72d
--- /dev/null
+++ b/content/docs/definitions/resource/silica.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Silica
+linkTitle: Silica
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ The word Silica came from the Latin silex.
Also known as silicon dioxide, silica is an oxide of silicon with the chemical formula
SiO2, most commonly found in nature as quartz and in various living
organisms. In many parts of the world, silica is the major constituent
of sand.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make aerogel tile](/docs/definitions/process/make-aerogel-tile)
+- [Make Silicone Elastomer](/docs/definitions/process/make-silicone-elastomer)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/silicon.md b/content/docs/definitions/resource/silicon.md
new file mode 100644
index 0000000..84686d8
--- /dev/null
+++ b/content/docs/definitions/resource/silicon.md
@@ -0,0 +1,31 @@
+---
+title: Resource - Silicon
+linkTitle: Silicon
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Fabricate solar panel](/docs/definitions/process/fabricate-solar-panel)
+- [Fabricate semiconductor wafer](/docs/definitions/process/fabricate-semiconductor-wafer)
+- [Manufacture capacitors](/docs/definitions/process/manufacture-capacitors)
+- [Manufacture diodes](/docs/definitions/process/manufacture-diodes)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/silicone-elastomer.md b/content/docs/definitions/resource/silicone-elastomer.md
new file mode 100644
index 0000000..d81865d
--- /dev/null
+++ b/content/docs/definitions/resource/silicone-elastomer.md
@@ -0,0 +1,34 @@
+---
+title: Resource - Silicone Elastomer
+linkTitle: Silicone Elastomer
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Highly stretchable, soft silicone elastomers
are of great interest for the fabrication of stretchable, soft devices.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make Silicone Elastomer](/docs/definitions/process/make-silicone-elastomer)
+
+## Used by Manufacturing Process
+
+- [Make pressure suit](/docs/definitions/process/make-pressure-suit)
+- [Make pressure suit Alt #1](/docs/definitions/process/make-pressure-suit-alt--1)
+- [Make pressure suit Alt #2](/docs/definitions/process/make-pressure-suit-alt--2)
+- [Make pressure suit Alt #3](/docs/definitions/process/make-pressure-suit-alt--3)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/silver.md b/content/docs/definitions/resource/silver.md
new file mode 100644
index 0000000..93da32f
--- /dev/null
+++ b/content/docs/definitions/resource/silver.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Silver
+linkTitle: Silver
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/smectite.md b/content/docs/definitions/resource/smectite.md
new file mode 100644
index 0000000..55f672f
--- /dev/null
+++ b/content/docs/definitions/resource/smectite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Smectite
+linkTitle: Smectite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Smectite is the name used for a group of phyllo-silicate mineral species.
It's a clay-like regolith derived mineral deposit in NASA Water ISRU Study Reference Case C.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Ore|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sodium-carbonate.md b/content/docs/definitions/resource/sodium-carbonate.md
new file mode 100644
index 0000000..ff291a5
--- /dev/null
+++ b/content/docs/definitions/resource/sodium-carbonate.md
@@ -0,0 +1,32 @@
+---
+title: Resource - Sodium carbonate
+linkTitle: Sodium carbonate
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Na2CO3, also called washing soda,
soda ash and soda crystals, is the water-soluble sodium salt of carbonic acid
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Purify rock salt into compounds](/docs/definitions/process/purify-rock-salt-into-compounds)
+
+## Used by Manufacturing Process
+
+- [Make methane solid oxide fuel cells](/docs/definitions/process/make-methane-solid-oxide-fuel-cells)
+- [Make methanol fuel cells](/docs/definitions/process/make-methanol-fuel-cells)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sodium-hypochlorite.md b/content/docs/definitions/resource/sodium-hypochlorite.md
new file mode 100644
index 0000000..308a51f
--- /dev/null
+++ b/content/docs/definitions/resource/sodium-hypochlorite.md
@@ -0,0 +1,41 @@
+---
+title: Resource - Sodium hypochlorite
+linkTitle: Sodium hypochlorite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Sodium Hypochlorite is
one of the bleaching chemical for sanitizing soybean as well as pulp
bleaching during paper making
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Liquid|
+
+## Made by Manufacturing Process
+
+- [Make sodium hypochlorite for bleaching and sanitation](/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation)
+- [Make sodium hypochlorite for bleaching and sanitation (large batch)](/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation--large-batch-)
+
+## Used by Manufacturing Process
+
+- [Make bleaching chemical for paper making](/docs/definitions/process/make-bleaching-chemical-for-paper-making)
+- [Make bleaching chemical for paper making (large batch)](/docs/definitions/process/make-bleaching-chemical-for-paper-making--large-batch-)
+- [Make activated charcoal](/docs/definitions/process/make-activated-charcoal)
+
+
+
+## Used by Food Process
+
+- [Make Soy Sprouts from Soybeans](/docs/definitions/food/make-soy-sprouts-from-soybeans)
+- [Make Rice Vinegar by Fermentation](/docs/definitions/food/make-rice-vinegar-by-fermentation)
+- [Make Soy Sauce by Fermentation](/docs/definitions/food/make-soy-sauce-by-fermentation)
+- [Make Miso by Fermentation](/docs/definitions/food/make-miso-by-fermentation)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sodium-oxide.md b/content/docs/definitions/resource/sodium-oxide.md
new file mode 100644
index 0000000..91e2977
--- /dev/null
+++ b/content/docs/definitions/resource/sodium-oxide.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Sodium oxide
+linkTitle: Sodium oxide
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ extracted from regolith.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/soil.md b/content/docs/definitions/resource/soil.md
new file mode 100644
index 0000000..0f17eb5
--- /dev/null
+++ b/content/docs/definitions/resource/soil.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Soil
+linkTitle: Soil
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Soil is the mixture of minerals, organic matter, gases, liquids, and the myriad of organisms that together support plant life.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Waste|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/solid-waste.md b/content/docs/definitions/resource/solid-waste.md
new file mode 100644
index 0000000..07905d4
--- /dev/null
+++ b/content/docs/definitions/resource/solid-waste.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Solid waste
+linkTitle: Solid waste
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Solid waste predominantly is any garbage, refuse or rubbish generated in settlement. It can be converted into other wastes.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Waste|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make pulp from cane fiber and crop waste](/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste)
+- [Make pulp from cane fiber and crop waste (large batch)](/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste--large-batch-)
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/soy-fiber.md b/content/docs/definitions/resource/soy-fiber.md
new file mode 100644
index 0000000..378b46c
--- /dev/null
+++ b/content/docs/definitions/resource/soy-fiber.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Soy fiber
+linkTitle: Soy fiber
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Light yellow, silky protein Soybean fiber .
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Soy-based|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Produce Fiber Cloth from Cane or Soy Fiber Recipe #1](/docs/definitions/food/produce-fiber-cloth-from-cane-or-soy-fiber-recipe--1)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/soy-flour.md b/content/docs/definitions/resource/soy-flour.md
new file mode 100644
index 0000000..70c8de9
--- /dev/null
+++ b/content/docs/definitions/resource/soy-flour.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Soy flour
+linkTitle: Soy flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Flour made from ground Soybean.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Soy-based|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Process Soybean into Soy Flour](/docs/definitions/food/process-soybean-into-soy-flour)
+
+
+## Used by Food Process
+
+- [Bake White Bread from Soy Flour](/docs/definitions/food/bake-white-bread-from-soy-flour)
+- [Extract Soy Protein from Soy Flour](/docs/definitions/food/extract-soy-protein-from-soy-flour)
+- [Make Pizza Dough](/docs/definitions/food/make-pizza-dough)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/soy-protein.md b/content/docs/definitions/resource/soy-protein.md
new file mode 100644
index 0000000..4b5a129
--- /dev/null
+++ b/content/docs/definitions/resource/soy-protein.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Soy protein
+linkTitle: Soy protein
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Protein extract derived from Soybean.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Soy-based|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Extract Soy Protein from Soy Flour](/docs/definitions/food/extract-soy-protein-from-soy-flour)
+
+
+## Used by Food Process
+
+- [Make Peanut Butter from Peanuts](/docs/definitions/food/make-peanut-butter-from-peanuts)
+- [Make Wheat Noodles from Wheat Flour](/docs/definitions/food/make-wheat-noodles-from-wheat-flour)
+- [Make Rice Noodles from Rice Flour](/docs/definitions/food/make-rice-noodles-from-rice-flour)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/soy-sauce.md b/content/docs/definitions/resource/soy-sauce.md
new file mode 100644
index 0000000..2ded322
--- /dev/null
+++ b/content/docs/definitions/resource/soy-sauce.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Soy sauce
+linkTitle: Soy sauce
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Made from fermented soybeans
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Soy-based|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Make Soy Sauce by Fermentation](/docs/definitions/food/make-soy-sauce-by-fermentation)
+
+
+## Used by Food Process
+
+- [Make Veggie Patty from Quinoa Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/soy-sprout.md b/content/docs/definitions/resource/soy-sprout.md
new file mode 100644
index 0000000..1113df9
--- /dev/null
+++ b/content/docs/definitions/resource/soy-sprout.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Soy sprout
+linkTitle: Soy sprout
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Sprouted Soybean.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Soy-based|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Soy Sprouts from Soybeans](/docs/definitions/food/make-soy-sprouts-from-soybeans)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/soybean-ash.md b/content/docs/definitions/resource/soybean-ash.md
new file mode 100644
index 0000000..ad30281
--- /dev/null
+++ b/content/docs/definitions/resource/soybean-ash.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Soybean ash
+linkTitle: Soybean ash
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Soybean extract composed of mainly Potassium, Phosphorus, Magnesium, and Calcium.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Soy-based|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Extract Minerals from Soybean Ash](/docs/definitions/food/extract-minerals-from-soybean-ash)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/soybean-oil.md b/content/docs/definitions/resource/soybean-oil.md
new file mode 100644
index 0000000..5fe208c
--- /dev/null
+++ b/content/docs/definitions/resource/soybean-oil.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Soybean oil
+linkTitle: Soybean oil
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Oil derived from soybean.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Oil|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Expel Soybean Oil from Soybean](/docs/definitions/food/expel-soybean-oil-from-soybean)
+
+
+## Used by Food Process
+
+- [Make French Fries from Potatoes Recipe #1](/docs/definitions/food/make-french-fries-from-potatoes-recipe--1)
+- [Make Peanut Butter from Peanuts](/docs/definitions/food/make-peanut-butter-from-peanuts)
+- [Make Pizza Dough](/docs/definitions/food/make-pizza-dough)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/soybean-tissue.md b/content/docs/definitions/resource/soybean-tissue.md
new file mode 100644
index 0000000..75bf40c
--- /dev/null
+++ b/content/docs/definitions/resource/soybean-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Soybean Tissue
+linkTitle: Soybean Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Soybean seeds.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/soybean.md b/content/docs/definitions/resource/soybean.md
new file mode 100644
index 0000000..c222ef0
--- /dev/null
+++ b/content/docs/definitions/resource/soybean.md
@@ -0,0 +1,47 @@
+---
+title: Resource - Soybean
+linkTitle: Soybean
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Soybean seeds.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Soy Sprouts from Soybeans](/docs/definitions/food/make-soy-sprouts-from-soybeans)
+- [Make Okara and Soymilk from Soybeans](/docs/definitions/food/make-okara-and-soymilk-from-soybeans)
+- [Make Tofu from Soybeans, Water, and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-from-soybeans--water--and-epsom-salt--large-batch-)
+- [Make Tofu from Soybeans, Water, and Vinegar (large batch)](/docs/definitions/food/make-tofu-from-soybeans--water--and-vinegar--large-batch-)
+- [Make Soymilk and Tofu from Soybeans, Water, and Epsom Salt](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-epsom-salt)
+- [Make Soymilk and Tofu from Soybeans, Water, and Vinegar](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-vinegar)
+- [Process Soybean into Soy Flour](/docs/definitions/food/process-soybean-into-soy-flour)
+- [Make Tempeh from Soybeans](/docs/definitions/food/make-tempeh-from-soybeans)
+- [Make Tempeh from half Soybeans and half Okara](/docs/definitions/food/make-tempeh-from-half-soybeans-and-half-okara)
+- [Make Tofu and Tempeh from Soybeans and Vinegar (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-vinegar--large-batch-)
+- [Make Tofu and Tempeh from Soybeans and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-epsom-salt--large-batch-)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Vinegar](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt)
+- [Expel Soybean Oil from Soybean](/docs/definitions/food/expel-soybean-oil-from-soybean)
+- [Make Veggie Patty from Veg, Tofu and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice)
+- [Make Veggie Patty from Veg, Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice)
+- [Make Veggie Patty from Veg, Okara and Spice](/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice)
+- [Make Soy Sauce by Fermentation](/docs/definitions/food/make-soy-sauce-by-fermentation)
+- [Make Miso by Fermentation](/docs/definitions/food/make-miso-by-fermentation)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/soymilk.md b/content/docs/definitions/resource/soymilk.md
new file mode 100644
index 0000000..d1eac2f
--- /dev/null
+++ b/content/docs/definitions/resource/soymilk.md
@@ -0,0 +1,40 @@
+---
+title: Resource - Soymilk
+linkTitle: Soymilk
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Plant milk produced by soaking dry Soybean and grinding them with water.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Soy-based|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Make Okara and Soymilk from Soybeans](/docs/definitions/food/make-okara-and-soymilk-from-soybeans)
+- [Make Soymilk and Tofu from Soybeans, Water, and Epsom Salt](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-epsom-salt)
+- [Make Soymilk and Tofu from Soybeans, Water, and Vinegar](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-vinegar)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Vinegar](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt)
+
+
+## Used by Food Process
+
+- [Make Sesame Milk from Soymilk](/docs/definitions/food/make-sesame-milk-from-soymilk)
+- [Make Tofu from Soymilk and Calcium Sulfate](/docs/definitions/food/make-tofu-from-soymilk-and-calcium-sulfate)
+- [Make Tofu from Soymilk and Epsom Salt](/docs/definitions/food/make-tofu-from-soymilk-and-epsom-salt)
+- [Make Tofu from Soymilk and Vinegar](/docs/definitions/food/make-tofu-from-soymilk-and-vinegar)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/spirulina.md b/content/docs/definitions/resource/spirulina.md
new file mode 100644
index 0000000..a01341d
--- /dev/null
+++ b/content/docs/definitions/resource/spirulina.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Spirulina
+linkTitle: Spirulina
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Spirulina is multi-cellular and filamentous cyano-bacteria commonly known as blue-green algae that
grows both in fresh as well as salt water. Similar to plants it produces energy from sunlight
through the photosynthesis process. It grows and thrives in warm water alkaline ponds and rivers.
It is one of the best potential sources of protein.
See https://www.ncbi.nlm.nih.gov/pmc/articles/PMC9143897/
"Wide Range Applications of Spirulina: From Earth to Space Missions"
https://www.techno-preneur.net/technology/project-profiles/food/Spirulina.htm
For uniform growth and for uniform harvesting, 30 grams of dry Spirulina is added
for every 10 liters of water. The water level in the pond should be maintained at 20 to 30 cm.
In general, the pond will be ready for harvest after 5 days after seeding process is done.
Culture is filtered and collected in a container and poured onto the cloth. The culture medium
flows back into the pond, leaving Spirulina on the cloth.
After filtering, the collected Spirulina is thoroughly washed in distilled water to remove any
traces of salts, contaminants, or culture medium residue. Once the cleaning is done, the water
content is further removed by squeezing or pressing and is ready for drying. Freshly harvested
Spirulina will be at its best in its nutritional values. Fresh Spirulina cannot last more than
2 days, hence it needs to be dried to preserve its nutritional values and to last for a longer
duration.
Each pond constructed is of 10 x 20 feet size. With 20 such ponds, each will generate on an
average about 2 kg wet culture per day. 1 kg wet culture will give 100 grams of dry powder only.
On average, a 20 tank will generate 4-5 kg of dry Spirulina powder on a daily basis.
The production in a month will be around 100 to 130 kg per month.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Organism|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/spring-onion-tissue.md b/content/docs/definitions/resource/spring-onion-tissue.md
new file mode 100644
index 0000000..71bc23b
--- /dev/null
+++ b/content/docs/definitions/resource/spring-onion-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Spring Onion Tissue
+linkTitle: Spring Onion Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/spring-onion.md b/content/docs/definitions/resource/spring-onion.md
new file mode 100644
index 0000000..9aa45f3
--- /dev/null
+++ b/content/docs/definitions/resource/spring-onion.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Spring Onion
+linkTitle: Spring Onion
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Veggie Patty from Quinoa Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/strawberry-tissue.md b/content/docs/definitions/resource/strawberry-tissue.md
new file mode 100644
index 0000000..390ed89
--- /dev/null
+++ b/content/docs/definitions/resource/strawberry-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Strawberry Tissue
+linkTitle: Strawberry Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/strawberry.md b/content/docs/definitions/resource/strawberry.md
new file mode 100644
index 0000000..b18b482
--- /dev/null
+++ b/content/docs/definitions/resource/strawberry.md
@@ -0,0 +1,36 @@
+---
+title: Resource - Strawberry
+linkTitle: Strawberry
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Granola Bar](/docs/definitions/food/make-granola-bar)
+- [Make Granola Bar Recipe #1](/docs/definitions/food/make-granola-bar-recipe--1)
+- [Make Granola Bar Recipe #3](/docs/definitions/food/make-granola-bar-recipe--3)
+- [Make Granola Bar Recipe #4](/docs/definitions/food/make-granola-bar-recipe--4)
+- [Make Okara Protein Bar](/docs/definitions/food/make-okara-protein-bar)
+- [Make Okara Protein Bar Recipe #1](/docs/definitions/food/make-okara-protein-bar-recipe--1)
+- [Make Okara Protein Bar Recipe #3](/docs/definitions/food/make-okara-protein-bar-recipe--3)
+- [Make Okara Protein Bar Recipe #4](/docs/definitions/food/make-okara-protein-bar-recipe--4)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/styrene.md b/content/docs/definitions/resource/styrene.md
new file mode 100644
index 0000000..b0ee296
--- /dev/null
+++ b/content/docs/definitions/resource/styrene.md
@@ -0,0 +1,57 @@
+---
+title: Resource - Styrene
+linkTitle: Styrene
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Synthetic styrene, which is chemically identical to naturally occurring styrene,
is manufactured as a chemical building block for
materials used to make packaging, insulation
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Liquid|
+
+
+## Used by Manufacturing Process
+
+- [Make satellite dish](/docs/definitions/process/make-satellite-dish)
+- [Make satellite dish Alt #1](/docs/definitions/process/make-satellite-dish-alt--1)
+- [Make radio antenna](/docs/definitions/process/make-radio-antenna)
+- [Make radio antenna Alt #1](/docs/definitions/process/make-radio-antenna-alt--1)
+- [Make gasket](/docs/definitions/process/make-gasket)
+- [Make timing belt](/docs/definitions/process/make-timing-belt)
+- [Make plastic tubing](/docs/definitions/process/make-plastic-tubing)
+- [Make airleak patch](/docs/definitions/process/make-airleak-patch)
+- [Make EVA antenna](/docs/definitions/process/make-eva-antenna)
+- [Make EVA antenna Alt #1](/docs/definitions/process/make-eva-antenna-alt--1)
+- [Manufacture vehicle chassis panel](/docs/definitions/process/manufacture-vehicle-chassis-panel)
+- [Manufacture vehicle chassis panel Alt #1](/docs/definitions/process/manufacture-vehicle-chassis-panel-alt--1)
+- [Manufacture rover control panel](/docs/definitions/process/manufacture-rover-control-panel)
+- [Manufacture rover control panel Alt #1](/docs/definitions/process/manufacture-rover-control-panel-alt--1)
+- [Manufacture rover control panel Alt #2](/docs/definitions/process/manufacture-rover-control-panel-alt--2)
+- [Manufacture utility vehicle control panel](/docs/definitions/process/manufacture-utility-vehicle-control-panel)
+- [Manufacture utility vehicle control panel Alt #1](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--1)
+- [Manufacture utility vehicle control panel Alt #2](/docs/definitions/process/manufacture-utility-vehicle-control-panel-alt--2)
+- [Make electrical wire](/docs/definitions/process/make-electrical-wire)
+- [Make aluminum power cable](/docs/definitions/process/make-aluminum-power-cable)
+- [Make wire connector](/docs/definitions/process/make-wire-connector)
+- [Make copper electrical wire](/docs/definitions/process/make-copper-electrical-wire)
+- [Make copper power cable](/docs/definitions/process/make-copper-power-cable)
+- [Make copper wire connector](/docs/definitions/process/make-copper-wire-connector)
+- [Fabricate turbine blade](/docs/definitions/process/fabricate-turbine-blade)
+- [Fabricate turbine blade Alt #1](/docs/definitions/process/fabricate-turbine-blade-alt--1)
+- [Make flood light](/docs/definitions/process/make-flood-light)
+- [Make Power Panel Alt #1](/docs/definitions/process/make-power-panel-alt--1)
+- [Make Surge Protector Alt #1](/docs/definitions/process/make-surge-protector-alt--1)
+- [Make Metal Oxide Varistor Alt #1](/docs/definitions/process/make-metal-oxide-varistor-alt--1)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sugar.md b/content/docs/definitions/resource/sugar.md
new file mode 100644
index 0000000..b54cc6c
--- /dev/null
+++ b/content/docs/definitions/resource/sugar.md
@@ -0,0 +1,47 @@
+---
+title: Resource - Sugar
+linkTitle: Sugar
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Sugar processed from Sugarcane.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Derive Sugar, Cane Fiber, Bagasse, Sugarcane Juice from Sugarcane](/docs/definitions/food/derive-sugar--cane-fiber--bagasse--sugarcane-juice-from-sugarcane)
+
+
+## Used by Food Process
+
+- [Make Okara and Soymilk from Soybeans](/docs/definitions/food/make-okara-and-soymilk-from-soybeans)
+- [Make Soymilk and Tofu from Soybeans, Water, and Epsom Salt](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-epsom-salt)
+- [Make Soymilk and Tofu from Soybeans, Water, and Vinegar](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-vinegar)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Vinegar](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt)
+- [Make Veggie Patty from Veg, Tofu and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice)
+- [Make Veggie Patty from Veg, Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice)
+- [Make Veggie Patty from Veg, Okara and Spice](/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice)
+- [Make Rice Vinegar by Fermentation](/docs/definitions/food/make-rice-vinegar-by-fermentation)
+- [Make Mustard](/docs/definitions/food/make-mustard)
+- [Make Ketchup from Tomatoes](/docs/definitions/food/make-ketchup-from-tomatoes)
+- [Make Blueberry Muffin](/docs/definitions/food/make-blueberry-muffin)
+- [Make Okara Blueberry Muffin](/docs/definitions/food/make-okara-blueberry-muffin)
+- [Make Cranberry Juice from Cranberry](/docs/definitions/food/make-cranberry-juice-from-cranberry)
+- [Make Cranberry Sauce from Cranberry](/docs/definitions/food/make-cranberry-sauce-from-cranberry)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sugarcane-juice.md b/content/docs/definitions/resource/sugarcane-juice.md
new file mode 100644
index 0000000..82fca57
--- /dev/null
+++ b/content/docs/definitions/resource/sugarcane-juice.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Sugarcane juice
+linkTitle: Sugarcane juice
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Juice made from Sugarcane
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Liquid|
+
+
+
+
+## Made by Food Process
+
+- [Derive Sugar, Cane Fiber, Bagasse, Sugarcane Juice from Sugarcane](/docs/definitions/food/derive-sugar--cane-fiber--bagasse--sugarcane-juice-from-sugarcane)
+
+
+## Used by Food Process
+
+- [Make Granola Bar Recipe #1](/docs/definitions/food/make-granola-bar-recipe--1)
+- [Make Okara Protein Bar Recipe #1](/docs/definitions/food/make-okara-protein-bar-recipe--1)
+- [Make Veggie Patty from Quinoa Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sugarcane-tissue.md b/content/docs/definitions/resource/sugarcane-tissue.md
new file mode 100644
index 0000000..cd38c02
--- /dev/null
+++ b/content/docs/definitions/resource/sugarcane-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Sugarcane Tissue
+linkTitle: Sugarcane Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sugarcane.md b/content/docs/definitions/resource/sugarcane.md
new file mode 100644
index 0000000..800a399
--- /dev/null
+++ b/content/docs/definitions/resource/sugarcane.md
@@ -0,0 +1,32 @@
+---
+title: Resource - Sugarcane
+linkTitle: Sugarcane
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [gasify sugarcane and biomass into methanol](/docs/definitions/process/gasify-sugarcane-and-biomass-into-methanol)
+
+
+
+## Used by Food Process
+
+- [Derive Sugar, Cane Fiber, Bagasse, Sugarcane Juice from Sugarcane](/docs/definitions/food/derive-sugar--cane-fiber--bagasse--sugarcane-juice-from-sugarcane)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sulfur.md b/content/docs/definitions/resource/sulfur.md
new file mode 100644
index 0000000..294977d
--- /dev/null
+++ b/content/docs/definitions/resource/sulfur.md
@@ -0,0 +1,39 @@
+---
+title: Resource - Sulfur
+linkTitle: Sulfur
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make bleaching chemical for paper making](/docs/definitions/process/make-bleaching-chemical-for-paper-making)
+- [Make bleaching chemical for paper making (large batch)](/docs/definitions/process/make-bleaching-chemical-for-paper-making--large-batch-)
+- [Make crop fertilizers](/docs/definitions/process/make-crop-fertilizers)
+- [Make crop fertilizers Alt #1](/docs/definitions/process/make-crop-fertilizers-alt--1)
+- [Make crop fertilizers Alt #2](/docs/definitions/process/make-crop-fertilizers-alt--2)
+- [Make crop fertilizers Alt #3](/docs/definitions/process/make-crop-fertilizers-alt--3)
+- [Make crop fertilizers Alt #4](/docs/definitions/process/make-crop-fertilizers-alt--4)
+- [Make crop fertilizers Alt #5](/docs/definitions/process/make-crop-fertilizers-alt--5)
+- [Make crop fertilizers Alt #6](/docs/definitions/process/make-crop-fertilizers-alt--6)
+- [Make crop fertilizers Alt #7](/docs/definitions/process/make-crop-fertilizers-alt--7)
+- [Make crop fertilizers Alt #8](/docs/definitions/process/make-crop-fertilizers-alt--8)
+- [Make crop fertilizers Alt #9](/docs/definitions/process/make-crop-fertilizers-alt--9)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sweet-potato-tissue.md b/content/docs/definitions/resource/sweet-potato-tissue.md
new file mode 100644
index 0000000..2e52cec
--- /dev/null
+++ b/content/docs/definitions/resource/sweet-potato-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Sweet Potato Tissue
+linkTitle: Sweet Potato Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sweet-potato.md b/content/docs/definitions/resource/sweet-potato.md
new file mode 100644
index 0000000..42f8435
--- /dev/null
+++ b/content/docs/definitions/resource/sweet-potato.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Sweet Potato
+linkTitle: Sweet Potato
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/swiss-chard-tissue.md b/content/docs/definitions/resource/swiss-chard-tissue.md
new file mode 100644
index 0000000..d3eaa53
--- /dev/null
+++ b/content/docs/definitions/resource/swiss-chard-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Swiss Chard Tissue
+linkTitle: Swiss Chard Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/swiss-chard.md b/content/docs/definitions/resource/swiss-chard.md
new file mode 100644
index 0000000..65b7abf
--- /dev/null
+++ b/content/docs/definitions/resource/swiss-chard.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Swiss Chard
+linkTitle: Swiss Chard
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Package Preserved Food Recipe #4](/docs/definitions/food/package-preserved-food-recipe--4)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/sylvite.md b/content/docs/definitions/resource/sylvite.md
new file mode 100644
index 0000000..3a3dcca
--- /dev/null
+++ b/content/docs/definitions/resource/sylvite.md
@@ -0,0 +1,28 @@
+---
+title: Resource - Sylvite
+linkTitle: Sylvite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Or sylvine, is potassium chloride (KCl) in natural
mineral form. It forms crystals in the isometric system very similar to normal rock salt,
halite (NaCl). The two are, in fact, isomorphous. Sylvite is colorless to white with shades
of yellow and red due to inclusions.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Mineral|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Do potassium chloride electrolysis](/docs/definitions/process/do-potassium-chloride-electrolysis)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/table-salt.md b/content/docs/definitions/resource/table-salt.md
new file mode 100644
index 0000000..98d836c
--- /dev/null
+++ b/content/docs/definitions/resource/table-salt.md
@@ -0,0 +1,48 @@
+---
+title: Resource - Table salt
+linkTitle: Table salt
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Food Grade Salt, is the common name for the substance sodium chloride (NaCI), which occurs in the form of transparent cubic crystals.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Chemical|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Purify rock salt into compounds](/docs/definitions/process/purify-rock-salt-into-compounds)
+
+## Used by Manufacturing Process
+
+- [Make sodium hypochlorite for bleaching and sanitation](/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation)
+- [Make sodium hypochlorite for bleaching and sanitation (large batch)](/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation--large-batch-)
+
+
+
+## Used by Food Process
+
+- [Chop and Roast Peanuts in Oven](/docs/definitions/food/chop-and-roast-peanuts-in-oven)
+- [Make Peanut Butter from Peanuts](/docs/definitions/food/make-peanut-butter-from-peanuts)
+- [Make Veggie Patty from Veg, Tofu and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice)
+- [Make Veggie Patty from Veg, Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice)
+- [Make Veggie Patty from Veg, Okara and Spice](/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice)
+- [Make Ketchup from Tomatoes](/docs/definitions/food/make-ketchup-from-tomatoes)
+- [Make Soy Sauce by Fermentation](/docs/definitions/food/make-soy-sauce-by-fermentation)
+- [Make Miso by Fermentation](/docs/definitions/food/make-miso-by-fermentation)
+- [Make Blueberry Muffin](/docs/definitions/food/make-blueberry-muffin)
+- [Make Okara Blueberry Muffin](/docs/definitions/food/make-okara-blueberry-muffin)
+- [Make Cranberry Sauce from Cranberry](/docs/definitions/food/make-cranberry-sauce-from-cranberry)
+- [Make Pizza Dough](/docs/definitions/food/make-pizza-dough)
+- [Make fish patty from fish meat](/docs/definitions/food/make-fish-patty-from-fish-meat)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/taenite.md b/content/docs/definitions/resource/taenite.md
new file mode 100644
index 0000000..1f58f3c
--- /dev/null
+++ b/content/docs/definitions/resource/taenite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Taenite
+linkTitle: Taenite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Taenite is a major constituent of iron meteorites.
An alloy of iron and nickel, with nickel proportions of 20% up to 65%. The name is derived
from the Greek meaning band or ribbon. In octahedrites it is found in bands interleaving
with kamacite forming Widmanstätten patterns, whereas in ataxites it is the dominant
constituent. In octahedrites a fine intermixture with kamacite can occur, which is
called plessite. Taenite is one of four known Fe-Ni meteorite minerals: The others are
kamacite, tetrataenite, and antitaenite.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Mineral|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/taro-tissue.md b/content/docs/definitions/resource/taro-tissue.md
new file mode 100644
index 0000000..ae32d77
--- /dev/null
+++ b/content/docs/definitions/resource/taro-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Taro Tissue
+linkTitle: Taro Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/taro.md b/content/docs/definitions/resource/taro.md
new file mode 100644
index 0000000..f2609b8
--- /dev/null
+++ b/content/docs/definitions/resource/taro.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Taro
+linkTitle: Taro
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/tempeh.md b/content/docs/definitions/resource/tempeh.md
new file mode 100644
index 0000000..f64dd89
--- /dev/null
+++ b/content/docs/definitions/resource/tempeh.md
@@ -0,0 +1,39 @@
+---
+title: Resource - Tempeh
+linkTitle: Tempeh
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Tempeh made of Soybeans and/or waste okara.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Soy-based|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Tempeh from Soybeans](/docs/definitions/food/make-tempeh-from-soybeans)
+- [Make Black Oncom from Okara](/docs/definitions/food/make-black-oncom-from-okara)
+- [Make Tempeh from half Soybeans and half Okara](/docs/definitions/food/make-tempeh-from-half-soybeans-and-half-okara)
+- [Make Tofu and Tempeh from Soybeans and Vinegar (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-vinegar--large-batch-)
+- [Make Tofu and Tempeh from Soybeans and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-epsom-salt--large-batch-)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Vinegar](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt)
+
+
+## Used by Food Process
+
+- [Make Veggie Patty from Veg, Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/terephthalic-acid.md b/content/docs/definitions/resource/terephthalic-acid.md
new file mode 100644
index 0000000..4d82e9d
--- /dev/null
+++ b/content/docs/definitions/resource/terephthalic-acid.md
@@ -0,0 +1,31 @@
+---
+title: Resource - Terephthalic acid
+linkTitle: Terephthalic acid
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Terephthalic acid is an organic compound with formula C6H4(CO2H)2.
This white solid is a commodity chemical, used principally as a precursor
to the polyester PET, used to make clothing and plastic bottles.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Chemical|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Produce Terephthalic Acid](/docs/definitions/process/produce-terephthalic-acid)
+
+## Used by Manufacturing Process
+
+- [Produce Dimethyl Terephthalate](/docs/definitions/process/produce-dimethyl-terephthalate)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/thermoplastic-elastomer.md b/content/docs/definitions/resource/thermoplastic-elastomer.md
new file mode 100644
index 0000000..947af34
--- /dev/null
+++ b/content/docs/definitions/resource/thermoplastic-elastomer.md
@@ -0,0 +1,34 @@
+---
+title: Resource - Thermoplastic Elastomer
+linkTitle: Thermoplastic Elastomer
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Thermoplastic elastomers (TPE), sometimes referred to as thermoplastic rubbers, are a
class of copolymers or a physical mix of polymers (usually a plastic and a rubber)
that consist of materials with both thermoplastic and elastomeric properties.
The benefit of using thermoplastic elastomers is the ability to stretch to moderate
elongations and return to its near original shape creating a longer life and better
physical range than other materials.
TPE film is added to the liquid cooling garment to allow for water vapor or
perspiration to travel out, away from the skin. The film is a monoflim membrance with
superior permeability, water-vapor transmittion, and tear strength properties. It would
not allow water to penetrate in the opposite direction back to the skin. It is a one-way
water-vapor transport wicking material that maintain a comfortable microclimate between
the fabric's surfaces closet to the skin.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Utility|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make Thermoplastic Elastomer](/docs/definitions/process/make-thermoplastic-elastomer)
+
+## Used by Manufacturing Process
+
+- [Make Liquid Cooling Garment](/docs/definitions/process/make-liquid-cooling-garment)
+- [Make Liquid Cooling Garment Alt #1](/docs/definitions/process/make-liquid-cooling-garment-alt--1)
+- [Make Liquid Cooling Garment Alt #2](/docs/definitions/process/make-liquid-cooling-garment-alt--2)
+- [Make Liquid Cooling Garment Alt #3](/docs/definitions/process/make-liquid-cooling-garment-alt--3)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/tin.md b/content/docs/definitions/resource/tin.md
new file mode 100644
index 0000000..f5c2d6b
--- /dev/null
+++ b/content/docs/definitions/resource/tin.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Tin
+linkTitle: Tin
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/titanium.md b/content/docs/definitions/resource/titanium.md
new file mode 100644
index 0000000..c910175
--- /dev/null
+++ b/content/docs/definitions/resource/titanium.md
@@ -0,0 +1,28 @@
+---
+title: Resource - Titanium
+linkTitle: Titanium
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Manufacture propeller](/docs/definitions/process/manufacture-propeller)
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/tofu.md b/content/docs/definitions/resource/tofu.md
new file mode 100644
index 0000000..11a21fd
--- /dev/null
+++ b/content/docs/definitions/resource/tofu.md
@@ -0,0 +1,43 @@
+---
+title: Resource - Tofu
+linkTitle: Tofu
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Tofu made of Coagulant and Soymilk from Soybean.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Soy-based|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Tofu from Soymilk and Calcium Sulfate](/docs/definitions/food/make-tofu-from-soymilk-and-calcium-sulfate)
+- [Make Tofu from Soymilk and Epsom Salt](/docs/definitions/food/make-tofu-from-soymilk-and-epsom-salt)
+- [Make Tofu from Soymilk and Vinegar](/docs/definitions/food/make-tofu-from-soymilk-and-vinegar)
+- [Make Tofu from Soybeans, Water, and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-from-soybeans--water--and-epsom-salt--large-batch-)
+- [Make Tofu from Soybeans, Water, and Vinegar (large batch)](/docs/definitions/food/make-tofu-from-soybeans--water--and-vinegar--large-batch-)
+- [Make Soymilk and Tofu from Soybeans, Water, and Epsom Salt](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-epsom-salt)
+- [Make Soymilk and Tofu from Soybeans, Water, and Vinegar](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-vinegar)
+- [Make Tofu and Tempeh from Soybeans and Vinegar (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-vinegar--large-batch-)
+- [Make Tofu and Tempeh from Soybeans and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-epsom-salt--large-batch-)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Vinegar](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt)
+
+
+## Used by Food Process
+
+- [Make Veggie Patty from Veg, Tofu and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/toilet-tissue.md b/content/docs/definitions/resource/toilet-tissue.md
new file mode 100644
index 0000000..7bfb851
--- /dev/null
+++ b/content/docs/definitions/resource/toilet-tissue.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Toilet tissue
+linkTitle: Toilet tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Utility|
+|Form:|Solid|
+
+## Made by Manufacturing Process
+
+- [Make paper, napkin and toilet tissue from pulp](/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp)
+- [Make paper, napkin and toilet tissue from pulp (large batch)](/docs/definitions/process/make-paper--napkin-and-toilet-tissue-from-pulp--large-batch-)
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/tomato-tissue.md b/content/docs/definitions/resource/tomato-tissue.md
new file mode 100644
index 0000000..978190a
--- /dev/null
+++ b/content/docs/definitions/resource/tomato-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Tomato Tissue
+linkTitle: Tomato Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/tomato.md b/content/docs/definitions/resource/tomato.md
new file mode 100644
index 0000000..1a13c2b
--- /dev/null
+++ b/content/docs/definitions/resource/tomato.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Tomato
+linkTitle: Tomato
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Ketchup from Tomatoes](/docs/definitions/food/make-ketchup-from-tomatoes)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/toxic-waste.md b/content/docs/definitions/resource/toxic-waste.md
new file mode 100644
index 0000000..da7c6ef
--- /dev/null
+++ b/content/docs/definitions/resource/toxic-waste.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Toxic waste
+linkTitle: Toxic waste
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Toxic waste consists of biomedical waste, radioactive waste, hazardous material that require special handling
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Waste|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/vanadium.md b/content/docs/definitions/resource/vanadium.md
new file mode 100644
index 0000000..a15adcb
--- /dev/null
+++ b/content/docs/definitions/resource/vanadium.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Vanadium
+linkTitle: Vanadium
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/veggie-patty.md b/content/docs/definitions/resource/veggie-patty.md
new file mode 100644
index 0000000..688347f
--- /dev/null
+++ b/content/docs/definitions/resource/veggie-patty.md
@@ -0,0 +1,32 @@
+---
+title: Resource - Veggie patty
+linkTitle: Veggie patty
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Made of textured vegetable protein (like soy), legumes (beans), tofu, nuts, mushrooms, or grains or seeds, like wheat and flax.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Veggie Patty from Veg, Tofu and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice)
+- [Make Veggie Patty from Veg, Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice)
+- [Make Veggie Patty from Veg, Okara and Spice](/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice)
+- [Make Veggie Patty from Quinoa Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/water.md b/content/docs/definitions/resource/water.md
new file mode 100644
index 0000000..7d8fecd
--- /dev/null
+++ b/content/docs/definitions/resource/water.md
@@ -0,0 +1,84 @@
+---
+title: Resource - Water
+linkTitle: Water
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Potable water
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Liquid|
+
+## Made by Manufacturing Process
+
+- [Produce polyester fiber](/docs/definitions/process/produce-polyester-fiber)
+- [Produce Dimethyl Terephthalate](/docs/definitions/process/produce-dimethyl-terephthalate)
+- [Produce Terephthalic Acid](/docs/definitions/process/produce-terephthalic-acid)
+- [Dry potash into potassium crystal](/docs/definitions/process/dry-potash-into-potassium-crystal)
+
+## Used by Manufacturing Process
+
+- [Make pulp from cane fiber and crop waste](/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste)
+- [Make pulp from cane fiber and crop waste (large batch)](/docs/definitions/process/make-pulp-from-cane-fiber-and-crop-waste--large-batch-)
+- [Make sodium hypochlorite for bleaching and sanitation](/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation)
+- [Make sodium hypochlorite for bleaching and sanitation (large batch)](/docs/definitions/process/make-sodium-hypochlorite-for-bleaching-and-sanitation--large-batch-)
+- [Produce ethylene glycol](/docs/definitions/process/produce-ethylene-glycol)
+- [Produce Polyester Resin](/docs/definitions/process/produce-polyester-resin)
+- [Bake regolith brick](/docs/definitions/process/bake-regolith-brick)
+- [Bake sand brick](/docs/definitions/process/bake-sand-brick)
+- [Do potassium chloride electrolysis](/docs/definitions/process/do-potassium-chloride-electrolysis)
+
+
+## Made by Food Process
+
+- [Process White Rice into Rice Flour](/docs/definitions/food/process-white-rice-into-rice-flour)
+
+
+## Used by Food Process
+
+- [Make Soy Sprouts from Soybeans](/docs/definitions/food/make-soy-sprouts-from-soybeans)
+- [Make Quinoa Sprouts from Quinoa](/docs/definitions/food/make-quinoa-sprouts-from-quinoa)
+- [Make Okara and Soymilk from Soybeans](/docs/definitions/food/make-okara-and-soymilk-from-soybeans)
+- [Bake White Bread from Soy Flour](/docs/definitions/food/bake-white-bread-from-soy-flour)
+- [Make Tofu from Soybeans, Water, and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-from-soybeans--water--and-epsom-salt--large-batch-)
+- [Make Tofu from Soybeans, Water, and Vinegar (large batch)](/docs/definitions/food/make-tofu-from-soybeans--water--and-vinegar--large-batch-)
+- [Make Soymilk and Tofu from Soybeans, Water, and Epsom Salt](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-epsom-salt)
+- [Make Soymilk and Tofu from Soybeans, Water, and Vinegar](/docs/definitions/food/make-soymilk-and-tofu-from-soybeans--water--and-vinegar)
+- [Process Soybean into Soy Flour](/docs/definitions/food/process-soybean-into-soy-flour)
+- [Make Tempeh from Soybeans](/docs/definitions/food/make-tempeh-from-soybeans)
+- [Make Tempeh from half Soybeans and half Okara](/docs/definitions/food/make-tempeh-from-half-soybeans-and-half-okara)
+- [Make Tofu and Tempeh from Soybeans and Vinegar (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-vinegar--large-batch-)
+- [Make Tofu and Tempeh from Soybeans and Epsom Salt (large batch)](/docs/definitions/food/make-tofu-and-tempeh-from-soybeans-and-epsom-salt--large-batch-)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Vinegar](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-vinegar)
+- [Make Tofu, Soymilk, and Tempeh from Soybeans and Epsom Salt](/docs/definitions/food/make-tofu--soymilk--and-tempeh-from-soybeans-and-epsom-salt)
+- [Process White Rice into Rice Flour](/docs/definitions/food/process-white-rice-into-rice-flour)
+- [Process Brown Rice into Rice Flour](/docs/definitions/food/process-brown-rice-into-rice-flour)
+- [Process Wheat into Wheat Flour](/docs/definitions/food/process-wheat-into-wheat-flour)
+- [Extract Soy Protein from Soy Flour](/docs/definitions/food/extract-soy-protein-from-soy-flour)
+- [Press Olive Oil from Olive](/docs/definitions/food/press-olive-oil-from-olive)
+- [Make Veggie Patty from Quinoa Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-quinoa-tempeh-and-spice)
+- [Bake Wheat Bun from Wheat Flour](/docs/definitions/food/bake-wheat-bun-from-wheat-flour)
+- [Bake Wheat Bread from Wheat Flour](/docs/definitions/food/bake-wheat-bread-from-wheat-flour)
+- [Make Wheat Noodles from Wheat Flour](/docs/definitions/food/make-wheat-noodles-from-wheat-flour)
+- [Make Rice Noodles from Rice Flour](/docs/definitions/food/make-rice-noodles-from-rice-flour)
+- [Make Rice Vinegar by Fermentation](/docs/definitions/food/make-rice-vinegar-by-fermentation)
+- [Make Mustard](/docs/definitions/food/make-mustard)
+- [Make Soy Sauce by Fermentation](/docs/definitions/food/make-soy-sauce-by-fermentation)
+- [Make Miso by Fermentation](/docs/definitions/food/make-miso-by-fermentation)
+- [Derive Sugar, Cane Fiber, Bagasse, Sugarcane Juice from Sugarcane](/docs/definitions/food/derive-sugar--cane-fiber--bagasse--sugarcane-juice-from-sugarcane)
+- [Make Blueberry Muffin](/docs/definitions/food/make-blueberry-muffin)
+- [Make Okara Blueberry Muffin](/docs/definitions/food/make-okara-blueberry-muffin)
+- [Make Cranberry Juice from Cranberry](/docs/definitions/food/make-cranberry-juice-from-cranberry)
+- [Make Cranberry Sauce from Cranberry](/docs/definitions/food/make-cranberry-sauce-from-cranberry)
+- [Make Pizza Dough](/docs/definitions/food/make-pizza-dough)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/wheat-bread.md b/content/docs/definitions/resource/wheat-bread.md
new file mode 100644
index 0000000..d09efc4
--- /dev/null
+++ b/content/docs/definitions/resource/wheat-bread.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Wheat bread
+linkTitle: Wheat bread
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Loaves of Bread for making sandwiches.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Bake Wheat Bread from Wheat Flour](/docs/definitions/food/bake-wheat-bread-from-wheat-flour)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/wheat-bun.md b/content/docs/definitions/resource/wheat-bun.md
new file mode 100644
index 0000000..b80840f
--- /dev/null
+++ b/content/docs/definitions/resource/wheat-bun.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Wheat bun
+linkTitle: Wheat bun
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+fluffy Buns for holding Veggie Patty.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Bake Wheat Bun from Wheat Flour](/docs/definitions/food/bake-wheat-bun-from-wheat-flour)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/wheat-flour.md b/content/docs/definitions/resource/wheat-flour.md
new file mode 100644
index 0000000..ab262d9
--- /dev/null
+++ b/content/docs/definitions/resource/wheat-flour.md
@@ -0,0 +1,38 @@
+---
+title: Resource - Wheat flour
+linkTitle: Wheat flour
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Flour made from wheat kernel.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Process Wheat into Wheat Flour](/docs/definitions/food/process-wheat-into-wheat-flour)
+
+
+## Used by Food Process
+
+- [Bake Wheat Bun from Wheat Flour](/docs/definitions/food/bake-wheat-bun-from-wheat-flour)
+- [Bake Wheat Bread from Wheat Flour](/docs/definitions/food/bake-wheat-bread-from-wheat-flour)
+- [Make Wheat Noodles from Wheat Flour](/docs/definitions/food/make-wheat-noodles-from-wheat-flour)
+- [Make Blueberry Muffin](/docs/definitions/food/make-blueberry-muffin)
+- [Make Okara Blueberry Muffin](/docs/definitions/food/make-okara-blueberry-muffin)
+- [Make Pizza Dough](/docs/definitions/food/make-pizza-dough)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/wheat-noodle.md b/content/docs/definitions/resource/wheat-noodle.md
new file mode 100644
index 0000000..0cba315
--- /dev/null
+++ b/content/docs/definitions/resource/wheat-noodle.md
@@ -0,0 +1,29 @@
+---
+title: Resource - Wheat noodle
+linkTitle: Wheat noodle
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Noodle made of Wheat Flour.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Make Wheat Noodles from Wheat Flour](/docs/definitions/food/make-wheat-noodles-from-wheat-flour)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/wheat-tissue.md b/content/docs/definitions/resource/wheat-tissue.md
new file mode 100644
index 0000000..22f86a7
--- /dev/null
+++ b/content/docs/definitions/resource/wheat-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Wheat Tissue
+linkTitle: Wheat Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Wheat Kernels are
seeds harvested from wheat crop. The kernel is the whole grain, made up of 3
edible parts – bran, germ, and endosperm – protected by an inedible husk
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/wheat.md b/content/docs/definitions/resource/wheat.md
new file mode 100644
index 0000000..25c2b40
--- /dev/null
+++ b/content/docs/definitions/resource/wheat.md
@@ -0,0 +1,35 @@
+---
+title: Resource - Wheat
+linkTitle: Wheat
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Wheat Kernels are
seeds harvested from wheat crop. The kernel is the whole grain, made up of 3
edible parts – bran, germ, and endosperm – protected by an inedible husk
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Granola Bar Recipe #3](/docs/definitions/food/make-granola-bar-recipe--3)
+- [Make Okara Protein Bar Recipe #3](/docs/definitions/food/make-okara-protein-bar-recipe--3)
+- [Process Wheat into Wheat Flour](/docs/definitions/food/process-wheat-into-wheat-flour)
+- [Make Veggie Patty from Veg, Tofu and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tofu-and-spice)
+- [Make Veggie Patty from Veg, Tempeh and Spice](/docs/definitions/food/make-veggie-patty-from-veg--tempeh-and-spice)
+- [Make Veggie Patty from Veg, Okara and Spice](/docs/definitions/food/make-veggie-patty-from-veg--okara-and-spice)
+- [Make Soy Sauce by Fermentation](/docs/definitions/food/make-soy-sauce-by-fermentation)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/white-bread.md b/content/docs/definitions/resource/white-bread.md
new file mode 100644
index 0000000..066d972
--- /dev/null
+++ b/content/docs/definitions/resource/white-bread.md
@@ -0,0 +1,29 @@
+---
+title: Resource - White bread
+linkTitle: White bread
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+French bread or loaves of bread made from flour.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Bake White Bread from Soy Flour](/docs/definitions/food/bake-white-bread-from-soy-flour)
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/white-bun.md b/content/docs/definitions/resource/white-bun.md
new file mode 100644
index 0000000..982500c
--- /dev/null
+++ b/content/docs/definitions/resource/white-bun.md
@@ -0,0 +1,25 @@
+---
+title: Resource - White bun
+linkTitle: White bun
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+French bread or loaves of bread made from flour.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/white-mustard-tissue.md b/content/docs/definitions/resource/white-mustard-tissue.md
new file mode 100644
index 0000000..092e9fa
--- /dev/null
+++ b/content/docs/definitions/resource/white-mustard-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - White mustard Tissue
+linkTitle: White mustard Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/white-mustard.md b/content/docs/definitions/resource/white-mustard.md
new file mode 100644
index 0000000..2586908
--- /dev/null
+++ b/content/docs/definitions/resource/white-mustard.md
@@ -0,0 +1,25 @@
+---
+title: Resource - White mustard
+linkTitle: White mustard
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/white-onion-tissue.md b/content/docs/definitions/resource/white-onion-tissue.md
new file mode 100644
index 0000000..8726fc6
--- /dev/null
+++ b/content/docs/definitions/resource/white-onion-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - White onion Tissue
+linkTitle: White onion Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/white-onion.md b/content/docs/definitions/resource/white-onion.md
new file mode 100644
index 0000000..337cfc5
--- /dev/null
+++ b/content/docs/definitions/resource/white-onion.md
@@ -0,0 +1,29 @@
+---
+title: Resource - White onion
+linkTitle: White onion
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Make Ketchup from Tomatoes](/docs/definitions/food/make-ketchup-from-tomatoes)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/white-rice.md b/content/docs/definitions/resource/white-rice.md
new file mode 100644
index 0000000..f2935fa
--- /dev/null
+++ b/content/docs/definitions/resource/white-rice.md
@@ -0,0 +1,35 @@
+---
+title: Resource - White rice
+linkTitle: White rice
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Derived|
+|Form:|Solid|
+
+
+
+
+## Made by Food Process
+
+- [Process Rice into White Rice and rice bran oil](/docs/definitions/food/process-rice-into-white-rice-and-rice-bran-oil)
+- [Process Brown Rice into White Rice](/docs/definitions/food/process-brown-rice-into-white-rice)
+
+
+## Used by Food Process
+
+- [Process White Rice into Rice Flour](/docs/definitions/food/process-white-rice-into-rice-flour)
+- [Make Rice Vinegar by Fermentation](/docs/definitions/food/make-rice-vinegar-by-fermentation)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/yam-tissue.md b/content/docs/definitions/resource/yam-tissue.md
new file mode 100644
index 0000000..4d0658b
--- /dev/null
+++ b/content/docs/definitions/resource/yam-tissue.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Yam Tissue
+linkTitle: Yam Tissue
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Tissue|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/yam.md b/content/docs/definitions/resource/yam.md
new file mode 100644
index 0000000..7ce64a2
--- /dev/null
+++ b/content/docs/definitions/resource/yam.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Yam
+linkTitle: Yam
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+No Description
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Crop|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/yeast.md b/content/docs/definitions/resource/yeast.md
new file mode 100644
index 0000000..3acee9d
--- /dev/null
+++ b/content/docs/definitions/resource/yeast.md
@@ -0,0 +1,33 @@
+---
+title: Resource - Yeast
+linkTitle: Yeast
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+
Yeasts are single-celled fungi. It is an essential Baking Ingredient for making bread.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|true|
+|Type:|Organism|
+|Form:|Solid|
+
+
+
+
+
+## Used by Food Process
+
+- [Bake White Bread from Soy Flour](/docs/definitions/food/bake-white-bread-from-soy-flour)
+- [Bake Wheat Bun from Wheat Flour](/docs/definitions/food/bake-wheat-bun-from-wheat-flour)
+- [Bake Wheat Bread from Wheat Flour](/docs/definitions/food/bake-wheat-bread-from-wheat-flour)
+- [Make Rice Vinegar by Fermentation](/docs/definitions/food/make-rice-vinegar-by-fermentation)
+- [Make Pizza Dough](/docs/definitions/food/make-pizza-dough)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/zeolite.md b/content/docs/definitions/resource/zeolite.md
new file mode 100644
index 0000000..3625eea
--- /dev/null
+++ b/content/docs/definitions/resource/zeolite.md
@@ -0,0 +1,25 @@
+---
+title: Resource - Zeolite
+linkTitle: Zeolite
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+ Zeolites are naturally occurring
or synthetic microporous powder-like minerals with unique properties, making them valuable
in various industrial applications from refining to chemical production,
and from off-gas purification to odor removal. It reduces harmful emissions.
A crystalline material made of silicon, oxygen, and aluminum, Zeolite has have
the general formula Mn+1/n(AlO2)・(SiO2)x・yH2O and
its unique pore structures can selectively adsorb desired or
undesired molecules and make it a perfect basis for catalytically active metals.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Compound|
+|Form:|Solid|
+
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/resource/zinc.md b/content/docs/definitions/resource/zinc.md
new file mode 100644
index 0000000..194916a
--- /dev/null
+++ b/content/docs/definitions/resource/zinc.md
@@ -0,0 +1,41 @@
+---
+title: Resource - Zinc
+linkTitle: Zinc
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+An element.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Edible:|false|
+|Type:|Element|
+|Form:|Solid|
+
+
+## Used by Manufacturing Process
+
+- [Make crop fertilizers](/docs/definitions/process/make-crop-fertilizers)
+- [Make crop fertilizers Alt #1](/docs/definitions/process/make-crop-fertilizers-alt--1)
+- [Make crop fertilizers Alt #2](/docs/definitions/process/make-crop-fertilizers-alt--2)
+- [Make crop fertilizers Alt #3](/docs/definitions/process/make-crop-fertilizers-alt--3)
+- [Make crop fertilizers Alt #4](/docs/definitions/process/make-crop-fertilizers-alt--4)
+- [Make crop fertilizers Alt #7](/docs/definitions/process/make-crop-fertilizers-alt--7)
+- [Make crop fertilizers Alt #8](/docs/definitions/process/make-crop-fertilizers-alt--8)
+- [Make crop fertilizers Alt #9](/docs/definitions/process/make-crop-fertilizers-alt--9)
+- [Manufacture resistors](/docs/definitions/process/manufacture-resistors)
+- [Manufacture capacitors](/docs/definitions/process/manufacture-capacitors)
+
+
+
+## Used by Food Process
+
+- [Make Immune Booster](/docs/definitions/food/make-immune-booster)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/scenario/_index.md b/content/docs/definitions/scenario/_index.md
new file mode 100644
index 0000000..524d84b
--- /dev/null
+++ b/content/docs/definitions/scenario/_index.md
@@ -0,0 +1,17 @@
+---
+title: Scenario
+description: Predefined Scenarios used to start the simulation
+---
+
+
+
+
+{{< alert color="success" >}}These can be changed via the XML file _scenario_name.xml_. See [XML Files](/docs/guide/xml-files/){{< /alert >}}
+{{< alert color="success" >}}These can be changed via the UI ConfigEditor.{{< /alert >}}
+
+
+- [Default](../scenario/default)
+- [Single Settlement](../scenario/single-settlement)
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/scenario/default.md b/content/docs/definitions/scenario/default.md
new file mode 100644
index 0000000..4ceb60f
--- /dev/null
+++ b/content/docs/definitions/scenario/default.md
@@ -0,0 +1,42 @@
+---
+title: Scenario - Default
+linkTitle: Default
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Default Scenario
+
+## Settlements
+
+|Name|Sponsor|Template|Persons|Robots|Location|Crew|
+|---|---|---|---|---|---|---|
+|Dreamville|BO|[Phase 2-BO](/docs/definitions/settlement/phase-2-bo)|8|4|10.6300 N 29.7500 W|[](/docs/definitions/crew/)|
+|Tian Cheng|ISRA|[Phase 3-ISRA](/docs/definitions/settlement/phase-3-isra)|16|8|9.6800 N 24.5700 E|[](/docs/definitions/crew/)|
+|Catarina|AEB|[Phase 1-BR](/docs/definitions/settlement/phase-1-br)|4|4|25.0892 N 58.8805 E|[](/docs/definitions/crew/)|
+|Arcadia|ESA|[Phase 2-EU](/docs/definitions/settlement/phase-2-eu)|8|6|24.3612 N 29.7837 W|[](/docs/definitions/crew/)|
+|Hong Tian|CNSA|[Phase 2-CN](/docs/definitions/settlement/phase-2-cn)|8|6|15.9873 N 47.8419 W|[](/docs/definitions/crew/)|
+|New Pompeii|ISRO|[Phase 3-IN](/docs/definitions/settlement/phase-3-in)|16|8|26.3650 N 70.9710 W|[](/docs/definitions/crew/)|
+|Kyocera|JAXA|[Phase 2-JP](/docs/definitions/settlement/phase-2-jp)|12|6|6.0000 N 164.0000 E|[](/docs/definitions/crew/)|
+|New Seoul|KASA|[Phase 2-KR](/docs/definitions/settlement/phase-2-kr)|9|5|40.4244 N 105.8939 W|[](/docs/definitions/crew/)|
+|Starcity|SPACEX|[Phase 3-SX](/docs/definitions/settlement/phase-3-sx)|16|8|39.8000 N 157.9000 W|[](/docs/definitions/crew/)|
+|Zvezda|RKA|[Phase 3-RU](/docs/definitions/settlement/phase-3-ru)|16|8|17.3983 N 81.9044 E|[](/docs/definitions/crew/)|
+|Korolev|RKA|[Alpha Base](/docs/definitions/settlement/alpha-base)|24|12|72.7700 N 164.5800 E|[](/docs/definitions/crew/)|
+|Terminus|NASA|[Alpha Base](/docs/definitions/settlement/alpha-base)|24|12|0.0000 N 0.0000 W|[Alpha](/docs/definitions/crew/alpha)|
+|Heritage|MS|[Hub Base](/docs/definitions/settlement/hub-base)|36|18|15.1255 N 114.1535 E|[Founders](/docs/definitions/crew/founders)|
+
+
+## New Settlements
+
+|Name|Sponsor|Template|Persons|Robots|Arrival (sols)|Location|
+|---|---|---|---|---|---|------|
+|Foundation|MS|[Phase 2-MS](/docs/definitions/settlement/phase-2-ms)|8|6|3|22.6532 N 37.0579 E|
+|New Madinah|SSA|[Phase 1-SA](/docs/definitions/settlement/phase-1-sa)|4|4|2|45.4157 N 141.3300 W|
+|New Dubai|UAESA|[Phase 0-AE](/docs/definitions/settlement/phase-0-ae)|2|4|1|13.5488 N 136.4239 E|
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/scenario/single-settlement.md b/content/docs/definitions/scenario/single-settlement.md
new file mode 100644
index 0000000..7eab43a
--- /dev/null
+++ b/content/docs/definitions/scenario/single-settlement.md
@@ -0,0 +1,22 @@
+---
+title: Scenario - Single Settlement
+linkTitle: Single Settlement
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Single Settlement
+
+## Settlements
+
+|Name|Sponsor|Template|Persons|Robots|Location|Crew|
+|---|---|---|---|---|---|---|
+|Schiaparelli Point|MS|[Alpha Base](/docs/definitions/settlement/alpha-base)|24|12|10.0000 N 10.0000 W|[Founders](/docs/definitions/crew/founders)|
+
+
+
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/_index.md b/content/docs/definitions/settlement/_index.md
new file mode 100644
index 0000000..620e1c2
--- /dev/null
+++ b/content/docs/definitions/settlement/_index.md
@@ -0,0 +1,91 @@
+---
+title: Settlement Template
+description: Settlement templates that can be used in a Scenario
+---
+
+
+
+
+{{< alert color="success" >}}These can be changed via the XML file _settlement_name.xml_. See [XML Files](/docs/guide/xml-files/){{< /alert >}}
+
+
+Grouped by Sponsor.
+
+### AEB {#A-aeb}
+
+- [Phase 1-BR](../settlement/phase-1-br)
+
+### BO {#A-bo}
+
+- [Phase 0-BO](../settlement/phase-0-bo)
+- [Phase 2-BO](../settlement/phase-2-bo)
+
+### CNSA {#A-cnsa}
+
+- [Phase 1-CN](../settlement/phase-1-cn)
+- [Phase 2-CN](../settlement/phase-2-cn)
+- [Phase 3-CN](../settlement/phase-3-cn)
+
+### ESA {#A-esa}
+
+- [Phase 2-EU](../settlement/phase-2-eu)
+
+### ISRA {#A-isra}
+
+- [Phase 0-ISRA](../settlement/phase-0-isra)
+- [Phase 3-ISRA](../settlement/phase-3-isra)
+
+### ISRO {#A-isro}
+
+- [Phase 1-IN](../settlement/phase-1-in)
+- [Phase 2-IN](../settlement/phase-2-in)
+- [Phase 3-IN](../settlement/phase-3-in)
+
+### JAXA {#A-jaxa}
+
+- [Phase 2-JP](../settlement/phase-2-jp)
+
+### KASA {#A-kasa}
+
+- [Phase 2-KR](../settlement/phase-2-kr)
+
+### MS {#A-ms}
+
+- [Alpha Base](../settlement/alpha-base)
+- [Hub Base](../settlement/hub-base)
+- [Mining Outpost](../settlement/mining-outpost)
+- [Phase 0-MS](../settlement/phase-0-ms)
+- [Phase 1-MS](../settlement/phase-1-ms)
+- [Phase 2-MS](../settlement/phase-2-ms)
+- [Phase 3-MS](../settlement/phase-3-ms)
+- [Trading Outpost](../settlement/trading-outpost)
+
+### NASA {#A-nasa}
+
+- [Phase 1-US](../settlement/phase-1-us)
+- [Phase 2-US](../settlement/phase-2-us)
+- [Phase 3-US](../settlement/phase-3-us)
+
+### RKA {#A-rka}
+
+- [Phase 1-RU](../settlement/phase-1-ru)
+- [Phase 2-RU](../settlement/phase-2-ru)
+- [Phase 2-SX](../settlement/phase-2-sx)
+- [Phase 3-RU](../settlement/phase-3-ru)
+
+### SPACEX {#A-spacex}
+
+- [Phase 1-SX](../settlement/phase-1-sx)
+- [Phase 3-SX](../settlement/phase-3-sx)
+
+### SSA {#A-ssa}
+
+- [Phase 1-SA](../settlement/phase-1-sa)
+
+### UAESA {#A-uaesa}
+
+- [Phase 0-AE](../settlement/phase-0-ae)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/alpha-base.md b/content/docs/definitions/settlement/alpha-base.md
new file mode 100644
index 0000000..d81593f
--- /dev/null
+++ b/content/docs/definitions/settlement/alpha-base.md
@@ -0,0 +1,286 @@
+---
+title: Settlement Template - Alpha Base
+linkTitle: Alpha Base
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Large Base
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|24|
+|Default Robot #:|14|
+|Sponsor:|MS|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Algae Pond 1|[Algae Pond](/docs/definitions/building/algae-pond)|
+|Astronomy Observatory 1|[Astronomy Observatory](/docs/definitions/building/astronomy-observatory)|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 3|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 4|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Cement Storage 2|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Chemical Storage 2|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|Concrete Storage 2|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-A 2|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-A 3|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-B 2|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-B 3|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-C 2|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-C 3|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|ERV-I 2|[ERV-I](/docs/definitions/building/erv-i)|
+|ERV-I 3|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|EVA Airlock 2|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|EVA Airlock 3|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fish Farm 1|[Fish Farm](/docs/definitions/building/fish-farm)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 3|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 4|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 3|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 4|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 10|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 11|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 12|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 13|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 8|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 9|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 3|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 4|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Infirmary 1|[Infirmary](/docs/definitions/building/infirmary)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Lander Hab 2|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Lander Hab 3|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Greenhouse 1|[Large Greenhouse](/docs/definitions/building/large-greenhouse)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 4|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lime Storage 2|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|MD1 Nuclear Reactor 2|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|MD4 Nuclear Reactor 1|[MD4 Nuclear Reactor](/docs/definitions/building/md4-nuclear-reactor)|
+|MD4 Nuclear Reactor 2|[MD4 Nuclear Reactor](/docs/definitions/building/md4-nuclear-reactor)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 4|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Metal Storage 2|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Ore Storage 2|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Regolith Storage 2|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Sand Storage 2|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Server Farm 1|[Server Farm](/docs/definitions/building/server-farm)|
+|Solar Thermal Collector 1|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 2|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 3|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 4|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 5|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 6|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 7|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 8|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 9|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Workshop 1|[Workshop](/docs/definitions/building/workshop)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|15|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|40|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|536|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|15|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|6|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|16|
+|[Blender](/docs/definitions/part/blender)|Part|15|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|6|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|60|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|6|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|30|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|15|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|20|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|12|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|6|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|64|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|40|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|48|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|6|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|12|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|6|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|96|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|48|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|48|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|48|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|48|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|48|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|58|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|24|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|1104|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|20|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|24|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|80|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|78|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|40|
+|[Food](/docs/definitions/resource/food)|Resource|4320.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|80|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|10|
+|[Garment](/docs/definitions/part/garment)|Part|48|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|80|
+|[Gasket](/docs/definitions/part/gasket)|Part|372|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|100|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|20|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|100|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|30|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|24|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|38|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|200|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|100|
+|[Logic board](/docs/definitions/part/logic-board)|Part|200|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|74|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|800|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|12|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|800|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|12|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|400|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|8|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|6|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|12|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|20|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|8|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|80|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|80|
+|[Oven](/docs/definitions/part/oven)|Part|15|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|5760.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|8|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|12|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|400|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|5|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|620|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|86|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|16|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|220|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|6|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|50|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|36|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|400|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|48|
+|[Propeller](/docs/definitions/part/propeller)|Part|12|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|30|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|15|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|8|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|38|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|8|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|16|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|16|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|20|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|6|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|8|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|64|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|38|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|40|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|16|
+|[Stove](/docs/definitions/part/stove)|Part|15|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|26|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|58|
+|[Transformer](/docs/definitions/part/transformer)|Part|25|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|4|
+|[Valve](/docs/definitions/part/valve)|Part|202|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|14|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|15|
+|[Water](/docs/definitions/resource/water)|Resource|7200.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|4|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|12|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|80|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|4|
+|[Winch](/docs/definitions/part/winch)|Part|8|
+|[Window](/docs/definitions/part/window)|Part|12|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|716|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|48|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|24|
+|barrel|120|
+|wheelbarrow|24|
+|EVA Suit|36|
+|specimen box|120|
+|bag|120|
+|large bag|120|
+|gas canister|120|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Long Range Explorer](/docs/definitions/vehicle/long-range-explorer)|1|
+|[Cargo Rover](/docs/definitions/vehicle/cargo-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|2|
+|[Cargo Drone](/docs/definitions/vehicle/cargo-drone)|2|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|3|
+|[Transport Rover](/docs/definitions/vehicle/transport-rover)|2|
+
+
+## Robots
+
+| Name | Type | Model |
+|--------:|:------|:-----|
+|Huey|GARDENBOT|Advanced|
+|Dewey|GARDENBOT|Advanced|
+|Louie|GARDENBOT||
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Bi-Monthly Delivery|1|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|62|
+|Scale up Delivery|300|[Resupply for Phase 3](/docs/definitions/manifest/resupply-for-phase-3)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/hub-base.md b/content/docs/definitions/settlement/hub-base.md
new file mode 100644
index 0000000..6e7a5eb
--- /dev/null
+++ b/content/docs/definitions/settlement/hub-base.md
@@ -0,0 +1,309 @@
+---
+title: Settlement Template - Hub Base
+linkTitle: Hub Base
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Base With Central Hub
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|48|
+|Default Robot #:|20|
+|Sponsor:|MS|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Algae Pond 1|[Algae Pond](/docs/definitions/building/algae-pond)|
+|Astronomy Observatory 1|[Astronomy Observatory](/docs/definitions/building/astronomy-observatory)|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 3|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 4|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 5|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Cement Storage 2|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Central Hub A 1|[Central Hub A](/docs/definitions/building/central-hub-a)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Chemical Storage 2|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Command and Control 1|[Command and Control](/docs/definitions/building/command-and-control)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|Concrete Storage 2|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-A 2|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-A 3|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-A 4|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-B 2|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-B 3|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-B 4|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-C 2|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-C 3|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-C 4|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|ERV-I 2|[ERV-I](/docs/definitions/building/erv-i)|
+|ERV-I 3|[ERV-I](/docs/definitions/building/erv-i)|
+|ERV-I 4|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|EVA Airlock 2|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|EVA Airlock 3|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fish Farm 1|[Fish Farm](/docs/definitions/building/fish-farm)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 3|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 4|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 3|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 4|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 10|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 11|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 12|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 13|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 14|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 15|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 16|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 17|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 18|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 19|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 8|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 9|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 3|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 4|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Large Greenhouse 1|[Large Greenhouse](/docs/definitions/building/large-greenhouse)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 4|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 5|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lime Storage 2|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|MD1 Nuclear Reactor 2|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|MD4 Nuclear Reactor 1|[MD4 Nuclear Reactor](/docs/definitions/building/md4-nuclear-reactor)|
+|MD4 Nuclear Reactor 2|[MD4 Nuclear Reactor](/docs/definitions/building/md4-nuclear-reactor)|
+|Machinery Hab 1|[Machinery Hab](/docs/definitions/building/machinery-hab)|
+|Medical Hab 1|[Medical Hab](/docs/definitions/building/medical-hab)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 4|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 5|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Metal Storage 2|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Ore Storage 2|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Regolith Storage 2|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Research Hab 1|[Research Hab](/docs/definitions/building/research-hab)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Residential Quarters 2|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Residential Quarters 3|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Residential Quarters 4|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Sand Storage 2|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Server Farm 1|[Server Farm](/docs/definitions/building/server-farm)|
+|Solar Thermal Collector 1|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 2|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 3|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 4|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 5|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 6|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 7|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 8|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 9|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Storage Hab 1|[Storage Hab](/docs/definitions/building/storage-hab)|
+|Storage Hab 2|[Storage Hab](/docs/definitions/building/storage-hab)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 4|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 5|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 6|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Workshop 1|[Workshop](/docs/definitions/building/workshop)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|25|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|60|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|842|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|25|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|8|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|20|
+|[Blender](/docs/definitions/part/blender)|Part|25|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|8|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|90|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|8|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|40|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|25|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|30|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|16|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|8|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|82|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|62|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|80|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|8|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|16|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|8|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|160|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|80|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|80|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|80|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|80|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|80|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|96|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|40|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|1625|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|30|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|30|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|100|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|124|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|60|
+|[Food](/docs/definitions/resource/food)|Resource|4320.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|100|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|12|
+|[Garment](/docs/definitions/part/garment)|Part|64|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|100|
+|[Gasket](/docs/definitions/part/gasket)|Part|540|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|146|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|25|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|146|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|40|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|40|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|56|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|300|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|140|
+|[Logic board](/docs/definitions/part/logic-board)|Part|250|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|98|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|1200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|18|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|1200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|18|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|520|
+|[Microwave](/docs/definitions/part/microwave)|Part|20|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|13|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|9|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|20|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|30|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|10|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|120|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|120|
+|[Oven](/docs/definitions/part/oven)|Part|25|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|5760.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|10|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|18|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|600|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|8|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|906|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|125|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|22|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|324|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|8|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|70|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|60|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|520|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|80|
+|[Propeller](/docs/definitions/part/propeller)|Part|16|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|40|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|25|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|10|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|50|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|10|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|22|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|22|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|30|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|8|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|14|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|82|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|56|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|55|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|26|
+|[Stove](/docs/definitions/part/stove)|Part|25|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|44|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|74|
+|[Transformer](/docs/definitions/part/transformer)|Part|35|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|6|
+|[Valve](/docs/definitions/part/valve)|Part|294|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|18|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|25|
+|[Water](/docs/definitions/resource/water)|Resource|7200.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|6|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|18|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|100|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|6|
+|[Winch](/docs/definitions/part/winch)|Part|10|
+|[Window](/docs/definitions/part/window)|Part|16|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|1047|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|80|
+|[basket](/docs/definitions/null/basket)|Bin|40|
+|[crate](/docs/definitions/null/crate)|Bin|40|
+|[pot](/docs/definitions/null/pot)|Bin|40|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|48|
+|barrel|240|
+|wheelbarrow|48|
+|EVA Suit|60|
+|specimen box|240|
+|bag|240|
+|large bag|240|
+|gas canister|240|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Long Range Explorer](/docs/definitions/vehicle/long-range-explorer)|2|
+|[Cargo Rover](/docs/definitions/vehicle/cargo-rover)|3|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|3|
+|[Cargo Drone](/docs/definitions/vehicle/cargo-drone)|2|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|4|
+|[Transport Rover](/docs/definitions/vehicle/transport-rover)|3|
+
+
+## Robots
+
+| Name | Type | Model |
+|--------:|:------|:-----|
+|Huey|GARDENBOT|Advanced|
+|Dewey|GARDENBOT|Advanced|
+|Louie|GARDENBOT||
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|30|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|62|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/mining-outpost.md b/content/docs/definitions/settlement/mining-outpost.md
new file mode 100644
index 0000000..45079df
--- /dev/null
+++ b/content/docs/definitions/settlement/mining-outpost.md
@@ -0,0 +1,240 @@
+---
+title: Settlement Template - Mining Outpost
+linkTitle: Mining Outpost
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Base for Mining Outpost for Mars Society
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Manufacturing Depot|
+|Shift Pattern:||
+|Default People #:|4|
+|Default Robot #:|4|
+|Sponsor:|MS|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Bunkhouse 1|[Bunkhouse](/docs/definitions/building/bunkhouse)|
+|Bunkhouse 2|[Bunkhouse](/docs/definitions/building/bunkhouse)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Loading Dock Garage 1|[Loading Dock Garage](/docs/definitions/building/loading-dock-garage)|
+|Manufacturing Shed 1|[Manufacturing Shed](/docs/definitions/building/manufacturing-shed)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 4|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 5|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 6|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Methane Power Generator 1|[Methane Power Generator](/docs/definitions/building/methane-power-generator)|
+|Methane Power Generator 2|[Methane Power Generator](/docs/definitions/building/methane-power-generator)|
+|Mining Lab 1|[Mining Lab](/docs/definitions/building/mining-lab)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Outpost Hub 1|[Outpost Hub](/docs/definitions/building/outpost-hub)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Thermal Collector 1|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 2|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 3|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 4|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 5|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 6|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 7|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 8|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 9|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Storage Shed 1|[Storage Shed](/docs/definitions/building/storage-shed)|
+|Storage Shed 2|[Storage Shed](/docs/definitions/building/storage-shed)|
+|Storage Shed 3|[Storage Shed](/docs/definitions/building/storage-shed)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Tunnel 1|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 2|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 3|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 4|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 5|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 6|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 7|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 8|[Tunnel](/docs/definitions/building/tunnel)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 4|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 5|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 6|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 7|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 8|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 9|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|2880.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Hydrogen](/docs/definitions/resource/hydrogen)|Resource|7200.0 kg|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane](/docs/definitions/resource/methane)|Resource|7200.0 kg|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol](/docs/definitions/resource/methanol)|Resource|7200.0 kg|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|7200.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|7200.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|2|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|2|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Quarterly Delivery|0|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|150|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-0-ae.md b/content/docs/definitions/settlement/phase-0-ae.md
new file mode 100644
index 0000000..979b3ee
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-0-ae.md
@@ -0,0 +1,202 @@
+---
+title: Settlement Template - Phase 0-AE
+linkTitle: Phase 0-AE
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 0 base for United Arab Emirates
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|2|
+|Default Robot #:|6|
+|Sponsor:|UAESA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Research Hab 1|[Research Hab](/docs/definitions/building/research-hab)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|720.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1440.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|3600.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+|[basket](/docs/definitions/null/basket)|Bin|20|
+|[crate](/docs/definitions/null/crate)|Bin|20|
+|[pot](/docs/definitions/null/pot)|Bin|20|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|2|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|80|
+|Phase 1 Delivery|668|[Resupply for Phase 1](/docs/definitions/manifest/resupply-for-phase-1)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-0-bo.md b/content/docs/definitions/settlement/phase-0-bo.md
new file mode 100644
index 0000000..e66eeab
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-0-bo.md
@@ -0,0 +1,200 @@
+---
+title: Settlement Template - Phase 0-BO
+linkTitle: Phase 0-BO
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 0 base for Blue Origin
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|2|
+|Default Robot #:|6|
+|Sponsor:|BO|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|720.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1440.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|3600.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+|[basket](/docs/definitions/null/basket)|Bin|20|
+|[crate](/docs/definitions/null/crate)|Bin|20|
+|[pot](/docs/definitions/null/pot)|Bin|20|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|2|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|80|
+|Phase 1 Delivery|668|[Resupply for Phase 1](/docs/definitions/manifest/resupply-for-phase-1)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-0-isra.md b/content/docs/definitions/settlement/phase-0-isra.md
new file mode 100644
index 0000000..4fa754f
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-0-isra.md
@@ -0,0 +1,198 @@
+---
+title: Settlement Template - Phase 0-ISRA
+linkTitle: Phase 0-ISRA
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 0 base for ISRA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|2|
+|Default Robot #:|2|
+|Sponsor:|ISRA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|720.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1440.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|3600.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+|[basket](/docs/definitions/null/basket)|Bin|20|
+|[crate](/docs/definitions/null/crate)|Bin|20|
+|[pot](/docs/definitions/null/pot)|Bin|20|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|2|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|80|
+|Phase 1 Delivery|668|[Resupply for Phase 1](/docs/definitions/manifest/resupply-for-phase-1)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-0-ms.md b/content/docs/definitions/settlement/phase-0-ms.md
new file mode 100644
index 0000000..050f521
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-0-ms.md
@@ -0,0 +1,200 @@
+---
+title: Settlement Template - Phase 0-MS
+linkTitle: Phase 0-MS
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 0 base for Mars Society
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|1|
+|Default Robot #:|7|
+|Sponsor:|MS|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|720.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1440.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|3600.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+|[basket](/docs/definitions/null/basket)|Bin|20|
+|[crate](/docs/definitions/null/crate)|Bin|20|
+|[pot](/docs/definitions/null/pot)|Bin|20|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|2|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|80|
+|Phase 1 Delivery|668|[Resupply for Phase 1](/docs/definitions/manifest/resupply-for-phase-1)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-1-br.md b/content/docs/definitions/settlement/phase-1-br.md
new file mode 100644
index 0000000..7ea815d
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-1-br.md
@@ -0,0 +1,204 @@
+---
+title: Settlement Template - Phase 1-BR
+linkTitle: Phase 1-BR
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 1 base for Brazil
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|4|
+|Default Robot #:|4|
+|Sponsor:|AEB|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|720.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1440.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|3600.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|7|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|80|
+|Phase 1 Delivery|668|[Resupply for Phase 1](/docs/definitions/manifest/resupply-for-phase-1)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-1-cn.md b/content/docs/definitions/settlement/phase-1-cn.md
new file mode 100644
index 0000000..74b5f3a
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-1-cn.md
@@ -0,0 +1,207 @@
+---
+title: Settlement Template - Phase 1-CN
+linkTitle: Phase 1-CN
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 1 base for CNSA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|4|
+|Default Robot #:|4|
+|Sponsor:|CNSA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|TOPAZ-2A Reactor 1|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-2A Reactor 2|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Workshop 1|[Workshop](/docs/definitions/building/workshop)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|720.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1440.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|3600.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|5|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|80|
+|Phase 1 Delivery|668|[Resupply for Phase 1](/docs/definitions/manifest/resupply-for-phase-1)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-1-in.md b/content/docs/definitions/settlement/phase-1-in.md
new file mode 100644
index 0000000..0f9ccbd
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-1-in.md
@@ -0,0 +1,207 @@
+---
+title: Settlement Template - Phase 1-IN
+linkTitle: Phase 1-IN
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 1 base for ISRO
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|4|
+|Default Robot #:|4|
+|Sponsor:|ISRO|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|720.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1440.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|3600.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|1|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|80|
+|Phase 1 Delivery|668|[Resupply for Phase 1](/docs/definitions/manifest/resupply-for-phase-1)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-1-ms.md b/content/docs/definitions/settlement/phase-1-ms.md
new file mode 100644
index 0000000..4ead4fe
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-1-ms.md
@@ -0,0 +1,201 @@
+---
+title: Settlement Template - Phase 1-MS
+linkTitle: Phase 1-MS
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 1 base for Mars Society
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|4|
+|Default Robot #:|4|
+|Sponsor:|MS|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|720.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1440.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|3600.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+|[basket](/docs/definitions/null/basket)|Bin|20|
+|[crate](/docs/definitions/null/crate)|Bin|20|
+|[pot](/docs/definitions/null/pot)|Bin|20|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|2|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|80|
+|Phase 1 Delivery|668|[Resupply for Phase 1](/docs/definitions/manifest/resupply-for-phase-1)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-1-ru.md b/content/docs/definitions/settlement/phase-1-ru.md
new file mode 100644
index 0000000..5f4601c
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-1-ru.md
@@ -0,0 +1,207 @@
+---
+title: Settlement Template - Phase 1-RU
+linkTitle: Phase 1-RU
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 1 base for RKA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|4|
+|Default Robot #:|4|
+|Sponsor:|RKA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Infirmary 1|[Infirmary](/docs/definitions/building/infirmary)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|TOPAZ-2A Reactor 1|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-2A Reactor 2|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|720.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1440.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|3600.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|3|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|80|
+|Phase 1 Delivery|668|[Resupply for Phase 1](/docs/definitions/manifest/resupply-for-phase-1)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-1-sa.md b/content/docs/definitions/settlement/phase-1-sa.md
new file mode 100644
index 0000000..2c2f9ea
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-1-sa.md
@@ -0,0 +1,202 @@
+---
+title: Settlement Template - Phase 1-SA
+linkTitle: Phase 1-SA
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 1 base for Saudi Arabia
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|4|
+|Default Robot #:|4|
+|Sponsor:|SSA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|720.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1440.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|3600.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|1|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|80|
+|Phase 1 Delivery|0|[Resupply for Phase 1](/docs/definitions/manifest/resupply-for-phase-1)|668|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-1-sx.md b/content/docs/definitions/settlement/phase-1-sx.md
new file mode 100644
index 0000000..7b94acc
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-1-sx.md
@@ -0,0 +1,218 @@
+---
+title: Settlement Template - Phase 1-SX
+linkTitle: Phase 1-SX
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 1 base for Space X
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|4|
+|Default Robot #:|4|
+|Sponsor:|SPACEX|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 4|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 4|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 5|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 6|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 7|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 8|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 9|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Thermal Collector 1|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 2|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 3|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Workshop 1|[Workshop](/docs/definitions/building/workshop)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|720.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1440.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|3600.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+|[basket](/docs/definitions/null/basket)|Bin|20|
+|[crate](/docs/definitions/null/crate)|Bin|20|
+|[pot](/docs/definitions/null/pot)|Bin|20|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|40|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|80|
+|Phase 1 Delivery|668|[Resupply for Phase 1](/docs/definitions/manifest/resupply-for-phase-1)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-1-us.md b/content/docs/definitions/settlement/phase-1-us.md
new file mode 100644
index 0000000..1eadce8
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-1-us.md
@@ -0,0 +1,207 @@
+---
+title: Settlement Template - Phase 1-US
+linkTitle: Phase 1-US
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 1 base for NASA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|4|
+|Default Robot #:|4|
+|Sponsor:|NASA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|720.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|1440.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|3600.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+|[basket](/docs/definitions/null/basket)|Bin|20|
+|[crate](/docs/definitions/null/crate)|Bin|20|
+|[pot](/docs/definitions/null/pot)|Bin|20|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Food Delivery|7|[Food Resupply 1](/docs/definitions/manifest/food-resupply-1)|80|
+|Phase 1 Delivery|668|[Resupply for Phase 1](/docs/definitions/manifest/resupply-for-phase-1)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-2-bo.md b/content/docs/definitions/settlement/phase-2-bo.md
new file mode 100644
index 0000000..b9734d2
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-2-bo.md
@@ -0,0 +1,222 @@
+---
+title: Settlement Template - Phase 2-BO
+linkTitle: Phase 2-BO
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 2 base for Blue Origin
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|8|
+|Default Robot #:|6|
+|Sponsor:|BO|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Inflatable Greenhouse 2|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|MD1 Nuclear Reactor 2|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Research Hab 1|[Research Hab](/docs/definitions/building/research-hab)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|10|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|20|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|306|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|10|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|10|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|2|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|30|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|10|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|10|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|10|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|4|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|2|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|22|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|32|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|4|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|2|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|64|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|32|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|32|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|32|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|32|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|32|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|38|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|16|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|521|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|10|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|6|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|20|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|46|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|20|
+|[Food](/docs/definitions/resource/food)|Resource|1440.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|16|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|168|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|46|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|5|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|46|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|10|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|16|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|18|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|100|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|40|
+|[Logic board](/docs/definitions/part/logic-board)|Part|50|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|24|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|400|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|6|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|400|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|6|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|120|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|5|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|3|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|8|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|10|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|2|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|40|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|40|
+|[Oven](/docs/definitions/part/oven)|Part|10|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|2880.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|6|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|200|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|3|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|286|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|39|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|104|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|24|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|120|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|32|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|10|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|10|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|6|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|6|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|10|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|6|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|18|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|10|
+|[Stove](/docs/definitions/part/stove)|Part|10|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|18|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|10|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|92|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|10|
+|[Water](/docs/definitions/resource/water)|Resource|4800.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|2|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|6|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|331|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|32|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|12|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|16|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|2|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 2](/docs/definitions/manifest/resupply-for-phase-2)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-2-cn.md b/content/docs/definitions/settlement/phase-2-cn.md
new file mode 100644
index 0000000..e8ec9e5
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-2-cn.md
@@ -0,0 +1,229 @@
+---
+title: Settlement Template - Phase 2-CN
+linkTitle: Phase 2-CN
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 2 base for CNSA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|8|
+|Default Robot #:|5|
+|Sponsor:|CNSA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Algae Pond 1|[Algae Pond](/docs/definitions/building/algae-pond)|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Lander Hab 2|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 4|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 4|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 5|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 6|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|TOPAZ-2A Reactor 1|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-2A Reactor 2|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-3 Reactor 1|[TOPAZ-3 Reactor](/docs/definitions/building/topaz-3-reactor)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 4|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 5|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 6|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Workshop 1|[Workshop](/docs/definitions/building/workshop)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|10|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|20|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|306|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|10|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|10|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|2|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|30|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|10|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|10|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|10|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|4|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|2|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|22|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|32|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|4|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|2|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|64|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|32|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|32|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|32|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|32|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|32|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|38|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|16|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|521|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|10|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|6|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|20|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|46|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|20|
+|[Food](/docs/definitions/resource/food)|Resource|1440.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|16|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|168|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|46|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|5|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|46|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|10|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|16|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|18|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|100|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|40|
+|[Logic board](/docs/definitions/part/logic-board)|Part|50|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|24|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|400|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|6|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|400|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|6|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|120|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|5|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|3|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|8|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|10|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|2|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|40|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|40|
+|[Oven](/docs/definitions/part/oven)|Part|10|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|2880.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|6|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|200|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|3|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|286|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|39|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|104|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|24|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|120|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|32|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|10|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|10|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|6|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|6|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|10|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|6|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|18|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|10|
+|[Stove](/docs/definitions/part/stove)|Part|10|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|18|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|10|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|92|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|10|
+|[Water](/docs/definitions/resource/water)|Resource|4800.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|2|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|6|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|331|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|32|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|12|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|16|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Quarterly Delivery|1|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|150|
+|Annual Delivery|668|[Resupply for Phase 2](/docs/definitions/manifest/resupply-for-phase-2)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-2-eu.md b/content/docs/definitions/settlement/phase-2-eu.md
new file mode 100644
index 0000000..6402348
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-2-eu.md
@@ -0,0 +1,225 @@
+---
+title: Settlement Template - Phase 2-EU
+linkTitle: Phase 2-EU
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 2 base for European Space Agency
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|8|
+|Default Robot #:|5|
+|Sponsor:|ESA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Inflatable Greenhouse 2|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Research Hab 1|[Research Hab](/docs/definitions/building/research-hab)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 4|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 5|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 6|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|10|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|20|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|306|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|10|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|10|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|2|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|30|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|10|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|10|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|10|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|4|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|2|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|22|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|32|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|4|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|2|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|64|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|32|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|32|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|32|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|32|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|32|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|38|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|16|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|521|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|10|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|6|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|20|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|46|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|20|
+|[Food](/docs/definitions/resource/food)|Resource|1440.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|16|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|168|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|46|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|5|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|46|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|10|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|16|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|18|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|100|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|40|
+|[Logic board](/docs/definitions/part/logic-board)|Part|50|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|24|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|400|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|6|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|400|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|6|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|120|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|5|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|3|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|8|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|10|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|2|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|40|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|40|
+|[Oven](/docs/definitions/part/oven)|Part|10|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|2880.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|6|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|200|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|3|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|286|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|39|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|104|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|24|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|120|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|32|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|10|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|10|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|6|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|6|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|10|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|6|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|18|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|10|
+|[Stove](/docs/definitions/part/stove)|Part|10|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|18|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|10|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|92|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|10|
+|[Water](/docs/definitions/resource/water)|Resource|4800.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|2|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|6|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|331|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|32|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|12|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|16|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|1|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|0|[Resupply for Phase 2](/docs/definitions/manifest/resupply-for-phase-2)|668|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-2-in.md b/content/docs/definitions/settlement/phase-2-in.md
new file mode 100644
index 0000000..49e6c6f
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-2-in.md
@@ -0,0 +1,225 @@
+---
+title: Settlement Template - Phase 2-IN
+linkTitle: Phase 2-IN
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 2 base for ISRO
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|8|
+|Default Robot #:|5|
+|Sponsor:|ISRO|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fish Farm 1|[Fish Farm](/docs/definitions/building/fish-farm)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 8|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Machinery Hab 1|[Machinery Hab](/docs/definitions/building/machinery-hab)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|10|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|20|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|306|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|10|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|10|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|2|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|30|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|10|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|10|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|10|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|4|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|2|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|22|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|32|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|4|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|2|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|64|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|32|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|32|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|32|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|32|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|32|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|38|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|16|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|521|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|10|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|6|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|20|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|46|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|20|
+|[Food](/docs/definitions/resource/food)|Resource|1440.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|16|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|168|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|46|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|5|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|46|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|10|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|16|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|18|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|100|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|40|
+|[Logic board](/docs/definitions/part/logic-board)|Part|50|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|24|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|400|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|6|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|400|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|6|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|120|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|5|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|3|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|8|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|10|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|2|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|40|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|40|
+|[Oven](/docs/definitions/part/oven)|Part|10|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|2880.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|6|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|200|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|3|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|286|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|39|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|104|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|24|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|120|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|32|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|10|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|10|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|6|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|6|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|10|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|6|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|18|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|10|
+|[Stove](/docs/definitions/part/stove)|Part|10|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|18|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|10|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|92|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|10|
+|[Water](/docs/definitions/resource/water)|Resource|4800.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|2|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|6|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|331|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|32|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|12|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|16|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|3|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 2](/docs/definitions/manifest/resupply-for-phase-2)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-2-jp.md b/content/docs/definitions/settlement/phase-2-jp.md
new file mode 100644
index 0000000..c16b708
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-2-jp.md
@@ -0,0 +1,225 @@
+---
+title: Settlement Template - Phase 2-JP
+linkTitle: Phase 2-JP
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 2 base for JAXA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|8|
+|Default Robot #:|5|
+|Sponsor:|JAXA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fish Farm 1|[Fish Farm](/docs/definitions/building/fish-farm)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 8|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Machinery Hab 1|[Machinery Hab](/docs/definitions/building/machinery-hab)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Small Areothermal Well 1|[Small Areothermal Well](/docs/definitions/building/small-areothermal-well)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|10|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|20|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|306|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|10|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|10|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|2|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|30|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|10|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|10|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|10|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|4|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|2|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|22|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|32|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|4|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|2|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|64|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|32|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|32|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|32|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|32|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|32|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|38|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|16|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|521|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|10|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|6|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|20|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|46|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|20|
+|[Food](/docs/definitions/resource/food)|Resource|1440.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|16|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|168|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|46|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|5|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|46|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|10|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|16|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|18|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|100|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|40|
+|[Logic board](/docs/definitions/part/logic-board)|Part|50|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|24|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|400|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|6|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|400|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|6|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|120|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|5|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|3|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|8|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|10|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|2|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|40|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|40|
+|[Oven](/docs/definitions/part/oven)|Part|10|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|2880.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|6|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|200|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|3|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|286|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|39|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|104|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|24|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|120|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|32|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|10|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|10|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|6|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|6|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|10|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|6|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|18|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|10|
+|[Stove](/docs/definitions/part/stove)|Part|10|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|18|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|10|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|92|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|10|
+|[Water](/docs/definitions/resource/water)|Resource|4800.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|2|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|6|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|331|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|32|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|12|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|16|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|3|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|3|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|3|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|6|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 2](/docs/definitions/manifest/resupply-for-phase-2)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-2-kr.md b/content/docs/definitions/settlement/phase-2-kr.md
new file mode 100644
index 0000000..9467f28
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-2-kr.md
@@ -0,0 +1,227 @@
+---
+title: Settlement Template - Phase 2-KR
+linkTitle: Phase 2-KR
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 2 base for KASA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|9|
+|Default Robot #:|5|
+|Sponsor:|KASA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fish Farm 1|[Fish Farm](/docs/definitions/building/fish-farm)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 8|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 3|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Residential Hab 1|[Residential Hab](/docs/definitions/building/residential-hab)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Small Areothermal Well 1|[Small Areothermal Well](/docs/definitions/building/small-areothermal-well)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Workshop 1|[Workshop](/docs/definitions/building/workshop)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|10|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|20|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|306|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|10|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|10|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|2|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|30|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|10|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|10|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|10|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|4|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|2|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|22|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|32|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|4|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|2|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|64|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|32|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|32|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|32|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|32|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|32|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|38|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|16|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|521|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|10|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|6|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|20|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|46|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|20|
+|[Food](/docs/definitions/resource/food)|Resource|1440.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|16|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|168|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|46|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|5|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|46|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|10|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|16|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|18|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|100|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|40|
+|[Logic board](/docs/definitions/part/logic-board)|Part|50|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|24|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|400|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|6|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|400|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|6|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|120|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|5|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|3|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|8|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|10|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|2|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|40|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|40|
+|[Oven](/docs/definitions/part/oven)|Part|10|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|2880.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|6|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|200|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|3|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|286|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|39|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|104|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|24|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|120|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|32|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|10|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|10|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|6|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|6|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|10|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|6|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|18|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|10|
+|[Stove](/docs/definitions/part/stove)|Part|10|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|18|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|10|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|92|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|10|
+|[Water](/docs/definitions/resource/water)|Resource|4800.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|2|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|6|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|331|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|32|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|12|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|16|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|3|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|3|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|3|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|1|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 2](/docs/definitions/manifest/resupply-for-phase-2)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-2-ms.md b/content/docs/definitions/settlement/phase-2-ms.md
new file mode 100644
index 0000000..5108c23
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-2-ms.md
@@ -0,0 +1,221 @@
+---
+title: Settlement Template - Phase 2-MS
+linkTitle: Phase 2-MS
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 2 base for Mars Society
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|8|
+|Default Robot #:|5|
+|Sponsor:|MS|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fish Farm 1|[Fish Farm](/docs/definitions/building/fish-farm)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Lander Hab 2|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Thermal Collector 1|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 2|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 3|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Workshop 1|[Workshop](/docs/definitions/building/workshop)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|10|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|20|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|306|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|10|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|10|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|2|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|30|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|10|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|10|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|10|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|4|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|2|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|22|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|32|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|4|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|2|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|64|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|32|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|32|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|32|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|32|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|32|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|38|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|16|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|521|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|10|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|6|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|20|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|46|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|20|
+|[Food](/docs/definitions/resource/food)|Resource|1440.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|16|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|168|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|46|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|5|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|46|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|10|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|16|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|18|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|100|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|40|
+|[Logic board](/docs/definitions/part/logic-board)|Part|50|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|24|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|400|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|6|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|400|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|6|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|120|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|5|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|3|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|8|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|10|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|2|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|40|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|40|
+|[Oven](/docs/definitions/part/oven)|Part|10|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|2880.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|6|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|200|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|3|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|286|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|39|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|104|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|24|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|120|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|32|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|10|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|10|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|6|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|6|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|10|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|6|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|18|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|10|
+|[Stove](/docs/definitions/part/stove)|Part|10|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|18|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|10|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|92|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|10|
+|[Water](/docs/definitions/resource/water)|Resource|4800.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|2|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|6|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|331|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|32|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|12|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|16|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|3|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 2](/docs/definitions/manifest/resupply-for-phase-2)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-2-ru.md b/content/docs/definitions/settlement/phase-2-ru.md
new file mode 100644
index 0000000..9a29218
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-2-ru.md
@@ -0,0 +1,223 @@
+---
+title: Settlement Template - Phase 2-RU
+linkTitle: Phase 2-RU
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 2 base for RKA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|8|
+|Default Robot #:|5|
+|Sponsor:|RKA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Command and Control 1|[Command and Control](/docs/definitions/building/command-and-control)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Infirmary 1|[Infirmary](/docs/definitions/building/infirmary)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Inflatable Greenhouse 2|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Medical Hab 1|[Medical Hab](/docs/definitions/building/medical-hab)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|TOPAZ-2A Reactor 1|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-2A Reactor 2|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-3 Reactor 1|[TOPAZ-3 Reactor](/docs/definitions/building/topaz-3-reactor)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|10|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|20|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|306|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|10|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|10|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|2|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|30|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|10|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|10|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|10|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|4|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|2|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|22|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|32|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|4|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|2|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|64|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|32|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|32|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|32|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|32|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|32|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|38|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|16|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|521|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|10|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|6|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|20|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|46|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|20|
+|[Food](/docs/definitions/resource/food)|Resource|1440.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|16|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|168|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|46|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|5|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|46|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|10|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|16|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|18|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|100|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|40|
+|[Logic board](/docs/definitions/part/logic-board)|Part|50|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|24|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|400|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|6|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|400|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|6|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|120|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|5|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|3|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|8|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|10|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|2|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|40|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|40|
+|[Oven](/docs/definitions/part/oven)|Part|10|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|2880.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|6|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|200|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|3|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|286|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|39|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|104|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|24|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|120|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|32|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|10|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|10|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|6|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|6|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|10|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|6|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|18|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|10|
+|[Stove](/docs/definitions/part/stove)|Part|10|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|18|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|10|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|92|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|10|
+|[Water](/docs/definitions/resource/water)|Resource|4800.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|2|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|6|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|331|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|32|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|12|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|16|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|1|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 2](/docs/definitions/manifest/resupply-for-phase-2)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-2-sx.md b/content/docs/definitions/settlement/phase-2-sx.md
new file mode 100644
index 0000000..e53e4d8
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-2-sx.md
@@ -0,0 +1,231 @@
+---
+title: Settlement Template - Phase 2-SX
+linkTitle: Phase 2-SX
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 2 circular base for SpaceX
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|8|
+|Default Robot #:|5|
+|Sponsor:|RKA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|EVA Airlock 2|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fish Farm 1|[Fish Farm](/docs/definitions/building/fish-farm)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Lander Hab 2|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 4|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 4|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 5|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 6|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 7|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 8|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 9|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Thermal Collector 1|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 2|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 3|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Tunnel 1|[Tunnel](/docs/definitions/building/tunnel)|
+|Workshop 1|[Workshop](/docs/definitions/building/workshop)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|10|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|20|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|306|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|10|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|10|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|2|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|30|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|10|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|10|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|10|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|4|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|2|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|22|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|32|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|4|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|2|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|64|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|32|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|32|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|32|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|32|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|32|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|38|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|16|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|521|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|10|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|6|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|20|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|46|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|20|
+|[Food](/docs/definitions/resource/food)|Resource|1440.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|16|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|168|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|46|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|5|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|46|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|10|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|16|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|18|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|100|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|40|
+|[Logic board](/docs/definitions/part/logic-board)|Part|50|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|24|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|400|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|6|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|400|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|6|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|120|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|5|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|3|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|8|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|10|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|2|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|40|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|40|
+|[Oven](/docs/definitions/part/oven)|Part|10|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|2880.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|6|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|200|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|3|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|286|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|39|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|104|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|24|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|120|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|32|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|10|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|10|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|6|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|6|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|10|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|6|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|18|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|10|
+|[Stove](/docs/definitions/part/stove)|Part|10|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|18|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|10|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|92|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|10|
+|[Water](/docs/definitions/resource/water)|Resource|4800.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|2|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|6|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|331|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|32|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|12|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|16|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Long Range Explorer](/docs/definitions/vehicle/long-range-explorer)|1|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|4|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 2](/docs/definitions/manifest/resupply-for-phase-2)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-2-us.md b/content/docs/definitions/settlement/phase-2-us.md
new file mode 100644
index 0000000..c4e039e
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-2-us.md
@@ -0,0 +1,222 @@
+---
+title: Settlement Template - Phase 2-US
+linkTitle: Phase 2-US
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 2 base for NASA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|8|
+|Default Robot #:|5|
+|Sponsor:|NASA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Inflatable Greenhouse 2|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|MD1 Nuclear Reactor 2|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Research Hab 1|[Research Hab](/docs/definitions/building/research-hab)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 4|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 5|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 6|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|10|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|20|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|306|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|10|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|10|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|2|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|30|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|10|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|10|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|10|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|4|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|2|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|22|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|32|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|4|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|2|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|64|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|32|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|32|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|32|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|32|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|32|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|38|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|16|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|521|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|10|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|6|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|20|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|46|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|20|
+|[Food](/docs/definitions/resource/food)|Resource|1440.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|16|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|168|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|46|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|5|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|46|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|10|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|16|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|18|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|100|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|40|
+|[Logic board](/docs/definitions/part/logic-board)|Part|50|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|24|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|400|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|6|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|400|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|6|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|120|
+|[Microwave](/docs/definitions/part/microwave)|Part|10|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|5|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|3|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|8|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|10|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|2|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|40|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|40|
+|[Oven](/docs/definitions/part/oven)|Part|10|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|2880.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|6|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|200|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|3|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|286|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|39|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|104|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|20|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|24|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|120|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|32|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|10|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|10|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|6|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|6|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|10|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|6|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|18|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|10|
+|[Stove](/docs/definitions/part/stove)|Part|10|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|18|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|10|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|92|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|10|
+|[Water](/docs/definitions/resource/water)|Resource|4800.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|2|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|6|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|331|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|32|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|12|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|16|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|2|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 2](/docs/definitions/manifest/resupply-for-phase-2)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-3-cn.md b/content/docs/definitions/settlement/phase-3-cn.md
new file mode 100644
index 0000000..de02167
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-3-cn.md
@@ -0,0 +1,256 @@
+---
+title: Settlement Template - Phase 3-CN
+linkTitle: Phase 3-CN
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 3 base for CNSA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|16|
+|Default Robot #:|8|
+|Sponsor:|CNSA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Algae Pond 1|[Algae Pond](/docs/definitions/building/algae-pond)|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-A 2|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-B 2|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-C 2|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|ERV-I 2|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 10|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 11|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 8|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 9|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Inflatable Greenhouse 2|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 4|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 4|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 5|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 6|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Research Hab 1|[Research Hab](/docs/definitions/building/research-hab)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 4|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 5|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 6|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 7|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 8|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 9|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Storage Hab 1|[Storage Hab](/docs/definitions/building/storage-hab)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Syngas Plant 2|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|TOPAZ-2A Reactor 1|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-2A Reactor 2|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-2A Reactor 3|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-3 Reactor 1|[TOPAZ-3 Reactor](/docs/definitions/building/topaz-3-reactor)|
+|TOPAZ-3 Reactor 2|[TOPAZ-3 Reactor](/docs/definitions/building/topaz-3-reactor)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 4|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 5|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 6|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 7|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 8|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 9|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|15|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|30|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|468|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|15|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|4|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|10|
+|[Blender](/docs/definitions/part/blender)|Part|15|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|4|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|40|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|4|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|20|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|15|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|15|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|8|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|4|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|36|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|32|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|48|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|4|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|6|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|4|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|96|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|48|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|48|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|48|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|48|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|48|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|58|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|24|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|797|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|15|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|12|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|40|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|72|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|30|
+|[Food](/docs/definitions/resource/food)|Resource|2160.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|40|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|6|
+|[Garment](/docs/definitions/part/garment)|Part|24|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|40|
+|[Gasket](/docs/definitions/part/gasket)|Part|258|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|72|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|10|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|72|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|20|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|24|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|26|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|150|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|60|
+|[Logic board](/docs/definitions/part/logic-board)|Part|100|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|46|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|600|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|8|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|600|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|8|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|160|
+|[Microwave](/docs/definitions/part/microwave)|Part|15|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|6|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|4|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|10|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|15|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|60|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|60|
+|[Oven](/docs/definitions/part/oven)|Part|15|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|4320.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|4|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|9|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|300|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|4|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|460|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|35|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|160|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|4|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|30|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|32|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|160|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|48|
+|[Propeller](/docs/definitions/part/propeller)|Part|6|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|20|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|15|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|4|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|22|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|4|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|8|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|10|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|15|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|4|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|8|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|36|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|26|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|14|
+|[Stove](/docs/definitions/part/stove)|Part|15|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|26|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|34|
+|[Transformer](/docs/definitions/part/transformer)|Part|15|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|138|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|8|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|15|
+|[Water](/docs/definitions/resource/water)|Resource|6000.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|3|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|9|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|40|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|4|
+|[Window](/docs/definitions/part/window)|Part|8|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|511|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|48|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|18|
+|barrel|80|
+|wheelbarrow|18|
+|EVA Suit|24|
+|specimen box|80|
+|bag|80|
+|large bag|80|
+|gas canister|80|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Cargo Rover](/docs/definitions/vehicle/cargo-rover)|1|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|2|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|2|
+|[Transport Rover](/docs/definitions/vehicle/transport-rover)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|0|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 3](/docs/definitions/manifest/resupply-for-phase-3)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-3-in.md b/content/docs/definitions/settlement/phase-3-in.md
new file mode 100644
index 0000000..2bbb424
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-3-in.md
@@ -0,0 +1,257 @@
+---
+title: Settlement Template - Phase 3-IN
+linkTitle: Phase 3-IN
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 3 for ISRO
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|12|
+|Default Robot #:|7|
+|Sponsor:|ISRO|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 3|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Cement Storage 2|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Chemical Storage 2|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|Concrete Storage 2|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-A 2|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-B 2|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-C 2|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|ERV-I 2|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 3|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 4|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 3|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 4|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 10|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 11|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 8|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 9|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 3|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 4|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Inflatable Greenhouse 2|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Inflatable Greenhouse 3|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 3|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 4|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lime Storage 2|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Metal Storage 2|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Ore Storage 2|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Regolith Storage 2|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Research Hab 1|[Research Hab](/docs/definitions/building/research-hab)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Sand Storage 2|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 4|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 5|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 6|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Storage Hab 1|[Storage Hab](/docs/definitions/building/storage-hab)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|15|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|30|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|468|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|15|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|4|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|10|
+|[Blender](/docs/definitions/part/blender)|Part|15|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|4|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|40|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|4|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|20|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|15|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|15|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|8|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|4|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|36|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|32|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|48|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|4|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|6|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|4|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|96|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|48|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|48|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|48|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|48|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|48|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|58|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|24|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|797|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|15|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|12|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|40|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|72|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|30|
+|[Food](/docs/definitions/resource/food)|Resource|2160.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|40|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|6|
+|[Garment](/docs/definitions/part/garment)|Part|24|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|40|
+|[Gasket](/docs/definitions/part/gasket)|Part|258|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|72|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|10|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|72|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|20|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|24|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|26|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|150|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|60|
+|[Logic board](/docs/definitions/part/logic-board)|Part|100|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|46|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|600|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|8|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|600|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|8|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|160|
+|[Microwave](/docs/definitions/part/microwave)|Part|15|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|6|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|4|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|10|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|15|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|60|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|60|
+|[Oven](/docs/definitions/part/oven)|Part|15|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|4320.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|4|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|9|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|300|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|4|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|460|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|35|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|160|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|4|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|30|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|32|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|160|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|48|
+|[Propeller](/docs/definitions/part/propeller)|Part|6|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|20|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|15|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|4|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|22|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|4|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|8|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|10|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|15|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|4|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|8|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|36|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|26|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|14|
+|[Stove](/docs/definitions/part/stove)|Part|15|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|26|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|34|
+|[Transformer](/docs/definitions/part/transformer)|Part|15|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|138|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|8|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|15|
+|[Water](/docs/definitions/resource/water)|Resource|6000.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|3|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|9|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|40|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|4|
+|[Window](/docs/definitions/part/window)|Part|8|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|511|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|48|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|18|
+|barrel|80|
+|wheelbarrow|18|
+|EVA Suit|24|
+|specimen box|80|
+|bag|80|
+|large bag|80|
+|gas canister|80|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Cargo Rover](/docs/definitions/vehicle/cargo-rover)|1|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|2|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|2|
+|[Transport Rover](/docs/definitions/vehicle/transport-rover)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|2|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 3](/docs/definitions/manifest/resupply-for-phase-3)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-3-isra.md b/content/docs/definitions/settlement/phase-3-isra.md
new file mode 100644
index 0000000..bb7caca
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-3-isra.md
@@ -0,0 +1,256 @@
+---
+title: Settlement Template - Phase 3-ISRA
+linkTitle: Phase 3-ISRA
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 3 base for ISRA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|16|
+|Default Robot #:|8|
+|Sponsor:|ISRA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Algae Pond 1|[Algae Pond](/docs/definitions/building/algae-pond)|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-A 2|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-B 2|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-C 2|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|ERV-I 2|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fish Farm 1|[Fish Farm](/docs/definitions/building/fish-farm)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 10|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 11|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 8|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 9|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 4|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|Machinery Hab 1|[Machinery Hab](/docs/definitions/building/machinery-hab)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 4|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 5|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 6|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Research Hab 1|[Research Hab](/docs/definitions/building/research-hab)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 4|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 5|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 6|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 7|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 8|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 9|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|TOPAZ-2A Reactor 1|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-2A Reactor 2|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-2A Reactor 3|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-2A Reactor 4|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-3 Reactor 1|[TOPAZ-3 Reactor](/docs/definitions/building/topaz-3-reactor)|
+|TOPAZ-3 Reactor 2|[TOPAZ-3 Reactor](/docs/definitions/building/topaz-3-reactor)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 4|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 5|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 6|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 7|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 8|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 9|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|15|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|30|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|468|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|15|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|4|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|10|
+|[Blender](/docs/definitions/part/blender)|Part|15|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|4|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|40|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|4|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|20|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|15|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|15|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|8|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|4|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|36|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|32|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|48|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|4|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|6|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|4|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|96|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|48|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|48|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|48|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|48|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|48|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|58|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|24|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|797|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|15|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|12|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|40|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|72|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|30|
+|[Food](/docs/definitions/resource/food)|Resource|2160.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|40|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|6|
+|[Garment](/docs/definitions/part/garment)|Part|24|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|40|
+|[Gasket](/docs/definitions/part/gasket)|Part|258|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|72|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|10|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|72|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|20|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|24|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|26|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|150|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|60|
+|[Logic board](/docs/definitions/part/logic-board)|Part|100|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|46|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|600|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|8|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|600|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|8|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|160|
+|[Microwave](/docs/definitions/part/microwave)|Part|15|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|6|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|4|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|10|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|15|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|60|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|60|
+|[Oven](/docs/definitions/part/oven)|Part|15|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|4320.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|4|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|9|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|300|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|4|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|460|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|35|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|160|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|4|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|30|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|32|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|160|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|48|
+|[Propeller](/docs/definitions/part/propeller)|Part|6|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|20|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|15|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|4|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|22|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|4|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|8|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|10|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|15|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|4|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|8|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|36|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|26|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|14|
+|[Stove](/docs/definitions/part/stove)|Part|15|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|26|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|34|
+|[Transformer](/docs/definitions/part/transformer)|Part|15|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|138|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|8|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|15|
+|[Water](/docs/definitions/resource/water)|Resource|6000.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|3|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|9|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|40|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|4|
+|[Window](/docs/definitions/part/window)|Part|8|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|511|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|48|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|18|
+|barrel|80|
+|wheelbarrow|18|
+|EVA Suit|24|
+|specimen box|80|
+|bag|80|
+|large bag|80|
+|gas canister|80|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Cargo Rover](/docs/definitions/vehicle/cargo-rover)|1|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|2|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|2|
+|[Transport Rover](/docs/definitions/vehicle/transport-rover)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|0|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 3](/docs/definitions/manifest/resupply-for-phase-3)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-3-ms.md b/content/docs/definitions/settlement/phase-3-ms.md
new file mode 100644
index 0000000..851d626
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-3-ms.md
@@ -0,0 +1,243 @@
+---
+title: Settlement Template - Phase 3-MS
+linkTitle: Phase 3-MS
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 3 base for Mars Society
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|12|
+|Default Robot #:|7|
+|Sponsor:|MS|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 3|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-A 2|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-B 2|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-C 2|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|ERV-I 2|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fish Farm 1|[Fish Farm](/docs/definitions/building/fish-farm)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 10|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 11|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 8|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 9|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Inflatable Greenhouse 2|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Lander Hab 2|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 4|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|MD1 Nuclear Reactor 2|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Research Hab 1|[Research Hab](/docs/definitions/building/research-hab)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 4|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 5|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 6|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 7|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 8|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 9|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Workshop 1|[Workshop](/docs/definitions/building/workshop)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|15|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|30|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|468|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|15|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|4|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|10|
+|[Blender](/docs/definitions/part/blender)|Part|15|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|4|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|40|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|4|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|20|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|15|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|15|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|8|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|4|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|36|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|32|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|48|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|4|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|6|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|4|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|96|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|48|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|48|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|48|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|48|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|48|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|58|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|24|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|797|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|15|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|12|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|40|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|72|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|30|
+|[Food](/docs/definitions/resource/food)|Resource|2160.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|40|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|6|
+|[Garment](/docs/definitions/part/garment)|Part|24|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|40|
+|[Gasket](/docs/definitions/part/gasket)|Part|258|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|72|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|10|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|72|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|20|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|24|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|26|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|150|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|60|
+|[Logic board](/docs/definitions/part/logic-board)|Part|100|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|46|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|600|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|8|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|600|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|8|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|160|
+|[Microwave](/docs/definitions/part/microwave)|Part|15|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|6|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|4|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|10|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|15|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|60|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|60|
+|[Oven](/docs/definitions/part/oven)|Part|15|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|4320.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|4|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|9|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|300|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|4|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|460|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|35|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|160|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|4|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|30|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|32|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|160|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|48|
+|[Propeller](/docs/definitions/part/propeller)|Part|6|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|20|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|15|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|4|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|22|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|4|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|8|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|10|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|15|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|4|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|8|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|36|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|26|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|14|
+|[Stove](/docs/definitions/part/stove)|Part|15|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|26|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|34|
+|[Transformer](/docs/definitions/part/transformer)|Part|15|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|138|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|8|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|15|
+|[Water](/docs/definitions/resource/water)|Resource|6000.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|3|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|9|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|40|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|4|
+|[Window](/docs/definitions/part/window)|Part|8|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|511|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|48|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|18|
+|barrel|80|
+|wheelbarrow|18|
+|EVA Suit|24|
+|specimen box|80|
+|bag|80|
+|large bag|80|
+|gas canister|80|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Cargo Rover](/docs/definitions/vehicle/cargo-rover)|1|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|2|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|2|
+|[Transport Rover](/docs/definitions/vehicle/transport-rover)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|3|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 3](/docs/definitions/manifest/resupply-for-phase-3)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-3-ru.md b/content/docs/definitions/settlement/phase-3-ru.md
new file mode 100644
index 0000000..c863fcc
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-3-ru.md
@@ -0,0 +1,249 @@
+---
+title: Settlement Template - Phase 3-RU
+linkTitle: Phase 3-RU
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 3 Settlement for RKA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|12|
+|Default Robot #:|7|
+|Sponsor:|RKA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Command and Control 1|[Command and Control](/docs/definitions/building/command-and-control)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-A 2|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-B 2|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-C 2|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|ERV-I 2|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 10|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 11|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 8|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 9|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Infirmary 1|[Infirmary](/docs/definitions/building/infirmary)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Inflatable Greenhouse 2|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Inflatable Greenhouse 3|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 4|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Machinery Hab 1|[Machinery Hab](/docs/definitions/building/machinery-hab)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 4|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Research Hab 1|[Research Hab](/docs/definitions/building/research-hab)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 4|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 5|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 6|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Syngas Plant 2|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|TOPAZ-2A Reactor 1|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-2A Reactor 2|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-2A Reactor 3|[TOPAZ-2A Reactor](/docs/definitions/building/topaz-2a-reactor)|
+|TOPAZ-3 Reactor 1|[TOPAZ-3 Reactor](/docs/definitions/building/topaz-3-reactor)|
+|TOPAZ-3 Reactor 2|[TOPAZ-3 Reactor](/docs/definitions/building/topaz-3-reactor)|
+|TOPAZ-3 Reactor 3|[TOPAZ-3 Reactor](/docs/definitions/building/topaz-3-reactor)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 4|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 5|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 6|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|15|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|30|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|468|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|15|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|4|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|10|
+|[Blender](/docs/definitions/part/blender)|Part|15|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|4|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|40|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|4|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|20|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|15|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|15|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|8|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|4|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|36|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|32|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|48|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|4|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|6|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|4|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|96|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|48|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|48|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|48|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|48|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|48|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|58|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|24|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|797|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|15|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|12|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|40|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|72|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|30|
+|[Food](/docs/definitions/resource/food)|Resource|2160.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|40|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|6|
+|[Garment](/docs/definitions/part/garment)|Part|24|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|40|
+|[Gasket](/docs/definitions/part/gasket)|Part|258|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|72|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|10|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|72|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|20|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|24|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|26|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|150|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|60|
+|[Logic board](/docs/definitions/part/logic-board)|Part|100|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|46|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|600|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|8|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|600|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|8|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|160|
+|[Microwave](/docs/definitions/part/microwave)|Part|15|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|6|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|4|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|10|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|15|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|60|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|60|
+|[Oven](/docs/definitions/part/oven)|Part|15|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|4320.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|4|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|9|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|300|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|4|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|460|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|35|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|160|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|4|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|30|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|32|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|160|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|48|
+|[Propeller](/docs/definitions/part/propeller)|Part|6|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|20|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|15|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|4|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|22|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|4|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|8|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|10|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|15|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|4|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|8|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|36|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|26|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|14|
+|[Stove](/docs/definitions/part/stove)|Part|15|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|26|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|34|
+|[Transformer](/docs/definitions/part/transformer)|Part|15|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|138|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|8|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|15|
+|[Water](/docs/definitions/resource/water)|Resource|6000.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|3|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|9|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|40|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|4|
+|[Window](/docs/definitions/part/window)|Part|8|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|511|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|48|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|18|
+|barrel|80|
+|wheelbarrow|18|
+|EVA Suit|24|
+|specimen box|80|
+|bag|80|
+|large bag|80|
+|gas canister|80|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Cargo Rover](/docs/definitions/vehicle/cargo-rover)|1|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|2|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|2|
+|[Transport Rover](/docs/definitions/vehicle/transport-rover)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|2|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 3](/docs/definitions/manifest/resupply-for-phase-3)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-3-sx.md b/content/docs/definitions/settlement/phase-3-sx.md
new file mode 100644
index 0000000..08a62e9
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-3-sx.md
@@ -0,0 +1,243 @@
+---
+title: Settlement Template - Phase 3-SX
+linkTitle: Phase 3-SX
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 3 for SpaceX
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|12|
+|Default Robot #:|7|
+|Sponsor:|SPACEX|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 3|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-A 2|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-B 2|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-C 2|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|ERV-I 2|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fish Farm 1|[Fish Farm](/docs/definitions/building/fish-farm)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 10|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 11|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 8|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 9|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 3|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 4|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 4|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Research Hab 1|[Research Hab](/docs/definitions/building/research-hab)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 4|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 5|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 6|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 7|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 8|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 9|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Storage Hab 1|[Storage Hab](/docs/definitions/building/storage-hab)|
+|Workshop 1|[Workshop](/docs/definitions/building/workshop)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|15|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|30|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|468|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|15|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|4|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|10|
+|[Blender](/docs/definitions/part/blender)|Part|15|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|4|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|40|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|4|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|20|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|15|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|15|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|8|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|4|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|36|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|32|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|48|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|4|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|6|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|4|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|96|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|48|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|48|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|48|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|48|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|48|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|58|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|24|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|797|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|15|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|12|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|40|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|72|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|30|
+|[Food](/docs/definitions/resource/food)|Resource|2160.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|40|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|6|
+|[Garment](/docs/definitions/part/garment)|Part|24|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|40|
+|[Gasket](/docs/definitions/part/gasket)|Part|258|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|72|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|10|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|72|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|20|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|24|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|26|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|150|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|60|
+|[Logic board](/docs/definitions/part/logic-board)|Part|100|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|46|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|600|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|8|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|600|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|8|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|160|
+|[Microwave](/docs/definitions/part/microwave)|Part|15|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|6|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|4|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|10|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|15|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|60|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|60|
+|[Oven](/docs/definitions/part/oven)|Part|15|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|4320.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|4|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|9|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|300|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|4|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|460|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|35|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|160|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|4|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|30|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|32|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|160|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|48|
+|[Propeller](/docs/definitions/part/propeller)|Part|6|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|20|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|15|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|4|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|22|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|4|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|8|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|10|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|15|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|4|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|8|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|36|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|26|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|14|
+|[Stove](/docs/definitions/part/stove)|Part|15|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|26|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|34|
+|[Transformer](/docs/definitions/part/transformer)|Part|15|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|138|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|8|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|15|
+|[Water](/docs/definitions/resource/water)|Resource|6000.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|3|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|9|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|40|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|4|
+|[Window](/docs/definitions/part/window)|Part|8|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|511|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|48|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|18|
+|barrel|80|
+|wheelbarrow|18|
+|EVA Suit|24|
+|specimen box|80|
+|bag|80|
+|large bag|80|
+|gas canister|80|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|3|
+|[Cargo Rover](/docs/definitions/vehicle/cargo-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|3|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|3|
+|[Transport Rover](/docs/definitions/vehicle/transport-rover)|2|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|30|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Phase 3 Delivery|668|[Resupply for Phase 3](/docs/definitions/manifest/resupply-for-phase-3)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/phase-3-us.md b/content/docs/definitions/settlement/phase-3-us.md
new file mode 100644
index 0000000..e6398d3
--- /dev/null
+++ b/content/docs/definitions/settlement/phase-3-us.md
@@ -0,0 +1,251 @@
+---
+title: Settlement Template - Phase 3-US
+linkTitle: Phase 3-US
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Phase 3 base for NASA
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Crop Farm|
+|Shift Pattern:||
+|Default People #:|12|
+|Default Robot #:|7|
+|Sponsor:|NASA|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 3|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-A 2|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-B 2|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-C 2|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|ERV-I 2|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Garage 1|[Garage](/docs/definitions/building/garage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Hallway 1|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 10|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 11|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 2|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 3|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 4|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 5|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 6|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 7|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 8|[Hallway](/docs/definitions/building/hallway)|
+|Hallway 9|[Hallway](/docs/definitions/building/hallway)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Inflatable Greenhouse 1|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Inflatable Greenhouse 2|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Inflatable Greenhouse 3|[Inflatable Greenhouse](/docs/definitions/building/inflatable-greenhouse)|
+|Kilopower Reactor 1|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Kilopower Reactor 2|[Kilopower Reactor](/docs/definitions/building/kilopower-reactor)|
+|Laboratory 1|[Laboratory](/docs/definitions/building/laboratory)|
+|Lander Hab 1|[Lander Hab](/docs/definitions/building/lander-hab)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 3|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 4|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Lounge 1|[Lounge](/docs/definitions/building/lounge)|
+|MD1 Nuclear Reactor 1|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|MD1 Nuclear Reactor 2|[MD1 Nuclear Reactor](/docs/definitions/building/md1-nuclear-reactor)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 4|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 5|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Research Hab 1|[Research Hab](/docs/definitions/building/research-hab)|
+|Residential Quarters 1|[Residential Quarters](/docs/definitions/building/residential-quarters)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Photovoltaic Array 1|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 2|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 3|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 4|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 5|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 6|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 7|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 8|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Solar Photovoltaic Array 9|[Solar Photovoltaic Array](/docs/definitions/building/solar-photovoltaic-array)|
+|Storage Hab 1|[Storage Hab](/docs/definitions/building/storage-hab)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 4|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 5|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 6|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|15|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|30|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|468|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|15|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|4|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|10|
+|[Blender](/docs/definitions/part/blender)|Part|15|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|4|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|40|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|4|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|20|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|15|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|15|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|8|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|4|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|36|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|32|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|48|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|4|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|6|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|4|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|96|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|48|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|48|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|48|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|48|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|48|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|58|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|24|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|797|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|15|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|12|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|40|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|72|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|30|
+|[Food](/docs/definitions/resource/food)|Resource|2160.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|40|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|6|
+|[Garment](/docs/definitions/part/garment)|Part|24|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|40|
+|[Gasket](/docs/definitions/part/gasket)|Part|258|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|72|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|10|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|72|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|20|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|24|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|26|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|150|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|60|
+|[Logic board](/docs/definitions/part/logic-board)|Part|100|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|46|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|600|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|8|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|600|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|8|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|160|
+|[Microwave](/docs/definitions/part/microwave)|Part|15|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|6|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|4|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|10|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|15|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|60|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|60|
+|[Oven](/docs/definitions/part/oven)|Part|15|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|4320.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|4|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|9|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|300|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|4|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|460|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|35|
+|[Plastic Sheet](/docs/definitions/part/plastic-sheet)|Part|6|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|160|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|4|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|30|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|32|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|160|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|48|
+|[Propeller](/docs/definitions/part/propeller)|Part|6|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|20|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|15|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|4|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|22|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|4|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|8|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|10|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|15|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|4|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|8|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|36|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|26|
+|[Steel Post](/docs/definitions/part/steel-post)|Part|15|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|14|
+|[Stove](/docs/definitions/part/stove)|Part|15|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|26|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|34|
+|[Transformer](/docs/definitions/part/transformer)|Part|15|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|138|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|8|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|15|
+|[Water](/docs/definitions/resource/water)|Resource|6000.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|3|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|9|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|40|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|4|
+|[Window](/docs/definitions/part/window)|Part|8|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|511|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|48|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|18|
+|barrel|80|
+|wheelbarrow|18|
+|EVA Suit|24|
+|specimen box|80|
+|bag|80|
+|large bag|80|
+|gas canister|80|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Explorer Rover](/docs/definitions/vehicle/explorer-rover)|2|
+|[Cargo Rover](/docs/definitions/vehicle/cargo-rover)|1|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|2|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|2|
+|[Transport Rover](/docs/definitions/vehicle/transport-rover)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|BiMonthly Delivery|1|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|60|
+|Annual Delivery|668|[Resupply for Phase 3](/docs/definitions/manifest/resupply-for-phase-3)|-1|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/settlement/trading-outpost.md b/content/docs/definitions/settlement/trading-outpost.md
new file mode 100644
index 0000000..41fa01d
--- /dev/null
+++ b/content/docs/definitions/settlement/trading-outpost.md
@@ -0,0 +1,238 @@
+---
+title: Settlement Template - Trading Outpost
+linkTitle: Trading Outpost
+toc_hide: true
+hide_summary: true
+---
+
+## Description
+Base for a trading outpost
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Objective:|Trade Center|
+|Shift Pattern:||
+|Default People #:|4|
+|Default Robot #:|4|
+|Sponsor:|MS|
+
+## Buildings
+
+| Name | Building Spec |
+|:------|:------|
+|Atmospheric Processor 1|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Atmospheric Processor 2|[Atmospheric Processor](/docs/definitions/building/atmospheric-processor)|
+|Bunkhouse 1|[Bunkhouse](/docs/definitions/building/bunkhouse)|
+|Bunkhouse 2|[Bunkhouse](/docs/definitions/building/bunkhouse)|
+|Cement Storage 1|[Cement Storage](/docs/definitions/building/cement-storage)|
+|Chemical Storage 1|[Chemical Storage](/docs/definitions/building/chemical-storage)|
+|Concrete Storage 1|[Concrete Storage](/docs/definitions/building/concrete-storage)|
+|ERV-A 1|[ERV-A](/docs/definitions/building/erv-a)|
+|ERV-B 1|[ERV-B](/docs/definitions/building/erv-b)|
+|ERV-C 1|[ERV-C](/docs/definitions/building/erv-c)|
+|ERV-I 1|[ERV-I](/docs/definitions/building/erv-i)|
+|EVA Airlock 1|[EVA Airlock](/docs/definitions/building/eva-airlock)|
+|Fuel Storage 1|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Fuel Storage 2|[Fuel Storage](/docs/definitions/building/fuel-storage)|
+|Gas Storage 1|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Gas Storage 2|[Gas Storage](/docs/definitions/building/gas-storage)|
+|Ice Storage 1|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Ice Storage 2|[Ice Storage](/docs/definitions/building/ice-storage)|
+|Large Sabatier Processor 1|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Large Sabatier Processor 2|[Large Sabatier Processor](/docs/definitions/building/large-sabatier-processor)|
+|Lime Storage 1|[Lime Storage](/docs/definitions/building/lime-storage)|
+|Loading Dock Garage 1|[Loading Dock Garage](/docs/definitions/building/loading-dock-garage)|
+|Medium Battery Array 1|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 2|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 3|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 4|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 5|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Medium Battery Array 6|[Medium Battery Array](/docs/definitions/building/medium-battery-array)|
+|Metal Storage 1|[Metal Storage](/docs/definitions/building/metal-storage)|
+|Methane Power Generator 1|[Methane Power Generator](/docs/definitions/building/methane-power-generator)|
+|Methane Power Generator 2|[Methane Power Generator](/docs/definitions/building/methane-power-generator)|
+|Ore Storage 1|[Ore Storage](/docs/definitions/building/ore-storage)|
+|Outpost Hub 1|[Outpost Hub](/docs/definitions/building/outpost-hub)|
+|Regolith Storage 1|[Regolith Storage](/docs/definitions/building/regolith-storage)|
+|Sand Storage 1|[Sand Storage](/docs/definitions/building/sand-storage)|
+|Solar Thermal Collector 1|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 2|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 3|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 4|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 5|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 6|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 7|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 8|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Solar Thermal Collector 9|[Solar Thermal Collector](/docs/definitions/building/solar-thermal-collector)|
+|Storage Shed 1|[Storage Shed](/docs/definitions/building/storage-shed)|
+|Storage Shed 2|[Storage Shed](/docs/definitions/building/storage-shed)|
+|Storage Shed 3|[Storage Shed](/docs/definitions/building/storage-shed)|
+|Storage Shed 4|[Storage Shed](/docs/definitions/building/storage-shed)|
+|Syngas Plant 1|[Syngas Plant](/docs/definitions/building/syngas-plant)|
+|Tunnel 1|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 2|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 3|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 4|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 5|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 6|[Tunnel](/docs/definitions/building/tunnel)|
+|Tunnel 7|[Tunnel](/docs/definitions/building/tunnel)|
+|Wind Turbine 1|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 2|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 3|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 4|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 5|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 6|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 7|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 8|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+|Wind Turbine 9|[Wind Turbine](/docs/definitions/building/wind-turbine)|
+
+## Resources
+
+| Name | Type | Quantity |
+|:-----|:-----|-----:|
+|[Air Compressor](/docs/definitions/part/air-compressor)|Part|3|
+|[Air Duct](/docs/definitions/part/air-duct)|Part|10|
+|[Airleak Patch](/docs/definitions/part/airleak-patch)|Part|160|
+|[Autoclave](/docs/definitions/part/autoclave)|Part|3|
+|[Backhoe](/docs/definitions/part/backhoe)|Part|2|
+|[Battery Module](/docs/definitions/part/battery-module)|Part|4|
+|[Blender](/docs/definitions/part/blender)|Part|3|
+|[Bore Drill Bit](/docs/definitions/part/bore-drill-bit)|Part|1|
+|[Bore Drill Pipe](/docs/definitions/part/bore-drill-pipe)|Part|20|
+|[Bulldozer Blade](/docs/definitions/part/bulldozer-blade)|Part|2|
+|[Carbon Dioxide laser](/docs/definitions/part/carbon-dioxide-laser)|Part|5|
+|[Carbon Dioxide pump](/docs/definitions/part/carbon-dioxide-pump)|Part|3|
+|[Charcoal filter](/docs/definitions/part/charcoal-filter)|Part|5|
+|[Communications Circuit Board](/docs/definitions/part/communications-circuit-board)|Part|6|
+|[Condenser Coil](/docs/definitions/part/condenser-coil)|Part|1|
+|[Coolant Bottle](/docs/definitions/part/coolant-bottle)|Part|18|
+|[Copper Pipe](/docs/definitions/part/copper-pipe)|Part|12|
+|[Coveralls](/docs/definitions/part/coveralls)|Part|16|
+|[Crane Boom](/docs/definitions/part/crane-boom)|Part|2|
+|[Decontamination kit](/docs/definitions/part/decontamination-kit)|Part|2|
+|[Drilling Rig](/docs/definitions/part/drilling-rig)|Part|1|
+|[EVA Antenna](/docs/definitions/part/eva-antenna)|Part|32|
+|[EVA Battery](/docs/definitions/part/eva-battery)|Part|16|
+|[EVA Boots](/docs/definitions/part/eva-boots)|Part|16|
+|[EVA Gloves](/docs/definitions/part/eva-gloves)|Part|16|
+|[EVA Helmet](/docs/definitions/part/eva-helmet)|Part|16|
+|[EVA Pads](/docs/definitions/part/eva-pads)|Part|16|
+|[EVA Radio](/docs/definitions/part/eva-radio)|Part|20|
+|[EVA backpack](/docs/definitions/part/eva-backpack)|Part|8|
+|[Electrical Wire](/docs/definitions/part/electrical-wire)|Part|330|
+|[Electrostatic Precipitator](/docs/definitions/part/electrostatic-precipitator)|Part|5|
+|[Fiberglass](/docs/definitions/part/fiberglass)|Part|3|
+|[Fiberglass Cloth](/docs/definitions/part/fiberglass-cloth)|Part|10|
+|[Fire Extinguisher](/docs/definitions/part/fire-extinguisher)|Part|26|
+|[Flexible hose](/docs/definitions/part/flexible-hose)|Part|10|
+|[Food](/docs/definitions/resource/food)|Resource|2880.0 kg|
+|[Fuel Tank](/docs/definitions/part/fuel-tank)|Part|20|
+|[Fuel pump](/docs/definitions/part/fuel-pump)|Part|2|
+|[Garment](/docs/definitions/part/garment)|Part|8|
+|[Gas Tank](/docs/definitions/part/gas-tank)|Part|20|
+|[Gasket](/docs/definitions/part/gasket)|Part|94|
+|[Heat pipe](/docs/definitions/part/heat-pipe)|Part|26|
+|[Heat pump](/docs/definitions/part/heat-pump)|Part|2|
+|[Heating Element](/docs/definitions/part/heating-element)|Part|26|
+|[Helium Neon laser](/docs/definitions/part/helium-neon-laser)|Part|5|
+|[Helmet Visor](/docs/definitions/part/helmet-visor)|Part|8|
+|[Hydrogen](/docs/definitions/resource/hydrogen)|Resource|7200.0 kg|
+|[Iron Pipe](/docs/definitions/part/iron-pipe)|Part|12|
+|[Light Emitting Diode bulb](/docs/definitions/part/light-emitting-diode-bulb)|Part|50|
+|[Light Emitting Diode kit](/docs/definitions/part/light-emitting-diode-kit)|Part|20|
+|[Logic board](/docs/definitions/part/logic-board)|Part|25|
+|[Lubricant Bottle](/docs/definitions/part/lubricant-bottle)|Part|22|
+|[Methane](/docs/definitions/resource/methane)|Resource|7200.0 kg|
+|[Methane Fuel cell](/docs/definitions/part/methane-fuel-cell)|Part|200|
+|[Methane Fuel cell stack](/docs/definitions/part/methane-fuel-cell-stack)|Part|4|
+|[Methanol](/docs/definitions/resource/methanol)|Resource|7200.0 kg|
+|[Methanol Fuel cell](/docs/definitions/part/methanol-fuel-cell)|Part|200|
+|[Methanol Fuel cell stack](/docs/definitions/part/methanol-fuel-cell-stack)|Part|4|
+|[Microcontroller](/docs/definitions/part/microcontroller)|Part|60|
+|[Microwave](/docs/definitions/part/microwave)|Part|3|
+|[Motor 10 kW](/docs/definitions/part/motor-10-kw)|Part|4|
+|[Motor 30 kW](/docs/definitions/part/motor-30-kw)|Part|2|
+|[Motor 5 kW](/docs/definitions/part/motor-5-kw)|Part|6|
+|[Mushroom Containment kit](/docs/definitions/part/mushroom-containment-kit)|Part|5|
+|[Navigation Circuit Board](/docs/definitions/part/navigation-circuit-board)|Part|4|
+|[Optical Lens](/docs/definitions/part/optical-lens)|Part|20|
+|[Optical Prism](/docs/definitions/part/optical-prism)|Part|20|
+|[Oven](/docs/definitions/part/oven)|Part|5|
+|[Oxygen](/docs/definitions/resource/oxygen)|Resource|7200.0 kg|
+|[Oxygen pump](/docs/definitions/part/oxygen-pump)|Part|2|
+|[Pathogen filter](/docs/definitions/part/pathogen-filter)|Part|3|
+|[Petri dish](/docs/definitions/part/petri-dish)|Part|100|
+|[Plasma cutter](/docs/definitions/part/plasma-cutter)|Part|2|
+|[Plastic Bottle](/docs/definitions/part/plastic-bottle)|Part|180|
+|[Plastic Pipe](/docs/definitions/part/plastic-pipe)|Part|18|
+|[Plastic Tubing](/docs/definitions/part/plastic-tubing)|Part|60|
+|[Pneumatic Drill](/docs/definitions/part/pneumatic-drill)|Part|2|
+|[Polycarbonate roofing](/docs/definitions/part/polycarbonate-roofing)|Part|10|
+|[Power Cable](/docs/definitions/part/power-cable)|Part|16|
+|[Power Transistor](/docs/definitions/part/power-transistor)|Part|60|
+|[Pressure Suit](/docs/definitions/part/pressure-suit)|Part|16|
+|[Propeller](/docs/definitions/part/propeller)|Part|4|
+|[Radio Antenna](/docs/definitions/part/radio-antenna)|Part|8|
+|[Refrigerator](/docs/definitions/part/refrigerator)|Part|3|
+|[Rover Control Panel](/docs/definitions/part/rover-control-panel)|Part|2|
+|[Rover Wheel](/docs/definitions/part/rover-wheel)|Part|12|
+|[Rover Windshield](/docs/definitions/part/rover-windshield)|Part|2|
+|[SLS 3D Printer](/docs/definitions/part/sls-3d-printer)|Part|4|
+|[Satellite Dish](/docs/definitions/part/satellite-dish)|Part|4|
+|[Semiconductor Wafer](/docs/definitions/part/semiconductor-wafer)|Part|5|
+|[Soil Compactor](/docs/definitions/part/soil-compactor)|Part|2|
+|[Solar Panel](/docs/definitions/part/solar-panel)|Part|2|
+|[Spark Plug](/docs/definitions/part/spark-plug)|Part|18|
+|[Steel Pipe](/docs/definitions/part/steel-pipe)|Part|12|
+|[Stepper Motor](/docs/definitions/part/stepper-motor)|Part|8|
+|[Stove](/docs/definitions/part/stove)|Part|3|
+|[Suit Heating Unit](/docs/definitions/part/suit-heating-unit)|Part|8|
+|[Timing Belt](/docs/definitions/part/timing-belt)|Part|16|
+|[Transformer](/docs/definitions/part/transformer)|Part|5|
+|[Utility Vehicle Control Panel](/docs/definitions/part/utility-vehicle-control-panel)|Part|2|
+|[Valve](/docs/definitions/part/valve)|Part|48|
+|[Vehicle Chassis Panel](/docs/definitions/part/vehicle-chassis-panel)|Part|4|
+|[Ventilation fan](/docs/definitions/part/ventilation-fan)|Part|3|
+|[Water](/docs/definitions/resource/water)|Resource|7200.0 kg|
+|[Water Pump large](/docs/definitions/part/water-pump-large)|Part|1|
+|[Water Pump small](/docs/definitions/part/water-pump-small)|Part|3|
+|[Water Tank](/docs/definitions/part/water-tank)|Part|20|
+|[Wheel small](/docs/definitions/part/wheel-small)|Part|2|
+|[Winch](/docs/definitions/part/winch)|Part|2|
+|[Window](/docs/definitions/part/window)|Part|4|
+|[Wire Connector](/docs/definitions/part/wire-connector)|Part|216|
+|[Work gloves](/docs/definitions/part/work-gloves)|Part|16|
+
+## Equipment
+
+| Name | Quantity |
+|:-----|-----:|
+|thermal bottle|8|
+|barrel|40|
+|wheelbarrow|12|
+|EVA Suit|8|
+|specimen box|40|
+|bag|40|
+|large bag|40|
+|gas canister|40|
+
+## Vehicles
+
+| Vehicle Spec. | Quantity |
+|:-----|-----:|
+|[Cargo Rover](/docs/definitions/vehicle/cargo-rover)|2|
+|[Delivery Drone](/docs/definitions/vehicle/delivery-drone)|1|
+|[Light Utility Vehicle](/docs/definitions/vehicle/light-utility-vehicle)|1|
+
+
+
+## Supply Missions
+
+| Name | 1st Arrival | Supply Plan | Frequency (sols) |
+|--------:|:------|:-----|-------:|
+|Quarterly Delivery|11|[Standard Resupply 1](/docs/definitions/manifest/standard-resupply-1)|160|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/treatment/_index.md b/content/docs/definitions/treatment/_index.md
new file mode 100644
index 0000000..f7e2024
--- /dev/null
+++ b/content/docs/definitions/treatment/_index.md
@@ -0,0 +1,37 @@
+---
+title: Treatment
+description: Treatments applied to cure Complaints
+---
+
+
+
+
+{{< alert color="success" >}}These can be changed via the XML file _medical.xml_. See [XML Files](/docs/guide/xml-files/){{< /alert >}}
+
+
+Grouped by Medical Tech Level.
+
+### 1 {#A-1}
+
+- [Antibiotics](../treatment/antibiotics)
+- [Anxiety Medication](../treatment/anxiety-medication)
+- [Dressing](../treatment/dressing)
+- [Plaster Cast](../treatment/plaster-cast)
+- [Radioprotective Agent](../treatment/radioprotective-agent)
+
+### 2 {#A-2}
+
+- [Minor Operation](../treatment/minor-operation)
+
+### 3 {#A-3}
+
+- [Hospitalization](../treatment/hospitalization)
+
+### 4 {#A-4}
+
+- [Major Operation](../treatment/major-operation)
+- [Skin Graft](../treatment/skin-graft)
+
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/treatment/antibiotics.md b/content/docs/definitions/treatment/antibiotics.md
new file mode 100644
index 0000000..479eb53
--- /dev/null
+++ b/content/docs/definitions/treatment/antibiotics.md
@@ -0,0 +1,18 @@
+---
+title: Treatment - Antibiotics
+linkTitle: Antibiotics
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Medical Skill:|0|
+|Facility Tech Level:|1|
+|Duration:|100.0 millisols|
+|Self Admin:|true|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/treatment/anxiety-medication.md b/content/docs/definitions/treatment/anxiety-medication.md
new file mode 100644
index 0000000..794bd25
--- /dev/null
+++ b/content/docs/definitions/treatment/anxiety-medication.md
@@ -0,0 +1,18 @@
+---
+title: Treatment - Anxiety Medication
+linkTitle: Anxiety Medication
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Medical Skill:|0|
+|Facility Tech Level:|1|
+|Duration:|100.0 millisols|
+|Self Admin:|true|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/treatment/dressing.md b/content/docs/definitions/treatment/dressing.md
new file mode 100644
index 0000000..3562f6b
--- /dev/null
+++ b/content/docs/definitions/treatment/dressing.md
@@ -0,0 +1,18 @@
+---
+title: Treatment - Dressing
+linkTitle: Dressing
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Medical Skill:|0|
+|Facility Tech Level:|1|
+|Duration:|50.0 millisols|
+|Self Admin:|true|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/treatment/hospitalization.md b/content/docs/definitions/treatment/hospitalization.md
new file mode 100644
index 0000000..97441a1
--- /dev/null
+++ b/content/docs/definitions/treatment/hospitalization.md
@@ -0,0 +1,18 @@
+---
+title: Treatment - Hospitalization
+linkTitle: Hospitalization
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Medical Skill:|2|
+|Facility Tech Level:|3|
+|Duration:|1000.0 millisols|
+|Self Admin:|false|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/treatment/major-operation.md b/content/docs/definitions/treatment/major-operation.md
new file mode 100644
index 0000000..9b9b4ea
--- /dev/null
+++ b/content/docs/definitions/treatment/major-operation.md
@@ -0,0 +1,18 @@
+---
+title: Treatment - Major Operation
+linkTitle: Major Operation
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Medical Skill:|4|
+|Facility Tech Level:|4|
+|Duration:|600.0 millisols|
+|Self Admin:|false|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/treatment/minor-operation.md b/content/docs/definitions/treatment/minor-operation.md
new file mode 100644
index 0000000..01e4532
--- /dev/null
+++ b/content/docs/definitions/treatment/minor-operation.md
@@ -0,0 +1,18 @@
+---
+title: Treatment - Minor Operation
+linkTitle: Minor Operation
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Medical Skill:|3|
+|Facility Tech Level:|2|
+|Duration:|200.0 millisols|
+|Self Admin:|false|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/treatment/plaster-cast.md b/content/docs/definitions/treatment/plaster-cast.md
new file mode 100644
index 0000000..2875e1a
--- /dev/null
+++ b/content/docs/definitions/treatment/plaster-cast.md
@@ -0,0 +1,18 @@
+---
+title: Treatment - Plaster Cast
+linkTitle: Plaster Cast
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Medical Skill:|2|
+|Facility Tech Level:|1|
+|Duration:|40.0 millisols|
+|Self Admin:|false|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/treatment/radioprotective-agent.md b/content/docs/definitions/treatment/radioprotective-agent.md
new file mode 100644
index 0000000..3162b54
--- /dev/null
+++ b/content/docs/definitions/treatment/radioprotective-agent.md
@@ -0,0 +1,18 @@
+---
+title: Treatment - Radioprotective Agent
+linkTitle: Radioprotective Agent
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Medical Skill:|1|
+|Facility Tech Level:|1|
+|Duration:|200.0 millisols|
+|Self Admin:|true|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/treatment/skin-graft.md b/content/docs/definitions/treatment/skin-graft.md
new file mode 100644
index 0000000..2384092
--- /dev/null
+++ b/content/docs/definitions/treatment/skin-graft.md
@@ -0,0 +1,18 @@
+---
+title: Treatment - Skin Graft
+linkTitle: Skin Graft
+toc_hide: true
+hide_summary: true
+---
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Medical Skill:|4|
+|Facility Tech Level:|4|
+|Duration:|1000.0 millisols|
+|Self Admin:|false|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/vehicle/_index.md b/content/docs/definitions/vehicle/_index.md
new file mode 100644
index 0000000..603eb54
--- /dev/null
+++ b/content/docs/definitions/vehicle/_index.md
@@ -0,0 +1,21 @@
+---
+title: Vehicle Spec
+description: Types of Vehicles Featured for Mars Surface Operations
+---
+
+
+
+
+{{< alert color="success" >}}These can be changed via the XML file _vehicles.xml_. See [XML Files](/docs/guide/xml-files/){{< /alert >}}
+
+
+- [Cargo Drone](../vehicle/cargo-drone)
+- [Cargo Rover](../vehicle/cargo-rover)
+- [Delivery Drone](../vehicle/delivery-drone)
+- [Explorer Rover](../vehicle/explorer-rover)
+- [Light Utility Vehicle](../vehicle/light-utility-vehicle)
+- [Long Range Explorer](../vehicle/long-range-explorer)
+- [Transport Rover](../vehicle/transport-rover)
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
diff --git a/content/docs/definitions/vehicle/cargo-drone.md b/content/docs/definitions/vehicle/cargo-drone.md
new file mode 100644
index 0000000..28ecf94
--- /dev/null
+++ b/content/docs/definitions/vehicle/cargo-drone.md
@@ -0,0 +1,32 @@
+---
+title: Vehicle Spec - Cargo Drone
+linkTitle: Cargo Drone
+toc_hide: true
+hide_summary: true
+---
+## Description
+The Cargo Drone is an unmanned aerial vehicle used for transport of cargo between settlements.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Base Speed:|40.0 kmph|
+|Crew Size:|0|
+|Empty Mass:| kg|
+|Width:|1.75|
+|Length:|1.75|
+|Fuel Efficiency:|0.95|
+|Attachment Slots:|0|
+
+
+## Storage Capacity
+
+| Resource | Amount |
+|--------:|:------|
+|[Water](/docs/definitions/resource/water)|600.0|
+|[Oxygen](/docs/definitions/resource/oxygen)|300.0|
+|[Methane](/docs/definitions/resource/methane)|300.0|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/vehicle/cargo-rover.md b/content/docs/definitions/vehicle/cargo-rover.md
new file mode 100644
index 0000000..80039c1
--- /dev/null
+++ b/content/docs/definitions/vehicle/cargo-rover.md
@@ -0,0 +1,42 @@
+---
+title: Vehicle Spec - Cargo Rover
+linkTitle: Cargo Rover
+toc_hide: true
+hide_summary: true
+---
+## Description
+The Cargo Rover is for transporting cargo from one settlement to another.
It can have fit only 2 people in order to maximize cargo space.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Base Speed:|30.0 kmph|
+|Crew Size:|2|
+|Empty Mass:| kg|
+|Width:|4.0|
+|Length:|8.0|
+|Fuel Efficiency:|0.9|
+|Sickbay Tech Level:||
+|Sickbay Beds:|1|
+|Attachment Slots:|0|
+
+
+## Storage Capacity
+
+| Resource | Amount |
+|--------:|:------|
+|[Methanol](/docs/definitions/resource/methanol)|400.0|
+|[Grey water](/docs/definitions/resource/grey-water)|200.0|
+|[Nitrogen](/docs/definitions/resource/nitrogen)|16.0|
+|[Black water](/docs/definitions/resource/black-water)|50.0|
+|[Food](/docs/definitions/resource/food)|250.0|
+|[Water](/docs/definitions/resource/water)|800.0|
+|[Oxygen](/docs/definitions/resource/oxygen)|650.0|
+|[Carbon dioxide](/docs/definitions/resource/carbon-dioxide)|8.0|
+|[Food waste](/docs/definitions/resource/food-waste)|16.0|
+|[Solid waste](/docs/definitions/resource/solid-waste)|80.0|
+|[Toxic waste](/docs/definitions/resource/toxic-waste)|16.0|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/vehicle/delivery-drone.md b/content/docs/definitions/vehicle/delivery-drone.md
new file mode 100644
index 0000000..2fa1d49
--- /dev/null
+++ b/content/docs/definitions/vehicle/delivery-drone.md
@@ -0,0 +1,32 @@
+---
+title: Vehicle Spec - Delivery Drone
+linkTitle: Delivery Drone
+toc_hide: true
+hide_summary: true
+---
+## Description
+The Delivery Drone is an unmanned aerial vehicle used for dropping off light cargo at nearby depots and settlements.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Base Speed:|40.0 kmph|
+|Crew Size:|0|
+|Empty Mass:| kg|
+|Width:|1.75|
+|Length:|1.75|
+|Fuel Efficiency:|0.95|
+|Attachment Slots:|0|
+
+
+## Storage Capacity
+
+| Resource | Amount |
+|--------:|:------|
+|[Methanol](/docs/definitions/resource/methanol)|150.0|
+|[Water](/docs/definitions/resource/water)|300.0|
+|[Oxygen](/docs/definitions/resource/oxygen)|225.0|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/vehicle/explorer-rover.md b/content/docs/definitions/vehicle/explorer-rover.md
new file mode 100644
index 0000000..7e625c0
--- /dev/null
+++ b/content/docs/definitions/vehicle/explorer-rover.md
@@ -0,0 +1,44 @@
+---
+title: Vehicle Spec - Explorer Rover
+linkTitle: Explorer Rover
+toc_hide: true
+hide_summary: true
+---
+## Description
+The Explorer Rover is the only rover that has both a lab and a sick bay bed.
It collects rock samples, ice and regolith.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Base Speed:|40.0 kmph|
+|Crew Size:|4|
+|Empty Mass:| kg|
+|Width:|3.5|
+|Length:|8.0|
+|Fuel Efficiency:|0.8|
+|Lab Tech Level:|1|
+|Lab Specialties:|[AREOLOGY, CHEMISTRY]|
+|Sickbay Tech Level:||
+|Sickbay Beds:|1|
+|Attachment Slots:|0|
+
+
+## Storage Capacity
+
+| Resource | Amount |
+|--------:|:------|
+|[Methanol](/docs/definitions/resource/methanol)|100.0|
+|[Grey water](/docs/definitions/resource/grey-water)|20.0|
+|[Nitrogen](/docs/definitions/resource/nitrogen)|1.0|
+|[Black water](/docs/definitions/resource/black-water)|5.0|
+|[Food](/docs/definitions/resource/food)|70.0|
+|[Water](/docs/definitions/resource/water)|200.0|
+|[Oxygen](/docs/definitions/resource/oxygen)|180.0|
+|[Carbon dioxide](/docs/definitions/resource/carbon-dioxide)|1.0|
+|[Food waste](/docs/definitions/resource/food-waste)|10.0|
+|[Solid waste](/docs/definitions/resource/solid-waste)|20.0|
+|[Toxic waste](/docs/definitions/resource/toxic-waste)|2.0|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/vehicle/light-utility-vehicle.md b/content/docs/definitions/vehicle/light-utility-vehicle.md
new file mode 100644
index 0000000..8d9dbf6
--- /dev/null
+++ b/content/docs/definitions/vehicle/light-utility-vehicle.md
@@ -0,0 +1,39 @@
+---
+title: Vehicle Spec - Light Utility Vehicle
+linkTitle: Light Utility Vehicle
+toc_hide: true
+hide_summary: true
+---
+## Description
+The Light Utility Vehicle (LUV) is a small, unpressurized, one crew utility vehicle with attachable parts.
It is used for construction and mining mission.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Base Speed:|30.0 kmph|
+|Crew Size:|1|
+|Empty Mass:| kg|
+|Width:|1.7|
+|Length:|2.55|
+|Fuel Efficiency:|0.9|
+|Attachment Slots:|3|
+
+## Attachments
+
+- [Bulldozer Blade](/docs/definitions/part/bulldozer-blade)
+- [Pneumatic Drill](/docs/definitions/part/pneumatic-drill)
+- [Backhoe](/docs/definitions/part/backhoe)
+- [Soil Compactor](/docs/definitions/part/soil-compactor)
+- [Drilling Rig](/docs/definitions/part/drilling-rig)
+- [Crane Boom](/docs/definitions/part/crane-boom)
+
+## Storage Capacity
+
+| Resource | Amount |
+|--------:|:------|
+|[Methanol](/docs/definitions/resource/methanol)|10.0|
+|[Oxygen](/docs/definitions/resource/oxygen)|15.0|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/vehicle/long-range-explorer.md b/content/docs/definitions/vehicle/long-range-explorer.md
new file mode 100644
index 0000000..40ac951
--- /dev/null
+++ b/content/docs/definitions/vehicle/long-range-explorer.md
@@ -0,0 +1,44 @@
+---
+title: Vehicle Spec - Long Range Explorer
+linkTitle: Long Range Explorer
+toc_hide: true
+hide_summary: true
+---
+## Description
+The Long Range Explorer is an extended range version of the Explorer Rover.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Base Speed:|40.0 kmph|
+|Crew Size:|4|
+|Empty Mass:| kg|
+|Width:|3.5|
+|Length:|8.0|
+|Fuel Efficiency:|0.85|
+|Lab Tech Level:|1|
+|Lab Specialties:|[AREOLOGY, CHEMISTRY]|
+|Sickbay Tech Level:||
+|Sickbay Beds:|1|
+|Attachment Slots:|0|
+
+
+## Storage Capacity
+
+| Resource | Amount |
+|--------:|:------|
+|[Methanol](/docs/definitions/resource/methanol)|150.0|
+|[Grey water](/docs/definitions/resource/grey-water)|20.0|
+|[Nitrogen](/docs/definitions/resource/nitrogen)|2.0|
+|[Black water](/docs/definitions/resource/black-water)|10.0|
+|[Food](/docs/definitions/resource/food)|90.0|
+|[Water](/docs/definitions/resource/water)|300.0|
+|[Oxygen](/docs/definitions/resource/oxygen)|250.0|
+|[Carbon dioxide](/docs/definitions/resource/carbon-dioxide)|2.0|
+|[Food waste](/docs/definitions/resource/food-waste)|8.0|
+|[Solid waste](/docs/definitions/resource/solid-waste)|20.0|
+|[Toxic waste](/docs/definitions/resource/toxic-waste)|4.0|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/definitions/vehicle/transport-rover.md b/content/docs/definitions/vehicle/transport-rover.md
new file mode 100644
index 0000000..5bf88fa
--- /dev/null
+++ b/content/docs/definitions/vehicle/transport-rover.md
@@ -0,0 +1,42 @@
+---
+title: Vehicle Spec - Transport Rover
+linkTitle: Transport Rover
+toc_hide: true
+hide_summary: true
+---
+## Description
+The Transport Rover is for transporting people from one settlement to another
and can accommodate up to 8 people.
+
+## Characteristics
+
+| Attribute | Value |
+|--------:|:------|
+|Base Speed:|30.0 kmph|
+|Crew Size:|8|
+|Empty Mass:| kg|
+|Width:|3.5|
+|Length:|9.5|
+|Fuel Efficiency:|0.85|
+|Sickbay Tech Level:||
+|Sickbay Beds:|2|
+|Attachment Slots:|0|
+
+
+## Storage Capacity
+
+| Resource | Amount |
+|--------:|:------|
+|[Methanol](/docs/definitions/resource/methanol)|300.0|
+|[Grey water](/docs/definitions/resource/grey-water)|200.0|
+|[Nitrogen](/docs/definitions/resource/nitrogen)|16.0|
+|[Black water](/docs/definitions/resource/black-water)|50.0|
+|[Food](/docs/definitions/resource/food)|200.0|
+|[Water](/docs/definitions/resource/water)|600.0|
+|[Oxygen](/docs/definitions/resource/oxygen)|450.0|
+|[Carbon dioxide](/docs/definitions/resource/carbon-dioxide)|8.0|
+|[Food waste](/docs/definitions/resource/food-waste)|16.0|
+|[Solid waste](/docs/definitions/resource/solid-waste)|80.0|
+|[Toxic waste](/docs/definitions/resource/toxic-waste)|16.0|
+
+Version: pre-3.9.0 Generated on: 2024-12-28T22:56:23.2942481
+{.small }
\ No newline at end of file
diff --git a/content/docs/guide/_index.md b/content/docs/guide/_index.md
new file mode 100644
index 0000000..dbf6e9c
--- /dev/null
+++ b/content/docs/guide/_index.md
@@ -0,0 +1,8 @@
+---
+title: User Guide
+description: User guide of the Simulation
+weight: 15
+---
+
+The simulation uses Java Swing as a command line application. The app provides inline help on detailed functions. This guide provides higher level information.
+
diff --git a/content/docs/guide/xml-files.md b/content/docs/guide/xml-files.md
new file mode 100644
index 0000000..e26fa5d
--- /dev/null
+++ b/content/docs/guide/xml-files.md
@@ -0,0 +1,61 @@
+---
+title: Configuring XML Files
+linktitle: XML Files
+description: Overriding the XML Configurations
+weight: 80
+---
+
+This guide will get you started with editing the XML files.
+
+Most of the Mars Simulation Project's configuration files are primarily written in XML format. Some are in JSON.
+
+At the beginning of a sim (whether it is starting a brand new sim, or loading from a new sim), the values/attributes/properties contained in these xml files will be *read* into your local machine's Java VM memory.
+
+Most attributes and properties are designed to tolerate a range of values. However, they are not all created equal to have the same degree of user customization.
+
+Note that when saving a sim, it will not alter any XML files.
+
+## Location
+
+At startup, they are being copied into user's home directory. Players may manipulate these XML files in /.mars-sim/xml folder. The file can be editted in this location but changes will be overwritten when a new simulation starts unless the file name is added to the exception.txt file.
+
+## Backup
+
+It is recommended that you make a backup of the original xml configuration file before editing them as edited XML files often contain errors that may result in a failure for mars-sim to boot up.
+
+Whenever a new build or version of mars-sim is executed, it will attempt to compare the version content of the `version.txt` file in the `/.mars-sim/xml` folder to determine if it matches the core engine's build version.
+
+If they don't match, mars-sim will attempt to backup the existing XML files on user home into a new directory inside the `backup` folder.
+
+## List of XML files
+
+| File name | Description |
+|------|-------|
+| buildings.xml | Define new buildings with functions |
+| construction.xml | Define type of foundations, frames and buildings |
+| country/country\__name_.xml | Define settler's names for a country |
+| crew/crew\__name_.xml | Store a crew roster |
+| scenario/scenario\__name_.xml | Define the default settlement scenario |
+| settlement/settlement\__name_.xml | Define the building placements for a settlement template phase |
+| building_packages.xml | Define building packages for use in settlement templates |
+| buildings.xml | Define building placement for use in settlement templates |
+| construction.xml | Define a list of foundations, frames and buildings that can be constructed |
+| crops.xml | Define food crops grown in greenhouses |
+| food_production.xml | Define food technology related processes |
+| governance.xml | Define country and sponsor objectives and mission agendas, as well as settlement and rover naming scheme |
+| landmarks.xml | Define landmarks on the surface of Mars |
+| malfunctions.xml | Define malfunctions that can occur in the sim |
+| manufacturing.xml | Define manufacturing processes |
+| meals.xml | Define main dish and side dish recipes |
+| medical.xml | Define illnesses or treatments |
+| minerals.xml | Define mineral types |
+| part_packages.xml | Define part packages for initial settlements or resupplies from Earth |
+| parts.xml | Define parts |
+| people.xml | Define properties related to people |
+| resource_process.xml | Define resource processes |
+| resources.xml | Define resources |
+| resupplies.xml | Define initial settlement resupply packages from Earth |
+| robots.xml | Define robot types |
+| settlements.xml | Define properties related to settlements |
+| simulation.xml | Define simulation properties |
+| vehicles.xml | Define properties related to rovers, luvs, and drones |
\ No newline at end of file
diff --git a/content/docs/screenshots/_index.md b/content/docs/screenshots/_index.md
new file mode 100644
index 0000000..17b90de
--- /dev/null
+++ b/content/docs/screenshots/_index.md
@@ -0,0 +1,35 @@
+---
+title: Screenshots
+description: Example of the Swing UI
+date: 2017-01-05
+weight: 50
+---
+
+{{% alert color="warning" %}}
+This page does not use the latest release.
+{{% /alert %}}
+
+Screenshots from Mars Simulation Project Version 3.1.0
+
+{{< figure src="/images/maps.png" caption="Settlement Map and Mars Navigator Mini-map" >}}
+
+{{< figure src="/images/MiningOutpost.png" caption="Mining Outpost" >}}
+
+{{< figure src="/images/monitortool.png" caption="Monitor Tool" >}}
+
+{{< figure src="/images/helpbrowser.png" caption="Help Browser" >}}
+
+{{< figure src="/images/infowindows.png" caption="Info Windows: Vehicle/Settlement/Bots" >}}
+
+{{< figure src="/images/personwindow.png" caption="Info Window: Person" >}}
+
+{{< figure src="/images/creweditor.png" caption="Crew Editor" >}}
+
+
+
+
+
+
+
+
+
diff --git a/content/docs/started/_index.md b/content/docs/started/_index.md
new file mode 100644
index 0000000..bcf6dd5
--- /dev/null
+++ b/content/docs/started/_index.md
@@ -0,0 +1,11 @@
+---
+title: Get Started
+description: Guide to getting the Simulation running
+weight: 15
+menu:
+ main:
+ weight: 20
+---
+
+The simulation provides a local command line application based on Java Swing. This section describes how to get started using the Simulation.
+
diff --git a/content/docs/started/installation.md b/content/docs/started/installation.md
new file mode 100644
index 0000000..77d58a0
--- /dev/null
+++ b/content/docs/started/installation.md
@@ -0,0 +1,27 @@
+---
+title: Installation
+description: Details of installation procedure
+weight: 10
+---
+
+## Prerequisites
+
+Currently, mars-sim supports Java 21 which is a LTS (Long Term Support release). Requires only JRE 21 for running mars-sim. See [JDK21](https://jdk.java.net/java-se-ri/21)
+
+The application supports Windows or Linux. MacOS is supported but not via a command script; Java must be called directly.
+
+## Applications
+
+The installation consists of 2 application:
+
+- A UI application based on Java Swing
+- A headless server version that can be accessed remotely via an SSH interface.
+
+## Installation Process
+
+The installation process is simple requiring command line access.
+
+1. Select the latest release from the GitHub site[Releases](https://github.com/mars-sim/mars-sim/releases).
+2. Download the ZIP file of the release
+3. Extract the contents of the file to a local folder
+
diff --git a/content/docs/started/starting.md b/content/docs/started/starting.md
new file mode 100644
index 0000000..a1358be
--- /dev/null
+++ b/content/docs/started/starting.md
@@ -0,0 +1,53 @@
+---
+title: Starting the Simulation
+linktitle: Starting
+description: Starting Simulation instructions
+weight: 30
+---
+
+The distribution supports both Windows and Linux.
+It also provides 2 variants of the mars-sim application.
+1. Swing based UI
+2. Console based engine that is accessed via SSH
+
+Start commands are:
+* bin/mars-sim-swing - Linux start script for the Swing variant
+* bin/mars-sim-swing.cmd - Window start script for the Swing variant
+* bin/mars-sim-console - Linux start script for the Console headless variant
+* bin/mars-sim-console.cmd - Window start script for the Console headless variant
+
+
+```
+Common command line arguments are:
+ -baseurl
URL to the remote content repository
+ (defaults to master in GitHub)
+ -crew Enable or disable use of the crews
+ -datadir Path to the data directory for
+ simulation files (defaults to user.home)
+ -diags <,.....> Enable diagnostics modules
+ -help Display help options
+ -lat Set the latitude of the new template Settlement
+ -load Load the a previously saved sim.
+ No argument open file selection dialog.
+ 'default' will use default
+ -lon Set the longitude of the new template Settlement
+ -new Enable quick start
+ -scenario New simulation from a scenario
+
+ -sponsor Set the sponsor for the settlement template
+ -template New simulation from a template
+ -timeratio Define the time ratio of the
+ simulation
+Swing variant arguments
+ -cleanui Disable loading stored UI configurations
+ -noaudio Disable the audio
+ -nogui Disable the main UI
+ -profile Set up the Commander Profile
+ -sandbox Start in Sandbox Mode
+ -site Start the Scenario Editor
+
+Console variant arguments
+ -noremote Do not start a remote console service
+ -remote Run the remote console service [default]
+ -resetadmin Reset the internal admin password
+```
\ No newline at end of file
diff --git a/images/banner.jpg b/content/featured-background.jpg
similarity index 100%
rename from images/banner.jpg
rename to content/featured-background.jpg
diff --git a/content/search.md b/content/search.md
new file mode 100644
index 0000000..394feea
--- /dev/null
+++ b/content/search.md
@@ -0,0 +1,4 @@
+---
+title: Search Results
+layout: search
+---
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..a6e3161
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,5 @@
+module github.com/google/docsy-example
+
+go 1.12
+
+require github.com/google/docsy v0.11.0
diff --git a/hugo.yaml b/hugo.yaml
new file mode 100644
index 0000000..67bc06d
--- /dev/null
+++ b/hugo.yaml
@@ -0,0 +1,184 @@
+baseURL: https://marssim.space
+title: MarsSim Project
+
+# cSpell:ignore goldmark github hugo readingtime docsy subdir lastmod pygments linenos catmullrom norsk gu
+
+# Language settings
+contentDir: content
+defaultContentLanguage: en
+defaultContentLanguageInSubdir: false
+# Useful when translating.
+enableMissingTranslationPlaceholders: true
+
+enableRobotsTXT: true
+
+# Will give values to .Lastmod etc.
+enableGitInfo: true
+
+# Comment out to enable taxonomies in Docsy
+# disableKinds: [taxonomy, taxonomyTerm]
+
+# You can add your own taxonomies
+taxonomies:
+ tag: tags
+ category: categories
+
+# Highlighting config
+pygmentsCodeFences: true
+pygmentsUseClasses: false
+# Use the new Chroma Go highlighter in Hugo.
+pygmentsUseClassic: false
+# pygmentsOptions: "linenos=table"
+# See https://help.farbox.com/pygments.html
+pygmentsStyle: tango
+
+# Configure how URLs look like per section.
+permalinks:
+ blog: /:section/:year/:month/:day/:slug/
+
+# Image processing configuration.
+imaging:
+ resampleFilter: CatmullRom
+ quality: 75
+ anchor: smart
+
+# Language configuration
+
+
+markup:
+ goldmark:
+ parser:
+ attribute:
+ block: true
+ renderer:
+ unsafe: true
+ highlight:
+ # See a complete list of available styles at https://xyproto.github.io/splash/docs/all.html
+ style: tango
+ # Uncomment if you want your chosen highlight style used for code blocks without a specified language
+ # guessSyntax: true
+
+# Everything below this are Site Params
+
+# Comment out if you don't want the "print entire section" link enabled.
+#outputs:
+# section: [HTML, print, RSS]
+
+params:
+ taxonomy:
+ # set taxonomyCloud = [] to hide taxonomy clouds
+ taxonomyCloud: [tags, categories]
+
+ # If used, must have same length as taxonomyCloud
+ taxonomyCloudTitle: [Tag Cloud, Categories]
+
+ # set taxonomyPageHeader = [] to hide taxonomies on the page headers
+ taxonomyPageHeader: [tags, categories]
+
+ #privacy_policy: https://policies.google.com/privacy
+
+ # First one is picked as the Twitter card image if not set on page.
+ # images: [images/project-illustration.png]
+
+ # Menu title if your navbar has a versions selector to access old versions of your site.
+ # This menu appears only if you have at least one [params.versions] set.
+ version_menu: Releases
+
+ # Flag used in the "version-banner" partial to decide whether to display a
+ # banner on every page indicating that this is an archived version of the docs.
+ # Set this flag to "true" if you want to display the banner.
+ archived_version: false
+
+ # The version number for the version of the docs represented in this doc set.
+ # Used in the "version-banner" partial to display a version number for the
+ # current doc set.
+ version: 0.0
+
+ # A link to latest version of the docs. Used in the "version-banner" partial to
+ # point people to the main doc site.
+ url_latest_version: https://example.com
+
+ # Repository configuration (URLs for in-page links to opening issues and suggesting changes)
+ #github_repo: https://github.com/mars-sim/mars-sim.github.io
+
+ # An optional link to a related project repo. For example, the sibling repository where your product code lives.
+ github_project_repo: https://github.com/mars-sim/mars-sim
+
+ # Specify a value here if your content directory is not in your repo's root directory
+ # github_subdir: ""
+
+ # Uncomment this if your GitHub repo does not have "main" as the default branch,
+ # or specify a new value if you want to reference another branch in your GitHub links
+ github_branch: main
+
+ # Google Custom Search Engine ID. Remove or comment out to disable search.
+ #gcs_engine_id: d72aa9b2712488cc3
+
+ # Enable Lunr.js offline search
+ offlineSearch: true
+
+ # Enable syntax highlighting and copy buttons on code blocks with Prism
+ prism_syntax_highlighting: false
+
+ copyright:
+ authors: Mars Sim Project | [CC BY 4.0](https://creativecommons.org/licenses/by/4.0) |
+ from_year: 2018
+
+ # User interface configuration
+ ui:
+ # Set to true to disable breadcrumb navigation.
+ breadcrumb_disable: false
+ # Set to false if you don't want to display a logo (/assets/icons/logo.svg) in the top navbar
+ navbar_logo: true
+ # Set to true if you don't want the top navbar to be translucent when over a `block/cover`, like on the homepage.
+ navbar_translucent_over_cover_disable: false
+ # Enable to show the side bar menu in its compact state.
+ sidebar_menu_compact: true
+ # Set to true to hide the sidebar search box (the top nav search box will still be displayed if search is enabled)
+ sidebar_search_disable: true
+
+ # Adds a H2 section titled "Feedback" to the bottom of each doc. The responses are sent to Google Analytics as events.
+ # This feature depends on [services.googleAnalytics] and will be disabled if "services.googleAnalytics.id" is not set.
+ # If you want this feature, but occasionally need to remove the "Feedback" section from a single page,
+ # add "hide_feedback: true" to the page's front matter.
+ feedback:
+ enable: false
+ # The responses that the user sees after clicking "yes" (the page was helpful) or "no" (the page was not helpful).
+ 'yes': >-
+ Glad to hear it! Please tell us how we can improve .
+ 'no': >-
+ Sorry to hear that. Please tell us how we can improve .
+
+ # Adds a reading time to the top of each doc.
+ # If you want this feature, but occasionally need to remove the Reading time from a single page,
+ # add "hide_readingtime: true" to the page's front matter
+ readingtime:
+ enable: false
+
+ links:
+ # End user relevant links. These will show up on left side of footer and in the community page if you have one.
+ user:
+ - name: User Discussions
+ url: https://github.com/orgs/mars-sim/discussions
+ icon: fa-solid fa-comments
+ desc: Discussion and help from your fellow users
+ # Developer relevant links. These will show up on right side of footer and in the community page if you have one.
+ developer:
+ - name: GitHub
+ url: https://github.com/mars-sim/mars-sim
+ icon: fab fa-github
+ desc: Development takes place here!
+ - name: Development Wiki
+ url: https://github.com/mars-sim/mars-sim/wiki
+ icon: fa-solid fa-book-open
+ desc: Development takes place here!
+
+module:
+ # Uncomment the next line to build and serve using local docsy clone declared in the named Hugo workspace:
+ #workspace: docsy.work
+ hugoVersion:
+ extended: true
+ min: 0.110.0
+ imports:
+ - path: github.com/google/docsy
+ disable: false
\ No newline at end of file
diff --git a/images/360px-Hellas_basin_topo.jpg b/images/360px-Hellas_basin_topo.jpg
deleted file mode 100644
index b0a291d..0000000
Binary files a/images/360px-Hellas_basin_topo.jpg and /dev/null differ
diff --git a/images/ISRU, CE Criteria vs Site Factors.jpg b/images/ISRU, CE Criteria vs Site Factors.jpg
deleted file mode 100644
index 0422ae9..0000000
Binary files a/images/ISRU, CE Criteria vs Site Factors.jpg and /dev/null differ
diff --git a/images/MSPLogo2.jpg b/images/MSPLogo2.jpg
deleted file mode 100644
index 871156c..0000000
Binary files a/images/MSPLogo2.jpg and /dev/null differ
diff --git a/images/MSP_Logo.jpg b/images/MSP_Logo.jpg
deleted file mode 100644
index 37aa395..0000000
Binary files a/images/MSP_Logo.jpg and /dev/null differ
diff --git a/images/MiningOutpostThumb.png b/images/MiningOutpostThumb.png
deleted file mode 100644
index ef73dc5..0000000
Binary files a/images/MiningOutpostThumb.png and /dev/null differ
diff --git a/images/NASAroadmap.jpg b/images/NASAroadmap.jpg
deleted file mode 100644
index 9f845c1..0000000
Binary files a/images/NASAroadmap.jpg and /dev/null differ
diff --git a/images/Pressurized Cybertruck on Mars.jpg b/images/Pressurized Cybertruck on Mars.jpg
deleted file mode 100644
index 23daef0..0000000
Binary files a/images/Pressurized Cybertruck on Mars.jpg and /dev/null differ
diff --git a/images/Room in Mars base by Phil Smith (2005).jpg b/images/Room in Mars base by Phil Smith (2005).jpg
deleted file mode 100644
index 6180b0c..0000000
Binary files a/images/Room in Mars base by Phil Smith (2005).jpg and /dev/null differ
diff --git a/images/Science Site Criteria vs Site Factors.jpg b/images/Science Site Criteria vs Site Factors.jpg
deleted file mode 100644
index cf63fc2..0000000
Binary files a/images/Science Site Criteria vs Site Factors.jpg and /dev/null differ
diff --git a/images/aboutMSP_2.jpg b/images/aboutMSP_2.jpg
deleted file mode 100644
index a61322c..0000000
Binary files a/images/aboutMSP_2.jpg and /dev/null differ
diff --git a/images/arcadia planitia.jpg b/images/arcadia planitia.jpg
deleted file mode 100644
index 9aad9c7..0000000
Binary files a/images/arcadia planitia.jpg and /dev/null differ
diff --git a/images/basalt regolith.jpg b/images/basalt regolith.jpg
deleted file mode 100644
index ff3f734..0000000
Binary files a/images/basalt regolith.jpg and /dev/null differ
diff --git a/images/conferenceroom.jpg b/images/conferenceroom.jpg
deleted file mode 100644
index a9a0b26..0000000
Binary files a/images/conferenceroom.jpg and /dev/null differ
diff --git a/images/marsdirect2.jpg b/images/marsdirect2.jpg
deleted file mode 100644
index 77a7b58..0000000
Binary files a/images/marsdirect2.jpg and /dev/null differ
diff --git a/images/marslive.jpg b/images/marslive.jpg
deleted file mode 100644
index e51f3f7..0000000
Binary files a/images/marslive.jpg and /dev/null differ
diff --git a/images/settlement1.jpg b/images/settlement1.jpg
deleted file mode 100644
index 1172d49..0000000
Binary files a/images/settlement1.jpg and /dev/null differ
diff --git a/images/stats1.jpg b/images/stats1.jpg
deleted file mode 100644
index a569830..0000000
Binary files a/images/stats1.jpg and /dev/null differ
diff --git a/images/test/test.txt b/images/test/test.txt
deleted file mode 100644
index 4871fd5..0000000
--- a/images/test/test.txt
+++ /dev/null
@@ -1 +0,0 @@
-test.txt
diff --git a/images/twosettlers3.png b/images/twosettlers3.png
deleted file mode 100644
index e08344b..0000000
Binary files a/images/twosettlers3.png and /dev/null differ
diff --git a/images/water on north hemi Mars.png b/images/water on north hemi Mars.png
deleted file mode 100644
index a94de8c..0000000
Binary files a/images/water on north hemi Mars.png and /dev/null differ
diff --git a/index.html b/index.html
deleted file mode 100644
index 0adf9a7..0000000
--- a/index.html
+++ /dev/null
@@ -1,605 +0,0 @@
-
-
-
-
- Mars Simulation Project
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- (Image showing the interconnected modules forming a pressurized environment for living)
-
-
-
The Mars Simulation Project (mars-sim) is an open source project that
- simulates mission planning, operations and activities of initial settlers on Mars with high
- computer modeling details.
-
-
-
Have you ever been fascinated by reality TV shows in which how contestants face tensions and
- survive tests? Teamwork is put to test. Loners come out of their own social isolation to
- collaborate with others to accomplish mutual goals. Driven leaders struggle in decision-making
- but exercise enough self-restrain to avoid pitting against others having better solutions to
- resolve a challenge.
-
-
-
-
-
- (Image from MarsOne)
-
-
-
-
-
-
-
-
What mars-sim attempts to model is how early settlers work together to sustain their base.
- While high-level strategic and mission planning is essential, daily operation of a base falls
- on how well each individual behaves and relates to one another. Good teamwork and maintaining
- relationship with one another is crucial. mars-sim endows each settler with personalities,
- natural attributes and job skills, and preferences (likes-and-dislikes on a bunch of tasks),
- as there are tasks to get done in developing and sustaining the settlement. mars-sim defines an
- assigned role and a job position for each settler with a myriad of tasks to perform. While most
- tasks are carried out independently by individuals, some require teaming up with others to get
- done.
-
-
With private ventures such as SpaceX offering new vision of going to Mars and the Mars One
- Foundation seeking to recruit future settlers on a one-way ticket to Mars, mars-sim is giving
- the audience a preview of the coming attractions in unraveling the intricate innerworking of
- establishing a human foothold on Mars.
-
-
-
-
-
- (Image credit: Mashable.com, 2013)
-
-
-
-
-
The good news is that, unlike in a TV soap opera in that the relationship dynamics of the characters are scripted to appeal to a qualified audience, actions and reactions of each settler in mars-sim are emergent. They interact with one anotherunder certain mission requirements and environmental stressors as the settlement is being developed. Their personality and natural attributes can positively or negatively affect social networking. Just like in real life, the bond between any two individuals gets strengthened with positive feedback and worsen with negative exchange, or degraded over time when less contact is made.
-
-
-
-
-
- (Cutaway of a proposed 4-person Habitat Module. Image: Ian Warpole, Scientific American)
-
-
-
-
-
-
Below are the typical concerns you may have to work out if you were a mission planner for a
- human-rated Mars mission:
- (a). What types of psychological profile of a team should I select for each mission going
- to Mars to jump-start a colony vs. sustain the settlement?
- (b). How many of them should I send on each mission, accompanied with what resources, parts,
- equipment, vehicles, and building modules?
- (c). How often should I send these resupply missions to seed each existing settlement or to
- start a new outpost nearby?
- (d). What interventions do I need to do to ensure these settlers balance between their own
- personal needs and the collective needs?
-
- In mars-sim, you will have an opportunity to flesh out your own ideas and test your hypotheses in how
- a settlement should be run and how mission planning be done.
-
-
-
-
-
- (Image from Outerplaces.com and Mars-One.com )
-
-
-
-
-
-
-
-
-
-
Screenshots from Mars Simulation Project Version 3.1.0
-
-
-
-
-
-
-
- Settlement Map and Mars Navigator Mini-map
-
-
-
-
-
-
-
- Mining Outpost
-
-
-
-
-
-
-
-
-
-
- Monitor Tool
-
-
-
-
-
-
-
- Help Browser
-
-
-
-
-
-
-
-
-
-
- Info Windows: Vehicle/Settlement/Bots
-
-
-
-
-
-
-
- Info Window: Person
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
Robert Zubrin once proposed four phases in the economics of Mars colonization. Each represents a new progressive stage of increased human activities toward building a human civilization on Mars.
-
-
-
-
-
- (Image based on Mars Direct, Robert Zubrin, The Mars Society)
-
-
-
-
-
- (1). EXPLORATION : Orbital survey of Mars, telescopic and robotic survey, precursor sample return, scientific investigations, human flyby/EVA/landing/return;
-
-
-
-
-
- (How soon before humans trek across the landscape of Mars? Artist's concept depicts crew members involved in sample analysis on Mars. Image from NASA)
-
-
-
-
-
(2). BASE BUILDING : Semi-permanent laboratory/habitat modules, crew rotations, water/ice recovery, in-situ fuel production, outpost maintenance/sustainment;
-
-
-
-
- (Cutout of a Multi-purpose Habitat. Image from MarsOne)
-
-
-
-
(3). SETTLEMENT : Colony expansion, food and resources supply chain, terrestrial exploitation, economic viability, industrial production, infrastructure redundancy;
-
-
-
-
- (Mars Under Construction. Image: Bryan Versteeg/Spacehabs.com)
-
-
-
-
(4). TERRAFORMING : Altering global climate, large scale geo-engineering, permanently transforming human surface activities.
-
-
-
Currently, mars-sim focuses primarily in offering a simulation engine showcasing human activities in the aforementioned phase 1 and some phase 2 and a little bit of phase 3. Below are the five core features of mars-sim:
-
-
-
-
-
- (Terraforming Mars is not for faint of heart. Image credit: Stefan Morrell. Sources: Christopher McKay, NASA Ames Research Center; James Graham, University of Wisconsin–Madison; Robert Zubrin, Mars Society; Margarita Marinova, California Institute of Technology)
-
-
-
-
-
-
-
(I). Mission Scenarios
-
-
mars-sim borrows from a variant form of the Mars Direct plan proposed by Zubrin and Baker in 1990s.
- Select 'New Sim' in the Main Menu will take you to the Simulation Configuration Editor.
-
- By default, you are presented with two settlements, namely a Mars Direct Base (Phase 1) with 4
- settlers and an Alpha Base (Phase 4) with 24 settlers. You are free to reconfigure this template.
-
-
In version 3.1.0, users may designate a space agency to sponsor each settlement. The names of
- the settler will be auto-generated to suit his/her national origin, based on the space agency chosen.
-
-
In terms of resupply mission, for a Mars Direct Base Phase 1, the built-in resupply schedule
- will send one new mission each Martian year (668 or 669 sols) for the next 3 years to replenish
- existing settlements. Using Resupply Tool, users can tweak the launch/arrival date, the number of
- settlers and the type/ quantity of supplies (including buildings, equipment, vehicles, resources,
- and parts).
-
-
-
-
-
-
- (Image from the Simulation Configuration Editor)
-
-
-
-
-
-
-
- (Image from the Crew Editor)
-
-
-
-
-
-
-
-
-
(II). Profile of Settlers
-
Each settler is assigned with a Job which will determine a list of relevant tasks and missions
- at a given Work Shift. There are a variety of Job in mars-sim: Architect, Areologist, Astronomer,
- Biologist, Botanist, Chef, Chemist, Doctor, Driver, Engineer, Manager, Mathematician, Meterologist,
- Physicist, Technician, and Trader. Users can change a person's Job in the Activity Tab.
-
-
In version 3.1.0, each settlement will have a leadership structure. For a settlement with less
- than 47 settlers, the hierachy comprises a commander, and sub-commander and a list of chiefs and a
- list of specialists. FOr a settlement with 48 people, a mayor will be elected. Each settler will
- have a given Role based on his/her natural attributes and skills. The roles are not fixed and can
- change over time.
-
-
A person's Skills Tab will show his current level of achievement on each skill subject. Each
- individual has a blend of academic skills (such as Aerology, Astronomy, Biology, Chemistry,
- Mathematics, Meteorology, Physics, etc.) and survival skills (such as Botany, Cooking, Construction,
- Driving, EVA Operations, Material Science, Mechanics, Medicine, Trading, etc.) that will contribute
- to the survival and sustainment of the settlement. When a settler takes up the role of a chef, the
- corresponding skill--namely cooking-- will improve. The one whose skill is higher level may mentor
- one whose skill is lower. Over time, settlers may cross train among themselves to improve skills or
- acquire new skills. With overlapping skills, settlers depend on one another to get through disasters
- and catastrophes.
-
-
Settlers perform tasks and activities according to their personal needs and the collective needs
- of the settlement. There are a myriad of tasks such as Growing crops, Sleeping, Cooking, Relaxing,
- Exercising, Doing Yoga, Eating a Meal, Performing Maintenance, Performing Experiments, Manufacturing,
- Tending Greenhouse, Entering/Exiting EVA, Driving Vehicle, Collecting Resources, Perform Study, and
- Teaching, etc.. Some tasks are more career-oriented than others. As you can imagine, chefs prepare
- meals, botanists tend greenhouses, technicians perform maintenance, engineers manufacture needed parts
- and equipment from local resources, etc..
-
-
Settlers also form tag teams to explore treacherous terrains, prospect rock samples and mine
- minerals. Based on supply and demand, they will set out excursions to trade with neighboring settlements
- as there are hundreds of items called "Trade Goods". Some of these items may be in surplus on one
- settlement but are in wants by another settlement. On the other hand, some settlers may have overwhelming
- scientific ambitions to just stay put and write proposals and conduct scientific study. Their goals would
- be earning Scientific Achievement Credits. As the primary researchers, they recruit collaborators on their
- projects. Without a doubt, settlers of Mars are pioneers of the next human frontier.
-
-
-
-
-
- (A Mars Expedition. Image credit: Douglas Shrock- the Artist Shrox)
-
-
-
-
-
-
-
-
-
(III). Health and Radiation Modeling
-
mars-sim simulates realistic scenarios in which settler will cope with accidents of all kinds,
- illnesses, injuries and even death. Each settler has 4 critical health attributes reflecting the
- person's current physical conditions: Hunger, Fatigue, Stress and Performance level. A person's
- overall health status may be reported as being well or being sick (such as Suffocating, Recovering
- from Anxiety Attack/Flu/Pulled Muscle, and Death, etc..)
-
-
In version 3.1.0, a radiation exposure modeling based on NASA's studies has been partially
- implemented to make it realistic. There are 3 possible type of radiation events : (A). The Baseline
- (B).the Galactic Cosmic Radiation (GCR) (C). Solar Energetic Event (SEP). Each with different level
- of radiation with SEP the highest level of exposure. The 3 body regions where the exposure are to be
- tracked are (1) Blood Forming Organ (BFO) (2) Ocular (3) Skin. In our modeling, there are 3 intervals
- (or counters) for the exposure: (1) 30 days (2) Annual (3) Career. e.g. for BFO, the max limits are
- set to be 250 mSV for 30 days, 500 mSV for Annual and 1000 mSV for Career.
-
-
As a side note here, the Mars rover Curiosity received an average dose of 300 milli-sieverts (mSv)
- over the 180-day journey. Note that 300 mSv is equivalent to 24 CAT scans, or more than 15x the annual
- radiation limit for a worker in a nuclear power plant.
-
-
One must be reminded that in the forseeable future, Mars is a by-and-large dangerous and
- unforgiving world. Survival hinges upon how well each settler responds to situations and how well
- they pull together as a team. Equipment can malfunction and building break down and require
- maintenance. There are times when one has to go out on a rescue mission to tow a stranded vehicle
- back to the base.
-
-
-
-
-
- (Working Inside Greenhouse. Image credit: Douglas Shrock- the Artist Shrox)
-
-
-
-
-
-
-
-
(IV). Social/Professional Interactions and Achievements
-
-
mars-sim simulates the overall professional relationship for the future settlers on Mars.
- In general, this social aspect is modeled by a 3-tier relationship indicator showing how close
- or how adversarial between any two individuals.
-
- Each settler bears an imprint of one's gender, date of birth, weight, height, BMI, age, blood type,
- a personality profile based on Myers-Briggs Type Indicators (MBTI) and Five Factor Model (FFM), and
- a set of natural attributes (such as Agility, Academic Aptitude, Attractiveness, Conversation,
- Endurance, Experience Aptitude, Leadership, Strength, Stress Resilience, and Teaching).
- These characteristics set in motion on how well a person interact with his/her team and others
- socially and professionally.
-
-
One can track how a person relate with another with the Relationship Tab. Suffice to say that
- each settler with one's personality types, coupling with his unique set of natural attributes and
- professional skills, create the destiny of his/her own.
-
-
A person's Science Tab lists the ongoing and finished scientific studies with others and the
- scientific achievement in his/her areas of endeavour.
-
-
-
-
-
- (Image credit: pioneer-city.com)
-
-
-
-
-
-
-
-
-
(V). Interconnectiveness
-
-
The Settlement Map provides each settlement a visual overview of the whereabout of each building,
- settler, bot and vehicle. You can see how buildings are seamlessly interconnected via hallways or
- tunnels. The Settlement Info Window provides clues on how well each system is functioning behind the
- scene. No two settlements are alike. You can make each settlement unique by having distinguishable
- mission footprints and infrastructures and by ways of how settlers behaves.
-
-
Beginning version 3.1.0, each settlement has an objective-- the overall development objective
- that certain activities such as manufacturing and food production processes tend to gear toward.
-
-
- The 6 possible objectives :
- (1). Crop Farm
- (2). Manufacturing
- (3). Research Center
- (4). Transportation Hub
- (5). Trade Town
- (6). Tourism
-
-
-
-
-
-
- (2-D blueprint of a Mars outpost with connected modules. Image courtesy of Georgi Petrov and Mars Foundation .)
-
-
-
-
-
-
As settlements grow and more buildings are shipped in or being constructed on site according to
- the needs, a diversity of specialty functions would result. It's not difficult to imagine a settlement
- become an university town housing numerous laboratories attracting academically driven settlers if it
- heavily sponsors research studies on those disciplines. A green town may be developed to house a large
- number of interonnected greenhouses having a company of biologists/botanists experimenting with
- improving crop rotations and genetics that give better crop yield. A maker-haven is one that consists
- of a lot of workshops with machineries providing high industrial throughput and attracting influx of
- creative individuals to prototype and tinker with tools to produce new parts and equipment. Also,
- with more prospectors arriving on Mars, mining outposts will be the next frontier and they will sprout
- up everywhere along a resource-rich basin/region, fortifying the local supply chain for raw minerals.
-
-
-
-
-
-
-
-
-
-
mars-sim v3.8.0 is available for free in 2 binary editions.
- Download the latest release today at:
-
-
A. Sourceforge's Auto Download
-
-
-
-
-
B. Sourceforge's Regular Download
-
-
-
-
C. GitHub Page
-
Go to Release Tab
-
-
D. Manual/User Guide
-
One may be interested in a previous v3.06 User Guide
- as a reference.
-
-
- Minimum Requirements :
- a. Dual Core Pentium/Celeron 1.5 GHz or above
- b. 2 GB free RAM dedicated for running mars-sim
- c. 64-bit Oracle Java 17 or OpenJDK 17
-
-
-
-
-
-
-
For more details on mars-sim development,
- go to GitHub project page .
-
-
- Also, check out openhub for a summary of mars-sim development.
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/layouts/404.html b/layouts/404.html
new file mode 100644
index 0000000..1a9bd70
--- /dev/null
+++ b/layouts/404.html
@@ -0,0 +1,7 @@
+{{ define "main" -}}
+
+
Not found
+
Oops! This page doesn't exist. Try going back to the home page .
+
You can learn how to make a 404 page like this in Custom 404 Pages .
+
+{{- end }}
diff --git a/layouts/_default/_markup/render-heading.html b/layouts/_default/_markup/render-heading.html
new file mode 100644
index 0000000..7f8e974
--- /dev/null
+++ b/layouts/_default/_markup/render-heading.html
@@ -0,0 +1 @@
+{{ template "_default/_markup/td-render-heading.html" . }}
diff --git a/ogg/Areologie.ogg b/ogg/Areologie.ogg
deleted file mode 100644
index 6f5998a..0000000
Binary files a/ogg/Areologie.ogg and /dev/null differ
diff --git a/package.json b/package.json
new file mode 100644
index 0000000..6f8f015
--- /dev/null
+++ b/package.json
@@ -0,0 +1,53 @@
+{
+ "name": "docsy-example-site",
+ "version": "0.10.0",
+ "version.next": "0.10.1-dev.0-unreleased",
+ "description": "Example site that uses Docsy theme for technical documentation.",
+ "repository": "github:google/docsy-example",
+ "homepage": "https://example.docsy.dev",
+ "author": "Docsy Authors",
+ "license": "Apache-2.0",
+ "bugs": "https://github.com/google/docsy-example/issues",
+ "spelling": "cSpell:ignore docsy hugo htmltest precheck postbuild rtlcss -",
+ "scripts": {
+ "_build": "npm run _hugo-dev --",
+ "_check:links": "echo IMPLEMENTATION PENDING for check-links; echo",
+ "_hugo": "hugo --cleanDestinationDir",
+ "_hugo-dev": "npm run _hugo -- -e dev -DFE",
+ "_local": "npx cross-env HUGO_MODULE_WORKSPACE=docsy.work",
+ "_serve": "npm run _hugo-dev -- --minify serve --renderToMemory",
+ "build:preview": "npm run _hugo-dev -- --minify --baseURL \"${DEPLOY_PRIME_URL:-/}\"",
+ "build:production": "npm run _hugo -- --minify",
+ "build": "npm run _build -- ",
+ "check:links:all": "HTMLTEST_ARGS= npm run _check:links",
+ "check:links": "npm run _check:links",
+ "clean": "rm -Rf public/* resources",
+ "local": "npm run _local -- npm run",
+ "make:public": "git init -b main public",
+ "precheck:links:all": "npm run build",
+ "precheck:links": "npm run build",
+ "postbuild:preview": "npm run _check:links",
+ "postbuild:production": "npm run _check:links",
+ "serve": "npm run _serve",
+ "test": "npm run check:links",
+ "update:dep": "npm install --save-dev autoprefixer@latest postcss-cli@latest",
+ "update:hugo": "npm install --save-dev --save-exact hugo-extended@latest",
+ "update:pkgs": "npx npm-check-updates -u"
+ },
+ "devDependencies": {
+ "autoprefixer": "^10.4.20",
+ "cross-env": "^7.0.3",
+ "hugo-extended": "0.136.2",
+ "postcss": "^8.4.49",
+ "postcss-cli": "^11.0.0",
+ "rtlcss": "^4.3.0"
+ },
+ "optionalDependencies": {
+ "npm-check-updates": "^17.1.4"
+ },
+ "private": true,
+ "prettier": {
+ "proseWrap": "always",
+ "singleQuote": true
+ }
+}
diff --git a/images/MarsNavMissionToolTimeTool.png b/static/images/MarsNavMissionToolTimeTool.png
similarity index 100%
rename from images/MarsNavMissionToolTimeTool.png
rename to static/images/MarsNavMissionToolTimeTool.png
diff --git a/images/MiningOutpost.png b/static/images/MiningOutpost.png
similarity index 100%
rename from images/MiningOutpost.png
rename to static/images/MiningOutpost.png
diff --git a/images/analysis.jpg b/static/images/analysis.jpg
similarity index 100%
rename from images/analysis.jpg
rename to static/images/analysis.jpg
diff --git a/images/colonizingmars2.jpg b/static/images/colonizingmars2.jpg
similarity index 100%
rename from images/colonizingmars2.jpg
rename to static/images/colonizingmars2.jpg
diff --git a/images/config.png b/static/images/config.png
similarity index 100%
rename from images/config.png
rename to static/images/config.png
diff --git a/images/construction2.jpeg b/static/images/construction2.jpg
similarity index 100%
rename from images/construction2.jpeg
rename to static/images/construction2.jpg
diff --git a/images/creweditor.png b/static/images/creweditor.png
similarity index 100%
rename from images/creweditor.png
rename to static/images/creweditor.png
diff --git a/images/habcutout.jpg b/static/images/habcutout.jpg
similarity index 100%
rename from images/habcutout.jpg
rename to static/images/habcutout.jpg
diff --git a/images/habitat.gif b/static/images/habitat.gif
similarity index 100%
rename from images/habitat.gif
rename to static/images/habitat.gif
diff --git a/images/helpbrowser.png b/static/images/helpbrowser.png
similarity index 100%
rename from images/helpbrowser.png
rename to static/images/helpbrowser.png
diff --git a/images/infowindows.png b/static/images/infowindows.png
similarity index 100%
rename from images/infowindows.png
rename to static/images/infowindows.png
diff --git a/images/insidegreenhouse2.jpg b/static/images/insidegreenhouse2.jpg
similarity index 100%
rename from images/insidegreenhouse2.jpg
rename to static/images/insidegreenhouse2.jpg
diff --git a/images/maps.png b/static/images/maps.png
similarity index 100%
rename from images/maps.png
rename to static/images/maps.png
diff --git a/images/marsexpedition2.jpg b/static/images/marsexpedition2.jpg
similarity index 100%
rename from images/marsexpedition2.jpg
rename to static/images/marsexpedition2.jpg
diff --git a/images/marsyear135.gif b/static/images/marsyear135.gif
similarity index 100%
rename from images/marsyear135.gif
rename to static/images/marsyear135.gif
diff --git a/images/monitortool.png b/static/images/monitortool.png
similarity index 100%
rename from images/monitortool.png
rename to static/images/monitortool.png
diff --git a/images/personwindow.png b/static/images/personwindow.png
similarity index 100%
rename from images/personwindow.png
rename to static/images/personwindow.png
diff --git a/images/settlementlayout.jpg b/static/images/settlementlayout.jpg
similarity index 100%
rename from images/settlementlayout.jpg
rename to static/images/settlementlayout.jpg
diff --git a/images/yourfacehere2.jpg b/static/images/yourfacehere2.jpg
similarity index 100%
rename from images/yourfacehere2.jpg
rename to static/images/yourfacehere2.jpg