Fix lazy-loaded images are not visible in Kinja sites (#590)

* Add initial test case for kinja's lazy image

* Implement method to remove small data uri image

* Convert relative uri in poster and srcset of media nodes

* Eslint doesn't like arrow function

* Unescape HTML entities in metadata

* Fix wrong regex for parsing srcset urls

* Remove line to check data url since it already handled by new URL

* Replace String.matchAll since it only supported in Node 12+

* Use numeric code when unescaping HTML

* Don't remove data URL src if it's svg

* Don't remove b64 src if it's the only attr that contains image

* Make the comma part non-optional in regex for srcset url

* Fix wrong code for unescaping HTML

* Don't capture comma and semicolon in data URL regex
pull/607/head
Radhi 4 years ago committed by GitHub
parent d5621f85e7
commit 52ab9b5c89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -131,6 +131,8 @@ Readability.prototype = {
prevLink: /(prev|earl|old|new|<|«)/i,
whitespace: /^\s*$/,
hasContent: /\S$/,
srcsetUrl: /(\S+)(\s+[\d.]+[xw])?(\s*(?:,|$))/g,
b64DataUrl: /^data:\s*([^\s;,]+)\s*;\s*base64\s*,/i
},
DIV_TO_P_ELEMS: [ "A", "BLOCKQUOTE", "DL", "DIV", "IMG", "OL", "P", "PRE", "TABLE", "UL", "SELECT" ],
@ -155,6 +157,15 @@ Readability.prototype = {
// These are the classes that readability sets itself.
CLASSES_TO_PRESERVE: [ "page" ],
// These are the list of HTML entities that need to be escaped.
HTML_ESCAPE_MAP: {
"lt": "<",
"gt": ">",
"amp": "&",
"quot": '"',
"apos": "'",
},
/**
* Run any post-process modifications to article content as necessary.
*
@ -328,6 +339,7 @@ Readability.prototype = {
if (baseURI == documentURI && uri.charAt(0) == "#") {
return uri;
}
// Otherwise, resolve against base URI:
try {
return new URL(uri, baseURI).href;
@ -362,11 +374,29 @@ Readability.prototype = {
}
});
var imgs = this._getAllNodesWithTag(articleContent, ["img"]);
this._forEachNode(imgs, function(img) {
var src = img.getAttribute("src");
var medias = this._getAllNodesWithTag(articleContent, [
"img", "picture", "figure", "video", "audio", "source"
]);
this._forEachNode(medias, function(media) {
var src = media.getAttribute("src");
var poster = media.getAttribute("poster");
var srcset = media.getAttribute("srcset");
if (src) {
img.setAttribute("src", toAbsoluteURI(src));
media.setAttribute("src", toAbsoluteURI(src));
}
if (poster) {
media.setAttribute("poster", toAbsoluteURI(poster));
}
if (srcset) {
var newSrcset = srcset.replace(this.REGEXPS.srcsetUrl, function(_, p1, p2, p3) {
return toAbsoluteURI(p1) + (p2 || "") + p3;
});
media.setAttribute("srcset", newSrcset);
}
});
},
@ -1239,6 +1269,26 @@ Readability.prototype = {
return false;
},
/**
* Converts some of the common HTML entities in string to their corresponding characters.
*
* @param str {string} - a string to unescape.
* @return string without HTML entity.
*/
_unescapeHtmlEntities: function(str) {
if (!str) {
return str;
}
var htmlEscapeMap = this.HTML_ESCAPE_MAP;
return str.replace(/&(quot|amp|apos|lt|gt);/g, function(_, tag) {
return htmlEscapeMap[tag];
}).replace(/&#(?:x([0-9a-z]{1,4})|([0-9]{1,4}));/gi, function(_, hex, numStr) {
var num = parseInt(hex || numStr, hex ? 16 : 10);
return String.fromCharCode(num);
});
},
/**
* Attempts to get excerpt and byline metadata for the article.
*
@ -1319,6 +1369,13 @@ Readability.prototype = {
// get site name
metadata.siteName = values["og:site_name"];
// in many sites the meta value is escaped with HTML entities,
// so here we need to unescape it
metadata.title = this._unescapeHtmlEntities(metadata.title);
metadata.byline = this._unescapeHtmlEntities(metadata.byline);
metadata.excerpt = this._unescapeHtmlEntities(metadata.excerpt);
metadata.siteName = this._unescapeHtmlEntities(metadata.siteName);
return metadata;
},
@ -1745,30 +1802,67 @@ Readability.prototype = {
/* convert images and figures that have properties like data-src into images that can be loaded without JS */
_fixLazyImages: function (root) {
this._forEachNode(this._getAllNodesWithTag(root, ["img", "picture", "figure"]), function (elem) {
// also check for "null" to work around https://github.com/jsdom/jsdom/issues/2580
if ((!elem.src && (!elem.srcset || elem.srcset == "null")) || elem.className.toLowerCase().indexOf("lazy") !== -1) {
// In some sites (e.g. Kotaku), they put 1px square image as base64 data uri in the src attribute.
// So, here we check if the data uri is too short, just might as well remove it.
if (elem.src && this.REGEXPS.b64DataUrl.test(elem.src)) {
// Make sure it's not SVG, because SVG can have a meaningful image in under 133 bytes.
var parts = this.REGEXPS.b64DataUrl.exec(elem.src);
if (parts[1] === "image/svg+xml") {
return;
}
// Make sure this element has other attributes which contains image.
// If it doesn't, then this src is important and shouldn't be removed.
var srcCouldBeRemoved = false;
for (var i = 0; i < elem.attributes.length; i++) {
var attr = elem.attributes[i];
if (attr.name === "src" || attr.name === "srcset") {
if (attr.name === "src") {
continue;
}
var copyTo = null;
if (/\.(jpg|jpeg|png|webp)\s+\d/.test(attr.value)) {
copyTo = "srcset";
} else if (/^\s*\S+\.(jpg|jpeg|png|webp)\S*\s*$/.test(attr.value)) {
copyTo = "src";
if (/\.(jpg|jpeg|png|webp)/i.test(attr.value)) {
srcCouldBeRemoved = true;
break;
}
}
// Here we assume if image is less than 100 bytes (or 133B after encoded to base64)
// it will be too small, therefore it might be placeholder image.
if (srcCouldBeRemoved) {
var b64starts = elem.src.search(/base64\s*/i) + 7;
var b64length = elem.src.length - b64starts;
if (b64length < 133) {
elem.removeAttribute("src");
}
if (copyTo) {
//if this is an img or picture, set the attribute directly
if (elem.tagName === "IMG" || elem.tagName === "PICTURE") {
elem.setAttribute(copyTo, attr.value);
} else if (elem.tagName === "FIGURE" && !this._getAllNodesWithTag(elem, ["img", "picture"]).length) {
//if the item is a <figure> that does not contain an image or picture, create one and place it inside the figure
//see the nytimes-3 testcase for an example
var img = this._doc.createElement("img");
img.setAttribute(copyTo, attr.value);
elem.appendChild(img);
}
}
}
// also check for "null" to work around https://github.com/jsdom/jsdom/issues/2580
if ((elem.src || (elem.srcset && elem.srcset != "null")) && elem.className.toLowerCase().indexOf("lazy") === -1) {
return;
}
for (var j = 0; j < elem.attributes.length; j++) {
attr = elem.attributes[j];
if (attr.name === "src" || attr.name === "srcset") {
continue;
}
var copyTo = null;
if (/\.(jpg|jpeg|png|webp)\s+\d/.test(attr.value)) {
copyTo = "srcset";
} else if (/^\s*\S+\.(jpg|jpeg|png|webp)\S*\s*$/.test(attr.value)) {
copyTo = "src";
}
if (copyTo) {
//if this is an img or picture, set the attribute directly
if (elem.tagName === "IMG" || elem.tagName === "PICTURE") {
elem.setAttribute(copyTo, attr.value);
} else if (elem.tagName === "FIGURE" && !this._getAllNodesWithTag(elem, ["img", "picture"]).length) {
//if the item is a <figure> that does not contain an image or picture, create one and place it inside the figure
//see the nytimes-3 testcase for an example
var img = this._doc.createElement("img");
img.setAttribute(copyTo, attr.value);
elem.appendChild(img);
}
}
}

@ -0,0 +1,8 @@
{
"title": "Document",
"byline": null,
"dir": null,
"excerpt": "Lorem ipsum dolor sit amet consectetur adipisicing elit. Natus eaque totam provident obcaecati nisi praesentium iusto velit fuga debitis quidem ut repellat corrupti, eligendi inventore quibusdam perspiciatis delectus omnis pariatur excepturi quasi fugit? A adipisci natus nostrum, qui aperiam, at culpa corrupti autem enim earum vitae. Nostrum et officiis facere ex recusandae tenetur, delectus odit provident soluta id perferendis ducimus quibusdam corporis rerum voluptatem architecto sequi beatae quod mollitia voluptatibus earum tempora inventore ut. Deserunt reprehenderit recusandae nostrum, eaque fuga cum, repellat, perspiciatis ducimus in non consequatur ratione. Sint rerum necessitatibus deleniti odio earum voluptatum eos modi ab dolor minus.",
"siteName": null,
"readerable": true
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

@ -0,0 +1,8 @@
{
"title": "The Spectacular Story Of Metroid, One Of Gaming's Richest Universes",
"byline": "Mama Robotnik",
"dir": null,
"excerpt": "Nothing beats the passion of a true fan writing about something they love. That's what you're about to see here: one of the richest, most amazing tributes to a great gaming series that we've ever run on Kotaku. Warning #1: this one might make your browser chug, so close your other tabs. Warning #2: This piece might make it hurt a little more than there are no new Metroid games from Nintendo on the horizon.",
"siteName": "Kotaku",
"readerable": true
}

@ -0,0 +1,723 @@
<div id="readability-page-1" class="page">
<div>
<figure data-id="18zu12g5xzyxojpg" data-recommend-id="image://18zu12g5xzyxojpg" data-format="jpg" data-width="970" data-height="546" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zu12g5xzyxojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zu12g5xzyxojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zu12g5xzyxojpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zu12g5xzyxojpg.jpg 800w" draggable="auto" data-chomp-id="18zu12g5xzyxojpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zu12g5xzyxojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zu12g5xzyxojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zu12g5xzyxojpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zu12g5xzyxojpg.jpg 800w" />
</p>
</div>
</div>
</figure>
<p>
<em>Nothing beats the passion of a true fan writing about something they love. That's what you're about to see here: one of the richest, most amazing tributes to a great gaming series that we've ever run on</em> Kotaku<em>. <strong>Warning #1:</strong> this one might make your browser chug, so close your other tabs. <strong>Warning #2:</strong> This piece might make it hurt a little more than there are no new</em> Metroid <em>games from Nintendo on the horizon.</em>
</p>
<p>
<em>Please note that this is the first half of Mama Robotnik's massive</em> Metroid <em>story.</em> <span><a data-ga="[[&quot;Embedded Url&quot;,&quot;Internal link&quot;,&quot;https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108&quot;,{&quot;metric25&quot;:1}]]" href="https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108"><em>The second half can be found here</em></a></span><em>. The entire post is a greatly-expanded version of</em> <span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://www.neogaf.com/forum/showthread.php?t=649215&quot;,{&quot;metric25&quot;:1}]]" href="http://www.neogaf.com/forum/showthread.php?t=649215" target="_blank" rel="noopener noreferrer"><em>a post</em></a></span> <em>that Mama Robotnik originally published on the NeoGAF forum before revising and reworking it for Kotaku. Take it away, MR...</em>
</p>
<p> Nintendos <em>Metroid</em> series tells us of a malevolent and vicious universe. Its a maelstrom in which benevolent races are routinely extinguished, and corrupt empires wage war for ownership of living weapons. </p>
<p> Its a place in which xenocide is a commissioned service, and grievances are resolved with planetary apocalypses. Everything is chaotically connected to a dead race of avian prophetic poets fighting a war throughout the cosmos. Its a dark place to visit. </p>
<p> There are two purposes to this article: to explore the expansive lore of the <em>Metroid</em> universe with speculation to fill in the gaps and to exhibit some extraordinary <em>Metroid</em>-inspired art. All artwork is credited to its original source follow the links to see further works of these spectacular artists. </p>
<h3 id="h3288">
<a id=""></a>Notes on Speculation and Lore </h3>
<p> The games tell us much about this hostile universe, but there are a lot of unresolved story points. In response to these mysteries, the article will provide a healthy amount of speculation. You can consider the piece to be either a makeshift timeline illustrated with fan-artwork, or simply an enthusiastic attempt to reconcile the series continuity into a cohesive whole. The article is informed by the extensive research previously performed by its author. The approach taken regarding speculation is thus: The logical inclusion of probable events that resolve mysteries, while maintaining the themes of the series. </p>
<p> Before we begin, lets briefly revisit the five points of essential lore: </p>
<ul data-type="List" data-style="Bullet">
<li>Metroids are a genetically-engineered species, created by the Chozo in the prehistory of the games. By the time the first entry begins, Metroid creatures only exist on the planet SR388. At some point long before the games, there was also a Metroid presence on the planet Phaaze. </li>
</ul>
<p>
<em>(Metroid IL Return of Samus, Metroid Prime III: Corruption and Metroid Fusion)</em>
</p>
<ul data-type="List" data-style="Bullet">
<li>At least some Chozo possessed a native ability to see into the future. </li>
</ul>
<p>
<em>(Metroid: Zero Mission and Metroid Prime)</em>
</p>
<ul data-type="List" data-style="Bullet">
<li>The Chozo discovered the living planet Phaaze with their Elysian Research Outpost. We are not told what transpired immediately after this discovery, but something happened that caused at least one Metroid organism to appear on Phaaze. The planet then loaded this creature along with pieces Chozo-style powersuit armour, into a Phazon seed and launched it towards a heavily populated Chozo planet. This seed impacted Tallon IV and is contained by the Chozo within an impenetrable shield. The mutated superevolved Metroid creature within clad in crafted power armour is trapped in the shield until Samus Aran deactivated it thousands of years later. </li>
</ul>
<p>
<em>(Metroid Prime EU release, Metroid Prime III: Corruption and Metroid Prime Trilogy)</em>
</p>
<ul data-type="List" data-style="Bullet">
<li>There are living planets in the <em>Metroid</em> Universe. Phaaze is explicitly referred to as being alive, and could interact with a sentient mind as shown when a Galactic Federation Aurora Unit is implanted. The planet SR388 could be interpreted as having some form of sentience it shook with apparent anger when its creatures were killed by Samus Aran, and precisely manipulated its oceans to lure the bounty hunter into hostile situations. (Metroid II: Return of Samus and Metroid Prime III: Corruption). The immediate backstory to the first game in the series is the discovery of the planet SR388. The final event of the final game in the chronology is the final destruction of SR388. </li>
</ul>
<p>
<em>(Metroid, Metroid II: Return of Samus)</em>
</p>
<h3 id="h3289">
<a id=""></a>Referencing </h3>
<p> Each story section includes one or more of the below superscript annotations, to help inform the reader as to where the lore or speculation comes from. A brief key: </p>
<figure data-id="18zqfwc3l0k28gif" data-recommend-id="image://18zqfwc3l0k28gif" data-format="gif" data-width="640" data-height="128" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
</div>
</div>
</figure>
<p> With all that said, let us begin. </p>
<h2 id="h3290">
<a id=""></a>Part One: The Wars in Heaven </h2>
<h3 id="h3291">
<a id=""></a>The Living Planet </h3>
<figure data-id="18zqg21aub0sljpg" data-recommend-id="image://18zqg21aub0sljpg" data-format="jpg" data-width="640" data-height="488" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg21aub0sljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg21aub0sljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg21aub0sljpg.jpg 470w" draggable="auto" data-chomp-id="18zqg21aub0sljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg21aub0sljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg21aub0sljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg21aub0sljpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p>
<em>(</em><span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Chozo-dramatic-97410107&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Chozo-dramatic-97410107" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span><em>)</em>
</p>
<p> On an unknown planet in the universe, a race of avian humanoids evolved. The species that will come to be known as the Chozo possessed great strength, agility and intelligence. The species is peaceful, and is driven by a social/religious value that nature is sacred. [M1 / MP] </p>
<figure data-id="18zqg86aaay9kjpg" data-recommend-id="image://18zqg86aaay9kjpg" data-format="jpg" data-width="640" data-height="575" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg86aaay9kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg86aaay9kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg86aaay9kjpg.jpg 470w" draggable="auto" data-chomp-id="18zqg86aaay9kjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqg86aaay9kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqg86aaay9kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqg86aaay9kjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Chozo-Goddess-121103720&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Chozo-Goddess-121103720" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>) </p>
<p> Certain blessed individuals were born with a unique gift the vague comprehension of events set to take place in the distant future. Driven by these prophecies, the race advanced quickly and became space faring. With abstract predictions of a hostile universe, the Chozo developed powered armour and armaments to defend themselves. Prepared for whatever hostility awaited them, the Chozo explored the stars. [M1 / MP / MP SP] </p>
<figure data-id="18zqgmn6fovtyjpg" data-recommend-id="image://18zqgmn6fovtyjpg" data-format="jpg" data-width="640" data-height="409" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgmn6fovtyjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgmn6fovtyjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgmn6fovtyjpg.jpg 470w" draggable="auto" data-chomp-id="18zqgmn6fovtyjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgmn6fovtyjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgmn6fovtyjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgmn6fovtyjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<em>Artist: Elearia</em>) </p>
<p> The Chozo discovered that despite their prophets visions of a chaotic and warring universe the cosmos was enjoying a prolonged period of peace and enlightenment. First contact was made with a number of old and wise races, such as the Ylla, the Nkren, the Bryyonians, the Alimbic and the Luminoth. The species shared their cultures and technology, and gently colonised wild worlds such as Aether, Elysia, and Tallon IV. [MP / MPH / MP2 / MP3] </p>
<figure data-id="18zqgp7wzq6v9jpg" data-recommend-id="image://18zqgp7wzq6v9jpg" data-format="jpg" data-width="640" data-height="503" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgp7wzq6v9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgp7wzq6v9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgp7wzq6v9jpg.jpg 470w" draggable="auto" data-chomp-id="18zqgp7wzq6v9jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgp7wzq6v9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgp7wzq6v9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgp7wzq6v9jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://slapshoft.deviantart.com/art/quot-Past-is-Prologue-quot-259977883&quot;,{&quot;metric25&quot;:1}]]" href="http://slapshoft.deviantart.com/art/quot-Past-is-Prologue-quot-259977883" target="_blank" rel="noopener noreferrer"><em>Artist: Slapshoft</em></a></span>) </p>
<p> Peace reigned through the cosmos. The alliance was a great universal renaissance, and lasted for a millennium. [MPH SP / MP2 SP / MP3 SP] </p>
<figure data-id="18zqgqj9kac9hjpg" data-recommend-id="image://18zqgqj9kac9hjpg" data-format="jpg" data-width="640" data-height="426" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgqj9kac9hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgqj9kac9hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgqj9kac9hjpg.jpg 470w" draggable="auto" data-chomp-id="18zqgqj9kac9hjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgqj9kac9hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgqj9kac9hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgqj9kac9hjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Oracle-of-Chozo-164523580&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Oracle-of-Chozo-164523580" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>) </p>
<p> During this calm, the Chozo prophets continued to receive increasingly severe visions of chaos. They foresaw a universe consumed by war, horrors evolving on distant worlds, and a great toxicity waiting to be unleashed. As the visions became more precise, the species isolated itself from its allies. The Chozo civilisation became intensely driven to fight this unclear threat. [MP / MP3 SP / M2 SP /MF SP] </p>
<figure data-id="18zqgrykgsndujpg" data-recommend-id="image://18zqgrykgsndujpg" data-format="jpg" data-width="640" data-height="273" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgrykgsndujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgrykgsndujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgrykgsndujpg.jpg 470w" draggable="auto" data-chomp-id="18zqgrykgsndujpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgrykgsndujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgrykgsndujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgrykgsndujpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://danillovesfood.deviantart.com/art/Commission-Metroid-Prime-Skytown-Elysia-336095763&quot;,{&quot;metric25&quot;:1}]]" href="http://danillovesfood.deviantart.com/art/Commission-Metroid-Prime-Skytown-Elysia-336095763" target="_blank" rel="noopener noreferrer"><em>Artist: DanilLovesFood</em></a></span>) </p>
<p> The Chozo needed more potent tools to locate this unseen and distant danger. They expanded their SkyTown colony on the gas giant Elysia and remade it into a vast interstellar observatory powered by the planets endless storms. The facility was of such scale that an entire species of artificial life became necessary to maintain it. The Chozo created their first species the mechanical Elysians. [MP3 / MP3 SP] </p>
<p> Probes were launched across the universe, and the Elysians and Chozo scrutinised the data. The search took generations, while the planets tempestuous atmosphere battered SkyTown, weathering the station faster than the Elysians could maintain it. After countless probe launches, a partial transmission received from a decaying and distant satellite set prophecy in motion. [MP3] </p>
<figure data-id="18zqgtjse9p7rjpg" data-recommend-id="image://18zqgtjse9p7rjpg" data-format="jpg" data-width="640" data-height="375" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgtjse9p7rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgtjse9p7rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgtjse9p7rjpg.jpg 470w" draggable="auto" data-chomp-id="18zqgtjse9p7rjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgtjse9p7rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgtjse9p7rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgtjse9p7rjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://mechanical-hand.deviantart.com/art/Phaaze-138141037&quot;,{&quot;metric25&quot;:1}]]" href="http://mechanical-hand.deviantart.com/art/Phaaze-138141037" target="_blank" rel="noopener noreferrer"><em>Artist: Mechanical-Hand</em></a></span>) </p>
<p> The data received was terrifying. The blue planet registered as an organism, somehow existing as both mineral and flesh. Impossible radiation pulsed from the surface, which overwhelmed the Chozo satellite and rendered it inert. The location of the planet was immediately lost, and only a broad region of space could be established. [MP3] </p>
<p> With this find, the Chozo purpose on SkyTown was fulfilled. The race departed the facility, leaving the Elysians to continue their monitoring of the stars. The abandoned race of robots continued to launch satellites to try and rediscover the blue world, hopeful that such a discovery would herald the return of their Chozo creators. The Elysians searched unsuccessfully until Elysias endless storms eroded their civilisation into a rusted remnant. [MP3] </p>
<p> The Chozo reconciled their vague discovery of a blue living planet with their prophecies of toxicity. On this distant world of poison, could creatures have evolved so vicious that they endangered the universe? [MP3 SP] </p>
<h3 id="h3292">
<a id=""></a>The Invasion of Phaaze </h3>
<figure data-id="18zqgy9h1t7injpg" data-recommend-id="image://18zqgy9h1t7injpg" data-format="jpg" data-width="640" data-height="399" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgy9h1t7injpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgy9h1t7injpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgy9h1t7injpg.jpg 470w" draggable="auto" data-chomp-id="18zqgy9h1t7injpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqgy9h1t7injpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqgy9h1t7injpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqgy9h1t7injpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Chozo-flighter-175094535&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Chozo-flighter-175094535" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>) </p>
<p> Finding the exact location of the deadly planet becomes a priority for the Chozo civilisation. A gargantuan ship was assembled on the holy planet of Tallon IV, and dispatched to the dark corner of the universe where the Elysian satellite had been lost. The greatest Chozo warriors, scientists and prophets commenced a crusade for the hostile world, knowing that they would likely never make it back home. During their long journey, they conceive a name for their target: Phaaze. [MP3 SP] </p>
<figure data-id="18zqhapd1bv1hjpg" data-recommend-id="image://18zqhapd1bv1hjpg" data-format="jpg" data-width="640" data-height="450" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhapd1bv1hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhapd1bv1hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhapd1bv1hjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhapd1bv1hjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhapd1bv1hjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhapd1bv1hjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhapd1bv1hjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sesakath.deviantart.com/art/MP-C-Phaaze-89786422&quot;,{&quot;metric25&quot;:1}]]" href="http://sesakath.deviantart.com/art/MP-C-Phaaze-89786422" target="_blank" rel="noopener noreferrer"><em>Artist: SesakaTH</em></a></span>) </p>
<p> Generations passed, and the Chozo expedition finally located the blue planet. As they approached, they witnessed the living world as it endlessly pulsed with blue and white energies. There was nothing like this place elsewhere in the universe. [MP3 SP] </p>
<p> Their scans confirmed their worst fears this atmosphere was a bath of radiation and mutation and evolution had produced horrors. [MP3 SP] </p>
<figure data-id="18zqhdvss5le8jpg" data-recommend-id="image://18zqhdvss5le8jpg" data-format="jpg" data-width="640" data-height="621" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhdvss5le8jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhdvss5le8jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhdvss5le8jpg.jpg 470w" draggable="auto" data-chomp-id="18zqhdvss5le8jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhdvss5le8jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhdvss5le8jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhdvss5le8jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://samusmmx.deviantart.com/art/Phazon-Worm-252806281&quot;,{&quot;metric25&quot;:1}]]" href="http://samusmmx.deviantart.com/art/Phazon-Worm-252806281" target="_blank" rel="noopener noreferrer"><em>Artist: SamusMMX</em></a></span>) </p>
<p> For billions of years, Phaaze had mutated and irradiated life that evolved on its surface. The strongest creatures had survived to thrive in an ecosystem of beautiful poison. It was then that the Chozo understood: They had arrived at the home of the most devastating and deranged creatures in the known universe. [MP3 SP] </p>
<p> If these monsters were to escape their containment on Phaaze, they would voraciously consume their way through the cosmos. With younger races only centuries away from space travel, the Chozo could not risk them finding this world and releasing its terrors. [MP3 SP] </p>
<p> The Chozo expedition came to an impasse. The threat of Phaazes superpredators had to be neutralised, but severe action against the planet would be sacrilege. The Chozo held life sacred, and refused to destroy the unique living world. [MP3 SP] </p>
<p> A dangerous plan was agreed upon. The expedition ship landed on Phaaze, exposing the crew to tremendous radiation. [MP3 SP] </p>
<figure data-id="18zqhfmxw5dphjpg" data-recommend-id="image://18zqhfmxw5dphjpg" data-format="jpg" data-width="640" data-height="532" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhfmxw5dphjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhfmxw5dphjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhfmxw5dphjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhfmxw5dphjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhfmxw5dphjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhfmxw5dphjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhfmxw5dphjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://adoublea.deviantart.com/art/Metroid-Chozo-warrior-138820343&quot;,{&quot;metric25&quot;:1}]]" href="http://adoublea.deviantart.com/art/Metroid-Chozo-warrior-138820343" target="_blank" rel="noopener noreferrer"><em>Artist: Adoublea</em></a></span>) </p>
<p> Chozo Warriors in power suits fought the planets creatures as they swarmed the ship. The soldiers battled, watching their kin die around them, in a desperate mission to buy time. [MP3 SP] </p>
<p> The scientists within the ship began to harness the intense radiation around them, to try and engineer an artificial predator that could neutralise the planets superpredators. With access to the unique Phazon mutagen that covered the poisonous world, genetic engineering that should have taken decades was done in days. The Chozo engineered the first Metroid. [MP3 SP] </p>
<figure data-id="18zqhh28q856sjpg" data-recommend-id="image://18zqhh28q856sjpg" data-format="jpg" data-width="640" data-height="598" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhh28q856sjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhh28q856sjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhh28q856sjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhh28q856sjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhh28q856sjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhh28q856sjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhh28q856sjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://methuselah3000.deviantart.com/art/Chozo-Creator-278707002&quot;,{&quot;metric25&quot;:1}]]" href="http://methuselah3000.deviantart.com/art/Chozo-Creator-278707002" target="_blank" rel="noopener noreferrer"><em>Artist: Methuselah3000</em></a></span>) </p>
<p> The Metroid creature was unleashed onto the planet, and the radiation caused it to reproduce quickly. The resulting swarm of Metroids began to consume the planets monstrosities and established themselves as Phaazes apex predator. [MP3 SP] </p>
<p> The Chozo mission was complete. The worst creatures were being hunted to extinction, and the Metroids were expected to die from starvation soon after. The cost had been enormous most of the crew had been killed defending the ship, and the survivors were deathly ill from radiation poisoning. The burnt and damaged ship took off for the long journey home, but the crew soon succumbed to the radiation they had endured. The autopilot took the ship of Chozo bodies home. [MP3 SP] </p>
<figure data-id="18zqhipfm1vidjpg" data-recommend-id="image://18zqhipfm1vidjpg" data-format="jpg" data-width="640" data-height="381" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhipfm1vidjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhipfm1vidjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhipfm1vidjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhipfm1vidjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhipfm1vidjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhipfm1vidjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhipfm1vidjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Phazon-Mines-178697159&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Phazon-Mines-178697159" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>) </p>
<p> On Phaaze, the Metroid presence lasted decades as they consumed the planets superpredators. The corpses of Chozo warriors were absorbed into the planet, and their battle armour slowly became weathered and scattered. The planets slow sentience developed an outrage that seethed under its continents. It had been violated by the Chozo. As the Metroid infestation began to die out, Phaaze developed a very primitive concept of purpose and retribution. [MP3 SP] </p>
<p> Phaaze established a vague awareness of concepts it had absorbed from the brains of the Chozo warrior corpses and the location of two worlds from the Chozos memories. As the planet entered its reproductive cycle, it purposely directed two of its seeds towards the planets Tallon IV and Aether. In the seed sent to the Chozo world, Phaaze included one of the last surviving Metroid creatures and some ruined pieces of Chozo armour, intended as a reminder of the crime Phaaze had endured at their hands. The planet sent its second seed to Aether, as the absorbed memories informed the living planet that its inhabitants were friends of the Chozo, and therefore the enemies of Phaaze. [MP 1 / MP 2 SP / MP3 SP] </p>
<p> The expedition ship heavily damaged by radiation and lack of maintenance was guided back to civilisation by an increasingly erratic auto-pilot. After decades it eventually approached the Chozo world of Zebes, and crash-landed onto its surface. The Chozo civilisation attempted to recover data logs from the wreckage with very limited success they were able to understand the sacrifice that the heroic crew had made, and confirmed the apparent success of the Metroids in neutralising the creatures on the living planet. The Chozo authorities were unable to establish the location of Phaaze, or recover much in the way of scientific data concerning it. [MP3 SP / SM SP] </p>
<figure data-id="18zqhkgkmizwijpg" data-recommend-id="image://18zqhkgkmizwijpg" data-format="jpg" data-width="640" data-height="380" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhkgkmizwijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhkgkmizwijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhkgkmizwijpg.jpg 470w" draggable="auto" data-chomp-id="18zqhkgkmizwijpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhkgkmizwijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhkgkmizwijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhkgkmizwijpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://methuselah3000.deviantart.com/art/MDB-Bestiary-Metroid-Prime-338464952&quot;,{&quot;metric25&quot;:1}]]" href="http://methuselah3000.deviantart.com/art/MDB-Bestiary-Metroid-Prime-338464952" target="_blank" rel="noopener noreferrer"><em>Artist: Methuselah3000</em></a></span>) </p>
<p> As the Tallon IV seed began its centuries of travelling through space, the lone Metroid within absorbed vast amounts of Phazon and radiation. It became self-aware, and grew in size, intelligence and strength. It used the ruined pieces of Chozo armour to construct itself an exoskeleton, and descended into madness. The exoskeleton failed to protect the creature from the endless radiation, and the Metroid became as exotic as Phaazes extinct superpredators: An undying tortured genius. [MP / MP2 / MP3 / MP3 SP] </p>
<p> The creature that would come to be known as Metroid Prime resented Phaaze for imprisoning it in the Leviathan. It resented the Chozo for creating and discarding the Metroids. It decided that it would survive, bring order to the chaotic universe that birthed it, and somehow enslave Phaaze to its will. In its solitude, immortal as a consequence of its mutations, Metroid Prime plotted its revenge against the universe. [MP / MP2 / MP3 / MP3 SP] </p>
<h3 id="h3293">
<a id=""></a>The Dark Planet </h3>
<p> With a clear understanding of the danger of living planets, the Chozo authority commenced a search for similar threats. With far more advanced technology than their ancestors had during the Elysian era, the Chozo were unfortunate enough to find a planet of even greater horrors. [MP 3 SP / M2] </p>
<figure data-id="18zqhnuwesum0jpg" data-recommend-id="image://18zqhnuwesum0jpg" data-format="jpg" data-width="640" data-height="480" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhnuwesum0jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhnuwesum0jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhnuwesum0jpg.jpg 470w" draggable="auto" data-chomp-id="18zqhnuwesum0jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhnuwesum0jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhnuwesum0jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhnuwesum0jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://peacefistartist.deviantart.com/art/SR388-126083062&quot;,{&quot;metric25&quot;:1}]]" href="http://peacefistartist.deviantart.com/art/SR388-126083062" target="_blank" rel="noopener noreferrer">Artist: PeaceFistArtist</a></span>) </p>
<p> The Chozo detected strange readings coming from a world in a desolate part of the galaxy. The planet had been previously considered so obscure and unimportant that it didnt have a name, merely catalogued with the codename SR388 and left to its obscurity. A detailed analysis picked up some extremely strange observations; though seemingly mineral, the caverns and liquids beneath the surface shifted with metabolic rhythm as if the whole planet was somehow a living thing. A ship was dispatched, and the strongest Chozo warriors braved the caverns beneath the surface. [M2 / M2 SP] </p>
<p> Few made it back. They told of a cauldron of evil, an environment so hostile and vicious that it had birthed the most terrible things. [M2] </p>
<figure data-id="18zqhokjxzrgmjpg" data-recommend-id="image://18zqhokjxzrgmjpg" data-format="jpg" data-width="640" data-height="355" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhokjxzrgmjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhokjxzrgmjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhokjxzrgmjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhokjxzrgmjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhokjxzrgmjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhokjxzrgmjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhokjxzrgmjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://lightningarts.deviantart.com/art/Metroid-Metal-Fusion-Sector1-393385160&quot;,{&quot;metric25&quot;:1}]]" href="http://lightningarts.deviantart.com/art/Metroid-Metal-Fusion-Sector1-393385160" target="_blank" rel="noopener noreferrer">Artist: LightningArts</a></span>) </p>
<p> Beneath that planet, evolution had been won by an abomination that could steal the flesh, abilities, memories and strengths of all of its prey. The creature was a fusion of energy and plasma that parasitized on life itself. With no word suitable for the nightmare they had discovered, the Chozo simply called it X. If these X-Parasites somehow gained access to the wider universe, there would be no force that could contain them. [M2] </p>
<p> The threat had to be dealt with. Remembering the apparent success of the Chozo expedition to Phaaze, a plan was put into action. The Chozo assembled their best and brightest, their strongest and wisest. They carved their way into SR388, and dispatched mechanical creatures to construct secure facilities. Robots and Chozo warriors repressed all instances of the X-Parasite as they found them, but casualties were high. The planet appeared to fight the Chozo at every turn, it drowned the invaders in acid and unleashed ambushes of creatures. The endless swam of X-Parasites gained strength from the corpses around them. [MP3 SP / M2] </p>
<p> Deep in the planet, a glass laboratory was created, its walls highly resistant to SR388s acid belly. Here, in dangerous proximity to the X-Parasites, the Chozo scientists began their work. [M2] </p>
<figure data-id="18zqhrsyn6h9wjpg" data-recommend-id="image://18zqhrsyn6h9wjpg" data-format="jpg" data-width="640" data-height="552" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhrsyn6h9wjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhrsyn6h9wjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhrsyn6h9wjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhrsyn6h9wjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhrsyn6h9wjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhrsyn6h9wjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhrsyn6h9wjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Chozo-Account-119685313&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Chozo-Account-119685313" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>) </p>
<p> The Chozo tried to recreate the plan of their ancestors the use of Metroids to pacify superpredators too dangerous to exist. Without access to the same planetary radiation and materials the Phaaze expedition had, progress was slow. As the war against the planet was raging around them, the Chozo scientists were able to engineer Metroids, but not a variant strong enough to overcome the X-Parasites. As more and more Chozo died protecting the laboratory, a different approach was needed. [M2 SP] </p>
<figure data-id="18zqht0ddb9ozjpg" data-recommend-id="image://18zqht0ddb9ozjpg" data-format="jpg" data-width="640" data-height="396" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqht0ddb9ozjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqht0ddb9ozjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqht0ddb9ozjpg.jpg 470w" draggable="auto" data-chomp-id="18zqht0ddb9ozjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqht0ddb9ozjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqht0ddb9ozjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqht0ddb9ozjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://starshadow76.deviantart.com/art/Metroid-Queen-Concept-Art-157008177&quot;,{&quot;metric25&quot;:1}]]" href="http://starshadow76.deviantart.com/art/Metroid-Queen-Concept-Art-157008177" target="_blank" rel="noopener noreferrer"><em>Artist: Starshadow76</em></a></span>) </p>
<p> The Chozo succeeded in engineering a Metroid Queen, a colossal creature who would lay Metroid Hatchling eggs. When hatched, these resulting Metroids were strong and durable creatures, and finally potent enough to combat the X menace. The Chozo knew that to completely suppress the parasites, the Metroid presence on SR388 had to be permanent. To ensure that the species would not overfeed on the environment and wipe out its food chains, the scientists hardwired an instinct into the Metroid Queens feral mind: Only thirty-nine Metroids were to exist on the planet at any one time. This, it was hoped, would keep their numbers high enough to destroy any X re-emergence, but low enough so that they wouldnt consume the rest of the life on the planet, and starve to death from lack of food. [M2] </p>
<p> The scientists assembled a payload of Hatchling Eggs and the surviving Chozo warriors distributed them across the planet. The eggs hatched quickly, and the X-Parasites were immediately overwhelmed by the infant Metroids. The X-Parasites were quickly hunted to near-extinction, with only a few surviving cells entering a state of suspension deep in the planet. [M2 SP / MF] </p>
<p> The Chozo had won their war, but only just. Most of the warriors and scientists had not survived, and those that were left had to make sure that the X-Parasites had been permanently suppressed. The planet shook with tremors; the earth shifted and acid poured, as if the world was trying to crush the Chozo in their glass laboratory. [M2 SP] </p>
<p> The X-Parasites did not return, and the Metroid Queen continued to scream as her glass prison shook. The Chozo didnt realise it, but her despair was being heard. [M2 SP] </p>
<figure data-id="18zqhuzegzvcfjpg" data-recommend-id="image://18zqhuzegzvcfjpg" data-format="jpg" data-width="640" data-height="415" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhuzegzvcfjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhuzegzvcfjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhuzegzvcfjpg.jpg 470w" draggable="auto" data-chomp-id="18zqhuzegzvcfjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqhuzegzvcfjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqhuzegzvcfjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqhuzegzvcfjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://hermax669.deviantart.com/art/Omega-Metroid-93544917&quot;,{&quot;metric25&quot;:1}]]" href="http://hermax669.deviantart.com/art/Omega-Metroid-93544917" target="_blank" rel="noopener noreferrer"><em>Artist: Hermax669</em></a></span>) </p>
<p> SR388 had been violated by the Chozo. Though very different to Phaaze, SR388 had its own vague sense of awareness. It perceived the Chozo as a viral infection, and the dead X-Parasites as part of itself. It understood loss, and shook with ancient rage. [MP3 SP / M2 SP / MF SP] </p>
<p> It changed itself to change the Metroids. It adopted them to replace the X-Parasites, and quickly killed the weaker breeds. It moved its radioactive minerals closer to their eggs and soon mutated the species. As SR388 had done with X, it did with the Metroids. It made them strong. [M2 SP / MF SP] </p>
<p> Alpha, Gamma, Zeta and Omega Metroids spawned quickly, and responded to the screams of their Queen. With their bulk and strength, they smashed through the glass laboratory and slaughtered their Chozo creators. The Chozo warriors were hunted down and crushed. [M2] </p>
<p> SR388 developed into a new cauldron of hostility. The Metroids served as the apex predator, and the robots of the Chozo decayed into machine madness and prowled the ruins, killing on sight. The Chozo mission to suppress the X-Parasite had been a success, but the planet had gained its revenge. [M2 / M2 SP / MF] </p>
<h2 id="h3294">
<a id=""></a>Part Two: The End of the Renaissance </h2>
<h3 id="h3295">
<a id=""></a>The Holy World </h3>
<p> The Chozo had devastated two planets for the good of the universe, and sustained many causalities. The superpredators of Phaaze were extinct and the X-Parasites were permanently suppressed. With the crisis over, the race became consumed with a collective sense of guilt over their necessary actions. The Chozo believed the life of the universe to be sacred, and had to reconcile their aggressive actions with their faith. [MP SP / MP3 SP / M2 / MF] </p>
<p> Worse still, their prophets continued to have visions of endless conflict and death. War was coming to the universe, and it seemed that their sins had not saved them. Many began to doubt these visions, and a schism occurred. [MP/ MP3 SP] </p>
<p> The bulk of the Chozo civilisation retired themselves from galactic affairs, leaving only a few scattered colonies amongst the stars. The race retreated to the holy planet of Tallon IV, to shun their technologies and begin simpler, poetic lives. These Chozo reconnected themselves to the natural world and tried to find a harmony with it. As time went on, the most potent prophets became manic, and tried to warn their fellows of a great poison that was to come. [M1 / MP] </p>
<p> These visions were met with increasing dismissal, but the day finally came when the prophets were believed. After eons swimming in the stars, Phaazes seed entered the Tallon system. [MP / MP3] </p>
<figure data-id="18zqidecyjp0ujpg" data-recommend-id="image://18zqidecyjp0ujpg" data-format="jpg" data-width="640" data-height="315" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqidecyjp0ujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqidecyjp0ujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqidecyjp0ujpg.jpg 470w" draggable="auto" data-chomp-id="18zqidecyjp0ujpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqidecyjp0ujpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqidecyjp0ujpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqidecyjp0ujpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://hameed.deviantart.com/art/Cessation-619497&quot;,{&quot;metric25&quot;:1}]]" href="http://hameed.deviantart.com/art/Cessation-619497" target="_blank" rel="noopener noreferrer"><em>Artist: Hameed</em></a></span>) </p>
<p> The Leviathan crashed down, and rained poison and death unto the world. The impact survivors watched as their sacred nature succumbed to the mutagens leaking from the seed, and barricaded themselves in their temples as the flora and fauna transformed. Phazon spread beneath the surface of the dying planet, and radiation storms battered the surface. [MP] </p>
<figure data-id="18zqiejsfe664jpg" data-recommend-id="image://18zqiejsfe664jpg" data-format="jpg" data-width="640" data-height="674" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiejsfe664jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiejsfe664jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiejsfe664jpg.jpg 470w" draggable="auto" data-chomp-id="18zqiejsfe664jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiejsfe664jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiejsfe664jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiejsfe664jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://riivka.deviantart.com/art/Fading-321733899&quot;,{&quot;metric25&quot;:1}]]" href="http://riivka.deviantart.com/art/Fading-321733899" target="_blank" rel="noopener noreferrer"><em>Source: Riivka</em></a></span>) </p>
<p> The Chozos punishment for their sins, and the fulfilment of Phaazes wrath, reached biblical proportions. The Chozo of Tallon IV did not get to rest in peace. Their life energies suffered from Phazon disruption, and upon death they became mad ghosts who screamed forever as they were torn in and out of the material world. In this purgatory, the undead immaterial Chozo murdered anyone they could find. [MP / MP3 SP] </p>
<p> As their numbers dwindled, the last of the Chozo constructed a great temple above the impact crater. Within this temple, they used what little technology remained to project an energy field around the Leviathan to slow the spread of contagion. As the Chozo civilisation on Tallon IV was extinguished, their dying prophets told of a hero who would one day emerge, to enter the crater and defeat the evil worm within. [MP] </p>
<figure data-id="18zqigaxkohx4jpg" data-recommend-id="image://18zqigaxkohx4jpg" data-format="jpg" data-width="640" data-height="405" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqigaxkohx4jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqigaxkohx4jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqigaxkohx4jpg.jpg 470w" draggable="auto" data-chomp-id="18zqigaxkohx4jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqigaxkohx4jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqigaxkohx4jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqigaxkohx4jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://havoc-dm.deviantart.com/art/Metroid-Prime-74392852&quot;,{&quot;metric25&quot;:1}]]" href="http://havoc-dm.deviantart.com/art/Metroid-Prime-74392852" target="_blank" rel="noopener noreferrer"><em>Source: Havoc-DM</em></a></span>) </p>
<p> Within the Impact Crater, Metroid Prime remained trapped within the Chozo energy field. In its armour constructed from ancient Chozo power suits, it continued its wait to be unleashed on the universe. [MP / MP3 SP] </p>
<h3 id="h3296">
<a id=""></a>Dark Echoes </h3>
<figure data-id="18zqiho9ab5xrjpg" data-recommend-id="image://18zqiho9ab5xrjpg" data-format="jpg" data-width="640" data-height="639" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiho9ab5xrjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiho9ab5xrjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiho9ab5xrjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiho9ab5xrjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiho9ab5xrjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiho9ab5xrjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiho9ab5xrjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/luminoth-priest-191995430&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/luminoth-priest-191995430" target="_blank" rel="noopener noreferrer">Artist: 3ihard</a></span>) </p>
<p> On the planet Aether, an ancient race of mystics known as the Luminoth received the horrifying data coming from Tallon IV. In distant times, the Luminoth and the Chozo had been steadfast allies until the Chozo retreat ended their ties. Desperate to assist, the Luminoth began to organise a rescue mission. [MP2 / MP2 SP] </p>
<figure data-id="18zqijbga70tljpg" data-recommend-id="image://18zqijbga70tljpg" data-format="jpg" data-width="640" data-height="480" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqijbga70tljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqijbga70tljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqijbga70tljpg.jpg 470w" draggable="auto" data-chomp-id="18zqijbga70tljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqijbga70tljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqijbga70tljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqijbga70tljpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://pugofdoom.deviantart.com/art/Chozo-Ghost-88765133&quot;,{&quot;metric25&quot;:1}]]" href="http://pugofdoom.deviantart.com/art/Chozo-Ghost-88765133" target="_blank" rel="noopener noreferrer">Artist: PugOfDoon</a></span>) </p>
<p> A dark transmission was received from Tallon IV. The image showed a screaming, ghostly Chozo figure, flickering in and out of the living universe. In its undead madness, it spoke for its kin. It raged that they would kill anyone who would set foot on their world. The planet was pandemonium, a cursed world on which the dead could not die. As the signal faded, the Luminoth realised that there was no one left alive to rescue. [MP SP / MP2 SP] </p>
<p> The Luminoth were receiving strange readings from the devastated planet. A mutagen was spreading, unlike anything they had ever encountered. They scanned the stars for its source, and made a devastating discovery a mass of the same mutagen was on a collision course with Aether. Phaazes second seed had nearly arrived at its destination. [MP2 SP / MP3 SP] </p>
<p> The people of Aether turned to their technology to save them. Their planet had no native star of its own, and had been implanted millennia ago with a complex energy network that sustained all life. This system was reverently called the Light of Aether, and harnessed the light of the universe in its mechanism. The Luminoth realised that even with this great power, they could not destroy the Phazon Leviathan. A different approach was needed. [MP2 / MP2 SP] </p>
<figure data-id="18zqim04ra2w5jpg" data-recommend-id="image://18zqim04ra2w5jpg" data-format="jpg" data-width="640" data-height="736" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqim04ra2w5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqim04ra2w5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqim04ra2w5jpg.jpg 470w" draggable="auto" data-chomp-id="18zqim04ra2w5jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqim04ra2w5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqim04ra2w5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqim04ra2w5jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sesakath.deviantart.com/art/Sanctuary-Fortress-Ing-Hive-72912247&quot;,{&quot;metric25&quot;:1}]]" href="http://sesakath.deviantart.com/art/Sanctuary-Fortress-Ing-Hive-72912247" target="_blank" rel="noopener noreferrer"><em>Artist: SesaKath</em></a></span>) </p>
<p> The Luminoth used their great Light to engineer a small pocket universe, a dark lifeless echo of existence. The plan was bold: they would use the Light of Aether to surgically open the fabric of reality in the path of the Phazon seed, and allow it to harmlessly enter the pocket universe. If all went well, they would be saved. [MP2 SP] </p>
<p> The day came, and the Leviathan entered Aethers atmosphere. The Luminoth commenced their great plan. [MP2 SP] </p>
<figure data-id="18zqimznelg78jpg" data-recommend-id="image://18zqimznelg78jpg" data-format="jpg" data-width="640" data-height="321" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqimznelg78jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqimznelg78jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqimznelg78jpg.jpg 470w" draggable="auto" data-chomp-id="18zqimznelg78jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqimznelg78jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqimznelg78jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqimznelg78jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://adriencgd.deviantart.com/art/Clashing-Neighbors-327277211&quot;,{&quot;metric25&quot;:1}]]" href="http://adriencgd.deviantart.com/art/Clashing-Neighbors-327277211" target="_blank" rel="noopener noreferrer"><em>Artist: Adriencgd</em></a></span>) </p>
<p> Phaazes seed was a sum of living materials beyond Luminoth comprehension. It hit the pocket universe with incalculable force, and a tsunami of exotic energy ruptured space and time. The equipment containing the dark reality lost containment within moments, and the Luminoth were helpless as their creation expanded across the entire planet. A wave of dark energy absorbed creatures, structures and land into the dark universe, and what was once a single planet was now two. [MP2 / MP2 SP] </p>
<p> The Luminoth surveyed the devastation. The Phazon seed was gone it had indeed collided with the dark universe. Entire continents, with millions of inhabitants, had vanished with it. [MP2 / MP2 SP </p>
<figure data-id="18zqiocyxn4ksjpg" data-recommend-id="image://18zqiocyxn4ksjpg" data-format="jpg" data-width="640" data-height="407" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiocyxn4ksjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiocyxn4ksjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiocyxn4ksjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiocyxn4ksjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiocyxn4ksjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiocyxn4ksjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiocyxn4ksjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://azureparagon.deviantart.com/art/Void-Xarasque-Sky-Station-244410462&quot;,{&quot;metric25&quot;:1}]]" href="http://azureparagon.deviantart.com/art/Void-Xarasque-Sky-Station-244410462" target="_blank" rel="noopener noreferrer"><em>Artist: AzureParagon</em></a></span>) </p>
<p> In the dark universe, a grotesque world was being born. Previous inhabitants of Aether, having been absorbed when containment of the pocket universe was lost, found themselves twisted by the corrosive new reality around them. Most perished, and their flesh fed the strange carnivorous fungi that glowed sickly colours. Some survivors were mutated by the Phazon slowly spreading beneath the surface, and adapted to survive in the hostility. [MP2 SP] </p>
<p> Aether and its echo, the Phazon-infested Dark Aether, existed in synchronicity. As the Luminoth tried to rebuild their planet, it took only decades for cracks to form in the ether separating the two realities. As rips in the universe shattered open, Aether became a battlefield. [MP2] </p>
<figure data-id="18zqiq826qgjkjpg" data-recommend-id="image://18zqiq826qgjkjpg" data-format="jpg" data-width="640" data-height="379" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiq826qgjkjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiq826qgjkjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiq826qgjkjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiq826qgjkjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiq826qgjkjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiq826qgjkjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiq826qgjkjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://xxkiragaxx.deviantart.com/art/ING-181463823&quot;,{&quot;metric25&quot;:1}]]" href="http://xxkiragaxx.deviantart.com/art/ING-181463823" target="_blank" rel="noopener noreferrer"><em>Artist: Xxkiragaxx</em></a></span>) </p>
<p> A womb of Phazon mutation and dark energies had birthed a cunning and ferocious horde. The Ing erupted through the cracks between the two worlds, and commenced slaughter. They were fought back by the Luminoth, and a war began between the two parallel worlds. The Ing invaded Aether with regularity, and killed, pillaged and destroyed all that they could find. The Luminoth retaliated and crusaded into Dark Aether in their Light Suits, on suicide missions to exterminate the source of the Ing menace. Both sides suffered colossal casualties as the decades went on. [MP2] </p>
<figure data-id="18zqirpbvm7a1jpg" data-recommend-id="image://18zqirpbvm7a1jpg" data-format="jpg" data-width="640" data-height="535" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqirpbvm7a1jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqirpbvm7a1jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqirpbvm7a1jpg.jpg 470w" draggable="auto" data-chomp-id="18zqirpbvm7a1jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqirpbvm7a1jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqirpbvm7a1jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqirpbvm7a1jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/The-U-MOS-118477953&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/The-U-MOS-118477953" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>) </p>
<p> The war was being lost by the Luminoth. The Ing had exterminated most of their race and had stolen too many vital technologies. With the theft of essential energy components from the Light of Aether power network, they had become a defeated people. [MP2] </p>
<p> The Ing had destroyed all of Aethers ancient ships, and condemned the Luminoth to no escape from their doomed world. With no other choice, the survivors sealed themselves in an inner sanctum, and entered a state of suspended animation. One custodian, U-Mos, volunteered to be their guardian. As Aether became weaker and weaker, the Luminoth waited for someone to save them. They would wait a very long time. [MP2] </p>
<h3 id="h3297">
<a id=""></a>The Sacrifice of the Alimbics </h3>
<figure data-id="18zqitehsufhejpg" data-recommend-id="image://18zqitehsufhejpg" data-format="jpg" data-width="640" data-height="393" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqitehsufhejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqitehsufhejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqitehsufhejpg.jpg 470w" draggable="auto" data-chomp-id="18zqitehsufhejpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqitehsufhejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqitehsufhejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqitehsufhejpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://kihunter.deviantart.com/art/MPH-The-Alimbics-94723125&quot;,{&quot;metric25&quot;:1}]]" href="http://kihunter.deviantart.com/art/MPH-The-Alimbics-94723125" target="_blank" rel="noopener noreferrer"><em>Artist: Kihunter</em></a></span>) </p>
<p> As the Chozo and the Luminoth fell, so too did other ancient races. In a distant part of the universe, the Alimbics were a militaristic society that maintained peace in their galactic cluster. Their order was shattered when a murderous entity, originating from someplace beyond the understood universe, plummeted into one of their worlds. The creature emerged from the devastation as a gaseous entity, and assumed an Alimbic-styled body to begin its onslaught. [MPH] </p>
<p> This alien juggernaut was named Gorea by the Alimbic race, and they soon understood it brought only death. Gorea killed every Alimbic it could find, and destroyed everything in its path. Planet after planet fell to Gorea, and the Alimbics realised the creature would never stop. [MPH] </p>
<figure data-id="18zqiuxqv4hadjpg" data-recommend-id="image://18zqiuxqv4hadjpg" data-format="jpg" data-width="640" data-height="355" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiuxqv4hadjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiuxqv4hadjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiuxqv4hadjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiuxqv4hadjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiuxqv4hadjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiuxqv4hadjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiuxqv4hadjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sesakath.deviantart.com/art/The-Oubliette-46403925&quot;,{&quot;metric25&quot;:1}]]" href="http://sesakath.deviantart.com/art/The-Oubliette-46403925" target="_blank" rel="noopener noreferrer"><em>Artist: Sesakath</em></a></span>) </p>
<p> The Alimbics performed an act of supreme sacrifice. They combined the mental energies of their entire race to forge a prison for Gorea. The psychic prison held it bound, and it was transplanted into an organic vessel called The Oubliette. The vessel was launched into the void outside of the universe, a course that would keep its indestructible prisoner in exile forever. The systems of the prison ship were tasked to scan the every molecule of the imprisoned Gorea, and devise an Omega weapon that could be used to kill it. [MPH / MPH SP] </p>
<p> The mental energies expelled in this plan consumed the physical bodies of the entire Alimbic race. They vanished from the universe in an instant. Their sacrifice protected all life in the cosmos from Goreas murderous rampage. [MPH] </p>
<h3 id="h3298">
<a id=""></a>The War of Bryyo </h3>
<figure data-id="18zqixy9iqkrejpg" data-recommend-id="image://18zqixy9iqkrejpg" data-format="jpg" data-width="640" data-height="414" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqixy9iqkrejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqixy9iqkrejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqixy9iqkrejpg.jpg 470w" draggable="auto" data-chomp-id="18zqixy9iqkrejpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqixy9iqkrejpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqixy9iqkrejpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqixy9iqkrejpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sesakath.deviantart.com/art/MP-C-Bryyo-88412835&quot;,{&quot;metric25&quot;:1}]]" href="http://sesakath.deviantart.com/art/MP-C-Bryyo-88412835" target="_blank" rel="noopener noreferrer"><em>Artist: Sesakath</em></a></span>) </p>
<p> As the old races of the universe died around them, the lizard people of Bryyo faced their own challenges. The Bryyonians were an advanced, space-faring race who had learned much from their Chozo allies. Their society was a deeply polarised one, with tensions eternal between the scientific and religious factions.[MP3] </p>
<p> Over the previous centuries, the scientific agenda had dominated, with space travel proving beneficial and enlightening. As the Chozo, Luminoth and Alimbics faced extinction, the religious Bryyonians believed more than ever that the universe was a hostile place, and became desperate to stop their scientific counterparts. [MP3] </p>
<p> A great war exploded across Bryyo. By its end, the scholars had been wiped out and the survivors of both sides had regressed to a feral existence. The race devolved into animals, wandering around ruins that they no longer understood. Language vanished and strength ruled. Anyone who landed on Bryyo was meat, to be killed and eaten. [MP3] </p>
<h3 id="h3299">
<a id=""></a>The Little Rainy Planet </h3>
<p> The onslaught of vengeances, conquerors, poisons and politics destroyed the old races. The Alimbics had lost their flesh, while the Bryyonians had lost their souls. The Luminoth had retreated into stasis, and the Chozo of Tallon IV had been condemned to a living death. [MP / MPH / MP2 / MP3] </p>
<figure data-id="18zqiznfcy0icjpg" data-recommend-id="image://18zqiznfcy0icjpg" data-format="jpg" data-width="640" data-height="430" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiznfcy0icjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiznfcy0icjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiznfcy0icjpg.jpg 470w" draggable="auto" data-chomp-id="18zqiznfcy0icjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqiznfcy0icjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqiznfcy0icjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqiznfcy0icjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://kaiquesilva.deviantart.com/art/Planet-Zebes-251229151&quot;,{&quot;metric25&quot;:1}]]" href="http://kaiquesilva.deviantart.com/art/Planet-Zebes-251229151" target="_blank" rel="noopener noreferrer"><em>Artist: Kaiquesilva</em></a></span>) </p>
<p> On a small, rainy planet called Zebes, the last known Chozo colony had watched the stars with impotence. This small settlement of the nearly-extinct avian race witnessed the end of the great universal renaissance, and the slow beginning of a new chapter in galactic history. Gradually, the younger races were launching their first satellites into space. In time, new empires would rise to take the place of the old. [M1 / M1 SP] </p>
<figure data-id="18zqj0sv6pheljpg" data-recommend-id="image://18zqj0sv6pheljpg" data-format="jpg" data-width="640" data-height="591" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj0sv6pheljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj0sv6pheljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj0sv6pheljpg.jpg 470w" draggable="auto" data-chomp-id="18zqj0sv6pheljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj0sv6pheljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj0sv6pheljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj0sv6pheljpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://3ihard.deviantart.com/art/Praying-for-Universe-179491357&quot;,{&quot;metric25&quot;:1}]]" href="http://3ihard.deviantart.com/art/Praying-for-Universe-179491357" target="_blank" rel="noopener noreferrer"><em>Artist: 3ihard</em></a></span>) </p>
<p> Zebes prophets saw the visions the Chozo had always endured: great wars, spreading poison and death. And suddenly, something bold was foreseen. [M1 SP / MP3 SP] </p>
<figure data-id="18zqj1sdn0v6rjpg" data-recommend-id="image://18zqj1sdn0v6rjpg" data-format="jpg" data-width="640" data-height="528" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj1sdn0v6rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj1sdn0v6rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj1sdn0v6rjpg.jpg 470w" draggable="auto" data-chomp-id="18zqj1sdn0v6rjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqj1sdn0v6rjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqj1sdn0v6rjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqj1sdn0v6rjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://fddt.deviantart.com/art/Samus-Aran-368975394&quot;,{&quot;metric25&quot;:1}]]" href="http://fddt.deviantart.com/art/Samus-Aran-368975394" target="_blank" rel="noopener noreferrer"><em>Artist: Fddt</em></a></span>) </p>
<p> A great hunter, clad in orange, red and green. The Chozo glimpsed a future hero, alone in the darkness beneath worlds, fighting so that good could survive evil. They saw her curing poisoned planets, and ending galactic wars. They saw the universes one chance to survive its apocalyptic future. They saw the only one who could defy prophecy. [M1 / MP3 SP] </p>
<p> And they saw her wearing Chozo armour. [M1] </p>
<h2 id="h3300">
<a id=""></a>Part Three: The New Empires </h2>
<h3 id="h3301">
<a id=""></a>The Humans </h3>
<p> On the planet Earth, the human race had finally developed a ship capable of leaving their solar system. A brave crew ventured into the universe to learn whether life existed elsewhere. Their discoveries fundamentally changed the human condition. On planet after planet, they found ruined tombs and cities, guarded by weathered statues of dead races. Most significant of all, they found technology. [M1 SP] </p>
<p> The humans reverse engineered their salvage, and advanced with pace. Within another century, faster-than-light ships explored the stars, and colonies transformed hostile worlds into homes. Peaceful relations formed between other younger races, and a great Galactic Federation was founded. [M1 SP] </p>
<h3 id="h3302">
<a id=""></a>The Space Pirates </h3>
<p> In a less hospitable region of space, a cabal of battered races joined their forces to survive. On planets where acid rain burned flesh and magma flowed, the alliance expanded into a hardened space empire. They ventured into nearby systems and took what they needed from anyone they could reach. They found the ruins of the old races and ransacked the ancient technologies within. They immersed themselves in science and unlocked the secrets of their finds. Within decades, they had advanced their spread with stronger and faster ships. The creatures enhanced themselves, rewriting their genetics and integrating mechanisms beneath their flesh. They were unique: a cybernetic race of furious murderers with a skill for patient scientific process. As more planets were invaded, their conquered civilisations were conscripted by force. [M1 SP / MP / MP3] </p>
<p> The inevitable moment came when their Empire reached the borders of the vast Galactic Federation. [M1 SP / MP / MP3] </p>
<figure data-id="18zqjuebmfw70jpg" data-recommend-id="image://18zqjuebmfw70jpg" data-format="jpg" data-width="640" data-height="489" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjuebmfw70jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjuebmfw70jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjuebmfw70jpg.jpg 470w" draggable="auto" data-chomp-id="18zqjuebmfw70jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjuebmfw70jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjuebmfw70jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjuebmfw70jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://mr-corr.deviantart.com/art/fight-for-norion-175087687&quot;,{&quot;metric25&quot;:1}]]" href="http://mr-corr.deviantart.com/art/fight-for-norion-175087687" target="_blank" rel="noopener noreferrer"><em>Artist: Mr-Corr</em></a></span>) </p>
<p> First contact was brief and furious. On that day, the warning went out to all the worlds of the Federation: Beware the Space Pirates. Though no state of war was officially declared, the empires attacked each other on sight. The Galactic Federation was large enough to repress any meaningful incursions into their space. [M1 SP / MP SP / MP3 SP / SM SP] </p>
<h3 id="h3303">
<a id=""></a>The Massacre of Two Families </h3>
<p> The Galactic Federation discovered the last Chozo Colony on Zebes. The tired, ancient avians welcomed the humans and shared with them wisdom and knowledge. They offered the Galactic Federation new sciences, and taught them how to make organic computers. The Federation studied the Chozos own central processing unit, an engineered brain that mothered over their colony, and left with plans to assemble their own variants. On the nearest habitable planet of K-2L, a colony was established. [M1 / MP3 SP] </p>
<p> On this world, the human Samus Aran was born. [M1] </p>
<figure data-id="18zqjw7ft0zj5jpg" data-recommend-id="image://18zqjw7ft0zj5jpg" data-format="jpg" data-width="640" data-height="478" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjw7ft0zj5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjw7ft0zj5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjw7ft0zj5jpg.jpg 470w" draggable="auto" data-chomp-id="18zqjw7ft0zj5jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjw7ft0zj5jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjw7ft0zj5jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjw7ft0zj5jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://methuselah3000.deviantart.com/art/Zebesian-Space-Pirate-301454831&quot;,{&quot;metric25&quot;:1}]]" href="http://methuselah3000.deviantart.com/art/Zebesian-Space-Pirate-301454831" target="_blank" rel="noopener noreferrer"><em>Artist: Methuselah3000</em></a></span>) </p>
<p> Barely out of infancy, the young Samus witnessed her family die. A Space Pirate raiding party overwhelmed her colony and murdered everyone she ever knew. By staying silent while surrounded by horror, Samus survived as the Pirates ransacked the settlement and left. [M1] </p>
<p> The Chozo colony on Zebes received K-2Ls automated distress signal. In an ancient dusty ship, they reached the planet and found Samus to be the only survivor of the massacre. The child was brought to Zebes, and the Chozo deliberated. Should she be returned to her own kind, or allowed to stay? [M1] </p>
<p> Across the colony, the Prophets experienced a simultaneous moment of clarity. They understood immediately that they had found their prophesised hero. The young girl was their inheritor, and would grow strong. She would learn all she could from them, and take their strongest technologies into the universe. She would be the hero against the oncoming storm. [M1 SP] </p>
<figure data-id="18zqjz9xd98ltjpg" data-recommend-id="image://18zqjz9xd98ltjpg" data-format="jpg" data-width="640" data-height="524" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjz9xd98ltjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjz9xd98ltjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjz9xd98ltjpg.jpg 470w" draggable="auto" data-chomp-id="18zqjz9xd98ltjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjz9xd98ltjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjz9xd98ltjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjz9xd98ltjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://r3dfive.deviantart.com/art/The-Birth-Of-The-Hunter-255511894&quot;,{&quot;metric25&quot;:1}]]" href="http://r3dfive.deviantart.com/art/The-Birth-Of-The-Hunter-255511894" target="_blank" rel="noopener noreferrer"><em>Artist: R3dFiVe</em></a></span>) </p>
<p> Samus Aran reached maturity amongst the Chozo. She was trained in the combat arts of the great extinct races. She was infused with Chozo genetic material so she could employ their technologies. She was educated to be a scientist, an explorer, and a tactician. Everything that was good about the Chozo civilisation was allowed to live on in Samus. [M1] </p>
<figure data-id="18zqjzzky4ffnjpg" data-recommend-id="image://18zqjzzky4ffnjpg" data-format="jpg" data-width="640" data-height="517" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjzzky4ffnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjzzky4ffnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjzzky4ffnjpg.jpg 470w" draggable="auto" data-chomp-id="18zqjzzky4ffnjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqjzzky4ffnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqjzzky4ffnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqjzzky4ffnjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://pyra.deviantart.com/art/Decaying-Elder-53293713&quot;,{&quot;metric25&quot;:1}]]" href="http://pyra.deviantart.com/art/Decaying-Elder-53293713" target="_blank" rel="noopener noreferrer"><em>Artist: Pyra</em></a></span>) </p>
<p> Samus became an adult, and the Chozo presented her with their greatest works: a toughened power suit and an agile spacecraft, both more potent than anything their race had ever made. The Chozo leader, decaying and blind, told Samus it was time for her to find her destiny in the universe. Samus Aran departed for the stars, and years pass. [M1 / M1 SP] </p>
<p> As Samus tried to reconnect with her heritage on Earth, the last Chozo prophets on Zebes received a final vision: The Space Pirates were coming for them. It was time for the last Chozo to be extinguished from the universe. [M1 SP] </p>
<figure data-id="18zqk1guma1bojpg" data-recommend-id="image://18zqk1guma1bojpg" data-format="jpg" data-width="640" data-height="401" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk1guma1bojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk1guma1bojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk1guma1bojpg.jpg 470w" draggable="auto" data-chomp-id="18zqk1guma1bojpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk1guma1bojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk1guma1bojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk1guma1bojpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://phobos-romulus.deviantart.com/art/The-Chozo-187935440&quot;,{&quot;metric25&quot;:1}]]" href="http://phobos-romulus.deviantart.com/art/The-Chozo-187935440" target="_blank" rel="noopener noreferrer"><em>Artist: Phobos-Romulus</em></a></span>) </p>
<p> The Chozo hid their technologies throughout the planet, in places that they were certain Samus would find them. They concealed a second Power Suit within the walls of their holy temple, having foreseen that Samus may require it in the future. They then returned to the surface to await the inevitable. [M1 SP] </p>
<p> The Space Pirates invaded in force, and murdered Samus Arans second family. The Chozo became extinct. [M1 / MP SP] </p>
<h3 id="h3304">
<a id=""></a>The Mother Brain </h3>
<p> Space Pirate scientists arrived shortly after the carnage and focused their attention on the legendary Chozo organic central processing unit. They rewrote its benign programming and injected stimulants into its flesh. They enabled it to form an artificial intelligence obsessed with strategy and conquest. They drove its computational potential towards absolute advancement of the Space Pirate Empire. [M1 SP] </p>
<figure data-id="18zqk2icdbv0cjpg" data-recommend-id="image://18zqk2icdbv0cjpg" data-format="jpg" data-width="640" data-height="528" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk2icdbv0cjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk2icdbv0cjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk2icdbv0cjpg.jpg 470w" draggable="auto" data-chomp-id="18zqk2icdbv0cjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk2icdbv0cjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk2icdbv0cjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk2icdbv0cjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://jaagup.deviantart.com/art/mother-brain-258536723&quot;,{&quot;metric25&quot;:1}]]" href="http://jaagup.deviantart.com/art/mother-brain-258536723" target="_blank" rel="noopener noreferrer"><em>Artist: Jaagup</em></a></span>) </p>
<p> The results went beyond High Commands most optimistic projections. The Space Pirates had created a leader, a desperately needed figure to unite their fragmented empire. They had created their Mother Brain. The great Space Pirate generals Ridley and Kraid arrived at Zebes, ready to pay tribute to their new master and to plan for the future. Mother Brain delivered to the Space Pirates knowledge and power. She told them of a world referenced in her oldest Chozo databanks, a planet bathed in a mutagenic poison waiting to be farmed. She instructed High Command to prepare an armada of ships and invade the planet Tallon IV. [M1 / MP SP] </p>
<p> The order was followed immediately, and the High Command discovered a world deranged by contagion. Beneath its surface, endless pools of Phazon waited to be weaponised, and a great mining operation began. Mother Brain received data from their readings on the planet; even after thousands of years, the source of the Phazon was still contained in the Chozo force field. She scrutinised her records further, and was unable to ascertain any method of breaching the barrier. The Space Pirates could retrieve the Phazon, but were denied access to its source. [MP] </p>
<h3 id="h3305">
<a id=""></a>The Metroids </h3>
<p> A perfect storm brewed. As the Space Pirates gained access to the most potent mutagen in the universe, the Galactic Federation made an equally eventful discovery: They found the dark planet SR388. [M1 / M2] </p>
<figure data-id="18zqk5mt4ocetjpg" data-recommend-id="image://18zqk5mt4ocetjpg" data-format="jpg" data-width="640" data-height="477" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk5mt4ocetjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk5mt4ocetjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk5mt4ocetjpg.jpg 470w" draggable="auto" data-chomp-id="18zqk5mt4ocetjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk5mt4ocetjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk5mt4ocetjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk5mt4ocetjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://firebornform.deviantart.com/art/SR388-Tunnels-353312617&quot;,{&quot;metric25&quot;:1}]]" href="http://firebornform.deviantart.com/art/SR388-Tunnels-353312617" target="_blank" rel="noopener noreferrer"><em>Artist: Fireborn Form</em></a></span>) </p>
<p> A Galactic Federation survey team studied the surface, and soon encountered a gelatinous creature that swam through air. The alien defied gravity and physics as it phased through dense rock with ease. It perceived the survey team, and made a few curious chirps in their direction. It then suddenly changed temperament, aggressively charging to latch itself onto the skull of one of the party. The victim died in agony as the Metroid fed on all the energy within, and could not be removed until its prey had been reduced to a dried husk of collapsing matter. The young Metroid had just killed, in a way that science could not explain. [M1 SP / M2 SP] </p>
<p> With effort and casualties, the scientists contained a few infant specimens of the Metroid creatures, and left the planet without further incident. [M1] </p>
<p> As their vessel went back to the stars, SR388 was aware their withdrawal. It harboured a great contempt for the invaders, an endless hate fuelled by the impotence it endured centuries ago when the Chozo had committed their great invasion. The living planet had spent centuries honing the Metroids into perfect killers, and knew the devastation they could cause upon maturity. The planet had intentionally allowed the humans to take a few Metroids away so that the creatures could grow up and kill anyone out amongst the stars who ever thought of returning. SR388 took any opportunity to gain revenge against an outside universe that refused to leave it alone. [M2 SP] </p>
<p> As the scientists began to broadcast their findings back to the Galactic Federation, Mother Brain intercepted the transmission. She cross-referenced their data with notes buried in the Chozos ancient fragmented records. She deduced that the Metroids were a form of genetically engineered predator of incredible power, created by the Chozo for an unknown purpose. Mother Brain ordered High Command to get the creatures to her by any means necessary. [M1 SP] </p>
<p> The Space Pirates overran the Galactic Federation vessel and stole the Metroid creatures. They divided their prize: some were sent to their nearest Homeworld; others were sent to the Tallon IV outpost; and the most potent were delivered straight to Zebes for the experiments of Mother Brain. [M1 / MP / MP3] </p>
<p> With the arrival of the first Phazon samples from Tallon IV, the exotic substance allowed the Space Pirates to slowly produce stable cloned Metroids across their breeding sites. [M1 SP / MP SP] </p>
<h3 id="h3306">
<a id=""></a>The Revenge of Samus Aran </h3>
<figure data-id="18zqk7ps96cb3jpg" data-recommend-id="image://18zqk7ps96cb3jpg" data-format="jpg" data-width="640" data-height="480" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk7ps96cb3jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk7ps96cb3jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk7ps96cb3jpg.jpg 470w" draggable="auto" data-chomp-id="18zqk7ps96cb3jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk7ps96cb3jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk7ps96cb3jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk7ps96cb3jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://ojanpohja.deviantart.com/art/Space-Pirate-31294390&quot;,{&quot;metric25&quot;:1}]]" href="http://ojanpohja.deviantart.com/art/Space-Pirate-31294390" target="_blank" rel="noopener noreferrer"><em>Artist: Ojanpohja</em></a></span>) </p>
<p> In her first mission as a Bounty Hunter, Samus Arran was commissioned by the Galactic Federation to neutralise the stolen Metroids. Through careful investigation, Samus discovered that the Pirates are operating from Zebes her home. She concluded that the Space Pirates had murdered her second family, as they had done with her first. They have took from her everyone she ever loved, and destroyed her two worlds. [M1] </p>
<figure data-id="18zqk8x71i4gnjpg" data-recommend-id="image://18zqk8x71i4gnjpg" data-format="jpg" data-width="640" data-height="384" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk8x71i4gnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk8x71i4gnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk8x71i4gnjpg.jpg 470w" draggable="auto" data-chomp-id="18zqk8x71i4gnjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqk8x71i4gnjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqk8x71i4gnjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqk8x71i4gnjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://stuarthughe.deviantart.com/art/Samus-Varia-322194081&quot;,{&quot;metric25&quot;:1}]]" href="http://stuarthughe.deviantart.com/art/Samus-Varia-322194081" target="_blank" rel="noopener noreferrer"><em>Artist: Stuart Hughe</em></a></span>) </p>
<p> Samus stormed Zebes and killed everyone in her path. [M1] </p>
<figure data-id="18zqkachpcz0ijpg" data-recommend-id="image://18zqkachpcz0ijpg" data-format="jpg" data-width="640" data-height="530" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkachpcz0ijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkachpcz0ijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkachpcz0ijpg.jpg 470w" draggable="auto" data-chomp-id="18zqkachpcz0ijpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkachpcz0ijpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkachpcz0ijpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkachpcz0ijpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://immarart.deviantart.com/art/Metroid-337270954&quot;,{&quot;metric25&quot;:1}]]" href="http://immarart.deviantart.com/art/Metroid-337270954" target="_blank" rel="noopener noreferrer"><em>Artist: Immarart</em></a></span>) </p>
<p> As her defences were breached, Mother Brain unleashed the great generals Ridley and Kraid. Both were killled, and, desperate to stop the intruder, Mother Brain released the Metroids. Samus Aran exterminated the creatures, and invaded the inner sanctum. [M1] </p>
<figure data-id="18zqkbhxb2ugpjpg" data-recommend-id="image://18zqkbhxb2ugpjpg" data-format="jpg" data-width="640" data-height="360" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkbhxb2ugpjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkbhxb2ugpjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkbhxb2ugpjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkbhxb2ugpjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkbhxb2ugpjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkbhxb2ugpjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkbhxb2ugpjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://twigs.deviantart.com/art/The-Mother-s-Chamber-140408495&quot;,{&quot;metric25&quot;:1}]]" href="http://twigs.deviantart.com/art/The-Mother-s-Chamber-140408495" target="_blank" rel="noopener noreferrer"><em>Artist: Twigs</em></a></span>) </p>
<p> Samus confronted the malevolent Mother Brain and blasted apart her body. A power overload was caused, and the Tourian facility shook itself apart. Samus evacuated to her ship and tried to leave Zebes, but a Space Pirate battleship in orbit registered her ascent and opened fire. Samus gunship plummeted back towards the Zebes and impacted Chozodia, her former home. [M1] </p>
<p> Extremely lucky to be alive, Samus crawled out of the remains of her destroyed power suit, and fled as Space Pirate forces stormed the area. Samus hid, crawled and ran to find sanctuary in the deepest part of the Chozos most revered temple. [M1] </p>
<figure data-id="18zqkdb1egv73jpg" data-recommend-id="image://18zqkdb1egv73jpg" data-format="jpg" data-width="640" data-height="500" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkdb1egv73jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkdb1egv73jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkdb1egv73jpg.jpg 470w" draggable="auto" data-chomp-id="18zqkdb1egv73jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkdb1egv73jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkdb1egv73jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkdb1egv73jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://eyes5.deviantart.com/art/Blessing-6012954&quot;,{&quot;metric25&quot;:1}]]" href="http://eyes5.deviantart.com/art/Blessing-6012954" target="_blank" rel="noopener noreferrer"><em>Artist: Eyes5</em></a></span>) </p>
<p> Samus found herself surrounded with murals of the dead Chozo, and accepted she was alone in the universe. Overcoming despair, she solved the trials of the Chozodian temple and a concealed power suit was revealed to her. This shining armour was even more potent than the one she had just lost, and was able to integrate the most exotic Chozo technologies. Samus realised the greater meaning of her find; the Chozo had left her gifts for her in places they had foreseen she would traverse. Her adopted family continued to protect her long after their deaths, and she would find their statues cradling survival equipment in the darkest corners of the cosmos. [M1 / MP / MP3 / M2 / SM] </p>
<figure data-id="18zqkeig3z5btjpg" data-recommend-id="image://18zqkeig3z5btjpg" data-format="jpg" data-width="640" data-height="374" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkeig3z5btjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkeig3z5btjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkeig3z5btjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkeig3z5btjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkeig3z5btjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkeig3z5btjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkeig3z5btjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://imachinivid.deviantart.com/art/Super-missile-309591371&quot;,{&quot;metric25&quot;:1}]]" href="http://imachinivid.deviantart.com/art/Super-missile-309591371" target="_blank" rel="noopener noreferrer"><em>Artist: Imachinivid</em></a></span>) </p>
<p> With her new armaments, Samus cleansed the Space Pirate presence from Zebes. She came to be known as “The Hunter”, and the Space Pirates learned that they will always be hunted down for what they did to her families. They fled the planet in terror. [M1 / MP / MP2 / MP3] </p>
<h3 id="h3307">
<a id=""></a>Tallon IV </h3>
<p> As years passed, Samus Aran accepted further missions from the Galactic Federation. The bounty earned funded her personal vendetta against the Space Pirates. She improved her armaments, paid for black market information and stormed their outposts. Samus showed her enemies no mercy, and became the feared nemesis of their entire civilisation. With the income from her Federation services, Samus had soon amassed enough money to buy the most secret information regarding the Space Pirates: the coordinates of their stronghold on an old forgotten planet called Tallon IV. [MP1 SP] </p>
<p> Samus guided her ship into the Tallon system and investigated an orbiting space station. She discovered a failed genetic engineering facility whose Space Pirate crew was murdered when they lost control of their own creations. Samus fought her way through the ferocious beasts scattered within, and discovered a half-insane cyborg recreation of the Space Pirate general Ridley. As the station began to collapse, the biomechanical dragon fled to the world below, and Samus pursued. [MP1] </p>
<figure data-id="18zqkglfb56vojpg" data-recommend-id="image://18zqkglfb56vojpg" data-format="jpg" data-width="640" data-height="311" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkglfb56vojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkglfb56vojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkglfb56vojpg.jpg 470w" draggable="auto" data-chomp-id="18zqkglfb56vojpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkglfb56vojpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkglfb56vojpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkglfb56vojpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://lightningarts.deviantart.com/art/Metroid-Metal-Where-It-All-Begins-393272172&quot;,{&quot;metric25&quot;:1}]]" href="http://lightningarts.deviantart.com/art/Metroid-Metal-Where-It-All-Begins-393272172" target="_blank" rel="noopener noreferrer"><em>Artist: Lightningarts</em></a></span>) </p>
<p> Samus lost Ridley in the planets stormy atmosphere, and elected to land in a nearby jungle to conceal her presence from the Pirate ground forces. Exploring the surroundings, Samus discovered that the planet was once home to the bulk of the extinct Chozo civilisation. In a great temple Samus studied poetic murals that told of the Phazon comet that had struck their world. The scribblings informed her of a creature trapped deep in the comet that they referred to as “The Worm,” and of the powerful shield they erected to prevent its escape. Samus read their last prophecy; that a hero would traverse fire and ice, jungle and cave, and find twelve sacred keys that would deactivate the barrier and allow passage to the Impact Crater. This saviour from the stars would bring down the ancient shield, and destroy the worm that infected their planet. [MP1] </p>
<p> She continued her exploration, and battled ferocious flora and fauna. The Hunter came to understand that the Space Pirates had established a complex military installation that descended far below the surface. [MP1] </p>
<figure data-id="18zqkick4w4i9jpg" data-recommend-id="image://18zqkick4w4i9jpg" data-format="jpg" data-width="640" data-height="517" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkick4w4i9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkick4w4i9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkick4w4i9jpg.jpg 470w" draggable="auto" data-chomp-id="18zqkick4w4i9jpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkick4w4i9jpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkick4w4i9jpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkick4w4i9jpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://r-sraven.deviantart.com/art/Metroid-Prime-Lost-Ruins-33577678&quot;,{&quot;metric25&quot;:1}]]" href="http://r-sraven.deviantart.com/art/Metroid-Prime-Lost-Ruins-33577678" target="_blank" rel="noopener noreferrer"><em>Artist: R-Sraven</em></a></span>) </p>
<p> Samus hunted the Pirates and accessed their computer logs. The Empire had found quantities of an intensely potent mutagen called Phazon. Laboratories across the outpost experimented with the substance, and in a short space of time they had created prototypes for the next generation of their races: powerful Phazon-fuelled juggernauts. Should these advances continue, Samus knew that the Space Pirates would be able to conquer the Galactic Federation. [MP1] </p>
<figure data-id="18zqkje1rl63yjpg" data-recommend-id="image://18zqkje1rl63yjpg" data-format="jpg" data-width="800" data-height="816" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkje1rl63yjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkje1rl63yjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkje1rl63yjpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zqkje1rl63yjpg.jpg 800w" draggable="auto" data-chomp-id="18zqkje1rl63yjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkje1rl63yjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkje1rl63yjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkje1rl63yjpg.jpg 470w, https://i.kinja-img.com/gawker-media/image/upload/c_scale,f_auto,fl_progressive,q_80,w_800/18zqkje1rl63yjpg.jpg 800w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968&quot;,{&quot;metric25&quot;:1}]]" href="http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968" target="_blank" rel="noopener noreferrer"><em>Artist: Greenstranger</em></a></span>) </p>
<p> In the most secure laboratory, Samus made a devastating discovery. The Space Pirates had used Phazon to create an army of stable clone Metroids and lost containment. The Metroid creatures were roaming the caverns deep in the planet, reproducing and mutating as the Phazon influenced their physiology. [MP1] </p>
<figure data-id="18zqklb3wp0jajpg" data-recommend-id="image://18zqklb3wp0jajpg" data-format="jpg" data-width="640" data-height="365" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqklb3wp0jajpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqklb3wp0jajpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqklb3wp0jajpg.jpg 470w" draggable="auto" data-chomp-id="18zqklb3wp0jajpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqklb3wp0jajpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqklb3wp0jajpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqklb3wp0jajpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968&quot;,{&quot;metric25&quot;:1}]]" href="http://greenstranger.deviantart.com/art/Metroid-Ceres-Station-Lab-358321968" target="_blank" rel="noopener noreferrer"><em>Artist: Ohimseeinstars</em></a></span>) </p>
<p> Samus final discovery was the most horrific. The powerful, poisonous Phazon was not a rare material on Tallon IV. Despite the Chozo shield containing the Impact Crater, the substance had spread and consumed the world inside-out. The core of the planet presented the Space Pirates with a vast supply of Phazon, enough to fuel their conquest of the stars. [MP1] </p>
<p> Samus destroyed the mining facilities and laboratories, and reconstructed the twelve parts of the ancient Chozo cipher. She destroyed living weapons such as the Thardus experiment, and annihilated the prototype Omega Pirate. She overcame corrupted Metroids, and banished the tormented Chozo ghosts from the living world. She fought the mad Meta Ridley, and on his demise deactivated the Chozo containment shield. As prophesised, Samus Aran entered the Impact Crater. [MP1] </p>
<h3 id="h3308">
<a id=""></a>The Worm </h3>
<p> Samus Aran had opened Metroid Primes cage, and had no understanding of what she was about to unleash on the universe. The creature had been imprisoned in a different era, and had spent eons being tortuously transformed by Phazon into an undying mad genius. [MP1] </p>
<figure data-id="18zqkn672gklqjpg" data-recommend-id="image://18zqkn672gklqjpg" data-format="jpg" data-width="640" data-height="499" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkn672gklqjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkn672gklqjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkn672gklqjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkn672gklqjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkn672gklqjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkn672gklqjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkn672gklqjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<em>Artist: Chrysaetos-Pteron</em>) </p>
<p> Samus and the ancient Metroid battled, and the bounty hunter shattered the creatures metal armour. By channelling the surrounding Phazon deposits into a supercharged energy beam, Samus was able to devastate Metroid Primes gelatinous body. After a tremendous battle, the old creature began to collapse on itself. [MP1] </p>
<figure data-id="18zqkodlj2z8kjpg" data-recommend-id="image://18zqkodlj2z8kjpg" data-format="jpg" data-width="640" data-height="525" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkodlj2z8kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkodlj2z8kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkodlj2z8kjpg.jpg 470w" draggable="auto" data-chomp-id="18zqkodlj2z8kjpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkodlj2z8kjpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkodlj2z8kjpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkodlj2z8kjpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://sabretoontigers.deviantart.com/art/Samus-308644319&quot;,{&quot;metric25&quot;:1}]]" href="http://sabretoontigers.deviantart.com/art/Samus-308644319" target="_blank" rel="noopener noreferrer"><em>Artist: Sabretoontigers</em></a></span>) </p>
<p> Seemingly dying, Metroid Prime lashed out, grabbing a layer of material from Samus Arans armour. The creature melted into a pool of Phazon particles, and the bounty hunter evacuated the Impact Crater. [MP1] </p>
<p> Samus Aran had seemingly succeeded in her mission. The surviving Space Pirates abandoned their devastated facilities and hastily evacuated the planet. With the defeat of Metroid Prime, the Phazon contagion was slowly stopping its spread. The tormented Chozo spirits that had been bound to the planet were finally able to achieve their rest. Leaving the world to recover from its devastation, Samus Aran headed back to the stars. [MP1 / MP1 SP] </p>
<h3 id="h3309">
<a id=""></a>The Dark Hunter </h3>
<p> Metroid Primes exposure to millennia of Phazon had given the creature extremely exotic abilities, the most potent being its durability to recreate itself after nearly any level of destruction. As it had collapsed on itself, the essence of Metroid Prime craved the strength and adaptability present in Samus Aran. In the Talon IV impact crater, Metroid Prime recreated itself as a dark copy of the woman who had defeated it. [MP 1 / MP2 / MP3 SP] </p>
<figure data-id="18zqkq6pqyr8ljpg" data-recommend-id="image://18zqkq6pqyr8ljpg" data-format="jpg" data-width="640" data-height="412" data-lightbox="true" data-recommended="false" contenteditable="false" draggable="false">
<div contenteditable="false" data-syndicationrights="false">
<div>
<p><img alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkq6pqyr8ljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkq6pqyr8ljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkq6pqyr8ljpg.jpg 470w" draggable="auto" data-chomp-id="18zqkq6pqyr8ljpg" data-format="jpg" data-alt="Illustration for article titled The Spectacular Story Of emMetroid/em, One Of Gamings Richest Universes" data-anim-src="" srcset="https://i.kinja-img.com/gawker-media/image/upload/c_fill,f_auto,fl_progressive,g_center,h_80,q_80,w_80/18zqkq6pqyr8ljpg.jpg 80w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,fl_progressive,q_80,w_320/18zqkq6pqyr8ljpg.jpg 320w, https://i.kinja-img.com/gawker-media/image/upload/c_fit,f_auto,fl_progressive,q_80,w_470/18zqkq6pqyr8ljpg.jpg 470w" />
</p>
</div>
</div>
</figure>
<p> (<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://imachinivid.deviantart.com/art/Dark-Samus-returns-295856131&quot;,{&quot;metric25&quot;:1}]]" href="http://imachinivid.deviantart.com/art/Dark-Samus-returns-295856131" target="_blank" rel="noopener noreferrer"><em>Artist: Imachinivid</em></a></span>) </p>
<p> Dark Samus clawed its way out of the Impact Crater. It departed Tallon IV to spread its venom across the stars, and to sow the seeds of a great war. [MP1 / MP2 / MP3] </p>
<p>
<span><a data-ga="[[&quot;Embedded Url&quot;,&quot;Internal link&quot;,&quot;https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108&quot;,{&quot;metric25&quot;:1}]]" href="https://kotaku.com/the-spectacular-story-of-metroid-part-2-1284621108"><em>Click here for the second half of this epic story.</em></a></span>
</p>
<hr />
<p>
<small>Mama Robotnik is a video game historian living somewhere in the British Empire. He specialises in unearthing lost gaming media, but also enjoys a good long essay about his favourite games every now and then. He drinks a lot of tea, and has a horrendously naughty black and white cat called Blossom. If you would like to contact him, he responds to his private messages over at</small> <span><a data-ga="[[&quot;Embedded Url&quot;,&quot;External link&quot;,&quot;http://www.neogaf.com/forum/&quot;,{&quot;metric25&quot;:1}]]" href="http://www.neogaf.com/forum/" target="_blank" rel="noopener noreferrer"><small>NeoGAF</small></a></span><small>.</small>
</p>
</div>
</div>

File diff suppressed because one or more lines are too long

@ -3,6 +3,6 @@
"byline": "By Ana Sandoiu",
"dir": null,
"excerpt": "New research investigates the neurobiological timing of the so-called a-ha! moment that occurs we have come up with the solution to a complex problem.",
"readerable": true,
"siteName": "Medical News Today"
"siteName": "Medical News Today",
"readerable": true
}

