﻿/* ====================
Minecraft Resource Calculator Styles
====================== */

.mc-icon {
  --n: 1;
  /* 1. The Image Link */
  background-image: var(--sprite-url) !important;
  
  /* 2. Sizing the "Window" */
  display: inline-block !important;
  height: calc(36px / var(--n));
  width: calc(36px / var(--n));



  /* 3. Positioning the "Map" */
  /* This math moves the big sheet behind the 32px window */
  background-position: calc(var(--j) / var(--n) * 32px) calc(var(--i) / var(--n) * 32px) !important;
  
  /* 4. The Scale of the "Map" */
  /* This MUST match the total pixels of your Artboard-4.png */
  background-size: 1024px 3904px !important;
  background-color: #555555;

  /* 5. Minecraft Pixel Look */
  image-rendering: -webkit-optimize-contrast !important; /* For Chrome/Safari */
  image-rendering: -moz-crisp-edges !important;
  image-rendering: pixelated !important;
  image-rendering: crisp-edges !important;

  /* 6. Decoration */
  border: 2px solid #2a2a2a !important;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.8) !important;
}


/* ====================
   Minecraft Resource Calculator Styles
   ====================== */

.resource-calculator {
  /* max-width: 1800px !important; */
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top:2 !important;
  display: block !important;
  padding: 2rem !important;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
  border-radius: 12px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

.calc-header {
  text-align: center !important;
  color: #55ff55 !important;
  margin-bottom: 2rem !important;
  margin-top: 0rem !important;
  text-shadow: none !important;
}

/* ===================================
   CATEGORY SECTIONS
   =================================== */

.category-section {
  margin-bottom: 2rem !important;
}

.category-title {
  text-align: center !important;
  color: #999999 !important;
  font-size: 1rem !important;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.81) !important;
  margin-bottom: 0rem !important;
  /* border-bottom: 0px solid #55ff55 !important; */
  padding-bottom: 0.5rem !important;
}

.calculator-footer {
  text-align: center !important;
  margin-top: 4rem !important;
  padding: 2rem !important;
  border-top: 1px solid rgba(85, 255, 85, 0.1) !important;
  width: 100% !important;
}

.disclaimer-text {
  color: #666 !important; /* Subtle gray so it doesn't distract from the tool */
  font-size: 0.8rem !important;
  font-style: italic !important;
  margin: 0 !important;
}

.items-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)) !important;
  gap: 0.75rem !important;
}

/* ===================================
   ITEM CARDS
   =================================== */

.item-card {
  background: rgba(33, 33, 33, 0.9) !important;
  border: 2px solid #3a3a3a !important;
  border-radius: 8px !important;
  padding: 0.5rem !important;
  transition: all 0.3s ease !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.8rem !important;
  cursor: pointer !important;
  position: relative !important;
}

.item-card:hover {
  border-color: #55ff55 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 12px rgba(85, 255, 85, 0.3) !important;
}

.item-card input[type="number"] {
  width: 90% !important;
  background: #1a1a1a !important;
  border: 1px solid #3a3a3a !important;
  border-radius: 4px !important;
  color: #fff !important;
  padding: 0.35rem !important;
  font-size: 0.875rem !important;
  text-align: center !important;
}

.item-card input[type="number"]:focus {
  outline: none !important;
  border-color: #55ff55 !important;
}

.item-results {
  color: #77ff77 !important;
  font-size: 0.875rem !important;
  text-align: center !important;
  display: none !important;
  width: 100% !important;
}

/* Tooltip on hover - shows item name */
.item-card::before {
  content: attr(title) !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(0, 0, 0, 0.95) !important;
  color: #55ff55 !important;
  padding: 0.5rem 0.75rem !important;
  border-radius: 6px !important;
  font-size: 0.9rem !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease !important;
  z-index: 1000 !important;
  margin-bottom: 0.5rem !important;
  border: 2px solid #55ff55 !important;
}

.item-card:hover::before {
  opacity: 1 !important;
}

/* Arrow for tooltip */
.item-card::after {
  content: "" !important;
  position: absolute !important;
  bottom: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  border: 6px solid transparent !important;
  border-top-color: #55ff55 !important;
  opacity: 0 !important;
  pointer-events: none !important;
  transition: opacity 0.2s ease !important;
  z-index: 1001 !important;
}

.item-card:hover::after {
  opacity: 1 !important;
}

/* ===================================
   COLLAPSIBLE CATEGORIES
   =================================== */

/* .category-toggle {
  cursor: pointer !important;
  user-select: none !important;
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
}

.category-toggle:hover {
  opacity: 0.8 !important;
}

.toggle-icon {
  font-size: 1rem !important;
  transition: transform 0.3s ease !important;
}

.category-content {
  transition: all 0.3s ease !important;
} */

/* ===================================
   FILTER BAR
   =================================== */

.filter-bar input[type="text"]:focus,
.filter-bar select:focus {
  outline: none !important;
  border-color: #55ff55 !important;
}

.filter-bar input[type="checkbox"]:checked {
  accent-color: #55ff55 !important;
}

/* ===================================
   BOTTOM SUMMARY SECTION
   =================================== */

.bottom-summary-section {
  max-width: 1400px !important;
  margin: 2rem auto 0 auto !important;
  padding: 0 2rem !important;
}

/* ===================================
   TOTAL SUMMARY
   =================================== */

.results-summary {
  background: linear-gradient(135deg, #003300 0%, #004400 100%) !important;
  border: 1px solid #8a8a8aff !important;
  border-radius: 8px !important;
  padding: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.summary-title {
  color: #55ff55 !important;
  font-size: 1rem !important;
  margin: 0 0 1rem 0 !important;
}

.summary-grid {
  display: flex !important;
  align-items: center !important;
  gap: 2rem !important;
  flex-wrap: wrap !important;
  margin-bottom: 1.5rem !important;
  padding-bottom: 1rem !important;
  border-bottom: 1px solid rgba(85, 255, 85, 0.3) !important;
}

.summary-item {
  color: #fff !important;
  font-size: 1rem !important;
  white-space: nowrap !important;
}

.summary-item span {
  color: #55ff55 !important;
  font-weight: bold !important;
}

/* Selected Items Display Grid */
/* .selected-items-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)) !important;
  gap: 1rem !important;
  margin-top: 1rem !important;
}

.selected-item-card {
  background: rgba(0, 0, 0, 0.3) !important;
  border: 2px solid #3a3a3a !important;
  border-radius: 6px !important;
  padding: 0.5rem !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.5rem !important;
  transition: all 0.2s ease !important;
}

.selected-item-card:hover {
  border-color: #55ff55 !important;
  transform: scale(1.05) !important;
}

.selected-item-quantity {
  color: #55ff55 !important;
  font-weight: bold !important;
  font-size: 0.875rem !important;
} */

.selected-items-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)) !important;
  gap: 1rem !important;
  margin-top: 1rem !important;
}

/* Keep your Grid as is - it's a good layout */
.selected-item-card {
  background: rgba(20, 20, 20, 0.8) !important;
  border: 2px solid #3a3a3a !important;
  border-radius: 4px !important;
  padding: 8px 4px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 4px !important;
  /* min-height: 120px; Gives it a nice vertical posture */
}

.selected-item-card:hover {
  border-color: #55ff55 !important;
  transform: scale(1.05) !important;
}

/* The Main Item Number */
.selected-item-quantity {
  color: #55ff55 !important;
  font-weight: bold !important;
  font-size: 1rem !important;
  line-height: 1;
  margin-bottom: 4px;
}

/* The Logistics Box */
.selected-item-info {
  width: 100%;
  border-top: 1px solid #444;
  padding-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-line {
  font-size: 0.8rem !important;
  color: #888 !important;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
}

.info-line span {
  color: #ddd; /* The actual number */
  font-weight: bold;
}

/* ===================================
   BREAKDOWN CONTAINER
   =================================== */

.breakdown-container {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%) !important;
  border: 1px solid #8a8a8aff !important;
  border-radius: 8px !important;
  padding: 1.5rem !important;
  margin-bottom: 2.5rem !important;
}

/* ===================================
   BASE MATERIALS CONTAINER
   =================================== */

.base-materials-container {
  background: linear-gradient(135deg, #1a1a1a 0%, #252525 100%) !important;
  border: 1px solid #8a8a8aff !important;
  border-radius: 8px !important;
  padding: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
  .resource-calculator {
    padding: 1rem !important;
  }
  
  .items-grid {
    grid-template-columns: repeat(6, 1fr) !important; /* Force 4 columns on mobile */
    gap: 0.5rem !important;
  }
  
  .item-card {
    padding: 0.4rem !important;
    gap: 0.4rem !important;
  }
  
  .mc-icon {
    width: 35px !important;
    height: 35px !important;
  }
  
  .item-card input[type="number"] {
    font-size: 0.8rem !important;
    padding: 0.25rem !important;
  }
  
  .calc-header {
    font-size: 0.875rem !important;
    margin-bottom: 1rem !important;
  }
  
  .category-title {
    font-size: 0.8rem !important;
  }
  
  .summary-grid {
    gap: 0.5rem !important;
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  
  .summary-item {
    font-size: 0.85rem !important;
  }
  
  .selected-items-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 0.5rem !important;
  }
  
  .selected-item-quantity {
    font-size: 0.8rem !important;
  }
  
  .bottom-summary-section {
    padding: 0 0.5rem !important;
  }
  
  .results-summary,
  .breakdown-container,
  .base-materials-container {
    padding: 1rem !important;
  }
  
  /* Tooltip adjustments for mobile */
  .item-card::before {
    font-size: 0.8rem !important;
    padding: 0.3rem 0.5rem !important;
  }
  
  .disclaimer-text {
    font-size: 1rem !important;
  }
}

/* Extra small phones */
@media (max-width: 480px) {
  .items-grid {
    grid-template-columns: repeat(4, 1fr) !important; /* 3 columns on very small screens */
  }
  
  .selected-items-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  
  .mc-icon {
    width: 35px !important;
    height: 35px !important;
  }
  
  .item-card input[type="number"] {
    font-size: 0.8rem !important;
  }
}

.acacia-boat {
  /* coordinates of the image */
  --i:-19; 
  --j:-28; 
}
.acacia-boat-revision-2 {
  /* coordinates of the image */
  --i:-113; 
  --j:-1; 
}
.acacia-boat-with-chest {
  /* coordinates of the image */
  --i:-19; 
  --j:-1; 
}
.acacia-button {
  /* coordinates of the image */
  --i:-103; 
  --j:-29; 
}
.acacia-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-21; 
}
.acacia-door-revision-3 {
  /* coordinates of the image */
  --i:-29; 
  --j:-6; 
}
.acacia-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-4; 
}
.acacia-fence-be {
  /* coordinates of the image */
  --i:-100; 
  --j:-21; 
}
.acacia-fence-gate {
  /* coordinates of the image */
  --i:-100; 
  --j:-20; 
}
.acacia-fence-gate-be {
  /* coordinates of the image */
  --i:-1; 
  --j:-19; 
}
.acacia-hanging-sign {
  /* coordinates of the image */
  --i:-8; 
  --j:-4; 
}
.acacia-leaves {
  /* coordinates of the image */
  --i:-106; 
  --j:-5; 
}
.acacia-log {
  /* coordinates of the image */
  --i:-106; 
  --j:-6; 
}
.acacia-planks {
  /* coordinates of the image */
  --i:-26; 
  --j:-21; 
}
.acacia-pressure-plate {
  /* coordinates of the image */
  --i:-103; 
  --j:-30; 
}
.acacia-sapling {
  /* coordinates of the image */
  --i:-106; 
  --j:-7; 
}
.acacia-sign {
  /* coordinates of the image */
  --i:-74; 
  --j:-27; 
}
.acacia-slab {
  /* coordinates of the image */
  --i:-100; 
  --j:-22; 
}
.acacia-stairs {
  /* coordinates of the image */
  --i:-100; 
  --j:-23; 
}
.acacia-trapdoor {
  /* coordinates of the image */
  --i:-51; 
  --j:-17; 
}
.acacia-wood {
  /* coordinates of the image */
  --i:-100; 
  --j:-24; 
}
.acacia-wood-button {
  /* coordinates of the image */
  --i:-103; 
  --j:-29; 
}
.acacia-wood-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-21; 
}
.acacia-wood-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-4; 
}
.acacia-wood-fence-gate {
  /* coordinates of the image */
  --i:-100; 
  --j:-20; 
}
.acacia-wood-planks {
  /* coordinates of the image */
  --i:-26; 
  --j:-21; 
}
.acacia-wood-pressure-plate {
  /* coordinates of the image */
  --i:-103; 
  --j:-30; 
}
.acacia-wood-sign {
  /* coordinates of the image */
  --i:-74; 
  --j:-27; 
}
.acacia-wood-slab {
  /* coordinates of the image */
  --i:-100; 
  --j:-22; 
}
.acacia-wood-stairs {
  /* coordinates of the image */
  --i:-100; 
  --j:-23; 
}
.acacia-wood-trapdoor {
  /* coordinates of the image */
  --i:-51; 
  --j:-17; 
}
.actinide {
  /* coordinates of the image */
  --i:-2; 
  --j:-1; 
}
.actinium {
  /* coordinates of the image */
  --i:-55; 
  --j:-10; 
}
.activator-rail {
  /* coordinates of the image */
  --i:-103; 
  --j:-31; 
}
.adult-carrots {
  /* coordinates of the image */
  --i:-66; 
  --j:-25; 
}
.adult-nether-warts {
  /* coordinates of the image */
  --i:-67; 
  --j:-25; 
}
.adult-potatoes {
  /* coordinates of the image */
  --i:-66; 
  --j:-29; 
}
.adult-wheat-crops {
  /* coordinates of the image */
  --i:-66; 
  --j:-31; 
}
.air {
  /* coordinates of the image */
  --i:-73; 
  --j:-26; 
}
.alkali-metal {
  /* coordinates of the image */
  --i:-2; 
  --j:-2; 
}
.alkaline-earth-metal {
  /* coordinates of the image */
  --i:-2; 
  --j:-3; 
}
.allay-spawn-egg {
  /* coordinates of the image */
  --i:-28; 
  --j:-4; 
}
.allium {
  /* coordinates of the image */
  --i:-106; 
  --j:-8; 
}
.allow {
  /* coordinates of the image */
  --i:-44; 
  --j:-26; 
}
.aluminium {
  /* coordinates of the image */
  --i:-55; 
  --j:-11; 
}
.aluminum {
  /* coordinates of the image */
  --i:-55; 
  --j:-11; 
}
.aluminum-oxide {
  /* coordinates of the image */
  --i:-59; 
  --j:-29; 
}
.americium {
  /* coordinates of the image */
  --i:-55; 
  --j:-12; 
}
.amethyst-cluster {
  /* coordinates of the image */
  --i:-12; 
  --j:-8; 
}
.amethyst-shard {
  /* coordinates of the image */
  --i:-12; 
  --j:-9; 
}
.amethyst-trim-chainmail-boots {
  /* coordinates of the image */
  --i:-25; 
  --j:-28; 
}
.amethyst-trim-chainmail-chestplate {
  /* coordinates of the image */
  --i:-25; 
  --j:-29; 
}
.amethyst-trim-chainmail-helmet {
  /* coordinates of the image */
  --i:-25; 
  --j:-31; 
}
.amethyst-trim-chainmail-leggings {
  /* coordinates of the image */
  --i:-26; 
  --j:-0; 
}
.amethyst-trim-diamond-boots {
  /* coordinates of the image */
  --i:-26; 
  --j:-1; 
}
.amethyst-trim-diamond-chestplate {
  /* coordinates of the image */
  --i:-26; 
  --j:-2; 
}
.amethyst-trim-diamond-helmet {
  /* coordinates of the image */
  --i:-26; 
  --j:-3; 
}
.amethyst-trim-diamond-leggings {
  /* coordinates of the image */
  --i:-26; 
  --j:-5; 
}
.amethyst-trim-golden-boots {
  /* coordinates of the image */
  --i:-26; 
  --j:-6; 
}
.amethyst-trim-golden-chestplate {
  /* coordinates of the image */
  --i:-26; 
  --j:-7; 
}
.amethyst-trim-golden-helmet {
  /* coordinates of the image */
  --i:-26; 
  --j:-8; 
}
.amethyst-trim-golden-leggings {
  /* coordinates of the image */
  --i:-26; 
  --j:-10; 
}
.amethyst-trim-iron-boots {
  /* coordinates of the image */
  --i:-26; 
  --j:-11; 
}
.amethyst-trim-iron-chestplate {
  /* coordinates of the image */
  --i:-26; 
  --j:-12; 
}
.amethyst-trim-iron-helmet {
  /* coordinates of the image */
  --i:-26; 
  --j:-14; 
}
.amethyst-trim-iron-leggings {
  /* coordinates of the image */
  --i:-26; 
  --j:-16; 
}
.amethyst-trim-leather-boots {
  /* coordinates of the image */
  --i:-26; 
  --j:-17; 
}
.amethyst-trim-leather-cap {
  /* coordinates of the image */
  --i:-26; 
  --j:-19; 
}
.amethyst-trim-leather-pants {
  /* coordinates of the image */
  --i:-26; 
  --j:-20; 
}
.amethyst-trim-leather-tunic {
  /* coordinates of the image */
  --i:-26; 
  --j:-22; 
}
.amethyst-trim-netherite-boots {
  /* coordinates of the image */
  --i:-26; 
  --j:-23; 
}
.amethyst-trim-netherite-chestplate {
  /* coordinates of the image */
  --i:-26; 
  --j:-24; 
}
.amethyst-trim-netherite-helmet {
  /* coordinates of the image */
  --i:-26; 
  --j:-25; 
}
.amethyst-trim-netherite-leggings {
  /* coordinates of the image */
  --i:-26; 
  --j:-27; 
}
.amethyst-trim-turtle-shell {
  /* coordinates of the image */
  --i:-26; 
  --j:-28; 
}
.ammonia {
  /* coordinates of the image */
  --i:-59; 
  --j:-0; 
}
.ancient-debris {
  /* coordinates of the image */
  --i:-4; 
  --j:-5; 
}
.andesite {
  /* coordinates of the image */
  --i:-104; 
  --j:-26; 
}
.andesite-slab {
  /* coordinates of the image */
  --i:-100; 
  --j:-25; 
}
.andesite-stairs {
  /* coordinates of the image */
  --i:-100; 
  --j:-26; 
}
.andesite-wall {
  /* coordinates of the image */
  --i:-100; 
  --j:-27; 
}
.andesite-wall-be {
  /* coordinates of the image */
  --i:-0; 
  --j:-20; 
}
.angler-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-3; 
}
.ankle-monitor {
  /* coordinates of the image */
  --i:-51; 
  --j:-4; 
}
.ant {
  /* coordinates of the image */
  --i:-8; 
  --j:-7; 
}
.antidote {
  /* coordinates of the image */
  --i:-54; 
  --j:-15; 
}
.antimony {
  /* coordinates of the image */
  --i:-55; 
  --j:-13; 
}
.anvil {
  /* coordinates of the image */
  --i:-112; 
  --j:-9; 
}
.apple {
  /* coordinates of the image */
  --i:-99; 
  --j:-24; 
}
.apple-revision-1 {
  /* coordinates of the image */
  --i:-63; 
  --j:-17; 
}
.archer-pottery-sherd {
  /* coordinates of the image */
  --i:-37; 
  --j:-16; 
}
.argentum {
  /* coordinates of the image */
  --i:-55; 
  --j:-14; 
}
.argon {
  /* coordinates of the image */
  --i:-55; 
  --j:-15; 
}
.armor-stand {
  /* coordinates of the image */
  --i:-98; 
  --j:-13; 
}
.arms-up-pottery-sherd {
  /* coordinates of the image */
  --i:-37; 
  --j:-17; 
}
.arrow {
  /* coordinates of the image */
  --i:-39; 
  --j:-18; 
}
.arrow-15w14a {
  /* coordinates of the image */
  --i:-3; 
  --j:-20; 
}
.arrow-loaded-crossbow {
  /* coordinates of the image */
  --i:-74; 
  --j:-14; 
}
.arrow-of-big {
  /* coordinates of the image */
  --i:-38; 
  --j:-20; 
}
.arrow-of-decay {
  /* coordinates of the image */
  --i:-43; 
  --j:-31; 
}
.arrow-of-decay-revision-1 {
  /* coordinates of the image */
  --i:-48; 
  --j:-25; 
}
.arrow-of-fire-resistance {
  /* coordinates of the image */
  --i:-39; 
  --j:-19; 
}
.arrow-of-harming {
  /* coordinates of the image */
  --i:-39; 
  --j:-20; 
}
.arrow-of-healing {
  /* coordinates of the image */
  --i:-39; 
  --j:-21; 
}
.arrow-of-invisibility {
  /* coordinates of the image */
  --i:-39; 
  --j:-22; 
}
.arrow-of-leaping {
  /* coordinates of the image */
  --i:-39; 
  --j:-23; 
}
.arrow-of-luck {
  /* coordinates of the image */
  --i:-42; 
  --j:-17; 
}
.arrow-of-night-vision {
  /* coordinates of the image */
  --i:-39; 
  --j:-24; 
}
.arrow-of-poison {
  /* coordinates of the image */
  --i:-39; 
  --j:-25; 
}
.arrow-of-regeneration {
  /* coordinates of the image */
  --i:-39; 
  --j:-26; 
}
.arrow-of-slow-falling {
  /* coordinates of the image */
  --i:-54; 
  --j:-5; 
}
.arrow-of-slowness {
  /* coordinates of the image */
  --i:-39; 
  --j:-27; 
}
.arrow-of-small {
  /* coordinates of the image */
  --i:-38; 
  --j:-21; 
}
.arrow-of-splashing {
  /* coordinates of the image */
  --i:-39; 
  --j:-17; 
}
.arrow-of-strength {
  /* coordinates of the image */
  --i:-39; 
  --j:-28; 
}
.arrow-of-swiftness {
  /* coordinates of the image */
  --i:-39; 
  --j:-29; 
}
.arrow-of-the-turtle-master {
  /* coordinates of the image */
  --i:-63; 
  --j:-13; 
}
.arrow-of-water-breathing {
  /* coordinates of the image */
  --i:-4; 
  --j:-4; 
}
.arrow-of-weakness {
  /* coordinates of the image */
  --i:-39; 
  --j:-30; 
}
.arsenic {
  /* coordinates of the image */
  --i:-55; 
  --j:-16; 
}
.astatine {
  /* coordinates of the image */
  --i:-55; 
  --j:-17; 
}
.aurum {
  /* coordinates of the image */
  --i:-55; 
  --j:-18; 
}
.awkward-lingering-potion {
  /* coordinates of the image */
  --i:-34; 
  --j:-8; 
}
.awkward-potion {
  /* coordinates of the image */
  --i:-33; 
  --j:-26; 
}
.awkward-potion-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-3; 
}
.awkward-splash-potion {
  /* coordinates of the image */
  --i:-34; 
  --j:-11; 
}
.axolotl-spawn-egg {
  /* coordinates of the image */
  --i:-13; 
  --j:-23; 
}
.azalea {
  /* coordinates of the image */
  --i:-14; 
  --j:-15; 
}
.azalea-leaves {
  /* coordinates of the image */
  --i:-14; 
  --j:-16; 
}
.azure-bluet {
  /* coordinates of the image */
  --i:-106; 
  --j:-9; 
}
.baked-potato {
  /* coordinates of the image */
  --i:-99; 
  --j:-25; 
}
.baked-potato-revision-1 {
  /* coordinates of the image */
  --i:-64; 
  --j:-20; 
}
.bamboo {
  /* coordinates of the image */
  --i:-74; 
  --j:-4; 
}
.bamboo-button {
  /* coordinates of the image */
  --i:-20; 
  --j:-29; 
}
.bamboo-door {
  /* coordinates of the image */
  --i:-20; 
  --j:-30; 
}
.bamboo-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-21; 
}
.bamboo-fence-gate {
  /* coordinates of the image */
  --i:-20; 
  --j:-31; 
}
.bamboo-hanging-sign {
  /* coordinates of the image */
  --i:-20; 
  --j:-9; 
}
.bamboo-mosaic {
  /* coordinates of the image */
  --i:-20; 
  --j:-23; 
}
.bamboo-mosaic-slab {
  /* coordinates of the image */
  --i:-20; 
  --j:-24; 
}
.bamboo-mosaic-stairs {
  /* coordinates of the image */
  --i:-20; 
  --j:-25; 
}
.bamboo-planks {
  /* coordinates of the image */
  --i:-20; 
  --j:-26; 
}
.bamboo-pressure-plate {
  /* coordinates of the image */
  --i:-21; 
  --j:-1; 
}
.bamboo-raft {
  /* coordinates of the image */
  --i:-21; 
  --j:-17; 
}
.bamboo-raft-be {
  /* coordinates of the image */
  --i:-21; 
  --j:-20; 
}
.bamboo-raft-with-chest {
  /* coordinates of the image */
  --i:-21; 
  --j:-18; 
}
.bamboo-raft-with-chest-be {
  /* coordinates of the image */
  --i:-21; 
  --j:-21; 
}
.bamboo-sign {
  /* coordinates of the image */
  --i:-21; 
  --j:-7; 
}
.bamboo-slab {
  /* coordinates of the image */
  --i:-20; 
  --j:-27; 
}
.bamboo-stairs {
  /* coordinates of the image */
  --i:-20; 
  --j:-28; 
}
.bamboo-trapdoor {
  /* coordinates of the image */
  --i:-21; 
  --j:-6; 
}
.bamboo-wood-button {
  /* coordinates of the image */
  --i:-20; 
  --j:-29; 
}
.bamboo-wood-door {
  /* coordinates of the image */
  --i:-20; 
  --j:-30; 
}
.bamboo-wood-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-21; 
}
.bamboo-wood-fence-gate {
  /* coordinates of the image */
  --i:-20; 
  --j:-31; 
}
.bamboo-wood-planks {
  /* coordinates of the image */
  --i:-20; 
  --j:-26; 
}
.bamboo-wood-pressure-plate {
  /* coordinates of the image */
  --i:-21; 
  --j:-1; 
}
.bamboo-wood-sign {
  /* coordinates of the image */
  --i:-21; 
  --j:-7; 
}
.bamboo-wood-slab {
  /* coordinates of the image */
  --i:-20; 
  --j:-27; 
}
.bamboo-wood-stairs {
  /* coordinates of the image */
  --i:-20; 
  --j:-28; 
}
.bamboo-wood-trapdoor {
  /* coordinates of the image */
  --i:-21; 
  --j:-6; 
}
.banner {
  /* coordinates of the image */
  --i:-24; 
  --j:-19; 
}
.banner-pattern {
  /* coordinates of the image */
  --i:-74; 
  --j:-22; 
}
.banner-revision-1 {
  /* coordinates of the image */
  --i:-63; 
  --j:-25; 
}
.barium {
  /* coordinates of the image */
  --i:-55; 
  --j:-19; 
}
.barium-sulfate {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.barrel {
  /* coordinates of the image */
  --i:-76; 
  --j:-2; 
}
.barrier {
  /* coordinates of the image */
  --i:-112; 
  --j:-10; 
}
.basalt {
  /* coordinates of the image */
  --i:-4; 
  --j:-19; 
}
.bat-spawn-egg {
  /* coordinates of the image */
  --i:-35; 
  --j:-21; 
}
.beacon {
  /* coordinates of the image */
  --i:-112; 
  --j:-11; 
}
.beacon-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-19; 
}
.beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-0; 
}
.bedrock {
  /* coordinates of the image */
  --i:-30; 
  --j:-10; 
}
.bee-nest {
  /* coordinates of the image */
  --i:-1; 
  --j:-31; 
}
.bee-spawn-egg {
  /* coordinates of the image */
  --i:-3; 
  --j:-7; 
}
.bee-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-2; 
  --j:-0; 
}
.beehive {
  /* coordinates of the image */
  --i:-1; 
  --j:-30; 
}
.beetroot {
  /* coordinates of the image */
  --i:-99; 
  --j:-27; 
}
.beetroot-seeds {
  /* coordinates of the image */
  --i:-106; 
  --j:-10; 
}
.beetroot-soup {
  /* coordinates of the image */
  --i:-99; 
  --j:-26; 
}
.beetroots {
  /* coordinates of the image */
  --i:-67; 
  --j:-0; 
}
.bell {
  /* coordinates of the image */
  --i:-75; 
  --j:-8; 
}
.benzene {
  /* coordinates of the image */
  --i:-59; 
  --j:-1; 
}
.berkelium {
  /* coordinates of the image */
  --i:-55; 
  --j:-20; 
}
.beryllium {
  /* coordinates of the image */
  --i:-55; 
  --j:-21; 
}
.big-dripleaf {
  /* coordinates of the image */
  --i:-14; 
  --j:-17; 
}
.birch-boat {
  /* coordinates of the image */
  --i:-19; 
  --j:-26; 
}
.birch-boat-revision-2 {
  /* coordinates of the image */
  --i:-113; 
  --j:-2; 
}
.birch-boat-with-chest {
  /* coordinates of the image */
  --i:-19; 
  --j:-2; 
}
.birch-button {
  /* coordinates of the image */
  --i:-104; 
  --j:-0; 
}
.birch-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-22; 
}
.birch-door-revision-3 {
  /* coordinates of the image */
  --i:-29; 
  --j:-8; 
}
.birch-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-2; 
}
.birch-fence-be {
  /* coordinates of the image */
  --i:-100; 
  --j:-29; 
}
.birch-fence-gate {
  /* coordinates of the image */
  --i:-100; 
  --j:-28; 
}
.birch-fence-gate-be {
  /* coordinates of the image */
  --i:-1; 
  --j:-20; 
}
.birch-hanging-sign {
  /* coordinates of the image */
  --i:-20; 
  --j:-10; 
}
.birch-leaves {
  /* coordinates of the image */
  --i:-106; 
  --j:-11; 
}
.birch-log {
  /* coordinates of the image */
  --i:-106; 
  --j:-12; 
}
.birch-log-revision-1 {
  /* coordinates of the image */
  --i:-69; 
  --j:-29; 
}
.birch-planks {
  /* coordinates of the image */
  --i:-26; 
  --j:-26; 
}
.birch-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-1; 
}
.birch-sapling {
  /* coordinates of the image */
  --i:-106; 
  --j:-13; 
}
.birch-sign {
  /* coordinates of the image */
  --i:-74; 
  --j:-24; 
}
.birch-slab {
  /* coordinates of the image */
  --i:-100; 
  --j:-30; 
}
.birch-stairs {
  /* coordinates of the image */
  --i:-100; 
  --j:-31; 
}
.birch-stairs-left {
  /* coordinates of the image */
  --i:-70; 
  --j:-15; 
}
.birch-trapdoor {
  /* coordinates of the image */
  --i:-51; 
  --j:-15; 
}
.birch-wood {
  /* coordinates of the image */
  --i:-101; 
  --j:-0; 
}
.birch-wood-button {
  /* coordinates of the image */
  --i:-104; 
  --j:-0; 
}
.birch-wood-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-22; 
}
.birch-wood-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-2; 
}
.birch-wood-fence-gate {
  /* coordinates of the image */
  --i:-100; 
  --j:-28; 
}
.birch-wood-planks {
  /* coordinates of the image */
  --i:-26; 
  --j:-26; 
}
.birch-wood-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-1; 
}
.birch-wood-sign {
  /* coordinates of the image */
  --i:-74; 
  --j:-24; 
}
.birch-wood-slab {
  /* coordinates of the image */
  --i:-100; 
  --j:-30; 
}
.birch-wood-stairs {
  /* coordinates of the image */
  --i:-100; 
  --j:-31; 
}
.birch-wood-trapdoor {
  /* coordinates of the image */
  --i:-51; 
  --j:-15; 
}
.bismuth {
  /* coordinates of the image */
  --i:-55; 
  --j:-22; 
}
.bit {
  /* coordinates of the image */
  --i:-38; 
  --j:-24; 
}
.black-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-7; 
}
.black-banner {
  /* coordinates of the image */
  --i:-21; 
  --j:-31; 
}
.black-banner-15w14a {
  /* coordinates of the image */
  --i:-14; 
  --j:-23; 
}
.black-base-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-1; 
}
.black-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-2; 
}
.black-base-gradient-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-3; 
}
.black-base-indented-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-4; 
}
.black-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-5; 
}
.black-beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-2; 
}
.black-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-2; 
}
.black-bed-be {
  /* coordinates of the image */
  --i:-38; 
  --j:-18; 
}
.black-bed-lce {
  /* coordinates of the image */
  --i:-38; 
  --j:-18; 
}
.black-bend-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-6; 
}
.black-bend-sinister-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-7; 
}
.black-bordure-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-8; 
}
.black-bordure-indented-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-9; 
}
.black-candle {
  /* coordinates of the image */
  --i:-12; 
  --j:-10; 
}
.black-carpet {
  /* coordinates of the image */
  --i:-50; 
  --j:-20; 
}
.black-carpet-revision-1 {
  /* coordinates of the image */
  --i:-22; 
  --j:-0; 
}
.black-chevron-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-10; 
}
.black-chief-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-11; 
}
.black-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-12; 
}
.black-chief-indented-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-13; 
}
.black-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-14; 
}
.black-concrete {
  /* coordinates of the image */
  --i:-46; 
  --j:-2; 
}
.black-concrete-powder {
  /* coordinates of the image */
  --i:-46; 
  --j:-3; 
}
.black-creeper-charge-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-15; 
}
.black-cross-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-16; 
}
.black-dye {
  /* coordinates of the image */
  --i:-74; 
  --j:-6; 
}
.black-fess-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-17; 
}
.black-field-masoned-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-18; 
}
.black-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-3; 
}
.black-flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-13; 
}
.black-flower-charge-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-19; 
}
.black-glazed-terracotta {
  /* coordinates of the image */
  --i:-46; 
  --j:-4; 
}
.black-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-2; 
}
.black-gradient-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-20; 
}
.black-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-21; 
}
.black-jar {
  /* coordinates of the image */
  --i:-59; 
  --j:-27; 
}
.black-lozenge-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-22; 
}
.black-pale-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-23; 
}
.black-pale-dexter-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-24; 
}
.black-pale-sinister-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-25; 
}
.black-paly-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-26; 
}
.black-per-bend-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-27; 
}
.black-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-28; 
}
.black-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-29; 
}
.black-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-30; 
}
.black-per-fess-banner {
  /* coordinates of the image */
  --i:-79; 
  --j:-31; 
}
.black-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-0; 
}
.black-per-pale-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-1; 
}
.black-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-2; 
}
.black-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-6; 
}
.black-roundel-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-3; 
}
.black-saltire-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-4; 
}
.black-shield {
  /* coordinates of the image */
  --i:-77; 
  --j:-4; 
}
.black-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-2; 
}
.black-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-7; 
}
.black-skull-charge-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-5; 
}
.black-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-6; 
}
.black-stained-glass {
  /* coordinates of the image */
  --i:-22; 
  --j:-2; 
}
.black-stained-glass-pane {
  /* coordinates of the image */
  --i:-22; 
  --j:-3; 
}
.black-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-62; 
  --j:-23; 
}
.black-terracotta {
  /* coordinates of the image */
  --i:-22; 
  --j:-1; 
}
.black-thing-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-6; 
}
.black-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-13; 
}
.black-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-2; 
}
.black-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-19; 
}
.black-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-18; 
}
.black-wool-revision-2 {
  /* coordinates of the image */
  --i:-22; 
  --j:-4; 
}
.blackstone {
  /* coordinates of the image */
  --i:-8; 
  --j:-3; 
}
.blackstone-slab {
  /* coordinates of the image */
  --i:-8; 
  --j:-19; 
}
.blackstone-stairs {
  /* coordinates of the image */
  --i:-8; 
  --j:-20; 
}
.blackstone-wall {
  /* coordinates of the image */
  --i:-8; 
  --j:-21; 
}
.blackstone-wall-be {
  /* coordinates of the image */
  --i:-12; 
  --j:-1; 
}
.blade-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-4; 
}
.blank-spawn-egg {
  /* coordinates of the image */
  --i:-73; 
  --j:-24; 
}
.blast-furnace {
  /* coordinates of the image */
  --i:-76; 
  --j:-9; 
}
.blaze-powder {
  /* coordinates of the image */
  --i:-20; 
  --j:-13; 
}
.blaze-rod {
  /* coordinates of the image */
  --i:-20; 
  --j:-14; 
}
.blaze-spawn-egg {
  /* coordinates of the image */
  --i:-35; 
  --j:-22; 
}
.blaze-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-42; 
  --j:-5; 
}
.bleach {
  /* coordinates of the image */
  --i:-54; 
  --j:-16; 
}
.bleach-filled {
  /* coordinates of the image */
  --i:-54; 
  --j:-17; 
}
.block-of-amethyst {
  /* coordinates of the image */
  --i:-12; 
  --j:-11; 
}
.block-of-bamboo {
  /* coordinates of the image */
  --i:-21; 
  --j:-26; 
}
.block-of-coal {
  /* coordinates of the image */
  --i:-101; 
  --j:-1; 
}
.block-of-coal-revision-1 {
  /* coordinates of the image */
  --i:-40; 
  --j:-14; 
}
.block-of-copper {
  /* coordinates of the image */
  --i:-12; 
  --j:-16; 
}
.block-of-diamond {
  /* coordinates of the image */
  --i:-101; 
  --j:-2; 
}
.block-of-emerald {
  /* coordinates of the image */
  --i:-101; 
  --j:-3; 
}
.block-of-gold {
  /* coordinates of the image */
  --i:-101; 
  --j:-4; 
}
.block-of-iron {
  /* coordinates of the image */
  --i:-101; 
  --j:-5; 
}
.block-of-lapis-lazuli {
  /* coordinates of the image */
  --i:-102; 
  --j:-8; 
}
.block-of-netherite {
  /* coordinates of the image */
  --i:-4; 
  --j:-3; 
}
.block-of-quartz {
  /* coordinates of the image */
  --i:-101; 
  --j:-6; 
}
.block-of-raw-copper {
  /* coordinates of the image */
  --i:-17; 
  --j:-0; 
}
.block-of-raw-gold {
  /* coordinates of the image */
  --i:-17; 
  --j:-1; 
}
.block-of-raw-iron {
  /* coordinates of the image */
  --i:-17; 
  --j:-2; 
}
.block-of-redstone {
  /* coordinates of the image */
  --i:-104; 
  --j:-2; 
}
.stripped-bamboo-block {
  /* coordinates of the image */
  --i:-21; 
  --j:-27; 
}
.blue-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-8; 
}
.blue-banner {
  /* coordinates of the image */
  --i:-22; 
  --j:-5; 
}
.blue-banner-15w14a {
  /* coordinates of the image */
  --i:-14; 
  --j:-24; 
}
.blue-base-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-7; 
}
.blue-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-8; 
}
.blue-base-gradient-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-9; 
}
.blue-base-indented-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-10; 
}
.blue-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-11; 
}
.blue-beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-3; 
}
.blue-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-3; 
}
.blue-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-9; 
}
.blue-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-9; 
}
.blue-bend-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-12; 
}
.blue-bend-sinister-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-13; 
}
.blue-bordure-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-14; 
}
.blue-bordure-indented-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-15; 
}
.blue-candle {
  /* coordinates of the image */
  --i:-12; 
  --j:-12; 
}
.blue-carpet {
  /* coordinates of the image */
  --i:-50; 
  --j:-21; 
}
.blue-carpet-revision-1 {
  /* coordinates of the image */
  --i:-22; 
  --j:-6; 
}
.blue-chevron-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-16; 
}
.blue-chief-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-17; 
}
.blue-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-18; 
}
.blue-chief-indented-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-19; 
}
.blue-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-20; 
}
.blue-concrete {
  /* coordinates of the image */
  --i:-46; 
  --j:-5; 
}
.blue-concrete-powder {
  /* coordinates of the image */
  --i:-46; 
  --j:-6; 
}
.blue-creeper-charge-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-21; 
}
.blue-cross-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-22; 
}
.blue-dye {
  /* coordinates of the image */
  --i:-74; 
  --j:-7; 
}
.blue-fess-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-23; 
}
.blue-field-masoned-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-24; 
}
.blue-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-4; 
}
.blue-flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-14; 
}
.blue-flower-charge-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-25; 
}
.blue-glazed-terracotta {
  /* coordinates of the image */
  --i:-46; 
  --j:-7; 
}
.blue-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-3; 
}
.blue-glow-stick {
  /* coordinates of the image */
  --i:-61; 
  --j:-24; 
}
.blue-gradient-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-26; 
}
.blue-ice {
  /* coordinates of the image */
  --i:-54; 
  --j:-6; 
}
.blue-ice-be {
  /* coordinates of the image */
  --i:-3; 
  --j:-16; 
}
.blue-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-27; 
}
.blue-jar {
  /* coordinates of the image */
  --i:-59; 
  --j:-28; 
}
.blue-key {
  /* coordinates of the image */
  --i:-14; 
  --j:-2; 
}
.blue-lozenge-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-28; 
}
.blue-orchid {
  /* coordinates of the image */
  --i:-106; 
  --j:-14; 
}
.blue-pale-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-29; 
}
.blue-pale-dexter-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-30; 
}
.blue-pale-sinister-banner {
  /* coordinates of the image */
  --i:-80; 
  --j:-31; 
}
.blue-paly-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-0; 
}
.blue-per-bend-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-1; 
}
.blue-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-2; 
}
.blue-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-3; 
}
.blue-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-4; 
}
.blue-per-fess-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-5; 
}
.blue-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-6; 
}
.blue-per-pale-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-7; 
}
.blue-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-8; 
}
.blue-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-7; 
}
.blue-roundel-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-9; 
}
.blue-saltire-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-10; 
}
.blue-shield {
  /* coordinates of the image */
  --i:-77; 
  --j:-5; 
}
.blue-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-3; 
}
.blue-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-8; 
}
.blue-skull-charge-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-11; 
}
.blue-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-7; 
}
.blue-sparkler {
  /* coordinates of the image */
  --i:-54; 
  --j:-18; 
}
.blue-sparkler-active {
  /* coordinates of the image */
  --i:-54; 
  --j:-19; 
}
.blue-stained-glass {
  /* coordinates of the image */
  --i:-22; 
  --j:-8; 
}
.blue-stained-glass-pane {
  /* coordinates of the image */
  --i:-22; 
  --j:-9; 
}
.blue-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-62; 
  --j:-24; 
}
.blue-terracotta {
  /* coordinates of the image */
  --i:-22; 
  --j:-7; 
}
.blue-thing-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-12; 
}
.blue-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-15; 
}
.blue-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-3; 
}
.blue-torch {
  /* coordinates of the image */
  --i:-54; 
  --j:-20; 
}
.blue-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-20; 
}
.blue-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-19; 
}
.blue-wool-revision-2 {
  /* coordinates of the image */
  --i:-22; 
  --j:-10; 
}
.board {
  /* coordinates of the image */
  --i:-49; 
  --j:-23; 
}
.boat {
  /* coordinates of the image */
  --i:-39; 
  --j:-10; 
}
.boat-15w14a {
  /* coordinates of the image */
  --i:-19; 
  --j:-12; 
}
.boat-with-chest {
  /* coordinates of the image */
  --i:-19; 
  --j:-7; 
}
.bohrium {
  /* coordinates of the image */
  --i:-55; 
  --j:-23; 
}
.bone {
  /* coordinates of the image */
  --i:-109; 
  --j:-13; 
}
.bone-block {
  /* coordinates of the image */
  --i:-104; 
  --j:-27; 
}
.bone-meal {
  /* coordinates of the image */
  --i:-98; 
  --j:-18; 
}
.book {
  /* coordinates of the image */
  --i:-109; 
  --j:-14; 
}
.book-and-quill {
  /* coordinates of the image */
  --i:-110; 
  --j:-11; 
}
.bookshelf {
  /* coordinates of the image */
  --i:-101; 
  --j:-7; 
}
.border {
  /* coordinates of the image */
  --i:-49; 
  --j:-24; 
}
.boron {
  /* coordinates of the image */
  --i:-55; 
  --j:-24; 
}
.boron-trioxide {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.bottle-of-mob {
  /* coordinates of the image */
  --i:-38; 
  --j:-26; 
}
.bottle-of-void {
  /* coordinates of the image */
  --i:-40; 
  --j:-20; 
}
.bow {
  /* coordinates of the image */
  --i:-39; 
  --j:-31; 
}
.bow-be {
  /* coordinates of the image */
  --i:-50; 
  --j:-1; 
}
.bowl {
  /* coordinates of the image */
  --i:-110; 
  --j:-12; 
}
.box-of-infinite-books {
  /* coordinates of the image */
  --i:-8; 
  --j:-8; 
}
.brain-coral {
  /* coordinates of the image */
  --i:-53; 
  --j:-15; 
}
.brain-coral-block {
  /* coordinates of the image */
  --i:-53; 
  --j:-10; 
}
.brain-coral-block-revision-1 {
  /* coordinates of the image */
  --i:-53; 
  --j:-5; 
}
.brain-coral-fan {
  /* coordinates of the image */
  --i:-66; 
  --j:-19; 
}
.brain-coral-fan-revision-1 {
  /* coordinates of the image */
  --i:-53; 
  --j:-26; 
}
.brain-coral-fan-revision-2 {
  /* coordinates of the image */
  --i:-66; 
  --j:-23; 
}
.bread {
  /* coordinates of the image */
  --i:-99; 
  --j:-28; 
}
.bread-revision-1 {
  /* coordinates of the image */
  --i:-63; 
  --j:-18; 
}
.brewer-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-5; 
}
.brewing-stand {
  /* coordinates of the image */
  --i:-112; 
  --j:-12; 
}
.brick {
  /* coordinates of the image */
  --i:-109; 
  --j:-15; 
}
.brick-slab {
  /* coordinates of the image */
  --i:-101; 
  --j:-8; 
}
.brick-slab-old {
  /* coordinates of the image */
  --i:-27; 
  --j:-6; 
}
.brick-stairs {
  /* coordinates of the image */
  --i:-101; 
  --j:-9; 
}
.brick-stairs-left {
  /* coordinates of the image */
  --i:-70; 
  --j:-16; 
}
.brick-wall {
  /* coordinates of the image */
  --i:-101; 
  --j:-10; 
}
.brick-wall-be {
  /* coordinates of the image */
  --i:-0; 
  --j:-21; 
}
.bricks {
  /* coordinates of the image */
  --i:-3; 
  --j:-13; 
}
.bricks-old {
  /* coordinates of the image */
  --i:-27; 
  --j:-5; 
}
.broken-anvil {
  /* coordinates of the image */
  --i:-13; 
  --j:-31; 
}
.broken-elytra {
  /* coordinates of the image */
  --i:-77; 
  --j:-6; 
}
.bromine {
  /* coordinates of the image */
  --i:-55; 
  --j:-25; 
}
.brown-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-9; 
}
.brown-banner {
  /* coordinates of the image */
  --i:-22; 
  --j:-11; 
}
.brown-banner-15w14a {
  /* coordinates of the image */
  --i:-14; 
  --j:-25; 
}
.brown-base-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-13; 
}
.brown-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-14; 
}
.brown-base-gradient-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-15; 
}
.brown-base-indented-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-16; 
}
.brown-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-17; 
}
.brown-beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-4; 
}
.brown-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-4; 
}
.brown-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-10; 
}
.brown-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-10; 
}
.brown-bend-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-18; 
}
.brown-bend-sinister-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-19; 
}
.brown-bordure-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-20; 
}
.brown-bordure-indented-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-21; 
}
.brown-candle {
  /* coordinates of the image */
  --i:-12; 
  --j:-13; 
}
.brown-carpet {
  /* coordinates of the image */
  --i:-50; 
  --j:-22; 
}
.brown-carpet-revision-1 {
  /* coordinates of the image */
  --i:-22; 
  --j:-12; 
}
.brown-chevron-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-22; 
}
.brown-chief-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-23; 
}
.brown-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-24; 
}
.brown-chief-indented-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-25; 
}
.brown-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-26; 
}
.brown-concrete {
  /* coordinates of the image */
  --i:-46; 
  --j:-8; 
}
.brown-concrete-powder {
  /* coordinates of the image */
  --i:-46; 
  --j:-9; 
}
.brown-creeper-charge-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-27; 
}
.brown-cross-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-28; 
}
.brown-dye {
  /* coordinates of the image */
  --i:-74; 
  --j:-8; 
}
.brown-fess-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-29; 
}
.brown-field-masoned-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-30; 
}
.brown-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-5; 
}
.brown-flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-15; 
}
.brown-flower-charge-banner {
  /* coordinates of the image */
  --i:-81; 
  --j:-31; 
}
.brown-glazed-terracotta {
  /* coordinates of the image */
  --i:-46; 
  --j:-10; 
}
.brown-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-4; 
}
.brown-glow-stick {
  /* coordinates of the image */
  --i:-61; 
  --j:-25; 
}
.brown-gradient-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-0; 
}
.brown-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-1; 
}
.brown-jar {
  /* coordinates of the image */
  --i:-59; 
  --j:-29; 
}
.brown-lozenge-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-2; 
}
.brown-mushroom {
  /* coordinates of the image */
  --i:-106; 
  --j:-16; 
}
.brown-mushroom-block {
  /* coordinates of the image */
  --i:-106; 
  --j:-15; 
}
.brown-pale-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-3; 
}
.brown-pale-dexter-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-4; 
}
.brown-pale-sinister-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-5; 
}
.brown-paly-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-6; 
}
.brown-per-bend-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-7; 
}
.brown-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-8; 
}
.brown-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-9; 
}
.brown-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-10; 
}
.brown-per-fess-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-11; 
}
.brown-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-12; 
}
.brown-per-pale-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-13; 
}
.brown-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-14; 
}
.brown-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-8; 
}
.brown-roundel-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-15; 
}
.brown-saltire-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-16; 
}
.brown-shield {
  /* coordinates of the image */
  --i:-77; 
  --j:-7; 
}
.brown-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-4; 
}
.brown-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-9; 
}
.brown-skull-charge-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-17; 
}
.brown-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-8; 
}
.brown-stained-glass {
  /* coordinates of the image */
  --i:-22; 
  --j:-14; 
}
.brown-stained-glass-pane {
  /* coordinates of the image */
  --i:-22; 
  --j:-15; 
}
.brown-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-62; 
  --j:-25; 
}
.brown-terracotta {
  /* coordinates of the image */
  --i:-22; 
  --j:-13; 
}
.brown-thing-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-18; 
}
.brown-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-16; 
}
.brown-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-4; 
}
.brown-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-21; 
}
.brown-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-20; 
}
.brown-wool-revision-2 {
  /* coordinates of the image */
  --i:-22; 
  --j:-16; 
}
.brush {
  /* coordinates of the image */
  --i:-37; 
  --j:-21; 
}
.bubble-column {
  /* coordinates of the image */
  --i:-73; 
  --j:-27; 
}
.bubble-coral {
  /* coordinates of the image */
  --i:-53; 
  --j:-16; 
}
.bubble-coral-block {
  /* coordinates of the image */
  --i:-53; 
  --j:-11; 
}
.bubble-coral-block-revision-1 {
  /* coordinates of the image */
  --i:-53; 
  --j:-6; 
}
.bubble-coral-fan {
  /* coordinates of the image */
  --i:-66; 
  --j:-20; 
}
.bubble-coral-fan-revision-1 {
  /* coordinates of the image */
  --i:-53; 
  --j:-27; 
}
.bubble-coral-fan-revision-2 {
  /* coordinates of the image */
  --i:-66; 
  --j:-24; 
}
.bucket {
  /* coordinates of the image */
  --i:-98; 
  --j:-9; 
}
.bucket-of-axolotl {
  /* coordinates of the image */
  --i:-13; 
  --j:-28; 
}
.bucket-of-cod {
  /* coordinates of the image */
  --i:-52; 
  --j:-21; 
}
.bucket-of-mud {
  /* coordinates of the image */
  --i:-2; 
  --j:-27; 
}
.bucket-of-pufferfish {
  /* coordinates of the image */
  --i:-52; 
  --j:-22; 
}
.bucket-of-pufferfish-be {
  /* coordinates of the image */
  --i:-65; 
  --j:-6; 
}
.bucket-of-salmon {
  /* coordinates of the image */
  --i:-52; 
  --j:-23; 
}
.bucket-of-tadpole {
  /* coordinates of the image */
  --i:-17; 
  --j:-28; 
}
.bucket-of-tropical-fish {
  /* coordinates of the image */
  --i:-63; 
  --j:-11; 
}
.bucket-of-tropical-fish-be {
  /* coordinates of the image */
  --i:-52; 
  --j:-20; 
}
.budding-amethyst {
  /* coordinates of the image */
  --i:-12; 
  --j:-14; 
}
.bundle {
  /* coordinates of the image */
  --i:-13; 
  --j:-30; 
}
.buried-treasure-map {
  /* coordinates of the image */
  --i:-111; 
  --j:-26; 
}
.buried-treasure-map-be {
  /* coordinates of the image */
  --i:-3; 
  --j:-26; 
}
.buried-treasure-map-revision-1 {
  /* coordinates of the image */
  --i:-38; 
  --j:-2; 
}
.burn-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-6; 
}
.buttercup {
  /* coordinates of the image */
  --i:-3; 
  --j:-12; 
}
.byte-tag {
  /* coordinates of the image */
  --i:-38; 
  --j:-27; 
}
.cactus {
  /* coordinates of the image */
  --i:-106; 
  --j:-17; 
}
.cactus-be-revision-1 {
  /* coordinates of the image */
  --i:-67; 
  --j:-18; 
}
.cactus-green {
  /* coordinates of the image */
  --i:-21; 
  --j:-16; 
}
.cadmium {
  /* coordinates of the image */
  --i:-55; 
  --j:-26; 
}
.caesium {
  /* coordinates of the image */
  --i:-55; 
  --j:-31; 
}
.cake {
  /* coordinates of the image */
  --i:-112; 
  --j:-13; 
}
.cake-revision-1 {
  /* coordinates of the image */
  --i:-0; 
  --j:-1; 
}
.calcite {
  /* coordinates of the image */
  --i:-13; 
  --j:-15; 
}
.calcium {
  /* coordinates of the image */
  --i:-55; 
  --j:-27; 
}
.calcium-bromide {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.calcium-chloride {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.californium {
  /* coordinates of the image */
  --i:-55; 
  --j:-28; 
}
.camel-spawn-egg {
  /* coordinates of the image */
  --i:-21; 
  --j:-10; 
}
.camera {
  /* coordinates of the image */
  --i:-60; 
  --j:-28; 
}
.camera-old {
  /* coordinates of the image */
  --i:-42; 
  --j:-20; 
}
.campfire {
  /* coordinates of the image */
  --i:-76; 
  --j:-26; 
}
.candle {
  /* coordinates of the image */
  --i:-12; 
  --j:-15; 
}
.capri-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-7; 
}
.carbon {
  /* coordinates of the image */
  --i:-55; 
  --j:-29; 
}
.carrot {
  /* coordinates of the image */
  --i:-99; 
  --j:-29; 
}
.carrot-on-a-stick {
  /* coordinates of the image */
  --i:-110; 
  --j:-13; 
}
.carrot-revision-2 {
  /* coordinates of the image */
  --i:-3; 
  --j:-30; 
}
.cartography-table {
  /* coordinates of the image */
  --i:-76; 
  --j:-19; 
}
.cartography-table-revision-1 {
  /* coordinates of the image */
  --i:-76; 
  --j:-10; 
}
.carved-pumpkin {
  /* coordinates of the image */
  --i:-106; 
  --j:-18; 
}
.cast-fishing-rod {
  /* coordinates of the image */
  --i:-7; 
  --j:-2; 
}
.cat-spawn-egg {
  /* coordinates of the image */
  --i:-75; 
  --j:-9; 
}
.cat-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-42; 
  --j:-25; 
}
.cauldron {
  /* coordinates of the image */
  --i:-112; 
  --j:-14; 
}
.cave-air {
  /* coordinates of the image */
  --i:-73; 
  --j:-26; 
}
.cave-spider-spawn-egg {
  /* coordinates of the image */
  --i:-35; 
  --j:-23; 
}
.cave-spider-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-42; 
  --j:-24; 
}
.cerium {
  /* coordinates of the image */
  --i:-55; 
  --j:-30; 
}
.cerium-chloride {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.cesium {
  /* coordinates of the image */
  --i:-55; 
  --j:-31; 
}
.iron-chain {
  /* coordinates of the image */
  --i:-9; 
  --j:-1; 
}
.chainmail-boots {
  /* coordinates of the image */
  --i:-77; 
  --j:-8; 
}
.chainmail-chestplate {
  /* coordinates of the image */
  --i:-77; 
  --j:-9; 
}
.chainmail-helmet {
  /* coordinates of the image */
  --i:-77; 
  --j:-10; 
}
.chainmail-leggings {
  /* coordinates of the image */
  --i:-77; 
  --j:-11; 
}
.charcoal {
  /* coordinates of the image */
  --i:-109; 
  --j:-16; 
}
.charcoal-revision-1 {
  /* coordinates of the image */
  --i:-34; 
  --j:-30; 
}
.chartreuse-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-9; 
}
.cheese {
  /* coordinates of the image */
  --i:-38; 
  --j:-28; 
}
.cherry-boat {
  /* coordinates of the image */
  --i:-37; 
  --j:-22; 
}
.cherry-boat-with-chest {
  /* coordinates of the image */
  --i:-37; 
  --j:-23; 
}
.cherry-button {
  /* coordinates of the image */
  --i:-37; 
  --j:-3; 
}
.cherry-door {
  /* coordinates of the image */
  --i:-37; 
  --j:-4; 
}
.cherry-fence {
  /* coordinates of the image */
  --i:-36; 
  --j:-28; 
}
.cherry-fence-gate {
  /* coordinates of the image */
  --i:-37; 
  --j:-5; 
}
.cherry-hanging-sign {
  /* coordinates of the image */
  --i:-36; 
  --j:-26; 
}
.cherry-leaves {
  /* coordinates of the image */
  --i:-37; 
  --j:-10; 
}
.cherry-log {
  /* coordinates of the image */
  --i:-37; 
  --j:-11; 
}
.cherry-planks {
  /* coordinates of the image */
  --i:-36; 
  --j:-29; 
}
.cherry-pressure-plate {
  /* coordinates of the image */
  --i:-37; 
  --j:-6; 
}
.cherry-sapling {
  /* coordinates of the image */
  --i:-37; 
  --j:-12; 
}
.cherry-sign {
  /* coordinates of the image */
  --i:-37; 
  --j:-9; 
}
.cherry-slab {
  /* coordinates of the image */
  --i:-36; 
  --j:-30; 
}
.cherry-stairs {
  /* coordinates of the image */
  --i:-36; 
  --j:-31; 
}
.cherry-trapdoor {
  /* coordinates of the image */
  --i:-37; 
  --j:-7; 
}
.cherry-wood {
  /* coordinates of the image */
  --i:-37; 
  --j:-0; 
}
.cherry-wood-button {
  /* coordinates of the image */
  --i:-37; 
  --j:-3; 
}
.cherry-wood-door {
  /* coordinates of the image */
  --i:-37; 
  --j:-4; 
}
.cherry-wood-fence {
  /* coordinates of the image */
  --i:-36; 
  --j:-28; 
}
.cherry-wood-fence-gate {
  /* coordinates of the image */
  --i:-37; 
  --j:-5; 
}
.cherry-wood-planks {
  /* coordinates of the image */
  --i:-36; 
  --j:-29; 
}
.cherry-wood-pressure-plate {
  /* coordinates of the image */
  --i:-37; 
  --j:-6; 
}
.cherry-wood-sign {
  /* coordinates of the image */
  --i:-37; 
  --j:-9; 
}
.cherry-wood-slab {
  /* coordinates of the image */
  --i:-36; 
  --j:-30; 
}
.cherry-wood-stairs {
  /* coordinates of the image */
  --i:-36; 
  --j:-31; 
}
.cherry-wood-trapdoor {
  /* coordinates of the image */
  --i:-37; 
  --j:-7; 
}
.chest {
  /* coordinates of the image */
  --i:-38; 
  --j:-22; 
}
.chest-be {
  /* coordinates of the image */
  --i:-1; 
  --j:-25; 
}
.chest-revision-2 {
  /* coordinates of the image */
  --i:-11; 
  --j:-22; 
}
.chicken-spawn-egg {
  /* coordinates of the image */
  --i:-35; 
  --j:-24; 
}
.chicken-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-7; 
}
.chipped-anvil {
  /* coordinates of the image */
  --i:-112; 
  --j:-15; 
}
.chiseled-bookshelf {
  /* coordinates of the image */
  --i:-21; 
  --j:-15; 
}
.chiseled-deepslate {
  /* coordinates of the image */
  --i:-15; 
  --j:-8; 
}
.chiseled-nether-bricks {
  /* coordinates of the image */
  --i:-8; 
  --j:-12; 
}
.chiseled-polished-blackstone {
  /* coordinates of the image */
  --i:-8; 
  --j:-13; 
}
.chiseled-quartz-block {
  /* coordinates of the image */
  --i:-27; 
  --j:-7; 
}
.chiseled-red-sandstone {
  /* coordinates of the image */
  --i:-101; 
  --j:-11; 
}
.chiseled-sandstone {
  /* coordinates of the image */
  --i:-101; 
  --j:-12; 
}
.chiseled-stone-bricks {
  /* coordinates of the image */
  --i:-104; 
  --j:-28; 
}
.chiseled-stone-bricks-monster-egg {
  /* coordinates of the image */
  --i:-104; 
  --j:-28; 
}
.chlorine {
  /* coordinates of the image */
  --i:-56; 
  --j:-0; 
}
.chorus-flower {
  /* coordinates of the image */
  --i:-106; 
  --j:-19; 
}
.chorus-fruit {
  /* coordinates of the image */
  --i:-99; 
  --j:-30; 
}
.chorus-plant {
  /* coordinates of the image */
  --i:-106; 
  --j:-20; 
}
.chromium {
  /* coordinates of the image */
  --i:-56; 
  --j:-1; 
}
.clay {
  /* coordinates of the image */
  --i:-104; 
  --j:-29; 
}
.clay-ball {
  /* coordinates of the image */
  --i:-109; 
  --j:-17; 
}
.clay-block {
  /* coordinates of the image */
  --i:-104; 
  --j:-29; 
}
.clay-ball {
  /* coordinates of the image */
  --i:-109; 
  --j:-17; 
}
.clock {
  /* coordinates of the image */
  --i:-17; 
  --j:-4; 
}
.clock-revision-1 {
  /* coordinates of the image */
  --i:-67; 
  --j:-24; 
}
.clock-revision-2 {
  /* coordinates of the image */
  --i:-15; 
  --j:-30; 
}
.clownfish {
  /* coordinates of the image */
  --i:-25; 
  --j:-24; 
}
.clownfish-revision-1 {
  /* coordinates of the image */
  --i:-25; 
  --j:-24; 
}
.cluckshroom-spawn-egg {
  /* coordinates of the image */
  --i:-19; 
  --j:-15; 
}
.coal {
  /* coordinates of the image */
  --i:-109; 
  --j:-18; 
}
.coal-ore {
  /* coordinates of the image */
  --i:-105; 
  --j:-30; 
}
.coal-revision-2 {
  /* coordinates of the image */
  --i:-34; 
  --j:-30; 
}
.coarse-dirt {
  /* coordinates of the image */
  --i:-30; 
  --j:-13; 
}
.coast-armor-trim {
  /* coordinates of the image */
  --i:-6; 
  --j:-11; 
}
.coast-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-6; 
  --j:-11; 
}
.cobalt {
  /* coordinates of the image */
  --i:-56; 
  --j:-2; 
}
.cobbled-deepslate {
  /* coordinates of the image */
  --i:-16; 
  --j:-0; 
}
.cobbled-deepslate-slab {
  /* coordinates of the image */
  --i:-15; 
  --j:-13; 
}
.cobbled-deepslate-stairs {
  /* coordinates of the image */
  --i:-15; 
  --j:-14; 
}
.cobbled-deepslate-wall {
  /* coordinates of the image */
  --i:-15; 
  --j:-19; 
}
.cobbled-deepslate-wall-be {
  /* coordinates of the image */
  --i:-17; 
  --j:-15; 
}
.cobblestone {
  /* coordinates of the image */
  --i:-104; 
  --j:-30; 
}
.cobblestone-monster-egg {
  /* coordinates of the image */
  --i:-104; 
  --j:-30; 
}
.cobblestone-slab {
  /* coordinates of the image */
  --i:-101; 
  --j:-13; 
}
.cobblestone-stairs {
  /* coordinates of the image */
  --i:-101; 
  --j:-14; 
}
.cobblestone-stairs-left {
  /* coordinates of the image */
  --i:-70; 
  --j:-17; 
}
.cobblestone-wall {
  /* coordinates of the image */
  --i:-101; 
  --j:-15; 
}
.cobblestone-wall-be {
  /* coordinates of the image */
  --i:-63; 
  --j:-7; 
}
.cobweb {
  /* coordinates of the image */
  --i:-104; 
  --j:-31; 
}
.cocoa-beans {
  /* coordinates of the image */
  --i:-98; 
  --j:-19; 
}
.cod-spawn-egg {
  /* coordinates of the image */
  --i:-53; 
  --j:-0; 
}
.cod-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-61; 
  --j:-15; 
}
.compass {
  /* coordinates of the image */
  --i:-17; 
  --j:-5; 
}
.compass-revision-1 {
  /* coordinates of the image */
  --i:-67; 
  --j:-23; 
}
.compass-revision-2 {
  /* coordinates of the image */
  --i:-15; 
  --j:-31; 
}
.composter {
  /* coordinates of the image */
  --i:-76; 
  --j:-27; 
}
.compound-creator {
  /* coordinates of the image */
  --i:-60; 
  --j:-10; 
}
.compound-tag {
  /* coordinates of the image */
  --i:-38; 
  --j:-29; 
}
.conduit {
  /* coordinates of the image */
  --i:-63; 
  --j:-16; 
}
.conduit-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-20; 
}
.cooked-beef {
  /* coordinates of the image */
  --i:-26; 
  --j:-15; 
}
.cooked-chicken {
  /* coordinates of the image */
  --i:-99; 
  --j:-31; 
}
.cooked-cod {
  /* coordinates of the image */
  --i:-52; 
  --j:-25; 
}
.cooked-fish {
  /* coordinates of the image */
  --i:-25; 
  --j:-26; 
}
.cooked-fish-revision-1 {
  /* coordinates of the image */
  --i:-25; 
  --j:-26; 
}
.cooked-mutton {
  /* coordinates of the image */
  --i:-100; 
  --j:-0; 
}
.cooked-porkchop {
  /* coordinates of the image */
  --i:-100; 
  --j:-1; 
}
.cooked-rabbit {
  /* coordinates of the image */
  --i:-100; 
  --j:-2; 
}
.cooked-salmon {
  /* coordinates of the image */
  --i:-52; 
  --j:-26; 
}
.cooked-salmon-3ds {
  /* coordinates of the image */
  --i:-25; 
  --j:-30; 
}
.cooked-salmon-revision-1 {
  /* coordinates of the image */
  --i:-25; 
  --j:-30; 
}
.cookie {
  /* coordinates of the image */
  --i:-100; 
  --j:-3; 
}
.copernicium {
  /* coordinates of the image */
  --i:-56; 
  --j:-3; 
}
.copper {
  /* coordinates of the image */
  --i:-56; 
  --j:-4; 
}
.copper-block {
  /* coordinates of the image */
  --i:-12; 
  --j:-16; 
}
.copper-horn {
  /* coordinates of the image */
  --i:-18; 
  --j:-6; 
}
.copper-ingot {
  /* coordinates of the image */
  --i:-14; 
  --j:-1; 
}
.copper-ore {
  /* coordinates of the image */
  --i:-14; 
  --j:-0; 
}
.copper-sink {
  /* coordinates of the image */
  --i:-38; 
  --j:-30; 
}
.copper-spleaves {
  /* coordinates of the image */
  --i:-38; 
  --j:-31; 
}
.copper-trim-chainmail-boots {
  /* coordinates of the image */
  --i:-26; 
  --j:-29; 
}
.copper-trim-chainmail-chestplate {
  /* coordinates of the image */
  --i:-26; 
  --j:-30; 
}
.copper-trim-chainmail-helmet {
  /* coordinates of the image */
  --i:-26; 
  --j:-31; 
}
.copper-trim-chainmail-leggings {
  /* coordinates of the image */
  --i:-27; 
  --j:-0; 
}
.copper-trim-diamond-boots {
  /* coordinates of the image */
  --i:-27; 
  --j:-1; 
}
.copper-trim-diamond-chestplate {
  /* coordinates of the image */
  --i:-27; 
  --j:-3; 
}
.copper-trim-diamond-helmet {
  /* coordinates of the image */
  --i:-27; 
  --j:-4; 
}
.copper-trim-diamond-leggings {
  /* coordinates of the image */
  --i:-27; 
  --j:-8; 
}
.copper-trim-golden-boots {
  /* coordinates of the image */
  --i:-27; 
  --j:-9; 
}
.copper-trim-golden-chestplate {
  /* coordinates of the image */
  --i:-27; 
  --j:-10; 
}
.copper-trim-golden-helmet {
  /* coordinates of the image */
  --i:-27; 
  --j:-11; 
}
.copper-trim-golden-leggings {
  /* coordinates of the image */
  --i:-27; 
  --j:-12; 
}
.copper-trim-iron-boots {
  /* coordinates of the image */
  --i:-27; 
  --j:-13; 
}
.copper-trim-iron-chestplate {
  /* coordinates of the image */
  --i:-27; 
  --j:-14; 
}
.copper-trim-iron-helmet {
  /* coordinates of the image */
  --i:-27; 
  --j:-15; 
}
.copper-trim-iron-leggings {
  /* coordinates of the image */
  --i:-27; 
  --j:-17; 
}
.copper-trim-leather-boots {
  /* coordinates of the image */
  --i:-27; 
  --j:-18; 
}
.copper-trim-leather-cap {
  /* coordinates of the image */
  --i:-27; 
  --j:-20; 
}
.copper-trim-leather-pants {
  /* coordinates of the image */
  --i:-27; 
  --j:-22; 
}
.copper-trim-leather-tunic {
  /* coordinates of the image */
  --i:-27; 
  --j:-23; 
}
.copper-trim-netherite-boots {
  /* coordinates of the image */
  --i:-27; 
  --j:-24; 
}
.copper-trim-netherite-chestplate {
  /* coordinates of the image */
  --i:-27; 
  --j:-25; 
}
.copper-trim-netherite-helmet {
  /* coordinates of the image */
  --i:-27; 
  --j:-26; 
}
.copper-trim-netherite-leggings {
  /* coordinates of the image */
  --i:-27; 
  --j:-27; 
}
.copper-trim-turtle-shell {
  /* coordinates of the image */
  --i:-27; 
  --j:-28; 
}
.cornflower {
  /* coordinates of the image */
  --i:-74; 
  --j:-20; 
}
.cow-spawn-egg {
  /* coordinates of the image */
  --i:-35; 
  --j:-25; 
}
.cow-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-8; 
}
.cracked-deepslate-bricks {
  /* coordinates of the image */
  --i:-16; 
  --j:-7; 
}
.cracked-deepslate-tiles {
  /* coordinates of the image */
  --i:-16; 
  --j:-8; 
}
.cracked-nether-bricks {
  /* coordinates of the image */
  --i:-8; 
  --j:-14; 
}
.cracked-polished-blackstone-bricks {
  /* coordinates of the image */
  --i:-8; 
  --j:-15; 
}
.cracked-stone-bricks {
  /* coordinates of the image */
  --i:-105; 
  --j:-0; 
}
.cracked-stone-bricks-monster-egg {
  /* coordinates of the image */
  --i:-105; 
  --j:-0; 
}
.crafting-table {
  /* coordinates of the image */
  --i:-112; 
  --j:-16; 
}


.creeper-head {
  /* coordinates of the image */
  --i:-30; 
  --j:-3; 
}
.creeper-head-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-22; 
}
.creeper-spawn-egg {
  /* coordinates of the image */
  --i:-35; 
  --j:-26; 
}
.creeper-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-9; 
}
.crimson-button {
  /* coordinates of the image */
  --i:-5; 
  --j:-6; 
}
.crimson-door {
  /* coordinates of the image */
  --i:-5; 
  --j:-7; 
}
.crimson-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-7; 
}
.crimson-fence-be {
  /* coordinates of the image */
  --i:-5; 
  --j:-0; 
}
.crimson-fence-gate {
  /* coordinates of the image */
  --i:-5; 
  --j:-18; 
}
.crimson-fence-gate-be {
  /* coordinates of the image */
  --i:-11; 
  --j:-26; 
}
.crimson-fungus {
  /* coordinates of the image */
  --i:-4; 
  --j:-29; 
}
.crimson-hanging-sign {
  /* coordinates of the image */
  --i:-20; 
  --j:-11; 
}
.crimson-hyphae {
  /* coordinates of the image */
  --i:-6; 
  --j:-5; 
}
.crimson-nylium {
  /* coordinates of the image */
  --i:-4; 
  --j:-20; 
}
.crimson-planks {
  /* coordinates of the image */
  --i:-4; 
  --j:-17; 
}
.crimson-pressure-plate {
  /* coordinates of the image */
  --i:-5; 
  --j:-8; 
}
.crimson-roots {
  /* coordinates of the image */
  --i:-5; 
  --j:-29; 
}
.crimson-sign {
  /* coordinates of the image */
  --i:-5; 
  --j:-16; 
}
.crimson-slab {
  /* coordinates of the image */
  --i:-5; 
  --j:-1; 
}
.crimson-stairs {
  /* coordinates of the image */
  --i:-5; 
  --j:-2; 
}
.crimson-stem {
  /* coordinates of the image */
  --i:-4; 
  --j:-21; 
}
.crimson-trapdoor {
  /* coordinates of the image */
  --i:-5; 
  --j:-9; 
}
.crossbow {
  /* coordinates of the image */
  --i:-74; 
  --j:-13; 
}
.crude-oil {
  /* coordinates of the image */
  --i:-59; 
  --j:-2; 
}
.crying-obsidian {
  /* coordinates of the image */
  --i:-6; 
  --j:-4; 
}
.crying-obsidian-be {
  /* coordinates of the image */
  --i:-15; 
  --j:-28; 
}
.crystallized-honey {
  /* coordinates of the image */
  --i:-2; 
  --j:-30; 
}
.cuprum {
  /* coordinates of the image */
  --i:-56; 
  --j:-4; 
}
.curium {
  /* coordinates of the image */
  --i:-56; 
  --j:-5; 
}
.cut-copper {
  /* coordinates of the image */
  --i:-12; 
  --j:-17; 
}
.cut-copper-block {
  /* coordinates of the image */
  --i:-12; 
  --j:-17; 
}
.cut-copper-slab {
  /* coordinates of the image */
  --i:-12; 
  --j:-18; 
}
.cut-copper-stairs {
  /* coordinates of the image */
  --i:-12; 
  --j:-19; 
}
.cut-red-sandstone {
  /* coordinates of the image */
  --i:-101; 
  --j:-16; 
}
.cut-red-sandstone-slab {
  /* coordinates of the image */
  --i:-77; 
  --j:-1; 
}
.cut-sandstone {
  /* coordinates of the image */
  --i:-101; 
  --j:-17; 
}
.cut-sandstone-slab {
  /* coordinates of the image */
  --i:-77; 
  --j:-2; 
}
.cyan-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-11; 
}
.cyan-banner {
  /* coordinates of the image */
  --i:-22; 
  --j:-17; 
}
.cyan-banner-15w14a {
  /* coordinates of the image */
  --i:-14; 
  --j:-26; 
}
.cyan-base-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-19; 
}
.cyan-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-20; 
}
.cyan-base-gradient-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-21; 
}
.cyan-base-indented-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-22; 
}
.cyan-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-23; 
}
.cyan-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-5; 
}
.cyan-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-11; 
}
.cyan-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-11; 
}
.cyan-bend-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-24; 
}
.cyan-bend-sinister-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-25; 
}
.cyan-bordure-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-26; 
}
.cyan-bordure-indented-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-27; 
}
.cyan-candle {
  /* coordinates of the image */
  --i:-12; 
  --j:-20; 
}
.cyan-carpet {
  /* coordinates of the image */
  --i:-50; 
  --j:-23; 
}
.cyan-carpet-revision-1 {
  /* coordinates of the image */
  --i:-22; 
  --j:-18; 
}
.cyan-chevron-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-28; 
}
.cyan-chief-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-30; 
}
.cyan-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-31; 
}
.cyan-chief-indented-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-0; 
}
.cyan-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-1; 
}
.cyan-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-4; 
}
.cyan-concrete {
  /* coordinates of the image */
  --i:-46; 
  --j:-11; 
}
.cyan-concrete-powder {
  /* coordinates of the image */
  --i:-46; 
  --j:-12; 
}
.cyan-creeper-charge-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-2; 
}
.cyan-cross-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-3; 
}
.cyan-dye {
  /* coordinates of the image */
  --i:-98; 
  --j:-20; 
}
.cyan-fess-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-4; 
}
.cyan-field-masoned-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-5; 
}
.cyan-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-6; 
}
.cyan-flower-charge-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-6; 
}
.cyan-glazed-terracotta {
  /* coordinates of the image */
  --i:-48; 
  --j:-3; 
}
.cyan-glazed-terracotta-revision-1 {
  /* coordinates of the image */
  --i:-46; 
  --j:-13; 
}
.cyan-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-5; 
}
.cyan-glow-stick {
  /* coordinates of the image */
  --i:-61; 
  --j:-26; 
}
.cyan-gradient-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-7; 
}
.cyan-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-82; 
  --j:-29; 
}
.cyan-lozenge-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-8; 
}
.cyan-pale-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-9; 
}
.cyan-pale-dexter-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-10; 
}
.cyan-pale-sinister-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-11; 
}
.cyan-paly-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-12; 
}
.cyan-per-bend-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-13; 
}
.cyan-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-14; 
}
.cyan-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-15; 
}
.cyan-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-16; 
}
.cyan-per-fess-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-17; 
}
.cyan-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-18; 
}
.cyan-per-pale-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-19; 
}
.cyan-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-20; 
}
.cyan-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-9; 
}
.cyan-roundel-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-21; 
}
.cyan-saltire-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-22; 
}
.cyan-shield {
  /* coordinates of the image */
  --i:-77; 
  --j:-12; 
}
.cyan-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-5; 
}
.cyan-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-10; 
}
.cyan-skull-charge-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-23; 
}
.cyan-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-9; 
}
.cyan-stained-glass {
  /* coordinates of the image */
  --i:-22; 
  --j:-20; 
}
.cyan-stained-glass-pane {
  /* coordinates of the image */
  --i:-22; 
  --j:-21; 
}
.cyan-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-62; 
  --j:-26; 
}
.cyan-terracotta {
  /* coordinates of the image */
  --i:-22; 
  --j:-19; 
}
.cyan-thing-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-24; 
}
.cyan-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-17; 
}
.cyan-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-5; 
}
.cyan-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-22; 
}
.cyan-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-21; 
}
.cyan-wool-revision-2 {
  /* coordinates of the image */
  --i:-22; 
  --j:-22; 
}
.cyanoacrylate {
  /* coordinates of the image */
  --i:-54; 
  --j:-21; 
}
.damaged-anvil {
  /* coordinates of the image */
  --i:-112; 
  --j:-17; 
}
.damaged-arrow-loaded-crossbow {
  /* coordinates of the image */
  --i:-74; 
  --j:-15; 
}
.damaged-bow {
  /* coordinates of the image */
  --i:-40; 
  --j:-0; 
}
.damaged-brush {
  /* coordinates of the image */
  --i:-37; 
  --j:-24; 
}
.damaged-carrot-on-a-stick {
  /* coordinates of the image */
  --i:-110; 
  --j:-14; 
}
.damaged-chainmail-boots {
  /* coordinates of the image */
  --i:-77; 
  --j:-13; 
}
.damaged-chainmail-chestplate {
  /* coordinates of the image */
  --i:-77; 
  --j:-14; 
}
.damaged-chainmail-helmet {
  /* coordinates of the image */
  --i:-77; 
  --j:-15; 
}
.damaged-chainmail-leggings {
  /* coordinates of the image */
  --i:-77; 
  --j:-16; 
}
.damaged-crossbow {
  /* coordinates of the image */
  --i:-74; 
  --j:-16; 
}
.damaged-diamond-axe {
  /* coordinates of the image */
  --i:-110; 
  --j:-15; 
}
.damaged-diamond-boots {
  /* coordinates of the image */
  --i:-77; 
  --j:-17; 
}
.damaged-diamond-chestplate {
  /* coordinates of the image */
  --i:-77; 
  --j:-18; 
}
.damaged-diamond-helmet {
  /* coordinates of the image */
  --i:-77; 
  --j:-19; 
}
.damaged-diamond-hoe {
  /* coordinates of the image */
  --i:-110; 
  --j:-16; 
}
.damaged-diamond-leggings {
  /* coordinates of the image */
  --i:-77; 
  --j:-20; 
}
.damaged-diamond-pickaxe {
  /* coordinates of the image */
  --i:-110; 
  --j:-17; 
}
.damaged-diamond-shovel {
  /* coordinates of the image */
  --i:-110; 
  --j:-18; 
}
.damaged-diamond-sword {
  /* coordinates of the image */
  --i:-113; 
  --j:-13; 
}
.damaged-elytra {
  /* coordinates of the image */
  --i:-77; 
  --j:-21; 
}
.damaged-firework-loaded-crossbow {
  /* coordinates of the image */
  --i:-74; 
  --j:-17; 
}
.damaged-fishing-rod {
  /* coordinates of the image */
  --i:-110; 
  --j:-19; 
}
.damaged-flint-and-steel {
  /* coordinates of the image */
  --i:-110; 
  --j:-20; 
}
.damaged-golden-axe {
  /* coordinates of the image */
  --i:-110; 
  --j:-21; 
}
.damaged-golden-boots {
  /* coordinates of the image */
  --i:-77; 
  --j:-22; 
}
.damaged-golden-chestplate {
  /* coordinates of the image */
  --i:-77; 
  --j:-23; 
}
.damaged-golden-helmet {
  /* coordinates of the image */
  --i:-77; 
  --j:-24; 
}
.damaged-golden-hoe {
  /* coordinates of the image */
  --i:-110; 
  --j:-22; 
}
.damaged-golden-leggings {
  /* coordinates of the image */
  --i:-77; 
  --j:-25; 
}
.damaged-golden-pickaxe {
  /* coordinates of the image */
  --i:-110; 
  --j:-23; 
}
.damaged-golden-shovel {
  /* coordinates of the image */
  --i:-110; 
  --j:-24; 
}
.damaged-golden-sword {
  /* coordinates of the image */
  --i:-113; 
  --j:-14; 
}
.damaged-iron-axe {
  /* coordinates of the image */
  --i:-110; 
  --j:-25; 
}
.damaged-iron-boots {
  /* coordinates of the image */
  --i:-77; 
  --j:-26; 
}
.damaged-iron-chestplate {
  /* coordinates of the image */
  --i:-77; 
  --j:-27; 
}
.damaged-iron-helmet {
  /* coordinates of the image */
  --i:-77; 
  --j:-28; 
}
.damaged-iron-hoe {
  /* coordinates of the image */
  --i:-110; 
  --j:-26; 
}
.damaged-iron-leggings {
  /* coordinates of the image */
  --i:-77; 
  --j:-29; 
}
.damaged-iron-pickaxe {
  /* coordinates of the image */
  --i:-110; 
  --j:-27; 
}
.damaged-iron-shovel {
  /* coordinates of the image */
  --i:-110; 
  --j:-28; 
}
.damaged-iron-sword {
  /* coordinates of the image */
  --i:-113; 
  --j:-15; 
}
.damaged-leather-boots {
  /* coordinates of the image */
  --i:-77; 
  --j:-30; 
}
.damaged-leather-cap {
  /* coordinates of the image */
  --i:-77; 
  --j:-31; 
}
.damaged-leather-pants {
  /* coordinates of the image */
  --i:-78; 
  --j:-0; 
}
.damaged-leather-tunic {
  /* coordinates of the image */
  --i:-78; 
  --j:-1; 
}
.damaged-netherite-axe {
  /* coordinates of the image */
  --i:-5; 
  --j:-20; 
}
.damaged-netherite-boots {
  /* coordinates of the image */
  --i:-5; 
  --j:-21; 
}
.damaged-netherite-chestplate {
  /* coordinates of the image */
  --i:-5; 
  --j:-22; 
}
.damaged-netherite-helmet {
  /* coordinates of the image */
  --i:-5; 
  --j:-23; 
}
.damaged-netherite-hoe {
  /* coordinates of the image */
  --i:-5; 
  --j:-24; 
}
.damaged-netherite-leggings {
  /* coordinates of the image */
  --i:-5; 
  --j:-25; 
}
.damaged-netherite-pickaxe {
  /* coordinates of the image */
  --i:-5; 
  --j:-26; 
}
.damaged-netherite-shovel {
  /* coordinates of the image */
  --i:-5; 
  --j:-27; 
}
.damaged-netherite-sword {
  /* coordinates of the image */
  --i:-5; 
  --j:-28; 
}
.damaged-shears {
  /* coordinates of the image */
  --i:-110; 
  --j:-29; 
}
.damaged-shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-2; 
}
.damaged-stone-axe {
  /* coordinates of the image */
  --i:-110; 
  --j:-30; 
}
.damaged-stone-hoe {
  /* coordinates of the image */
  --i:-110; 
  --j:-31; 
}
.damaged-stone-pickaxe {
  /* coordinates of the image */
  --i:-111; 
  --j:-0; 
}
.damaged-stone-shovel {
  /* coordinates of the image */
  --i:-111; 
  --j:-1; 
}
.damaged-stone-sword {
  /* coordinates of the image */
  --i:-113; 
  --j:-16; 
}
.damaged-trident {
  /* coordinates of the image */
  --i:-3; 
  --j:-3; 
}
.damaged-turtle-shell {
  /* coordinates of the image */
  --i:-76; 
  --j:-23; 
}
.damaged-warped-fungus-on-a-stick {
  /* coordinates of the image */
  --i:-11; 
  --j:-29; 
}
.damaged-wooden-axe {
  /* coordinates of the image */
  --i:-111; 
  --j:-2; 
}
.damaged-wooden-hoe {
  /* coordinates of the image */
  --i:-111; 
  --j:-3; 
}
.damaged-wooden-pickaxe {
  /* coordinates of the image */
  --i:-111; 
  --j:-4; 
}
.damaged-wooden-shovel {
  /* coordinates of the image */
  --i:-111; 
  --j:-5; 
}
.damaged-wooden-sword {
  /* coordinates of the image */
  --i:-113; 
  --j:-17; 
}
.dandelion {
  /* coordinates of the image */
  --i:-106; 
  --j:-21; 
}
.dandelion-yellow {
  /* coordinates of the image */
  --i:-21; 
  --j:-19; 
}
.danger-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-7; 
}
.dark-gray-beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-5; 
}
.dark-gray-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-5; 
}
.dark-gray-flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-16; 
}
.dark-gray-jar {
  /* coordinates of the image */
  --i:-59; 
  --j:-30; 
}
.dark-oak-boat {
  /* coordinates of the image */
  --i:-19; 
  --j:-29; 
}
.dark-oak-boat-revision-2 {
  /* coordinates of the image */
  --i:-113; 
  --j:-3; 
}
.dark-oak-boat-with-chest {
  /* coordinates of the image */
  --i:-19; 
  --j:-5; 
}
.dark-oak-button {
  /* coordinates of the image */
  --i:-104; 
  --j:-3; 
}
.dark-oak-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-23; 
}
.dark-oak-door-revision-3 {
  /* coordinates of the image */
  --i:-29; 
  --j:-10; 
}
.dark-oak-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-5; 
}
.dark-oak-fence-be {
  /* coordinates of the image */
  --i:-101; 
  --j:-19; 
}
.dark-oak-fence-gate {
  /* coordinates of the image */
  --i:-101; 
  --j:-18; 
}
.dark-oak-fence-gate-be {
  /* coordinates of the image */
  --i:-1; 
  --j:-21; 
}
.dark-oak-hanging-sign {
  /* coordinates of the image */
  --i:-20; 
  --j:-12; 
}
.dark-oak-leaves {
  /* coordinates of the image */
  --i:-106; 
  --j:-22; 
}
.dark-oak-log {
  /* coordinates of the image */
  --i:-106; 
  --j:-23; 
}
.dark-oak-planks {
  /* coordinates of the image */
  --i:-27; 
  --j:-16; 
}
.dark-oak-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-4; 
}
.dark-oak-sapling {
  /* coordinates of the image */
  --i:-106; 
  --j:-24; 
}
.dark-oak-sign {
  /* coordinates of the image */
  --i:-74; 
  --j:-28; 
}
.dark-oak-slab {
  /* coordinates of the image */
  --i:-101; 
  --j:-20; 
}
.dark-oak-stairs {
  /* coordinates of the image */
  --i:-101; 
  --j:-21; 
}
.dark-oak-trapdoor {
  /* coordinates of the image */
  --i:-51; 
  --j:-18; 
}
.dark-oak-wood {
  /* coordinates of the image */
  --i:-101; 
  --j:-22; 
}
.dark-oak-wood-button {
  /* coordinates of the image */
  --i:-104; 
  --j:-3; 
}
.dark-oak-wood-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-23; 
}
.dark-oak-wood-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-5; 
}
.dark-oak-wood-fence-gate {
  /* coordinates of the image */
  --i:-101; 
  --j:-18; 
}
.dark-oak-wood-planks {
  /* coordinates of the image */
  --i:-27; 
  --j:-16; 
}
.dark-oak-wood-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-4; 
}
.dark-oak-wood-sign {
  /* coordinates of the image */
  --i:-74; 
  --j:-28; 
}
.dark-oak-wood-slab {
  /* coordinates of the image */
  --i:-101; 
  --j:-20; 
}
.dark-oak-wood-stairs {
  /* coordinates of the image */
  --i:-101; 
  --j:-21; 
}
.dark-oak-wood-trapdoor {
  /* coordinates of the image */
  --i:-51; 
  --j:-18; 
}
.dark-prismarine {
  /* coordinates of the image */
  --i:-105; 
  --j:-1; 
}
.dark-prismarine-slab {
  /* coordinates of the image */
  --i:-101; 
  --j:-23; 
}
.dark-prismarine-stairs {
  /* coordinates of the image */
  --i:-101; 
  --j:-24; 
}
.darmstadtium {
  /* coordinates of the image */
  --i:-56; 
  --j:-6; 
}
.daylight-detector {
  /* coordinates of the image */
  --i:-38; 
  --j:-25; 
}
.daylight-sensor {
  /* coordinates of the image */
  --i:-38; 
  --j:-25; 
}
.dead-brain-coral {
  /* coordinates of the image */
  --i:-73; 
  --j:-31; 
}
.dead-brain-coral-block {
  /* coordinates of the image */
  --i:-53; 
  --j:-21; 
}
.dead-brain-coral-fan {
  /* coordinates of the image */
  --i:-67; 
  --j:-1; 
}
.dead-brain-coral-fan-revision-1 {
  /* coordinates of the image */
  --i:-54; 
  --j:-8; 
}
.dead-bubble-coral {
  /* coordinates of the image */
  --i:-74; 
  --j:-0; 
}
.dead-bubble-coral-block {
  /* coordinates of the image */
  --i:-53; 
  --j:-22; 
}
.dead-bubble-coral-fan {
  /* coordinates of the image */
  --i:-67; 
  --j:-2; 
}
.dead-bubble-coral-fan-revision-1 {
  /* coordinates of the image */
  --i:-54; 
  --j:-9; 
}
.dead-bush {
  /* coordinates of the image */
  --i:-106; 
  --j:-25; 
}
.dead-coral {
  /* coordinates of the image */
  --i:-53; 
  --j:-4; 
}
.dead-fire-coral {
  /* coordinates of the image */
  --i:-74; 
  --j:-1; 
}
.dead-fire-coral-block {
  /* coordinates of the image */
  --i:-53; 
  --j:-23; 
}
.dead-fire-coral-fan {
  /* coordinates of the image */
  --i:-67; 
  --j:-3; 
}
.dead-fire-coral-fan-revision-1 {
  /* coordinates of the image */
  --i:-54; 
  --j:-10; 
}
.dead-horn-coral {
  /* coordinates of the image */
  --i:-74; 
  --j:-2; 
}
.dead-horn-coral-block {
  /* coordinates of the image */
  --i:-53; 
  --j:-24; 
}
.dead-horn-coral-fan {
  /* coordinates of the image */
  --i:-67; 
  --j:-4; 
}
.dead-horn-coral-fan-revision-1 {
  /* coordinates of the image */
  --i:-54; 
  --j:-11; 
}
.dead-tube-coral {
  /* coordinates of the image */
  --i:-73; 
  --j:-30; 
}
.dead-tube-coral-block {
  /* coordinates of the image */
  --i:-53; 
  --j:-20; 
}
.dead-tube-coral-fan {
  /* coordinates of the image */
  --i:-67; 
  --j:-5; 
}
.dead-tube-coral-fan-revision-1 {
  /* coordinates of the image */
  --i:-54; 
  --j:-12; 
}
.debug-stick {
  /* coordinates of the image */
  --i:-35; 
  --j:-19; 
}
.decorated-pot {
  /* coordinates of the image */
  --i:-36; 
  --j:-27; 
}
.deepslate {
  /* coordinates of the image */
  --i:-15; 
  --j:-22; 
}
.deepslate-brick-slab {
  /* coordinates of the image */
  --i:-15; 
  --j:-9; 
}
.deepslate-brick-stairs {
  /* coordinates of the image */
  --i:-15; 
  --j:-10; 
}
.deepslate-brick-wall {
  /* coordinates of the image */
  --i:-15; 
  --j:-11; 
}
.deepslate-brick-wall-be {
  /* coordinates of the image */
  --i:-17; 
  --j:-18; 
}
.deepslate-bricks {
  /* coordinates of the image */
  --i:-15; 
  --j:-12; 
}
.deepslate-coal-ore {
  /* coordinates of the image */
  --i:-16; 
  --j:-9; 
}
.deepslate-copper-ore {
  /* coordinates of the image */
  --i:-16; 
  --j:-10; 
}
.deepslate-diamond-ore {
  /* coordinates of the image */
  --i:-16; 
  --j:-1; 
}
.deepslate-emerald-ore {
  /* coordinates of the image */
  --i:-16; 
  --j:-11; 
}
.deepslate-gold-ore {
  /* coordinates of the image */
  --i:-16; 
  --j:-2; 
}
.deepslate-iron-ore {
  /* coordinates of the image */
  --i:-16; 
  --j:-3; 
}
.deepslate-lapis-lazuli-ore {
  /* coordinates of the image */
  --i:-16; 
  --j:-4; 
}
.deepslate-redstone-ore {
  /* coordinates of the image */
  --i:-16; 
  --j:-5; 
}
.deepslate-tile-slab {
  /* coordinates of the image */
  --i:-15; 
  --j:-15; 
}
.deepslate-tile-stairs {
  /* coordinates of the image */
  --i:-15; 
  --j:-16; 
}
.deepslate-tile-wall {
  /* coordinates of the image */
  --i:-15; 
  --j:-17; 
}
.deepslate-tile-wall-be {
  /* coordinates of the image */
  --i:-17; 
  --j:-16; 
}
.deepslate-tiles {
  /* coordinates of the image */
  --i:-15; 
  --j:-18; 
}
.deny {
  /* coordinates of the image */
  --i:-44; 
  --j:-27; 
}
.desert-village-map {
  /* coordinates of the image */
  --i:-41; 
  --j:-13; 
}
.desert-village-map-be {
  /* coordinates of the image */
  --i:-41; 
  --j:-14; 
}
.detector-rail {
  /* coordinates of the image */
  --i:-104; 
  --j:-5; 
}
.diamond {
  /* coordinates of the image */
  --i:-109; 
  --j:-19; 
}
.diamond-axe {
  /* coordinates of the image */
  --i:-111; 
  --j:-6; 
}
.diamond-boots {
  /* coordinates of the image */
  --i:-78; 
  --j:-3; 
}
.diamond-chestplate {
  /* coordinates of the image */
  --i:-78; 
  --j:-4; 
}
.diamond-drows {
  /* coordinates of the image */
  --i:-41; 
  --j:-7; 
}
.diamond-heart {
  /* coordinates of the image */
  --i:-3; 
  --j:-21; 
}
.diamond-helmet {
  /* coordinates of the image */
  --i:-78; 
  --j:-5; 
}
.diamond-hoe {
  /* coordinates of the image */
  --i:-111; 
  --j:-7; 
}
.diamond-horse-armor {
  /* coordinates of the image */
  --i:-0; 
  --j:-28; 
}
.diamond-leggings {
  /* coordinates of the image */
  --i:-78; 
  --j:-6; 
}
.diamond-ore {
  /* coordinates of the image */
  --i:-105; 
  --j:-31; 
}
.diamond-pickaxe {
  /* coordinates of the image */
  --i:-111; 
  --j:-8; 
}
.diamond-shovel {
  /* coordinates of the image */
  --i:-111; 
  --j:-9; 
}
.diamond-sword {
  /* coordinates of the image */
  --i:-113; 
  --j:-18; 
}
.diamond-trim-chainmail-boots {
  /* coordinates of the image */
  --i:-27; 
  --j:-29; 
}
.diamond-trim-chainmail-chestplate {
  /* coordinates of the image */
  --i:-27; 
  --j:-30; 
}
.diamond-trim-chainmail-helmet {
  /* coordinates of the image */
  --i:-28; 
  --j:-0; 
}
.diamond-trim-chainmail-leggings {
  /* coordinates of the image */
  --i:-28; 
  --j:-1; 
}
.diamond-trim-diamond-boots {
  /* coordinates of the image */
  --i:-28; 
  --j:-2; 
}
.diamond-trim-diamond-chestplate {
  /* coordinates of the image */
  --i:-28; 
  --j:-3; 
}
.diamond-trim-diamond-helmet {
  /* coordinates of the image */
  --i:-28; 
  --j:-5; 
}
.diamond-trim-diamond-leggings {
  /* coordinates of the image */
  --i:-28; 
  --j:-8; 
}
.diamond-trim-golden-boots {
  /* coordinates of the image */
  --i:-28; 
  --j:-15; 
}
.diamond-trim-golden-chestplate {
  /* coordinates of the image */
  --i:-28; 
  --j:-16; 
}
.diamond-trim-golden-helmet {
  /* coordinates of the image */
  --i:-28; 
  --j:-17; 
}
.diamond-trim-golden-leggings {
  /* coordinates of the image */
  --i:-28; 
  --j:-18; 
}
.diamond-trim-iron-boots {
  /* coordinates of the image */
  --i:-28; 
  --j:-19; 
}
.diamond-trim-iron-chestplate {
  /* coordinates of the image */
  --i:-28; 
  --j:-20; 
}
.diamond-trim-iron-helmet {
  /* coordinates of the image */
  --i:-28; 
  --j:-21; 
}
.diamond-trim-iron-leggings {
  /* coordinates of the image */
  --i:-28; 
  --j:-22; 
}
.diamond-trim-leather-boots {
  /* coordinates of the image */
  --i:-28; 
  --j:-24; 
}
.diamond-trim-leather-cap {
  /* coordinates of the image */
  --i:-28; 
  --j:-25; 
}
.diamond-trim-leather-pants {
  /* coordinates of the image */
  --i:-28; 
  --j:-27; 
}
.diamond-trim-leather-tunic {
  /* coordinates of the image */
  --i:-28; 
  --j:-28; 
}
.diamond-trim-netherite-boots {
  /* coordinates of the image */
  --i:-28; 
  --j:-29; 
}
.diamond-trim-netherite-chestplate {
  /* coordinates of the image */
  --i:-28; 
  --j:-30; 
}
.diamond-trim-netherite-helmet {
  /* coordinates of the image */
  --i:-28; 
  --j:-31; 
}
.diamond-trim-netherite-leggings {
  /* coordinates of the image */
  --i:-29; 
  --j:-1; 
}
.diamond-trim-turtle-shell {
  /* coordinates of the image */
  --i:-29; 
  --j:-2; 
}
.diorite {
  /* coordinates of the image */
  --i:-105; 
  --j:-2; 
}
.diorite-slab {
  /* coordinates of the image */
  --i:-101; 
  --j:-25; 
}
.diorite-stairs {
  /* coordinates of the image */
  --i:-101; 
  --j:-26; 
}
.diorite-wall {
  /* coordinates of the image */
  --i:-101; 
  --j:-27; 
}
.diorite-wall-be {
  /* coordinates of the image */
  --i:-0; 
  --j:-22; 
}
.dirt {
  /* coordinates of the image */
  --i:-30; 
  --j:-18; 
}
.dirt-path {
  /* coordinates of the image */
  --i:-42; 
  --j:-3; 
}
.disc-fragment-5 {
  /* coordinates of the image */
  --i:-19; 
  --j:-22; 
}
.dispenser {
  /* coordinates of the image */
  --i:-112; 
  --j:-18; 
}
.dispenser-revision-1 {
  /* coordinates of the image */
  --i:-69; 
  --j:-30; 
}
.dolphin-spawn-egg {
  /* coordinates of the image */
  --i:-61; 
  --j:-14; 
}
.donkey-spawn-egg {
  /* coordinates of the image */
  --i:-42; 
  --j:-26; 
}
.donkey-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-35; 
  --j:-31; 
}
.double-smooth-stone-slab {
  /* coordinates of the image */
  --i:-27; 
  --j:-19; 
}
.double-tag {
  /* coordinates of the image */
  --i:-39; 
  --j:-1; 
}
.dragon-egg {
  /* coordinates of the image */
  --i:-99; 
  --j:-18; 
}
.dragon-egg-be {
  /* coordinates of the image */
  --i:-15; 
  --j:-25; 
}
.dragon-head {
  /* coordinates of the image */
  --i:-30; 
  --j:-4; 
}
.dragon-head-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-23; 
}
.dragon-head-be-revision-1 {
  /* coordinates of the image */
  --i:-3; 
  --j:-11; 
}
.dried-kelp {
  /* coordinates of the image */
  --i:-52; 
  --j:-17; 
}
.dried-kelp-block {
  /* coordinates of the image */
  --i:-52; 
  --j:-4; 
}
.dripstone-block {
  /* coordinates of the image */
  --i:-13; 
  --j:-18; 
}
.dropper {
  /* coordinates of the image */
  --i:-112; 
  --j:-19; 
}
.drowned-spawn-egg {
  /* coordinates of the image */
  --i:-53; 
  --j:-30; 
}
.dubnium {
  /* coordinates of the image */
  --i:-56; 
  --j:-7; 
}
.dune-armor-trim {
  /* coordinates of the image */
  --i:-21; 
  --j:-29; 
}
.dune-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-21; 
  --j:-29; 
}
.dupe-hack {
  /* coordinates of the image */
  --i:-41; 
  --j:-8; 
}
.dysprosium {
  /* coordinates of the image */
  --i:-56; 
  --j:-8; 
}
.earth-ruby {
  /* coordinates of the image */
  --i:-4; 
  --j:-1; 
}
.echo-shard {
  /* coordinates of the image */
  --i:-19; 
  --j:-13; 
}
.egg {
  /* coordinates of the image */
  --i:-100; 
  --j:-4; 
}
.einsteinium {
  /* coordinates of the image */
  --i:-56; 
  --j:-9; 
}
.elder-guardian-spawn-egg {
  /* coordinates of the image */
  --i:-42; 
  --j:-27; 
}
.element-constructor {
  /* coordinates of the image */
  --i:-60; 
  --j:-12; 
}
.elixir {
  /* coordinates of the image */
  --i:-54; 
  --j:-22; 
}
.elytra {
  /* coordinates of the image */
  --i:-78; 
  --j:-7; 
}
.emerald {
  /* coordinates of the image */
  --i:-109; 
  --j:-20; 
}
.emerald-ore {
  /* coordinates of the image */
  --i:-106; 
  --j:-0; 
}
.emerald-trim-chainmail-boots {
  /* coordinates of the image */
  --i:-29; 
  --j:-3; 
}
.emerald-trim-chainmail-chestplate {
  /* coordinates of the image */
  --i:-29; 
  --j:-5; 
}
.emerald-trim-chainmail-helmet {
  /* coordinates of the image */
  --i:-29; 
  --j:-7; 
}
.emerald-trim-chainmail-leggings {
  /* coordinates of the image */
  --i:-29; 
  --j:-9; 
}
.emerald-trim-diamond-boots {
  /* coordinates of the image */
  --i:-29; 
  --j:-11; 
}
.emerald-trim-diamond-chestplate {
  /* coordinates of the image */
  --i:-29; 
  --j:-14; 
}
.emerald-trim-diamond-helmet {
  /* coordinates of the image */
  --i:-29; 
  --j:-15; 
}
.emerald-trim-diamond-leggings {
  /* coordinates of the image */
  --i:-29; 
  --j:-17; 
}
.emerald-trim-golden-boots {
  /* coordinates of the image */
  --i:-29; 
  --j:-18; 
}
.emerald-trim-golden-chestplate {
  /* coordinates of the image */
  --i:-29; 
  --j:-19; 
}
.emerald-trim-golden-helmet {
  /* coordinates of the image */
  --i:-29; 
  --j:-20; 
}
.emerald-trim-golden-leggings {
  /* coordinates of the image */
  --i:-29; 
  --j:-21; 
}
.emerald-trim-iron-boots {
  /* coordinates of the image */
  --i:-29; 
  --j:-22; 
}
.emerald-trim-iron-chestplate {
  /* coordinates of the image */
  --i:-29; 
  --j:-23; 
}
.emerald-trim-iron-helmet {
  /* coordinates of the image */
  --i:-29; 
  --j:-24; 
}
.emerald-trim-iron-leggings {
  /* coordinates of the image */
  --i:-29; 
  --j:-26; 
}
.emerald-trim-leather-boots {
  /* coordinates of the image */
  --i:-29; 
  --j:-27; 
}
.emerald-trim-leather-cap {
  /* coordinates of the image */
  --i:-29; 
  --j:-28; 
}
.emerald-trim-leather-pants {
  /* coordinates of the image */
  --i:-29; 
  --j:-30; 
}
.emerald-trim-leather-tunic {
  /* coordinates of the image */
  --i:-29; 
  --j:-31; 
}
.emerald-trim-netherite-boots {
  /* coordinates of the image */
  --i:-30; 
  --j:-0; 
}
.emerald-trim-netherite-chestplate {
  /* coordinates of the image */
  --i:-30; 
  --j:-1; 
}
.emerald-trim-netherite-helmet {
  /* coordinates of the image */
  --i:-30; 
  --j:-2; 
}
.emerald-trim-netherite-leggings {
  /* coordinates of the image */
  --i:-30; 
  --j:-9; 
}
.emerald-trim-turtle-shell {
  /* coordinates of the image */
  --i:-30; 
  --j:-11; 
}
.empty-locator-map {
  /* coordinates of the image */
  --i:-111; 
  --j:-10; 
}
.empty-map {
  /* coordinates of the image */
  --i:-111; 
  --j:-10; 
}
.enchanted-apple {
  /* coordinates of the image */
  --i:-100; 
  --j:-5; 
}
.enchanted-book {
  /* coordinates of the image */
  --i:-111; 
  --j:-11; 
}
.enchanted-golden-apple {
  /* coordinates of the image */
  --i:-100; 
  --j:-5; 
}
.enchanting-table {
  /* coordinates of the image */
  --i:-112; 
  --j:-20; 
}
.enchanting-table-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-21; 
}
.enchantment-table {
  /* coordinates of the image */
  --i:-112; 
  --j:-20; 
}
.end-crystal {
  /* coordinates of the image */
  --i:-99; 
  --j:-19; 
}
.end-gateway {
  /* coordinates of the image */
  --i:-48; 
  --j:-24; 
}
.end-gateway-be {
  /* coordinates of the image */
  --i:-10; 
  --j:-31; 
}
.end-portal {
  /* coordinates of the image */
  --i:-31; 
  --j:-17; 
}
.end-portal-be {
  /* coordinates of the image */
  --i:-11; 
  --j:-0; 
}
.end-portal-frame {
  /* coordinates of the image */
  --i:-99; 
  --j:-20; 
}
.end-portal-frame-be {
  /* coordinates of the image */
  --i:-15; 
  --j:-26; 
}
.end-rod {
  /* coordinates of the image */
  --i:-99; 
  --j:-21; 
}
.end-rod-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-15; 
}
.end-stone {
  /* coordinates of the image */
  --i:-99; 
  --j:-22; 
}
.end-stone-brick-slab {
  /* coordinates of the image */
  --i:-75; 
  --j:-17; 
}
.end-stone-brick-stairs {
  /* coordinates of the image */
  --i:-75; 
  --j:-18; 
}
.end-stone-brick-wall {
  /* coordinates of the image */
  --i:-75; 
  --j:-0; 
}
.end-stone-brick-wall-be {
  /* coordinates of the image */
  --i:-0; 
  --j:-23; 
}
.end-stone-bricks {
  /* coordinates of the image */
  --i:-101; 
  --j:-28; 
}
.ender-chest {
  /* coordinates of the image */
  --i:-112; 
  --j:-21; 
}
.ender-chest-be {
  /* coordinates of the image */
  --i:-74; 
  --j:-3; 
}
.ender-dragon-spawn-egg {
  /* coordinates of the image */
  --i:-21; 
  --j:-22; 
}
.ender-pearl {
  /* coordinates of the image */
  --i:-109; 
  --j:-21; 
}
.enderman-spawn-egg {
  /* coordinates of the image */
  --i:-35; 
  --j:-27; 
}
.enderman-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-10; 
}
.endermite-spawn-egg {
  /* coordinates of the image */
  --i:-35; 
  --j:-28; 
}
.erbium {
  /* coordinates of the image */
  --i:-56; 
  --j:-10; 
}
.etho-slab {
  /* coordinates of the image */
  --i:-66; 
  --j:-4; 
}
.europium {
  /* coordinates of the image */
  --i:-56; 
  --j:-11; 
}
.evoker-spawn-egg {
  /* coordinates of the image */
  --i:-44; 
  --j:-2; 
}
.explorer-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-8; 
}
.exposed-copper {
  /* coordinates of the image */
  --i:-12; 
  --j:-26; 
}
.exposed-copper-block {
  /* coordinates of the image */
  --i:-12; 
  --j:-26; 
}
.exposed-cut-copper {
  /* coordinates of the image */
  --i:-12; 
  --j:-27; 
}
.exposed-cut-copper-block {
  /* coordinates of the image */
  --i:-12; 
  --j:-27; 
}
.exposed-cut-copper-slab {
  /* coordinates of the image */
  --i:-12; 
  --j:-28; 
}
.exposed-cut-copper-stairs {
  /* coordinates of the image */
  --i:-12; 
  --j:-29; 
}
.eye-armor-trim {
  /* coordinates of the image */
  --i:-24; 
  --j:-31; 
}
.eye-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-24; 
  --j:-31; 
}
.eye-drops {
  /* coordinates of the image */
  --i:-54; 
  --j:-23; 
}
.eye-of-ender {
  /* coordinates of the image */
  --i:-111; 
  --j:-12; 
}
.fancy-feather {
  /* coordinates of the image */
  --i:-11; 
  --j:-31; 
}
.farmland {
  /* coordinates of the image */
  --i:-27; 
  --j:-21; 
}
.feather {
  /* coordinates of the image */
  --i:-109; 
  --j:-22; 
}
.fermented-spider-eye {
  /* coordinates of the image */
  --i:-98; 
  --j:-2; 
}
.fermium {
  /* coordinates of the image */
  --i:-56; 
  --j:-12; 
}
.fern {
  /* coordinates of the image */
  --i:-106; 
  --j:-26; 
}
.ferrum {
  /* coordinates of the image */
  --i:-56; 
  --j:-13; 
}
.filled-bundle {
  /* coordinates of the image */
  --i:-13; 
  --j:-12; 
}
.finished-nether-reactor-core {
  /* coordinates of the image */
  --i:-50; 
  --j:-0; 
}
.finished-nether-reactor-core-revision-1 {
  /* coordinates of the image */
  --i:-49; 
  --j:-29; 
}
.fire-charge {
  /* coordinates of the image */
  --i:-111; 
  --j:-13; 
}
.fire-coral {
  /* coordinates of the image */
  --i:-53; 
  --j:-17; 
}
.fire-coral-block {
  /* coordinates of the image */
  --i:-53; 
  --j:-12; 
}
.fire-coral-block-revision-1 {
  /* coordinates of the image */
  --i:-53; 
  --j:-7; 
}
.fire-coral-fan {
  /* coordinates of the image */
  --i:-53; 
  --j:-28; 
}
.fire-coral-fan-revision-1 {
  /* coordinates of the image */
  --i:-66; 
  --j:-26; 
}
.fire-coral-revision-1 {
  /* coordinates of the image */
  --i:-66; 
  --j:-27; 
}
.firefly-spawn-egg {
  /* coordinates of the image */
  --i:-19; 
  --j:-23; 
}
.firework-loaded-crossbow {
  /* coordinates of the image */
  --i:-74; 
  --j:-18; 
}
.firework-rocket {
  /* coordinates of the image */
  --i:-99; 
  --j:-23; 
}
.firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-8; 
}
.fishing-rod {
  /* coordinates of the image */
  --i:-111; 
  --j:-14; 
}
.flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-17; 
}
.flerovium {
  /* coordinates of the image */
  --i:-56; 
  --j:-14; 
}
.fletching-table {
  /* coordinates of the image */
  --i:-76; 
  --j:-20; 
}
.fletching-table-revision-1 {
  /* coordinates of the image */
  --i:-76; 
  --j:-11; 
}
.flint {
  /* coordinates of the image */
  --i:-109; 
  --j:-23; 
}
.flint-and-steel {
  /* coordinates of the image */
  --i:-111; 
  --j:-15; 
}
.float-tag {
  /* coordinates of the image */
  --i:-39; 
  --j:-3; 
}
.flower-pot {
  /* coordinates of the image */
  --i:-98; 
  --j:-14; 
}
.flowering-azalea {
  /* coordinates of the image */
  --i:-14; 
  --j:-18; 
}
.flowering-azalea-leaves {
  /* coordinates of the image */
  --i:-14; 
  --j:-19; 
}
.flowing-lava {
  /* coordinates of the image */
  --i:-66; 
  --j:-16; 
}
.flowing-lava-be-revision-2 {
  /* coordinates of the image */
  --i:-66; 
  --j:-17; 
}
.flowing-water {
  /* coordinates of the image */
  --i:-66; 
  --j:-14; 
}
.flowing-water-be {
  /* coordinates of the image */
  --i:-66; 
  --j:-15; 
}
.flowing-water-revision-2 {
  /* coordinates of the image */
  --i:-26; 
  --j:-18; 
}
.fluorine {
  /* coordinates of the image */
  --i:-56; 
  --j:-15; 
}
.footprint {
  /* coordinates of the image */
  --i:-8; 
  --j:-9; 
}
.fox-spawn-egg {
  /* coordinates of the image */
  --i:-76; 
  --j:-31; 
}
.francium {
  /* coordinates of the image */
  --i:-56; 
  --j:-16; 
}
.friend-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-9; 
}
.frog-spawn {
  /* coordinates of the image */
  --i:-17; 
  --j:-29; 
}
.frog-spawn-egg {
  /* coordinates of the image */
  --i:-17; 
  --j:-30; 
}
.frogspawn {
  /* coordinates of the image */
  --i:-17; 
  --j:-29; 
}
.frosted-ice {
  /* coordinates of the image */
  --i:-30; 
  --j:-23; 
}
.furnace {
  /* coordinates of the image */
  --i:-112; 
  --j:-22; 
}
.gadolinium {
  /* coordinates of the image */
  --i:-56; 
  --j:-17; 
}
.gallium {
  /* coordinates of the image */
  --i:-56; 
  --j:-18; 
}
.garbage {
  /* coordinates of the image */
  --i:-54; 
  --j:-24; 
}
.germanium {
  /* coordinates of the image */
  --i:-56; 
  --j:-19; 
}
.ghast-spawn-egg {
  /* coordinates of the image */
  --i:-35; 
  --j:-29; 
}
.ghast-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-11; 
}
.ghast-tear {
  /* coordinates of the image */
  --i:-98; 
  --j:-3; 
}
.gilded-blackstone {
  /* coordinates of the image */
  --i:-8; 
  --j:-16; 
}
.glass {
  /* coordinates of the image */
  --i:-101; 
  --j:-30; 
}
.glass-bottle {
  /* coordinates of the image */
  --i:-111; 
  --j:-16; 
}
.glass-pane {
  /* coordinates of the image */
  --i:-101; 
  --j:-29; 
}
.glass-pane-be {
  /* coordinates of the image */
  --i:-63; 
  --j:-8; 
}
.glistering-melon {
  /* coordinates of the image */
  --i:-20; 
  --j:-18; 
}
.glistering-melon-slice {
  /* coordinates of the image */
  --i:-98; 
  --j:-4; 
}
.glow-berries {
  /* coordinates of the image */
  --i:-14; 
  --j:-11; 
}
.glow-ink-sac {
  /* coordinates of the image */
  --i:-14; 
  --j:-7; 
}
.glow-item-frame {
  /* coordinates of the image */
  --i:-14; 
  --j:-5; 
}
.glow-lichen {
  /* coordinates of the image */
  --i:-14; 
  --j:-6; 
}
.glow-squid-spawn-egg {
  /* coordinates of the image */
  --i:-14; 
  --j:-8; 
}
.glowing-obsidian {
  /* coordinates of the image */
  --i:-33; 
  --j:-23; 
}
.glowstone {
  /* coordinates of the image */
  --i:-105; 
  --j:-21; 
}
.glowstone-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-17; 
}
.glowstone-dust {
  /* coordinates of the image */
  --i:-109; 
  --j:-24; 
}
.glue {
  /* coordinates of the image */
  --i:-54; 
  --j:-21; 
}
.goat-horn {
  /* coordinates of the image */
  --i:-12; 
  --j:-5; 
}
.goat-spawn-egg {
  /* coordinates of the image */
  --i:-12; 
  --j:-7; 
}
.gold {
  /* coordinates of the image */
  --i:-55; 
  --j:-18; 
}
.gold-heart {
  /* coordinates of the image */
  --i:-3; 
  --j:-22; 
}
.gold-ingot {
  /* coordinates of the image */
  --i:-109; 
  --j:-25; 
}
.gold-nugget {
  /* coordinates of the image */
  --i:-109; 
  --j:-26; 
}
.gold-ore {
  /* coordinates of the image */
  --i:-106; 
  --j:-1; 
}
.gold-trim-chainmail-boots {
  /* coordinates of the image */
  --i:-30; 
  --j:-12; 
}
.gold-trim-chainmail-chestplate {
  /* coordinates of the image */
  --i:-30; 
  --j:-14; 
}
.gold-trim-chainmail-helmet {
  /* coordinates of the image */
  --i:-30; 
  --j:-15; 
}
.gold-trim-chainmail-leggings {
  /* coordinates of the image */
  --i:-30; 
  --j:-16; 
}
.gold-trim-diamond-boots {
  /* coordinates of the image */
  --i:-30; 
  --j:-17; 
}
.gold-trim-diamond-chestplate {
  /* coordinates of the image */
  --i:-30; 
  --j:-19; 
}
.gold-trim-diamond-helmet {
  /* coordinates of the image */
  --i:-30; 
  --j:-21; 
}
.gold-trim-diamond-leggings {
  /* coordinates of the image */
  --i:-30; 
  --j:-22; 
}
.gold-trim-golden-boots {
  /* coordinates of the image */
  --i:-30; 
  --j:-26; 
}
.gold-trim-golden-chestplate {
  /* coordinates of the image */
  --i:-30; 
  --j:-27; 
}
.gold-trim-golden-helmet {
  /* coordinates of the image */
  --i:-30; 
  --j:-28; 
}
.gold-trim-golden-leggings {
  /* coordinates of the image */
  --i:-30; 
  --j:-29; 
}
.gold-trim-iron-boots {
  /* coordinates of the image */
  --i:-30; 
  --j:-30; 
}
.gold-trim-iron-chestplate {
  /* coordinates of the image */
  --i:-30; 
  --j:-31; 
}
.gold-trim-iron-helmet {
  /* coordinates of the image */
  --i:-31; 
  --j:-0; 
}
.gold-trim-iron-leggings {
  /* coordinates of the image */
  --i:-31; 
  --j:-1; 
}
.gold-trim-leather-boots {
  /* coordinates of the image */
  --i:-31; 
  --j:-2; 
}
.gold-trim-leather-cap {
  /* coordinates of the image */
  --i:-31; 
  --j:-3; 
}
.gold-trim-leather-pants {
  /* coordinates of the image */
  --i:-31; 
  --j:-4; 
}
.gold-trim-leather-tunic {
  /* coordinates of the image */
  --i:-31; 
  --j:-5; 
}
.gold-trim-netherite-boots {
  /* coordinates of the image */
  --i:-31; 
  --j:-8; 
}
.gold-trim-netherite-chestplate {
  /* coordinates of the image */
  --i:-31; 
  --j:-9; 
}
.gold-trim-netherite-helmet {
  /* coordinates of the image */
  --i:-31; 
  --j:-11; 
}
.gold-trim-netherite-leggings {
  /* coordinates of the image */
  --i:-31; 
  --j:-12; 
}
.gold-trim-turtle-shell {
  /* coordinates of the image */
  --i:-31; 
  --j:-13; 
}
.golden-apple {
  /* coordinates of the image */
  --i:-100; 
  --j:-5; 
}
.golden-axe {
  /* coordinates of the image */
  --i:-111; 
  --j:-17; 
}
.golden-boots {
  /* coordinates of the image */
  --i:-78; 
  --j:-8; 
}
.golden-carrot {
  /* coordinates of the image */
  --i:-98; 
  --j:-5; 
}
.golden-chestplate {
  /* coordinates of the image */
  --i:-78; 
  --j:-9; 
}
.golden-helmet {
  /* coordinates of the image */
  --i:-78; 
  --j:-10; 
}
.golden-hoe {
  /* coordinates of the image */
  --i:-111; 
  --j:-18; 
}
.golden-horse-armor {
  /* coordinates of the image */
  --i:-1; 
  --j:-1; 
}
.golden-leggings {
  /* coordinates of the image */
  --i:-78; 
  --j:-11; 
}
.golden-pickaxe {
  /* coordinates of the image */
  --i:-111; 
  --j:-19; 
}
.golden-shovel {
  /* coordinates of the image */
  --i:-111; 
  --j:-20; 
}
.golden-sword {
  /* coordinates of the image */
  --i:-113; 
  --j:-19; 
}
.granite {
  /* coordinates of the image */
  --i:-105; 
  --j:-3; 
}
.granite-slab {
  /* coordinates of the image */
  --i:-75; 
  --j:-19; 
}
.granite-stairs {
  /* coordinates of the image */
  --i:-75; 
  --j:-20; 
}
.granite-wall {
  /* coordinates of the image */
  --i:-75; 
  --j:-1; 
}
.granite-wall-be {
  /* coordinates of the image */
  --i:-0; 
  --j:-24; 
}
.grass {
  /* coordinates of the image */
  --i:-106; 
  --j:-27; 
}
.grass-block {
  /* coordinates of the image */
  --i:-30; 
  --j:-20; 
}
.grass-block-revision-1 {
  /* coordinates of the image */
  --i:-72; 
  --j:-7; 
}
.grass-block-revision-2 {
  /* coordinates of the image */
  --i:-73; 
  --j:-22; 
}
.grass-path {
  /* coordinates of the image */
  --i:-42; 
  --j:-3; 
}
.gravel {
  /* coordinates of the image */
  --i:-105; 
  --j:-4; 
}
.gray-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-13; 
}
.gray-banner {
  /* coordinates of the image */
  --i:-22; 
  --j:-23; 
}
.gray-banner-15w14a {
  /* coordinates of the image */
  --i:-14; 
  --j:-27; 
}
.gray-base-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-25; 
}
.gray-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-26; 
}
.gray-base-gradient-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-27; 
}
.gray-base-indented-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-28; 
}
.gray-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-29; 
}
.gray-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-6; 
}
.gray-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-12; 
}
.gray-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-12; 
}
.gray-bend-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-30; 
}
.gray-bend-sinister-banner {
  /* coordinates of the image */
  --i:-83; 
  --j:-31; 
}
.gray-bordure-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-0; 
}
.gray-bordure-indented-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-1; 
}
.gray-candle {
  /* coordinates of the image */
  --i:-12; 
  --j:-21; 
}
.gray-carpet {
  /* coordinates of the image */
  --i:-50; 
  --j:-24; 
}
.gray-carpet-revision-1 {
  /* coordinates of the image */
  --i:-22; 
  --j:-24; 
}
.gray-chevron-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-2; 
}
.gray-chief-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-3; 
}
.gray-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-4; 
}
.gray-chief-indented-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-5; 
}
.gray-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-6; 
}
.gray-concrete {
  /* coordinates of the image */
  --i:-46; 
  --j:-14; 
}
.gray-concrete-powder {
  /* coordinates of the image */
  --i:-46; 
  --j:-15; 
}
.gray-creeper-charge-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-7; 
}
.gray-cross-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-8; 
}
.gray-dye {
  /* coordinates of the image */
  --i:-98; 
  --j:-21; 
}
.gray-fess-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-9; 
}
.gray-field-masoned-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-10; 
}
.gray-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-9; 
}
.gray-flower-charge-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-11; 
}
.gray-glazed-terracotta {
  /* coordinates of the image */
  --i:-46; 
  --j:-16; 
}
.gray-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-7; 
}
.gray-glow-stick {
  /* coordinates of the image */
  --i:-61; 
  --j:-27; 
}
.gray-gradient-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-12; 
}
.gray-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-13; 
}
.gray-lozenge-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-14; 
}
.gray-pale-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-15; 
}
.gray-pale-dexter-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-16; 
}
.gray-pale-sinister-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-17; 
}
.gray-paly-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-18; 
}
.gray-per-bend-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-19; 
}
.gray-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-20; 
}
.gray-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-21; 
}
.gray-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-22; 
}
.gray-per-fess-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-23; 
}
.gray-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-24; 
}
.gray-per-pale-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-25; 
}
.gray-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-26; 
}
.gray-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-10; 
}
.gray-roundel-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-27; 
}
.gray-saltire-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-28; 
}
.gray-shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-12; 
}
.gray-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-6; 
}
.gray-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-11; 
}
.gray-skull-charge-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-29; 
}
.gray-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-10; 
}
.gray-stained-glass {
  /* coordinates of the image */
  --i:-22; 
  --j:-26; 
}
.gray-stained-glass-pane {
  /* coordinates of the image */
  --i:-22; 
  --j:-27; 
}
.gray-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-62; 
  --j:-27; 
}
.gray-terracotta {
  /* coordinates of the image */
  --i:-22; 
  --j:-25; 
}
.gray-thing-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-30; 
}
.gray-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-18; 
}
.gray-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-6; 
}
.gray-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-23; 
}
.gray-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-22; 
}
.gray-wool-revision-2 {
  /* coordinates of the image */
  --i:-22; 
  --j:-28; 
}
.green-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-14; 
}
.green-banner {
  /* coordinates of the image */
  --i:-22; 
  --j:-29; 
}
.green-banner-15w14a {
  /* coordinates of the image */
  --i:-14; 
  --j:-28; 
}
.green-base-banner {
  /* coordinates of the image */
  --i:-84; 
  --j:-31; 
}
.green-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-0; 
}
.green-base-gradient-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-1; 
}
.green-base-indented-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-2; 
}
.green-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-3; 
}
.green-beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-6; 
}
.green-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-7; 
}
.green-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-13; 
}
.green-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-13; 
}
.green-bend-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-4; 
}
.green-bend-sinister-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-5; 
}
.green-bordure-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-6; 
}
.green-bordure-indented-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-7; 
}
.green-candle {
  /* coordinates of the image */
  --i:-12; 
  --j:-22; 
}
.green-carpet {
  /* coordinates of the image */
  --i:-50; 
  --j:-25; 
}
.green-carpet-revision-1 {
  /* coordinates of the image */
  --i:-22; 
  --j:-30; 
}
.green-chevron-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-8; 
}
.green-chief-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-9; 
}
.green-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-10; 
}
.green-chief-indented-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-11; 
}
.green-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-12; 
}
.green-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-6; 
}
.green-concrete {
  /* coordinates of the image */
  --i:-46; 
  --j:-17; 
}
.green-concrete-powder {
  /* coordinates of the image */
  --i:-46; 
  --j:-18; 
}
.green-creeper-charge-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-13; 
}
.green-cross-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-14; 
}
.green-dye {
  /* coordinates of the image */
  --i:-98; 
  --j:-22; 
}
.green-fess-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-15; 
}
.green-field-masoned-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-16; 
}
.green-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-10; 
}
.green-flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-19; 
}
.green-flower-charge-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-17; 
}
.green-glazed-terracotta {
  /* coordinates of the image */
  --i:-46; 
  --j:-19; 
}
.green-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-8; 
}
.green-glow-stick {
  /* coordinates of the image */
  --i:-61; 
  --j:-28; 
}
.green-gradient-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-18; 
}
.green-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-19; 
}
.green-jar {
  /* coordinates of the image */
  --i:-59; 
  --j:-31; 
}
.green-lozenge-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-20; 
}
.green-pale-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-21; 
}
.green-pale-dexter-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-22; 
}
.green-pale-sinister-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-23; 
}
.green-paly-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-24; 
}
.green-per-bend-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-25; 
}
.green-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-26; 
}
.green-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-27; 
}
.green-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-28; 
}
.green-per-fess-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-29; 
}
.green-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-30; 
}
.green-per-pale-banner {
  /* coordinates of the image */
  --i:-85; 
  --j:-31; 
}
.green-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-0; 
}
.green-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-11; 
}
.green-roundel-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-1; 
}
.green-saltire-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-2; 
}
.green-shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-13; 
}
.green-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-7; 
}
.green-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-12; 
}
.green-skull-charge-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-3; 
}
.green-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-11; 
}
.green-sparkler {
  /* coordinates of the image */
  --i:-54; 
  --j:-25; 
}
.green-sparkler-active {
  /* coordinates of the image */
  --i:-54; 
  --j:-26; 
}
.green-stained-glass {
  /* coordinates of the image */
  --i:-23; 
  --j:-0; 
}
.green-stained-glass-pane {
  /* coordinates of the image */
  --i:-23; 
  --j:-1; 
}
.green-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-62; 
  --j:-28; 
}
.green-terracotta {
  /* coordinates of the image */
  --i:-22; 
  --j:-31; 
}
.green-thing-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-4; 
}
.green-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-19; 
}
.green-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-7; 
}
.green-torch {
  /* coordinates of the image */
  --i:-54; 
  --j:-27; 
}
.green-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-24; 
}
.green-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-23; 
}
.green-wool-revision-2 {
  /* coordinates of the image */
  --i:-23; 
  --j:-2; 
}
.grindstone {
  /* coordinates of the image */
  --i:-76; 
  --j:-28; 
}
.grindstone-revision-1 {
  /* coordinates of the image */
  --i:-76; 
  --j:-12; 
}
.guardian-spawn-egg {
  /* coordinates of the image */
  --i:-35; 
  --j:-30; 
}
.gunpowder {
  /* coordinates of the image */
  --i:-109; 
  --j:-27; 
}
.hafnium {
  /* coordinates of the image */
  --i:-56; 
  --j:-20; 
}
.half-filled-bundle {
  /* coordinates of the image */
  --i:-13; 
  --j:-13; 
}
.halogen {
  /* coordinates of the image */
  --i:-2; 
  --j:-4; 
}
.hanging-roots {
  /* coordinates of the image */
  --i:-14; 
  --j:-20; 
}
.hardened-black-stained-glass {
  /* coordinates of the image */
  --i:-60; 
  --j:-29; 
}
.hardened-black-stained-glass-pane {
  /* coordinates of the image */
  --i:-61; 
  --j:-29; 
}
.hardened-blue-stained-glass {
  /* coordinates of the image */
  --i:-60; 
  --j:-30; 
}
.hardened-blue-stained-glass-pane {
  /* coordinates of the image */
  --i:-61; 
  --j:-30; 
}
.hardened-brown-stained-glass {
  /* coordinates of the image */
  --i:-60; 
  --j:-31; 
}
.hardened-brown-stained-glass-pane {
  /* coordinates of the image */
  --i:-61; 
  --j:-31; 
}
.hardened-cyan-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-0; 
}
.hardened-cyan-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-0; 
}
.hardened-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-1; 
}
.hardened-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-1; 
}
.hardened-gray-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-2; 
}
.hardened-gray-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-2; 
}
.hardened-green-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-3; 
}
.hardened-green-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-3; 
}
.hardened-light-blue-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-4; 
}
.hardened-light-blue-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-4; 
}
.hardened-light-gray-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-5; 
}
.hardened-light-gray-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-5; 
}
.hardened-lime-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-6; 
}
.hardened-lime-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-6; 
}
.hardened-magenta-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-7; 
}
.hardened-magenta-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-7; 
}
.hardened-orange-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-8; 
}
.hardened-orange-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-8; 
}
.hardened-pink-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-9; 
}
.hardened-pink-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-9; 
}
.hardened-purple-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-10; 
}
.hardened-purple-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-10; 
}
.hardened-red-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-11; 
}
.hardened-red-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-11; 
}
.hardened-white-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-12; 
}
.hardened-white-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-12; 
}
.hardened-yellow-stained-glass {
  /* coordinates of the image */
  --i:-61; 
  --j:-13; 
}
.hardened-yellow-stained-glass-pane {
  /* coordinates of the image */
  --i:-62; 
  --j:-13; 
}
.hassium {
  /* coordinates of the image */
  --i:-56; 
  --j:-21; 
}
.hay-bale {
  /* coordinates of the image */
  --i:-101; 
  --j:-31; 
}
.head {
  /* coordinates of the image */
  --i:-30; 
  --j:-5; 
}
.head-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-24; 
}
.heart-of-the-sea {
  /* coordinates of the image */
  --i:-54; 
  --j:-13; 
}
.heart-of-the-sea-revision-1 {
  /* coordinates of the image */
  --i:-61; 
  --j:-22; 
}
.heart-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-10; 
}
.heartbreak-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-11; 
}
.heavy-weighted-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-6; 
}
.heavy-weighted-pressure-plate-revision-1 {
  /* coordinates of the image */
  --i:-64; 
  --j:-26; 
}
.helium {
  /* coordinates of the image */
  --i:-56; 
  --j:-22; 
}
.hoglin-spawn-egg {
  /* coordinates of the image */
  --i:-6; 
  --j:-1; 
}
.hoglin-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-36; 
  --j:-16; 
}
.holmium {
  /* coordinates of the image */
  --i:-56; 
  --j:-23; 
}
.honey-block {
  /* coordinates of the image */
  --i:-3; 
  --j:-10; 
}
.honey-block-be {
  /* coordinates of the image */
  --i:-3; 
  --j:-1; 
}
.honey-block-be-revision-1 {
  /* coordinates of the image */
  --i:-3; 
  --j:-4; 
}
.honey-block-revision-1 {
  /* coordinates of the image */
  --i:-3; 
  --j:-1; 
}
.honey-bottle {
  /* coordinates of the image */
  --i:-1; 
  --j:-28; 
}
.honey-bottle-be {
  /* coordinates of the image */
  --i:-3; 
  --j:-5; 
}
.honeycomb {
  /* coordinates of the image */
  --i:-1; 
  --j:-29; 
}
.honeycomb-be-revision-1 {
  /* coordinates of the image */
  --i:-3; 
  --j:-6; 
}
.honeycomb-block {
  /* coordinates of the image */
  --i:-3; 
  --j:-2; 
}
.hopper {
  /* coordinates of the image */
  --i:-112; 
  --j:-23; 
}
.hopper-revision-2 {
  /* coordinates of the image */
  --i:-11; 
  --j:-5; 
}
.horn {
  /* coordinates of the image */
  --i:-2; 
  --j:-28; 
}
.horn-coral {
  /* coordinates of the image */
  --i:-53; 
  --j:-18; 
}
.horn-coral-block {
  /* coordinates of the image */
  --i:-53; 
  --j:-13; 
}
.horn-coral-block-be {
  /* coordinates of the image */
  --i:-61; 
  --j:-20; 
}
.horn-coral-block-revision-1 {
  /* coordinates of the image */
  --i:-53; 
  --j:-8; 
}
.horn-coral-fan {
  /* coordinates of the image */
  --i:-66; 
  --j:-21; 
}
.horn-coral-fan-revision-1 {
  /* coordinates of the image */
  --i:-53; 
  --j:-29; 
}
.horn-coral-fan-revision-2 {
  /* coordinates of the image */
  --i:-66; 
  --j:-28; 
}
.horned-sheep-spawn-egg {
  /* coordinates of the image */
  --i:-19; 
  --j:-16; 
}
.horse-saddle {
  /* coordinates of the image */
  --i:-77; 
  --j:-0; 
}
.horse-spawn-egg {
  /* coordinates of the image */
  --i:-35; 
  --j:-31; 
}
.host-armor-trim {
  /* coordinates of the image */
  --i:-37; 
  --j:-29; 
}
.host-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-37; 
  --j:-29; 
}
.howl-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-12; 
}
.husk-spawn-egg {
  /* coordinates of the image */
  --i:-42; 
  --j:-28; 
}
.husk-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-48; 
  --j:-26; 
}
.hydrargyrum {
  /* coordinates of the image */
  --i:-56; 
  --j:-24; 
}
.hydrogen {
  /* coordinates of the image */
  --i:-56; 
  --j:-25; 
}
.hydrogen-peroxide {
  /* coordinates of the image */
  --i:-59; 
  --j:-0; 
}
.ice {
  /* coordinates of the image */
  --i:-105; 
  --j:-5; 
}
.ice-bomb {
  /* coordinates of the image */
  --i:-54; 
  --j:-28; 
}
.impulse-command-block-revision-1 {
  /* coordinates of the image */
  --i:-38; 
  --j:-23; 
}
.indigo-beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-7; 
}
.indigo-flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-20; 
}
.indigo-jar {
  /* coordinates of the image */
  --i:-60; 
  --j:-0; 
}
.indium {
  /* coordinates of the image */
  --i:-56; 
  --j:-26; 
}
.infested-chiseled-stone-bricks {
  /* coordinates of the image */
  --i:-104; 
  --j:-28; 
}
.infested-cobblestone {
  /* coordinates of the image */
  --i:-104; 
  --j:-30; 
}
.infested-cracked-stone-bricks {
  /* coordinates of the image */
  --i:-105; 
  --j:-0; 
}
.infested-deepslate {
  /* coordinates of the image */
  --i:-15; 
  --j:-22; 
}
.infested-mossy-stone-bricks {
  /* coordinates of the image */
  --i:-105; 
  --j:-7; 
}
.infested-stone {
  /* coordinates of the image */
  --i:-31; 
  --j:-7; 
}
.infested-stone-bricks {
  /* coordinates of the image */
  --i:-105; 
  --j:-19; 
}
.initialized-nether-reactor-core {
  /* coordinates of the image */
  --i:-49; 
  --j:-31; 
}
.initialized-nether-reactor-core-revision-1 {
  /* coordinates of the image */
  --i:-49; 
  --j:-28; 
}
.ink-sac {
  /* coordinates of the image */
  --i:-98; 
  --j:-23; 
}
.int-tag {
  /* coordinates of the image */
  --i:-39; 
  --j:-5; 
}
.inverted-daylight-detector {
  /* coordinates of the image */
  --i:-39; 
  --j:-0; 
}
.inverted-daylight-sensor {
  /* coordinates of the image */
  --i:-39; 
  --j:-0; 
}
.invisible-bedrock {
  /* coordinates of the image */
  --i:-67; 
  --j:-6; 
}
.iodine {
  /* coordinates of the image */
  --i:-56; 
  --j:-27; 
}
.iridium {
  /* coordinates of the image */
  --i:-56; 
  --j:-28; 
}
.iron {
  /* coordinates of the image */
  --i:-56; 
  --j:-13; 
}
.iron-axe {
  /* coordinates of the image */
  --i:-111; 
  --j:-21; 
}
.iron-bars {
  /* coordinates of the image */
  --i:-102; 
  --j:-0; 
}
.iron-bars-be {
  /* coordinates of the image */
  --i:-63; 
  --j:-9; 
}
.iron-boots {
  /* coordinates of the image */
  --i:-78; 
  --j:-14; 
}
.iron-chestplate {
  /* coordinates of the image */
  --i:-78; 
  --j:-15; 
}
.iron-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-24; 
}
.iron-door-revision-2 {
  /* coordinates of the image */
  --i:-29; 
  --j:-12; 
}
.iron-golem-spawn-egg {
  /* coordinates of the image */
  --i:-21; 
  --j:-23; 
}
.iron-heart {
  /* coordinates of the image */
  --i:-3; 
  --j:-23; 
}
.iron-helmet {
  /* coordinates of the image */
  --i:-78; 
  --j:-16; 
}
.iron-hoe {
  /* coordinates of the image */
  --i:-111; 
  --j:-22; 
}
.iron-horse-armor {
  /* coordinates of the image */
  --i:-1; 
  --j:-6; 
}
.iron-ingot {
  /* coordinates of the image */
  --i:-109; 
  --j:-28; 
}
.iron-leggings {
  /* coordinates of the image */
  --i:-78; 
  --j:-17; 
}
.iron-nugget {
  /* coordinates of the image */
  --i:-109; 
  --j:-29; 
}
.iron-ore {
  /* coordinates of the image */
  --i:-106; 
  --j:-2; 
}
.iron-pickaxe {
  /* coordinates of the image */
  --i:-111; 
  --j:-23; 
}
.iron-shovel {
  /* coordinates of the image */
  --i:-111; 
  --j:-24; 
}
.iron-sulfide {
  /* coordinates of the image */
  --i:-59; 
  --j:-27; 
}
.iron-sword {
  /* coordinates of the image */
  --i:-113; 
  --j:-20; 
}
.iron-trapdoor {
  /* coordinates of the image */
  --i:-29; 
  --j:-13; 
}
.iron-trim-chainmail-boots {
  /* coordinates of the image */
  --i:-31; 
  --j:-15; 
}
.iron-trim-chainmail-chestplate {
  /* coordinates of the image */
  --i:-31; 
  --j:-16; 
}
.iron-trim-chainmail-helmet {
  /* coordinates of the image */
  --i:-31; 
  --j:-19; 
}
.iron-trim-chainmail-leggings {
  /* coordinates of the image */
  --i:-31; 
  --j:-20; 
}
.iron-trim-diamond-boots {
  /* coordinates of the image */
  --i:-31; 
  --j:-21; 
}
.iron-trim-diamond-chestplate {
  /* coordinates of the image */
  --i:-31; 
  --j:-22; 
}
.iron-trim-diamond-helmet {
  /* coordinates of the image */
  --i:-31; 
  --j:-23; 
}
.iron-trim-diamond-leggings {
  /* coordinates of the image */
  --i:-31; 
  --j:-24; 
}
.iron-trim-golden-boots {
  /* coordinates of the image */
  --i:-31; 
  --j:-25; 
}
.iron-trim-golden-chestplate {
  /* coordinates of the image */
  --i:-31; 
  --j:-26; 
}
.iron-trim-golden-helmet {
  /* coordinates of the image */
  --i:-31; 
  --j:-27; 
}
.iron-trim-golden-leggings {
  /* coordinates of the image */
  --i:-31; 
  --j:-28; 
}
.iron-trim-iron-boots {
  /* coordinates of the image */
  --i:-31; 
  --j:-29; 
}
.iron-trim-iron-chestplate {
  /* coordinates of the image */
  --i:-31; 
  --j:-30; 
}
.iron-trim-iron-helmet {
  /* coordinates of the image */
  --i:-31; 
  --j:-31; 
}
.iron-trim-iron-leggings {
  /* coordinates of the image */
  --i:-32; 
  --j:-0; 
}
.iron-trim-leather-boots {
  /* coordinates of the image */
  --i:-32; 
  --j:-1; 
}
.iron-trim-leather-cap {
  /* coordinates of the image */
  --i:-32; 
  --j:-2; 
}
.iron-trim-leather-pants {
  /* coordinates of the image */
  --i:-32; 
  --j:-3; 
}
.iron-trim-leather-tunic {
  /* coordinates of the image */
  --i:-32; 
  --j:-4; 
}
.iron-trim-netherite-boots {
  /* coordinates of the image */
  --i:-32; 
  --j:-5; 
}
.iron-trim-netherite-chestplate {
  /* coordinates of the image */
  --i:-32; 
  --j:-6; 
}
.iron-trim-netherite-helmet {
  /* coordinates of the image */
  --i:-32; 
  --j:-7; 
}
.iron-trim-netherite-leggings {
  /* coordinates of the image */
  --i:-32; 
  --j:-8; 
}
.iron-trim-turtle-shell {
  /* coordinates of the image */
  --i:-32; 
  --j:-9; 
}
.item-frame {
  /* coordinates of the image */
  --i:-98; 
  --j:-15; 
}
.jar {
  /* coordinates of the image */
  --i:-60; 
  --j:-1; 
}
.jigsaw {
  /* coordinates of the image */
  --i:-9; 
  --j:-2; 
}
.jigsaw-be {
  /* coordinates of the image */
  --i:-9; 
  --j:-2; 
}
.jigsaw-block {
  /* coordinates of the image */
  --i:-9; 
  --j:-2; 
}
.jigsaw-block-be {
  /* coordinates of the image */
  --i:-9; 
  --j:-2; 
}
.jigsaw-block-revision-1 {
  /* coordinates of the image */
  --i:-76; 
  --j:-17; 
}
.jigsaw-block-revision-2 {
  /* coordinates of the image */
  --i:-76; 
  --j:-25; 
}
.jigsaw-revision-1 {
  /* coordinates of the image */
  --i:-76; 
  --j:-17; 
}
.jigsaw-revision-2 {
  /* coordinates of the image */
  --i:-76; 
  --j:-25; 
}
.jukebox {
  /* coordinates of the image */
  --i:-112; 
  --j:-24; 
}
.jumbo-rabbit-spawn-egg {
  /* coordinates of the image */
  --i:-19; 
  --j:-17; 
}
.jungle-boat {
  /* coordinates of the image */
  --i:-19; 
  --j:-27; 
}
.jungle-boat-revision-2 {
  /* coordinates of the image */
  --i:-113; 
  --j:-4; 
}
.jungle-boat-with-chest {
  /* coordinates of the image */
  --i:-19; 
  --j:-6; 
}
.jungle-button {
  /* coordinates of the image */
  --i:-104; 
  --j:-7; 
}
.jungle-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-25; 
}
.jungle-door-revision-3 {
  /* coordinates of the image */
  --i:-17; 
  --j:-6; 
}
.jungle-explorer-map {
  /* coordinates of the image */
  --i:-41; 
  --j:-13; 
}
.jungle-explorer-map-be {
  /* coordinates of the image */
  --i:-41; 
  --j:-14; 
}
.jungle-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-3; 
}
.jungle-fence-be {
  /* coordinates of the image */
  --i:-102; 
  --j:-3; 
}
.jungle-fence-gate {
  /* coordinates of the image */
  --i:-102; 
  --j:-2; 
}
.jungle-fence-gate-be {
  /* coordinates of the image */
  --i:-1; 
  --j:-22; 
}
.jungle-hanging-sign {
  /* coordinates of the image */
  --i:-20; 
  --j:-15; 
}
.jungle-leaves {
  /* coordinates of the image */
  --i:-106; 
  --j:-28; 
}
.jungle-leaves-be {
  /* coordinates of the image */
  --i:-3; 
  --j:-15; 
}
.jungle-log {
  /* coordinates of the image */
  --i:-106; 
  --j:-29; 
}
.jungle-log-revision-1 {
  /* coordinates of the image */
  --i:-69; 
  --j:-31; 
}
.jungle-planks {
  /* coordinates of the image */
  --i:-27; 
  --j:-31; 
}
.jungle-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-8; 
}
.jungle-sapling {
  /* coordinates of the image */
  --i:-106; 
  --j:-30; 
}
.jungle-sign {
  /* coordinates of the image */
  --i:-74; 
  --j:-26; 
}
.jungle-slab {
  /* coordinates of the image */
  --i:-102; 
  --j:-4; 
}
.jungle-stairs {
  /* coordinates of the image */
  --i:-102; 
  --j:-5; 
}
.jungle-stairs-left {
  /* coordinates of the image */
  --i:-70; 
  --j:-18; 
}
.jungle-trapdoor {
  /* coordinates of the image */
  --i:-51; 
  --j:-16; 
}
.jungle-wood {
  /* coordinates of the image */
  --i:-102; 
  --j:-6; 
}
.jungle-wood-button {
  /* coordinates of the image */
  --i:-104; 
  --j:-7; 
}
.jungle-wood-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-25; 
}
.jungle-wood-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-3; 
}
.jungle-wood-fence-gate {
  /* coordinates of the image */
  --i:-102; 
  --j:-2; 
}
.jungle-wood-planks {
  /* coordinates of the image */
  --i:-27; 
  --j:-31; 
}
.jungle-wood-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-8; 
}
.jungle-wood-sign {
  /* coordinates of the image */
  --i:-74; 
  --j:-26; 
}
.jungle-wood-slab {
  /* coordinates of the image */
  --i:-102; 
  --j:-4; 
}
.jungle-wood-stairs {
  /* coordinates of the image */
  --i:-102; 
  --j:-5; 
}
.jungle-wood-trapdoor {
  /* coordinates of the image */
  --i:-51; 
  --j:-16; 
}
.kalium {
  /* coordinates of the image */
  --i:-56; 
  --j:-29; 
}
.kelp {
  /* coordinates of the image */
  --i:-52; 
  --j:-18; 
}
.kelp-revision-1 {
  /* coordinates of the image */
  --i:-61; 
  --j:-23; 
}
.knowledge-book {
  /* coordinates of the image */
  --i:-112; 
  --j:-25; 
}
.krypton {
  /* coordinates of the image */
  --i:-56; 
  --j:-30; 
}
.la-baguette {
  /* coordinates of the image */
  --i:-41; 
  --j:-5; 
}
.lab-table {
  /* coordinates of the image */
  --i:-60; 
  --j:-15; 
}
.ladder {
  /* coordinates of the image */
  --i:-102; 
  --j:-7; 
}
.lantern {
  /* coordinates of the image */
  --i:-76; 
  --j:-18; 
}
.lanthanide {
  /* coordinates of the image */
  --i:-2; 
  --j:-5; 
}
.lanthanum {
  /* coordinates of the image */
  --i:-56; 
  --j:-31; 
}
.lapis-lazuli {
  /* coordinates of the image */
  --i:-98; 
  --j:-24; 
}
.lapis-lazuli-block {
  /* coordinates of the image */
  --i:-102; 
  --j:-8; 
}
.lapis-lazuli-block-revision-1 {
  /* coordinates of the image */
  --i:-70; 
  --j:-0; 
}
.lapis-lazuli-ore {
  /* coordinates of the image */
  --i:-106; 
  --j:-3; 
}
.lapis-trim-chainmail-boots {
  /* coordinates of the image */
  --i:-32; 
  --j:-10; 
}
.lapis-trim-chainmail-chestplate {
  /* coordinates of the image */
  --i:-32; 
  --j:-11; 
}
.lapis-trim-chainmail-helmet {
  /* coordinates of the image */
  --i:-32; 
  --j:-12; 
}
.lapis-trim-chainmail-leggings {
  /* coordinates of the image */
  --i:-32; 
  --j:-13; 
}
.lapis-trim-diamond-boots {
  /* coordinates of the image */
  --i:-32; 
  --j:-15; 
}
.lapis-trim-diamond-chestplate {
  /* coordinates of the image */
  --i:-32; 
  --j:-16; 
}
.lapis-trim-diamond-helmet {
  /* coordinates of the image */
  --i:-32; 
  --j:-17; 
}
.lapis-trim-diamond-leggings {
  /* coordinates of the image */
  --i:-32; 
  --j:-18; 
}
.lapis-trim-golden-boots {
  /* coordinates of the image */
  --i:-32; 
  --j:-19; 
}
.lapis-trim-golden-chestplate {
  /* coordinates of the image */
  --i:-32; 
  --j:-20; 
}
.lapis-trim-golden-helmet {
  /* coordinates of the image */
  --i:-32; 
  --j:-21; 
}
.lapis-trim-golden-leggings {
  /* coordinates of the image */
  --i:-32; 
  --j:-22; 
}
.lapis-trim-iron-boots {
  /* coordinates of the image */
  --i:-32; 
  --j:-23; 
}
.lapis-trim-iron-chestplate {
  /* coordinates of the image */
  --i:-32; 
  --j:-24; 
}
.lapis-trim-iron-helmet {
  /* coordinates of the image */
  --i:-32; 
  --j:-26; 
}
.lapis-trim-iron-leggings {
  /* coordinates of the image */
  --i:-32; 
  --j:-27; 
}
.lapis-trim-leather-boots {
  /* coordinates of the image */
  --i:-32; 
  --j:-28; 
}
.lapis-trim-leather-cap {
  /* coordinates of the image */
  --i:-32; 
  --j:-29; 
}
.lapis-trim-leather-pants {
  /* coordinates of the image */
  --i:-32; 
  --j:-30; 
}
.lapis-trim-leather-tunic {
  /* coordinates of the image */
  --i:-32; 
  --j:-31; 
}
.lapis-trim-netherite-boots {
  /* coordinates of the image */
  --i:-33; 
  --j:-0; 
}
.lapis-trim-netherite-chestplate {
  /* coordinates of the image */
  --i:-33; 
  --j:-1; 
}
.lapis-trim-netherite-helmet {
  /* coordinates of the image */
  --i:-33; 
  --j:-2; 
}
.lapis-trim-netherite-leggings {
  /* coordinates of the image */
  --i:-33; 
  --j:-3; 
}
.lapis-trim-turtle-shell {
  /* coordinates of the image */
  --i:-33; 
  --j:-5; 
}
.large-amethyst-bud {
  /* coordinates of the image */
  --i:-12; 
  --j:-23; 
}
.large-fern {
  /* coordinates of the image */
  --i:-106; 
  --j:-31; 
}
.latex {
  /* coordinates of the image */
  --i:-59; 
  --j:-8; 
}
.lava {
  /* coordinates of the image */
  --i:-66; 
  --j:-16; 
}
.lava-be-revision-2 {
  /* coordinates of the image */
  --i:-66; 
  --j:-17; 
}
.lava-block {
  /* coordinates of the image */
  --i:-66; 
  --j:-6; 
}
.lava-bucket {
  /* coordinates of the image */
  --i:-98; 
  --j:-10; 
}
.lawrencium {
  /* coordinates of the image */
  --i:-57; 
  --j:-0; 
}
.le-tricolore {
  /* coordinates of the image */
  --i:-41; 
  --j:-6; 
}
.lead {
  /* coordinates of the image */
  --i:-111; 
  --j:-25; 
}
.lead-element {
  /* coordinates of the image */
  --i:-57; 
  --j:-1; 
}
.leather {
  /* coordinates of the image */
  --i:-109; 
  --j:-30; 
}
.leather-boots {
  /* coordinates of the image */
  --i:-78; 
  --j:-18; 
}
.leather-boots-revision-1 {
  /* coordinates of the image */
  --i:-64; 
  --j:-27; 
}
.leather-boots-revision-2 {
  /* coordinates of the image */
  --i:-64; 
  --j:-28; 
}
.leather-cap {
  /* coordinates of the image */
  --i:-78; 
  --j:-19; 
}
.leather-cap-revision-1 {
  /* coordinates of the image */
  --i:-64; 
  --j:-29; 
}
.leather-cap-revision-2 {
  /* coordinates of the image */
  --i:-64; 
  --j:-30; 
}
.leather-horse-armor {
  /* coordinates of the image */
  --i:-43; 
  --j:-5; 
}
.leather-horse-armor-be {
  /* coordinates of the image */
  --i:-11; 
  --j:-25; 
}
.leather-pants {
  /* coordinates of the image */
  --i:-78; 
  --j:-20; 
}
.leather-pants-revision-1 {
  /* coordinates of the image */
  --i:-64; 
  --j:-31; 
}
.leather-pants-revision-2 {
  /* coordinates of the image */
  --i:-65; 
  --j:-0; 
}
.leather-tunic {
  /* coordinates of the image */
  --i:-78; 
  --j:-21; 
}
.leather-tunic-revision-1 {
  /* coordinates of the image */
  --i:-65; 
  --j:-1; 
}
.leather-tunic-revision-2 {
  /* coordinates of the image */
  --i:-65; 
  --j:-2; 
}
.lectern {
  /* coordinates of the image */
  --i:-0; 
  --j:-18; 
}
.lectern-revision-1 {
  /* coordinates of the image */
  --i:-76; 
  --j:-1; 
}
.left-curly {
  /* coordinates of the image */
  --i:-39; 
  --j:-6; 
}
.left-square {
  /* coordinates of the image */
  --i:-39; 
  --j:-7; 
}
.lever {
  /* coordinates of the image */
  --i:-104; 
  --j:-9; 
}
.light-0 {
  /* coordinates of the image */
  --i:-16; 
  --j:-12; 
}
.light-1 {
  /* coordinates of the image */
  --i:-16; 
  --j:-13; 
}
.light-10 {
  /* coordinates of the image */
  --i:-16; 
  --j:-14; 
}
.light-11 {
  /* coordinates of the image */
  --i:-16; 
  --j:-15; 
}
.light-12 {
  /* coordinates of the image */
  --i:-16; 
  --j:-16; 
}
.light-13 {
  /* coordinates of the image */
  --i:-16; 
  --j:-17; 
}
.light-14 {
  /* coordinates of the image */
  --i:-16; 
  --j:-18; 
}
.light-15 {
  /* coordinates of the image */
  --i:-16; 
  --j:-19; 
}
.light-2 {
  /* coordinates of the image */
  --i:-16; 
  --j:-20; 
}
.light-3 {
  /* coordinates of the image */
  --i:-16; 
  --j:-21; 
}
.light-4 {
  /* coordinates of the image */
  --i:-16; 
  --j:-22; 
}
.light-5 {
  /* coordinates of the image */
  --i:-16; 
  --j:-23; 
}
.light-6 {
  /* coordinates of the image */
  --i:-16; 
  --j:-24; 
}
.light-7 {
  /* coordinates of the image */
  --i:-16; 
  --j:-25; 
}
.light-8 {
  /* coordinates of the image */
  --i:-16; 
  --j:-26; 
}
.light-9 {
  /* coordinates of the image */
  --i:-16; 
  --j:-27; 
}
.light-block-0 {
  /* coordinates of the image */
  --i:-2; 
  --j:-11; 
}
.light-block-1 {
  /* coordinates of the image */
  --i:-2; 
  --j:-12; 
}
.light-block-10 {
  /* coordinates of the image */
  --i:-2; 
  --j:-13; 
}
.light-block-11 {
  /* coordinates of the image */
  --i:-2; 
  --j:-14; 
}
.light-block-12 {
  /* coordinates of the image */
  --i:-2; 
  --j:-15; 
}
.light-block-13 {
  /* coordinates of the image */
  --i:-2; 
  --j:-16; 
}
.light-block-14 {
  /* coordinates of the image */
  --i:-2; 
  --j:-17; 
}
.light-block-15 {
  /* coordinates of the image */
  --i:-2; 
  --j:-18; 
}
.light-block-2 {
  /* coordinates of the image */
  --i:-2; 
  --j:-19; 
}
.light-block-3 {
  /* coordinates of the image */
  --i:-2; 
  --j:-20; 
}
.light-block-4 {
  /* coordinates of the image */
  --i:-2; 
  --j:-21; 
}
.light-block-5 {
  /* coordinates of the image */
  --i:-2; 
  --j:-22; 
}
.light-block-6 {
  /* coordinates of the image */
  --i:-2; 
  --j:-23; 
}
.light-block-7 {
  /* coordinates of the image */
  --i:-2; 
  --j:-24; 
}
.light-block-8 {
  /* coordinates of the image */
  --i:-2; 
  --j:-25; 
}
.light-block-9 {
  /* coordinates of the image */
  --i:-2; 
  --j:-26; 
}
.light-blue-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-16; 
}
.light-blue-banner {
  /* coordinates of the image */
  --i:-23; 
  --j:-3; 
}
.light-blue-banner-15w14a {
  /* coordinates of the image */
  --i:-14; 
  --j:-29; 
}
.light-blue-base-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-5; 
}
.light-blue-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-6; 
}
.light-blue-base-gradient-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-7; 
}
.light-blue-base-indented-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-8; 
}
.light-blue-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-9; 
}
.light-blue-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-8; 
}
.light-blue-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-14; 
}
.light-blue-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-14; 
}
.light-blue-bend-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-10; 
}
.light-blue-bend-sinister-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-11; 
}
.light-blue-bordure-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-12; 
}
.light-blue-bordure-indented-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-13; 
}
.light-blue-candle {
  /* coordinates of the image */
  --i:-12; 
  --j:-24; 
}
.light-blue-carpet {
  /* coordinates of the image */
  --i:-50; 
  --j:-26; 
}
.light-blue-carpet-revision-1 {
  /* coordinates of the image */
  --i:-23; 
  --j:-4; 
}
.light-blue-chevron-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-14; 
}
.light-blue-chief-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-15; 
}
.light-blue-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-16; 
}
.light-blue-chief-indented-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-17; 
}
.light-blue-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-18; 
}
.light-blue-concrete {
  /* coordinates of the image */
  --i:-46; 
  --j:-20; 
}
.light-blue-concrete-powder {
  /* coordinates of the image */
  --i:-46; 
  --j:-21; 
}
.light-blue-creeper-charge-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-19; 
}
.light-blue-cross-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-20; 
}
.light-blue-dye {
  /* coordinates of the image */
  --i:-98; 
  --j:-25; 
}
.light-blue-fess-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-21; 
}
.light-blue-field-masoned-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-22; 
}
.light-blue-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-11; 
}
.light-blue-flower-charge-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-23; 
}
.light-blue-glazed-terracotta {
  /* coordinates of the image */
  --i:-46; 
  --j:-22; 
}
.light-blue-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-9; 
}
.light-blue-glow-stick {
  /* coordinates of the image */
  --i:-62; 
  --j:-14; 
}
.light-blue-gradient-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-24; 
}
.light-blue-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-25; 
}
.light-blue-lozenge-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-26; 
}
.light-blue-pale-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-27; 
}
.light-blue-pale-dexter-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-28; 
}
.light-blue-pale-sinister-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-29; 
}
.light-blue-paly-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-30; 
}
.light-blue-per-bend-banner {
  /* coordinates of the image */
  --i:-86; 
  --j:-31; 
}
.light-blue-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-0; 
}
.light-blue-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-1; 
}
.light-blue-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-2; 
}
.light-blue-per-fess-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-3; 
}
.light-blue-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-4; 
}
.light-blue-per-pale-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-5; 
}
.light-blue-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-6; 
}
.light-blue-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-12; 
}
.light-blue-roundel-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-7; 
}
.light-blue-saltire-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-8; 
}
.light-blue-shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-22; 
}
.light-blue-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-8; 
}
.light-blue-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-13; 
}
.light-blue-skull-charge-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-9; 
}
.light-blue-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-12; 
}
.light-blue-stained-glass {
  /* coordinates of the image */
  --i:-23; 
  --j:-6; 
}
.light-blue-stained-glass-pane {
  /* coordinates of the image */
  --i:-23; 
  --j:-7; 
}
.light-blue-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-62; 
  --j:-29; 
}
.light-blue-terracotta {
  /* coordinates of the image */
  --i:-23; 
  --j:-5; 
}
.light-blue-thing-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-10; 
}
.light-blue-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-21; 
}
.light-blue-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-8; 
}
.light-blue-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-25; 
}
.light-blue-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-24; 
}
.light-blue-wool-revision-2 {
  /* coordinates of the image */
  --i:-23; 
  --j:-8; 
}
.light-gray-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-24; 
}
.light-gray-banner {
  /* coordinates of the image */
  --i:-23; 
  --j:-9; 
}
.light-gray-banner-15w14a {
  /* coordinates of the image */
  --i:-14; 
  --j:-30; 
}
.light-gray-base-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-11; 
}
.light-gray-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-12; 
}
.light-gray-base-gradient-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-13; 
}
.light-gray-base-indented-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-14; 
}
.light-gray-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-15; 
}
.light-gray-beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-9; 
}
.light-gray-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-9; 
}
.light-gray-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-15; 
}
.light-gray-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-15; 
}
.light-gray-bend-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-16; 
}
.light-gray-bend-sinister-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-17; 
}
.light-gray-bordure-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-18; 
}
.light-gray-bordure-indented-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-19; 
}
.light-gray-candle {
  /* coordinates of the image */
  --i:-12; 
  --j:-25; 
}
.light-gray-carpet {
  /* coordinates of the image */
  --i:-50; 
  --j:-27; 
}
.light-gray-carpet-revision-1 {
  /* coordinates of the image */
  --i:-23; 
  --j:-10; 
}
.light-gray-chevron-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-20; 
}
.light-gray-chief-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-21; 
}
.light-gray-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-22; 
}
.light-gray-chief-indented-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-23; 
}
.light-gray-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-24; 
}
.light-gray-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-8; 
}
.light-gray-concrete {
  /* coordinates of the image */
  --i:-46; 
  --j:-23; 
}
.light-gray-concrete-powder {
  /* coordinates of the image */
  --i:-46; 
  --j:-24; 
}
.light-gray-creeper-charge-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-25; 
}
.light-gray-cross-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-26; 
}
.light-gray-dye {
  /* coordinates of the image */
  --i:-98; 
  --j:-26; 
}
.light-gray-fess-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-27; 
}
.light-gray-field-masoned-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-28; 
}
.light-gray-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-12; 
}
.light-gray-flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-21; 
}
.light-gray-flower-charge-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-29; 
}
.light-gray-glazed-terracotta {
  /* coordinates of the image */
  --i:-46; 
  --j:-25; 
}
.light-gray-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-10; 
}
.light-gray-gradient-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-30; 
}
.light-gray-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-87; 
  --j:-31; 
}
.light-gray-jar {
  /* coordinates of the image */
  --i:-60; 
  --j:-2; 
}
.light-gray-lozenge-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-0; 
}
.light-gray-pale-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-1; 
}
.light-gray-pale-dexter-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-2; 
}
.light-gray-pale-sinister-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-3; 
}
.light-gray-paly-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-4; 
}
.light-gray-per-bend-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-5; 
}
.light-gray-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-6; 
}
.light-gray-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-7; 
}
.light-gray-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-8; 
}
.light-gray-per-fess-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-9; 
}
.light-gray-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-10; 
}
.light-gray-per-pale-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-11; 
}
.light-gray-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-12; 
}
.light-gray-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-13; 
}
.light-gray-roundel-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-13; 
}
.light-gray-saltire-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-14; 
}
.light-gray-shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-23; 
}
.light-gray-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-9; 
}
.light-gray-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-14; 
}
.light-gray-skull-charge-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-15; 
}
.light-gray-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-13; 
}
.light-gray-stained-glass {
  /* coordinates of the image */
  --i:-23; 
  --j:-12; 
}
.light-gray-stained-glass-pane {
  /* coordinates of the image */
  --i:-23; 
  --j:-13; 
}
.light-gray-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-62; 
  --j:-30; 
}
.light-gray-terracotta {
  /* coordinates of the image */
  --i:-23; 
  --j:-11; 
}
.light-gray-thing-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-16; 
}
.light-gray-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-22; 
}
.light-gray-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-9; 
}
.light-gray-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-26; 
}
.light-gray-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-25; 
}
.light-gray-wool-revision-2 {
  /* coordinates of the image */
  --i:-23; 
  --j:-14; 
}
.light-negative {
  /* coordinates of the image */
  --i:-16; 
  --j:-28; 
}
.light-weighted-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-10; 
}
.light-weighted-pressure-plate-revision-1 {
  /* coordinates of the image */
  --i:-65; 
  --j:-3; 
}
.lightning-rod {
  /* coordinates of the image */
  --i:-12; 
  --j:-30; 
}
.lilac {
  /* coordinates of the image */
  --i:-107; 
  --j:-0; 
}
.lily-of-the-valley {
  /* coordinates of the image */
  --i:-74; 
  --j:-21; 
}
.lily-pad {
  /* coordinates of the image */
  --i:-107; 
  --j:-1; 
}
.lime-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-17; 
}
.lime-banner {
  /* coordinates of the image */
  --i:-23; 
  --j:-15; 
}
.lime-banner-15w14a {
  /* coordinates of the image */
  --i:-14; 
  --j:-31; 
}
.lime-base-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-17; 
}
.lime-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-18; 
}
.lime-base-gradient-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-19; 
}
.lime-base-indented-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-20; 
}
.lime-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-21; 
}
.lime-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-10; 
}
.lime-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-16; 
}
.lime-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-16; 
}
.lime-bend-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-22; 
}
.lime-bend-sinister-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-23; 
}
.lime-bordure-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-24; 
}
.lime-bordure-indented-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-25; 
}
.lime-candle {
  /* coordinates of the image */
  --i:-12; 
  --j:-31; 
}
.lime-carpet {
  /* coordinates of the image */
  --i:-50; 
  --j:-28; 
}
.lime-carpet-revision-1 {
  /* coordinates of the image */
  --i:-23; 
  --j:-16; 
}
.lime-chevron-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-26; 
}
.lime-chief-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-27; 
}
.lime-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-28; 
}
.lime-chief-indented-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-29; 
}
.lime-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-30; 
}
.lime-concrete {
  /* coordinates of the image */
  --i:-46; 
  --j:-26; 
}
.lime-concrete-powder {
  /* coordinates of the image */
  --i:-46; 
  --j:-27; 
}
.lime-creeper-charge-banner {
  /* coordinates of the image */
  --i:-88; 
  --j:-31; 
}
.lime-cross-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-0; 
}
.lime-dye {
  /* coordinates of the image */
  --i:-98; 
  --j:-27; 
}
.lime-fess-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-1; 
}
.lime-field-masoned-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-2; 
}
.lime-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-13; 
}
.lime-flower-charge-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-3; 
}
.lime-glazed-terracotta {
  /* coordinates of the image */
  --i:-46; 
  --j:-28; 
}
.lime-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-11; 
}
.lime-glow-stick {
  /* coordinates of the image */
  --i:-62; 
  --j:-15; 
}
.lime-gradient-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-4; 
}
.lime-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-5; 
}
.lime-lozenge-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-6; 
}
.lime-pale-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-7; 
}
.lime-pale-dexter-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-8; 
}
.lime-pale-sinister-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-9; 
}
.lime-paly-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-10; 
}
.lime-per-bend-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-11; 
}
.lime-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-12; 
}
.lime-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-13; 
}
.lime-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-14; 
}
.lime-per-fess-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-15; 
}
.lime-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-16; 
}
.lime-per-pale-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-17; 
}
.lime-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-18; 
}
.lime-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-14; 
}
.lime-roundel-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-19; 
}
.lime-saltire-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-20; 
}
.lime-shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-24; 
}
.lime-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-10; 
}
.lime-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-15; 
}
.lime-skull-charge-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-21; 
}
.lime-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-14; 
}
.lime-stained-glass {
  /* coordinates of the image */
  --i:-23; 
  --j:-18; 
}
.lime-stained-glass-pane {
  /* coordinates of the image */
  --i:-23; 
  --j:-19; 
}
.lime-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-62; 
  --j:-31; 
}
.lime-terracotta {
  /* coordinates of the image */
  --i:-23; 
  --j:-17; 
}
.lime-thing-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-22; 
}
.lime-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-23; 
}
.lime-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-10; 
}
.lime-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-27; 
}
.lime-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-26; 
}
.lime-wool-revision-2 {
  /* coordinates of the image */
  --i:-23; 
  --j:-20; 
}
.lingering-awkward-potion-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-23; 
}
.lingering-mundane-potion-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-24; 
}
.lingering-potion-of-big {
  /* coordinates of the image */
  --i:-39; 
  --j:-9; 
}
.lingering-potion-of-decay {
  /* coordinates of the image */
  --i:-43; 
  --j:-29; 
}
.lingering-potion-of-fire-resistance {
  /* coordinates of the image */
  --i:-108; 
  --j:-27; 
}
.lingering-potion-of-fire-resistance-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-25; 
}
.lingering-potion-of-harming {
  /* coordinates of the image */
  --i:-108; 
  --j:-28; 
}
.lingering-potion-of-harming-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-26; 
}
.lingering-potion-of-healing {
  /* coordinates of the image */
  --i:-108; 
  --j:-29; 
}
.lingering-potion-of-healing-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-27; 
}
.lingering-potion-of-invisibility {
  /* coordinates of the image */
  --i:-108; 
  --j:-30; 
}
.lingering-potion-of-invisibility-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-28; 
}
.lingering-potion-of-leaping {
  /* coordinates of the image */
  --i:-108; 
  --j:-31; 
}
.lingering-potion-of-leaping-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-29; 
}
.lingering-potion-of-levitation {
  /* coordinates of the image */
  --i:-3; 
  --j:-19; 
}
.lingering-potion-of-luck {
  /* coordinates of the image */
  --i:-109; 
  --j:-0; 
}
.lingering-potion-of-luck-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-30; 
}
.lingering-potion-of-night-vision {
  /* coordinates of the image */
  --i:-109; 
  --j:-1; 
}
.lingering-potion-of-night-vision-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-31; 
}
.lingering-potion-of-poison {
  /* coordinates of the image */
  --i:-109; 
  --j:-2; 
}
.lingering-potion-of-poison-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-0; 
}
.lingering-potion-of-regeneration {
  /* coordinates of the image */
  --i:-109; 
  --j:-3; 
}
.lingering-potion-of-regeneration-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-1; 
}
.lingering-potion-of-slow-falling {
  /* coordinates of the image */
  --i:-109; 
  --j:-4; 
}
.lingering-potion-of-slow-falling-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-2; 
}
.lingering-potion-of-slowness {
  /* coordinates of the image */
  --i:-109; 
  --j:-5; 
}
.lingering-potion-of-slowness-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-3; 
}
.lingering-potion-of-small {
  /* coordinates of the image */
  --i:-39; 
  --j:-11; 
}
.lingering-potion-of-strength {
  /* coordinates of the image */
  --i:-109; 
  --j:-6; 
}
.lingering-potion-of-strength-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-4; 
}
.lingering-potion-of-swiftness {
  /* coordinates of the image */
  --i:-109; 
  --j:-7; 
}
.lingering-potion-of-swiftness-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-5; 
}
.lingering-potion-of-the-turtle-master {
  /* coordinates of the image */
  --i:-109; 
  --j:-8; 
}
.lingering-potion-of-the-turtle-master-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-6; 
}
.lingering-potion-of-water-breathing {
  /* coordinates of the image */
  --i:-109; 
  --j:-9; 
}
.lingering-potion-of-water-breathing-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-7; 
}
.lingering-potion-of-weakness {
  /* coordinates of the image */
  --i:-109; 
  --j:-10; 
}
.lingering-thick-potion-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-8; 
}
.lingering-uncraftable-potion-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-9; 
}
.lingering-water-bottle {
  /* coordinates of the image */
  --i:-109; 
  --j:-12; 
}
.lingering-water-bottle-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-10; 
}
.list-tag {
  /* coordinates of the image */
  --i:-39; 
  --j:-12; 
}
.lit-deepslate-redstone-ore-be {
  /* coordinates of the image */
  --i:-17; 
  --j:-20; 
}
.lit-redstone-lamp-post-flip {
  /* coordinates of the image */
  --i:-11; 
  --j:-27; 
}
.lit-redstone-ore {
  /* coordinates of the image */
  --i:-67; 
  --j:-26; 
}
.lit-redstone-ore-be {
  /* coordinates of the image */
  --i:-17; 
  --j:-19; 
}
.lithium {
  /* coordinates of the image */
  --i:-57; 
  --j:-2; 
}
.lithium-hydride {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.livermorium {
  /* coordinates of the image */
  --i:-57; 
  --j:-3; 
}
.llama-spawn-egg {
  /* coordinates of the image */
  --i:-44; 
  --j:-3; 
}
.locked-chest {
  /* coordinates of the image */
  --i:-39; 
  --j:-2; 
}
.locked-chest-12w19a {
  /* coordinates of the image */
  --i:-41; 
  --j:-4; 
}
.locked-chest-12w22a {
  /* coordinates of the image */
  --i:-40; 
  --j:-24; 
}
.locked-chest-13w01a {
  /* coordinates of the image */
  --i:-17; 
  --j:-8; 
}
.locked-chest-13w03a {
  /* coordinates of the image */
  --i:-17; 
  --j:-9; 
}
.locked-chest-13w18a {
  /* coordinates of the image */
  --i:-40; 
  --j:-25; 
}
.locked-map {
  /* coordinates of the image */
  --i:-4; 
  --j:-2; 
}
.lodestone {
  /* coordinates of the image */
  --i:-6; 
  --j:-29; 
}
.lodestone-compass {
  /* coordinates of the image */
  --i:-18; 
  --j:-0; 
}
.lodestone-compass {
  /* coordinates of the image */
  --i:-18; 
  --j:-0; 
}
.long-tag {
  /* coordinates of the image */
  --i:-39; 
  --j:-13; 
}
.longer-string {
  /* coordinates of the image */
  --i:-41; 
  --j:-9; 
}
.loom {
  /* coordinates of the image */
  --i:-76; 
  --j:-13; 
}
.loom-revision-1 {
  /* coordinates of the image */
  --i:-0; 
  --j:-19; 
}
.luminol {
  /* coordinates of the image */
  --i:-60; 
  --j:-1; 
}
.lutetium {
  /* coordinates of the image */
  --i:-57; 
  --j:-4; 
}
.lye {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.magenta-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-18; 
}
.magenta-banner {
  /* coordinates of the image */
  --i:-23; 
  --j:-21; 
}
.magenta-banner-15w14a {
  /* coordinates of the image */
  --i:-15; 
  --j:-0; 
}
.magenta-base-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-23; 
}
.magenta-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-24; 
}
.magenta-base-gradient-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-25; 
}
.magenta-base-indented-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-26; 
}
.magenta-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-27; 
}
.magenta-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-11; 
}
.magenta-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-17; 
}
.magenta-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-17; 
}
.magenta-bend-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-28; 
}
.magenta-bend-sinister-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-29; 
}
.magenta-bordure-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-30; 
}
.magenta-bordure-indented-banner {
  /* coordinates of the image */
  --i:-89; 
  --j:-31; 
}
.magenta-candle {
  /* coordinates of the image */
  --i:-13; 
  --j:-0; 
}
.magenta-carpet {
  /* coordinates of the image */
  --i:-50; 
  --j:-29; 
}
.magenta-carpet-revision-1 {
  /* coordinates of the image */
  --i:-23; 
  --j:-22; 
}
.magenta-chevron-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-0; 
}
.magenta-chief-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-1; 
}
.magenta-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-2; 
}
.magenta-chief-indented-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-3; 
}
.magenta-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-4; 
}
.magenta-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-10; 
}
.magenta-concrete {
  /* coordinates of the image */
  --i:-46; 
  --j:-29; 
}
.magenta-concrete-powder {
  /* coordinates of the image */
  --i:-46; 
  --j:-30; 
}
.magenta-creeper-charge-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-5; 
}
.magenta-cross-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-6; 
}
.magenta-dye {
  /* coordinates of the image */
  --i:-98; 
  --j:-28; 
}
.magenta-fess-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-7; 
}
.magenta-field-masoned-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-8; 
}
.magenta-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-14; 
}
.magenta-flower-charge-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-9; 
}
.magenta-glazed-terracotta {
  /* coordinates of the image */
  --i:-48; 
  --j:-4; 
}
.magenta-glazed-terracotta-revision-1 {
  /* coordinates of the image */
  --i:-46; 
  --j:-31; 
}
.magenta-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-12; 
}
.magenta-glow-stick {
  /* coordinates of the image */
  --i:-62; 
  --j:-16; 
}
.magenta-gradient-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-10; 
}
.magenta-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-11; 
}
.magenta-lozenge-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-12; 
}
.magenta-pale-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-13; 
}
.magenta-pale-dexter-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-14; 
}
.magenta-pale-sinister-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-15; 
}
.magenta-paly-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-16; 
}
.magenta-per-bend-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-17; 
}
.magenta-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-18; 
}
.magenta-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-19; 
}
.magenta-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-20; 
}
.magenta-per-fess-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-21; 
}
.magenta-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-22; 
}
.magenta-per-pale-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-23; 
}
.magenta-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-24; 
}
.magenta-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-15; 
}
.magenta-roundel-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-25; 
}
.magenta-saltire-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-26; 
}
.magenta-shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-25; 
}
.magenta-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-11; 
}
.magenta-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-16; 
}
.magenta-skull-charge-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-27; 
}
.magenta-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-15; 
}
.magenta-stained-glass {
  /* coordinates of the image */
  --i:-23; 
  --j:-24; 
}
.magenta-stained-glass-pane {
  /* coordinates of the image */
  --i:-23; 
  --j:-25; 
}
.magenta-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-63; 
  --j:-0; 
}
.magenta-terracotta {
  /* coordinates of the image */
  --i:-23; 
  --j:-23; 
}
.magenta-thing-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-28; 
}
.magenta-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-26; 
}
.magenta-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-11; 
}
.magenta-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-28; 
}
.magenta-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-27; 
}
.magenta-wool-revision-2 {
  /* coordinates of the image */
  --i:-23; 
  --j:-26; 
}
.magma-block {
  /* coordinates of the image */
  --i:-15; 
  --j:-29; 
}
.magma-cream {
  /* coordinates of the image */
  --i:-98; 
  --j:-6; 
}
.magma-cube-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-0; 
}
.magma-cube-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-12; 
}
.magnesium {
  /* coordinates of the image */
  --i:-57; 
  --j:-5; 
}
.magnesium-nitrate {
  /* coordinates of the image */
  --i:-60; 
  --j:-3; 
}
.magnesium-oxide {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.manganese {
  /* coordinates of the image */
  --i:-57; 
  --j:-6; 
}
.mangrove-boat {
  /* coordinates of the image */
  --i:-19; 
  --j:-30; 
}
.mangrove-boat-with-chest {
  /* coordinates of the image */
  --i:-19; 
  --j:-9; 
}
.mangrove-button {
  /* coordinates of the image */
  --i:-18; 
  --j:-22; 
}
.mangrove-door {
  /* coordinates of the image */
  --i:-18; 
  --j:-23; 
}
.mangrove-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-6; 
}
.mangrove-fence-be {
  /* coordinates of the image */
  --i:-18; 
  --j:-8; 
}
.mangrove-fence-gate {
  /* coordinates of the image */
  --i:-18; 
  --j:-9; 
}
.mangrove-hanging-sign {
  /* coordinates of the image */
  --i:-20; 
  --j:-16; 
}
.mangrove-leaves {
  /* coordinates of the image */
  --i:-18; 
  --j:-28; 
}
.mangrove-log {
  /* coordinates of the image */
  --i:-18; 
  --j:-29; 
}
.mangrove-planks {
  /* coordinates of the image */
  --i:-18; 
  --j:-10; 
}
.mangrove-pressure-plate {
  /* coordinates of the image */
  --i:-18; 
  --j:-24; 
}
.mangrove-propagule {
  /* coordinates of the image */
  --i:-18; 
  --j:-30; 
}
.mangrove-roots {
  /* coordinates of the image */
  --i:-18; 
  --j:-31; 
}
.mangrove-sign {
  /* coordinates of the image */
  --i:-18; 
  --j:-27; 
}
.mangrove-slab {
  /* coordinates of the image */
  --i:-18; 
  --j:-11; 
}
.mangrove-stairs {
  /* coordinates of the image */
  --i:-18; 
  --j:-12; 
}
.mangrove-trapdoor {
  /* coordinates of the image */
  --i:-18; 
  --j:-25; 
}
.mangrove-wood {
  /* coordinates of the image */
  --i:-18; 
  --j:-13; 
}
.mangrove-wood-button {
  /* coordinates of the image */
  --i:-18; 
  --j:-22; 
}
.mangrove-wood-door {
  /* coordinates of the image */
  --i:-18; 
  --j:-23; 
}
.mangrove-wood-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-6; 
}
.mangrove-wood-fence-be {
  /* coordinates of the image */
  --i:-18; 
  --j:-8; 
}
.mangrove-wood-fence-gate {
  /* coordinates of the image */
  --i:-18; 
  --j:-9; 
}
.mangrove-wood-planks {
  /* coordinates of the image */
  --i:-18; 
  --j:-10; 
}
.mangrove-wood-pressure-plate {
  /* coordinates of the image */
  --i:-18; 
  --j:-24; 
}
.mangrove-wood-sign {
  /* coordinates of the image */
  --i:-18; 
  --j:-27; 
}
.mangrove-wood-slab {
  /* coordinates of the image */
  --i:-18; 
  --j:-11; 
}
.mangrove-wood-stairs {
  /* coordinates of the image */
  --i:-18; 
  --j:-12; 
}
.mangrove-wood-trapdoor {
  /* coordinates of the image */
  --i:-18; 
  --j:-25; 
}
.map {
  /* coordinates of the image */
  --i:-111; 
  --j:-26; 
}
.map-be {
  /* coordinates of the image */
  --i:-3; 
  --j:-27; 
}
.material-reducer {
  /* coordinates of the image */
  --i:-60; 
  --j:-19; 
}
.medium-amethyst-bud {
  /* coordinates of the image */
  --i:-13; 
  --j:-1; 
}
.meitnerium {
  /* coordinates of the image */
  --i:-57; 
  --j:-7; 
}
.melon {
  /* coordinates of the image */
  --i:-107; 
  --j:-2; 
}
.melon-seeds {
  /* coordinates of the image */
  --i:-32; 
  --j:-25; 
}
.melon-slice {
  /* coordinates of the image */
  --i:-100; 
  --j:-6; 
}
.mendelevium {
  /* coordinates of the image */
  --i:-57; 
  --j:-8; 
}
.mercuric-chloride {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.mercury {
  /* coordinates of the image */
  --i:-56; 
  --j:-24; 
}
.metalloid {
  /* coordinates of the image */
  --i:-2; 
  --j:-6; 
}
.mhf-alex {
  /* coordinates of the image */
  --i:-44; 
  --j:-29; 
}
.mhf-arrowdown {
  /* coordinates of the image */
  --i:-44; 
  --j:-30; 
}
.mhf-arrowleft {
  /* coordinates of the image */
  --i:-44; 
  --j:-31; 
}
.mhf-arrowright {
  /* coordinates of the image */
  --i:-45; 
  --j:-0; 
}
.mhf-arrowup {
  /* coordinates of the image */
  --i:-45; 
  --j:-1; 
}
.mhf-blaze {
  /* coordinates of the image */
  --i:-45; 
  --j:-2; 
}
.mhf-cactus {
  /* coordinates of the image */
  --i:-45; 
  --j:-3; 
}
.mhf-cake {
  /* coordinates of the image */
  --i:-45; 
  --j:-4; 
}
.mhf-cavespider {
  /* coordinates of the image */
  --i:-45; 
  --j:-5; 
}
.mhf-chest {
  /* coordinates of the image */
  --i:-45; 
  --j:-6; 
}
.mhf-chicken {
  /* coordinates of the image */
  --i:-45; 
  --j:-7; 
}
.mhf-coconutb {
  /* coordinates of the image */
  --i:-45; 
  --j:-8; 
}
.mhf-coconutg {
  /* coordinates of the image */
  --i:-45; 
  --j:-9; 
}
.mhf-cow {
  /* coordinates of the image */
  --i:-45; 
  --j:-10; 
}
.mhf-creeper {
  /* coordinates of the image */
  --i:-30; 
  --j:-3; 
}
.mhf-enderman {
  /* coordinates of the image */
  --i:-45; 
  --j:-11; 
}
.mhf-exclamation {
  /* coordinates of the image */
  --i:-45; 
  --j:-12; 
}
.mhf-ghast {
  /* coordinates of the image */
  --i:-45; 
  --j:-13; 
}
.mhf-golem {
  /* coordinates of the image */
  --i:-45; 
  --j:-14; 
}
.mhf-herobrine {
  /* coordinates of the image */
  --i:-45; 
  --j:-15; 
}
.mhf-lavaslime {
  /* coordinates of the image */
  --i:-45; 
  --j:-16; 
}
.mhf-melon {
  /* coordinates of the image */
  --i:-45; 
  --j:-17; 
}
.mhf-mushroomcow {
  /* coordinates of the image */
  --i:-45; 
  --j:-18; 
}
.mhf-oaklog {
  /* coordinates of the image */
  --i:-45; 
  --j:-19; 
}
.mhf-ocelot {
  /* coordinates of the image */
  --i:-45; 
  --j:-20; 
}
.mhf-pig {
  /* coordinates of the image */
  --i:-45; 
  --j:-21; 
}
.mhf-pigzombie {
  /* coordinates of the image */
  --i:-45; 
  --j:-22; 
}
.mhf-present1 {
  /* coordinates of the image */
  --i:-45; 
  --j:-23; 
}
.mhf-present2 {
  /* coordinates of the image */
  --i:-45; 
  --j:-24; 
}
.mhf-pumpkin {
  /* coordinates of the image */
  --i:-45; 
  --j:-25; 
}
.mhf-question {
  /* coordinates of the image */
  --i:-45; 
  --j:-26; 
}
.mhf-sheep {
  /* coordinates of the image */
  --i:-45; 
  --j:-27; 
}
.mhf-skeleton {
  /* coordinates of the image */
  --i:-113; 
  --j:-26; 
}
.mhf-slime {
  /* coordinates of the image */
  --i:-45; 
  --j:-28; 
}
.mhf-spider {
  /* coordinates of the image */
  --i:-45; 
  --j:-29; 
}
.mhf-squid {
  /* coordinates of the image */
  --i:-45; 
  --j:-30; 
}
.mhf-steve {
  /* coordinates of the image */
  --i:-30; 
  --j:-5; 
}
.mhf-tnt {
  /* coordinates of the image */
  --i:-45; 
  --j:-31; 
}
.mhf-tnt2 {
  /* coordinates of the image */
  --i:-46; 
  --j:-0; 
}
.mhf-villager {
  /* coordinates of the image */
  --i:-46; 
  --j:-1; 
}
.mhf-wskeleton {
  /* coordinates of the image */
  --i:-113; 
  --j:-27; 
}
.mhf-zombie {
  /* coordinates of the image */
  --i:-113; 
  --j:-28; 
}
.milk {
  /* coordinates of the image */
  --i:-98; 
  --j:-11; 
}
.milk-bucket {
  /* coordinates of the image */
  --i:-98; 
  --j:-11; 
}
.milk-bucket-revision-1 {
  /* coordinates of the image */
  --i:-7; 
  --j:-1; 
}
.minecart {
  /* coordinates of the image */
  --i:-113; 
  --j:-5; 
}
.chest-minecart {
  /* coordinates of the image */
  --i:-113; 
  --j:-6; 
}
.command-block-minecart {
  /* coordinates of the image */
  --i:-113; 
  --j:-7; 
}
.command-block-minecart-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-2; 
}
.furnace-minecart {
  /* coordinates of the image */
  --i:-113; 
  --j:-8; 
}
.hopper-minecart {
  /* coordinates of the image */
  --i:-113; 
  --j:-9; 
}
.tnt-minecart {
  /* coordinates of the image */
  --i:-113; 
  --j:-10; 
}
.miner-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-13; 
}
.missing-model-je1 {
  /* coordinates of the image */
  --i:-40; 
  --j:-25; 
}
.molybdenum {
  /* coordinates of the image */
  --i:-57; 
  --j:-9; 
}
.monster-spawner {
  /* coordinates of the image */
  --i:-105; 
  --j:-18; 
}
.monster-spawner-be {
  /* coordinates of the image */
  --i:-15; 
  --j:-27; 
}
.monster-spawner-je {
  /* coordinates of the image */
  --i:-105; 
  --j:-18; 
}
.moobloom-spawn-egg {
  /* coordinates of the image */
  --i:-19; 
  --j:-18; 
}
.moon-cow-spawn-egg {
  /* coordinates of the image */
  --i:-41; 
  --j:-12; 
}
.mooshroom-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-1; 
}
.mooshroom-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-13; 
}
.moscovium {
  /* coordinates of the image */
  --i:-57; 
  --j:-10; 
}
.moss-block {
  /* coordinates of the image */
  --i:-14; 
  --j:-12; 
}
.moss-carpet {
  /* coordinates of the image */
  --i:-14; 
  --j:-13; 
}
.moss-stone {
  /* coordinates of the image */
  --i:-30; 
  --j:-25; 
}
.mossy-cobblestone {
  /* coordinates of the image */
  --i:-105; 
  --j:-6; 
}
.mossy-cobblestone-slab {
  /* coordinates of the image */
  --i:-102; 
  --j:-9; 
}
.mossy-cobblestone-stairs {
  /* coordinates of the image */
  --i:-102; 
  --j:-10; 
}
.mossy-cobblestone-wall {
  /* coordinates of the image */
  --i:-102; 
  --j:-11; 
}
.mossy-cobblestone-wall-be {
  /* coordinates of the image */
  --i:-63; 
  --j:-10; 
}
.mossy-stone-brick-slab {
  /* coordinates of the image */
  --i:-102; 
  --j:-12; 
}
.mossy-stone-brick-stairs {
  /* coordinates of the image */
  --i:-102; 
  --j:-13; 
}
.mossy-stone-brick-wall {
  /* coordinates of the image */
  --i:-102; 
  --j:-14; 
}
.mossy-stone-brick-wall-be {
  /* coordinates of the image */
  --i:-0; 
  --j:-25; 
}
.mossy-stone-bricks {
  /* coordinates of the image */
  --i:-105; 
  --j:-7; 
}
.mossy-stone-bricks-monster-egg {
  /* coordinates of the image */
  --i:-105; 
  --j:-7; 
}
.mourner-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-14; 
}
.mud {
  /* coordinates of the image */
  --i:-18; 
  --j:-26; 
}
.mud-brick-slab {
  /* coordinates of the image */
  --i:-18; 
  --j:-14; 
}
.mud-brick-stairs {
  /* coordinates of the image */
  --i:-18; 
  --j:-15; 
}
.mud-brick-wall {
  /* coordinates of the image */
  --i:-18; 
  --j:-16; 
}
.mud-brick-wall-be {
  /* coordinates of the image */
  --i:-19; 
  --j:-20; 
}
.mud-bricks {
  /* coordinates of the image */
  --i:-18; 
  --j:-17; 
}
.mud-bucket {
  /* coordinates of the image */
  --i:-2; 
  --j:-27; 
}
.muddy-mangrove-roots {
  /* coordinates of the image */
  --i:-19; 
  --j:-0; 
}
.mule-spawn-egg {
  /* coordinates of the image */
  --i:-42; 
  --j:-29; 
}
.mule-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-35; 
  --j:-31; 
}
.mundane-lingering-potion {
  /* coordinates of the image */
  --i:-34; 
  --j:-8; 
}
.mundane-potion {
  /* coordinates of the image */
  --i:-33; 
  --j:-26; 
}
.mundane-potion-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-4; 
}
.mundane-splash-potion {
  /* coordinates of the image */
  --i:-34; 
  --j:-11; 
}
.mushroom-stem {
  /* coordinates of the image */
  --i:-107; 
  --j:-3; 
}
.mushroom-stew {
  /* coordinates of the image */
  --i:-100; 
  --j:-7; 
}
.music-disc-11 {
  /* coordinates of the image */
  --i:-98; 
  --j:-16; 
}
.music-disc-13 {
  /* coordinates of the image */
  --i:-21; 
  --j:-0; 
}
.music-disc-5 {
  /* coordinates of the image */
  --i:-19; 
  --j:-21; 
}
.music-disc-blocks {
  /* coordinates of the image */
  --i:-21; 
  --j:-2; 
}
.music-disc-cat {
  /* coordinates of the image */
  --i:-21; 
  --j:-3; 
}
.music-disc-chirp {
  /* coordinates of the image */
  --i:-21; 
  --j:-4; 
}
.music-disc-far {
  /* coordinates of the image */
  --i:-21; 
  --j:-5; 
}
.music-disc-mall {
  /* coordinates of the image */
  --i:-21; 
  --j:-8; 
}
.music-disc-mellohi {
  /* coordinates of the image */
  --i:-21; 
  --j:-9; 
}
.music-disc-otherside {
  /* coordinates of the image */
  --i:-17; 
  --j:-10; 
}
.music-disc-pigstep {
  /* coordinates of the image */
  --i:-9; 
  --j:-0; 
}
.music-disc-relic {
  /* coordinates of the image */
  --i:-41; 
  --j:-11; 
}
.music-disc-stal {
  /* coordinates of the image */
  --i:-21; 
  --j:-11; 
}
.music-disc-strad {
  /* coordinates of the image */
  --i:-21; 
  --j:-12; 
}
.music-disc-wait {
  /* coordinates of the image */
  --i:-21; 
  --j:-13; 
}
.music-disc-ward {
  /* coordinates of the image */
  --i:-21; 
  --j:-14; 
}
.mycelium {
  /* coordinates of the image */
  --i:-105; 
  --j:-8; 
}
.mycelium-revision-1 {
  /* coordinates of the image */
  --i:-3; 
  --j:-9; 
}
.name {
  /* coordinates of the image */
  --i:-39; 
  --j:-14; 
}
.name-tag {
  /* coordinates of the image */
  --i:-111; 
  --j:-27; 
}
.natrium {
  /* coordinates of the image */
  --i:-57; 
  --j:-11; 
}
.nautilus-shell {
  /* coordinates of the image */
  --i:-54; 
  --j:-14; 
}
.neodymium {
  /* coordinates of the image */
  --i:-57; 
  --j:-12; 
}
.neon {
  /* coordinates of the image */
  --i:-57; 
  --j:-13; 
}
.neptunium {
  /* coordinates of the image */
  --i:-57; 
  --j:-14; 
}
.nether-brick {
  /* coordinates of the image */
  --i:-109; 
  --j:-31; 
}
.nether-brick-block {
  /* coordinates of the image */
  --i:-31; 
  --j:-10; 
}
.nether-brick-fence {
  /* coordinates of the image */
  --i:-19; 
  --j:-31; 
}
.nether-brick-fence-be {
  /* coordinates of the image */
  --i:-105; 
  --j:-22; 
}
.nether-brick-slab {
  /* coordinates of the image */
  --i:-102; 
  --j:-15; 
}
.nether-brick-stairs {
  /* coordinates of the image */
  --i:-105; 
  --j:-23; 
}
.nether-brick-stairs-left {
  /* coordinates of the image */
  --i:-70; 
  --j:-19; 
}
.nether-brick-wall {
  /* coordinates of the image */
  --i:-102; 
  --j:-16; 
}
.nether-brick-wall-be {
  /* coordinates of the image */
  --i:-0; 
  --j:-26; 
}
.nether-bricks {
  /* coordinates of the image */
  --i:-105; 
  --j:-24; 
}
.nether-gold-ore {
  /* coordinates of the image */
  --i:-6; 
  --j:-9; 
}
.nether-gold-ore-revision-1 {
  /* coordinates of the image */
  --i:-7; 
  --j:-0; 
}
.nether-portal {
  /* coordinates of the image */
  --i:-67; 
  --j:-17; 
}
.nether-quartz {
  /* coordinates of the image */
  --i:-110; 
  --j:-0; 
}
.nether-quartz-ore {
  /* coordinates of the image */
  --i:-105; 
  --j:-25; 
}
.nether-reactor-core {
  /* coordinates of the image */
  --i:-49; 
  --j:-30; 
}
.nether-reactor-core-revision-1 {
  /* coordinates of the image */
  --i:-33; 
  --j:-24; 
}
.nether-sprouts {
  /* coordinates of the image */
  --i:-2; 
  --j:-29; 
}
.nether-sprouts-old {
  /* coordinates of the image */
  --i:-5; 
  --j:-30; 
}
.nether-sprouts-revision-1 {
  /* coordinates of the image */
  --i:-8; 
  --j:-10; 
}
.nether-star {
  /* coordinates of the image */
  --i:-11; 
  --j:-2; 
}
.nether-wart {
  /* coordinates of the image */
  --i:-20; 
  --j:-22; 
}
.nether-wart-block {
  /* coordinates of the image */
  --i:-31; 
  --j:-14; 
}
.nether-wart-block {
  /* coordinates of the image */
  --i:-102; 
  --j:-17; 
}
.netherite-axe {
  /* coordinates of the image */
  --i:-4; 
  --j:-8; 
}
.netherite-boots {
  /* coordinates of the image */
  --i:-4; 
  --j:-13; 
}
.netherite-chestplate {
  /* coordinates of the image */
  --i:-4; 
  --j:-14; 
}
.netherite-helmet {
  /* coordinates of the image */
  --i:-4; 
  --j:-15; 
}
.netherite-hoe {
  /* coordinates of the image */
  --i:-4; 
  --j:-9; 
}
.netherite-ingot {
  /* coordinates of the image */
  --i:-4; 
  --j:-6; 
}
.netherite-leggings {
  /* coordinates of the image */
  --i:-4; 
  --j:-16; 
}
.netherite-pickaxe {
  /* coordinates of the image */
  --i:-4; 
  --j:-10; 
}
.netherite-scrap {
  /* coordinates of the image */
  --i:-4; 
  --j:-7; 
}
.netherite-shovel {
  /* coordinates of the image */
  --i:-4; 
  --j:-11; 
}
.netherite-sword {
  /* coordinates of the image */
  --i:-4; 
  --j:-12; 
}
.netherite-trim-chainmail-boots {
  /* coordinates of the image */
  --i:-33; 
  --j:-6; 
}
.netherite-trim-chainmail-chestplate {
  /* coordinates of the image */
  --i:-33; 
  --j:-7; 
}
.netherite-trim-chainmail-helmet {
  /* coordinates of the image */
  --i:-33; 
  --j:-9; 
}
.netherite-trim-chainmail-leggings {
  /* coordinates of the image */
  --i:-33; 
  --j:-12; 
}
.netherite-trim-diamond-boots {
  /* coordinates of the image */
  --i:-33; 
  --j:-13; 
}
.netherite-trim-diamond-chestplate {
  /* coordinates of the image */
  --i:-33; 
  --j:-14; 
}
.netherite-trim-diamond-helmet {
  /* coordinates of the image */
  --i:-33; 
  --j:-15; 
}
.netherite-trim-diamond-leggings {
  /* coordinates of the image */
  --i:-33; 
  --j:-16; 
}
.netherite-trim-golden-boots {
  /* coordinates of the image */
  --i:-33; 
  --j:-17; 
}
.netherite-trim-golden-chestplate {
  /* coordinates of the image */
  --i:-33; 
  --j:-18; 
}
.netherite-trim-golden-helmet {
  /* coordinates of the image */
  --i:-33; 
  --j:-19; 
}
.netherite-trim-golden-leggings {
  /* coordinates of the image */
  --i:-33; 
  --j:-20; 
}
.netherite-trim-iron-boots {
  /* coordinates of the image */
  --i:-33; 
  --j:-21; 
}
.netherite-trim-iron-chestplate {
  /* coordinates of the image */
  --i:-33; 
  --j:-27; 
}
.netherite-trim-iron-helmet {
  /* coordinates of the image */
  --i:-33; 
  --j:-28; 
}
.netherite-trim-iron-leggings {
  /* coordinates of the image */
  --i:-33; 
  --j:-29; 
}
.netherite-trim-leather-boots {
  /* coordinates of the image */
  --i:-33; 
  --j:-30; 
}
.netherite-trim-leather-cap {
  /* coordinates of the image */
  --i:-33; 
  --j:-31; 
}
.netherite-trim-leather-pants {
  /* coordinates of the image */
  --i:-34; 
  --j:-0; 
}
.netherite-trim-leather-tunic {
  /* coordinates of the image */
  --i:-34; 
  --j:-1; 
}
.netherite-trim-netherite-boots {
  /* coordinates of the image */
  --i:-34; 
  --j:-2; 
}
.netherite-trim-netherite-chestplate {
  /* coordinates of the image */
  --i:-34; 
  --j:-3; 
}
.netherite-trim-netherite-helmet {
  /* coordinates of the image */
  --i:-34; 
  --j:-4; 
}
.netherite-trim-netherite-leggings {
  /* coordinates of the image */
  --i:-34; 
  --j:-5; 
}
.netherite-trim-turtle-shell {
  /* coordinates of the image */
  --i:-34; 
  --j:-6; 
}
.netherite-upgrade {
  /* coordinates of the image */
  --i:-25; 
  --j:-0; 
}
.netherite-upgrade-smithing-template {
  /* coordinates of the image */
  --i:-25; 
  --j:-0; 
}
.netherrack {
  /* coordinates of the image */
  --i:-105; 
  --j:-26; 
}
.nickel {
  /* coordinates of the image */
  --i:-57; 
  --j:-15; 
}
.nihonium {
  /* coordinates of the image */
  --i:-57; 
  --j:-16; 
}
.niobium {
  /* coordinates of the image */
  --i:-57; 
  --j:-17; 
}
.nitrogen {
  /* coordinates of the image */
  --i:-57; 
  --j:-18; 
}
.nobelium {
  /* coordinates of the image */
  --i:-57; 
  --j:-19; 
}
.noble-gas {
  /* coordinates of the image */
  --i:-2; 
  --j:-7; 
}
.note-block {
  /* coordinates of the image */
  --i:-112; 
  --j:-26; 
}
.oak-boat {
  /* coordinates of the image */
  --i:-19; 
  --j:-24; 
}
.oak-boat-revision-2 {
  /* coordinates of the image */
  --i:-113; 
  --j:-11; 
}
.oak-boat-with-chest {
  /* coordinates of the image */
  --i:-19; 
  --j:-7; 
}
.oak-button {
  /* coordinates of the image */
  --i:-104; 
  --j:-11; 
}
.oak-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-26; 
}
.oak-door-revision-3 {
  /* coordinates of the image */
  --i:-29; 
  --j:-16; 
}
.oak-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-0; 
}
.oak-fence-be {
  /* coordinates of the image */
  --i:-102; 
  --j:-19; 
}
.oak-fence-gate {
  /* coordinates of the image */
  --i:-102; 
  --j:-18; 
}
.oak-fence-gate-be {
  /* coordinates of the image */
  --i:-1; 
  --j:-23; 
}
.oak-fence-gate-revision-1 {
  /* coordinates of the image */
  --i:-50; 
  --j:-19; 
}
.oak-hanging-sign {
  /* coordinates of the image */
  --i:-20; 
  --j:-17; 
}
.oak-leaves {
  /* coordinates of the image */
  --i:-107; 
  --j:-4; 
}
.oak-log {
  /* coordinates of the image */
  --i:-107; 
  --j:-5; 
}
.oak-planks {
  /* coordinates of the image */
  --i:-28; 
  --j:-6; 
}
.oak-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-12; 
}
.oak-pressure-plate-revision-1 {
  /* coordinates of the image */
  --i:-65; 
  --j:-5; 
}
.oak-sapling {
  /* coordinates of the image */
  --i:-107; 
  --j:-6; 
}
.oak-sign {
  /* coordinates of the image */
  --i:-105; 
  --j:-28; 
}
.oak-sign-revision-1 {
  /* coordinates of the image */
  --i:-11; 
  --j:-1; 
}
.oak-slab {
  /* coordinates of the image */
  --i:-102; 
  --j:-20; 
}
.oak-stairs {
  /* coordinates of the image */
  --i:-102; 
  --j:-21; 
}
.oak-stairs-left {
  /* coordinates of the image */
  --i:-70; 
  --j:-20; 
}
.oak-trapdoor {
  /* coordinates of the image */
  --i:-29; 
  --j:-29; 
}
.oak-wood {
  /* coordinates of the image */
  --i:-102; 
  --j:-22; 
}
.oak-wood-button {
  /* coordinates of the image */
  --i:-104; 
  --j:-11; 
}
.oak-wood-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-26; 
}
.oak-wood-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-0; 
}
.oak-wood-fence-gate {
  /* coordinates of the image */
  --i:-102; 
  --j:-18; 
}
.oak-wood-planks {
  /* coordinates of the image */
  --i:-28; 
  --j:-6; 
}
.oak-wood-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-12; 
}
.oak-wood-sign {
  /* coordinates of the image */
  --i:-105; 
  --j:-28; 
}
.oak-wood-slab {
  /* coordinates of the image */
  --i:-28; 
  --j:-7; 
}
.oak-wood-stairs {
  /* coordinates of the image */
  --i:-102; 
  --j:-21; 
}
.oak-wood-trapdoor {
  /* coordinates of the image */
  --i:-29; 
  --j:-29; 
}
.observer {
  /* coordinates of the image */
  --i:-112; 
  --j:-27; 
}
.observer-be {
  /* coordinates of the image */
  --i:-50; 
  --j:-18; 
}
.observer-pe-old {
  /* coordinates of the image */
  --i:-43; 
  --j:-6; 
}
.observer-pre-111-pre1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-6; 
}
.obsidian {
  /* coordinates of the image */
  --i:-105; 
  --j:-9; 
}
.obsidian-boat {
  /* coordinates of the image */
  --i:-40; 
  --j:-27; 
}
.ocean-explorer-map {
  /* coordinates of the image */
  --i:-111; 
  --j:-28; 
}
.ocean-explorer-map-be {
  /* coordinates of the image */
  --i:-3; 
  --j:-28; 
}
.ocelot-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-2; 
}
.ochre-froglight {
  /* coordinates of the image */
  --i:-18; 
  --j:-18; 
}
.ochre-froglight-be {
  /* coordinates of the image */
  --i:-18; 
  --j:-1; 
}
.oganesson {
  /* coordinates of the image */
  --i:-57; 
  --j:-20; 
}
.ominous-banner {
  /* coordinates of the image */
  --i:-77; 
  --j:-3; 
}
.ominous-shield {
  /* coordinates of the image */
  --i:-11; 
  --j:-24; 
}
.orange-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-20; 
}
.orange-banner {
  /* coordinates of the image */
  --i:-23; 
  --j:-27; 
}
.orange-banner-15w14a {
  /* coordinates of the image */
  --i:-15; 
  --j:-1; 
}
.orange-base-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-29; 
}
.orange-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-30; 
}
.orange-base-gradient-banner {
  /* coordinates of the image */
  --i:-90; 
  --j:-31; 
}
.orange-base-indented-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-0; 
}
.orange-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-1; 
}
.orange-beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-10; 
}
.orange-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-12; 
}
.orange-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-18; 
}
.orange-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-18; 
}
.orange-bend-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-2; 
}
.orange-bend-sinister-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-3; 
}
.orange-bordure-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-4; 
}
.orange-bordure-indented-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-5; 
}
.orange-candle {
  /* coordinates of the image */
  --i:-13; 
  --j:-2; 
}
.orange-carpet {
  /* coordinates of the image */
  --i:-50; 
  --j:-30; 
}
.orange-carpet-revision-1 {
  /* coordinates of the image */
  --i:-23; 
  --j:-28; 
}
.orange-chevron-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-6; 
}
.orange-chief-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-7; 
}
.orange-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-8; 
}
.orange-chief-indented-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-9; 
}
.orange-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-10; 
}
.orange-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-11; 
}
.orange-concrete {
  /* coordinates of the image */
  --i:-47; 
  --j:-0; 
}
.orange-concrete-powder {
  /* coordinates of the image */
  --i:-47; 
  --j:-1; 
}
.orange-creeper-charge-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-11; 
}
.orange-cross-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-12; 
}
.orange-dye {
  /* coordinates of the image */
  --i:-98; 
  --j:-29; 
}
.orange-fess-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-13; 
}
.orange-field-masoned-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-14; 
}
.orange-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-15; 
}
.orange-flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-22; 
}
.orange-flower-charge-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-15; 
}
.orange-glazed-terracotta {
  /* coordinates of the image */
  --i:-48; 
  --j:-5; 
}
.orange-glazed-terracotta-revision-1 {
  /* coordinates of the image */
  --i:-47; 
  --j:-2; 
}
.orange-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-13; 
}
.orange-glow-stick {
  /* coordinates of the image */
  --i:-62; 
  --j:-17; 
}
.orange-gradient-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-16; 
}
.orange-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-17; 
}
.orange-jar {
  /* coordinates of the image */
  --i:-60; 
  --j:-4; 
}
.orange-lozenge-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-18; 
}
.orange-pale-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-19; 
}
.orange-pale-dexter-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-20; 
}
.orange-pale-sinister-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-21; 
}
.orange-paly-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-22; 
}
.orange-per-bend-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-23; 
}
.orange-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-24; 
}
.orange-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-25; 
}
.orange-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-26; 
}
.orange-per-fess-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-27; 
}
.orange-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-28; 
}
.orange-per-pale-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-29; 
}
.orange-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-30; 
}
.orange-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-16; 
}
.orange-roundel-banner {
  /* coordinates of the image */
  --i:-91; 
  --j:-31; 
}
.orange-saltire-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-0; 
}
.orange-shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-26; 
}
.orange-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-12; 
}
.orange-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-17; 
}
.orange-skull-charge-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-1; 
}
.orange-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-16; 
}
.orange-sparkler {
  /* coordinates of the image */
  --i:-54; 
  --j:-29; 
}
.orange-sparkler-active {
  /* coordinates of the image */
  --i:-54; 
  --j:-30; 
}
.orange-stained-glass {
  /* coordinates of the image */
  --i:-23; 
  --j:-30; 
}
.orange-stained-glass-pane {
  /* coordinates of the image */
  --i:-23; 
  --j:-31; 
}
.orange-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-63; 
  --j:-1; 
}
.orange-terracotta {
  /* coordinates of the image */
  --i:-23; 
  --j:-29; 
}
.orange-thing-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-2; 
}
.orange-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-28; 
}
.orange-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-12; 
}
.orange-tulip {
  /* coordinates of the image */
  --i:-107; 
  --j:-7; 
}
.orange-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-29; 
}
.orange-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-28; 
}
.orange-wool-revision-2 {
  /* coordinates of the image */
  --i:-24; 
  --j:-0; 
}
.osmium {
  /* coordinates of the image */
  --i:-57; 
  --j:-21; 
}
.other-non-metal {
  /* coordinates of the image */
  --i:-2; 
  --j:-8; 
}
.oxeye-daisy {
  /* coordinates of the image */
  --i:-107; 
  --j:-8; 
}
.oxidized-copper {
  /* coordinates of the image */
  --i:-13; 
  --j:-24; 
}
.oxidized-copper-block {
  /* coordinates of the image */
  --i:-13; 
  --j:-24; 
}
.oxidized-cut-copper {
  /* coordinates of the image */
  --i:-13; 
  --j:-25; 
}
.oxidized-cut-copper-block {
  /* coordinates of the image */
  --i:-13; 
  --j:-25; 
}
.oxidized-cut-copper-slab {
  /* coordinates of the image */
  --i:-13; 
  --j:-26; 
}
.oxidized-cut-copper-stairs {
  /* coordinates of the image */
  --i:-13; 
  --j:-27; 
}
.oxygen {
  /* coordinates of the image */
  --i:-57; 
  --j:-22; 
}
.packed-air {
  /* coordinates of the image */
  --i:-73; 
  --j:-26; 
}
.packed-ice {
  /* coordinates of the image */
  --i:-105; 
  --j:-10; 
}
.packed-mud {
  /* coordinates of the image */
  --i:-18; 
  --j:-19; 
}
.painting {
  /* coordinates of the image */
  --i:-98; 
  --j:-17; 
}
.palladium {
  /* coordinates of the image */
  --i:-57; 
  --j:-23; 
}
.panda-spawn-egg {
  /* coordinates of the image */
  --i:-75; 
  --j:-11; 
}
.paper {
  /* coordinates of the image */
  --i:-110; 
  --j:-2; 
}
.parrot-spawn-egg {
  /* coordinates of the image */
  --i:-48; 
  --j:-7; 
}
.pearlescent-froglight {
  /* coordinates of the image */
  --i:-19; 
  --j:-3; 
}
.pearlescent-froglight-be {
  /* coordinates of the image */
  --i:-18; 
  --j:-2; 
}
.peony {
  /* coordinates of the image */
  --i:-107; 
  --j:-9; 
}
.peony-3ds {
  /* coordinates of the image */
  --i:-49; 
  --j:-3; 
}
.peony-be-revision-2 {
  /* coordinates of the image */
  --i:-49; 
  --j:-3; 
}
.peony-lce-revision-2 {
  /* coordinates of the image */
  --i:-49; 
  --j:-3; 
}
.petrified-oak-slab {
  /* coordinates of the image */
  --i:-28; 
  --j:-7; 
}
.phantom-membrane {
  /* coordinates of the image */
  --i:-54; 
  --j:-1; 
}
.phantom-membrane-revision-1 {
  /* coordinates of the image */
  --i:-3; 
  --j:-8; 
}
.phantom-spawn-egg {
  /* coordinates of the image */
  --i:-61; 
  --j:-21; 
}
.phantom-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-53; 
  --j:-31; 
}
.phosphorus {
  /* coordinates of the image */
  --i:-57; 
  --j:-24; 
}
.photo {
  /* coordinates of the image */
  --i:-19; 
  --j:-11; 
}
.pickaxe-block {
  /* coordinates of the image */
  --i:-39; 
  --j:-15; 
}
.pig-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-3; 
}
.pig-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-14; 
}
.piglin-brute-spawn-egg {
  /* coordinates of the image */
  --i:-8; 
  --j:-5; 
}
.piglin-head {
  /* coordinates of the image */
  --i:-21; 
  --j:-28; 
}
.piglin-spawn-egg {
  /* coordinates of the image */
  --i:-6; 
  --j:-0; 
}
.piglin-spawn-egg-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-12; 
}
.pillager-spawn-egg {
  /* coordinates of the image */
  --i:-75; 
  --j:-12; 
}
.pink-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-21; 
}
.pink-banner {
  /* coordinates of the image */
  --i:-24; 
  --j:-1; 
}
.pink-banner-15w14a {
  /* coordinates of the image */
  --i:-15; 
  --j:-2; 
}
.pink-base-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-3; 
}
.pink-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-4; 
}
.pink-base-gradient-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-5; 
}
.pink-base-indented-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-6; 
}
.pink-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-7; 
}
.pink-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-13; 
}
.pink-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-19; 
}
.pink-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-19; 
}
.pink-bend-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-8; 
}
.pink-bend-sinister-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-9; 
}
.pink-bordure-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-10; 
}
.pink-bordure-indented-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-11; 
}
.pink-candle {
  /* coordinates of the image */
  --i:-13; 
  --j:-3; 
}
.pink-carpet {
  /* coordinates of the image */
  --i:-50; 
  --j:-31; 
}
.pink-carpet-revision-1 {
  /* coordinates of the image */
  --i:-24; 
  --j:-2; 
}
.pink-chevron-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-12; 
}
.pink-chief-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-13; 
}
.pink-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-14; 
}
.pink-chief-indented-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-15; 
}
.pink-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-16; 
}
.pink-concrete {
  /* coordinates of the image */
  --i:-47; 
  --j:-3; 
}
.pink-concrete-powder {
  /* coordinates of the image */
  --i:-47; 
  --j:-4; 
}
.pink-creeper-charge-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-17; 
}
.pink-cross-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-18; 
}
.pink-daisy {
  /* coordinates of the image */
  --i:-17; 
  --j:-7; 
}
.pink-dye {
  /* coordinates of the image */
  --i:-98; 
  --j:-30; 
}
.pink-fess-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-19; 
}
.pink-field-masoned-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-20; 
}
.pink-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-16; 
}
.pink-flower-charge-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-21; 
}
.pink-glazed-terracotta {
  /* coordinates of the image */
  --i:-47; 
  --j:-5; 
}
.pink-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-14; 
}
.pink-glow-stick {
  /* coordinates of the image */
  --i:-62; 
  --j:-18; 
}
.pink-gradient-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-22; 
}
.pink-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-23; 
}
.pink-lozenge-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-24; 
}
.pink-pale-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-25; 
}
.pink-pale-dexter-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-26; 
}
.pink-pale-sinister-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-27; 
}
.pink-paly-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-28; 
}
.pink-per-bend-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-29; 
}
.pink-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-30; 
}
.pink-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-92; 
  --j:-31; 
}
.pink-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-0; 
}
.pink-per-fess-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-1; 
}
.pink-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-2; 
}
.pink-per-pale-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-3; 
}
.pink-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-4; 
}
.pink-petals {
  /* coordinates of the image */
  --i:-37; 
  --j:-13; 
}
.pink-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-17; 
}
.pink-roundel-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-5; 
}
.pink-saltire-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-6; 
}
.pink-shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-27; 
}
.pink-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-13; 
}
.pink-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-18; 
}
.pink-skull-charge-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-7; 
}
.pink-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-17; 
}
.pink-stained-glass {
  /* coordinates of the image */
  --i:-24; 
  --j:-4; 
}
.pink-stained-glass-pane {
  /* coordinates of the image */
  --i:-24; 
  --j:-5; 
}
.pink-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-63; 
  --j:-2; 
}
.pink-terracotta {
  /* coordinates of the image */
  --i:-24; 
  --j:-3; 
}
.pink-thing-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-8; 
}
.pink-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-29; 
}
.pink-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-13; 
}
.pink-tulip {
  /* coordinates of the image */
  --i:-107; 
  --j:-10; 
}
.pink-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-30; 
}
.pink-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-29; 
}
.pink-wool-revision-2 {
  /* coordinates of the image */
  --i:-24; 
  --j:-6; 
}
.piston {
  /* coordinates of the image */
  --i:-104; 
  --j:-13; 
}
.piston-head-model {
  /* coordinates of the image */
  --i:-41; 
  --j:-3; 
}
.pitcher-plant {
  /* coordinates of the image */
  --i:-37; 
  --j:-27; 
}
.pitcher-pod {
  /* coordinates of the image */
  --i:-37; 
  --j:-28; 
}
.place-block {
  /* coordinates of the image */
  --i:-39; 
  --j:-16; 
}
.placeholder-texture {
  /* coordinates of the image */
  --i:-41; 
  --j:-4; 
}
.plains-village-map {
  /* coordinates of the image */
  --i:-41; 
  --j:-13; 
}
.plains-village-map-be {
  /* coordinates of the image */
  --i:-41; 
  --j:-14; 
}
.platinum {
  /* coordinates of the image */
  --i:-57; 
  --j:-25; 
}
.player-head {
  /* coordinates of the image */
  --i:-30; 
  --j:-5; 
}
.plenty-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-15; 
}
.plumbum {
  /* coordinates of the image */
  --i:-57; 
  --j:-1; 
}
.plutonium {
  /* coordinates of the image */
  --i:-57; 
  --j:-26; 
}
.podzol {
  /* coordinates of the image */
  --i:-105; 
  --j:-11; 
}
.pointed-dripstone {
  /* coordinates of the image */
  --i:-13; 
  --j:-19; 
}
.pointed-dripstone-be {
  /* coordinates of the image */
  --i:-14; 
  --j:-10; 
}
.poisonous-potato {
  /* coordinates of the image */
  --i:-100; 
  --j:-8; 
}
.polar-bear-spawn-egg {
  /* coordinates of the image */
  --i:-42; 
  --j:-30; 
}
.polished-andesite {
  /* coordinates of the image */
  --i:-28; 
  --j:-10; 
}
.polished-andesite-slab {
  /* coordinates of the image */
  --i:-102; 
  --j:-23; 
}
.polished-andesite-stairs {
  /* coordinates of the image */
  --i:-102; 
  --j:-24; 
}
.polished-basalt {
  /* coordinates of the image */
  --i:-6; 
  --j:-13; 
}
.polished-blackstone {
  /* coordinates of the image */
  --i:-8; 
  --j:-17; 
}
.polished-blackstone-brick-slab {
  /* coordinates of the image */
  --i:-8; 
  --j:-22; 
}
.polished-blackstone-brick-stairs {
  /* coordinates of the image */
  --i:-8; 
  --j:-23; 
}
.polished-blackstone-brick-wall {
  /* coordinates of the image */
  --i:-8; 
  --j:-24; 
}
.polished-blackstone-brick-wall-be {
  /* coordinates of the image */
  --i:-12; 
  --j:-2; 
}
.polished-blackstone-bricks {
  /* coordinates of the image */
  --i:-8; 
  --j:-18; 
}
.polished-blackstone-button {
  /* coordinates of the image */
  --i:-8; 
  --j:-28; 
}
.polished-blackstone-pressure-plate {
  /* coordinates of the image */
  --i:-8; 
  --j:-29; 
}
.polished-blackstone-slab {
  /* coordinates of the image */
  --i:-8; 
  --j:-25; 
}
.polished-blackstone-stairs {
  /* coordinates of the image */
  --i:-8; 
  --j:-26; 
}
.polished-blackstone-wall {
  /* coordinates of the image */
  --i:-8; 
  --j:-27; 
}
.polished-blackstone-wall-be {
  /* coordinates of the image */
  --i:-12; 
  --j:-3; 
}
.polished-deepslate {
  /* coordinates of the image */
  --i:-15; 
  --j:-20; 
}
.polished-deepslate-slab {
  /* coordinates of the image */
  --i:-15; 
  --j:-23; 
}
.polished-deepslate-stairs {
  /* coordinates of the image */
  --i:-15; 
  --j:-24; 
}
.polished-deepslate-wall {
  /* coordinates of the image */
  --i:-15; 
  --j:-21; 
}
.polished-deepslate-wall-be {
  /* coordinates of the image */
  --i:-17; 
  --j:-17; 
}
.polished-diorite {
  /* coordinates of the image */
  --i:-28; 
  --j:-11; 
}
.polished-diorite-slab {
  /* coordinates of the image */
  --i:-102; 
  --j:-25; 
}
.polished-diorite-stairs {
  /* coordinates of the image */
  --i:-102; 
  --j:-26; 
}
.polished-granite {
  /* coordinates of the image */
  --i:-28; 
  --j:-12; 
}
.polished-granite-slab {
  /* coordinates of the image */
  --i:-75; 
  --j:-29; 
}
.polished-granite-stairs {
  /* coordinates of the image */
  --i:-75; 
  --j:-30; 
}
.polonium {
  /* coordinates of the image */
  --i:-57; 
  --j:-27; 
}
.polyethylene {
  /* coordinates of the image */
  --i:-60; 
  --j:-1; 
}
.popped-chorus-fruit {
  /* coordinates of the image */
  --i:-110; 
  --j:-3; 
}
.poppy {
  /* coordinates of the image */
  --i:-107; 
  --j:-11; 
}
.portal {
  /* coordinates of the image */
  --i:-31; 
  --j:-18; 
}
.portfolio {
  /* coordinates of the image */
  --i:-49; 
  --j:-25; 
}
.post-transition-metal {
  /* coordinates of the image */
  --i:-2; 
  --j:-9; 
}
.poster {
  /* coordinates of the image */
  --i:-49; 
  --j:-26; 
}
.potassium {
  /* coordinates of the image */
  --i:-56; 
  --j:-29; 
}
.potassium-chloride {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.potassium-iodide {
  /* coordinates of the image */
  --i:-59; 
  --j:-1; 
}
.potato {
  /* coordinates of the image */
  --i:-100; 
  --j:-9; 
}
.potato-revision-1 {
  /* coordinates of the image */
  --i:-3; 
  --j:-31; 
}
.potato-revision-2 {
  /* coordinates of the image */
  --i:-4; 
  --j:-0; 
}
.potion-of-big {
  /* coordinates of the image */
  --i:-40; 
  --j:-1; 
}
.potion-of-decay {
  /* coordinates of the image */
  --i:-43; 
  --j:-25; 
}
.potion-of-fire-resistance {
  /* coordinates of the image */
  --i:-107; 
  --j:-25; 
}
.potion-of-fire-resistance-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-5; 
}
.potion-of-harming {
  /* coordinates of the image */
  --i:-107; 
  --j:-26; 
}
.potion-of-harming-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-6; 
}
.potion-of-healing {
  /* coordinates of the image */
  --i:-107; 
  --j:-27; 
}
.potion-of-healing-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-7; 
}
.potion-of-invisibility {
  /* coordinates of the image */
  --i:-107; 
  --j:-28; 
}
.potion-of-invisibility-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-8; 
}
.potion-of-leaping {
  /* coordinates of the image */
  --i:-107; 
  --j:-29; 
}
.potion-of-leaping-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-9; 
}
.potion-of-levitation {
  /* coordinates of the image */
  --i:-3; 
  --j:-17; 
}
.potion-of-luck {
  /* coordinates of the image */
  --i:-107; 
  --j:-30; 
}
.potion-of-luck-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-10; 
}
.potion-of-night-vision {
  /* coordinates of the image */
  --i:-107; 
  --j:-31; 
}
.potion-of-night-vision-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-11; 
}
.potion-of-poison {
  /* coordinates of the image */
  --i:-108; 
  --j:-0; 
}
.potion-of-poison-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-12; 
}
.potion-of-regeneration {
  /* coordinates of the image */
  --i:-108; 
  --j:-1; 
}
.potion-of-regeneration-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-13; 
}
.potion-of-slow-falling {
  /* coordinates of the image */
  --i:-108; 
  --j:-2; 
}
.potion-of-slow-falling-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-14; 
}
.potion-of-slowness {
  /* coordinates of the image */
  --i:-108; 
  --j:-3; 
}
.potion-of-slowness-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-15; 
}
.potion-of-small {
  /* coordinates of the image */
  --i:-40; 
  --j:-2; 
}
.potion-of-strength {
  /* coordinates of the image */
  --i:-108; 
  --j:-4; 
}
.potion-of-strength-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-16; 
}
.potion-of-swiftness {
  /* coordinates of the image */
  --i:-108; 
  --j:-5; 
}
.potion-of-swiftness-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-17; 
}
.potion-of-the-turtle-master {
  /* coordinates of the image */
  --i:-108; 
  --j:-6; 
}
.potion-of-the-turtle-master-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-18; 
}
.potion-of-water-breathing {
  /* coordinates of the image */
  --i:-108; 
  --j:-7; 
}
.potion-of-water-breathing-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-19; 
}
.potion-of-weakness {
  /* coordinates of the image */
  --i:-108; 
  --j:-8; 
}
.powder-snow {
  /* coordinates of the image */
  --i:-12; 
  --j:-6; 
}
.powder-snow-bucket {
  /* coordinates of the image */
  --i:-13; 
  --j:-17; 
}
.powered-rail {
  /* coordinates of the image */
  --i:-104; 
  --j:-14; 
}
.praseodymium {
  /* coordinates of the image */
  --i:-57; 
  --j:-28; 
}
.prismarine {
  /* coordinates of the image */
  --i:-120; 
  --j:-1; 
}
.prismarine-slab {
  /* coordinates of the image */
  --i:-52; 
  --j:-1; 
}
.prismarine-brick-stairs {
  /* coordinates of the image */
  --i:-3; 
  --j:-14; 
}
.prismarine-stairs {
  /* coordinates of the image */
  --i:-51; 
  --j:-30; 
}
.prismarine-bricks {
  /* coordinates of the image */
  --i:-105; 
  --j:-12; 
}
.prismarine-brick-slab {
  /* coordinates of the image */
  --i:-102; 
  --j:-27; 
}
.prismarine-crystals {
  /* coordinates of the image */
  --i:-110; 
  --j:-4; 
}
.prismarine-shard {
  /* coordinates of the image */
  --i:-110; 
  --j:-5; 
}
.prismarine-wall {
  /* coordinates of the image */
  --i:-3; 
  --j:-0; 
}
.prismarine-wall-be {
  /* coordinates of the image */
  --i:-0; 
  --j:-27; 
}
.prize-pottery-sherd {
  /* coordinates of the image */
  --i:-37; 
  --j:-18; 
}
.promethium {
  /* coordinates of the image */
  --i:-57; 
  --j:-29; 
}
.protactinium {
  /* coordinates of the image */
  --i:-57; 
  --j:-30; 
}
.protoactinium {
  /* coordinates of the image */
  --i:-57; 
  --j:-30; 
}
.pufferfish {
  /* coordinates of the image */
  --i:-52; 
  --j:-27; 
}
.pufferfish-3ds {
  /* coordinates of the image */
  --i:-26; 
  --j:-4; 
}
.pufferfish-revision-2 {
  /* coordinates of the image */
  --i:-26; 
  --j:-4; 
}
.pufferfish-spawn-egg {
  /* coordinates of the image */
  --i:-53; 
  --j:-1; 
}
.pufferfish-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-61; 
  --j:-16; 
}
.pumpkin {
  /* coordinates of the image */
  --i:-107; 
  --j:-12; 
}
.pumpkin-pie {
  /* coordinates of the image */
  --i:-100; 
  --j:-10; 
}
.pumpkin-seeds {
  /* coordinates of the image */
  --i:-33; 
  --j:-4; 
}
.purple-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-22; 
}
.purple-banner {
  /* coordinates of the image */
  --i:-24; 
  --j:-7; 
}
.purple-banner-15w14a {
  /* coordinates of the image */
  --i:-15; 
  --j:-3; 
}
.purple-base-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-9; 
}
.purple-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-10; 
}
.purple-base-gradient-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-11; 
}
.purple-base-indented-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-12; 
}
.purple-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-13; 
}
.purple-beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-11; 
}
.purple-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-14; 
}
.purple-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-20; 
}
.purple-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-20; 
}
.purple-bend-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-14; 
}
.purple-bend-sinister-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-15; 
}
.purple-bordure-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-16; 
}
.purple-bordure-indented-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-17; 
}
.purple-candle {
  /* coordinates of the image */
  --i:-13; 
  --j:-4; 
}
.purple-carpet {
  /* coordinates of the image */
  --i:-51; 
  --j:-0; 
}
.purple-carpet-revision-1 {
  /* coordinates of the image */
  --i:-24; 
  --j:-8; 
}
.purple-chevron-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-18; 
}
.purple-chief-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-19; 
}
.purple-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-20; 
}
.purple-chief-indented-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-21; 
}
.purple-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-22; 
}
.purple-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-16; 
}
.purple-concrete {
  /* coordinates of the image */
  --i:-47; 
  --j:-6; 
}
.purple-concrete-powder {
  /* coordinates of the image */
  --i:-47; 
  --j:-7; 
}
.purple-creeper-charge-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-23; 
}
.purple-cross-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-24; 
}
.purple-dye {
  /* coordinates of the image */
  --i:-98; 
  --j:-31; 
}
.purple-fess-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-25; 
}
.purple-field-masoned-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-26; 
}
.purple-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-17; 
}
.purple-flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-23; 
}
.purple-flower-charge-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-27; 
}
.purple-glazed-terracotta {
  /* coordinates of the image */
  --i:-47; 
  --j:-8; 
}
.purple-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-15; 
}
.purple-glow-stick {
  /* coordinates of the image */
  --i:-62; 
  --j:-19; 
}
.purple-gradient-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-28; 
}
.purple-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-29; 
}
.purple-jar {
  /* coordinates of the image */
  --i:-60; 
  --j:-5; 
}
.purple-lozenge-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-30; 
}
.purple-pale-banner {
  /* coordinates of the image */
  --i:-93; 
  --j:-31; 
}
.purple-pale-dexter-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-0; 
}
.purple-pale-sinister-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-1; 
}
.purple-paly-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-2; 
}
.purple-per-bend-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-3; 
}
.purple-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-4; 
}
.purple-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-5; 
}
.purple-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-6; 
}
.purple-per-fess-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-7; 
}
.purple-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-8; 
}
.purple-per-pale-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-9; 
}
.purple-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-10; 
}
.purple-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-18; 
}
.purple-roundel-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-11; 
}
.purple-saltire-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-12; 
}
.purple-shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-28; 
}
.purple-shulker-box {
  /* coordinates of the image */
  --i:-44; 
  --j:-19; 
}
.purple-skull-charge-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-13; 
}
.purple-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-18; 
}
.purple-sparkler {
  /* coordinates of the image */
  --i:-54; 
  --j:-31; 
}
.purple-sparkler-active {
  /* coordinates of the image */
  --i:-55; 
  --j:-0; 
}
.purple-stained-glass {
  /* coordinates of the image */
  --i:-24; 
  --j:-10; 
}
.purple-stained-glass-pane {
  /* coordinates of the image */
  --i:-24; 
  --j:-11; 
}
.purple-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-63; 
  --j:-3; 
}
.purple-terracotta {
  /* coordinates of the image */
  --i:-24; 
  --j:-9; 
}
.purple-thing-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-14; 
}
.purple-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-30; 
}
.purple-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-14; 
}
.purple-torch {
  /* coordinates of the image */
  --i:-55; 
  --j:-1; 
}
.purple-wood-planks {
  /* coordinates of the image */
  --i:-7; 
  --j:-31; 
}
.purple-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-30; 
}
.purple-wool-revision-2 {
  /* coordinates of the image */
  --i:-24; 
  --j:-12; 
}
.purpur-block {
  /* coordinates of the image */
  --i:-28; 
  --j:-13; 
}
.purpur-pillar {
  /* coordinates of the image */
  --i:-28; 
  --j:-14; 
}
.purpur-slab {
  /* coordinates of the image */
  --i:-102; 
  --j:-28; 
}
.purpur-stairs {
  /* coordinates of the image */
  --i:-102; 
  --j:-29; 
}
.quartz-bricks {
  /* coordinates of the image */
  --i:-8; 
  --j:-31; 
}
.quartz-pillar {
  /* coordinates of the image */
  --i:-28; 
  --j:-9; 
}
.quartz-slab {
  /* coordinates of the image */
  --i:-102; 
  --j:-30; 
}
.quartz-stairs {
  /* coordinates of the image */
  --i:-102; 
  --j:-31; 
}
.quartz-trim-chainmail-boots {
  /* coordinates of the image */
  --i:-34; 
  --j:-7; 
}
.quartz-trim-chainmail-chestplate {
  /* coordinates of the image */
  --i:-34; 
  --j:-9; 
}
.quartz-trim-chainmail-helmet {
  /* coordinates of the image */
  --i:-34; 
  --j:-10; 
}
.quartz-trim-chainmail-leggings {
  /* coordinates of the image */
  --i:-34; 
  --j:-12; 
}
.quartz-trim-diamond-boots {
  /* coordinates of the image */
  --i:-34; 
  --j:-13; 
}
.quartz-trim-diamond-chestplate {
  /* coordinates of the image */
  --i:-34; 
  --j:-14; 
}
.quartz-trim-diamond-helmet {
  /* coordinates of the image */
  --i:-34; 
  --j:-15; 
}
.quartz-trim-diamond-leggings {
  /* coordinates of the image */
  --i:-34; 
  --j:-16; 
}
.quartz-trim-golden-boots {
  /* coordinates of the image */
  --i:-34; 
  --j:-17; 
}
.quartz-trim-golden-chestplate {
  /* coordinates of the image */
  --i:-34; 
  --j:-18; 
}
.quartz-trim-golden-helmet {
  /* coordinates of the image */
  --i:-34; 
  --j:-19; 
}
.quartz-trim-golden-leggings {
  /* coordinates of the image */
  --i:-34; 
  --j:-20; 
}
.quartz-trim-iron-boots {
  /* coordinates of the image */
  --i:-34; 
  --j:-21; 
}
.quartz-trim-iron-chestplate {
  /* coordinates of the image */
  --i:-34; 
  --j:-22; 
}
.quartz-trim-iron-helmet {
  /* coordinates of the image */
  --i:-34; 
  --j:-23; 
}
.quartz-trim-iron-leggings {
  /* coordinates of the image */
  --i:-34; 
  --j:-24; 
}
.quartz-trim-leather-boots {
  /* coordinates of the image */
  --i:-34; 
  --j:-25; 
}
.quartz-trim-leather-cap {
  /* coordinates of the image */
  --i:-34; 
  --j:-26; 
}
.quartz-trim-leather-pants {
  /* coordinates of the image */
  --i:-34; 
  --j:-27; 
}
.quartz-trim-leather-tunic {
  /* coordinates of the image */
  --i:-34; 
  --j:-28; 
}
.quartz-trim-netherite-boots {
  /* coordinates of the image */
  --i:-34; 
  --j:-29; 
}
.quartz-trim-netherite-chestplate {
  /* coordinates of the image */
  --i:-34; 
  --j:-31; 
}
.quartz-trim-netherite-helmet {
  /* coordinates of the image */
  --i:-35; 
  --j:-0; 
}
.quartz-trim-netherite-leggings {
  /* coordinates of the image */
  --i:-35; 
  --j:-1; 
}
.quartz-trim-turtle-shell {
  /* coordinates of the image */
  --i:-35; 
  --j:-2; 
}
.quiver {
  /* coordinates of the image */
  --i:-65; 
  --j:-7; 
}
.rabbit-hide {
  /* coordinates of the image */
  --i:-110; 
  --j:-6; 
}
.rabbit-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-4; 
}
.rabbit-stew {
  /* coordinates of the image */
  --i:-100; 
  --j:-11; 
}
.radium {
  /* coordinates of the image */
  --i:-57; 
  --j:-31; 
}
.radon {
  /* coordinates of the image */
  --i:-58; 
  --j:-0; 
}
.rail {
  /* coordinates of the image */
  --i:-104; 
  --j:-15; 
}
.rainbow-bed {
  /* coordinates of the image */
  --i:-113; 
  --j:-29; 
}
.rainbow-carpet {
  /* coordinates of the image */
  --i:-113; 
  --j:-30; 
}
.rainbow-wool {
  /* coordinates of the image */
  --i:-113; 
  --j:-31; 
}
.raiser-armor-trim {
  /* coordinates of the image */
  --i:-37; 
  --j:-30; 
}
.raiser-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-37; 
  --j:-30; 
}
.ravager-spawn-egg {
  /* coordinates of the image */
  --i:-75; 
  --j:-10; 
}
.raw-beef {
  /* coordinates of the image */
  --i:-100; 
  --j:-12; 
}
.raw-chicken {
  /* coordinates of the image */
  --i:-100; 
  --j:-13; 
}
.raw-cod {
  /* coordinates of the image */
  --i:-52; 
  --j:-28; 
}
.raw-copper {
  /* coordinates of the image */
  --i:-16; 
  --j:-29; 
}
.raw-fish {
  /* coordinates of the image */
  --i:-26; 
  --j:-9; 
}
.raw-fish-revision-1 {
  /* coordinates of the image */
  --i:-26; 
  --j:-9; 
}
.raw-gold {
  /* coordinates of the image */
  --i:-16; 
  --j:-30; 
}
.raw-iron {
  /* coordinates of the image */
  --i:-16; 
  --j:-31; 
}
.raw-mutton {
  /* coordinates of the image */
  --i:-100; 
  --j:-14; 
}
.raw-porkchop {
  /* coordinates of the image */
  --i:-100; 
  --j:-15; 
}
.raw-rabbit {
  /* coordinates of the image */
  --i:-100; 
  --j:-16; 
}
.raw-salmon {
  /* coordinates of the image */
  --i:-52; 
  --j:-29; 
}
.raw-salmon-3ds {
  /* coordinates of the image */
  --i:-26; 
  --j:-13; 
}
.raw-salmon-revision-1 {
  /* coordinates of the image */
  --i:-26; 
  --j:-13; 
}
.reality-vision {
  /* coordinates of the image */
  --i:-51; 
  --j:-5; 
}
.recipe-book {
  /* coordinates of the image */
  --i:-12; 
  --j:-0; 
}
.recovery-compass {
  /* coordinates of the image */
  --i:-19; 
  --j:-14; 
}
.red-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-23; 
}
.red-banner {
  /* coordinates of the image */
  --i:-24; 
  --j:-13; 
}
.red-banner-15w14a {
  /* coordinates of the image */
  --i:-15; 
  --j:-4; 
}
.red-base-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-15; 
}
.red-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-16; 
}
.red-base-gradient-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-17; 
}
.red-base-indented-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-18; 
}
.red-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-19; 
}
.red-beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-12; 
}
.red-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-15; 
}
.red-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-21; 
}
.red-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-21; 
}
.red-bed-revision-1 {
  /* coordinates of the image */
  --i:-48; 
  --j:-21; 
}
.red-bend-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-20; 
}
.red-bend-sinister-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-21; 
}
.red-bordure-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-23; 
}
.red-bordure-indented-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-22; 
}
.red-candle {
  /* coordinates of the image */
  --i:-13; 
  --j:-5; 
}
.red-carpet {
  /* coordinates of the image */
  --i:-51; 
  --j:-1; 
}
.red-carpet-revision-1 {
  /* coordinates of the image */
  --i:-24; 
  --j:-14; 
}
.red-chevron-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-24; 
}
.red-chief-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-25; 
}
.red-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-26; 
}
.red-chief-indented-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-27; 
}
.red-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-28; 
}
.red-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-14; 
}
.red-concrete {
  /* coordinates of the image */
  --i:-47; 
  --j:-9; 
}
.red-concrete-powder {
  /* coordinates of the image */
  --i:-47; 
  --j:-10; 
}
.red-creeper-charge-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-29; 
}
.red-cross-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-30; 
}
.red-dye {
  /* coordinates of the image */
  --i:-99; 
  --j:-0; 
}
.red-fess-banner {
  /* coordinates of the image */
  --i:-94; 
  --j:-31; 
}
.red-field-masoned-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-0; 
}
.red-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-18; 
}
.red-flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-24; 
}
.red-flower-charge-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-1; 
}
.red-glazed-terracotta {
  /* coordinates of the image */
  --i:-47; 
  --j:-11; 
}
.red-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-16; 
}
.red-glow-stick {
  /* coordinates of the image */
  --i:-62; 
  --j:-20; 
}
.red-gradient-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-2; 
}
.red-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-3; 
}
.red-jar {
  /* coordinates of the image */
  --i:-60; 
  --j:-6; 
}
.red-key {
  /* coordinates of the image */
  --i:-14; 
  --j:-3; 
}
.red-lozenge-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-4; 
}
.red-mushroom {
  /* coordinates of the image */
  --i:-107; 
  --j:-14; 
}
.red-mushroom-block {
  /* coordinates of the image */
  --i:-107; 
  --j:-13; 
}
.red-nether-brick-slab {
  /* coordinates of the image */
  --i:-103; 
  --j:-0; 
}
.red-nether-brick-stairs {
  /* coordinates of the image */
  --i:-103; 
  --j:-1; 
}
.red-nether-brick-wall {
  /* coordinates of the image */
  --i:-103; 
  --j:-2; 
}
.red-nether-brick-wall-be {
  /* coordinates of the image */
  --i:-0; 
  --j:-29; 
}
.red-nether-bricks {
  /* coordinates of the image */
  --i:-42; 
  --j:-22; 
}
.red-pale-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-5; 
}
.red-pale-dexter-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-6; 
}
.red-pale-sinister-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-7; 
}
.red-paly-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-8; 
}
.red-per-bend-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-9; 
}
.red-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-10; 
}
.red-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-11; 
}
.red-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-12; 
}
.red-per-fess-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-13; 
}
.red-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-14; 
}
.red-per-pale-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-15; 
}
.red-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-16; 
}
.red-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-19; 
}
.red-roundel-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-17; 
}
.red-saltire-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-18; 
}
.red-sand {
  /* coordinates of the image */
  --i:-105; 
  --j:-13; 
}
.red-sandstone {
  /* coordinates of the image */
  --i:-105; 
  --j:-14; 
}
.red-sandstone-slab {
  /* coordinates of the image */
  --i:-103; 
  --j:-3; 
}
.red-sandstone-stairs {
  /* coordinates of the image */
  --i:-103; 
  --j:-4; 
}
.red-sandstone-wall {
  /* coordinates of the image */
  --i:-103; 
  --j:-5; 
}
.red-sandstone-wall-be {
  /* coordinates of the image */
  --i:-0; 
  --j:-30; 
}
.red-shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-29; 
}
.red-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-15; 
}
.red-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-20; 
}
.red-skull-charge-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-19; 
}
.red-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-19; 
}
.red-sparkler {
  /* coordinates of the image */
  --i:-55; 
  --j:-2; 
}
.red-sparkler-active {
  /* coordinates of the image */
  --i:-55; 
  --j:-3; 
}
.red-stained-glass {
  /* coordinates of the image */
  --i:-24; 
  --j:-16; 
}
.red-stained-glass-pane {
  /* coordinates of the image */
  --i:-24; 
  --j:-17; 
}
.red-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-63; 
  --j:-4; 
}
.red-terracotta {
  /* coordinates of the image */
  --i:-24; 
  --j:-15; 
}
.red-thing-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-20; 
}
.red-tinted-glass {
  /* coordinates of the image */
  --i:-40; 
  --j:-31; 
}
.red-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-15; 
}
.red-torch {
  /* coordinates of the image */
  --i:-55; 
  --j:-4; 
}
.red-tulip {
  /* coordinates of the image */
  --i:-107; 
  --j:-15; 
}
.red-wood-planks {
  /* coordinates of the image */
  --i:-8; 
  --j:-0; 
}
.red-wool {
  /* coordinates of the image */
  --i:-47; 
  --j:-31; 
}
.red-wool-revision-2 {
  /* coordinates of the image */
  --i:-24; 
  --j:-18; 
}
.redstone {
  /* coordinates of the image */
  --i:-110; 
  --j:-7; 
}
.redstone-comparator {
  /* coordinates of the image */
  --i:-104; 
  --j:-16; 
}
.redstone-dust {
  /* coordinates of the image */
  --i:-110; 
  --j:-7; 
}
.redstone-lamp {
  /* coordinates of the image */
  --i:-104; 
  --j:-17; 
}
.redstone-lamp-post-flip {
  /* coordinates of the image */
  --i:-11; 
  --j:-28; 
}
.redstone-ore {
  /* coordinates of the image */
  --i:-106; 
  --j:-4; 
}
.redstone-repeater {
  /* coordinates of the image */
  --i:-104; 
  --j:-18; 
}
.redstone-revision-1 {
  /* coordinates of the image */
  --i:-35; 
  --j:-17; 
}
.redstone-torch {
  /* coordinates of the image */
  --i:-104; 
  --j:-19; 
}
.redstone-trim-chainmail-boots {
  /* coordinates of the image */
  --i:-35; 
  --j:-3; 
}
.redstone-trim-chainmail-chestplate {
  /* coordinates of the image */
  --i:-35; 
  --j:-4; 
}
.redstone-trim-chainmail-helmet {
  /* coordinates of the image */
  --i:-35; 
  --j:-5; 
}
.redstone-trim-chainmail-leggings {
  /* coordinates of the image */
  --i:-35; 
  --j:-6; 
}
.redstone-trim-diamond-boots {
  /* coordinates of the image */
  --i:-35; 
  --j:-7; 
}
.redstone-trim-diamond-chestplate {
  /* coordinates of the image */
  --i:-35; 
  --j:-8; 
}
.redstone-trim-diamond-helmet {
  /* coordinates of the image */
  --i:-35; 
  --j:-9; 
}
.redstone-trim-diamond-leggings {
  /* coordinates of the image */
  --i:-35; 
  --j:-10; 
}
.redstone-trim-golden-boots {
  /* coordinates of the image */
  --i:-35; 
  --j:-11; 
}
.redstone-trim-golden-chestplate {
  /* coordinates of the image */
  --i:-35; 
  --j:-12; 
}
.redstone-trim-golden-helmet {
  /* coordinates of the image */
  --i:-35; 
  --j:-13; 
}
.redstone-trim-golden-leggings {
  /* coordinates of the image */
  --i:-35; 
  --j:-14; 
}
.redstone-trim-iron-boots {
  /* coordinates of the image */
  --i:-35; 
  --j:-15; 
}
.redstone-trim-iron-chestplate {
  /* coordinates of the image */
  --i:-35; 
  --j:-16; 
}
.redstone-trim-iron-helmet {
  /* coordinates of the image */
  --i:-35; 
  --j:-18; 
}
.redstone-trim-iron-leggings {
  /* coordinates of the image */
  --i:-35; 
  --j:-20; 
}
.redstone-trim-leather-boots {
  /* coordinates of the image */
  --i:-36; 
  --j:-17; 
}
.redstone-trim-leather-cap {
  /* coordinates of the image */
  --i:-36; 
  --j:-18; 
}
.redstone-trim-leather-pants {
  /* coordinates of the image */
  --i:-36; 
  --j:-19; 
}
.redstone-trim-leather-tunic {
  /* coordinates of the image */
  --i:-36; 
  --j:-20; 
}
.redstone-trim-netherite-boots {
  /* coordinates of the image */
  --i:-36; 
  --j:-21; 
}
.redstone-trim-netherite-chestplate {
  /* coordinates of the image */
  --i:-36; 
  --j:-22; 
}
.redstone-trim-netherite-helmet {
  /* coordinates of the image */
  --i:-36; 
  --j:-23; 
}
.redstone-trim-netherite-leggings {
  /* coordinates of the image */
  --i:-36; 
  --j:-24; 
}
.redstone-trim-turtle-shell {
  /* coordinates of the image */
  --i:-36; 
  --j:-25; 
}
.reinforced-deepslate {
  /* coordinates of the image */
  --i:-18; 
  --j:-5; 
}
.respawn-anchor {
  /* coordinates of the image */
  --i:-6; 
  --j:-14; 
}
.rhenium {
  /* coordinates of the image */
  --i:-58; 
  --j:-1; 
}
.rhodium {
  /* coordinates of the image */
  --i:-58; 
  --j:-2; 
}
.rib-armor-trim {
  /* coordinates of the image */
  --i:-25; 
  --j:-1; 
}
.rib-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-25; 
  --j:-1; 
}
.right-curly {
  /* coordinates of the image */
  --i:-40; 
  --j:-3; 
}
.right-square {
  /* coordinates of the image */
  --i:-40; 
  --j:-4; 
}
.roentgenium {
  /* coordinates of the image */
  --i:-58; 
  --j:-3; 
}
.rooted-dirt {
  /* coordinates of the image */
  --i:-14; 
  --j:-14; 
}
.rose {
  /* coordinates of the image */
  --i:-33; 
  --j:-8; 
}
.rose-be {
  /* coordinates of the image */
  --i:-33; 
  --j:-22; 
}
.rose-bush {
  /* coordinates of the image */
  --i:-107; 
  --j:-16; 
}
.rose-bush-3ds {
  /* coordinates of the image */
  --i:-49; 
  --j:-4; 
}
.rose-bush-be-revision-2 {
  /* coordinates of the image */
  --i:-49; 
  --j:-4; 
}
.rose-bush-lce-revision-2 {
  /* coordinates of the image */
  --i:-49; 
  --j:-4; 
}
.rose-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-12; 
}
.rose-red {
  /* coordinates of the image */
  --i:-21; 
  --j:-30; 
}
.rotten-flesh {
  /* coordinates of the image */
  --i:-100; 
  --j:-17; 
}
.rubidium {
  /* coordinates of the image */
  --i:-58; 
  --j:-4; 
}
.ruby {
  /* coordinates of the image */
  --i:-41; 
  --j:-0; 
}
.ruby-ore {
  /* coordinates of the image */
  --i:-70; 
  --j:-1; 
}
.ruthenium {
  /* coordinates of the image */
  --i:-58; 
  --j:-5; 
}
.rutherfordium {
  /* coordinates of the image */
  --i:-58; 
  --j:-6; 
}
.saddle {
  /* coordinates of the image */
  --i:-111; 
  --j:-29; 
}
.salmon-spawn-egg {
  /* coordinates of the image */
  --i:-53; 
  --j:-2; 
}
.salmon-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-61; 
  --j:-17; 
}
.salt {
  /* coordinates of the image */
  --i:-55; 
  --j:-5; 
}
.samarium {
  /* coordinates of the image */
  --i:-58; 
  --j:-7; 
}
.sand {
  /* coordinates of the image */
  --i:-105; 
  --j:-15; 
}
.sandstone {
  /* coordinates of the image */
  --i:-105; 
  --j:-16; 
}
.sandstone-slab {
  /* coordinates of the image */
  --i:-103; 
  --j:-6; 
}
.sandstone-stairs {
  /* coordinates of the image */
  --i:-103; 
  --j:-7; 
}
.sandstone-stairs-left {
  /* coordinates of the image */
  --i:-70; 
  --j:-21; 
}
.sandstone-wall {
  /* coordinates of the image */
  --i:-103; 
  --j:-8; 
}
.sandstone-wall-be {
  /* coordinates of the image */
  --i:-0; 
  --j:-31; 
}
.savanna-village-map {
  /* coordinates of the image */
  --i:-41; 
  --j:-13; 
}
.savanna-village-map-be {
  /* coordinates of the image */
  --i:-41; 
  --j:-14; 
}
.scaffolding {
  /* coordinates of the image */
  --i:-75; 
  --j:-13; 
}
.scaffolding-be {
  /* coordinates of the image */
  --i:-33; 
  --j:-11; 
}
.scandium {
  /* coordinates of the image */
  --i:-58; 
  --j:-8; 
}
.sculk {
  /* coordinates of the image */
  --i:-17; 
  --j:-11; 
}
.sculk-block {
  /* coordinates of the image */
  --i:-17; 
  --j:-11; 
}
.sculk-catalyst {
  /* coordinates of the image */
  --i:-17; 
  --j:-12; 
}
.sculk-catalyst-be {
  /* coordinates of the image */
  --i:-19; 
  --j:-19; 
}
.sculk-sensor {
  /* coordinates of the image */
  --i:-13; 
  --j:-22; 
}
.sculk-sensor-be {
  /* coordinates of the image */
  --i:-14; 
  --j:-9; 
}
.sculk-shrieker {
  /* coordinates of the image */
  --i:-19; 
  --j:-4; 
}
.sculk-shrieker-be {
  /* coordinates of the image */
  --i:-17; 
  --j:-13; 
}
.sculk-vein {
  /* coordinates of the image */
  --i:-17; 
  --j:-14; 
}
.scute {
  /* coordinates of the image */
  --i:-52; 
  --j:-19; 
}
.sea-lantern {
  /* coordinates of the image */
  --i:-6; 
  --j:-16; 
}
.sea-pickle {
  /* coordinates of the image */
  --i:-54; 
  --j:-7; 
}
.seaborgium {
  /* coordinates of the image */
  --i:-58; 
  --j:-9; 
}
.seagrass {
  /* coordinates of the image */
  --i:-63; 
  --j:-12; 
}
.seeds {
  /* coordinates of the image */
  --i:-33; 
  --j:-10; 
}
.selenium {
  /* coordinates of the image */
  --i:-58; 
  --j:-10; 
}
.sentry-armor-trim {
  /* coordinates of the image */
  --i:-25; 
  --j:-2; 
}
.sentry-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-25; 
  --j:-2; 
}
.shaper-armor-trim {
  /* coordinates of the image */
  --i:-37; 
  --j:-31; 
}
.shaper-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-37; 
  --j:-31; 
}
.sheaf-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-16; 
}
.shears {
  /* coordinates of the image */
  --i:-111; 
  --j:-30; 
}
.sheep-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-5; 
}
.sheep-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-15; 
}
.shelter-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-17; 
}
.shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-30; 
}
.short-tag {
  /* coordinates of the image */
  --i:-40; 
  --j:-5; 
}
.shroomlight {
  /* coordinates of the image */
  --i:-4; 
  --j:-22; 
}
.shroomlight-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-18; 
}
.shrub-lce {
  /* coordinates of the image */
  --i:-32; 
  --j:-14; 
}
.shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-14; 
}
.shulker-shell {
  /* coordinates of the image */
  --i:-110; 
  --j:-8; 
}
.shulker-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-6; 
}
.shulker-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-48; 
  --j:-27; 
}
.sign-revision-1 {
  /* coordinates of the image */
  --i:-11; 
  --j:-1; 
}
.silence-armor-trim {
  /* coordinates of the image */
  --i:-38; 
  --j:-0; 
}
.silence-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-38; 
  --j:-0; 
}
.silicon {
  /* coordinates of the image */
  --i:-58; 
  --j:-11; 
}
.silver {
  /* coordinates of the image */
  --i:-55; 
  --j:-14; 
}
.silver-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-24; 
}
.silverfish-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-7; 
}
.silverfish-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-16; 
}
.silverfish-spawn-egg-revision-2 {
  /* coordinates of the image */
  --i:-48; 
  --j:-28; 
}
.skeleton-horse-spawn-egg {
  /* coordinates of the image */
  --i:-42; 
  --j:-31; 
}
.skeleton-skull {
  /* coordinates of the image */
  --i:-30; 
  --j:-6; 
}
.skeleton-skull-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-25; 
}
.skeleton-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-8; 
}
.skeleton-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-17; 
}
.skull-pottery-sherd {
  /* coordinates of the image */
  --i:-37; 
  --j:-19; 
}
.slate {
  /* coordinates of the image */
  --i:-49; 
  --j:-27; 
}
.slightly-damaged-anvil {
  /* coordinates of the image */
  --i:-39; 
  --j:-4; 
}
.slime-block {
  /* coordinates of the image */
  --i:-28; 
  --j:-23; 
}
.slime-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-9; 
}
.slime-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-18; 
}
.slime-ball {
  /* coordinates of the image */
  --i:-110; 
  --j:-9; 
}
.small-amethyst-bud {
  /* coordinates of the image */
  --i:-13; 
  --j:-10; 
}
.small-dripleaf {
  /* coordinates of the image */
  --i:-14; 
  --j:-21; 
}
.smarter-watch {
  /* coordinates of the image */
  --i:-51; 
  --j:-6; 
}
.smithing-table {
  /* coordinates of the image */
  --i:-76; 
  --j:-21; 
}
.smithing-table-revision-1 {
  /* coordinates of the image */
  --i:-76; 
  --j:-14; 
}
.smithing-template {
  /* coordinates of the image */
  --i:-25; 
  --j:-0; 
}
.smoker {
  /* coordinates of the image */
  --i:-76; 
  --j:-15; 
}
.smooth-basalt {
  /* coordinates of the image */
  --i:-16; 
  --j:-6; 
}
.smooth-quartz {
  /* coordinates of the image */
  --i:-27; 
  --j:-2; 
}
.smooth-quartz-block {
  /* coordinates of the image */
  --i:-27; 
  --j:-2; 
}
.smooth-quartz-slab {
  /* coordinates of the image */
  --i:-103; 
  --j:-9; 
}
.smooth-quartz-stairs {
  /* coordinates of the image */
  --i:-103; 
  --j:-10; 
}
.smooth-red-sandstone {
  /* coordinates of the image */
  --i:-103; 
  --j:-13; 
}
.smooth-red-sandstone-slab {
  /* coordinates of the image */
  --i:-103; 
  --j:-11; 
}
.smooth-red-sandstone-stairs {
  /* coordinates of the image */
  --i:-103; 
  --j:-12; 
}
.smooth-sandstone {
  /* coordinates of the image */
  --i:-103; 
  --j:-16; 
}
.smooth-sandstone-slab {
  /* coordinates of the image */
  --i:-103; 
  --j:-14; 
}
.smooth-sandstone-stairs {
  /* coordinates of the image */
  --i:-103; 
  --j:-15; 
}
.smooth-stone {
  /* coordinates of the image */
  --i:-28; 
  --j:-26; 
}
.smooth-stone-bricks {
  /* coordinates of the image */
  --i:-105; 
  --j:-19; 
}
.smooth-stone-slab {
  /* coordinates of the image */
  --i:-103; 
  --j:-17; 
}
.sniffer-egg {
  /* coordinates of the image */
  --i:-37; 
  --j:-26; 
}
.sniffer-spawn-egg {
  /* coordinates of the image */
  --i:-37; 
  --j:-20; 
}
.snort-pottery-sherd {
  /* coordinates of the image */
  --i:-38; 
  --j:-19; 
}
.snout-armor-trim {
  /* coordinates of the image */
  --i:-25; 
  --j:-7; 
}
.snout-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-25; 
  --j:-7; 
}
.snow {
  /* coordinates of the image */
  --i:-105; 
  --j:-17; 
}
.snow-block {
  /* coordinates of the image */
  --i:-103; 
  --j:-18; 
}
.snow-golem-spawn-egg {
  /* coordinates of the image */
  --i:-21; 
  --j:-24; 
}
.snowball {
  /* coordinates of the image */
  --i:-113; 
  --j:-21; 
}
.snowy-village-map {
  /* coordinates of the image */
  --i:-41; 
  --j:-13; 
}
.snowy-village-map-be {
  /* coordinates of the image */
  --i:-41; 
  --j:-14; 
}
.soap {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.sodium {
  /* coordinates of the image */
  --i:-57; 
  --j:-11; 
}
.sodium-acetate {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.sodium-fluoride {
  /* coordinates of the image */
  --i:-59; 
  --j:-8; 
}
.sodium-hydride {
  /* coordinates of the image */
  --i:-60; 
  --j:-2; 
}
.sodium-hypochlorite {
  /* coordinates of the image */
  --i:-59; 
  --j:-0; 
}
.sodium-oxide {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.soul-campfire {
  /* coordinates of the image */
  --i:-8; 
  --j:-30; 
}
.soul-fire-lantern-revision-1 {
  /* coordinates of the image */
  --i:-6; 
  --j:-2; 
}
.soul-lantern {
  /* coordinates of the image */
  --i:-4; 
  --j:-28; 
}
.soul-sand {
  /* coordinates of the image */
  --i:-105; 
  --j:-27; 
}
.soul-soil {
  /* coordinates of the image */
  --i:-4; 
  --j:-23; 
}
.soul-torch {
  /* coordinates of the image */
  --i:-4; 
  --j:-27; 
}
.spawn-agent {
  /* coordinates of the image */
  --i:-74; 
  --j:-10; 
}
.spawn-allay {
  /* coordinates of the image */
  --i:-28; 
  --j:-4; 
}
.spawn-axolotl {
  /* coordinates of the image */
  --i:-13; 
  --j:-23; 
}
.spawn-bat {
  /* coordinates of the image */
  --i:-35; 
  --j:-21; 
}
.spawn-bee {
  /* coordinates of the image */
  --i:-3; 
  --j:-7; 
}
.spawn-blaze {
  /* coordinates of the image */
  --i:-35; 
  --j:-22; 
}
.spawn-camel {
  /* coordinates of the image */
  --i:-21; 
  --j:-10; 
}
.spawn-cat {
  /* coordinates of the image */
  --i:-74; 
  --j:-11; 
}
.spawn-cat-be {
  /* coordinates of the image */
  --i:-74; 
  --j:-11; 
}
.spawn-cave-spider {
  /* coordinates of the image */
  --i:-35; 
  --j:-23; 
}
.spawn-chicken {
  /* coordinates of the image */
  --i:-35; 
  --j:-24; 
}
.spawn-cod {
  /* coordinates of the image */
  --i:-53; 
  --j:-0; 
}
.spawn-cow {
  /* coordinates of the image */
  --i:-35; 
  --j:-25; 
}
.spawn-creeper {
  /* coordinates of the image */
  --i:-35; 
  --j:-26; 
}
.spawn-dolphin {
  /* coordinates of the image */
  --i:-61; 
  --j:-14; 
}
.spawn-donkey {
  /* coordinates of the image */
  --i:-42; 
  --j:-26; 
}
.spawn-drowned {
  /* coordinates of the image */
  --i:-53; 
  --j:-30; 
}
.spawn-egg {
  /* coordinates of the image */
  --i:-73; 
  --j:-24; 
}
.spawn-elder-guardian {
  /* coordinates of the image */
  --i:-42; 
  --j:-27; 
}
.spawn-ender-dragon {
  /* coordinates of the image */
  --i:-21; 
  --j:-22; 
}
.spawn-enderman {
  /* coordinates of the image */
  --i:-35; 
  --j:-27; 
}
.spawn-endermite {
  /* coordinates of the image */
  --i:-35; 
  --j:-28; 
}
.spawn-evoker {
  /* coordinates of the image */
  --i:-44; 
  --j:-2; 
}
.spawn-firefly {
  /* coordinates of the image */
  --i:-19; 
  --j:-23; 
}
.spawn-fox {
  /* coordinates of the image */
  --i:-76; 
  --j:-31; 
}
.spawn-frog {
  /* coordinates of the image */
  --i:-17; 
  --j:-30; 
}
.spawn-ghast {
  /* coordinates of the image */
  --i:-35; 
  --j:-29; 
}
.spawn-glow-squid {
  /* coordinates of the image */
  --i:-14; 
  --j:-8; 
}
.spawn-goat {
  /* coordinates of the image */
  --i:-12; 
  --j:-7; 
}
.spawn-guardian {
  /* coordinates of the image */
  --i:-35; 
  --j:-30; 
}
.spawn-hoglin {
  /* coordinates of the image */
  --i:-6; 
  --j:-1; 
}
.spawn-horse {
  /* coordinates of the image */
  --i:-35; 
  --j:-31; 
}
.spawn-husk {
  /* coordinates of the image */
  --i:-42; 
  --j:-28; 
}
.spawn-iron-golem {
  /* coordinates of the image */
  --i:-21; 
  --j:-23; 
}
.spawn-llama {
  /* coordinates of the image */
  --i:-44; 
  --j:-3; 
}
.spawn-magma-cube {
  /* coordinates of the image */
  --i:-36; 
  --j:-0; 
}
.spawn-mask {
  /* coordinates of the image */
  --i:-74; 
  --j:-12; 
}
.spawn-mooshroom {
  /* coordinates of the image */
  --i:-36; 
  --j:-1; 
}
.spawn-mule {
  /* coordinates of the image */
  --i:-42; 
  --j:-29; 
}
.spawn-npc {
  /* coordinates of the image */
  --i:-49; 
  --j:-21; 
}
.spawn-ocelot {
  /* coordinates of the image */
  --i:-36; 
  --j:-2; 
}
.spawn-panda {
  /* coordinates of the image */
  --i:-74; 
  --j:-5; 
}
.spawn-panda-be {
  /* coordinates of the image */
  --i:-74; 
  --j:-5; 
}
.spawn-parrot {
  /* coordinates of the image */
  --i:-48; 
  --j:-7; 
}
.spawn-phantom {
  /* coordinates of the image */
  --i:-61; 
  --j:-21; 
}
.spawn-pig {
  /* coordinates of the image */
  --i:-36; 
  --j:-3; 
}
.spawn-piglin-brute {
  /* coordinates of the image */
  --i:-8; 
  --j:-5; 
}
.spawn-pillager {
  /* coordinates of the image */
  --i:-75; 
  --j:-12; 
}
.spawn-polar-bear {
  /* coordinates of the image */
  --i:-42; 
  --j:-30; 
}
.spawn-pufferfish {
  /* coordinates of the image */
  --i:-53; 
  --j:-1; 
}
.spawn-rabbit {
  /* coordinates of the image */
  --i:-36; 
  --j:-4; 
}
.spawn-ravager {
  /* coordinates of the image */
  --i:-75; 
  --j:-10; 
}
.spawn-salmon {
  /* coordinates of the image */
  --i:-53; 
  --j:-2; 
}
.spawn-sheep {
  /* coordinates of the image */
  --i:-36; 
  --j:-5; 
}
.spawn-shulker {
  /* coordinates of the image */
  --i:-36; 
  --j:-6; 
}
.spawn-silverfish {
  /* coordinates of the image */
  --i:-36; 
  --j:-7; 
}
.spawn-skeleton {
  /* coordinates of the image */
  --i:-36; 
  --j:-8; 
}
.spawn-skeleton-horse {
  /* coordinates of the image */
  --i:-42; 
  --j:-31; 
}
.spawn-slime {
  /* coordinates of the image */
  --i:-36; 
  --j:-9; 
}
.spawn-snow-golem {
  /* coordinates of the image */
  --i:-21; 
  --j:-24; 
}
.spawn-spider {
  /* coordinates of the image */
  --i:-36; 
  --j:-10; 
}
.spawn-squid {
  /* coordinates of the image */
  --i:-36; 
  --j:-11; 
}
.spawn-stray {
  /* coordinates of the image */
  --i:-43; 
  --j:-0; 
}
.spawn-strider {
  /* coordinates of the image */
  --i:-6; 
  --j:-30; 
}
.spawn-tadpole {
  /* coordinates of the image */
  --i:-17; 
  --j:-31; 
}
.spawn-trader-llama {
  /* coordinates of the image */
  --i:-76; 
  --j:-29; 
}
.spawn-tropical-fish {
  /* coordinates of the image */
  --i:-53; 
  --j:-25; 
}
.spawn-turtle {
  /* coordinates of the image */
  --i:-54; 
  --j:-0; 
}
.spawn-vex {
  /* coordinates of the image */
  --i:-44; 
  --j:-4; 
}
.spawn-villager {
  /* coordinates of the image */
  --i:-36; 
  --j:-12; 
}
.spawn-vindicator {
  /* coordinates of the image */
  --i:-44; 
  --j:-5; 
}
.spawn-wandering-trader {
  /* coordinates of the image */
  --i:-12; 
  --j:-4; 
}
.spawn-wandering-trader-be {
  /* coordinates of the image */
  --i:-12; 
  --j:-4; 
}
.spawn-warden {
  /* coordinates of the image */
  --i:-18; 
  --j:-4; 
}
.spawn-witch {
  /* coordinates of the image */
  --i:-36; 
  --j:-13; 
}
.spawn-wither-skeleton {
  /* coordinates of the image */
  --i:-43; 
  --j:-1; 
}
.spawn-wolf {
  /* coordinates of the image */
  --i:-36; 
  --j:-14; 
}
.spawn-zoglin {
  /* coordinates of the image */
  --i:-8; 
  --j:-11; 
}
.spawn-zombie {
  /* coordinates of the image */
  --i:-36; 
  --j:-15; 
}
.spawn-zombie-horse {
  /* coordinates of the image */
  --i:-43; 
  --j:-2; 
}
.spawn-zombie-pigman {
  /* coordinates of the image */
  --i:-36; 
  --j:-16; 
}
.spawn-zombie-villager {
  /* coordinates of the image */
  --i:-42; 
  --j:-4; 
}
.spawner {
  /* coordinates of the image */
  --i:-30; 
  --j:-24; 
}
.spectral-arrow {
  /* coordinates of the image */
  --i:-113; 
  --j:-22; 
}
.spectral-arrow-revision-1 {
  /* coordinates of the image */
  --i:-40; 
  --j:-10; 
}
.spider-eye {
  /* coordinates of the image */
  --i:-98; 
  --j:-8; 
}
.spider-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-10; 
}
.spider-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-19; 
}
.spire-armor-trim {
  /* coordinates of the image */
  --i:-25; 
  --j:-21; 
}
.spire-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-25; 
  --j:-21; 
}
.splash-awkward-potion-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-11; 
}
.splash-bottle-of-mob {
  /* coordinates of the image */
  --i:-40; 
  --j:-6; 
}
.splash-mundane-potion {
  /* coordinates of the image */
  --i:-34; 
  --j:-11; 
}
.splash-mundane-potion-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-12; 
}
.splash-potion-of-big {
  /* coordinates of the image */
  --i:-40; 
  --j:-7; 
}
.splash-potion-of-decay {
  /* coordinates of the image */
  --i:-43; 
  --j:-27; 
}
.splash-potion-of-fire-resistance {
  /* coordinates of the image */
  --i:-108; 
  --j:-11; 
}
.splash-potion-of-fire-resistance-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-13; 
}
.splash-potion-of-harming {
  /* coordinates of the image */
  --i:-108; 
  --j:-12; 
}
.splash-potion-of-harming-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-14; 
}
.splash-potion-of-healing {
  /* coordinates of the image */
  --i:-108; 
  --j:-13; 
}
.splash-potion-of-healing-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-15; 
}
.splash-potion-of-invisibility {
  /* coordinates of the image */
  --i:-108; 
  --j:-14; 
}
.splash-potion-of-invisibility-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-16; 
}
.splash-potion-of-leaping {
  /* coordinates of the image */
  --i:-108; 
  --j:-15; 
}
.splash-potion-of-leaping-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-17; 
}
.splash-potion-of-levitation {
  /* coordinates of the image */
  --i:-3; 
  --j:-18; 
}
.splash-potion-of-luck {
  /* coordinates of the image */
  --i:-108; 
  --j:-16; 
}
.splash-potion-of-luck-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-18; 
}
.splash-potion-of-night-vision {
  /* coordinates of the image */
  --i:-108; 
  --j:-17; 
}
.splash-potion-of-night-vision-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-19; 
}
.splash-potion-of-poison {
  /* coordinates of the image */
  --i:-108; 
  --j:-18; 
}
.splash-potion-of-poison-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-20; 
}
.splash-potion-of-regeneration {
  /* coordinates of the image */
  --i:-108; 
  --j:-19; 
}
.splash-potion-of-regeneration-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-21; 
}
.splash-potion-of-slow-falling {
  /* coordinates of the image */
  --i:-108; 
  --j:-20; 
}
.splash-potion-of-slow-falling-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-22; 
}
.splash-potion-of-slowness {
  /* coordinates of the image */
  --i:-108; 
  --j:-21; 
}
.splash-potion-of-slowness-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-23; 
}
.splash-potion-of-small {
  /* coordinates of the image */
  --i:-40; 
  --j:-8; 
}
.splash-potion-of-strength {
  /* coordinates of the image */
  --i:-108; 
  --j:-22; 
}
.splash-potion-of-strength-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-24; 
}
.splash-potion-of-swiftness {
  /* coordinates of the image */
  --i:-108; 
  --j:-23; 
}
.splash-potion-of-swiftness-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-25; 
}
.splash-potion-of-the-turtle-master {
  /* coordinates of the image */
  --i:-108; 
  --j:-24; 
}
.splash-potion-of-the-turtle-master-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-26; 
}
.splash-potion-of-water-breathing {
  /* coordinates of the image */
  --i:-108; 
  --j:-10; 
}
.splash-potion-of-water-breathing-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-27; 
}
.splash-potion-of-weakness {
  /* coordinates of the image */
  --i:-108; 
  --j:-25; 
}
.splash-thick-potion-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-28; 
}
.splash-uncraftable-potion-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-29; 
}
.splash-water-bottle {
  /* coordinates of the image */
  --i:-34; 
  --j:-11; 
}
.splash-water-bottle-revision-1 {
  /* coordinates of the image */
  --i:-10; 
  --j:-30; 
}
.sponge {
  /* coordinates of the image */
  --i:-112; 
  --j:-28; 
}
.sponge-revision-1 {
  /* coordinates of the image */
  --i:-70; 
  --j:-2; 
}
.spore-blossom {
  /* coordinates of the image */
  --i:-14; 
  --j:-22; 
}
.spring-green-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-15; 
}
.spruce-boat {
  /* coordinates of the image */
  --i:-19; 
  --j:-25; 
}
.spruce-boat-revision-2 {
  /* coordinates of the image */
  --i:-113; 
  --j:-12; 
}
.spruce-boat-with-chest {
  /* coordinates of the image */
  --i:-19; 
  --j:-10; 
}
.spruce-boat-with-chest-be-revision-1 {
  /* coordinates of the image */
  --i:-19; 
  --j:-8; 
}
.spruce-button {
  /* coordinates of the image */
  --i:-104; 
  --j:-20; 
}
.spruce-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-27; 
}
.spruce-door-revision-3 {
  /* coordinates of the image */
  --i:-29; 
  --j:-25; 
}
.spruce-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-1; 
}
.spruce-fence-be {
  /* coordinates of the image */
  --i:-103; 
  --j:-20; 
}
.spruce-fence-gate {
  /* coordinates of the image */
  --i:-103; 
  --j:-19; 
}
.spruce-fence-gate-be {
  /* coordinates of the image */
  --i:-1; 
  --j:-24; 
}
.spruce-hanging-sign {
  /* coordinates of the image */
  --i:-20; 
  --j:-19; 
}
.spruce-leaves {
  /* coordinates of the image */
  --i:-107; 
  --j:-17; 
}
.spruce-log {
  /* coordinates of the image */
  --i:-107; 
  --j:-18; 
}
.spruce-log-revision-1 {
  /* coordinates of the image */
  --i:-70; 
  --j:-3; 
}
.spruce-planks {
  /* coordinates of the image */
  --i:-29; 
  --j:-0; 
}
.spruce-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-21; 
}
.spruce-sapling {
  /* coordinates of the image */
  --i:-107; 
  --j:-19; 
}
.spruce-sign {
  /* coordinates of the image */
  --i:-74; 
  --j:-25; 
}
.spruce-slab {
  /* coordinates of the image */
  --i:-103; 
  --j:-21; 
}
.spruce-stairs {
  /* coordinates of the image */
  --i:-103; 
  --j:-22; 
}
.spruce-stairs-left {
  /* coordinates of the image */
  --i:-70; 
  --j:-22; 
}
.spruce-trapdoor {
  /* coordinates of the image */
  --i:-51; 
  --j:-14; 
}
.spruce-wood {
  /* coordinates of the image */
  --i:-103; 
  --j:-23; 
}
.spruce-wood-button {
  /* coordinates of the image */
  --i:-104; 
  --j:-20; 
}
.spruce-wood-door {
  /* coordinates of the image */
  --i:-17; 
  --j:-27; 
}
.spruce-wood-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-1; 
}
.spruce-wood-fence-gate {
  /* coordinates of the image */
  --i:-103; 
  --j:-19; 
}
.spruce-wood-planks {
  /* coordinates of the image */
  --i:-29; 
  --j:-0; 
}
.spruce-wood-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-21; 
}
.spruce-wood-sign {
  /* coordinates of the image */
  --i:-74; 
  --j:-25; 
}
.spruce-wood-slab {
  /* coordinates of the image */
  --i:-103; 
  --j:-21; 
}
.spruce-wood-stairs {
  /* coordinates of the image */
  --i:-103; 
  --j:-22; 
}
.spruce-wood-trapdoor {
  /* coordinates of the image */
  --i:-51; 
  --j:-14; 
}
.spyglass {
  /* coordinates of the image */
  --i:-13; 
  --j:-11; 
}
.squid-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-11; 
}
.squid-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-20; 
}
.sssyntax-error {
  /* coordinates of the image */
  --i:-40; 
  --j:-9; 
}
.stannum {
  /* coordinates of the image */
  --i:-58; 
  --j:-12; 
}
.steak {
  /* coordinates of the image */
  --i:-26; 
  --j:-15; 
}
.stibium {
  /* coordinates of the image */
  --i:-55; 
  --j:-13; 
}
.stick {
  /* coordinates of the image */
  --i:-35; 
  --j:-19; 
}
.sticky-piston {
  /* coordinates of the image */
  --i:-104; 
  --j:-22; 
}
.still-lava {
  /* coordinates of the image */
  --i:-66; 
  --j:-6; 
}
.stone {
  /* coordinates of the image */
  --i:-31; 
  --j:-7; 
}
.stone-axe {
  /* coordinates of the image */
  --i:-111; 
  --j:-31; 
}
.stone-brick-slab {
  /* coordinates of the image */
  --i:-29; 
  --j:-4; 
}
.stone-brick-stairs {
  /* coordinates of the image */
  --i:-103; 
  --j:-25; 
}
.stone-brick-stairs-left {
  /* coordinates of the image */
  --i:-70; 
  --j:-23; 
}
.stone-brick-wall {
  /* coordinates of the image */
  --i:-103; 
  --j:-26; 
}
.stone-brick-wall-be {
  /* coordinates of the image */
  --i:-1; 
  --j:-0; 
}
.stone-bricks {
  /* coordinates of the image */
  --i:-105; 
  --j:-19; 
}
.stone-bricks-monster-egg {
  /* coordinates of the image */
  --i:-105; 
  --j:-19; 
}
.stone-button {
  /* coordinates of the image */
  --i:-104; 
  --j:-23; 
}
.stone-heart {
  /* coordinates of the image */
  --i:-3; 
  --j:-24; 
}
.stone-hoe {
  /* coordinates of the image */
  --i:-112; 
  --j:-0; 
}
.stone-monster-egg {
  /* coordinates of the image */
  --i:-31; 
  --j:-7; 
}
.stone-pickaxe {
  /* coordinates of the image */
  --i:-112; 
  --j:-1; 
}
.stone-pressure-plate {
  /* coordinates of the image */
  --i:-104; 
  --j:-24; 
}
.stone-pressure-plate-revision-1 {
  /* coordinates of the image */
  --i:-65; 
  --j:-10; 
}
.stone-revision-2 {
  /* coordinates of the image */
  --i:-11; 
  --j:-23; 
}
.stone-shovel {
  /* coordinates of the image */
  --i:-112; 
  --j:-2; 
}
.stone-slab {
  /* coordinates of the image */
  --i:-103; 
  --j:-27; 
}
.stone-stairs {
  /* coordinates of the image */
  --i:-103; 
  --j:-28; 
}
.stone-sword {
  /* coordinates of the image */
  --i:-113; 
  --j:-23; 
}
.stonecutter-be {
  /* coordinates of the image */
  --i:-33; 
  --j:-25; 
}
.stonecutter-revision-1 {
  /* coordinates of the image */
  --i:-76; 
  --j:-16; 
}
.stray-spawn-egg {
  /* coordinates of the image */
  --i:-43; 
  --j:-0; 
}
.stray-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-48; 
  --j:-29; 
}
.strider-spawn-egg {
  /* coordinates of the image */
  --i:-6; 
  --j:-30; 
}
.string {
  /* coordinates of the image */
  --i:-110; 
  --j:-10; 
}
.string-tag {
  /* coordinates of the image */
  --i:-40; 
  --j:-11; 
}
.stripped-acacia-log {
  /* coordinates of the image */
  --i:-52; 
  --j:-5; 
}
.stripped-acacia-wood {
  /* coordinates of the image */
  --i:-65; 
  --j:-22; 
}
.stripped-birch-log {
  /* coordinates of the image */
  --i:-52; 
  --j:-6; 
}
.stripped-birch-wood {
  /* coordinates of the image */
  --i:-65; 
  --j:-20; 
}
.stripped-cherry-log {
  /* coordinates of the image */
  --i:-37; 
  --j:-1; 
}
.stripped-cherry-wood {
  /* coordinates of the image */
  --i:-37; 
  --j:-2; 
}
.stripped-crimson-hyphae {
  /* coordinates of the image */
  --i:-6; 
  --j:-7; 
}
.stripped-crimson-stem {
  /* coordinates of the image */
  --i:-5; 
  --j:-14; 
}
.stripped-dark-oak-log {
  /* coordinates of the image */
  --i:-52; 
  --j:-7; 
}
.stripped-dark-oak-wood {
  /* coordinates of the image */
  --i:-65; 
  --j:-23; 
}
.stripped-jungle-log {
  /* coordinates of the image */
  --i:-52; 
  --j:-8; 
}
.stripped-jungle-wood {
  /* coordinates of the image */
  --i:-65; 
  --j:-21; 
}
.stripped-mangrove-log {
  /* coordinates of the image */
  --i:-18; 
  --j:-20; 
}
.stripped-mangrove-wood {
  /* coordinates of the image */
  --i:-18; 
  --j:-21; 
}
.stripped-oak-log {
  /* coordinates of the image */
  --i:-52; 
  --j:-9; 
}
.stripped-oak-wood {
  /* coordinates of the image */
  --i:-65; 
  --j:-18; 
}
.stripped-spruce-log {
  /* coordinates of the image */
  --i:-52; 
  --j:-10; 
}
.stripped-spruce-wood {
  /* coordinates of the image */
  --i:-65; 
  --j:-19; 
}
.stripped-warped-hyphae {
  /* coordinates of the image */
  --i:-6; 
  --j:-8; 
}
.stripped-warped-stem {
  /* coordinates of the image */
  --i:-5; 
  --j:-15; 
}
.strontium {
  /* coordinates of the image */
  --i:-58; 
  --j:-13; 
}
.structure-block {
  /* coordinates of the image */
  --i:-43; 
  --j:-3; 
}
.structure-void {
  /* coordinates of the image */
  --i:-112; 
  --j:-29; 
}
.structure-void-be {
  /* coordinates of the image */
  --i:-1; 
  --j:-27; 
}
.studded-boots {
  /* coordinates of the image */
  --i:-67; 
  --j:-27; 
}
.studded-chestplate {
  /* coordinates of the image */
  --i:-67; 
  --j:-28; 
}
.studded-helmet {
  /* coordinates of the image */
  --i:-67; 
  --j:-29; 
}
.studded-leggings {
  /* coordinates of the image */
  --i:-67; 
  --j:-30; 
}
.sugar {
  /* coordinates of the image */
  --i:-100; 
  --j:-18; 
}
.sugar-cane {
  /* coordinates of the image */
  --i:-17; 
  --j:-3; 
}
.sugar-cane-revision-2 {
  /* coordinates of the image */
  --i:-107; 
  --j:-20; 
}
.sulfate {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.sulfur {
  /* coordinates of the image */
  --i:-58; 
  --j:-14; 
}
.sunflower {
  /* coordinates of the image */
  --i:-107; 
  --j:-21; 
}
.super-fertilizer {
  /* coordinates of the image */
  --i:-55; 
  --j:-6; 
}
.suspicious-gravel {
  /* coordinates of the image */
  --i:-37; 
  --j:-25; 
}
.suspicious-sand {
  /* coordinates of the image */
  --i:-37; 
  --j:-8; 
}
.suspicious-stew {
  /* coordinates of the image */
  --i:-74; 
  --j:-29; 
}
.swaggiest-stairs-ever {
  /* coordinates of the image */
  --i:-15; 
  --j:-5; 
}
.swamp-explorer-map {
  /* coordinates of the image */
  --i:-41; 
  --j:-13; 
}
.swamp-explorer-map-be {
  /* coordinates of the image */
  --i:-41; 
  --j:-14; 
}
.sweet-berries {
  /* coordinates of the image */
  --i:-76; 
  --j:-24; 
}
.tadpole-spawn-egg {
  /* coordinates of the image */
  --i:-17; 
  --j:-31; 
}
.tag {
  /* coordinates of the image */
  --i:-40; 
  --j:-12; 
}
.taiga-village-map {
  /* coordinates of the image */
  --i:-41; 
  --j:-13; 
}
.taiga-village-map-be {
  /* coordinates of the image */
  --i:-41; 
  --j:-14; 
}
.tall-grass {
  /* coordinates of the image */
  --i:-107; 
  --j:-22; 
}
.tantalum {
  /* coordinates of the image */
  --i:-58; 
  --j:-15; 
}
.target {
  /* coordinates of the image */
  --i:-6; 
  --j:-3; 
}
.technetium {
  /* coordinates of the image */
  --i:-58; 
  --j:-16; 
}
.tellurium {
  /* coordinates of the image */
  --i:-58; 
  --j:-17; 
}
.tennessine {
  /* coordinates of the image */
  --i:-58; 
  --j:-18; 
}
.terbium {
  /* coordinates of the image */
  --i:-58; 
  --j:-19; 
}
.terracotta {
  /* coordinates of the image */
  --i:-105; 
  --j:-20; 
}
.thallium {
  /* coordinates of the image */
  --i:-58; 
  --j:-20; 
}
.thick-lingering-potion {
  /* coordinates of the image */
  --i:-34; 
  --j:-8; 
}
.thick-potion {
  /* coordinates of the image */
  --i:-33; 
  --j:-26; 
}
.thick-potion-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-20; 
}
.thick-splash-potion {
  /* coordinates of the image */
  --i:-34; 
  --j:-11; 
}
.thorium {
  /* coordinates of the image */
  --i:-58; 
  --j:-21; 
}
.thulium {
  /* coordinates of the image */
  --i:-58; 
  --j:-22; 
}
.tide-armor-trim {
  /* coordinates of the image */
  --i:-25; 
  --j:-22; 
}
.tide-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-25; 
  --j:-22; 
}
.tileinfo_update.name {
  /* coordinates of the image */
  --i:-11; 
  --j:-4; 
}
.tin {
  /* coordinates of the image */
  --i:-58; 
  --j:-12; 
}
.tinted-glass {
  /* coordinates of the image */
  --i:-13; 
  --j:-14; 
}
.tipped-arrow {
  /* coordinates of the image */
  --i:-39; 
  --j:-17; 
}
.titanium {
  /* coordinates of the image */
  --i:-58; 
  --j:-23; 
}
.tnt {
  /* coordinates of the image */
  --i:-112; 
  --j:-30; 
}
.tonic {
  /* coordinates of the image */
  --i:-55; 
  --j:-7; 
}
.top-snow {
  /* coordinates of the image */
  --i:-31; 
  --j:-6; 
}
.torch {
  /* coordinates of the image */
  --i:-105; 
  --j:-29; 
}
.torch-revision-1 {
  /* coordinates of the image */
  --i:-65; 
  --j:-11; 
}
.torchflower {
  /* coordinates of the image */
  --i:-37; 
  --j:-14; 
}
.torchflower-seeds {
  /* coordinates of the image */
  --i:-37; 
  --j:-15; 
}
.totem-of-undying {
  /* coordinates of the image */
  --i:-113; 
  --j:-24; 
}
.trader-llama-spawn-egg {
  /* coordinates of the image */
  --i:-76; 
  --j:-29; 
}
.transition-metal {
  /* coordinates of the image */
  --i:-2; 
  --j:-10; 
}
.trapped-chest {
  /* coordinates of the image */
  --i:-112; 
  --j:-31; 
}
.trapped-chest-be {
  /* coordinates of the image */
  --i:-1; 
  --j:-26; 
}
.treasure-map {
  /* coordinates of the image */
  --i:-3; 
  --j:-26; 
}
.trident {
  /* coordinates of the image */
  --i:-53; 
  --j:-19; 
}
.trident-revision-1 {
  /* coordinates of the image */
  --i:-52; 
  --j:-15; 
}
.tripwire-hook {
  /* coordinates of the image */
  --i:-104; 
  --j:-25; 
}
.tropical-fish {
  /* coordinates of the image */
  --i:-52; 
  --j:-24; 
}
.tropical-fish-bucket-revision-1 {
  /* coordinates of the image */
  --i:-52; 
  --j:-20; 
}
.tropical-fish-spawn-egg {
  /* coordinates of the image */
  --i:-53; 
  --j:-25; 
}
.tropical-fish-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-61; 
  --j:-18; 
}
.tube-coral {
  /* coordinates of the image */
  --i:-53; 
  --j:-14; 
}
.tube-coral-block {
  /* coordinates of the image */
  --i:-53; 
  --j:-9; 
}
.tube-coral-block-revision-1 {
  /* coordinates of the image */
  --i:-53; 
  --j:-3; 
}
.tube-coral-fan {
  /* coordinates of the image */
  --i:-66; 
  --j:-22; 
}
.tube-coral-fan-revision-1 {
  /* coordinates of the image */
  --i:-52; 
  --j:-30; 
}
.tube-coral-fan-revision-2 {
  /* coordinates of the image */
  --i:-66; 
  --j:-30; 
}
.tuff {
  /* coordinates of the image */
  --i:-13; 
  --j:-16; 
}
.tungsten {
  /* coordinates of the image */
  --i:-58; 
  --j:-24; 
}
.tungsten-chloride {
  /* coordinates of the image */
  --i:-59; 
  --j:-28; 
}
.turtle-egg {
  /* coordinates of the image */
  --i:-61; 
  --j:-19; 
}
.turtle-egg-revision-1 {
  /* coordinates of the image */
  --i:-52; 
  --j:-3; 
}
.turtle-helmet {
  /* coordinates of the image */
  --i:-52; 
  --j:-16; 
}
.turtle-scute {
  /* coordinates of the image */
  --i:-52; 
  --j:-19; 
}
.turtle-shell {
  /* coordinates of the image */
  --i:-52; 
  --j:-16; 
}
.turtle-spawn-egg {
  /* coordinates of the image */
  --i:-54; 
  --j:-0; 
}
.twisting-vines {
  /* coordinates of the image */
  --i:-6; 
  --j:-10; 
}
.ultramarine-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-3; 
}
.uncraftable-lingering-potion {
  /* coordinates of the image */
  --i:-109; 
  --j:-11; 
}
.uncraftable-potion {
  /* coordinates of the image */
  --i:-43; 
  --j:-26; 
}
.uncraftable-potion-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-21; 
}
.uncraftable-splash-potion {
  /* coordinates of the image */
  --i:-108; 
  --j:-26; 
}
.uncraftable-tipped-arrow {
  /* coordinates of the image */
  --i:-44; 
  --j:-0; 
}
.underwater-tnt {
  /* coordinates of the image */
  --i:-60; 
  --j:-25; 
}
.underwater-torch {
  /* coordinates of the image */
  --i:-55; 
  --j:-8; 
}
.uranium {
  /* coordinates of the image */
  --i:-58; 
  --j:-25; 
}
.usb-charger {
  /* coordinates of the image */
  --i:-51; 
  --j:-7; 
}
.usb-charger-block {
  /* coordinates of the image */
  --i:-51; 
  --j:-7; 
}
.vanadium {
  /* coordinates of the image */
  --i:-58; 
  --j:-26; 
}
.verdant-froglight {
  /* coordinates of the image */
  --i:-18; 
  --j:-7; 
}
.verdant-froglight-be {
  /* coordinates of the image */
  --i:-18; 
  --j:-3; 
}
.very-damaged-anvil {
  /* coordinates of the image */
  --i:-39; 
  --j:-8; 
}
.vex-armor-trim {
  /* coordinates of the image */
  --i:-25; 
  --j:-23; 
}
.vex-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-25; 
  --j:-23; 
}
.vex-spawn-egg {
  /* coordinates of the image */
  --i:-44; 
  --j:-4; 
}
.village-map {
  /* coordinates of the image */
  --i:-41; 
  --j:-13; 
}
.village-map-be {
  /* coordinates of the image */
  --i:-41; 
  --j:-14; 
}
.villager-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-12; 
}
.villager-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-21; 
}
.vindicator-spawn-egg {
  /* coordinates of the image */
  --i:-44; 
  --j:-5; 
}
.vines {
  /* coordinates of the image */
  --i:-107; 
  --j:-23; 
}
.violet-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-13; 
}
.void-air {
  /* coordinates of the image */
  --i:-73; 
  --j:-26; 
}
.wandering-trader-spawn-egg {
  /* coordinates of the image */
  --i:-76; 
  --j:-30; 
}
.ward-armor-trim {
  /* coordinates of the image */
  --i:-25; 
  --j:-25; 
}
.ward-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-25; 
  --j:-25; 
}
.warden-spawn-egg {
  /* coordinates of the image */
  --i:-18; 
  --j:-4; 
}
.warped-button {
  /* coordinates of the image */
  --i:-5; 
  --j:-10; 
}
.warped-door {
  /* coordinates of the image */
  --i:-5; 
  --j:-11; 
}
.warped-fence {
  /* coordinates of the image */
  --i:-20; 
  --j:-8; 
}
.warped-fence-be {
  /* coordinates of the image */
  --i:-5; 
  --j:-3; 
}
.warped-fence-gate {
  /* coordinates of the image */
  --i:-5; 
  --j:-19; 
}
.warped-fence-gate-be {
  /* coordinates of the image */
  --i:-11; 
  --j:-30; 
}
.warped-fungus {
  /* coordinates of the image */
  --i:-4; 
  --j:-30; 
}
.warped-fungus-on-a-stick {
  /* coordinates of the image */
  --i:-6; 
  --j:-31; 
}
.warped-hanging-sign {
  /* coordinates of the image */
  --i:-20; 
  --j:-20; 
}
.warped-hyphae {
  /* coordinates of the image */
  --i:-6; 
  --j:-6; 
}
.warped-nylium {
  /* coordinates of the image */
  --i:-4; 
  --j:-24; 
}
.warped-planks {
  /* coordinates of the image */
  --i:-4; 
  --j:-18; 
}
.warped-pressure-plate {
  /* coordinates of the image */
  --i:-5; 
  --j:-12; 
}
.warped-roots {
  /* coordinates of the image */
  --i:-5; 
  --j:-31; 
}
.warped-sign {
  /* coordinates of the image */
  --i:-5; 
  --j:-17; 
}
.warped-slab {
  /* coordinates of the image */
  --i:-5; 
  --j:-4; 
}
.warped-stairs {
  /* coordinates of the image */
  --i:-5; 
  --j:-5; 
}
.warped-stem {
  /* coordinates of the image */
  --i:-4; 
  --j:-25; 
}
.warped-trapdoor {
  /* coordinates of the image */
  --i:-5; 
  --j:-13; 
}
.warped-wart-block {
  /* coordinates of the image */
  --i:-4; 
  --j:-26; 
}
.water {
  /* coordinates of the image */
  --i:-66; 
  --j:-14; 
}
.water-compound {
  /* coordinates of the image */
  --i:-59; 
  --j:-3; 
}
.water-be {
  /* coordinates of the image */
  --i:-66; 
  --j:-15; 
}
.water-block {
  /* coordinates of the image */
  --i:-66; 
  --j:-5; 
}
.water-bottle {
  /* coordinates of the image */
  --i:-33; 
  --j:-26; 
}
.water-bottle-revision-1 {
  /* coordinates of the image */
  --i:-9; 
  --j:-22; 
}
.water-bucket {
  /* coordinates of the image */
  --i:-98; 
  --j:-12; 
}
.water-revision-2 {
  /* coordinates of the image */
  --i:-26; 
  --j:-18; 
}
.wax-block {
  /* coordinates of the image */
  --i:-2; 
  --j:-31; 
}
.waxed-block-of-copper {
  /* coordinates of the image */
  --i:-12; 
  --j:-16; 
}
.waxed-copper {
  /* coordinates of the image */
  --i:-12; 
  --j:-16; 
}
.waxed-copper-block {
  /* coordinates of the image */
  --i:-12; 
  --j:-16; 
}
.waxed-cut-copper {
  /* coordinates of the image */
  --i:-12; 
  --j:-17; 
}
.waxed-cut-copper-block {
  /* coordinates of the image */
  --i:-12; 
  --j:-17; 
}
.waxed-cut-copper-slab {
  /* coordinates of the image */
  --i:-12; 
  --j:-18; 
}
.waxed-cut-copper-stairs {
  /* coordinates of the image */
  --i:-12; 
  --j:-19; 
}
.waxed-exposed-copper {
  /* coordinates of the image */
  --i:-12; 
  --j:-26; 
}
.waxed-exposed-copper-block {
  /* coordinates of the image */
  --i:-12; 
  --j:-26; 
}
.waxed-exposed-cut-copper {
  /* coordinates of the image */
  --i:-12; 
  --j:-27; 
}
.waxed-exposed-cut-copper-block {
  /* coordinates of the image */
  --i:-12; 
  --j:-27; 
}
.waxed-exposed-cut-copper-slab {
  /* coordinates of the image */
  --i:-12; 
  --j:-28; 
}
.waxed-exposed-cut-copper-stairs {
  /* coordinates of the image */
  --i:-12; 
  --j:-29; 
}
.waxed-oxidized-copper {
  /* coordinates of the image */
  --i:-13; 
  --j:-24; 
}
.waxed-oxidized-copper-block {
  /* coordinates of the image */
  --i:-13; 
  --j:-24; 
}
.waxed-oxidized-cut-copper {
  /* coordinates of the image */
  --i:-13; 
  --j:-25; 
}
.waxed-oxidized-cut-copper-block {
  /* coordinates of the image */
  --i:-13; 
  --j:-25; 
}
.waxed-oxidized-cut-copper-slab {
  /* coordinates of the image */
  --i:-13; 
  --j:-26; 
}
.waxed-oxidized-cut-copper-stairs {
  /* coordinates of the image */
  --i:-13; 
  --j:-27; 
}
.waxed-weathered-copper {
  /* coordinates of the image */
  --i:-13; 
  --j:-7; 
}
.waxed-weathered-copper-block {
  /* coordinates of the image */
  --i:-13; 
  --j:-7; 
}
.waxed-weathered-cut-copper {
  /* coordinates of the image */
  --i:-13; 
  --j:-8; 
}
.waxed-weathered-cut-copper-block {
  /* coordinates of the image */
  --i:-13; 
  --j:-8; 
}
.waxed-weathered-cut-copper-slab {
  /* coordinates of the image */
  --i:-13; 
  --j:-6; 
}
.waxed-weathered-cut-copper-stairs {
  /* coordinates of the image */
  --i:-13; 
  --j:-9; 
}
.wayfinder-armor-trim {
  /* coordinates of the image */
  --i:-38; 
  --j:-1; 
}
.wayfinder-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-38; 
  --j:-1; 
}
.weathered-copper {
  /* coordinates of the image */
  --i:-13; 
  --j:-7; 
}
.weathered-copper-block {
  /* coordinates of the image */
  --i:-13; 
  --j:-7; 
}
.weathered-cut-copper {
  /* coordinates of the image */
  --i:-13; 
  --j:-8; 
}
.weathered-cut-copper-block {
  /* coordinates of the image */
  --i:-13; 
  --j:-8; 
}
.weathered-cut-copper-slab {
  /* coordinates of the image */
  --i:-13; 
  --j:-6; 
}
.weathered-cut-copper-stairs {
  /* coordinates of the image */
  --i:-13; 
  --j:-9; 
}
.weeping-vines {
  /* coordinates of the image */
  --i:-4; 
  --j:-31; 
}
.wet-sponge {
  /* coordinates of the image */
  --i:-113; 
  --j:-0; 
}
.wheat {
  /* coordinates of the image */
  --i:-100; 
  --j:-19; 
}
.wheat-seeds {
  /* coordinates of the image */
  --i:-33; 
  --j:-10; 
}
.white-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-26; 
}
.white-banner {
  /* coordinates of the image */
  --i:-24; 
  --j:-19; 
}
.white-banner-15w14a {
  /* coordinates of the image */
  --i:-15; 
  --j:-6; 
}
.white-base-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-21; 
}
.white-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-22; 
}
.white-base-gradient-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-23; 
}
.white-base-indented-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-24; 
}
.white-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-25; 
}
.white-beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-8; 
}
.white-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-16; 
}
.white-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-22; 
}
.white-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-22; 
}
.white-bend-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-26; 
}
.white-bend-sinister-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-27; 
}
.white-bordure-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-28; 
}
.white-bordure-indented-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-29; 
}
.white-candle {
  /* coordinates of the image */
  --i:-13; 
  --j:-20; 
}
.white-carpet {
  /* coordinates of the image */
  --i:-51; 
  --j:-2; 
}
.white-carpet-revision-1 {
  /* coordinates of the image */
  --i:-24; 
  --j:-20; 
}
.white-chevron-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-30; 
}
.white-chief-banner {
  /* coordinates of the image */
  --i:-95; 
  --j:-31; 
}
.white-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-0; 
}
.white-chief-indented-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-1; 
}
.white-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-2; 
}
.white-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-17; 
}
.white-concrete {
  /* coordinates of the image */
  --i:-47; 
  --j:-12; 
}
.white-concrete-powder {
  /* coordinates of the image */
  --i:-47; 
  --j:-13; 
}
.white-creeper-charge-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-3; 
}
.white-cross-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-4; 
}
.white-dye {
  /* coordinates of the image */
  --i:-74; 
  --j:-9; 
}
.white-fess-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-5; 
}
.white-field-masoned-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-6; 
}
.white-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-19; 
}
.white-flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-18; 
}
.white-flower-charge-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-7; 
}
.white-glazed-terracotta {
  /* coordinates of the image */
  --i:-48; 
  --j:-6; 
}
.white-glazed-terracotta-revision-1 {
  /* coordinates of the image */
  --i:-47; 
  --j:-14; 
}
.white-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-17; 
}
.white-glow-stick {
  /* coordinates of the image */
  --i:-62; 
  --j:-21; 
}
.white-gradient-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-8; 
}
.white-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-9; 
}
.white-jar {
  /* coordinates of the image */
  --i:-59; 
  --j:-26; 
}
.white-lozenge-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-10; 
}
.white-pale-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-11; 
}
.white-pale-dexter-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-12; 
}
.white-pale-sinister-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-13; 
}
.white-paly-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-14; 
}
.white-per-bend-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-15; 
}
.white-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-16; 
}
.white-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-17; 
}
.white-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-18; 
}
.white-per-fess-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-19; 
}
.white-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-20; 
}
.white-per-pale-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-21; 
}
.white-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-22; 
}
.white-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-20; 
}
.white-roundel-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-23; 
}
.white-saltire-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-24; 
}
.white-shield {
  /* coordinates of the image */
  --i:-78; 
  --j:-31; 
}
.white-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-16; 
}
.white-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-21; 
}
.white-skull-charge-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-25; 
}
.white-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-20; 
}
.white-stained-glass {
  /* coordinates of the image */
  --i:-24; 
  --j:-22; 
}
.white-stained-glass-pane {
  /* coordinates of the image */
  --i:-24; 
  --j:-23; 
}
.white-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-63; 
  --j:-5; 
}
.white-terracotta {
  /* coordinates of the image */
  --i:-24; 
  --j:-21; 
}
.white-thing-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-26; 
}
.white-tinted-glass {
  /* coordinates of the image */
  --i:-41; 
  --j:-1; 
}
.white-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-16; 
}
.white-tulip {
  /* coordinates of the image */
  --i:-107; 
  --j:-24; 
}
.white-wood-planks {
  /* coordinates of the image */
  --i:-8; 
  --j:-1; 
}
.white-wool {
  /* coordinates of the image */
  --i:-48; 
  --j:-0; 
}
.white-wool-revision-2 {
  /* coordinates of the image */
  --i:-24; 
  --j:-24; 
}
.wild-armor-trim {
  /* coordinates of the image */
  --i:-25; 
  --j:-27; 
}
.wild-armor-trim-smithing-template {
  /* coordinates of the image */
  --i:-25; 
  --j:-27; 
}
.witch-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-13; 
}
.wither-rose {
  /* coordinates of the image */
  --i:-74; 
  --j:-19; 
}
.wither-skeleton-skull {
  /* coordinates of the image */
  --i:-30; 
  --j:-7; 
}
.wither-skeleton-skull-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-26; 
}
.wither-skeleton-spawn-egg {
  /* coordinates of the image */
  --i:-43; 
  --j:-1; 
}
.wither-spawn-egg {
  /* coordinates of the image */
  --i:-21; 
  --j:-25; 
}
.wob {
  /* coordinates of the image */
  --i:-41; 
  --j:-10; 
}
.wolf-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-14; 
}
.wolf-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-22; 
}
.wolfram {
  /* coordinates of the image */
  --i:-58; 
  --j:-24; 
}
.wood-heart {
  /* coordinates of the image */
  --i:-3; 
  --j:-25; 
}
.wooden-axe {
  /* coordinates of the image */
  --i:-112; 
  --j:-3; 
}
.wooden-hoe {
  /* coordinates of the image */
  --i:-112; 
  --j:-4; 
}
.wooden-pickaxe {
  /* coordinates of the image */
  --i:-112; 
  --j:-5; 
}
.wooden-shovel {
  /* coordinates of the image */
  --i:-112; 
  --j:-6; 
}
.wooden-slab {
  /* coordinates of the image */
  --i:-28; 
  --j:-7; 
}
.wooden-sword {
  /* coordinates of the image */
  --i:-113; 
  --j:-25; 
}
.woodland-explorer-map {
  /* coordinates of the image */
  --i:-112; 
  --j:-7; 
}
.woodland-explorer-map-be {
  /* coordinates of the image */
  --i:-3; 
  --j:-29; 
}
.written-book {
  /* coordinates of the image */
  --i:-112; 
  --j:-8; 
}
.xenon {
  /* coordinates of the image */
  --i:-58; 
  --j:-27; 
}
.yellow-balloon {
  /* coordinates of the image */
  --i:-60; 
  --j:-27; 
}
.yellow-banner {
  /* coordinates of the image */
  --i:-24; 
  --j:-25; 
}
.yellow-banner-15w14a {
  /* coordinates of the image */
  --i:-15; 
  --j:-7; 
}
.yellow-base-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-27; 
}
.yellow-base-dexter-canton-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-28; 
}
.yellow-base-gradient-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-29; 
}
.yellow-base-indented-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-30; 
}
.yellow-base-sinister-canton-banner {
  /* coordinates of the image */
  --i:-96; 
  --j:-31; 
}
.yellow-beaker {
  /* coordinates of the image */
  --i:-59; 
  --j:-1; 
}
.yellow-bed {
  /* coordinates of the image */
  --i:-99; 
  --j:-17; 
}
.yellow-bed-be {
  /* coordinates of the image */
  --i:-48; 
  --j:-23; 
}
.yellow-bed-lce {
  /* coordinates of the image */
  --i:-48; 
  --j:-23; 
}
.yellow-bend-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-0; 
}
.yellow-bend-sinister-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-1; 
}
.yellow-bordure-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-2; 
}
.yellow-bordure-indented-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-3; 
}
.yellow-candle {
  /* coordinates of the image */
  --i:-13; 
  --j:-21; 
}
.yellow-carpet {
  /* coordinates of the image */
  --i:-51; 
  --j:-3; 
}
.yellow-carpet-revision-1 {
  /* coordinates of the image */
  --i:-24; 
  --j:-26; 
}
.yellow-chevron-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-4; 
}
.yellow-chief-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-5; 
}
.yellow-chief-dexter-canton-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-6; 
}
.yellow-chief-indented-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-7; 
}
.yellow-chief-sinister-canton-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-8; 
}
.yellow-cloth {
  /* coordinates of the image */
  --i:-7; 
  --j:-18; 
}
.yellow-concrete {
  /* coordinates of the image */
  --i:-47; 
  --j:-15; 
}
.yellow-concrete-powder {
  /* coordinates of the image */
  --i:-47; 
  --j:-16; 
}
.yellow-creeper-charge-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-9; 
}
.yellow-cross-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-10; 
}
.yellow-dye {
  /* coordinates of the image */
  --i:-99; 
  --j:-1; 
}
.yellow-fess-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-11; 
}
.yellow-field-masoned-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-12; 
}
.yellow-firework-star {
  /* coordinates of the image */
  --i:-25; 
  --j:-20; 
}
.yellow-flask {
  /* coordinates of the image */
  --i:-59; 
  --j:-25; 
}
.yellow-flower-charge-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-13; 
}
.yellow-glazed-terracotta {
  /* coordinates of the image */
  --i:-47; 
  --j:-17; 
}
.yellow-globe-banner {
  /* coordinates of the image */
  --i:-1; 
  --j:-18; 
}
.yellow-glow-stick {
  /* coordinates of the image */
  --i:-62; 
  --j:-22; 
}
.yellow-gradient-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-14; 
}
.yellow-inverted-chevron-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-15; 
}
.yellow-jar {
  /* coordinates of the image */
  --i:-60; 
  --j:-3; 
}
.yellow-key {
  /* coordinates of the image */
  --i:-14; 
  --j:-4; 
}
.yellow-lozenge-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-16; 
}
.yellow-pale-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-17; 
}
.yellow-pale-dexter-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-18; 
}
.yellow-pale-sinister-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-19; 
}
.yellow-paly-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-20; 
}
.yellow-per-bend-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-21; 
}
.yellow-per-bend-inverted-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-22; 
}
.yellow-per-bend-sinister-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-23; 
}
.yellow-per-bend-sinister-inverted-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-24; 
}
.yellow-per-fess-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-25; 
}
.yellow-per-fess-inverted-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-26; 
}
.yellow-per-pale-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-27; 
}
.yellow-per-pale-inverted-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-28; 
}
.yellow-piglin-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-21; 
}
.yellow-roundel-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-29; 
}
.yellow-saltire-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-30; 
}
.yellow-shield {
  /* coordinates of the image */
  --i:-79; 
  --j:-0; 
}
.yellow-shulker-box {
  /* coordinates of the image */
  --i:-50; 
  --j:-17; 
}
.yellow-shulker-box-revision-1 {
  /* coordinates of the image */
  --i:-44; 
  --j:-22; 
}
.yellow-skull-charge-banner {
  /* coordinates of the image */
  --i:-97; 
  --j:-31; 
}
.yellow-snout-banner {
  /* coordinates of the image */
  --i:-11; 
  --j:-21; 
}
.yellow-stained-glass {
  /* coordinates of the image */
  --i:-24; 
  --j:-28; 
}
.yellow-stained-glass-pane {
  /* coordinates of the image */
  --i:-24; 
  --j:-29; 
}
.yellow-stained-glass-pane-be {
  /* coordinates of the image */
  --i:-63; 
  --j:-6; 
}
.yellow-terracotta {
  /* coordinates of the image */
  --i:-24; 
  --j:-27; 
}
.yellow-thing-banner {
  /* coordinates of the image */
  --i:-98; 
  --j:-0; 
}
.yellow-tinted-glass {
  /* coordinates of the image */
  --i:-41; 
  --j:-2; 
}
.yellow-tinted-glass-pane {
  /* coordinates of the image */
  --i:-0; 
  --j:-17; 
}
.yellow-wood-planks {
  /* coordinates of the image */
  --i:-8; 
  --j:-2; 
}
.yellow-wool {
  /* coordinates of the image */
  --i:-48; 
  --j:-1; 
}
.yellow-wool-revision-2 {
  /* coordinates of the image */
  --i:-24; 
  --j:-30; 
}
.ytterbium {
  /* coordinates of the image */
  --i:-58; 
  --j:-28; 
}
.yttrium {
  /* coordinates of the image */
  --i:-58; 
  --j:-29; 
}
.zinc {
  /* coordinates of the image */
  --i:-58; 
  --j:-30; 
}
.zirconium {
  /* coordinates of the image */
  --i:-58; 
  --j:-31; 
}
.zoglin-spawn-egg {
  /* coordinates of the image */
  --i:-8; 
  --j:-11; 
}
.zombie-head {
  /* coordinates of the image */
  --i:-30; 
  --j:-8; 
}
.zombie-head-be {
  /* coordinates of the image */
  --i:-6; 
  --j:-27; 
}
.zombie-horse-spawn-egg {
  /* coordinates of the image */
  --i:-43; 
  --j:-2; 
}
.zombie-horse-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-49; 
  --j:-22; 
}
.zombie-pigman-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-16; 
}
.zombie-pigman-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-24; 
}
.zombie-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-15; 
}
.zombie-spawn-egg-revision-1 {
  /* coordinates of the image */
  --i:-43; 
  --j:-23; 
}
.zombie-villager-spawn-egg {
  /* coordinates of the image */
  --i:-42; 
  --j:-4; 
}
.zombified-piglin-spawn-egg {
  /* coordinates of the image */
  --i:-36; 
  --j:-16; 
}

/*=====

/* ==========================================
   ROW 114 - PALE OAK & RESIN (32 items)
   ========================================== */
.pale-oak-log { --i: -114; --j: 0; }
.pale-oak-planks { --i: -114; --j: -1; }
.pale-oak-stairs { --i: -114; --j: -2; }
.pale-oak-slab { --i: -114; --j: -3; }
.pale-oak-fence { --i: -114; --j: -4; }
.pale-oak-fence-gate { --i: -114; --j: -5; }
.pale-oak-door { --i: -114; --j: -6; }
.pale-oak-trapdoor { --i: -114; --j: -7; }
.pale-oak-button { --i: -114; --j: -8; }
.pale-oak-pressure-plate { --i: -114; --j: -9; }
.pale-oak-sign { --i: -114; --j: -10; }
.pale-oak-hanging-sign { --i: -114; --j: -11; }
.resin-clump { --i: -114; --j: -12; }
.resin-block { --i: -114; --j: -13; }
.resin-bricks { --i: -114; --j: -14; }
.resin-brick-slab { --i: -114; --j: -15; }
.resin-brick-stairs { --i: -114; --j: -16; }
.resin-brick-wall { --i: -114; --j: -17; }
.chiseled-resin-bricks { --i: -114; --j: -18; }
.creaking-heart { --i: -114; --j: -19; }
.pale-moss-block { --i: -114; --j: -20; }
.pale-moss-carpet { --i: -114; --j: -21; }
.pale-hanging-moss { --i: -114; --j: -22; }
.open-eyeblossom { --i: -114; --j: -23; }
.closed-eyeblossom { --i: -114; --j: -24; }
.bundle { --i: -114; --j: -25; }
.white-bundle { --i: -114; --j: -26; }
.orange-bundle { --i: -114; --j: -27; }
.magenta-bundle { --i: -114; --j: -28; }
.light-blue-bundle { --i: -114; --j: -29; }
.yellow-bundle { --i: -114; --j: -30; }
.lime-bundle { --i: -114; --j: -31; }

/* ==========================================
   ROW 115 - BUNDLES & TUFF (32 items)
   ========================================== */
.pink-bundle { --i: -115; --j: 0; }
.gray-bundle { --i: -115; --j: -1; }
.light-gray-bundle { --i: -115; --j: -2; }
.cyan-bundle { --i: -115; --j: -3; }
.purple-bundle { --i: -115; --j: -4; }
.blue-bundle { --i: -115; --j: -5; }
.brown-bundle { --i: -115; --j: -6; }
.green-bundle { --i: -115; --j: -7; }
.red-bundle { --i: -115; --j: -8; }
.black-bundle { --i: -115; --j: -9; }
.tuff-slab { --i: -115; --j: -11; }
.tuff-stairs { --i: -115; --j: -12; }
.tuff-wall { --i: -115; --j: -13; }
.polished-tuff { --i: -115; --j: -18; }
.polished-tuff-slab { --i: -115; --j: -19; }
.polished-tuff-stairs { --i: -115; --j: -20; }
.polished-tuff-wall { --i: -115; --j: -21; }
.tuff-bricks { --i: -115; --j: -14; }
.tuff-brick-slab { --i: -115; --j: -15; }
.tuff-brick-stairs { --i: -115; --j: -16; }
.tuff-brick-wall { --i: -115; --j: -17; }
.chiseled-tuff { --i: -115; --j: -22; }
.chiseled-tuff-bricks { --i: -120; --j: -2; }
.chiseled-copper { --i: -115; --j: -23; }
.exposed-chiseled-copper { --i: -115; --j: -24; }
.weathered-chiseled-copper { --i: -115; --j: -25; }
.oxidized-chiseled-copper { --i: -115; --j: -26; }
.waxed-chiseled-copper { --i: -115; --j: -27; }
.waxed-exposed-chiseled-copper { --i: -115; --j: -28; }
.waxed-weathered-chiseled-copper { --i: -115; --j: -29; }
.waxed-oxidized-chiseled-copper { --i: -115; --j: -30; }
.copper-grate { --i: -115; --j: -31; }

/* ==========================================
   ROW 116 - COPPER VARIANTS (32 items)
   ========================================== */
.exposed-copper-grate { --i: -116; --j: 0; }
.weathered-copper-grate { --i: -116; --j: -1; }
.oxidized-copper-grate { --i: -116; --j: -2; }
.waxed-copper-grate { --i: -116; --j: -3; }
.waxed-exposed-copper-grate { --i: -116; --j: -4; }
.waxed-weathered-copper-grate { --i: -116; --j: -5; }
.waxed-oxidized-copper-grate { --i: -116; --j: -6; }
.copper-bulb { --i: -116; --j: -7; }
.exposed-copper-bulb { --i: -116; --j: -8; }
.weathered-copper-bulb { --i: -116; --j: -9; }
.oxidized-copper-bulb { --i: -116; --j: -10; }
.waxed-copper-bulb { --i: -116; --j: -11; }
.waxed-exposed-copper-bulb { --i: -116; --j: -12; }
.waxed-weathered-copper-bulb { --i: -116; --j: -13; }
.waxed-oxidized-copper-bulb { --i: -116; --j: -14; }
.copper-door { --i: -116; --j: -15; }
.exposed-copper-door { --i: -116; --j: -16; }
.weathered-copper-door { --i: -116; --j: -17; }
.oxidized-copper-door { --i: -116; --j: -18; }
.waxed-copper-door { --i: -116; --j: -19; }
.waxed-exposed-copper-door { --i: -116; --j: -20; }
.waxed-weathered-copper-door { --i: -116; --j: -21; }
.waxed-oxidized-copper-door { --i: -116; --j: -22; }
.copper-trapdoor { --i: -116; --j: -23; }
.exposed-copper-trapdoor { --i: -116; --j: -24; }
.weathered-copper-trapdoor { --i: -116; --j: -25; }
.oxidized-copper-trapdoor { --i: -116; --j: -26; }
.waxed-copper-trapdoor { --i: -116; --j: -27; }
.waxed-exposed-copper-trapdoor { --i: -116; --j: -28; }
.waxed-weathered-copper-trapdoor { --i: -116; --j: -29; }
.waxed-oxidized-copper-trapdoor { --i: -116; --j: -30; }
.breeze-rod { --i: -116; --j: -31; }

/* ==========================================
   ROW 117 - TRIAL ITEMS & NEW UPDATES (32 items)
   ========================================== */
.wind-charge { --i: -117; --j: 0; }
.mace { --i: -117; --j: -1; }
.heavy-core { --i: -117; --j: -2; }
.trial-key { --i: -117; --j: -3; }
.ominous-trial-key { --i: -117; --j: -4; }
.trial-spawner { --i: -117; --j: -5; }
.vault { --i: -117; --j: -6; }
.wolf-armor { --i: -117; --j: -7; }
.armadillo-scute { --i: -117; --j: -8; }
.bush { --i: -117; --j: -9; }
.cactus-flower { --i: -117; --j: -10; }
.firefly-bush { --i: -117; --j: -11; }
.leaf-litter { --i: -117; --j: -12; }
.wildflowers { --i: -117; --j: -13; }
.short-dry-grass { --i: -117; --j: -14; }
.tall-dry-grass { --i: -117; --j: -15; }
.blue-egg { --i: -117; --j: -16; }
.brown-egg { --i: -117; --j: -17; }
.copper-nautilus-armor { --i: -117; --j: -18; }
.iron-nautilus-armor { --i: -117; --j: -19; }
.golden-nautilus-armor { --i: -117; --j: -20; }
.diamond-nautilus-armor { --i: -117; --j: -21; }
.netherite-nautilus-armor { --i: -117; --j: -22; }
.wooden-spear { --i: -117; --j: -23; }
.stone-spear { --i: -117; --j: -25; }
.copper-spear { --i: -117; --j: -26; }
.iron-spear { --i: -117; --j: -27; }
.golden-spear { --i: -117; --j: -24; }
.diamond-spear { --i: -117; --j: -28; }
.netherite-spear { --i: -117; --j: -29; }
.netherite-horse-armor { --i: -117; --j: -30; }
.pufferfish-bucket { --i: -117; --j: -31; }

/* ==========================================
   ROW 118 - COPPER TOOLS, ARMOR, BARS, CHAINS (32 items)
   ========================================== */
.copper-pickaxe { --i: -118; --j: 0; }
.copper-axe { --i: -118; --j: -1; }
.copper-shovel { --i: -118; --j: -2; }
.copper-hoe { --i: -118; --j: -3; }
.copper-sword { --i: -118; --j: -4; }
.copper-helmet { --i: -118; --j: -5; }
.copper-chestplate { --i: -118; --j: -6; }
.copper-leggings { --i: -118; --j: -7; }
.copper-boots { --i: -118; --j: -8; }
.copper-horse-armor { --i: -118; --j: -9; }
.copper-nugget { --i: -118; --j: -10; }
.copper-bars { --i: -118; --j: -11; }
.exposed-copper-bars { --i: -118; --j: -12; }
.weathered-copper-bars { --i: -118; --j: -13; }
.oxidized-copper-bars { --i: -118; --j: -14; }
.waxed-copper-bars { --i: -118; --j: -15; }
.waxed-exposed-copper-bars { --i: -118; --j: -16; }
.waxed-weathered-copper-bars { --i: -118; --j: -17; }
.waxed-oxidized-copper-bars { --i: -118; --j: -18; }
.copper-chain { --i: -118; --j: -19; }
.exposed-copper-chain { --i: -118; --j: -20; }
.weathered-copper-chain { --i: -118; --j: -21; }
.oxidized-copper-chain { --i: -118; --j: -22; }
.waxed-copper-chain { --i: -118; --j: -23; }
.waxed-exposed-copper-chain { --i: -118; --j: -24; }
.waxed-weathered-copper-chain { --i: -118; --j: -25; }
.waxed-oxidized-copper-chain { --i: -118; --j: -26; }
.copper-lantern { --i: -118; --j: -27; }
.exposed-copper-lantern { --i: -118; --j: -28; }
.weathered-copper-lantern { --i: -118; --j: -29; }
.oxidized-copper-lantern { --i: -118; --j: -30; }
.waxed-copper-lantern { --i: -118; --j: -31; }

/* ==========================================
   ROW 119 - LANTERNS, TORCH, CHESTS, GOLEMS, SHELVES (32 items)
   ========================================== */
.waxed-exposed-copper-lantern { --i: -119; --j: 0; }
.waxed-weathered-copper-lantern { --i: -119; --j: -1; }
.waxed-oxidized-copper-lantern { --i: -119; --j: -2; }
.copper-torch { --i: -119; --j: -3; }
.copper-chest { --i: -119; --j: -4; }
.exposed-copper-chest { --i: -119; --j: -5; }
.weathered-copper-chest { --i: -119; --j: -6; }
.oxidized-copper-chest { --i: -119; --j: -7; }
.waxed-copper-chest { --i: -119; --j: -8; }
.waxed-exposed-copper-chest { --i: -119; --j: -9; }
.waxed-weathered-copper-chest { --i: -119; --j: -10; }
.waxed-oxidized-copper-chest { --i: -119; --j: -11; }
.copper-golem-spawn-egg { --i: -119; --j: -12; }
.copper-golem-statue { --i: -119; --j: -13; }
.exposed-copper-golem-statue { --i: -119; --j: -14; }
.weathered-copper-golem-statue { --i: -119; --j: -15; }
.oxidized-copper-golem-statue { --i: -119; --j: -16; }
.waxed-copper-golem-statue { --i: -119; --j: -17; }
.waxed-exposed-copper-golem-statue { --i: -119; --j: -18; }
.waxed-weathered-copper-golem-statue { --i: -119; --j: -19; }
.waxed-oxidized-copper-golem-statue { --i: -119; --j: -20; }
.oak-shelf { --i: -119; --j: -21; }
.spruce-shelf { --i: -119; --j: -22; }
.birch-shelf { --i: -119; --j: -23; }
.jungle-shelf { --i: -119; --j: -24; }
.acacia-shelf { --i: -119; --j: -25; }
.dark-oak-shelf { --i: -119; --j: -26; }
.mangrove-shelf { --i: -119; --j: -27; }
.cherry-shelf { --i: -119; --j: -28; }
.bamboo-shelf { --i: -119; --j: -29; }
.crimson-shelf { --i: -119; --j: -30; }
.warped-shelf { --i: -119; --j: -31; }


/* ==========================================
   ROW 120 - PALE OAK SHELF (1 item)
   ========================================== */
.pale-oak-shelf { --i: -120; --j: 0; }
.stripped-pale-oak-log { --i: -120; --j: -3; }
.stripped-pale-oak-wood { --i: -120; --j: -4; }
.crafter { --i: -120; --j: -5; }
.pale-oak-leaves { --i: -120; --j: -6; }
.ominous-bottle-1 { --i: -120; --j: -7; }
.ominous-bottle-2 { --i: -120; --j: -7; }
.ominous-bottle-3 { --i: -120; --j: -7; }
.ominous-bottle-4 { --i: -120; --j: -7; }
.ominous-bottle-5 { --i: -120; --j: -7; }

/* Cinnabar Family */
.cinnabar { --i: -120; --j: -8; }
.cinnabar-stairs { --i: -120; --j: -9; }
.cinnabar-slab { --i: -120; --j: -10; }
.cinnabar-wall { --i: -120; --j: -11; }
.polished-cinnabar { --i: -120; --j: -12; }
.polished-cinnabar-stairs { --i: -120; --j: -13; }
.polished-cinnabar-slab { --i: -120; --j: -14; }
.polished-cinnabar-wall { --i: -120; --j: -15; }
.cinnabar-bricks { --i: -120; --j: -16; }
.cinnabar-brick-stairs { --i: -120; --j: -17; }
.cinnabar-brick-slab { --i: -120; --j: -18; }
.cinnabar-brick-wall { --i: -120; --j: -19; }
.chiseled-cinnabar { --i: -120; --j: -20; }

/* Sulfur Family */
.sulfur { --i: -120; --j: -21; }
.sulfur-stairs { --i: -120; --j: -22; }
.sulfur-slab { --i: -120; --j: -23; }
.sulfur-wall { --i: -120; --j: -24; }
.polished-sulfur { --i: -120; --j: -25; }
.polished-sulfur-stairs { --i: -120; --j: -26; }
.polished-sulfur-slab { --i: -120; --j: -27; }
.polished-sulfur-wall { --i: -120; --j: -28; }
.sulfur-bricks { --i: -120; --j: -29; }
.sulfur-brick-stairs { --i: -120; --j: -30; }
.sulfur-brick-slab { --i: -120; --j: -31; }

/* Note: Row limit reached at -31. If you need more, the next items would start a new row. */
.sulfur-brick-wall { --i: -121; --j: 0; }
.chiseled-sulfur { --i: -121; --j: -1; }
.potent-sulfur { --i: -121; --j: -2; }

