{"id":153136,"date":"2026-06-09T09:35:58","date_gmt":"2026-06-09T06:35:58","guid":{"rendered":"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/"},"modified":"2026-06-09T09:35:58","modified_gmt":"2026-06-09T06:35:58","slug":"terra-math","status":"publish","type":"mod","link":"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/","title":{"rendered":"TerraMath"},"content":{"rendered":"<p>![Discord](https:\/\/discord.gg\/JgKTZEtNkg)<br \/>\n![Modrinth](https:\/\/modrinth.com\/mod\/terra-math)<br \/>\n![Curseforge](https:\/\/www.curseforge.com\/minecraft\/mc-mods\/terra-math)<br \/>\n![GitHub](https:\/\/github.com\/addavriance\/TerraMath)<\/p>\n<p>![Fabric API](https:\/\/www.curseforge.com\/minecraft\/mc-mods\/fabric-api)<br \/>\n![Minecraft](https:\/\/www.minecraft.net)<\/p>\n<p>## Description<\/p>\n<p>TerraMath is a Minecraft 1.20 &#8211; 1.21.x mod that allows you to customize world generation using mathematical functions. Create unique landscapes by defining terrain height through mathematical formulas!<\/p>\n<p>You can also join my Discord to find more formulas or share yours.<\/p>\n<p>## Features<\/p>\n<p>&#8211; Custom world generation through mathematical formulas<br \/>\n&#8211; Adjustable basic generation parameters (scale, height, variation, smoothing)<br \/>\n&#8211; Configurable noise overlay on top of your base formula<br \/>\n&#8211; Support for mathematical constants in formulas<\/p>\n<p>## How to Use on Client<\/p>\n<p><img decoding=\"async\" width=\"500\" alt=\"image\" src=\"https:\/\/github.com\/user-attachments\/assets\/4b1aabc7-46a3-43c6-8bb1-b7da88c68553\"\/><\/p>\n<p>&#8211; World generation settings interface<\/p>\n<p>### Parameter Configuration<\/p>\n<p>1. Go to &#8220;World&#8221; tab in world creation screen<br \/>\n2. Open the terrain settings screen<br \/>\n3. Enter your desired formula in the field<br \/>\n4. Adjust additional parameters (optional):<br \/>\n   &#8211; Scale<br \/>\n   &#8211; Base Height (determines average surface level)<br \/>\n   &#8211; Height Variation (amplitude of changes)<br \/>\n   &#8211; Smoothing (terrain transition smoothness)<br \/>\n5. Choose noise type and settings (optional):<br \/>\n   &#8211; Noise type: Perlin, Simplex, Blended, Normal<br \/>\n   &#8211; X, Y, Z coordinate multipliers<br \/>\n   &#8211; General noise height multiplier<\/p>\n<p>## How to Use on Server<\/p>\n<p>1. Start the server with TerraMath mod installed<br \/>\n2. Check the config folder, there will be a `terramath.json` file<br \/>\n3. Set the necessary parameters manually in the file, or&#8230;<br \/>\n4. &#8230;configure the mod on your client<br \/>\n5. Set the parameters and save the config<br \/>\n6. Transfer the config file to the server&#8217;s config folder<\/p>\n<p>### Important Server Notes:<\/p>\n<p>&#8211; For the config to apply to a new world, make sure the `useDefaultFormula` parameter in the config is set to `true`<br \/>\n&#8211; After changing config settings, you&#8217;ll need to delete the existing world and restart the server for the new terrain formula to take effect<br \/>\n&#8211; Alternatively, you can transfer your entire world folder from a client to the server &#8211; the world will continue to generate according to the same formula without requiring config changes<\/p>\n<p>### Formula Examples<\/p>\n<p>&#8211; <\/p>\n<details>\n<summary>Basic wavy landscape: <code>sin(x)<\/code><\/summary>\n<p><img decoding=\"async\" width=\"594\" alt=\"image\" src=\"https:\/\/github.com\/user-attachments\/assets\/9dc1c9c6-0b11-41d7-85cd-313291554d7d\"><\/details>\n<p>&#8211; <\/p>\n<details>\n<summary>Spiky volcanic-like terrain with steep slopes: <code>abs(sin(x\/10))*exp(cos(z\/15))*8 + tanh(sqrt(x^2 + z^2)\/20)*15<\/code><\/summary>\n<p><img decoding=\"async\" width=\"594\" alt=\"image\" src=\"https:\/\/github.com\/user-attachments\/assets\/901f9f26-dc73-440f-903f-a728635db75e\"><\/details>\n<p>&#8211; <\/p>\n<details>\n<summary>Rolling mountains: <code>sin(x\/8)*cos(z\/8)*10 + abs(sin(x\/20))*15 + sqrt(abs(x\/10))*5<\/code><\/summary>\n<p><img decoding=\"async\" width=\"594\" alt=\"image\" src=\"https:\/\/github.com\/user-attachments\/assets\/8cc633e7-ae47-4df0-802c-5c8ee0d60a84\"><\/details>\n<p>&#8211; <\/p>\n<details>\n<summary>Some crazy and heavy thing: <code>round(sin(x\/15))*10 + round(cos(z\/15))*10 + sqrt(abs(sin((x+z)\/20)))*15<\/code><\/summary>\n<p><img decoding=\"async\" width=\"594\" alt=\"image\" src=\"https:\/\/github.com\/user-attachments\/assets\/e29e4b4d-3f7b-46a0-ae7e-b31ed41fff85\"><\/details>\n<p>&#8211; <\/p>\n<details>\n<summary>Terraced landscape with plateaus: <code>floor(sin(x\/20) * cos(z\/20) * 5) * 4 + sqrt(x^2 + z^2)\/10<\/code><\/summary>\n<p><img decoding=\"async\" width=\"594\" alt=\"image\" src=\"https:\/\/github.com\/user-attachments\/assets\/7f6048d9-5ca4-4fb7-81d5-0a9d58ce22f3\"\/><\/details>\n<p>&#8211; <\/p>\n<details>\n<summary>Crater-filled terrain: <code>10 * (1 - exp(-((x\/30)^2 + (z\/30)^2) \/ 2)) + 5 * perlin(x\/50, 0, z\/50)<\/code><\/summary>\n<p><img decoding=\"async\" width=\"594\" alt=\"image\" src=\"https:\/\/github.com\/user-attachments\/assets\/a4e3d786-7dd9-4bd0-aed3-ba3e043b6b18\"\/><\/details>\n<p>### Available Functions and Operators<\/p>\n<p>&#8220;`<br \/>\nMathematical Functions:<\/p>\n<p>Trigonometric:<br \/>\n&#8211; sin(x) &#8211; sine<br \/>\n&#8211; cos(x) &#8211; cosine<br \/>\n&#8211; tan(x) &#8211; tangent<br \/>\n&#8211; csc(x) &#8211; cosecant<br \/>\n&#8211; sec(x) &#8211; secant<br \/>\n&#8211; cot(x) &#8211; cotangent<br \/>\n&#8211; asin(x) &#8211; inverse sine<br \/>\n&#8211; acos(x) &#8211; inverse cosine<br \/>\n&#8211; atan(x) &#8211; inverse tangent<br \/>\n&#8211; atan2(x,y) &#8211; two-argument inverse tangent<br \/>\n&#8211; acsc(x) &#8211; inverse cosecant<br \/>\n&#8211; asec(x) &#8211; inverse secant<br \/>\n&#8211; acot(x) &#8211; inverse cotangent<\/p>\n<p>Hyperbolic:<br \/>\n&#8211; sinh(x) &#8211; hyperbolic sine<br \/>\n&#8211; cosh(x) &#8211; hyperbolic cosine<br \/>\n&#8211; tanh(x) &#8211; hyperbolic tangent<br \/>\n&#8211; asinh(x) &#8211; inverse hyperbolic sine<br \/>\n&#8211; acosh(x) &#8211; inverse hyperbolic cosine<br \/>\n&#8211; atanh(x) &#8211; inverse hyperbolic tangent<br \/>\n&#8211; csch(x) &#8211; hyperbolic cosecant<br \/>\n&#8211; sech(x) &#8211; hyperbolic secant<br \/>\n&#8211; coth(x) &#8211; hyperbolic cotangent<br \/>\n&#8211; acsch(x) &#8211; inverse hyperbolic cosecant<br \/>\n&#8211; asech(x) &#8211; inverse hyperbolic secant<br \/>\n&#8211; acoth(x) &#8211; inverse hyperbolic cotangent<\/p>\n<p>Root and Power:<br \/>\n&#8211; sqrt(x) &#8211; square root<br \/>\n&#8211; cbrt(x) &#8211; cube root<br \/>\n&#8211; root(x,n) &#8211; nth root of x<br \/>\n&#8211; pow(x,y) &#8211; x raised to power y<br \/>\n&#8211; exp(x) &#8211; exponential (e^x)<\/p>\n<p>Logarithmic:<br \/>\n&#8211; ln(x) &#8211; natural logarithm<br \/>\n&#8211; lg(x) &#8211; base-10 logarithm<\/p>\n<p>Rounding and Numbers:<br \/>\n&#8211; abs(x) &#8211; absolute value<br \/>\n&#8211; floor(x) &#8211; largest integer less than x<br \/>\n&#8211; ceil(x) &#8211; smallest integer greater than x<br \/>\n&#8211; round(x) &#8211; rounds to nearest integer<br \/>\n&#8211; sign(x) &#8211; returns sign of x (-1, 0, or 1)<br \/>\n&#8211; mod(x,y) &#8211; remainder of x divided by y<br \/>\n&#8211; gcd(x,y) &#8211; greatest common divisor<br \/>\n&#8211; lcm(x,y) &#8211; least common multiple<br \/>\n&#8211; modi(x,y) &#8211; modular inverse<\/p>\n<p>Special Functions:<br \/>\n&#8211; gamma(x) &#8211; gamma function<br \/>\n&#8211; erf(x) &#8211; error function<br \/>\n&#8211; beta(x,y) &#8211; beta function<\/p>\n<p>Random Number Generation:<br \/>\n&#8211; rand() &#8211; random number between 0 and 1<br \/>\n&#8211; randnormal(mean,stdev) &#8211; random number from normal distribution<br \/>\n&#8211; randrange(min,max) &#8211; random number between min and max<\/p>\n<p>Noise Functions:<br \/>\n&#8211; perlin(x,y,z) &#8211; perlin noise<br \/>\n&#8211; simplex(x,y,z) &#8211; simplex noise<br \/>\n&#8211; normal(x,y,z) &#8211; normal noise<br \/>\n&#8211; blended(x,y,z) &#8211; blended noise<br \/>\n&#8211; octaved(x,z,octaves,persistence) &#8211; octaved noise<\/p>\n<p>Utility Functions:<br \/>\n&#8211; max(x,y) &#8211; maximum of x and y<br \/>\n&#8211; min(x,y) &#8211; minimum of x and y<br \/>\n&#8211; sigmoid(x) &#8211; sigmoid function (1\/(1+e^-x))<br \/>\n&#8211; clamp(x,min,max) &#8211; constrains x between min and max<\/p>\n<p>Constants:<br \/>\n&#8211; pi, \u03c0 &#8211; 3.14159&#8230; (\u03c0 constant)<br \/>\n&#8211; e &#8211; 2.71828&#8230; (Euler&#8217;s number)<br \/>\n&#8211; phi, \u03c6 &#8211; 1.61803&#8230; (Golden ratio)<br \/>\n&#8211; zeta3, \u03b63 &#8211; 1.20205&#8230; (Ap\u00e9ry&#8217;s constant)<br \/>\n&#8211; catalan, K &#8211; 0.91596&#8230; (Catalan&#8217;s constant)<br \/>\n&#8211; alpha, \u03b1, feigenbaum &#8211; 2.50290&#8230; (Feigenbaum constant)<br \/>\n&#8211; delta, \u03b4, feigenbaumdelta &#8211; 4.66920&#8230; (Feigenbaum delta)<br \/>\n&#8211; omega, \u03a9 &#8211; 0.6889 (Cosmological constant)<\/p>\n<p>Variables:<br \/>\nx, y, z &#8211; block coordinates in world<\/p>\n<p>Operators:<br \/>\n+, -, *, \/, ^, (), !<br \/>\n&#8220;`<\/p>\n<p>## Known Issues<\/p>\n<p>&#8211; Extreme formulas that produce XXL landscapes may impact performance (probably not a completely solvable problem)<br \/>\n&#8211; Random number generation functions can significantly impact world generation performance when used extensively. Consider using these functions sparingly, especially in complex terrain formulas, as they may cause frame rate drops or increased chunk loading time<\/p>\n<p>## Contributing<\/p>\n<p>Feel free to report bugs or suggest features through the issue tracker!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Create custom terrain using mathematical functions and formulas for unique procedural world generation.<\/p>\n","protected":false},"featured_media":153137,"template":"","meta":{"_minecraft_slug":"terra-math","_minecraft_project_id":"GnBLgjvP","_minecraft_author":"addavriance","_minecraft_license":"GPL-3.0-only","_minecraft_downloads":18134,"_minecraft_follows":138,"_minecraft_client_side":"optional","_minecraft_server_side":"required","_minecraft_storage_type":"zip","_minecraft_archive_name":"terra-math.zip","_minecraft_size_bytes":7051852,"_minecraft_version_count":10,"_minecraft_updated_at":"2026-05-16T21:01:06.913944Z","_minecraft_date_created":"2024-11-30T08:14:04.123070Z","_minecraft_date_modified":"2025-05-13T00:34:19.246382Z","_minecraft_project_url":"https:\/\/modrinth.com\/mod\/terra-math","_minecraft_icon_attachment_id":153137,"_minecraft_imported_at":"2026-06-09T06:35:59+00:00","_minecraft_import_hash":"1c45bbcc7cdeb7e7f87e8fffc894e2c8","_minecraft_versions":"","_minecraft_links":"","_minecraft_gallery":"","_minecraft_api_metadata":""},"mod_category":[87,43,97,104,159],"mod_loader":[99,106],"minecraft_version":[59,36,60,93,94,101,102,62,37,73,74,38],"class_list":["post-153136","mod","type-mod","status-publish","has-post-thumbnail","hentry","mod_category-adventure","mod_category-cursed","mod_category-fabric","mod_category-forge","mod_category-worldgen","mod_loader-fabric","mod_loader-forge","minecraft_version-1-20","minecraft_version-1-20-1","minecraft_version-1-20-2","minecraft_version-1-20-3","minecraft_version-1-20-4","minecraft_version-1-20-5","minecraft_version-1-20-6","minecraft_version-1-21","minecraft_version-1-21-1","minecraft_version-1-21-2","minecraft_version-1-21-3","minecraft_version-1-21-4"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>TerraMath - Minecraft<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"TerraMath - Minecraft\" \/>\n<meta property=\"og:description\" content=\"Create custom terrain using mathematical functions and formulas for unique procedural world generation.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/\" \/>\n<meta property=\"og:site_name\" content=\"Minecraft\" \/>\n<meta property=\"og:image\" content=\"https:\/\/github.com\/user-attachments\/assets\/4b1aabc7-46a3-43c6-8bb1-b7da88c68553\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/terra-math\\\/\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/terra-math\\\/\",\"name\":\"TerraMath - Minecraft\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/terra-math\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/terra-math\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/terra-math-icon-02591ba002890f088c270d4d514f4332bc976d03_96.webp\",\"datePublished\":\"2026-06-09T06:35:58+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/terra-math\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/terra-math\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/terra-math\\\/#primaryimage\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/terra-math-icon-02591ba002890f088c270d4d514f4332bc976d03_96.webp\",\"contentUrl\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/terra-math-icon-02591ba002890f088c270d4d514f4332bc976d03_96.webp\",\"width\":96,\"height\":96},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/terra-math\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Mods\",\"item\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/mods\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"TerraMath\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/#website\",\"url\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/\",\"name\":\"Minecraft\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/vpesports.com\\\/minecraft\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"TerraMath - Minecraft","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/","og_locale":"en_US","og_type":"article","og_title":"TerraMath - Minecraft","og_description":"Create custom terrain using mathematical functions and formulas for unique procedural world generation.","og_url":"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/","og_site_name":"Minecraft","og_image":[{"url":"https:\/\/github.com\/user-attachments\/assets\/4b1aabc7-46a3-43c6-8bb1-b7da88c68553","type":"","width":"","height":""}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/","url":"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/","name":"TerraMath - Minecraft","isPartOf":{"@id":"https:\/\/vpesports.com\/minecraft\/#website"},"primaryImageOfPage":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/#primaryimage"},"image":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/#primaryimage"},"thumbnailUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/terra-math-icon-02591ba002890f088c270d4d514f4332bc976d03_96.webp","datePublished":"2026-06-09T06:35:58+00:00","breadcrumb":{"@id":"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/#primaryimage","url":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/terra-math-icon-02591ba002890f088c270d4d514f4332bc976d03_96.webp","contentUrl":"https:\/\/vpesports.com\/minecraft\/wp-content\/uploads\/2026\/06\/terra-math-icon-02591ba002890f088c270d4d514f4332bc976d03_96.webp","width":96,"height":96},{"@type":"BreadcrumbList","@id":"https:\/\/vpesports.com\/minecraft\/mods\/terra-math\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/vpesports.com\/minecraft\/"},{"@type":"ListItem","position":2,"name":"Mods","item":"https:\/\/vpesports.com\/minecraft\/mods\/"},{"@type":"ListItem","position":3,"name":"TerraMath"}]},{"@type":"WebSite","@id":"https:\/\/vpesports.com\/minecraft\/#website","url":"https:\/\/vpesports.com\/minecraft\/","name":"Minecraft","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/vpesports.com\/minecraft\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod\/153136","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod"}],"about":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/types\/mod"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media\/153137"}],"wp:attachment":[{"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/media?parent=153136"}],"wp:term":[{"taxonomy":"mod_category","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_category?post=153136"},{"taxonomy":"mod_loader","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/mod_loader?post=153136"},{"taxonomy":"minecraft_version","embeddable":true,"href":"https:\/\/vpesports.com\/minecraft\/wp-json\/wp\/v2\/minecraft_version?post=153136"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}