@ -1,155 +1,46 @@
<div id="readability-page-1" class="page">
<div>
<div itemprop="articleBody">
<header>
Neuroscience tells us that most of the work done by our brains happens on an unconscious level, but when
does that "a-ha!" moment occur? And what happens during it? New research investigates.
</header>
<p><img src="data:image/gif;base64,R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=="
data-src="https://cdn1.medicalnewstoday.com/content/images/articles/318/318674/hand-holding-brain-lightbulb.jpg"
alt="hand holding brain lightbulb" /><br/>
<em>A new study investigates when the 'a-ha!' moment takes place in the brain, and how similar it is to
other brain processes.</em>
</p>
<p>
Many of us have noticed that we seem to get our best ideas when we're in the shower, or that we can find
the answer to a difficult question when we least think about it.
</p>
<p>
A large body of neuroscientific <a href="http://journals.sagepub.com/doi/abs/10.1177/0956797612446024"
target="_blank" rel="noopener">studies</a> has pointed out that the
brain does a lot of work in its spare time, the so-called idle state - wherein the brain does not appear
to be thinking about anything at all - and that this is the time when it works at its hardest to find
solutions to complex problems.
</p>
<p>
With time and advances in <a href="http://fakehost/articles/248680.php"
title="What is neuroscience?">neuroscience</a>, it has become more and more
clear to researchers that Freud <em>was</em> right and the mind, as well as the brain, do work
unconsciously. In fact, it would be safe to say that what is consciously known to us is just the tip of
a much larger iceberg, deeply submerged in unconscious waters.
</p>
<p>
But the exact moment at which information becomes known to us - or when the "tip of the iceberg" pierces
through the water, and the unconscious becomes conscious - has been somewhat of a mystery, from a
neuroscientific point of view.
</p>
<p>
In other words, we do not yet know when that intellectually satisfying "a-ha!" moment takes place, or
what the biology is behind it. This is why a team of researchers at Columbia University in New York
City, NY, set out to investigate this moment in more detail.
</p>
<p>
The scientists were led by Michael Shadlen, Ph.D., of Columbia University's Mortimer B. Zuckerman Mind
Brain Behavior Institute, and the <a
href="http://www.cell.com/current-biology/fulltext/S0960-9822(17)30784-4" target="_blank"
rel="noopener">findings</a> were published in the journal <em>Current Biology.</em>
</p><!--[DLB]--><!-- Leaderboard BANNER advert -->
<!-- /header_ad code --><!--[END DLB]--><!--[MMR]--><!--[END MMR]-->
<h2>
The hypothesis
</h2>
<p>
Dr. Shadlen and colleagues started out from an interesting hypothesis, one which they derived from
previous research on the neurobiological processes involved in decision-making.
</p>
<p>
As the authors explain, research conducted in both monkeys and humans shows that many of our decisions
take place at a point when the brain "feels" as though it has gathered enough information, or when a
critical level of information has been accumulated.
</p>
<p>
This process of making a decision once the brain has accumulated enough evidence bears the name of
"bounded evidence accumulation." Reaching this threshold is important because, although the brain does
not use <em>all</em> of the information available, it uses as much as is necessary to make a speedy yet
accurate decision.
</p>
<p>
<strong>The researchers wondered whether or not this threshold is also responsible for our "eureka!"
moments.</strong>
</p>
<p>
In Dr. Shadlen's words, "Could the moment when the brain believes it has accumulated enough evidence be
tied to the person's awareness of having decided - that important 'a-ha!' moment?"
</p><!--[DLB]--><!-- Leaderboard BANNER advert -->
<!-- /header_ad code --><!--[END DLB]--><!--[MMR]--><!--[END MMR]-->
<h2>
Examining the 'a-ha!' moment
</h2>
<p>
To answer this question, the scientists asked five people to perform a "direction discrimination" task.
In it, the participants looked at dots on a computer screen. The dots moved randomly, as grains of sand
would when blown by the wind. The participants were asked to say in which direction the dots had moved.
</p>
<p>
The moment they "decided" which direction the dots seemed to be taking was considered to be the
equivalent of the "a-ha!" moment.
</p>
<p>
In the center of the screen, there was a fixed point and a clock. The display also had two "choice
targets" - namely, left or right - and these were the directions in which the participants had to decide
that the dots had moved.
</p>
<p>
Shortly after the dots had stopped moving, the participants used an electronic, hand-held stylus to move
the cursor in the direction that they thought the dots had moved.
</p>
<p>
To determine when the decision was made, the researchers used the technique called "mental chronometry"
- that is, after they made their decision, the participants were asked to move the clock backward to the
point when they felt that they had consciously done so.
</p>
<p>
"The moment in time indicated by the participants - this mental chronometry - was entirely subjective;
it relied solely on their own estimation of how long it took them to make that decision," Dr. Shadlen
says. "And because it was purely subjective, in principle it ought to be unverifiable."
</p><!--[DLB]--><!-- Leaderboard BANNER advert -->
<!-- /header_ad code --><!--[END DLB]--><!--[MMR]--><!--[END MMR]-->
<h2>
'A-ha' moment similar to making a decision
</h2>
<p>
However, by applying a mathematical model, the scientists were able to match these subjective decision
times to the bounded evidence accumulation process.
</p>
<p>
<strong>The subjective decision times fit so well with what the scientists determined as the evidence
accumulation threshold that they were able to predict the choices of four of the five
participants.</strong>
</p>
<p>
"If the time reported to us by the participants was valid, we reasoned that it might be possible to
predict the accuracy of the decision," explains Dr. Shadlen.
</p>
<p>
"We incorporated a kind of mathematical trick, based on earlier studies, which showed that the speed and
accuracy of decisions were tied together by the same brain function." This "mathematical trick" was the
evidence accumulation model.
</p>
<header> Neuroscience tells us that most of the work done by our brains happens on an unconscious level, but when does that "a-ha!" moment occur? And what happens during it? New research investigates. </header>
<p><img data-src="https://cdn1.medicalnewstoday.com/content/images/articles/318/318674/hand-holding-brain-lightbulb.jpg" alt="hand holding brain lightbulb" src="https://cdn1.medicalnewstoday.com/content/images/articles/318/318674/hand-holding-brain-lightbulb.jpg" /><br />
<em>A new study investigates when the 'a-ha!' moment takes place in the brain, and how similar it is to other brain processes.</em>
</p>
<p> Many of us have noticed that we seem to get our best ideas when we're in the shower, or that we can find the answer to a difficult question when we least think about it. </p>
<p> A large body of neuroscientific <a href="http://journals.sagepub.com/doi/abs/10.1177/0956797612446024" target="_blank" rel="noopener">studies</a> has pointed out that the brain does a lot of work in its spare time, the so-called idle state - wherein the brain does not appear to be thinking about anything at all - and that this is the time when it works at its hardest to find solutions to complex problems. </p>
<p> With time and advances in <a href="http://fakehost/articles/248680.php" title="What is neuroscience?">neuroscience</a>, it has become more and more clear to researchers that Freud <em>was</em> right and the mind, as well as the brain, do work unconsciously. In fact, it would be safe to say that what is consciously known to us is just the tip of a much larger iceberg, deeply submerged in unconscious waters. </p>
<p> But the exact moment at which information becomes known to us - or when the "tip of the iceberg" pierces through the water, and the unconscious becomes conscious - has been somewhat of a mystery, from a neuroscientific point of view. </p>
<p> In other words, we do not yet know when that intellectually satisfying "a-ha!" moment takes place, or what the biology is behind it. This is why a team of researchers at Columbia University in New York City, NY, set out to investigate this moment in more detail. </p>
<p> The scientists were led by Michael Shadlen, Ph.D., of Columbia University's Mortimer B. Zuckerman Mind Brain Behavior Institute, and the <a href="http://www.cell.com/current-biology/fulltext/S0960-9822(17)30784-4" target="_blank" rel="noopener">findings</a> were published in the journal <em>Current Biology.</em>
</p>
<h2> The hypothesis </h2>
<p> Dr. Shadlen and colleagues started out from an interesting hypothesis, one which they derived from previous research on the neurobiological processes involved in decision-making. </p>
<p> As the authors explain, research conducted in both monkeys and humans shows that many of our decisions take place at a point when the brain "feels" as though it has gathered enough information, or when a critical level of information has been accumulated. </p>
<p> This process of making a decision once the brain has accumulated enough evidence bears the name of "bounded evidence accumulation." Reaching this threshold is important because, although the brain does not use <em>all</em> of the information available, it uses as much as is necessary to make a speedy yet accurate decision. </p>
<p>
<strong>The researchers wondered whether or not this threshold is also responsible for our "eureka!" moments.</strong>
</p>
<p> In Dr. Shadlen's words, "Could the moment when the brain believes it has accumulated enough evidence be tied to the person's awareness of having decided - that important 'a-ha!' moment?" </p>
<h2> Examining the 'a-ha!' moment </h2>
<p> To answer this question, the scientists asked five people to perform a "direction discrimination" task. In it, the participants looked at dots on a computer screen. The dots moved randomly, as grains of sand would when blown by the wind. The participants were asked to say in which direction the dots had moved. </p>
<p> The moment they "decided" which direction the dots seemed to be taking was considered to be the equivalent of the "a-ha!" moment. </p>
<p> In the center of the screen, there was a fixed point and a clock. The display also had two "choice targets" - namely, left or right - and these were the directions in which the participants had to decide that the dots had moved. </p>
<p> Shortly after the dots had stopped moving, the participants used an electronic, hand-held stylus to move the cursor in the direction that they thought the dots had moved. </p>
<p> To determine when the decision was made, the researchers used the technique called "mental chronometry" - that is, after they made their decision, the participants were asked to move the clock backward to the point when they felt that they had consciously done so. </p>
<p> "The moment in time indicated by the participants - this mental chronometry - was entirely subjective; it relied solely on their own estimation of how long it took them to make that decision," Dr. Shadlen says. "And because it was purely subjective, in principle it ought to be unverifiable." </p>
<h2> 'A-ha' moment similar to making a decision </h2>
<p> However, by applying a mathematical model, the scientists were able to match these subjective decision times to the bounded evidence accumulation process. </p>
<p>
<strong>The subjective decision times fit so well with what the scientists determined as the evidence accumulation threshold that they were able to predict the choices of four of the five participants.</strong>
</p>
<p> "If the time reported to us by the participants was valid, we reasoned that it might be possible to predict the accuracy of the decision," explains Dr. Shadlen. </p>
<p> "We incorporated a kind of mathematical trick, based on earlier studies, which showed that the speed and accuracy of decisions were tied together by the same brain function." This "mathematical trick" was the evidence accumulation model. </p>
<blockquote>
<p>
<span>"</span>Essentially, the act of becoming consciously aware of a decision conforms to the same
process that the brain goes through to complete a decision, even a simple one - such as whether to
turn left or right."
</p>
<p>
Michael Shadlen, Ph.D.
</p>
<span>"</span>Essentially, the act of becoming consciously aware of a decision conforms to the same process that the brain goes through to complete a decision, even a simple one - such as whether to turn left or right." </p>
<p> Michael Shadlen, Ph.D. </p>
</blockquote>
<p>
In other words, the study shows that the conscious awareness of the "a-ha!" moment takes place precisely
when the brain has reached that threshold of evidence accumulation.
</p>
<p>
The findings provide unique insights into the biology of consciousness, say the researchers, and they
bring us closer to understanding the biological basis of decisions, ethics, and, generally, the human
mind.
</p>
<p> In other words, the study shows that the conscious awareness of the "a-ha!" moment takes place precisely when the brain has reached that threshold of evidence accumulation. </p>
<p> The findings provide unique insights into the biology of consciousness, say the researchers, and they bring us closer to understanding the biological basis of decisions, ethics, and, generally, the human mind. </p>
</div>
</div>
</div>

@ -2,7 +2,7 @@
"title": "新竹尖石_美樹營地賞楓 (2) @ 史蒂文的家_藍天 :: 痞客邦 PIXNET ::",
"byline": "史蒂文的家_藍天 (stevenhgm)",
"dir": null,
"excerpt": "一波波接續性低溫寒流報到 已將新竹尖石鄉後山一帶層層山巒披上嫣紅的彩衣 玉峰道路一路上雲氣山嵐滯留山頭 順路下切蜿蜒道路後不久即抵達來到&quot;玉峰國小&quot; &quot;美樹&quot;美",
"readerable": true,
"siteName": "史蒂文的家_藍天"
"excerpt": "一波波接續性低溫寒流報到 已將新竹尖石鄉後山一帶層層山巒披上嫣紅的彩衣 玉峰道路一路上雲氣山嵐滯留山頭 順路下切蜿蜒道路後不久即抵達來到\"玉峰國小\" \"美樹\"美",
"siteName": "史蒂文的家_藍天",
"readerable": true
}

@ -1,6 +1,8 @@
<div id="readability-page-1" class="page">
<div id="article-content-inner">
<p> <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="12-IMG_3886.jpg" src="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" alt="12-IMG_3886.jpg" original="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" width="521" height="359"/></a> </p>
<p>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="12-IMG_3886.jpg" src="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" alt="12-IMG_3886.jpg" original="http://pic.pimg.tw/stevenhgm/1387894842-1217674167.jpg" width="521" height="359" /></a>
</p>
<p><span>一波波<span>接續性</span>低溫寒流報到 已將新竹尖石鄉後山一帶層層山巒披上嫣紅的彩衣</span>
</p>
<p><span>玉峰道路一路上雲氣山嵐滯留山頭 順路下切<span>蜿蜒道路<span>後不久即抵達</span>來到</span>"玉峰國小"</span>
@ -12,153 +14,164 @@
</p>
<p><span><span><span>營區內</span></span>除了露營、民宿、餐飲</span><span><span></span>賞楓項目<span>多了許多原木飾品更有畫龍點睛加乘效果</span></span>
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470396919"><img title="30-IMG_4228.jpg" src="http://pic.pimg.tw/stevenhgm/1387894971-1486345289.jpg" alt="30-IMG_4228.jpg" original="http://pic.pimg.tw/stevenhgm/1387894971-1486345289.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470396919"><img title="30-IMG_4228.jpg" src="http://pic.pimg.tw/stevenhgm/1387894971-1486345289.jpg" alt="30-IMG_4228.jpg" original="http://pic.pimg.tw/stevenhgm/1387894971-1486345289.jpg" /></a></span></p>
<p><span>廣受歡迎的美樹營地有個很大特色就是<span>楓紅時期楓香樹由綠轉黃、轉紅到楓紅層層</span> </span>
</p>
<p><span><span>一來到"美樹"馬上眼睛為之一亮 也會深深地為那</span></span><span><span>多種顏色多層次渲染之下楓紅而迷惑</span></span>
</p>
<p><span><span><span><span>不同格調</span></span>就是從入口處這塊招牌<span><span><span><span>第一眼<span><span><span><span>開始</span></span>
</span>
</span> 木頭招牌</span>
</span>
</span>
</span>、貓頭鷹裝飾品勾勒出美樹的風格</span>
</span>
</span> 木頭招牌</span>
</span>
</span>
</span>、貓頭鷹裝飾品勾勒出美樹的風格</span>
</span>
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470396943"><img title="31-IMG_4231.jpg" src="http://pic.pimg.tw/stevenhgm/1387894979-1252095111.jpg" alt="31-IMG_4231.jpg" original="http://pic.pimg.tw/stevenhgm/1387894979-1252095111.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470396943"><img title="31-IMG_4231.jpg" src="http://pic.pimg.tw/stevenhgm/1387894979-1252095111.jpg" alt="31-IMG_4231.jpg" original="http://pic.pimg.tw/stevenhgm/1387894979-1252095111.jpg" /></a></span></p>
<p><span> 每年12月向來是攝影班外拍的絕佳場所之一 楓紅期間入園費$50元</span></p>
<p><span>園區給愛攝一族淨空場景而不是散搭帳蓬之下反</span><span>而影響拍照畫面與構圖取景</span></p>
<p><span>露營的話則須待中午過後再進場搭帳的彈性做法個人也相當支持這樣的權宜之計</span></p>
<p><span> </span> <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610088.jpg" src="http://pic.pimg.tw/stevenhgm/1387971416-4261675924.jpg" alt="P1610088.jpg" original="http://pic.pimg.tw/stevenhgm/1387971416-4261675924.jpg"/></a> </p>
<p><span> </span>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610088.jpg" src="http://pic.pimg.tw/stevenhgm/1387971416-4261675924.jpg" alt="P1610088.jpg" original="http://pic.pimg.tw/stevenhgm/1387971416-4261675924.jpg" /></a>
</p>
<p> <span>來到現場已是落葉飄飄堆疊滿地 不時隨著風吹雨襲而葉落垂地</span></p>
<p><span> </span> <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610069.jpg" src="http://pic.pimg.tw/stevenhgm/1387971406-2480195851.jpg" alt="P1610069.jpg" original="http://pic.pimg.tw/stevenhgm/1387971406-2480195851.jpg"/></a> </p>
<p><span> </span>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610069.jpg" src="http://pic.pimg.tw/stevenhgm/1387971406-2480195851.jpg" alt="P1610069.jpg" original="http://pic.pimg.tw/stevenhgm/1387971406-2480195851.jpg" /></a>
</p>
<p><span>不忍踩過剛剛掉落的樹葉 沿著前人足跡踏痕輕踩而行</span></p>
<p><span>雖然只是一廂情願的想法 終究還是不可避免地將會化為塵土</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470383005"><img title="02-P1610080.jpg" src="http://pic.pimg.tw/stevenhgm/1387894752-3567294980.jpg" alt="02-P1610080.jpg" original="http://pic.pimg.tw/stevenhgm/1387894752-3567294980.jpg"/></a> </span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470383005"><img title="02-P1610080.jpg" src="http://pic.pimg.tw/stevenhgm/1387894752-3567294980.jpg" alt="02-P1610080.jpg" original="http://pic.pimg.tw/stevenhgm/1387894752-3567294980.jpg" /></a> </span></p>
<p><span> 葉落繽紛顯得幾分蕭瑟氣息 空氣中可以嗅得出來<span>依然</span>瀰漫著濕寒水氣</span>
</p>
<p><span>偶而還會飄下來一些霧氣水滴 不時張望尋找最佳楓葉主題</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470384469"><img title="04-P1610087.jpg" src="http://pic.pimg.tw/stevenhgm/1387894771-2897027724.jpg" alt="04-P1610087.jpg" original="http://pic.pimg.tw/stevenhgm/1387894771-2897027724.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470384469"><img title="04-P1610087.jpg" src="http://pic.pimg.tw/stevenhgm/1387894771-2897027724.jpg" alt="04-P1610087.jpg" original="http://pic.pimg.tw/stevenhgm/1387894771-2897027724.jpg" /></a></span></p>
<p><span> 外拍的攝影班學員一堆早已不時穿梭其間</span></p>
<p><span>各自努力地找尋自認為最好的拍攝角度</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470384925"><img title="05-P1610099.jpg" src="http://pic.pimg.tw/stevenhgm/1387894778-2035483089.jpg" alt="05-P1610099.jpg" original="http://pic.pimg.tw/stevenhgm/1387894778-2035483089.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610095.jpg" src="http://pic.pimg.tw/stevenhgm/1387897405-3236217457.jpg" alt="P1610095.jpg" original="http://pic.pimg.tw/stevenhgm/1387897405-3236217457.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470389803"><img title="13-IMG_3891.jpg" src="http://pic.pimg.tw/stevenhgm/1387894848-3695967443.jpg" alt="13-IMG_3891.jpg" original="http://pic.pimg.tw/stevenhgm/1387894848-3695967443.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470390760"><img title="15-IMG_3906.jpg" src="http://pic.pimg.tw/stevenhgm/1387894863-3269042540.jpg" alt="15-IMG_3906.jpg" original="http://pic.pimg.tw/stevenhgm/1387894863-3269042540.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470384925"><img title="05-P1610099.jpg" src="http://pic.pimg.tw/stevenhgm/1387894778-2035483089.jpg" alt="05-P1610099.jpg" original="http://pic.pimg.tw/stevenhgm/1387894778-2035483089.jpg" /></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610095.jpg" src="http://pic.pimg.tw/stevenhgm/1387897405-3236217457.jpg" alt="P1610095.jpg" original="http://pic.pimg.tw/stevenhgm/1387897405-3236217457.jpg" /></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470389803"><img title="13-IMG_3891.jpg" src="http://pic.pimg.tw/stevenhgm/1387894848-3695967443.jpg" alt="13-IMG_3891.jpg" original="http://pic.pimg.tw/stevenhgm/1387894848-3695967443.jpg" /></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470390760"><img title="15-IMG_3906.jpg" src="http://pic.pimg.tw/stevenhgm/1387894863-3269042540.jpg" alt="15-IMG_3906.jpg" original="http://pic.pimg.tw/stevenhgm/1387894863-3269042540.jpg" /></a></span></p>
<p><span>"水槽"上面的這幾隻彩繪版貓頭鷹也太可愛了</span></p>
<p><span>同樣的造型加上不同色彩宛如賦予不同的生命力一般 cool!</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470391000"><img title="16-IMG_3916.jpg" src="http://pic.pimg.tw/stevenhgm/1387894868-3997219746.jpg" alt="16-IMG_3916.jpg" original="http://pic.pimg.tw/stevenhgm/1387894868-3997219746.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470391000"><img title="16-IMG_3916.jpg" src="http://pic.pimg.tw/stevenhgm/1387894868-3997219746.jpg" alt="16-IMG_3916.jpg" original="http://pic.pimg.tw/stevenhgm/1387894868-3997219746.jpg" /></a></span></p>
<p><span> 雨水洗塵後的枝頭固然掉落些葉片是否也洗去塵勞憂傷</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470391519"><img title="17-IMG_3919.jpg" src="http://pic.pimg.tw/stevenhgm/1387894873-1524806724.jpg" alt="17-IMG_3919.jpg" original="http://pic.pimg.tw/stevenhgm/1387894873-1524806724.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470385711"><img title="06-IMG_3853.jpg" src="http://pic.pimg.tw/stevenhgm/1387894788-105924953.jpg" alt="06-IMG_3853.jpg" original="http://pic.pimg.tw/stevenhgm/1387894788-105924953.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470391519"><img title="17-IMG_3919.jpg" src="http://pic.pimg.tw/stevenhgm/1387894873-1524806724.jpg" alt="17-IMG_3919.jpg" original="http://pic.pimg.tw/stevenhgm/1387894873-1524806724.jpg" /></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470385711"><img title="06-IMG_3853.jpg" src="http://pic.pimg.tw/stevenhgm/1387894788-105924953.jpg" alt="06-IMG_3853.jpg" original="http://pic.pimg.tw/stevenhgm/1387894788-105924953.jpg" /></a></span></p>
<p><span> 喜歡拍照的不論是平面掃描、天空搜尋、</span><span>地上地毯式搜索</span></p>
<p><span>有如小說偵探一般 不放過蛛絲馬跡地用力尋尋覓覓找尋最美角度</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470386749"><img title="07-P1610104.jpg" src="http://pic.pimg.tw/stevenhgm/1387894798-1063855065.jpg" alt="07-P1610104.jpg" original="http://pic.pimg.tw/stevenhgm/1387894798-1063855065.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470387232"><img title="08-IMG_3862.jpg" src="http://pic.pimg.tw/stevenhgm/1387894807-309560703.jpg" alt="08-IMG_3862.jpg" original="http://pic.pimg.tw/stevenhgm/1387894807-309560703.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470386749"><img title="07-P1610104.jpg" src="http://pic.pimg.tw/stevenhgm/1387894798-1063855065.jpg" alt="07-P1610104.jpg" original="http://pic.pimg.tw/stevenhgm/1387894798-1063855065.jpg" /></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470387232"><img title="08-IMG_3862.jpg" src="http://pic.pimg.tw/stevenhgm/1387894807-309560703.jpg" alt="08-IMG_3862.jpg" original="http://pic.pimg.tw/stevenhgm/1387894807-309560703.jpg" /></a></span></p>
<p><span> 原本這周是由小朱團長早在一年前就跟"簍信"預定下來的場子</span></p>
<p><span>早上從台北出門之際還是小雨不斷細雨紛飛來到此地雖雨已停</span></p>
<p><span>但多日來的雨勢不斷已有部分區域水漬成攤並不適合落置帳篷</span></p>
<p><span><span>這個季節正是"控溪吊橋"一帶的楓紅變葉時刻 先行走一趟<span><span>秀巒賞景</span></span>
</span>
</span>
</span>
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470391732"><img title="18-P1610141.jpg" src="http://pic.pimg.tw/stevenhgm/1387894882-1881930036.jpg" alt="18-P1610141.jpg" original="http://pic.pimg.tw/stevenhgm/1387894882-1881930036.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470391732"><img title="18-P1610141.jpg" src="http://pic.pimg.tw/stevenhgm/1387894882-1881930036.jpg" alt="18-P1610141.jpg" original="http://pic.pimg.tw/stevenhgm/1387894882-1881930036.jpg" /></a></span></p>
<p><span>午後從"秀巒"回到美樹之際已經全數撤退只剩下我們三車留下來</span></p>
<p><span>唯有"離開地球表面"睡車上的才可以不受到地上泥濘而影響</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470392077"><img title="19-IMG_3933.jpg" src="http://pic.pimg.tw/stevenhgm/1387894887-407829597.jpg" alt="19-IMG_3933.jpg" original="http://pic.pimg.tw/stevenhgm/1387894887-407829597.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470390364"><img title="14-P1610134.jpg" src="http://pic.pimg.tw/stevenhgm/1387894857-470378275.jpg" alt="14-P1610134.jpg" original="http://pic.pimg.tw/stevenhgm/1387894857-470378275.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470392077"><img title="19-IMG_3933.jpg" src="http://pic.pimg.tw/stevenhgm/1387894887-407829597.jpg" alt="19-IMG_3933.jpg" original="http://pic.pimg.tw/stevenhgm/1387894887-407829597.jpg" /></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470390364"><img title="14-P1610134.jpg" src="http://pic.pimg.tw/stevenhgm/1387894857-470378275.jpg" alt="14-P1610134.jpg" original="http://pic.pimg.tw/stevenhgm/1387894857-470378275.jpg" /></a></span></p>
<p><span> 午後山嵐興起雲氣遊蕩<span>盤旋在對岸山頭 人潮來來去去似乎也沒有減少</span></span>
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470403381"><img title="44-P1610283.jpg" src="http://pic.pimg.tw/stevenhgm/1387895099-4119123008.jpg" alt="44-P1610283.jpg" original="http://pic.pimg.tw/stevenhgm/1387895099-4119123008.jpg"/></a></span></p>
<p><span> 美樹民宿有開設餐廳 室內簡單佈置提供伙食餐飲 <br/></span></p>
<p> <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610212.jpg" src="http://pic.pimg.tw/stevenhgm/1387971426-4277312474.jpg" alt="P1610212.jpg" original="http://pic.pimg.tw/stevenhgm/1387971426-4277312474.jpg"/></a> </p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470403381"><img title="44-P1610283.jpg" src="http://pic.pimg.tw/stevenhgm/1387895099-4119123008.jpg" alt="44-P1610283.jpg" original="http://pic.pimg.tw/stevenhgm/1387895099-4119123008.jpg" /></a></span></p>
<p><span> 美樹民宿有開設餐廳 室內簡單佈置提供伙食餐飲 <br /></span></p>
<p>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610212.jpg" src="http://pic.pimg.tw/stevenhgm/1387971426-4277312474.jpg" alt="P1610212.jpg" original="http://pic.pimg.tw/stevenhgm/1387971426-4277312474.jpg" /></a>
</p>
<p> <span>這兩間是民宿房間 跟著民宿主人"簍信"聊起來還提到日後將改變成兩層木屋</span></p>
<p><span>一樓則是咖啡飲料/賣店提供訪客來賓有個落腳席座之地 二樓才會是民宿房間</span></p>
<p><span>心中有了計畫想法才會有日後的夢想藍圖 相信將會改變得更好的民宿露營環境<br/></span></p>
<p> <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610219.jpg" src="http://pic.pimg.tw/stevenhgm/1387971436-2828193592.jpg" alt="P1610219.jpg" original="http://pic.pimg.tw/stevenhgm/1387971436-2828193592.jpg"/></a> </p>
<p><span>心中有了計畫想法才會有日後的夢想藍圖 相信將會改變得更好的民宿露營環境<br /></span></p>
<p>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610219.jpg" src="http://pic.pimg.tw/stevenhgm/1387971436-2828193592.jpg" alt="P1610219.jpg" original="http://pic.pimg.tw/stevenhgm/1387971436-2828193592.jpg" /></a>
</p>
<p><span> 民宿前這一大區楓香林為土質營位 大致區分前、後兩個營區</span></p>
<p><span>前面這一區約可搭上十二帳/車/廳 後面那區也大約4~5帳/車/廳</span></p>
<p><span>正前方小木屋即是衛浴區 男女分別以左右<span>兩側</span>分開(燒材鍋爐)</span>
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470388054"><img title="10-P1610114.jpg" src="http://pic.pimg.tw/stevenhgm/1387894823-4061326865.jpg" alt="10-P1610114.jpg" original="http://pic.pimg.tw/stevenhgm/1387894823-4061326865.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470388054"><img title="10-P1610114.jpg" src="http://pic.pimg.tw/stevenhgm/1387894823-4061326865.jpg" alt="10-P1610114.jpg" original="http://pic.pimg.tw/stevenhgm/1387894823-4061326865.jpg" /></a></span></p>
<p><span> 營區水電方便 水槽也很有特色</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470393178"><img title="22-P1610245.jpg" src="http://pic.pimg.tw/stevenhgm/1387894911-3706194096.jpg" alt="22-P1610245.jpg" original="http://pic.pimg.tw/stevenhgm/1387894911-3706194096.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470393178"><img title="22-P1610245.jpg" src="http://pic.pimg.tw/stevenhgm/1387894911-3706194096.jpg" alt="22-P1610245.jpg" original="http://pic.pimg.tw/stevenhgm/1387894911-3706194096.jpg" /></a></span></p>
<p><span> 這次選擇左側地勢高些以防午夜下雨泥濘</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470392404"><img title="20-P1610238.jpg" src="http://pic.pimg.tw/stevenhgm/1387894894-1173705525.jpg" alt="20-P1610238.jpg" original="http://pic.pimg.tw/stevenhgm/1387894894-1173705525.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470392404"><img title="20-P1610238.jpg" src="http://pic.pimg.tw/stevenhgm/1387894894-1173705525.jpg" alt="20-P1610238.jpg" original="http://pic.pimg.tw/stevenhgm/1387894894-1173705525.jpg" /></a></span></p>
<p><span> "野馬"特地帶來了冬至應景食材ㄜ<span>---湯圓</span></span>
</p>
<p><span>這家還是最近被評比第一名氣的湯圓專賣店 </span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470393130"><img title="21-P1610241.jpg" src="http://pic.pimg.tw/stevenhgm/1387894901-1058040075.jpg" alt="21-P1610241.jpg" original="http://pic.pimg.tw/stevenhgm/1387894901-1058040075.jpg"/></a></span></p>
<p><span> 向來對於湯圓是敬謝不敏 沒想到是出乎意料之外的好吃 <span>沒話說!</span><br/></span>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470393130"><img title="21-P1610241.jpg" src="http://pic.pimg.tw/stevenhgm/1387894901-1058040075.jpg" alt="21-P1610241.jpg" original="http://pic.pimg.tw/stevenhgm/1387894901-1058040075.jpg" /></a></span></p>
<p><span> 向來對於湯圓是敬謝不敏 沒想到是出乎意料之外的好吃 <span>沒話說!</span><br /></span>
</p>
<p><span> <a href="http://stevenhgm.pixnet.net/album/photo/470394156"><img title="24-IMG_4113.jpg" src="http://pic.pimg.tw/stevenhgm/1387894925-1582979930.jpg" alt="24-IMG_4113.jpg" original="http://pic.pimg.tw/stevenhgm/1387894925-1582979930.jpg"/></a></span></p>
<p><span> <a href="http://stevenhgm.pixnet.net/album/photo/470394156"><img title="24-IMG_4113.jpg" src="http://pic.pimg.tw/stevenhgm/1387894925-1582979930.jpg" alt="24-IMG_4113.jpg" original="http://pic.pimg.tw/stevenhgm/1387894925-1582979930.jpg" /></a></span></p>
<p><span> 喜歡原住民朋友的坦率、真誠 要將民宿營地經營的有聲有色並非容易之事</span></p>
<p><span><span>午茶時間與"簍信"閒聊分享著他的觀點理念之時很支持對於環境應有生態保護</span> </span>
</p>
<p><span><span>環保維護是人人有責</span></span><span><span><span><span> 勿以善小而不為不計涓滴之水才可匯集成河</span></span> </span>
</span>
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470397399"><img title="32-IMG_4248.jpg" src="http://pic.pimg.tw/stevenhgm/1387894989-1689510758.jpg" alt="32-IMG_4248.jpg" original="http://pic.pimg.tw/stevenhgm/1387894989-1689510758.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470394732"><img title="25-IMG_4152.jpg" src="http://pic.pimg.tw/stevenhgm/1387894933-2886337976.jpg" alt="25-IMG_4152.jpg" original="http://pic.pimg.tw/stevenhgm/1387894933-2886337976.jpg"/></a> </span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470397399"><img title="32-IMG_4248.jpg" src="http://pic.pimg.tw/stevenhgm/1387894989-1689510758.jpg" alt="32-IMG_4248.jpg" original="http://pic.pimg.tw/stevenhgm/1387894989-1689510758.jpg" /></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470394732"><img title="25-IMG_4152.jpg" src="http://pic.pimg.tw/stevenhgm/1387894933-2886337976.jpg" alt="25-IMG_4152.jpg" original="http://pic.pimg.tw/stevenhgm/1387894933-2886337976.jpg" /></a> </span></p>
<p><span> 入夜前雨絲終於漸漸緩和下來 雖然氣溫很低卻沒感受到寒冷的跡象</span></p>
<p><span>是山谷中少了寒氣還是美樹營區裡的人熱情洋溢暖化了不少寒意</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470404359"><img title="IMG_4158.jpg" src="http://pic.pimg.tw/stevenhgm/1387895113-4041265313.jpg" alt="IMG_4158.jpg" original="http://pic.pimg.tw/stevenhgm/1387895113-4041265313.jpg"/></a></span></p>
<p><span> 聖誕前夕裝點些聖誕飾品 感受一下節慶的氛圍<br/></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470394948"><img title="26-P1610261.jpg" src="http://pic.pimg.tw/stevenhgm/1387894940-3359449338.jpg" alt="26-P1610261.jpg" original="http://pic.pimg.tw/stevenhgm/1387894940-3359449338.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470404359"><img title="IMG_4158.jpg" src="http://pic.pimg.tw/stevenhgm/1387895113-4041265313.jpg" alt="IMG_4158.jpg" original="http://pic.pimg.tw/stevenhgm/1387895113-4041265313.jpg" /></a></span></p>
<p><span> 聖誕前夕裝點些聖誕飾品 感受一下節慶的氛圍<br /></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470394948"><img title="26-P1610261.jpg" src="http://pic.pimg.tw/stevenhgm/1387894940-3359449338.jpg" alt="26-P1610261.jpg" original="http://pic.pimg.tw/stevenhgm/1387894940-3359449338.jpg" /></a></span></p>
<p><span>晚餐準備了砂鍋魚頭</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470403921"><img title="46-1021221美樹露營.jpg" src="http://pic.pimg.tw/stevenhgm/1387895106-1387217970.jpg" alt="46-1021221美樹露營.jpg" original="http://pic.pimg.tw/stevenhgm/1387895106-1387217970.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470403921"><img title="46-1021221美樹露營.jpg" src="http://pic.pimg.tw/stevenhgm/1387895106-1387217970.jpg" alt="46-1021221美樹露營.jpg" original="http://pic.pimg.tw/stevenhgm/1387895106-1387217970.jpg" /></a></span></p>
<p><span>"蒯嫂"還特地準備著羊肩排、鹹豬肉、柳葉魚...哇!這哩澎湃哩...</span></p>
<p><span> "永老爺"早已備妥了好酒為遠自台南來的蒯兄嫂敬一杯囉</span></p>
<p><span>感謝蒯嫂精心準備的好料理 食指大動好菜色感恩ㄟ!</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470395164"><img title="27-IMG_4173.jpg" src="http://pic.pimg.tw/stevenhgm/1387894947-2636431527.jpg" alt="27-IMG_4173.jpg" original="http://pic.pimg.tw/stevenhgm/1387894947-2636431527.jpg"/></a></span></p>
<p><span> 吃得快精光之際...才想到忘了拍合照...(哇哩咧 ^&amp;*()<br/></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470395614"><img title="28-IMG_4178.jpg" src="http://pic.pimg.tw/stevenhgm/1387894956-618198074.jpg" alt="28-IMG_4178.jpg" original="http://pic.pimg.tw/stevenhgm/1387894956-618198074.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470396325"><img title="29-IMG_4188.jpg" src="http://pic.pimg.tw/stevenhgm/1387894961-2201609427.jpg" alt="29-IMG_4188.jpg" original="http://pic.pimg.tw/stevenhgm/1387894961-2201609427.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470395164"><img title="27-IMG_4173.jpg" src="http://pic.pimg.tw/stevenhgm/1387894947-2636431527.jpg" alt="27-IMG_4173.jpg" original="http://pic.pimg.tw/stevenhgm/1387894947-2636431527.jpg" /></a></span></p>
<p><span> 吃得快精光之際...才想到忘了拍合照...(哇哩咧 ^&amp;*()<br /></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470395614"><img title="28-IMG_4178.jpg" src="http://pic.pimg.tw/stevenhgm/1387894956-618198074.jpg" alt="28-IMG_4178.jpg" original="http://pic.pimg.tw/stevenhgm/1387894956-618198074.jpg" /></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470396325"><img title="29-IMG_4188.jpg" src="http://pic.pimg.tw/stevenhgm/1387894961-2201609427.jpg" alt="29-IMG_4188.jpg" original="http://pic.pimg.tw/stevenhgm/1387894961-2201609427.jpg" /></a></span></p>
<p><span> 隔日睡到很晚才起床 不用拍日出晨光的營地對我來說都是個幸福的睡眠</span></p>
<p><span>哪怕是葉落飄零落滿地還是睡夢周公召見而去 起床的事~差點都忘記了</span></p>
<p> <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="IMG_4205.jpg" src="http://pic.pimg.tw/stevenhgm/1387971396-2999285851.jpg" alt="IMG_4205.jpg" original="http://pic.pimg.tw/stevenhgm/1387971396-2999285851.jpg"/></a> </p>
<p>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="IMG_4205.jpg" src="http://pic.pimg.tw/stevenhgm/1387971396-2999285851.jpg" alt="IMG_4205.jpg" original="http://pic.pimg.tw/stevenhgm/1387971396-2999285851.jpg" /></a>
</p>
<p> <span> 昨天細雨紛飛依然打落了不少落葉中間這株整個都快變成枯枝了</span></p>
<p><span>昨天依稀凋零稀疏的楓葉殘留今兒個完全不復存在(上周是最美的代名詞)</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470397765"><img title="33-IMG_4255.jpg" src="http://pic.pimg.tw/stevenhgm/1387894999-1588465034.jpg" alt="33-IMG_4255.jpg" original="http://pic.pimg.tw/stevenhgm/1387894999-1588465034.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470397765"><img title="33-IMG_4255.jpg" src="http://pic.pimg.tw/stevenhgm/1387894999-1588465034.jpg" alt="33-IMG_4255.jpg" original="http://pic.pimg.tw/stevenhgm/1387894999-1588465034.jpg" /></a></span></p>
<p><span><span>上回來得太早沒能見到楓葉泛紅 這次晚了一周已陸續落葉也</span>無從比對楓葉差異性 </span>
</p>
<p><span><span> 另一種角度看不論青楓、金黃葉紅的楓香、葉落飄零秋滿霜、落葉枯枝的蕭瑟</span></span>
</p>
<p><span><span>只要心中自認為是最美最浪漫的一刻 都是美的表徵也是最美的時分</span></span>
</p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470398749"><img title="34-P1610269.jpg" src="http://pic.pimg.tw/stevenhgm/1387895007-4184988815.jpg" alt="34-P1610269.jpg" original="http://pic.pimg.tw/stevenhgm/1387895007-4184988815.jpg"/></a></span></p>
<p><span> 早起的"蒯嫂"已經備好熱騰騰中式稀飯、包子、蔬果 頓時~有幸福的感覺<br/></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470399232"><img title="35-IMG_4303.jpg" src="http://pic.pimg.tw/stevenhgm/1387895016-2193615729.jpg" alt="35-IMG_4303.jpg" original="http://pic.pimg.tw/stevenhgm/1387895016-2193615729.jpg"/></a> </span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470398749"><img title="34-P1610269.jpg" src="http://pic.pimg.tw/stevenhgm/1387895007-4184988815.jpg" alt="34-P1610269.jpg" original="http://pic.pimg.tw/stevenhgm/1387895007-4184988815.jpg" /></a></span></p>
<p><span> 早起的"蒯嫂"已經備好熱騰騰中式稀飯、包子、蔬果 頓時~有幸福的感覺<br /></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470399232"><img title="35-IMG_4303.jpg" src="http://pic.pimg.tw/stevenhgm/1387895016-2193615729.jpg" alt="35-IMG_4303.jpg" original="http://pic.pimg.tw/stevenhgm/1387895016-2193615729.jpg" /></a> </span></p>
<p><span> 星期天早上趁著攝影團還沒入場先來人物場景特寫</span></p>
<p><span>野馬家兩張新"座椅"就當作是試坐囉!拍謝哩</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470400471"><img title="38-IMG_4330.jpg" src="http://pic.pimg.tw/stevenhgm/1387895047-92554161.jpg" alt="38-IMG_4330.jpg" original="http://pic.pimg.tw/stevenhgm/1387895047-92554161.jpg"/></a></span></p>
<p> <a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610279.jpg" src="http://pic.pimg.tw/stevenhgm/1387971446-966387512.jpg" alt="P1610279.jpg" original="http://pic.pimg.tw/stevenhgm/1387971446-966387512.jpg"/></a> </p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470400471"><img title="38-IMG_4330.jpg" src="http://pic.pimg.tw/stevenhgm/1387895047-92554161.jpg" alt="38-IMG_4330.jpg" original="http://pic.pimg.tw/stevenhgm/1387895047-92554161.jpg" /></a></span></p>
<p>
<a href="http://stevenhgm.pixnet.net/album/photo/470389413"><img title="P1610279.jpg" src="http://pic.pimg.tw/stevenhgm/1387971446-966387512.jpg" alt="P1610279.jpg" original="http://pic.pimg.tw/stevenhgm/1387971446-966387512.jpg" /></a>
</p>
<p><span> 難得有此無人美景在楓樹下的聖誕氛圍也一定要來一張才行</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470399946"><img title="37-IMG_4323.jpg" src="http://pic.pimg.tw/stevenhgm/1387895036-848978834.jpg" alt="37-IMG_4323.jpg" original="http://pic.pimg.tw/stevenhgm/1387895036-848978834.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470399946"><img title="37-IMG_4323.jpg" src="http://pic.pimg.tw/stevenhgm/1387895036-848978834.jpg" alt="37-IMG_4323.jpg" original="http://pic.pimg.tw/stevenhgm/1387895036-848978834.jpg" /></a></span></p>
<p><span> 三家合照Hero也一定要入鏡的</span></p>
<p><span> <a href="http://stevenhgm.pixnet.net/album/photo/470401161"><img title="40-IMG_4342.jpg" src="http://pic.pimg.tw/stevenhgm/1387895067-717977929.jpg" alt="40-IMG_4342.jpg" original="http://pic.pimg.tw/stevenhgm/1387895067-717977929.jpg"/></a></span></p>
<p><span> <a href="http://stevenhgm.pixnet.net/album/photo/470401161"><img title="40-IMG_4342.jpg" src="http://pic.pimg.tw/stevenhgm/1387895067-717977929.jpg" alt="40-IMG_4342.jpg" original="http://pic.pimg.tw/stevenhgm/1387895067-717977929.jpg" /></a></span></p>
<p><span> 接著攝影團入場帶隊老師請求借個時間也來讓學員練習楓樹下的聖誕飾品</span></p>
<p><span>此時剛好也遇到早在FB社團相互回應卻頭一次謀面的Mr."大雄"真是幸會了</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470402037"><img title="42-IMG_4382.jpg" src="http://pic.pimg.tw/stevenhgm/1387895083-1227791497.jpg" alt="42-IMG_4382.jpg" original="http://pic.pimg.tw/stevenhgm/1387895083-1227791497.jpg"/></a> </span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470402037"><img title="42-IMG_4382.jpg" src="http://pic.pimg.tw/stevenhgm/1387895083-1227791497.jpg" alt="42-IMG_4382.jpg" original="http://pic.pimg.tw/stevenhgm/1387895083-1227791497.jpg" /></a> </span></p>
<p><span> 接近中午時分陽光漸露 藍天帷幕再次嶄露頭角 ~ 久違了!</span></p>
<p><span>期盼下的天空終於放晴 沒有缺席的藍天還是準時赴約如期出席</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470402682"><img title="41-IMG_4366.jpg" src="http://pic.pimg.tw/stevenhgm/1387895075-2647157523.jpg" alt="41-IMG_4366.jpg" original="http://pic.pimg.tw/stevenhgm/1387895075-2647157523.jpg"/></a></span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470402682"><img title="41-IMG_4366.jpg" src="http://pic.pimg.tw/stevenhgm/1387895075-2647157523.jpg" alt="41-IMG_4366.jpg" original="http://pic.pimg.tw/stevenhgm/1387895075-2647157523.jpg" /></a></span></p>
<p><span> 這兩天肉肉(Hero)天雨濕滑無法自由奔跑都快悶壞了</span></p>
<p><span>天晴後"蒯嫂"帶著散步遊園也好解解悶</span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470402898"><img title="43-IMG_4383.jpg" src="http://pic.pimg.tw/stevenhgm/1387895093-631461272.jpg" alt="43-IMG_4383.jpg" original="http://pic.pimg.tw/stevenhgm/1387895093-631461272.jpg"/></a> </span></p>
<p><span><a href="http://stevenhgm.pixnet.net/album/photo/470402898"><img title="43-IMG_4383.jpg" src="http://pic.pimg.tw/stevenhgm/1387895093-631461272.jpg" alt="43-IMG_4383.jpg" original="http://pic.pimg.tw/stevenhgm/1387895093-631461272.jpg" /></a> </span></p>
<p><span>收拾好裝備準備離開營地 亮麗的</span><span>天空鮮明對比下的楓樹林又讓人覺得有點捨不得離開</span></p>
<p><span><span>道別了"美樹營地"準備前往而行</span>"石磊國小"一個很生疏的小學座落在這深山部落裡</span>
</p>
<p><span>北橫"石磊部落" 一個從未踏入的陌生之地因為露營之故否則畢生大概也不會路過</span></p>
<p><span>三位大叔同行準備走著這段遙遠的路段 下次找機會再來重溫舊夢了.......</span></p>
<p><span lang="EN-US"><a href="http://tw.myblog.yahoo.com/wu141993/article?mid=104&amp;sc=1"><span lang="EN-US"><span lang="EN-US"><span>美樹營地</span></span>
</span>
</a>
</span><span lang="EN-US"><span>資訊</span></span>
</span>
</a> </span><span lang="EN-US"><span>資訊</span></span>
</p>
<p><span lang="EN-US"><span><span>聯絡電話:</span><span lang="EN-US">03-584-7231</span><span>  </span><span lang="EN"> </span><span>行動</span><span lang="EN">:</span><span lang="EN-US"> 0937-141993</span><span lang="EN-US"><br/></span><span>林錦武<span lang="EN-US"> (泰雅族名: 摟信)</span></span><span lang="EN"><br/></span><span>營地地址:<span>新竹縣尖石鄉玉峰村<span lang="EN-US">6鄰20號</span></span>
</span>
</span>
<p><span lang="EN-US"><span><span>聯絡電話:</span><span lang="EN-US">03-584-7231</span><span>  </span><span lang="EN"> </span><span>行動</span><span lang="EN">:</span><span lang="EN-US"> 0937-141993</span><span lang="EN-US"><br /></span><span>林錦武<span lang="EN-US"> (泰雅族名: 摟信)</span></span><span lang="EN"><br /></span><span>營地地址:<span>新竹縣尖石鄉玉峰村<span lang="EN-US">6鄰20號</span></span>
</span>
</span>
</span>
</p>
<p><span lang="EN-US"><span>每帳$600 兩間衛浴使用燒材鍋爐/ 兩間全天瓦斯 </span></span><span lang="EN-US"><span>廁所蹲式X 3 </span></span>
@ -166,7 +179,7 @@
<p><span lang="EN-US"><span>楓紅期間須過中午才可搭帳 </span></span><span lang="EN-US">水電便利</span></p>
<p><strong><span lang="EN-US">GPS: N24 39 16.4 <span> </span>E121 18 19.5</span></strong></p>
<p><span><span>如果您喜歡</span>"<span>史蒂文的家"圖文分享 邀請您到 </span></span><span><a href="https://www.facebook.com/stevenhgm1188"><span>FB </span><span lang="EN-US"><span lang="EN-US">粉絲團</span></span>
</a><span>按個"讚"!</span></span>
</a><span>按個"讚"!</span></span>
</p>
<p><span><span><span>內文有不定期的更新旅遊、露營圖文訊息 </span></span><span><span>謝謝!</span></span>
</span>

@ -2,7 +2,7 @@
"title": "Zimbabwe coup: Robert Mugabe and wife Grace 'insisting he finishes his term', as priest steps in to mediate",
"byline": null,
"dir": null,
"excerpt": "Zimbabwe President Robert Mugabe, his wife Grace and two key figures from her G40 political faction are under house arrest at Mugabe's &quot;Blue House&quot; compound in Harare and are insisting the 93 year-old finishes his presidential term, a source said.",
"readerable": true,
"siteName": "The Telegraph"
"excerpt": "Zimbabwe President Robert Mugabe, his wife Grace and two key figures from her G40 political faction are under house arrest at Mugabe's \"Blue House\" compound in Harare and are insisting the 93 year-old finishes his presidential term, a source said.",
"siteName": "The Telegraph",
"readerable": true
}

@ -19,7 +19,7 @@
<td colspan="2">
<div>
<div>
<p><a href="http://fakehost/wiki/File:Flag_of_New_Zealand.svg" title="Flag of New Zealand"><img alt="Blue field with the Union Flag in the top right corner, and four red stars with white borders to the right." src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/125px-Flag_of_New_Zealand.svg.png" decoding="async" width="125" height="63" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/188px-Flag_of_New_Zealand.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/250px-Flag_of_New_Zealand.svg.png 2x" data-file-width="1200" data-file-height="600" /></a>
<p><a href="http://fakehost/wiki/File:Flag_of_New_Zealand.svg" title="Flag of New Zealand"><img alt="Blue field with the Union Flag in the top right corner, and four red stars with white borders to the right." src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/125px-Flag_of_New_Zealand.svg.png" decoding="async" width="125" height="63" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/188px-Flag_of_New_Zealand.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/250px-Flag_of_New_Zealand.svg.png 2x" data-file-width="1200" data-file-height="600" /></a>
</p>
<div>
<p><a href="http://fakehost/wiki/Flag_of_New_Zealand" title="Flag of New Zealand">Flag</a>
@ -27,7 +27,7 @@
</div>
</div>
<div>
<p><a href="http://fakehost/wiki/File:Coat_of_arms_of_New_Zealand.svg" title="Coat of arms of New Zealand"><img alt="A quartered shield, flanked by two figures, topped with a crown." src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Coat_of_arms_of_New_Zealand.svg/85px-Coat_of_arms_of_New_Zealand.svg.png" decoding="async" width="85" height="82" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Coat_of_arms_of_New_Zealand.svg/128px-Coat_of_arms_of_New_Zealand.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Coat_of_arms_of_New_Zealand.svg/170px-Coat_of_arms_of_New_Zealand.svg.png 2x" data-file-width="725" data-file-height="699" /></a>
<p><a href="http://fakehost/wiki/File:Coat_of_arms_of_New_Zealand.svg" title="Coat of arms of New Zealand"><img alt="A quartered shield, flanked by two figures, topped with a crown." src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Coat_of_arms_of_New_Zealand.svg/85px-Coat_of_arms_of_New_Zealand.svg.png" decoding="async" width="85" height="82" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Coat_of_arms_of_New_Zealand.svg/128px-Coat_of_arms_of_New_Zealand.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/d/d3/Coat_of_arms_of_New_Zealand.svg/170px-Coat_of_arms_of_New_Zealand.svg.png 2x" data-file-width="725" data-file-height="699" /></a>
</p>
<div>
<p><a href="http://fakehost/wiki/Coat_of_arms_of_New_Zealand" title="Coat of arms of New Zealand">Coat of arms</a>
@ -59,7 +59,7 @@
</tr>
<tr>
<td colspan="2">
<a href="http://fakehost/wiki/File:NZL_orthographic_NaturalEarth.svg" title="Location of New Zealand, including outlying islands, its territorial claim in the Antarctic, and Tokelau"><img alt="A map of the hemisphere centred on New Zealand, using an orthographic projection." src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/29/NZL_orthographic_NaturalEarth.svg/250px-NZL_orthographic_NaturalEarth.svg.png" decoding="async" width="250" height="250" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/29/NZL_orthographic_NaturalEarth.svg/375px-NZL_orthographic_NaturalEarth.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/29/NZL_orthographic_NaturalEarth.svg/500px-NZL_orthographic_NaturalEarth.svg.png 2x" data-file-width="512" data-file-height="512" /></a>
<a href="http://fakehost/wiki/File:NZL_orthographic_NaturalEarth.svg" title="Location of New Zealand, including outlying islands, its territorial claim in the Antarctic, and Tokelau"><img alt="A map of the hemisphere centred on New Zealand, using an orthographic projection." src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/29/NZL_orthographic_NaturalEarth.svg/250px-NZL_orthographic_NaturalEarth.svg.png" decoding="async" width="250" height="250" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/2/29/NZL_orthographic_NaturalEarth.svg/375px-NZL_orthographic_NaturalEarth.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/2/29/NZL_orthographic_NaturalEarth.svg/500px-NZL_orthographic_NaturalEarth.svg.png 2x" data-file-width="512" data-file-height="512" /></a>
<div>
<p> Location of New Zealand, including outlying islands, its <a href="http://fakehost/wiki/Ross_Dependency" title="Ross Dependency">territorial claim in the Antarctic</a>, and <a href="http://fakehost/wiki/Tokelau" title="Tokelau">Tokelau</a>
</p>
@ -316,7 +316,7 @@
<a href="http://fakehost/wiki/Human_Development_Index" title="Human Development Index">HDI</a>&#160;<span>(2017)</span>
</th>
<td>
<img alt="Increase" src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/11px-Increase2.svg.png" decoding="async" title="Increase" width="11" height="11" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/17px-Increase2.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/22px-Increase2.svg.png 2x" data-file-width="300" data-file-height="300" />&#160;0.917<sup id="cite_ref-HDI_12-0"><a href="#cite_note-HDI-12">[8]</a></sup><br />
<img alt="Increase" src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/11px-Increase2.svg.png" decoding="async" title="Increase" width="11" height="11" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/17px-Increase2.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Increase2.svg/22px-Increase2.svg.png 2x" data-file-width="300" data-file-height="300" />&#160;0.917<sup id="cite_ref-HDI_12-0"><a href="#cite_note-HDI-12">[8]</a></sup><br />
<span><span>very high</span></span>&#160;·&#160;<a href="http://fakehost/wiki/List_of_countries_by_Human_Development_Index" title="List of countries by Human Development Index">16th</a>
</td>
</tr>
@ -387,7 +387,7 @@
</h2>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius,_showing_Nova_Zeelandia.png"><img alt="Brown square paper with Dutch writing and a thick red, curved line" src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius%2C_showing_Nova_Zeelandia.png/220px-Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius%2C_showing_Nova_Zeelandia.png" decoding="async" width="220" height="171" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/ab/Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius%2C_showing_Nova_Zeelandia.png/330px-Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius%2C_showing_Nova_Zeelandia.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/ab/Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius%2C_showing_Nova_Zeelandia.png/440px-Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius%2C_showing_Nova_Zeelandia.png 2x" data-file-width="684" data-file-height="532" /></a></p>
<p><a href="http://fakehost/wiki/File:Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius,_showing_Nova_Zeelandia.png"><img alt="Brown square paper with Dutch writing and a thick red, curved line" src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius%2C_showing_Nova_Zeelandia.png/220px-Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius%2C_showing_Nova_Zeelandia.png" decoding="async" width="220" height="171" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius%2C_showing_Nova_Zeelandia.png/330px-Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius%2C_showing_Nova_Zeelandia.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius%2C_showing_Nova_Zeelandia.png/440px-Detail_of_1657_map_Polus_Antarcticus_by_Jan_Janssonius%2C_showing_Nova_Zeelandia.png 2x" data-file-width="684" data-file-height="532" /></a></p>
<div>
<p>Detail from a 1657 map showing the western coastline of "Nova Zeelandia". (In this map, north is at the bottom.) </p>
</div>
@ -404,7 +404,7 @@
</h2>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Polynesian_Migration.svg"><img alt="One set of arrows point from Taiwan to Melanesia to Fiji/Samoa and then to the Marquesas Islands. The population then spread, some going south to New Zealand and others going north to Hawai&apos;i. A second set start in southern Asia and end in Melanesia." src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Polynesian_Migration.svg/290px-Polynesian_Migration.svg.png" decoding="async" width="290" height="290" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Polynesian_Migration.svg/435px-Polynesian_Migration.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Polynesian_Migration.svg/580px-Polynesian_Migration.svg.png 2x" data-file-width="553" data-file-height="553" /></a></p>
<p><a href="http://fakehost/wiki/File:Polynesian_Migration.svg"><img alt="One set of arrows point from Taiwan to Melanesia to Fiji/Samoa and then to the Marquesas Islands. The population then spread, some going south to New Zealand and others going north to Hawai&apos;i. A second set start in southern Asia and end in Melanesia." src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Polynesian_Migration.svg/290px-Polynesian_Migration.svg.png" decoding="async" width="290" height="290" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Polynesian_Migration.svg/435px-Polynesian_Migration.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/Polynesian_Migration.svg/580px-Polynesian_Migration.svg.png 2x" data-file-width="553" data-file-height="553" /></a></p>
<div>
<p>The <a href="http://fakehost/wiki/M%C4%81ori_people" title="Māori people">Māori people</a> are most likely descended from people who emigrated from <a href="http://fakehost/wiki/Taiwan" title="Taiwan">Taiwan</a> to <a href="http://fakehost/wiki/Melanesia" title="Melanesia">Melanesia</a> and then travelled east through to the <a href="http://fakehost/wiki/Society_Islands" title="Society Islands">Society Islands</a>. After a pause of 70 to 265 years, a new wave of exploration led to the discovery and settlement of New Zealand.<sup id="cite_ref-28"><a href="#cite_note-28">[22]</a></sup>
</p>
@ -415,7 +415,7 @@
</p>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Cook_chart_of_New_Zealand.jpg"><img alt="An engraving of a sketched coastline on white background" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Cook_chart_of_New_Zealand.jpg/170px-Cook_chart_of_New_Zealand.jpg" decoding="async" width="170" height="235" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/22/Cook_chart_of_New_Zealand.jpg/255px-Cook_chart_of_New_Zealand.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/22/Cook_chart_of_New_Zealand.jpg/340px-Cook_chart_of_New_Zealand.jpg 2x" data-file-width="1093" data-file-height="1508" /></a></p>
<p><a href="http://fakehost/wiki/File:Cook_chart_of_New_Zealand.jpg"><img alt="An engraving of a sketched coastline on white background" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Cook_chart_of_New_Zealand.jpg/170px-Cook_chart_of_New_Zealand.jpg" decoding="async" width="170" height="235" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Cook_chart_of_New_Zealand.jpg/255px-Cook_chart_of_New_Zealand.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/2/22/Cook_chart_of_New_Zealand.jpg/340px-Cook_chart_of_New_Zealand.jpg 2x" data-file-width="1093" data-file-height="1508" /></a></p>
<div>
<p>Map of the New Zealand coastline as Cook charted it on his <a href="http://fakehost/wiki/First_voyage_of_James_Cook" title="First voyage of James Cook">first visit</a> in 176970. The track of the <i><a href="http://fakehost/wiki/HMS_Endeavour" title="HMS Endeavour">Endeavour</a></i> is also shown. </p>
</div>
@ -425,14 +425,14 @@
</p>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Treatyofwaitangi.jpg"><img alt="A torn sheet of paper" src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Treatyofwaitangi.jpg/170px-Treatyofwaitangi.jpg" decoding="async" width="170" height="318" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/87/Treatyofwaitangi.jpg/255px-Treatyofwaitangi.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/87/Treatyofwaitangi.jpg/340px-Treatyofwaitangi.jpg 2x" data-file-width="3091" data-file-height="5788" /></a></p>
<p><a href="http://fakehost/wiki/File:Treatyofwaitangi.jpg"><img alt="A torn sheet of paper" src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Treatyofwaitangi.jpg/170px-Treatyofwaitangi.jpg" decoding="async" width="170" height="318" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Treatyofwaitangi.jpg/255px-Treatyofwaitangi.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/8/87/Treatyofwaitangi.jpg/340px-Treatyofwaitangi.jpg 2x" data-file-width="3091" data-file-height="5788" /></a></p>
</div>
</div>
<p> In 1788 Captain <a href="http://fakehost/wiki/Arthur_Phillip" title="Arthur Phillip">Arthur Phillip</a> assumed the position of <a href="http://fakehost/wiki/Governor_of_New_South_Wales" title="Governor of New South Wales">Governor</a> of the new British colony of <a href="http://fakehost/wiki/Colony_of_New_South_Wales" title="Colony of New South Wales">New South Wales</a> which according to his commission included New Zealand.<sup id="cite_ref-44"><a href="#cite_note-44">[38]</a></sup> The British Government appointed <a href="http://fakehost/wiki/James_Busby" title="James Busby">James Busby</a> as British Resident to New Zealand in 1832 following a petition from northern Māori.<sup id="cite_ref-Busby_45-0"><a href="#cite_note-Busby-45">[39]</a></sup> In 1835, following an announcement of impending French settlement by <a href="http://fakehost/wiki/Charles_de_Thierry" title="Charles de Thierry">Charles de Thierry</a>, the nebulous <a href="http://fakehost/wiki/United_Tribes_of_New_Zealand" title="United Tribes of New Zealand">United Tribes of New Zealand</a> sent a <a href="http://fakehost/wiki/Declaration_of_the_Independence_of_New_Zealand" title="Declaration of the Independence of New Zealand">Declaration of Independence</a> to King <a href="http://fakehost/wiki/William_IV_of_the_United_Kingdom" title="William IV of the United Kingdom">William IV of the United Kingdom</a> asking for protection.<sup id="cite_ref-Busby_45-1"><a href="#cite_note-Busby-45">[39]</a></sup> Ongoing unrest, the proposed settlement of New Zealand by the <a href="http://fakehost/wiki/New_Zealand_Company" title="New Zealand Company">New Zealand Company</a> (which had already sent its first ship of surveyors to buy land from Māori) and the dubious legal standing of the Declaration of Independence prompted the <a href="http://fakehost/wiki/Colonial_Office" title="Colonial Office">Colonial Office</a> to send Captain <a href="http://fakehost/wiki/William_Hobson" title="William Hobson">William Hobson</a> to claim sovereignty for the <a href="http://fakehost/wiki/United_Kingdom" title="United Kingdom">United Kingdom</a> and negotiate a treaty with the Māori.<sup id="cite_ref-46"><a href="#cite_note-46">[40]</a></sup> The <a href="http://fakehost/wiki/Treaty_of_Waitangi" title="Treaty of Waitangi">Treaty of Waitangi</a> was first signed in the <a href="http://fakehost/wiki/Bay_of_Islands" title="Bay of Islands">Bay of Islands</a> on 6 February 1840.<sup id="cite_ref-Wilson2009_47-0"><a href="#cite_note-Wilson2009-47">[41]</a></sup> In response to the New Zealand Company's attempts to establish an independent settlement in <a href="http://fakehost/wiki/Wellington" title="Wellington">Wellington</a><sup id="cite_ref-48"><a href="#cite_note-48">[42]</a></sup> and French settlers purchasing land in <a href="http://fakehost/wiki/Akaroa" title="Akaroa">Akaroa</a>,<sup id="cite_ref-49"><a href="#cite_note-49">[43]</a></sup> Hobson declared British sovereignty over all of New Zealand on 21 May 1840, even though copies of the Treaty were still circulating throughout the country for Māori to sign.<sup id="cite_ref-50"><a href="#cite_note-50">[44]</a></sup> With the signing of the Treaty and declaration of sovereignty the number of immigrants, particularly from the United Kingdom, began to increase.<sup id="cite_ref-51"><a href="#cite_note-51">[45]</a></sup>
</p>
<div>
<div>
<p><a href="http://fakehost/wiki/File:1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay,_New_Zealand.jpg"><img alt="Black and white engraving depicting a crowd of people" src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay%2C_New_Zealand.jpg/290px-1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay%2C_New_Zealand.jpg" decoding="async" width="290" height="208" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3b/1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay%2C_New_Zealand.jpg/435px-1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay%2C_New_Zealand.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3b/1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay%2C_New_Zealand.jpg/580px-1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay%2C_New_Zealand.jpg 2x" data-file-width="6000" data-file-height="4300" /></a></p>
<p><a href="http://fakehost/wiki/File:1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay,_New_Zealand.jpg"><img alt="Black and white engraving depicting a crowd of people" src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay%2C_New_Zealand.jpg/290px-1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay%2C_New_Zealand.jpg" decoding="async" width="290" height="208" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay%2C_New_Zealand.jpg/435px-1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay%2C_New_Zealand.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/3/3b/1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay%2C_New_Zealand.jpg/580px-1863_Meeting_of_Settlers_and_Maoris_at_Hawke%27s_Bay%2C_New_Zealand.jpg 2x" data-file-width="6000" data-file-height="4300" /></a></p>
</div>
</div>
<p> New Zealand, still part of the colony of New South Wales, became a separate <a href="http://fakehost/wiki/Crown_colony" title="Crown colony">Colony</a> <a href="http://fakehost/wiki/Colony_of_New_Zealand" title="Colony of New Zealand">of New Zealand</a> on 1 July 1841.<sup id="cite_ref-52"><a href="#cite_note-52">[46]</a></sup> Armed conflict began between the Colonial government and Māori in 1843 with the <a href="http://fakehost/wiki/Wairau_Affray" title="Wairau Affray">Wairau Affray</a> over land and disagreements over sovereignty. These conflicts, mainly in the North Island, saw thousands of Imperial troops and the Royal Navy come to New Zealand and became known as the <a href="http://fakehost/wiki/New_Zealand_Wars" title="New Zealand Wars">New Zealand Wars</a>. Following these armed conflicts, large amounts of <a href="http://fakehost/wiki/New_Zealand_land_confiscations" title="New Zealand land confiscations">Māori land was confiscated by the government</a> to meet settler demands.<sup id="cite_ref-53"><a href="#cite_note-53">[47]</a></sup>
@ -452,11 +452,11 @@
<div>
<div>
<div>
<p><a href="http://fakehost/wiki/Elizabeth_II" title="Elizabeth II"><img alt="The Queen wearing her New Zealand insignia" src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Queen_Elizabeth_II_of_New_Zealand_2.jpg/152px-Queen_Elizabeth_II_of_New_Zealand_2.jpg" decoding="async" width="152" height="190" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Queen_Elizabeth_II_of_New_Zealand_2.jpg/228px-Queen_Elizabeth_II_of_New_Zealand_2.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Queen_Elizabeth_II_of_New_Zealand_2.jpg/304px-Queen_Elizabeth_II_of_New_Zealand_2.jpg 2x" data-file-width="1182" data-file-height="1478" /></a>
<p><a href="http://fakehost/wiki/Elizabeth_II" title="Elizabeth II"><img alt="The Queen wearing her New Zealand insignia" src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Queen_Elizabeth_II_of_New_Zealand_2.jpg/152px-Queen_Elizabeth_II_of_New_Zealand_2.jpg" decoding="async" width="152" height="190" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Queen_Elizabeth_II_of_New_Zealand_2.jpg/228px-Queen_Elizabeth_II_of_New_Zealand_2.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/a/ad/Queen_Elizabeth_II_of_New_Zealand_2.jpg/304px-Queen_Elizabeth_II_of_New_Zealand_2.jpg 2x" data-file-width="1182" data-file-height="1478" /></a>
</p>
</div>
<div>
<p><a href="http://fakehost/wiki/Jacinda_Ardern" title="Jacinda Ardern"><img alt="A smiling woman wearing a black dress" src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Ardern_Cropped.png/152px-Ardern_Cropped.png" decoding="async" width="152" height="191" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Ardern_Cropped.png/228px-Ardern_Cropped.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Ardern_Cropped.png/304px-Ardern_Cropped.png 2x" data-file-width="499" data-file-height="627" /></a>
<p><a href="http://fakehost/wiki/Jacinda_Ardern" title="Jacinda Ardern"><img alt="A smiling woman wearing a black dress" src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Ardern_Cropped.png/152px-Ardern_Cropped.png" decoding="async" width="152" height="191" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Ardern_Cropped.png/228px-Ardern_Cropped.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/6/6f/Ardern_Cropped.png/304px-Ardern_Cropped.png 2x" data-file-width="499" data-file-height="627" /></a>
</p>
</div>
</div>
@ -470,7 +470,7 @@
</p>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Seddon_Statue_in_Parliament_Grounds.jpg"><img alt="A block of buildings fronted by a large statue." src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Seddon_Statue_in_Parliament_Grounds.jpg/220px-Seddon_Statue_in_Parliament_Grounds.jpg" decoding="async" width="220" height="171" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/32/Seddon_Statue_in_Parliament_Grounds.jpg/330px-Seddon_Statue_in_Parliament_Grounds.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/32/Seddon_Statue_in_Parliament_Grounds.jpg/440px-Seddon_Statue_in_Parliament_Grounds.jpg 2x" data-file-width="3297" data-file-height="2557" /></a></p>
<p><a href="http://fakehost/wiki/File:Seddon_Statue_in_Parliament_Grounds.jpg"><img alt="A block of buildings fronted by a large statue." src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Seddon_Statue_in_Parliament_Grounds.jpg/220px-Seddon_Statue_in_Parliament_Grounds.jpg" decoding="async" width="220" height="171" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Seddon_Statue_in_Parliament_Grounds.jpg/330px-Seddon_Statue_in_Parliament_Grounds.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/3/32/Seddon_Statue_in_Parliament_Grounds.jpg/440px-Seddon_Statue_in_Parliament_Grounds.jpg 2x" data-file-width="3297" data-file-height="2557" /></a></p>
</div>
</div>
<p> Elections since the 1930s have been dominated by two political parties, <a href="http://fakehost/wiki/New_Zealand_National_Party" title="New Zealand National Party">National</a> and <a href="http://fakehost/wiki/New_Zealand_Labour_Party" title="New Zealand Labour Party">Labour</a>.<sup id="cite_ref-road_83-1"><a href="#cite_note-road-83">[77]</a></sup> Between March 2005 and August 2006, New Zealand became the first country in the world in which all the highest offices in the land—head of state, governor-general, prime minister, <a href="http://fakehost/wiki/Speaker_of_the_New_Zealand_House_of_Representatives" title="Speaker of the New Zealand House of Representatives">speaker</a> and <a href="http://fakehost/wiki/Chief_Justice_of_New_Zealand" title="Chief Justice of New Zealand">chief justice</a>—were occupied simultaneously by women.<sup id="cite_ref-86"><a href="#cite_note-86">[80]</a></sup> The current prime minister is <a href="http://fakehost/wiki/Jacinda_Ardern" title="Jacinda Ardern">Jacinda Ardern</a>, who has been in office since 26 October 2017.<sup id="cite_ref-87"><a href="#cite_note-87">[81]</a></sup> She is the country's third female prime minister.<sup id="cite_ref-88"><a href="#cite_note-88">[82]</a></sup>
@ -485,7 +485,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:E_003261_E_Maoris_in_North_Africa_July_1941.jpg"><img alt="A squad of men kneel in the desert sand while performing a war dance" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/77/E_003261_E_Maoris_in_North_Africa_July_1941.jpg/220px-E_003261_E_Maoris_in_North_Africa_July_1941.jpg" decoding="async" width="220" height="217" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/77/E_003261_E_Maoris_in_North_Africa_July_1941.jpg/330px-E_003261_E_Maoris_in_North_Africa_July_1941.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/77/E_003261_E_Maoris_in_North_Africa_July_1941.jpg/440px-E_003261_E_Maoris_in_North_Africa_July_1941.jpg 2x" data-file-width="3040" data-file-height="2999" /></a></p>
<p><a href="http://fakehost/wiki/File:E_003261_E_Maoris_in_North_Africa_July_1941.jpg"><img alt="A squad of men kneel in the desert sand while performing a war dance" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/77/E_003261_E_Maoris_in_North_Africa_July_1941.jpg/220px-E_003261_E_Maoris_in_North_Africa_July_1941.jpg" decoding="async" width="220" height="217" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/7/77/E_003261_E_Maoris_in_North_Africa_July_1941.jpg/330px-E_003261_E_Maoris_in_North_Africa_July_1941.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/7/77/E_003261_E_Maoris_in_North_Africa_July_1941.jpg/440px-E_003261_E_Maoris_in_North_Africa_July_1941.jpg 2x" data-file-width="3040" data-file-height="2999" /></a></p>
</div>
</div>
<p> Early colonial New Zealand allowed the British Government to determine external trade and be responsible for foreign policy.<sup id="cite_ref-97"><a href="#cite_note-97">[91]</a></sup> The 1923 and 1926 <a href="http://fakehost/wiki/Imperial_Conference" title="Imperial Conference">Imperial Conferences</a> decided that New Zealand should be allowed to negotiate its own political <a href="http://fakehost/wiki/Treaty" title="Treaty">treaties</a> and the first commercial treaty was ratified in 1928 with Japan. On 3 September 1939 New Zealand allied itself with Britain and <a href="http://fakehost/wiki/Declaration_of_war" title="Declaration of war">declared war</a> on Germany with Prime Minister <a href="http://fakehost/wiki/Michael_Joseph_Savage" title="Michael Joseph Savage">Michael Joseph Savage</a> proclaiming, "Where she goes, we go; where she stands, we stand."<sup id="cite_ref-98"><a href="#cite_note-98">[92]</a></sup>
@ -494,7 +494,7 @@
</p>
<div>
<div>
<p><a href="http://fakehost/wiki/File:ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_(20).jpg"><img alt="A soldier in a green army uniform faces forwards" src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_%2820%29.jpg/220px-ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_%2820%29.jpg" decoding="async" width="220" height="147" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_%2820%29.jpg/330px-ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_%2820%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d4/ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_%2820%29.jpg/440px-ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_%2820%29.jpg 2x" data-file-width="3888" data-file-height="2592" /></a></p>
<p><a href="http://fakehost/wiki/File:ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_(20).jpg"><img alt="A soldier in a green army uniform faces forwards" src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_%2820%29.jpg/220px-ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_%2820%29.jpg" decoding="async" width="220" height="147" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_%2820%29.jpg/330px-ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_%2820%29.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_%2820%29.jpg/440px-ANZAC_Day_service_at_the_National_War_Memorial_-_Flickr_-_NZ_Defence_Force_%2820%29.jpg 2x" data-file-width="3888" data-file-height="2592" /></a></p>
<div>
<p><a href="http://fakehost/wiki/Anzac_Day" title="Anzac Day">Anzac Day</a> service at the National War Memorial </p>
</div>
@ -511,7 +511,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:NZL_orthographic_NaturalEarth_labelled_en.svg"><img alt="Map with the North, South, Stewart/Rakiura, Tokelau, Cook, Niue, Kermadec, Chatham, Bounty, Antipodes, Snare, Auckland and Campbell Islands highlighted. New Zealand&apos;s segment of Antarctica (the Ross Dependency) is also highlighted." src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/NZL_orthographic_NaturalEarth_labelled_en.svg/400px-NZL_orthographic_NaturalEarth_labelled_en.svg.png" decoding="async" width="400" height="400" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/4b/NZL_orthographic_NaturalEarth_labelled_en.svg/600px-NZL_orthographic_NaturalEarth_labelled_en.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/4b/NZL_orthographic_NaturalEarth_labelled_en.svg/800px-NZL_orthographic_NaturalEarth_labelled_en.svg.png 2x" data-file-width="553" data-file-height="553" /></a></p>
<p><a href="http://fakehost/wiki/File:NZL_orthographic_NaturalEarth_labelled_en.svg"><img alt="Map with the North, South, Stewart/Rakiura, Tokelau, Cook, Niue, Kermadec, Chatham, Bounty, Antipodes, Snare, Auckland and Campbell Islands highlighted. New Zealand&apos;s segment of Antarctica (the Ross Dependency) is also highlighted." src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/NZL_orthographic_NaturalEarth_labelled_en.svg/400px-NZL_orthographic_NaturalEarth_labelled_en.svg.png" decoding="async" width="400" height="400" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/NZL_orthographic_NaturalEarth_labelled_en.svg/600px-NZL_orthographic_NaturalEarth_labelled_en.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/4/4b/NZL_orthographic_NaturalEarth_labelled_en.svg/800px-NZL_orthographic_NaturalEarth_labelled_en.svg.png 2x" data-file-width="553" data-file-height="553" /></a></p>
</div>
</div>
<p> The early European settlers divided New Zealand into <a href="http://fakehost/wiki/Provinces_of_New_Zealand" title="Provinces of New Zealand">provinces</a>, which had a degree of autonomy.<sup id="cite_ref-nine_provinces_127-0"><a href="#cite_note-nine_provinces-127">[121]</a></sup> Because of financial pressures and the desire to consolidate railways, education, land sales and other policies, government was centralised and the provinces were abolished in 1876.<sup id="cite_ref-128"><a href="#cite_note-128">[122]</a></sup> The provinces are remembered in <a href="http://fakehost/wiki/Public_holidays_in_New_Zealand" title="Public holidays in New Zealand">regional public holidays</a><sup id="cite_ref-129"><a href="#cite_note-129">[123]</a></sup> and sporting rivalries.<sup id="cite_ref-130"><a href="#cite_note-130">[124]</a></sup>
@ -543,15 +543,15 @@
<tr>
<th> Countries </th>
<td colspan="7">
<span><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/23px-Flag_of_New_Zealand.svg.png" decoding="async" width="23" height="12" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/35px-Flag_of_New_Zealand.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/46px-Flag_of_New_Zealand.svg.png 2x" data-file-width="1200" data-file-height="600" />&#160;</span><a>New Zealand</a>
<span><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/23px-Flag_of_New_Zealand.svg.png" decoding="async" width="23" height="12" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/35px-Flag_of_New_Zealand.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/3/3e/Flag_of_New_Zealand.svg/46px-Flag_of_New_Zealand.svg.png 2x" data-file-width="1200" data-file-height="600" />&#160;</span><a>New Zealand</a>
</td>
<td rowspan="4"> &#160; </td>
<td rowspan="4"> &#160; </td>
<td rowspan="1">
<span><span><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Flag_of_the_Cook_Islands.svg/23px-Flag_of_the_Cook_Islands.svg.png" decoding="async" width="23" height="12" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/3/35/Flag_of_the_Cook_Islands.svg/35px-Flag_of_the_Cook_Islands.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/3/35/Flag_of_the_Cook_Islands.svg/46px-Flag_of_the_Cook_Islands.svg.png 2x" data-file-width="1200" data-file-height="600" />&#160;</span><a href="http://fakehost/wiki/Cook_Islands" title="Cook Islands">Cook Islands</a></span>
<span><span><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Flag_of_the_Cook_Islands.svg/23px-Flag_of_the_Cook_Islands.svg.png" decoding="async" width="23" height="12" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Flag_of_the_Cook_Islands.svg/35px-Flag_of_the_Cook_Islands.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/3/35/Flag_of_the_Cook_Islands.svg/46px-Flag_of_the_Cook_Islands.svg.png 2x" data-file-width="1200" data-file-height="600" />&#160;</span><a href="http://fakehost/wiki/Cook_Islands" title="Cook Islands">Cook Islands</a></span>
</td>
<td rowspan="1">
<span><span><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Niue.svg/23px-Flag_of_Niue.svg.png" decoding="async" width="23" height="12" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Niue.svg/35px-Flag_of_Niue.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Niue.svg/46px-Flag_of_Niue.svg.png 2x" data-file-width="600" data-file-height="300" />&#160;</span><a href="http://fakehost/wiki/Niue" title="Niue">Niue</a></span>
<span><span><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Niue.svg/23px-Flag_of_Niue.svg.png" decoding="async" width="23" height="12" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Niue.svg/35px-Flag_of_Niue.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/0/01/Flag_of_Niue.svg/46px-Flag_of_Niue.svg.png 2x" data-file-width="600" data-file-height="300" />&#160;</span><a href="http://fakehost/wiki/Niue" title="Niue">Niue</a></span>
</td>
</tr>
<tr>
@ -570,7 +570,7 @@
<a href="http://fakehost/wiki/Ross_Dependency" title="Ross Dependency">Ross Dependency</a>
</td>
<td rowspan="2">
<span><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Flag_of_Tokelau.svg/23px-Flag_of_Tokelau.svg.png" decoding="async" width="23" height="12" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Flag_of_Tokelau.svg/35px-Flag_of_Tokelau.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Flag_of_Tokelau.svg/46px-Flag_of_Tokelau.svg.png 2x" data-file-width="1800" data-file-height="900" />&#160;</span><a href="http://fakehost/wiki/Tokelau" title="Tokelau">Tokelau</a>
<span><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Flag_of_Tokelau.svg/23px-Flag_of_Tokelau.svg.png" decoding="async" width="23" height="12" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Flag_of_Tokelau.svg/35px-Flag_of_Tokelau.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/8/8e/Flag_of_Tokelau.svg/46px-Flag_of_Tokelau.svg.png 2x" data-file-width="1800" data-file-height="900" />&#160;</span><a href="http://fakehost/wiki/Tokelau" title="Tokelau">Tokelau</a>
</td>
<td rowspan="2">
<span>15 islands</span>
@ -608,7 +608,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:New_Zealand_23_October_2002.jpg"><img alt="Islands of New Zealand as seen from satellite" src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/New_Zealand_23_October_2002.jpg/170px-New_Zealand_23_October_2002.jpg" decoding="async" width="170" height="227" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/a/a5/New_Zealand_23_October_2002.jpg/255px-New_Zealand_23_October_2002.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/a/a5/New_Zealand_23_October_2002.jpg/340px-New_Zealand_23_October_2002.jpg 2x" data-file-width="4200" data-file-height="5600" /></a></p>
<p><a href="http://fakehost/wiki/File:New_Zealand_23_October_2002.jpg"><img alt="Islands of New Zealand as seen from satellite" src="http://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/New_Zealand_23_October_2002.jpg/170px-New_Zealand_23_October_2002.jpg" decoding="async" width="170" height="227" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/New_Zealand_23_October_2002.jpg/255px-New_Zealand_23_October_2002.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/New_Zealand_23_October_2002.jpg/340px-New_Zealand_23_October_2002.jpg 2x" data-file-width="4200" data-file-height="5600" /></a></p>
</div>
</div>
<p> New Zealand is located near the centre of the <a href="http://fakehost/wiki/Water_hemisphere" title="Water hemisphere">water hemisphere</a> and is made up of two main islands and a number of <a href="http://fakehost/wiki/List_of_islands_of_New_Zealand" title="List of islands of New Zealand">smaller islands</a>. The two main islands (the <a href="http://fakehost/wiki/North_Island" title="North Island">North Island</a>, or <i>Te Ika-a-Māui</i>, and the <a href="http://fakehost/wiki/South_Island" title="South Island">South Island</a>, or <i>Te Waipounamu</i>) are separated by <a href="http://fakehost/wiki/Cook_Strait" title="Cook Strait">Cook Strait</a>, 22 kilometres (14&#160;mi) wide at its narrowest point.<sup id="cite_ref-145"><a href="#cite_note-145">[138]</a></sup> Besides the North and South Islands, the five largest inhabited islands are <a href="http://fakehost/wiki/Stewart_Island" title="Stewart Island">Stewart Island</a> (across the <a href="http://fakehost/wiki/Foveaux_Strait" title="Foveaux Strait">Foveaux Strait</a>), <a href="http://fakehost/wiki/Chatham_Island" title="Chatham Island">Chatham Island</a>, <a href="http://fakehost/wiki/Great_Barrier_Island" title="Great Barrier Island">Great Barrier Island</a> (in the <a href="http://fakehost/wiki/Hauraki_Gulf" title="Hauraki Gulf">Hauraki Gulf</a>),<sup id="cite_ref-146"><a href="#cite_note-146">[139]</a></sup> <a href="http://fakehost/wiki/D%27Urville_Island_(New_Zealand)" title="D&apos;Urville Island (New Zealand)">D'Urville Island</a> (in the <a href="http://fakehost/wiki/Marlborough_Sounds" title="Marlborough Sounds">Marlborough Sounds</a>)<sup id="cite_ref-147"><a href="#cite_note-147">[140]</a></sup> and <a href="http://fakehost/wiki/Waiheke_Island" title="Waiheke Island">Waiheke Island</a> (about 22&#160;km (14&#160;mi) from central Auckland).<sup id="cite_ref-148"><a href="#cite_note-148">[141]</a></sup>
@ -617,13 +617,13 @@
<div>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Mt_Cook,_NZ.jpg"><img alt="A large mountain with a lake in the foreground" src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Mt_Cook%2C_NZ.jpg/220px-Mt_Cook%2C_NZ.jpg" decoding="async" width="220" height="147" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/44/Mt_Cook%2C_NZ.jpg/330px-Mt_Cook%2C_NZ.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/44/Mt_Cook%2C_NZ.jpg/440px-Mt_Cook%2C_NZ.jpg 2x" data-file-width="4608" data-file-height="3072" /></a>
<p><a href="http://fakehost/wiki/File:Mt_Cook,_NZ.jpg"><img alt="A large mountain with a lake in the foreground" src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Mt_Cook%2C_NZ.jpg/220px-Mt_Cook%2C_NZ.jpg" decoding="async" width="220" height="147" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Mt_Cook%2C_NZ.jpg/330px-Mt_Cook%2C_NZ.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/4/44/Mt_Cook%2C_NZ.jpg/440px-Mt_Cook%2C_NZ.jpg 2x" data-file-width="4608" data-file-height="3072" /></a>
</p>
</div>
</div>
<div>
<div>
<p><a href="http://fakehost/wiki/File:New_Zealand_moutain_ranges.jpg"><img alt="Snow-capped mountain range" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/New_Zealand_moutain_ranges.jpg/220px-New_Zealand_moutain_ranges.jpg" decoding="async" width="220" height="147" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7b/New_Zealand_moutain_ranges.jpg/330px-New_Zealand_moutain_ranges.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7b/New_Zealand_moutain_ranges.jpg/440px-New_Zealand_moutain_ranges.jpg 2x" data-file-width="4272" data-file-height="2848" /></a>
<p><a href="http://fakehost/wiki/File:New_Zealand_moutain_ranges.jpg"><img alt="Snow-capped mountain range" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/New_Zealand_moutain_ranges.jpg/220px-New_Zealand_moutain_ranges.jpg" decoding="async" width="220" height="147" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/New_Zealand_moutain_ranges.jpg/330px-New_Zealand_moutain_ranges.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/New_Zealand_moutain_ranges.jpg/440px-New_Zealand_moutain_ranges.jpg 2x" data-file-width="4272" data-file-height="2848" /></a>
</p>
<p> The Southern Alps stretch for 500 kilometres down the South Island </p>
</div>
@ -647,7 +647,7 @@
<li>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Lake_Gunn.jpg"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Lake_Gunn.jpg/269px-Lake_Gunn.jpg" decoding="async" width="180" height="120" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Lake_Gunn.jpg/404px-Lake_Gunn.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Lake_Gunn.jpg/538px-Lake_Gunn.jpg 2x" data-file-width="1000" data-file-height="669" /></a>
<p><a href="http://fakehost/wiki/File:Lake_Gunn.jpg"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Lake_Gunn.jpg/269px-Lake_Gunn.jpg" decoding="async" width="180" height="120" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Lake_Gunn.jpg/404px-Lake_Gunn.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Lake_Gunn.jpg/538px-Lake_Gunn.jpg 2x" data-file-width="1000" data-file-height="669" /></a>
</p>
</div>
</div>
@ -655,7 +655,7 @@
<li>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Pencarrow_Head,_Wellington,_New_Zealand_from_Santa_Regina,_24_Feb._2007.jpg"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Pencarrow_Head%2C_Wellington%2C_New_Zealand_from_Santa_Regina%2C_24_Feb._2007.jpg/269px-Pencarrow_Head%2C_Wellington%2C_New_Zealand_from_Santa_Regina%2C_24_Feb._2007.jpg" decoding="async" width="180" height="120" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Pencarrow_Head%2C_Wellington%2C_New_Zealand_from_Santa_Regina%2C_24_Feb._2007.jpg/404px-Pencarrow_Head%2C_Wellington%2C_New_Zealand_from_Santa_Regina%2C_24_Feb._2007.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Pencarrow_Head%2C_Wellington%2C_New_Zealand_from_Santa_Regina%2C_24_Feb._2007.jpg/538px-Pencarrow_Head%2C_Wellington%2C_New_Zealand_from_Santa_Regina%2C_24_Feb._2007.jpg 2x" data-file-width="3872" data-file-height="2592" /></a>
<p><a href="http://fakehost/wiki/File:Pencarrow_Head,_Wellington,_New_Zealand_from_Santa_Regina,_24_Feb._2007.jpg"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Pencarrow_Head%2C_Wellington%2C_New_Zealand_from_Santa_Regina%2C_24_Feb._2007.jpg/269px-Pencarrow_Head%2C_Wellington%2C_New_Zealand_from_Santa_Regina%2C_24_Feb._2007.jpg" decoding="async" width="180" height="120" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Pencarrow_Head%2C_Wellington%2C_New_Zealand_from_Santa_Regina%2C_24_Feb._2007.jpg/404px-Pencarrow_Head%2C_Wellington%2C_New_Zealand_from_Santa_Regina%2C_24_Feb._2007.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/d/d4/Pencarrow_Head%2C_Wellington%2C_New_Zealand_from_Santa_Regina%2C_24_Feb._2007.jpg/538px-Pencarrow_Head%2C_Wellington%2C_New_Zealand_from_Santa_Regina%2C_24_Feb._2007.jpg 2x" data-file-width="3872" data-file-height="2592" /></a>
</p>
</div>
</div>
@ -739,7 +739,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:TeTuatahianui.jpg"><img alt="Kiwi amongst sticks" src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/82/TeTuatahianui.jpg/170px-TeTuatahianui.jpg" decoding="async" width="170" height="227" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/82/TeTuatahianui.jpg/255px-TeTuatahianui.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/82/TeTuatahianui.jpg/340px-TeTuatahianui.jpg 2x" data-file-width="994" data-file-height="1325" /></a></p>
<p><a href="http://fakehost/wiki/File:TeTuatahianui.jpg"><img alt="Kiwi amongst sticks" src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/82/TeTuatahianui.jpg/170px-TeTuatahianui.jpg" decoding="async" width="170" height="227" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/8/82/TeTuatahianui.jpg/255px-TeTuatahianui.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/8/82/TeTuatahianui.jpg/340px-TeTuatahianui.jpg 2x" data-file-width="994" data-file-height="1325" /></a></p>
<div>
<p>The endemic flightless <a href="http://fakehost/wiki/Kiwi" title="Kiwi">kiwi</a> is a national icon. </p>
</div>
@ -751,7 +751,7 @@
</p>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg"><img alt="An artist&apos;s rendition of a Haast&apos;s eagle attacking two moa" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg/220px-Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg" decoding="async" width="220" height="176" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg/330px-Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg/440px-Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg 2x" data-file-width="1375" data-file-height="1101" /></a></p>
<p><a href="http://fakehost/wiki/File:Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg"><img alt="An artist&apos;s rendition of a Haast&apos;s eagle attacking two moa" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg/220px-Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg" decoding="async" width="220" height="176" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg/330px-Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/2/2d/Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg/440px-Giant_Haasts_eagle_attacking_New_Zealand_moa.jpg 2x" data-file-width="1375" data-file-height="1101" /></a></p>
<div>
<p>The giant <a href="http://fakehost/wiki/Haast%27s_eagle" title="Haast&apos;s eagle">Haast's eagle</a> died out when humans hunted its main prey, the <a href="http://fakehost/wiki/Moa" title="Moa">moa</a>, to extinction. </p>
</div>
@ -768,7 +768,7 @@
</h2>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Auckland_Waterfrt.jpg"><img alt="Boats docked in blue-green water. Plate glass skyscrapers rising up in the background." src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Auckland_Waterfrt.jpg/220px-Auckland_Waterfrt.jpg" decoding="async" width="220" height="145" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Auckland_Waterfrt.jpg/330px-Auckland_Waterfrt.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Auckland_Waterfrt.jpg/440px-Auckland_Waterfrt.jpg 2x" data-file-width="4568" data-file-height="3019" /></a></p>
<p><a href="http://fakehost/wiki/File:Auckland_Waterfrt.jpg"><img alt="Boats docked in blue-green water. Plate glass skyscrapers rising up in the background." src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Auckland_Waterfrt.jpg/220px-Auckland_Waterfrt.jpg" decoding="async" width="220" height="145" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Auckland_Waterfrt.jpg/330px-Auckland_Waterfrt.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/e/e1/Auckland_Waterfrt.jpg/440px-Auckland_Waterfrt.jpg 2x" data-file-width="4568" data-file-height="3019" /></a></p>
</div>
</div>
<p> New Zealand has an <a href="http://fakehost/wiki/Advanced_economy" title="Advanced economy">advanced</a> <a href="http://fakehost/wiki/Market_economy" title="Market economy">market economy</a>,<sup id="cite_ref-200"><a href="#cite_note-200">[193]</a></sup> ranked 16th in the 2018 <a href="http://fakehost/wiki/Human_Development_Index" title="Human Development Index">Human Development Index</a><sup id="cite_ref-HDI_12-1"><a href="#cite_note-HDI-12">[8]</a></sup> and third in the 2018 <a href="http://fakehost/wiki/Index_of_Economic_Freedom" title="Index of Economic Freedom">Index of Economic Freedom</a>.<sup id="cite_ref-201"><a href="#cite_note-201">[194]</a></sup> It is a <a href="http://fakehost/wiki/High-income_economy" title="High-income economy">high-income economy</a> with a <a href="http://fakehost/wiki/Nominal_value" title="Nominal value">nominal</a> <a href="http://fakehost/wiki/Gross_domestic_product" title="Gross domestic product">gross domestic product</a> (GDP) per capita of <a href="http://fakehost/wiki/United_States_dollar" title="United States dollar">US$</a>36,254.<sup id="cite_ref-imf2_10-4"><a href="#cite_note-imf2-10">[6]</a></sup> The currency is the <a href="http://fakehost/wiki/New_Zealand_dollar" title="New Zealand dollar">New Zealand dollar</a>, informally known as the "Kiwi dollar"; it also circulates in the Cook Islands (see <a href="http://fakehost/wiki/Cook_Islands_dollar" title="Cook Islands dollar">Cook Islands dollar</a>), Niue, Tokelau, and the <a href="http://fakehost/wiki/Pitcairn_Islands" title="Pitcairn Islands">Pitcairn Islands</a>.<sup id="cite_ref-202"><a href="#cite_note-202">[195]</a></sup>
@ -777,7 +777,7 @@
</p>
<div>
<div>
<p><a href="http://fakehost/wiki/File:MilfordSound.jpg"><img alt="Blue water against a backdrop of snow-capped mountains" src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/42/MilfordSound.jpg/220px-MilfordSound.jpg" decoding="async" width="220" height="147" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/4/42/MilfordSound.jpg/330px-MilfordSound.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/4/42/MilfordSound.jpg/440px-MilfordSound.jpg 2x" data-file-width="2048" data-file-height="1364" /></a></p>
<p><a href="http://fakehost/wiki/File:MilfordSound.jpg"><img alt="Blue water against a backdrop of snow-capped mountains" src="http://upload.wikimedia.org/wikipedia/commons/thumb/4/42/MilfordSound.jpg/220px-MilfordSound.jpg" decoding="async" width="220" height="147" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/4/42/MilfordSound.jpg/330px-MilfordSound.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/4/42/MilfordSound.jpg/440px-MilfordSound.jpg 2x" data-file-width="2048" data-file-height="1364" /></a></p>
</div>
</div>
<p> Unemployment peaked above 10% in 1991 and 1992,<sup id="cite_ref-unemployment_214-0"><a href="#cite_note-unemployment-214">[207]</a></sup> following the <a href="http://fakehost/wiki/Black_Monday_(1987)" title="Black Monday (1987)">1987 share market crash</a>, but eventually fell to a record low (since 1986) of 3.7% in 2007 (ranking third from twenty-seven comparable OECD nations).<sup id="cite_ref-unemployment_214-1"><a href="#cite_note-unemployment-214">[207]</a></sup> However, the <a href="http://fakehost/wiki/Financial_crisis_of_2007%E2%80%932008" title="Financial crisis of 20072008">global financial crisis</a> that followed had a major impact on New Zealand, with the GDP shrinking for five consecutive quarters, the longest recession in over thirty years,<sup id="cite_ref-215"><a href="#cite_note-215">[208]</a></sup><sup id="cite_ref-216"><a href="#cite_note-216">[209]</a></sup> and unemployment rising back to 7% in late 2009.<sup id="cite_ref-217"><a href="#cite_note-217">[210]</a></sup> Unemployment rates for different age groups follow similar trends, but are consistently higher among youth. In the December 2014 quarter, the general unemployment rate was around 5.8%, while the unemployment rate for youth aged 15 to 21 was 15.6%.<sup id="cite_ref-unemployment_214-2"><a href="#cite_note-unemployment-214">[207]</a></sup> New Zealand has experienced a series of "<a href="http://fakehost/wiki/Brain_drain" title="Brain drain">brain drains</a>" since the 1970s<sup id="cite_ref-218"><a href="#cite_note-218">[211]</a></sup> that still continue today.<sup id="cite_ref-219"><a href="#cite_note-219">[212]</a></sup> Nearly one quarter of highly skilled workers live overseas, mostly in Australia and Britain, which is the largest proportion from any developed nation.<sup id="cite_ref-220"><a href="#cite_note-220">[213]</a></sup> In recent decades, however, a "brain gain" has brought in educated professionals from Europe and less developed countries.<sup id="cite_ref-221"><a href="#cite_note-221">[214]</a></sup><sup id="cite_ref-FOOTNOTEBain200644_222-0"><a href="#cite_note-FOOTNOTEBain200644-222">[215]</a></sup> Today New Zealand's economy benefits from a high level of <a href="http://fakehost/wiki/Innovation" title="Innovation">innovation</a>.<sup id="cite_ref-223"><a href="#cite_note-223">[216]</a></sup>
@ -789,7 +789,7 @@
</p>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Fauna_de_Nueva_Zelanda07.JPG"><img alt="A Romney ewe with her two lambs" src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Fauna_de_Nueva_Zelanda07.JPG/220px-Fauna_de_Nueva_Zelanda07.JPG" decoding="async" width="220" height="147" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Fauna_de_Nueva_Zelanda07.JPG/330px-Fauna_de_Nueva_Zelanda07.JPG 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Fauna_de_Nueva_Zelanda07.JPG/440px-Fauna_de_Nueva_Zelanda07.JPG 2x" data-file-width="3888" data-file-height="2592" /></a></p>
<p><a href="http://fakehost/wiki/File:Fauna_de_Nueva_Zelanda07.JPG"><img alt="A Romney ewe with her two lambs" src="http://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Fauna_de_Nueva_Zelanda07.JPG/220px-Fauna_de_Nueva_Zelanda07.JPG" decoding="async" width="220" height="147" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Fauna_de_Nueva_Zelanda07.JPG/330px-Fauna_de_Nueva_Zelanda07.JPG 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Fauna_de_Nueva_Zelanda07.JPG/440px-Fauna_de_Nueva_Zelanda07.JPG 2x" data-file-width="3888" data-file-height="2592" /></a></p>
<div>
<p>Wool has historically been one of New Zealand's major exports. </p>
</div>
@ -802,7 +802,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Air_New_Zealand,_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_(27091961041).jpg"><img alt="A mid-size jet airliner in flight. The plane livery is all-black and features a New Zealand silver fern mark." src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Air_New_Zealand%2C_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_%2827091961041%29.jpg/220px-Air_New_Zealand%2C_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_%2827091961041%29.jpg" decoding="async" width="220" height="147" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/11/Air_New_Zealand%2C_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_%2827091961041%29.jpg/330px-Air_New_Zealand%2C_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_%2827091961041%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/11/Air_New_Zealand%2C_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_%2827091961041%29.jpg/440px-Air_New_Zealand%2C_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_%2827091961041%29.jpg 2x" data-file-width="5625" data-file-height="3750" /></a></p>
<p><a href="http://fakehost/wiki/File:Air_New_Zealand,_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_(27091961041).jpg"><img alt="A mid-size jet airliner in flight. The plane livery is all-black and features a New Zealand silver fern mark." src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Air_New_Zealand%2C_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_%2827091961041%29.jpg/220px-Air_New_Zealand%2C_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_%2827091961041%29.jpg" decoding="async" width="220" height="147" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Air_New_Zealand%2C_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_%2827091961041%29.jpg/330px-Air_New_Zealand%2C_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_%2827091961041%29.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/1/11/Air_New_Zealand%2C_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_%2827091961041%29.jpg/440px-Air_New_Zealand%2C_Boeing_787-9_ZK-NZE_%27All_Blacks%27_NRT_%2827091961041%29.jpg 2x" data-file-width="5625" data-file-height="3750" /></a></p>
</div>
</div>
<p> In 2015, <a href="http://fakehost/wiki/Renewable_energy_in_New_Zealand" title="Renewable energy in New Zealand">renewable energy</a>, primarily <a href="http://fakehost/wiki/Geothermal_power_in_New_Zealand" title="Geothermal power in New Zealand">geothermal</a> and <a href="http://fakehost/wiki/Hydroelectric_power_in_New_Zealand" title="Hydroelectric power in New Zealand">hydroelectric power</a>, generated 40.1% of <a href="http://fakehost/wiki/Energy_in_New_Zealand" title="Energy in New Zealand">New Zealand's gross energy</a> supply.<sup id="cite_ref-Energy2015_238-0"><a href="#cite_note-Energy2015-238">[231]</a></sup> Geothermal power alone accounted for 22% of New Zealand's energy in 2015.<sup id="cite_ref-Energy2015_238-1"><a href="#cite_note-Energy2015-238">[231]</a></sup>
@ -819,7 +819,7 @@
</h2>
<div>
<div>
<p><a href="http://fakehost/wiki/File:New_Zealandpop.svg"><img alt="Stationary population pyramid broken down into 21 age ranges." src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/27/New_Zealandpop.svg/280px-New_Zealandpop.svg.png" decoding="async" width="280" height="210" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/27/New_Zealandpop.svg/420px-New_Zealandpop.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/27/New_Zealandpop.svg/560px-New_Zealandpop.svg.png 2x" data-file-width="800" data-file-height="600" /></a></p>
<p><a href="http://fakehost/wiki/File:New_Zealandpop.svg"><img alt="Stationary population pyramid broken down into 21 age ranges." src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/27/New_Zealandpop.svg/280px-New_Zealandpop.svg.png" decoding="async" width="280" height="210" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/2/27/New_Zealandpop.svg/420px-New_Zealandpop.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/2/27/New_Zealandpop.svg/560px-New_Zealandpop.svg.png 2x" data-file-width="800" data-file-height="600" /></a></p>
</div>
</div>
<p> The <a href="http://fakehost/wiki/2013_New_Zealand_census" title="2013 New Zealand census">2013 New Zealand census</a> enumerated a resident population of 4,242,048, an increase of 5.3% over the 2006 figure.<sup id="cite_ref-252"><a href="#cite_note-252">[245]</a></sup><sup id="cite_ref-254"><a href="#cite_note-254">[n 8]</a></sup> As of September 2019, the total population has risen to an estimated 4,933,210.<sup id="cite_ref-populationestimate_9-1"><a href="#cite_note-populationestimate-9">[5]</a></sup>
@ -884,9 +884,9 @@
</tr>
<tr>
<td rowspan="11">
<a href="http://fakehost/wiki/File:Auckland_Cbd_(217403753).jpeg" title="Auckland"><img alt="Auckland" src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Auckland_Cbd_%28217403753%29.jpeg/120px-Auckland_Cbd_%28217403753%29.jpeg" decoding="async" width="120" height="80" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Auckland_Cbd_%28217403753%29.jpeg/180px-Auckland_Cbd_%28217403753%29.jpeg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Auckland_Cbd_%28217403753%29.jpeg/240px-Auckland_Cbd_%28217403753%29.jpeg 2x" data-file-width="2048" data-file-height="1362" /></a><br />
<a href="http://fakehost/wiki/File:Auckland_Cbd_(217403753).jpeg" title="Auckland"><img alt="Auckland" src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Auckland_Cbd_%28217403753%29.jpeg/120px-Auckland_Cbd_%28217403753%29.jpeg" decoding="async" width="120" height="80" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Auckland_Cbd_%28217403753%29.jpeg/180px-Auckland_Cbd_%28217403753%29.jpeg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/1/1e/Auckland_Cbd_%28217403753%29.jpeg/240px-Auckland_Cbd_%28217403753%29.jpeg 2x" data-file-width="2048" data-file-height="1362" /></a><br />
<a href="http://fakehost/wiki/Auckland" title="Auckland">Auckland</a><br />
<a href="http://fakehost/wiki/File:Wellington_at_dawn.jpg" title="Wellington"><img alt="Wellington" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Wellington_at_dawn.jpg/120px-Wellington_at_dawn.jpg" decoding="async" width="120" height="80" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Wellington_at_dawn.jpg/180px-Wellington_at_dawn.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Wellington_at_dawn.jpg/240px-Wellington_at_dawn.jpg 2x" data-file-width="3718" data-file-height="2479" /></a><br />
<a href="http://fakehost/wiki/File:Wellington_at_dawn.jpg" title="Wellington"><img alt="Wellington" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Wellington_at_dawn.jpg/120px-Wellington_at_dawn.jpg" decoding="async" width="120" height="80" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Wellington_at_dawn.jpg/180px-Wellington_at_dawn.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Wellington_at_dawn.jpg/240px-Wellington_at_dawn.jpg 2x" data-file-width="3718" data-file-height="2479" /></a><br />
<a href="http://fakehost/wiki/Wellington" title="Wellington">Wellington</a>
</td>
<td> 1 </td>
@ -906,9 +906,9 @@
</td>
<td> 58,800 </td>
<td rowspan="11">
<a href="http://fakehost/wiki/File:Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_(2).jpg" title="Christchurch"><img alt="Christchurch" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_%282%29.jpg/120px-Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_%282%29.jpg" decoding="async" width="120" height="80" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_%282%29.jpg/180px-Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_%282%29.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_%282%29.jpg/240px-Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_%282%29.jpg 2x" data-file-width="1800" data-file-height="1200" /></a><br />
<a href="http://fakehost/wiki/File:Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_(2).jpg" title="Christchurch"><img alt="Christchurch" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_%282%29.jpg/120px-Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_%282%29.jpg" decoding="async" width="120" height="80" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_%282%29.jpg/180px-Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_%282%29.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/0/0e/Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_%282%29.jpg/240px-Aerial_image_of_Christchurch_suburbs_-_Flickr_-_NZ_Defence_Force_%282%29.jpg 2x" data-file-width="1800" data-file-height="1200" /></a><br />
<a href="http://fakehost/wiki/Christchurch" title="Christchurch">Christchurch</a><br />
<a href="http://fakehost/wiki/File:HamiltonNZfromUni.jpg" title="Hamilton"><img alt="Hamilton" src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/87/HamiltonNZfromUni.jpg/120px-HamiltonNZfromUni.jpg" decoding="async" width="120" height="85" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/87/HamiltonNZfromUni.jpg/180px-HamiltonNZfromUni.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/87/HamiltonNZfromUni.jpg/240px-HamiltonNZfromUni.jpg 2x" data-file-width="3581" data-file-height="2528" /></a><br />
<a href="http://fakehost/wiki/File:HamiltonNZfromUni.jpg" title="Hamilton"><img alt="Hamilton" src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/87/HamiltonNZfromUni.jpg/120px-HamiltonNZfromUni.jpg" decoding="async" width="120" height="85" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/8/87/HamiltonNZfromUni.jpg/180px-HamiltonNZfromUni.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/8/87/HamiltonNZfromUni.jpg/240px-HamiltonNZfromUni.jpg 2x" data-file-width="3581" data-file-height="2528" /></a><br />
<a href="http://fakehost/wiki/Hamilton,_New_Zealand" title="Hamilton, New Zealand">Hamilton</a>
</td>
</tr>
@ -1081,7 +1081,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Queen_Street_Midtown_Auckland.jpg"><img alt="Pedestrians crossing a wide street which is flanked by storefronts" src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/bb/Queen_Street_Midtown_Auckland.jpg/220px-Queen_Street_Midtown_Auckland.jpg" decoding="async" width="220" height="158" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/b/bb/Queen_Street_Midtown_Auckland.jpg/330px-Queen_Street_Midtown_Auckland.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/b/bb/Queen_Street_Midtown_Auckland.jpg/440px-Queen_Street_Midtown_Auckland.jpg 2x" data-file-width="841" data-file-height="604" /></a></p>
<p><a href="http://fakehost/wiki/File:Queen_Street_Midtown_Auckland.jpg"><img alt="Pedestrians crossing a wide street which is flanked by storefronts" src="http://upload.wikimedia.org/wikipedia/commons/thumb/b/bb/Queen_Street_Midtown_Auckland.jpg/220px-Queen_Street_Midtown_Auckland.jpg" decoding="async" width="220" height="158" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/b/bb/Queen_Street_Midtown_Auckland.jpg/330px-Queen_Street_Midtown_Auckland.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/b/bb/Queen_Street_Midtown_Auckland.jpg/440px-Queen_Street_Midtown_Auckland.jpg 2x" data-file-width="841" data-file-height="604" /></a></p>
<div>
<p>Pedestrians on <a href="http://fakehost/wiki/Queen_Street,_Auckland" title="Queen Street, Auckland">Queen Street</a> in Auckland, an ethnically diverse city </p>
</div>
@ -1098,7 +1098,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:TeReoMaori2013.png"><img alt="Map of New Zealand showing the percentage of people in each census area unit who speak Māori. Areas of the North Island exhibit the highest Māori proficiency." src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/16/TeReoMaori2013.png/220px-TeReoMaori2013.png" decoding="async" width="220" height="165" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/16/TeReoMaori2013.png/330px-TeReoMaori2013.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/16/TeReoMaori2013.png/440px-TeReoMaori2013.png 2x" data-file-width="5000" data-file-height="3759" /></a></p>
<p><a href="http://fakehost/wiki/File:TeReoMaori2013.png"><img alt="Map of New Zealand showing the percentage of people in each census area unit who speak Māori. Areas of the North Island exhibit the highest Māori proficiency." src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/16/TeReoMaori2013.png/220px-TeReoMaori2013.png" decoding="async" width="220" height="165" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/1/16/TeReoMaori2013.png/330px-TeReoMaori2013.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/1/16/TeReoMaori2013.png/440px-TeReoMaori2013.png 2x" data-file-width="5000" data-file-height="3759" /></a></p>
<div>
<p>Speakers of Māori according to the 2013 census<sup id="cite_ref-278"><a href="#cite_note-278">[270]</a></sup></p>
<p><span>&#160;</span>&#160;Less than 5% </p>
@ -1122,7 +1122,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Ratana_Church_Raetihi.jpg"><img alt="Simple white building with two red domed towers" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Ratana_Church_Raetihi.jpg/170px-Ratana_Church_Raetihi.jpg" decoding="async" width="170" height="227" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/70/Ratana_Church_Raetihi.jpg/255px-Ratana_Church_Raetihi.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/70/Ratana_Church_Raetihi.jpg/340px-Ratana_Church_Raetihi.jpg 2x" data-file-width="1624" data-file-height="2164" /></a></p>
<p><a href="http://fakehost/wiki/File:Ratana_Church_Raetihi.jpg"><img alt="Simple white building with two red domed towers" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Ratana_Church_Raetihi.jpg/170px-Ratana_Church_Raetihi.jpg" decoding="async" width="170" height="227" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Ratana_Church_Raetihi.jpg/255px-Ratana_Church_Raetihi.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/7/70/Ratana_Church_Raetihi.jpg/340px-Ratana_Church_Raetihi.jpg 2x" data-file-width="1624" data-file-height="2164" /></a></p>
<div>
<p>A <a href="http://fakehost/wiki/R%C4%81tana" title="Rātana">Rātana</a> church on a hill near <a href="http://fakehost/wiki/Raetihi" title="Raetihi">Raetihi</a>. The two-tower construction is characteristic of Rātana buildings. </p>
</div>
@ -1141,7 +1141,7 @@
</h2>
<div>
<div>
<p><a href="http://fakehost/wiki/File:KupeWheke.jpg" title="Use the scrollbar to see the full image."><img alt="Tall wooden carving showing Kupe above two tentacled sea creatures" src="http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/KupeWheke.jpg/150px-KupeWheke.jpg" decoding="async" width="150" height="605" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/53/KupeWheke.jpg/225px-KupeWheke.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/53/KupeWheke.jpg/300px-KupeWheke.jpg 2x" data-file-width="389" data-file-height="1570" /></a>
<p><a href="http://fakehost/wiki/File:KupeWheke.jpg" title="Use the scrollbar to see the full image."><img alt="Tall wooden carving showing Kupe above two tentacled sea creatures" src="http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/KupeWheke.jpg/150px-KupeWheke.jpg" decoding="async" width="150" height="605" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/KupeWheke.jpg/225px-KupeWheke.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/5/53/KupeWheke.jpg/300px-KupeWheke.jpg 2x" data-file-width="389" data-file-height="1570" /></a>
</p>
<div>
<p>Late 20th-century house-post depicting the navigator <a href="http://fakehost/wiki/Kupe" title="Kupe">Kupe</a> fighting two sea creatures </p>
@ -1164,7 +1164,7 @@
</p>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Hinepare.jpg"><img alt="Refer to caption" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Hinepare.jpg/170px-Hinepare.jpg" decoding="async" width="170" height="218" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Hinepare.jpg/255px-Hinepare.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Hinepare.jpg/340px-Hinepare.jpg 2x" data-file-width="545" data-file-height="700" /></a></p>
<p><a href="http://fakehost/wiki/File:Hinepare.jpg"><img alt="Refer to caption" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Hinepare.jpg/170px-Hinepare.jpg" decoding="async" width="170" height="218" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Hinepare.jpg/255px-Hinepare.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/7/7b/Hinepare.jpg/340px-Hinepare.jpg 2x" data-file-width="545" data-file-height="700" /></a></p>
</div>
</div>
<p> Māori cloaks are made of fine flax fibre and patterned with black, red and white triangles, diamonds and other geometric shapes.<sup id="cite_ref-327"><a href="#cite_note-327">[316]</a></sup> <a href="http://fakehost/wiki/Pounamu" title="Pounamu">Greenstone</a> was fashioned into earrings and necklaces, with the most well-known design being the <a href="http://fakehost/wiki/Hei-tiki" title="Hei-tiki">hei-tiki</a>, a distorted human figure sitting cross-legged with its head tilted to the side.<sup id="cite_ref-328"><a href="#cite_note-328">[317]</a></sup> Europeans brought English fashion etiquette to New Zealand, and until the 1950s most people dressed up for social occasions.<sup id="cite_ref-329"><a href="#cite_note-329">[318]</a></sup> Standards have since relaxed and New Zealand fashion has received a reputation for being casual, practical and lacklustre.<sup id="cite_ref-330"><a href="#cite_note-330">[319]</a></sup><sup id="cite_ref-The_Economist_print_edition_331-0"><a href="#cite_note-The_Economist_print_edition-331">[320]</a></sup> However, the local fashion industry has grown significantly since 2000, doubling exports and increasing from a handful to about 50 established labels, with some labels gaining international recognition.<sup id="cite_ref-The_Economist_print_edition_331-1"><a href="#cite_note-The_Economist_print_edition-331">[320]</a></sup>
@ -1181,7 +1181,7 @@
</p>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Hobbit_holes_reflected_in_water.jpg"><img alt="Hills with inset, round doors. Reflected in water." src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/89/Hobbit_holes_reflected_in_water.jpg/220px-Hobbit_holes_reflected_in_water.jpg" decoding="async" width="220" height="147" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/8/89/Hobbit_holes_reflected_in_water.jpg/330px-Hobbit_holes_reflected_in_water.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/8/89/Hobbit_holes_reflected_in_water.jpg/440px-Hobbit_holes_reflected_in_water.jpg 2x" data-file-width="5184" data-file-height="3456" /></a></p>
<p><a href="http://fakehost/wiki/File:Hobbit_holes_reflected_in_water.jpg"><img alt="Hills with inset, round doors. Reflected in water." src="http://upload.wikimedia.org/wikipedia/commons/thumb/8/89/Hobbit_holes_reflected_in_water.jpg/220px-Hobbit_holes_reflected_in_water.jpg" decoding="async" width="220" height="147" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/8/89/Hobbit_holes_reflected_in_water.jpg/330px-Hobbit_holes_reflected_in_water.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/8/89/Hobbit_holes_reflected_in_water.jpg/440px-Hobbit_holes_reflected_in_water.jpg 2x" data-file-width="5184" data-file-height="3456" /></a></p>
</div>
</div>
<p> Public <a href="http://fakehost/wiki/Radio_in_New_Zealand" title="Radio in New Zealand">radio</a> was introduced in New Zealand in 1922.<sup id="cite_ref-348"><a href="#cite_note-348">[337]</a></sup> A state-owned <a href="http://fakehost/wiki/Television_in_New_Zealand" title="Television in New Zealand">television service</a> began in 1960.<sup id="cite_ref-349"><a href="#cite_note-349">[338]</a></sup> Deregulation in the 1980s saw a sudden increase in the numbers of radio and television stations.<sup id="cite_ref-NZ_TV_350-0"><a href="#cite_note-NZ_TV-350">[339]</a></sup> New Zealand television primarily broadcasts American and British programming, along with a large number of Australian and local shows.<sup id="cite_ref-351"><a href="#cite_note-351">[340]</a></sup> The number of <a href="http://fakehost/wiki/List_of_New_Zealand_films" title="List of New Zealand films">New Zealand films</a> significantly increased during the 1970s. In 1978 the <a href="http://fakehost/wiki/New_Zealand_Film_Commission" title="New Zealand Film Commission">New Zealand Film Commission</a> started assisting local film-makers and many films attained a world audience, some receiving international acknowledgement.<sup id="cite_ref-NZ_TV_350-1"><a href="#cite_note-NZ_TV-350">[339]</a></sup> The highest-grossing New Zealand films are <i><a href="http://fakehost/wiki/Hunt_for_the_Wilderpeople" title="Hunt for the Wilderpeople">Hunt for the Wilderpeople</a></i>, <i><a href="http://fakehost/wiki/Boy_(2010_film)" title="Boy (2010 film)">Boy</a></i>, <i><a href="http://fakehost/wiki/The_World%27s_Fastest_Indian" title="The World&apos;s Fastest Indian">The World's Fastest Indian</a></i>, <i><a href="http://fakehost/wiki/Once_Were_Warriors_(film)" title="Once Were Warriors (film)">Once Were Warriors</a></i> and <i><a href="http://fakehost/wiki/Whale_Rider" title="Whale Rider">Whale Rider</a></i>.<sup id="cite_ref-352"><a href="#cite_note-352">[341]</a></sup> The country's diverse scenery and compact size, plus government incentives,<sup id="cite_ref-353"><a href="#cite_note-353">[342]</a></sup> have encouraged some <a href="http://fakehost/wiki/Film_producer" title="Film producer">producers</a> to shoot big-budget productions in New Zealand, including <i><a href="http://fakehost/wiki/Avatar_(2009_film)" title="Avatar (2009 film)">Avatar</a></i>, <i><a href="http://fakehost/wiki/The_Lord_of_the_Rings_(film_series)" title="The Lord of the Rings (film series)">The Lord of the Rings</a></i>, <i><a href="http://fakehost/wiki/The_Hobbit_(film_series)" title="The Hobbit (film series)">The Hobbit</a></i>, <i><a href="http://fakehost/wiki/The_Chronicles_of_Narnia_(film_series)" title="The Chronicles of Narnia (film series)">The Chronicles of Narnia</a></i>, <i><a href="http://fakehost/wiki/King_Kong_(2005_film)" title="King Kong (2005 film)">King Kong</a></i> and <i><a href="http://fakehost/wiki/The_Last_Samurai" title="The Last Samurai">The Last Samurai</a></i>.<sup id="cite_ref-354"><a href="#cite_note-354">[343]</a></sup> The New Zealand media industry is dominated by a small number of companies, most of which are foreign-owned, although the <a href="http://fakehost/wiki/Crown_entity" title="Crown entity">state retains ownership</a> of some television and radio stations.<sup id="cite_ref-355"><a href="#cite_note-355">[344]</a></sup> Since 1994, <a href="http://fakehost/wiki/Freedom_House" title="Freedom House">Freedom House</a> has consistently ranked New Zealand's press freedom in the top twenty, with the 19th freest media in 2015.<sup id="cite_ref-356"><a href="#cite_note-356">[345]</a></sup>
@ -1191,7 +1191,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Haka_2006.jpg"><img alt="Rugby team wearing all black, facing the camera, knees bent, and facing toward a team wearing white" src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Haka_2006.jpg/220px-Haka_2006.jpg" decoding="async" width="220" height="146" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Haka_2006.jpg/330px-Haka_2006.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Haka_2006.jpg/440px-Haka_2006.jpg 2x" data-file-width="3008" data-file-height="2000" /></a></p>
<p><a href="http://fakehost/wiki/File:Haka_2006.jpg"><img alt="Rugby team wearing all black, facing the camera, knees bent, and facing toward a team wearing white" src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Haka_2006.jpg/220px-Haka_2006.jpg" decoding="async" width="220" height="146" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Haka_2006.jpg/330px-Haka_2006.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/d/d2/Haka_2006.jpg/440px-Haka_2006.jpg 2x" data-file-width="3008" data-file-height="2000" /></a></p>
</div>
</div>
<p> Most of the major sporting codes played in New Zealand have British origins.<sup id="cite_ref-357"><a href="#cite_note-357">[346]</a></sup> <a href="http://fakehost/wiki/Rugby_union" title="Rugby union">Rugby union</a> is considered the <a href="http://fakehost/wiki/National_sport" title="National sport">national sport</a><sup id="cite_ref-358"><a href="#cite_note-358">[347]</a></sup> and attracts the most spectators.<sup id="cite_ref-Organised_Sport_359-0"><a href="#cite_note-Organised_Sport-359">[348]</a></sup> <a href="http://fakehost/wiki/Golf" title="Golf">Golf</a>, <a href="http://fakehost/wiki/Netball" title="Netball">netball</a>, <a href="http://fakehost/wiki/Tennis" title="Tennis">tennis</a> and <a href="http://fakehost/wiki/Cricket" title="Cricket">cricket</a> have the highest rates of adult participation, while netball, rugby union and <a href="http://fakehost/wiki/Association_football" title="Association football">football (soccer)</a> are particularly popular among young people.<sup id="cite_ref-Organised_Sport_359-1"><a href="#cite_note-Organised_Sport-359">[348]</a></sup><sup id="cite_ref-nzsssc_360-0"><a href="#cite_note-nzsssc-360">[349]</a></sup> Around 54% of New Zealand adolescents participate in sports for their school.<sup id="cite_ref-nzsssc_360-1"><a href="#cite_note-nzsssc-360">[349]</a></sup> Victorious rugby tours to Australia and the United Kingdom in the <a href="http://fakehost/wiki/1888%E2%80%9389_New_Zealand_Native_football_team" title="188889 New Zealand Native football team">late 1880s</a> and the <a href="http://fakehost/wiki/The_Original_All_Blacks" title="The Original All Blacks">early 1900s</a> played an early role in instilling a national identity.<sup id="cite_ref-361"><a href="#cite_note-361">[350]</a></sup> <a href="http://fakehost/wiki/Horseracing_in_New_Zealand" title="Horseracing in New Zealand">Horseracing</a> was also a popular <a href="http://fakehost/wiki/Spectator_sport" title="Spectator sport">spectator sport</a> and became part of the "Rugby, Racing and Beer" culture during the 1960s.<sup id="cite_ref-362"><a href="#cite_note-362">[351]</a></sup> Māori participation in European sports was particularly evident in rugby and the country's team performs a <a href="http://fakehost/wiki/Haka_(sports)" title="Haka (sports)">haka</a>, a traditional Māori challenge, before international matches.<sup id="cite_ref-363"><a href="#cite_note-363">[352]</a></sup> New Zealand is known for its <a href="http://fakehost/wiki/Extreme_sport" title="Extreme sport">extreme sports</a>, <a href="http://fakehost/wiki/Adventure_travel" title="Adventure travel">adventure tourism</a><sup id="cite_ref-FOOTNOTEBain200669_364-0"><a href="#cite_note-FOOTNOTEBain200669-364">[353]</a></sup> and strong <a href="http://fakehost/wiki/Mountaineering" title="Mountaineering">mountaineering</a> tradition, as seen in the success of notable New Zealander <a href="http://fakehost/wiki/Edmund_Hillary" title="Edmund Hillary">Sir Edmund Hillary</a>.<sup id="cite_ref-365"><a href="#cite_note-365">[354]</a></sup><sup id="cite_ref-366"><a href="#cite_note-366">[355]</a></sup> Other outdoor pursuits such as <a href="http://fakehost/wiki/Cycling_in_New_Zealand" title="Cycling in New Zealand">cycling</a>, fishing, swimming, running, <a href="http://fakehost/wiki/Tramping_in_New_Zealand" title="Tramping in New Zealand">tramping</a>, canoeing, hunting, snowsports, surfing and sailing are also popular.<sup id="cite_ref-SportsParticipation_367-0"><a href="#cite_note-SportsParticipation-367">[356]</a></sup> The Polynesian sport of <a href="http://fakehost/wiki/Waka_ama" title="Waka ama">waka ama</a> racing has experienced a resurgence of interest in New Zealand since the 1980s.<sup id="cite_ref-368"><a href="#cite_note-368">[357]</a></sup>
@ -1203,7 +1203,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Hangi_ingredients.jpg"><img alt="Raw meat and vegetables" src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Hangi_ingredients.jpg/220px-Hangi_ingredients.jpg" decoding="async" width="220" height="123" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/9/91/Hangi_ingredients.jpg/330px-Hangi_ingredients.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/9/91/Hangi_ingredients.jpg/440px-Hangi_ingredients.jpg 2x" data-file-width="3264" data-file-height="1832" /></a></p>
<p><a href="http://fakehost/wiki/File:Hangi_ingredients.jpg"><img alt="Raw meat and vegetables" src="http://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Hangi_ingredients.jpg/220px-Hangi_ingredients.jpg" decoding="async" width="220" height="123" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Hangi_ingredients.jpg/330px-Hangi_ingredients.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/9/91/Hangi_ingredients.jpg/440px-Hangi_ingredients.jpg 2x" data-file-width="3264" data-file-height="1832" /></a></p>
<div>
<p>Ingredients to be prepared for a <a href="http://fakehost/wiki/H%C4%81ngi" title="Hāngi">hāngi</a>
</p>
@ -2458,7 +2458,7 @@
<a rel="nofollow" href="http://www.ifs.du.edu/ifs/frm_CountryProfile.aspx?Country=NZ">Key Development Forecasts for New Zealand</a> from <a href="http://fakehost/wiki/International_Futures" title="International Futures">International Futures</a>
</li>
<li>
<img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Gnome-globe.svg/16px-Gnome-globe.svg.png" decoding="async" width="16" height="16" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Gnome-globe.svg/24px-Gnome-globe.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Gnome-globe.svg/32px-Gnome-globe.svg.png 2x" data-file-width="48" data-file-height="48" /> <a href="https://commons.wikimedia.org/wiki/Atlas_of_New_Zealand" title="commons:Atlas of New Zealand">Wikimedia Atlas of New Zealand</a>
<img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Gnome-globe.svg/16px-Gnome-globe.svg.png" decoding="async" width="16" height="16" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Gnome-globe.svg/24px-Gnome-globe.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/f/f3/Gnome-globe.svg/32px-Gnome-globe.svg.png 2x" data-file-width="48" data-file-height="48" /> <a href="https://commons.wikimedia.org/wiki/Atlas_of_New_Zealand" title="commons:Atlas of New Zealand">Wikimedia Atlas of New Zealand</a>
</li>
</ul>
</div>

@ -66,7 +66,7 @@
<tbody>
<tr>
<td>
<p><a href="http://fakehost/wiki/File:Wiki_letter_w_cropped.svg"><img alt="[icon]" src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/44px-Wiki_letter_w_cropped.svg.png" decoding="async" width="44" height="31" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/66px-Wiki_letter_w_cropped.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/88px-Wiki_letter_w_cropped.svg.png 2x" data-file-width="44" data-file-height="31" /></a>
<p><a href="http://fakehost/wiki/File:Wiki_letter_w_cropped.svg"><img alt="[icon]" src="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/44px-Wiki_letter_w_cropped.svg.png" decoding="async" width="44" height="31" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/66px-Wiki_letter_w_cropped.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/1/1c/Wiki_letter_w_cropped.svg/88px-Wiki_letter_w_cropped.svg.png 2x" data-file-width="44" data-file-height="31" /></a>
</p>
</td>
<td>

@ -3,6 +3,6 @@
"byline": null,
"dir": "ltr",
"excerpt": "Mozilla is a free-software community, created in 1998 by members of Netscape. The Mozilla community uses, develops, spreads and supports Mozilla products, thereby promoting exclusively free software and open standards, with only minor exceptions.[1] The community is supported institutionally by the Mozilla Foundation and its tax-paying subsidiary, the Mozilla Corporation.[2]",
"readerable": true,
"siteName": null
"siteName": null,
"readerable": true
}

@ -1,10 +1,10 @@
<div id="readability-page-1" class="page">
<div id="mw-content-text" dir="ltr" lang="en">
<div id="mw-content-text" lang="en" dir="ltr">
<table>
<caption>Mozilla</caption>
<tr>
<td colspan="2">
<a href="http://fakehost/wiki/File:Mozilla_dinosaur_head_logo.png"><img alt="Mozilla dinosaur head logo.png" src="http://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Mozilla_dinosaur_head_logo.png/200px-Mozilla_dinosaur_head_logo.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Mozilla_dinosaur_head_logo.png/300px-Mozilla_dinosaur_head_logo.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Mozilla_dinosaur_head_logo.png/400px-Mozilla_dinosaur_head_logo.png 2x" data-file-width="1300" data-file-height="929" width="200" height="143" /></a>
<a href="http://fakehost/wiki/File:Mozilla_dinosaur_head_logo.png"><img alt="Mozilla dinosaur head logo.png" src="http://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Mozilla_dinosaur_head_logo.png/200px-Mozilla_dinosaur_head_logo.png" width="200" height="143" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Mozilla_dinosaur_head_logo.png/300px-Mozilla_dinosaur_head_logo.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/5/5c/Mozilla_dinosaur_head_logo.png/400px-Mozilla_dinosaur_head_logo.png 2x" data-file-width="1300" data-file-height="929" /></a>
</td>
</tr>
<tr>
@ -13,7 +13,7 @@
</tr>
<tr>
<th scope="row">Founded</th>
<td>February 28, 1998<span>; 18 years ago</span>
<td>February&#160;28, 1998<span>; 18 years ago</span>
</td>
</tr>
<tr>
@ -47,7 +47,7 @@
<p>On January 23, 1998, Netscape made two announcements: first, that <a href="http://fakehost/wiki/Netscape_Communicator" title="Netscape Communicator">Netscape Communicator</a> will be free; second, that the source code will also be free.<sup id="cite_ref-3"><a href="#cite_note-3">[3]</a></sup> One day later, <a href="http://fakehost/wiki/Jamie_Zawinski" title="Jamie Zawinski">Jamie Zawinski</a> from Netscape registered <span>mozilla.org</span>.<sup id="cite_ref-4"><a href="#cite_note-4">[4]</a></sup> The project was named Mozilla after the original code name of the <a href="http://fakehost/wiki/Netscape_Navigator" title="Netscape Navigator">Netscape Navigator</a> browser which is a blending of "<a href="http://fakehost/wiki/Mosaic_(web_browser)" title="Mosaic (web browser)">Mosaic</a> and <a href="http://fakehost/wiki/Godzilla" title="Godzilla">Godzilla</a>"<sup id="cite_ref-google_5-0"><a href="#cite_note-google-5">[5]</a></sup> and used to co-ordinate the development of the <a href="http://fakehost/wiki/Mozilla_Application_Suite" title="Mozilla Application Suite">Mozilla Application Suite</a>, the <a href="http://fakehost/wiki/Open_source" title="Open source">open source</a> version of Netscape's internet software, <a href="http://fakehost/wiki/Netscape_Communicator" title="Netscape Communicator">Netscape Communicator</a>.<sup id="cite_ref-Mozilla_Launch_Announcement_6-0"><a href="#cite_note-Mozilla_Launch_Announcement-6">[6]</a></sup><sup id="cite_ref-7"><a href="#cite_note-7">[7]</a></sup> Jamie Zawinski says he came up with the name "Mozilla" at a Netscape staff meeting.<sup id="cite_ref-8"><a href="#cite_note-8">[8]</a></sup><sup id="cite_ref-9"><a href="#cite_note-9">[9]</a></sup> A small group of Netscape employees were tasked with coordination of the new community.</p>
<p>Originally, Mozilla aimed to be a technology provider for companies, such as Netscape, who would commercialize their open source code.<sup id="cite_ref-10"><a href="#cite_note-10">[10]</a></sup> When <a href="http://fakehost/wiki/AOL" title="AOL">AOL</a> (Netscape's parent company) greatly reduced its involvement with Mozilla in July 2003, the <a href="http://fakehost/wiki/Mozilla_Foundation" title="Mozilla Foundation">Mozilla Foundation</a> was designated the legal steward of the project.<sup id="cite_ref-11"><a href="#cite_note-11">[11]</a></sup> Soon after, Mozilla deprecated the Mozilla Suite in favor of creating independent applications for each function, primarily the <a href="http://fakehost/wiki/Firefox" title="Firefox">Firefox</a> web browser and the <a href="http://fakehost/wiki/Mozilla_Thunderbird" title="Mozilla Thunderbird">Thunderbird</a> email client, and moved to supply them directly to the public.<sup id="cite_ref-12"><a href="#cite_note-12">[12]</a></sup></p>
<p>Recently, Mozilla's activities have expanded to include Firefox on mobile platforms (primarily <a href="http://fakehost/wiki/Android_(operating_system)" title="Android (operating system)">Android</a>),<sup id="cite_ref-13"><a href="#cite_note-13">[13]</a></sup> a mobile OS called <a href="http://fakehost/wiki/Firefox_OS" title="Firefox OS">Firefox OS</a>,<sup id="cite_ref-14"><a href="#cite_note-14">[14]</a></sup> a web-based identity system called <a href="http://fakehost/wiki/Mozilla_Persona" title="Mozilla Persona">Mozilla Persona</a> and a marketplace for HTML5 applications.<sup id="cite_ref-15"><a href="#cite_note-15">[15]</a></sup></p>
<p>In a report released in November 2012, Mozilla reported that their total revenue for 2011 was $163 million, which was up 33% from $123 million in 2010. Mozilla noted that roughly 85% of their revenue comes from their contract with Google.<sup id="cite_ref-16"><a href="#cite_note-16">[16]</a></sup></p>
<p>In a report released in November 2012, Mozilla reported that their total revenue for 2011 was $163&#160;million, which was up 33% from $123&#160;million in 2010. Mozilla noted that roughly 85% of their revenue comes from their contract with Google.<sup id="cite_ref-16"><a href="#cite_note-16">[16]</a></sup></p>
<p>At the end of 2013, Mozilla announced a deal with <a href="http://fakehost/wiki/Cisco_Systems" title="Cisco Systems">Cisco Systems</a> whereby Firefox would download and use a Cisco-provided binary build of an open source<sup id="cite_ref-github_17-0"><a href="#cite_note-github-17">[17]</a></sup> <a href="http://fakehost/wiki/Codec" title="Codec">codec</a> to play the <a href="http://fakehost/wiki/Proprietary_format" title="Proprietary format">proprietary</a> <a href="http://fakehost/wiki/H.264" title="H.264">H.264</a> video format.<sup id="cite_ref-gigaom_18-0"><a href="#cite_note-gigaom-18">[18]</a></sup><sup id="cite_ref-techrepublic_19-0"><a href="#cite_note-techrepublic-19">[19]</a></sup> As part of the deal, Cisco would pay any patent licensing fees associated with the binaries that it distributes. Mozilla's CTO, <a href="http://fakehost/wiki/Brendan_Eich" title="Brendan Eich">Brendan Eich</a>, acknowledged that this is "not a complete solution" and isn't "perfect".<sup id="cite_ref-20"><a href="#cite_note-20">[20]</a></sup> An employee in Mozilla's video formats team, writing in an unofficial capacity, justified<sup id="cite_ref-21"><a href="#cite_note-21">[21]</a></sup> it by the need to maintain their large user base, which would be necessary in future battles for truly free video formats.</p>
<p>In December 2013, Mozilla announced funding for the development of non-<a href="http://fakehost/wiki/Free_software" title="Free software">free</a> games<sup id="cite_ref-22"><a href="#cite_note-22">[22]</a></sup> through its Game Creator Challenge. However, even those games that may be released under a non-free software or open source license must be made with open web technologies and Javascript as per the work criteria outlined in the announcement.</p>
<h3><span id="Eich_CEO_promotion_controversy">Eich CEO promotion controversy</span><span><span>[</span><a href="http://fakehost/w/index.php?title=Mozilla&amp;action=edit&amp;section=2" title="Edit section: Eich CEO promotion controversy">edit</a><span>]</span></span>
@ -77,7 +77,7 @@
</h2>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Mozilla_Firefox_logo_2013.svg"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/76/Mozilla_Firefox_logo_2013.svg/220px-Mozilla_Firefox_logo_2013.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/7/76/Mozilla_Firefox_logo_2013.svg/330px-Mozilla_Firefox_logo_2013.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/7/76/Mozilla_Firefox_logo_2013.svg/440px-Mozilla_Firefox_logo_2013.svg.png 2x" data-file-width="352" data-file-height="373" width="220" height="233" /></a></p>
<p><a href="http://fakehost/wiki/File:Mozilla_Firefox_logo_2013.svg"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/7/76/Mozilla_Firefox_logo_2013.svg/220px-Mozilla_Firefox_logo_2013.svg.png" width="220" height="233" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/7/76/Mozilla_Firefox_logo_2013.svg/330px-Mozilla_Firefox_logo_2013.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/7/76/Mozilla_Firefox_logo_2013.svg/440px-Mozilla_Firefox_logo_2013.svg.png 2x" data-file-width="352" data-file-height="373" /></a></p>
</div>
</div>
<h3><span id="Firefox">Firefox</span><span><span>[</span><a href="http://fakehost/w/index.php?title=Mozilla&amp;action=edit&amp;section=6" title="Edit section: Firefox">edit</a><span>]</span></span>
@ -102,7 +102,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:SeaMonkey.png"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/0/0d/SeaMonkey.png" data-file-width="128" data-file-height="128" width="128" height="128" /></a></p>
<p><a href="http://fakehost/wiki/File:SeaMonkey.png"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/0/0d/SeaMonkey.png" width="128" height="128" data-file-width="128" data-file-height="128" /></a></p>
</div>
</div>
<p><a href="http://fakehost/wiki/SeaMonkey" title="SeaMonkey">SeaMonkey</a> (formerly the Mozilla Application Suite) is a free and open source cross platform suite of Internet software components including a web browser component, a client for sending and receiving email and <a href="http://fakehost/wiki/USENET" title="USENET">USENET</a> newsgroup messages, an HTML editor (<a href="http://fakehost/wiki/Mozilla_Composer" title="Mozilla Composer">Mozilla Composer</a>) and the <a href="http://fakehost/wiki/ChatZilla" title="ChatZilla">ChatZilla</a> IRC client.</p>
@ -111,7 +111,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Buggie.svg"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Buggie.svg/220px-Buggie.svg.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Buggie.svg/330px-Buggie.svg.png 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Buggie.svg/440px-Buggie.svg.png 2x" data-file-width="95" data-file-height="125" width="220" height="289" /></a></p>
<p><a href="http://fakehost/wiki/File:Buggie.svg"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Buggie.svg/220px-Buggie.svg.png" width="220" height="289" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Buggie.svg/330px-Buggie.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/d/d7/Buggie.svg/440px-Buggie.svg.png 2x" data-file-width="95" data-file-height="125" /></a></p>
</div>
</div>
<p><a href="http://fakehost/wiki/Bugzilla" title="Bugzilla">Bugzilla</a> is a <a href="http://fakehost/wiki/World_Wide_Web" title="World Wide Web">web</a>-based general-purpose <a href="http://fakehost/wiki/Bug_tracking_system" title="Bug tracking system">bug tracking system</a>, which was released as <a href="http://fakehost/wiki/Open_source_software" title="Open source software">open source software</a> by <a href="http://fakehost/wiki/Netscape_Communications" title="Netscape Communications">Netscape Communications</a> in 1998 along with the rest of the Mozilla codebase, and is currently stewarded by Mozilla. It has been adopted by a variety of organizations for use as a <a href="http://fakehost/wiki/Bug_tracking_system" title="Bug tracking system">bug tracking system</a> for both <a href="http://fakehost/wiki/Free_and_open_source_software" title="Free and open source software">free and open source software</a> and <a href="http://fakehost/wiki/Proprietary_software" title="Proprietary software">proprietary</a> projects and products, including the <a href="http://fakehost/wiki/The_Mozilla_Foundation" title="The Mozilla Foundation">Mozilla Foundation</a>, the <a href="http://fakehost/wiki/Linux_kernel" title="Linux kernel">Linux kernel</a>, <a href="http://fakehost/wiki/GNOME" title="GNOME">GNOME</a>, <a href="http://fakehost/wiki/KDE" title="KDE">KDE</a>, <a href="http://fakehost/wiki/Red_Hat" title="Red Hat">Red Hat</a>, <a href="http://fakehost/wiki/Novell" title="Novell">Novell</a>, <a href="http://fakehost/wiki/Eclipse_(software)" title="Eclipse (software)">Eclipse</a> and <a href="http://fakehost/wiki/LibreOffice" title="LibreOffice">LibreOffice</a>.<sup id="cite_ref-59"><a href="#cite_note-59">[59]</a></sup></p>
@ -169,7 +169,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:London_Mozilla_Workspace.jpg"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/London_Mozilla_Workspace.jpg/220px-London_Mozilla_Workspace.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/2/2a/London_Mozilla_Workspace.jpg/330px-London_Mozilla_Workspace.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/2/2a/London_Mozilla_Workspace.jpg/440px-London_Mozilla_Workspace.jpg 2x" data-file-width="2500" data-file-height="1656" width="220" height="146" /></a></p>
<p><a href="http://fakehost/wiki/File:London_Mozilla_Workspace.jpg"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/London_Mozilla_Workspace.jpg/220px-London_Mozilla_Workspace.jpg" width="220" height="146" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/London_Mozilla_Workspace.jpg/330px-London_Mozilla_Workspace.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/2/2a/London_Mozilla_Workspace.jpg/440px-London_Mozilla_Workspace.jpg 2x" data-file-width="2500" data-file-height="1656" /></a></p>
</div>
</div>
<p>There are a number of sub-communities that exist based on their geographical locations, where contributors near each other work together on particular activities, such as localization, marketing, PR and user support.</p>
@ -177,7 +177,7 @@
</h3>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Mozilla_Reps.png"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Mozilla_Reps.png/220px-Mozilla_Reps.png" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Mozilla_Reps.png/330px-Mozilla_Reps.png 1.5x, //upload.wikimedia.org/wikipedia/commons/0/0b/Mozilla_Reps.png 2x" data-file-width="400" data-file-height="183" width="220" height="101" /></a></p>
<p><a href="http://fakehost/wiki/File:Mozilla_Reps.png"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Mozilla_Reps.png/220px-Mozilla_Reps.png" width="220" height="101" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/0/0b/Mozilla_Reps.png/330px-Mozilla_Reps.png 1.5x, http://upload.wikimedia.org/wikipedia/commons/0/0b/Mozilla_Reps.png 2x" data-file-width="400" data-file-height="183" /></a></p>
</div>
</div>
<p>The Mozilla Reps program aims to empower and support volunteer Mozillians who want to become official representatives of Mozilla in their region/locale.</p>
@ -197,10 +197,9 @@
</h4>
<div>
<div>
<p><a href="http://fakehost/wiki/File:Fireside_Chat,_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg/220px-Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg" srcset="//upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg/330px-Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg 1.5x, //upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg/440px-Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg 2x" data-file-width="1280" data-file-height="854" width="220" height="147" /></a></p>
<p><a href="http://fakehost/wiki/File:Fireside_Chat,_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg"><img alt="" src="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg/220px-Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg" width="220" height="147" srcset="http://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg/330px-Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg 1.5x, http://upload.wikimedia.org/wikipedia/commons/thumb/e/e4/Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg/440px-Fireside_Chat%2C_Knight%27s_Michael_Maness_and_Dan_Sinker_-_Flickr_-_Knight_Foundation.jpg 2x" data-file-width="1280" data-file-height="854" /></a></p>
<div>
<p>
Speakers from the <a href="http://fakehost/wiki/Knight_Foundation" title="Knight Foundation">Knight Foundation</a> discuss the future of news at the 2011 Mozilla Festival in London.</p>
<p> Speakers from the <a href="http://fakehost/wiki/Knight_Foundation" title="Knight Foundation">Knight Foundation</a> discuss the future of news at the 2011 Mozilla Festival in London.</p>
</div>
</div>
</div>
@ -234,7 +233,7 @@
<li id="cite_note-4"><span><b><a href="#cite_ref-4">^</a></b></span> <span><cite><a rel="nofollow" href="https://whois.domaintools.com/mozilla.org">"Mozilla.org WHOIS, DNS, &amp; Domain Info"</a>. <i>DomainTools</i><span>. Retrieved <span>1 May</span> 2016</span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.atitle=Mozilla.org+WHOIS%2C+DNS%2C+%26+Domain+Info&amp;rft.genre=unknown&amp;rft_id=https%3A%2F%2Fwhois.domaintools.com%2Fmozilla.org&amp;rft.jtitle=DomainTools&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span>
</span>
</li>
<li id="cite_note-google-5"><span><b><a href="#cite_ref-google_5-0">^</a></b></span> <span><cite>Payment, S. (2007). <a rel="nofollow" href="http://books.google.co.uk/books?id=zyIvOn7sKCsC"><i>Marc Andreessen and Jim Clark: The Founders of Netscape</i></a>. Rosen Publishing Group. <a href="http://fakehost/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a> <a href="http://fakehost/wiki/Special:BookSources/9781404207196" title="Special:BookSources/9781404207196">9781404207196</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.au=Payment%2C+S.&amp;rft.btitle=Marc+Andreessen+and+Jim+Clark%3A+The+Founders+of+Netscape&amp;rft.date=2007&amp;rft.genre=book&amp;rft_id=%2F%2Fbooks.google.co.uk%2Fbooks%3Fid%3DzyIvOn7sKCsC&amp;rft.isbn=9781404207196&amp;rft.pub=Rosen+Publishing+Group&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span>
<li id="cite_note-google-5"><span><b><a href="#cite_ref-google_5-0">^</a></b></span> <span><cite>Payment, S. (2007). <a rel="nofollow" href="http://books.google.co.uk/books?id=zyIvOn7sKCsC"><i>Marc Andreessen and Jim Clark: The Founders of Netscape</i></a>. Rosen Publishing Group. <a href="http://fakehost/wiki/International_Standard_Book_Number" title="International Standard Book Number">ISBN</a>&#160;<a href="http://fakehost/wiki/Special:BookSources/9781404207196" title="Special:BookSources/9781404207196">9781404207196</a>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.au=Payment%2C+S.&amp;rft.btitle=Marc+Andreessen+and+Jim+Clark%3A+The+Founders+of+Netscape&amp;rft.date=2007&amp;rft.genre=book&amp;rft_id=%2F%2Fbooks.google.co.uk%2Fbooks%3Fid%3DzyIvOn7sKCsC&amp;rft.isbn=9781404207196&amp;rft.pub=Rosen+Publishing+Group&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span>
</span>
</li>
<li id="cite_note-Mozilla_Launch_Announcement-6"><span><b><a href="#cite_ref-Mozilla_Launch_Announcement_6-0">^</a></b></span> <span><cite><a rel="nofollow" href="https://web.archive.org/web/20021004080737/wp.netscape.com/newsref/pr/newsrelease577.html">"Netscape Announces mozilla.org, a Dedicated Team and Web Site Supporting Development of Free Client Source Code"</a>. Netscape. Archived from the original on October 4, 2002<span>. Retrieved <span>2012-08-21</span></span>.</cite><span title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3AMozilla&amp;rft.btitle=Netscape+Announces+mozilla.org%2C+a+Dedicated+Team+and+Web+Site+Supporting+Development+of+Free+Client+Source+Code&amp;rft.genre=unknown&amp;rft_id=%2F%2Fwp.netscape.com%2Fnewsref%2Fpr%2Fnewsrelease577.html&amp;rft.pub=Netscape&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span> </span>
@ -443,7 +442,7 @@
<table role="presentation">
<tr>
<td>
<a href="http://fakehost/wiki/File:Commons-logo.svg"><img alt="" src="http://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png" srcset="//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/45px-Commons-logo.svg.png 1.5x, //upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/59px-Commons-logo.svg.png 2x" data-file-width="1024" data-file-height="1376" width="30" height="40" /></a>
<a href="http://fakehost/wiki/File:Commons-logo.svg"><img alt="" src="http://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png" width="30" height="40" srcset="http://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/45px-Commons-logo.svg.png 1.5x, http://upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/59px-Commons-logo.svg.png 2x" data-file-width="1024" data-file-height="1376" /></a>
</td>
<td>Wikimedia Commons has media related to <i><b><a href="https://commons.wikimedia.org/wiki/Category:Mozilla" title="commons:Category:Mozilla">Mozilla</a></b></i>.</td>
</tr>
@ -453,7 +452,5 @@
<li><a rel="nofollow" href="https://wiki.mozilla.org/">Mozilla Wiki</a>(<a href="https://wiki.mozilla.org/Timeline" title="mozillawiki:Timeline">Major time line of community development</a>)</li>
<li><a rel="nofollow" href="http://hg.mozilla.org/">Mozilla Mercurial Repository</a></li>
</ul>
<!-- Saved in parser cache with key enwiki:pcache:idhash:36754915-0!*!0!!en!4!* and timestamp 20161028065633 and revision id 746574460
-->
</div>
</div>
Loading…
Cancel
Save