<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://vanishingpointwiki.com/w/api.php?action=feedcontributions&amp;user=BrianEnigma&amp;feedformat=atom</id>
	<title>Vanishing Point Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://vanishingpointwiki.com/w/api.php?action=feedcontributions&amp;user=BrianEnigma&amp;feedformat=atom"/>
	<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/wiki/Special:Contributions/BrianEnigma"/>
	<updated>2024-05-02T02:27:40Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.2</generator>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=MediaWiki:Spoiler&amp;diff=3683</id>
		<title>MediaWiki:Spoiler</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=MediaWiki:Spoiler&amp;diff=3683"/>
		<updated>2008-05-13T22:58:07Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Overview==&lt;br /&gt;
Several people have asked [[User:BrianEnigma|me]] about the spoiler extension, so I figured I might as well release it to the public.  The JavaScript and CSS are based around the [http://perplexcitycardcatalog.com/contest/invisiclues.html Perplex City Card Catalog invisiclues] I did earlier in the year.  The MediaWiki plugin code is based on the [http://meta.wikimedia.org/wiki/Extending_wiki_markup Extending Wiki Markup] article at MediaWiki.&lt;br /&gt;
&lt;br /&gt;
Here is an example of the script in action:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;spoiler&amp;gt;&lt;br /&gt;
The quick brown fox jumps over the lazy dog.  How razorback-jumping frogs can level six piqued gymnasts!  Back in June we delivered oxygen equipment of the same size.  A quick movement of the enemy will jeopardize six gunboats.  All questions asked by five watch experts amazed the judge.  Crazy Fredericka bought many very exquisite opal jewels. &lt;br /&gt;
Sixty zippers were quickly picked from the woven jute bag.  John Prady, give me a black walnut box of quite small size.  Big July earthquakes confound zany experimental vow.  Six big devils from Japan quickly forgot how to waltz.  My girl wove six dozen plaid jackets before she quit.  Foxy parsons quiz &amp;amp; cajole the lovably dim wiki-girl.  Cozy lummox gives smart squid who asks for job pen.  Adjusting quiver and bow, Zompyc killed the fox.  My faxed joke won a pager in the cable TV quiz show.  Woven silk pyjamas exchanged for blue quartz.  Brawny gods just flocked up to quiz and vex him.  A wizard’s job is to vex chumps quietly in fog.&lt;br /&gt;
&amp;lt;/spoiler&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Bugs==&lt;br /&gt;
Keep in mind that only limited testing has been done on this extension.  There is certainly an issue in the rare case that a browser supports CSS but not JavaScript: the spoilerized block starts out with the CSS &amp;quot;visibility:hidden&amp;quot; attribute with no way to switch it to visible.  &lt;br /&gt;
&lt;br /&gt;
If you find any bugs (or if you have fixes for bugs you&#039;ve found--which is what I would much prefer), drop me a line at brian@{this domain name}.&lt;br /&gt;
&lt;br /&gt;
==TODO==&lt;br /&gt;
* Spoilerized text should probably start out as being visible, with on-load JavaScript to hide it immediately.  This would help in the case where a browser supports CSS but not JavaScript (e.g. the NoScript Firefox extension)&lt;br /&gt;
* There should probably be &amp;quot;media=print&amp;quot; CSS styles defined so that spoilerized text will be visible on printouts.&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
To install, simply copy spoiler.php (the code is below) to your mediawiki /extensions/ folder and add the following line to your LocalSettings.php:&lt;br /&gt;
&lt;br /&gt;
 require_once(&amp;quot;$IP/extensions/spoiler.php&amp;quot;);&lt;br /&gt;
&lt;br /&gt;
This is the content of the spoiler.php file:&lt;br /&gt;
&amp;lt;pre&amp;gt;&amp;lt;?php&lt;br /&gt;
# WikiMedia spoiler extension&lt;br /&gt;
# &amp;lt;spoiler&amp;gt; some text &amp;lt;/spoiler&amp;gt;&lt;br /&gt;
# the function registered by the extension hides the text between the&lt;br /&gt;
# tags behind a JavaScript spoiler block.&lt;br /&gt;
#&lt;br /&gt;
# (C) Copyright 2006, Brian Enigma &amp;lt;brian@netninja.com&amp;gt;&lt;br /&gt;
# This work is licensed under a Creative Commons Attribution-Noncommercial-Share &lt;br /&gt;
# Alike 2.5 License.  Some rights reserved.&lt;br /&gt;
# http://creativecommons.org/licenses/by-nc-sa/2.5/&lt;br /&gt;
&lt;br /&gt;
$wgExtensionFunctions[] = &amp;quot;wfSpoilerExtension&amp;quot;;&lt;br /&gt;
# $wgHooks[&#039;ParserBeforeTidy&#039;][] = &#039;spoilerParserHook&#039; ;&lt;br /&gt;
$wgHooks[&#039;OutputPageBeforeHTML&#039;][] = &#039;spoilerParserHook&#039; ;&lt;br /&gt;
&lt;br /&gt;
function wfSpoilerExtension() {&lt;br /&gt;
    global $wgParser;&lt;br /&gt;
    # register the extension with the WikiText parser&lt;br /&gt;
    # the first parameter is the name of the new tag.&lt;br /&gt;
    # In this case it defines the tag &amp;lt;example&amp;gt; ... &amp;lt;/example&amp;gt;&lt;br /&gt;
    # the second parameter is the callback function for&lt;br /&gt;
    # processing the text between the tags&lt;br /&gt;
    $wgParser-&amp;gt;setHook( &amp;quot;spoiler&amp;quot;, &amp;quot;renderSpoiler&amp;quot; );&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function wfSpoilerJavaScript() {&lt;br /&gt;
return  &amp;quot;&amp;lt;script language=\&amp;quot;JavaScript\&amp;quot;&amp;gt;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;\n&amp;quot; . &lt;br /&gt;
        &amp;quot;function getStyleObject(objectId) {\n&amp;quot; .&lt;br /&gt;
        &amp;quot;    // checkW3C DOM, then MSIE 4, then NN 4.\n&amp;quot; .&lt;br /&gt;
        &amp;quot;    //\n&amp;quot; .&lt;br /&gt;
        &amp;quot;    if(document.getElementById) {\n&amp;quot; .&lt;br /&gt;
        &amp;quot;      if (document.getElementById(objectId)) {\n&amp;quot; .&lt;br /&gt;
        &amp;quot;	     return document.getElementById(objectId).style;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;      }\n&amp;quot; . &lt;br /&gt;
        &amp;quot;    } else if (document.all) {\n&amp;quot; .&lt;br /&gt;
        &amp;quot;      if (document.all(objectId)) {\n&amp;quot; .&lt;br /&gt;
        &amp;quot;	     return document.all(objectId).style;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;      }\n&amp;quot; . &lt;br /&gt;
        &amp;quot;    } else if (document.layers) { \n&amp;quot; . &lt;br /&gt;
        &amp;quot;      if (document.layers[objectId]) { \n&amp;quot; .&lt;br /&gt;
        &amp;quot;	     return document.layers[objectId];\n&amp;quot; .&lt;br /&gt;
        &amp;quot;      }\n&amp;quot; . &lt;br /&gt;
        &amp;quot;    } else {\n&amp;quot; .&lt;br /&gt;
        &amp;quot;	   return false;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;    }\n&amp;quot; .&lt;br /&gt;
        &amp;quot;}\n&amp;quot; .&lt;br /&gt;
        &amp;quot;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;function toggleObjectVisibility(objectId) {\n&amp;quot; .&lt;br /&gt;
        &amp;quot;    // first get the object&#039;s stylesheet\n&amp;quot; .&lt;br /&gt;
        &amp;quot;    var styleObject = getStyleObject(objectId);\n&amp;quot; .&lt;br /&gt;
        &amp;quot;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;    // then if we find a stylesheet, set its visibility\n&amp;quot; .&lt;br /&gt;
        &amp;quot;    // as requested\n&amp;quot; .&lt;br /&gt;
        &amp;quot;    //\n&amp;quot; .&lt;br /&gt;
        &amp;quot;    if (styleObject) {\n&amp;quot; .&lt;br /&gt;
        &amp;quot;        if (styleObject.visibility == &#039;hidden&#039;) {\n&amp;quot; .&lt;br /&gt;
        &amp;quot;            styleObject.visibility = &#039;visible&#039;;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;            styleObject.position = &#039;relative&#039;;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;        } else {\n&amp;quot; .&lt;br /&gt;
        &amp;quot;            styleObject.visibility = &#039;hidden&#039;;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;            styleObject.position = &#039;absolute&#039;;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;        }\n&amp;quot; .&lt;br /&gt;
        &amp;quot;        return true;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;    } else {\n&amp;quot; .&lt;br /&gt;
        &amp;quot;        return false;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;    }\n&amp;quot; .&lt;br /&gt;
        &amp;quot;}\n&amp;quot; .&lt;br /&gt;
        &amp;quot;&amp;lt;/script&amp;gt;\n&amp;quot; .&lt;br /&gt;
        &amp;quot;&amp;lt;style type=\&amp;quot;text/css\&amp;quot;&amp;gt;&amp;lt;!--\n&amp;quot; .&lt;br /&gt;
        &amp;quot;div.spoiler {border: dashed red 3px; background-color: #ffdddd; padding:3px;}\n&amp;quot; .&lt;br /&gt;
        &amp;quot;span.spoilerHeader {font-size:135%; color:#ff0000;}\n&amp;quot; . &lt;br /&gt;
        &amp;quot;a.spoilerLink {background-color:#ff0000; color:#ffff00; font-weight:bold; padding:4px 4px 2px 4px; border:solid black 1px;}\n&amp;quot; . &lt;br /&gt;
        &amp;quot;--&amp;gt;&amp;lt;/style&amp;gt;\n&amp;quot;;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function spoilerParserHook( &amp;amp;$parser , &amp;amp;$text ) { &lt;br /&gt;
    $text = wfSpoilerJavaScript() . $text;&lt;br /&gt;
    return true;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
function wfMakeSpoilerId() {&lt;br /&gt;
    $result = &amp;quot;&amp;quot;;&lt;br /&gt;
    for ($i=0; $i&amp;lt;20; $i++)&lt;br /&gt;
        $result .= chr(rand(ord(&#039;A&#039;), ord(&#039;Z&#039;)));&lt;br /&gt;
    return $result;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
# The callback function for converting the input text to HTML output&lt;br /&gt;
function renderSpoiler( $input, $argv, &amp;amp;$parser ) {&lt;br /&gt;
    # $argv is an array containing any arguments passed to the&lt;br /&gt;
    # extension like &amp;lt;example argument=&amp;quot;foo&amp;quot; bar&amp;gt;..&lt;br /&gt;
    # Put this on the sandbox page:  (works in MediaWiki 1.5.5)&lt;br /&gt;
    #   &amp;lt;example argument=&amp;quot;foo&amp;quot; argument2=&amp;quot;bar&amp;quot;&amp;gt;Testing text **example** in between the new tags&amp;lt;/example&amp;gt;&lt;br /&gt;
    $localParser = new Parser();&lt;br /&gt;
    $outputObj = $localParser-&amp;gt;parse($input, $parser-&amp;gt;mTitle, $parser-&amp;gt;mOptions);&lt;br /&gt;
    $spoilerId = wfMakeSpoilerId();&lt;br /&gt;
    $output  = &amp;quot;&amp;lt;a href=\&amp;quot;#\&amp;quot;onclick=\&amp;quot;toggleObjectVisibility(&#039;&amp;quot; . $spoilerId . &amp;quot;&#039;); return false;\&amp;quot; class=\&amp;quot;spoilerLink\&amp;quot;&amp;gt;&amp;quot;;&lt;br /&gt;
    $output .= &amp;quot;Click to reveal Spoiler&amp;lt;/a&amp;gt;\n&amp;quot;;&lt;br /&gt;
    $output .= &amp;quot;&amp;lt;div id=\&amp;quot;&amp;quot; . $spoilerId . &amp;quot;\&amp;quot; class=\&amp;quot;spoiler\&amp;quot; style=\&amp;quot;visibility: hidden; position:absolute;\&amp;quot;&amp;gt;\n&amp;quot;;&lt;br /&gt;
    $output .= &amp;quot;&amp;lt;span class=\&amp;quot;spoilerHeader\&amp;quot;&amp;gt;SPOILER&amp;lt;/span&amp;gt;&amp;lt;br /&amp;gt;\n&amp;quot;;&lt;br /&gt;
    $output .= $outputObj-&amp;gt;getText() . &amp;quot;\n&amp;quot;;&lt;br /&gt;
    #$output .= $input . &amp;quot;\n&amp;quot;;&lt;br /&gt;
    $output .= &amp;quot;&amp;lt;/div&amp;gt;\n&amp;quot;;&lt;br /&gt;
    # $output .= &amp;quot;Text passed into example extension: &amp;lt;br/&amp;gt;$input&amp;quot;;&lt;br /&gt;
    # $output .= &amp;quot; &amp;lt;br/&amp;gt; and the value for the arg &#039;argument&#039; is &amp;quot; . $argv[&amp;quot;argument&amp;quot;];&lt;br /&gt;
    # $output .= &amp;quot; &amp;lt;br/&amp;gt; and the value for the arg &#039;argument2&#039; is: &amp;quot; . $argv[&amp;quot;argument2&amp;quot;];&lt;br /&gt;
    return $output;&lt;br /&gt;
}&lt;br /&gt;
?&amp;gt;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3682</id>
		<title>Meta:Spam Blacklist</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3682"/>
		<updated>2007-08-30T15:07:57Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; #&amp;lt;!-- leave this line exactly as it is --&amp;gt; &amp;lt;pre&amp;gt; &lt;br /&gt;
#&lt;br /&gt;
# In simple terms:&lt;br /&gt;
#    * Everything from a &amp;quot;#&amp;quot; character to the end of the line is a comment&lt;br /&gt;
#    * Every non-blank line is a regex fragment which will only match inside URLs&lt;br /&gt;
#&lt;br /&gt;
# Internally, a regex is formed which looks like this:&lt;br /&gt;
#&lt;br /&gt;
#    !http://[a-z0-9\-.]*(line 1|line 2|line 3|....)!Si&lt;br /&gt;
#&lt;br /&gt;
# A few notes about this format. It&#039;s not necessary to add www to the start of&lt;br /&gt;
# hostnames, the regex is designed to match any subdomain. Don&#039;t add patterns&lt;br /&gt;
# to your file which may run off the end of the URL, e.g. anything containing &lt;br /&gt;
# &amp;quot;.*&amp;quot;. Unlike in some similar systems, the line-end metacharacter &amp;quot;$&amp;quot; will not&lt;br /&gt;
# assert the end of the hostname, it&#039;ll assert the end of the page.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
# Test blacklist&lt;br /&gt;
example\.com&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-10-16&lt;br /&gt;
casino-games&lt;br /&gt;
adipex&lt;br /&gt;
tramadol&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-12-22 because of User 1166728278&lt;br /&gt;
dgo5d.info&lt;br /&gt;
ringtone&lt;br /&gt;
&lt;br /&gt;
# Spammer URL added 2007-02-06 because of user Sadfsa&lt;br /&gt;
pornolicios.info&lt;br /&gt;
&lt;br /&gt;
# More spam terms, added 2007-06-10&lt;br /&gt;
diazepam&lt;br /&gt;
xenical&lt;br /&gt;
ringtones&lt;br /&gt;
&lt;br /&gt;
# Pages that have been hacked (the spam keywords aren&#039;t in the URL, so blacklist isn&#039;t effective against the link)&lt;br /&gt;
stanford.edu/seminar&lt;br /&gt;
sunysb.edu&lt;br /&gt;
bc.edu&lt;br /&gt;
sc.edu&lt;br /&gt;
ku.edu&lt;br /&gt;
usc.edu&lt;br /&gt;
msoe.edu&lt;br /&gt;
&lt;br /&gt;
# 2007-07-10&lt;br /&gt;
worldcrossing.com&lt;br /&gt;
ecsu.edu&lt;br /&gt;
ufl.edu&lt;br /&gt;
mit.edu&lt;br /&gt;
&lt;br /&gt;
# More spammy URLs from 2007-08-17&lt;br /&gt;
helmed.info&lt;br /&gt;
nobinters.org&lt;br /&gt;
davte.info&lt;br /&gt;
amohseni.info&lt;br /&gt;
psisemiya.com&lt;br /&gt;
ashythro.info&lt;br /&gt;
kinuia.cn&lt;br /&gt;
&lt;br /&gt;
# More on 2007-08-19&lt;br /&gt;
ifrance.com&lt;br /&gt;
&lt;br /&gt;
# 2007-08-22&lt;br /&gt;
rigour.info&lt;br /&gt;
110mb.com&lt;br /&gt;
&lt;br /&gt;
#2007-08-30&lt;br /&gt;
sneck.info&lt;br /&gt;
primonona.info&lt;br /&gt;
funkall.us&lt;br /&gt;
veggis.org&lt;br /&gt;
klohy.info&lt;br /&gt;
budget7i.info&lt;br /&gt;
svike.info&lt;br /&gt;
manoke.cn&lt;br /&gt;
xionny.cn&lt;br /&gt;
wedner.info&lt;br /&gt;
soler.net.cn&lt;br /&gt;
polex.com.cn&lt;br /&gt;
&lt;br /&gt;
 #&amp;lt;/pre&amp;gt; &amp;lt;!-- leave this line exactly as it is --&amp;gt;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=User:BrianEnigma&amp;diff=3681</id>
		<title>User:BrianEnigma</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=User:BrianEnigma&amp;diff=3681"/>
		<updated>2007-08-19T20:09:36Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by QmfQm4 (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi!  I run this site and http://PerplexCityWiki.com (among others.)  If you want to get in touch with me, my email is brian at vanishingpointwiki.com.&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3680</id>
		<title>Meta:Spam Blacklist</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3680"/>
		<updated>2007-08-19T20:09:12Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; #&amp;lt;!-- leave this line exactly as it is --&amp;gt; &amp;lt;pre&amp;gt; &lt;br /&gt;
#&lt;br /&gt;
# In simple terms:&lt;br /&gt;
#    * Everything from a &amp;quot;#&amp;quot; character to the end of the line is a comment&lt;br /&gt;
#    * Every non-blank line is a regex fragment which will only match inside URLs&lt;br /&gt;
#&lt;br /&gt;
# Internally, a regex is formed which looks like this:&lt;br /&gt;
#&lt;br /&gt;
#    !http://[a-z0-9\-.]*(line 1|line 2|line 3|....)!Si&lt;br /&gt;
#&lt;br /&gt;
# A few notes about this format. It&#039;s not necessary to add www to the start of&lt;br /&gt;
# hostnames, the regex is designed to match any subdomain. Don&#039;t add patterns&lt;br /&gt;
# to your file which may run off the end of the URL, e.g. anything containing &lt;br /&gt;
# &amp;quot;.*&amp;quot;. Unlike in some similar systems, the line-end metacharacter &amp;quot;$&amp;quot; will not&lt;br /&gt;
# assert the end of the hostname, it&#039;ll assert the end of the page.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
# Test blacklist&lt;br /&gt;
example\.com&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-10-16&lt;br /&gt;
casino-games&lt;br /&gt;
adipex&lt;br /&gt;
tramadol&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-12-22 because of User 1166728278&lt;br /&gt;
dgo5d.info&lt;br /&gt;
ringtone&lt;br /&gt;
&lt;br /&gt;
# Spammer URL added 2007-02-06 because of user Sadfsa&lt;br /&gt;
pornolicios.info&lt;br /&gt;
&lt;br /&gt;
# More spam terms, added 2007-06-10&lt;br /&gt;
diazepam&lt;br /&gt;
xenical&lt;br /&gt;
ringtones&lt;br /&gt;
&lt;br /&gt;
# Pages that have been hacked (the spam keywords aren&#039;t in the URL, so blacklist isn&#039;t effective against the link)&lt;br /&gt;
stanford.edu/seminar&lt;br /&gt;
sunysb.edu&lt;br /&gt;
bc.edu&lt;br /&gt;
sc.edu&lt;br /&gt;
ku.edu&lt;br /&gt;
usc.edu&lt;br /&gt;
msoe.edu&lt;br /&gt;
&lt;br /&gt;
# 2007-07-10&lt;br /&gt;
worldcrossing.com&lt;br /&gt;
ecsu.edu&lt;br /&gt;
ufl.edu&lt;br /&gt;
mit.edu&lt;br /&gt;
&lt;br /&gt;
# More spammy URLs from 2007-08-17&lt;br /&gt;
helmed.info&lt;br /&gt;
nobinters.org&lt;br /&gt;
davte.info&lt;br /&gt;
amohseni.info&lt;br /&gt;
psisemiya.com&lt;br /&gt;
ashythro.info&lt;br /&gt;
kinuia.cn&lt;br /&gt;
&lt;br /&gt;
# More on 2007-08-19&lt;br /&gt;
ifrance.com&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 #&amp;lt;/pre&amp;gt; &amp;lt;!-- leave this line exactly as it is --&amp;gt;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=History_Lesson&amp;diff=3678</id>
		<title>History Lesson</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=History_Lesson&amp;diff=3678"/>
		<updated>2007-08-17T16:55:14Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by PadU2x (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:History Lesson.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:History Lesson 1.png]]&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Clues [[Projections|projected]] on The Brandenburg Gate, Berlin.&amp;lt;br&amp;gt; &lt;br /&gt;
[[Image:Projections_Berlin.jpg]]&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;spoiler&amp;gt;&lt;br /&gt;
The images you see all represent firsts, ie. first printing press, first man in space, etc.&lt;br /&gt;
&lt;br /&gt;
The notebook spaces do not fit the names, but the locations specific to those activities do. &lt;br /&gt;
&lt;br /&gt;
The notebook spaces are filled as follows:&lt;br /&gt;
&lt;br /&gt;
1. First solo transatlantic flight by Charles Lindbergh (mid-right picture) ended at Paris, &#039;&#039;&#039;F&#039;&#039;&#039;rance&lt;br /&gt;
&lt;br /&gt;
2. First architectural arches (Brandenburg Gate event picture) are often associated with Babylon in modern day Iraq perhaps ------,&#039;&#039;&#039;IR&#039;&#039;&#039;--&lt;br /&gt;
&amp;lt;&amp;lt; EDIT &amp;gt;&amp;gt; Possible answer: I came across this [http://www.eartharchitecture.org/ website].  Down about 3/4 of the way is a reference to [http://en.wikipedia.org/wiki/Ctesiphon Ctesiphon Arch] in Iraq.  Names that reference it are Tisfun, Madain (Mada&#039;in), and Kasfia.  This would be almost enough answer to me.&lt;br /&gt;
&lt;br /&gt;
3. First cave paintings (bottom right picture) found in La&#039;&#039;&#039;S&#039;&#039;&#039;caux, France&lt;br /&gt;
&lt;br /&gt;
4. (unknown) Should be associated with planets or solar system (Brandenburg Gate event picture) and fit the form ------,-------&#039;&#039;&#039;TA&#039;&#039;&#039;- (could be Kazakhstan, Kyrgyzstan, Tajikistan or Uzbekistan)&lt;br /&gt;
&amp;lt;&amp;lt; EDIT 24 JAN 2007 - Answer is Tyuratam, Kazakhs&#039;&#039;&#039;TA&#039;&#039;&#039;n.  Tyuratam is another name for [http://en.wikipedia.org/wiki/Baikonur_Cosmodrome Baikonur].  This should eliminate #8&#039;s original clue below. #8 is associated with solar system / Sun &amp;gt;&amp;gt;&lt;br /&gt;
&amp;lt;&amp;lt; EDIT 27 JAN 2007 - Answer is more likely Engels, Kazakhs&#039;&#039;&#039;TA&#039;&#039;&#039;n, the place where Gagarin landed, since this more precisely fits the blanks in the puzzle &amp;gt;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
5. First airplane, Wright Flyer (top right picture) flew in Kitty Hawk, No&#039;&#039;&#039;R&#039;&#039;&#039;th Car&#039;&#039;&#039;O&#039;&#039;&#039;lina&lt;br /&gt;
&lt;br /&gt;
6. First constitution or democracy was established when King John was forced to sign the Magna Carta (bottom-mid picture) at R&#039;&#039;&#039;U&#039;&#039;&#039;nnymede, E&#039;&#039;&#039;N&#039;&#039;&#039;glan&#039;&#039;&#039;D&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
7. First printing press (bottom left picture) was built by Johannes Gutenberg in Mainz, G&#039;&#039;&#039;E&#039;&#039;&#039;rm&#039;&#039;&#039;A&#039;&#039;&#039;ny&lt;br /&gt;
&lt;br /&gt;
8. First man in space was Yuri Gagarin (top center picture) launched from Baikon&#039;&#039;&#039;U&#039;&#039;&#039;r, Russia (Note: this should be an &#039;R&#039;) [?? Baikonur is in Kazakhstan or USSR, not Russia]&lt;br /&gt;
&amp;lt;&amp;lt; EDIT 24 JAN 2007 - Answer seems to be Frombo&#039;&#039;&#039;R&#039;&#039;&#039;k, Poland.  This is where [http://en.wikipedia.org/wiki/Nicholas_Copernicus Nicolas Copernicus], &amp;quot;the astronomer who formulated the first modern heliocentric theory of the solar system&amp;quot;, died. &amp;gt;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
9. First major cosmic revision since Newton was Albert Einstein (bottom left picture) who lived in Bern, Swi&#039;&#039;&#039;T&#039;&#039;&#039;zerland when he published his most important work&lt;br /&gt;
&lt;br /&gt;
10. First assembly line was the Ford Model T factory (top left picture) built in Detroit, Mic&#039;&#039;&#039;H&#039;&#039;&#039;igan&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that 8 of the entries come from in-game picture while the last 2 come from the live event pictures from Berlin.&lt;br /&gt;
&lt;br /&gt;
If you fill in the blanks, you get FIRST AROUND EARTH. The answer is &#039;&#039;&#039;MAGELLAN&#039;&#039;&#039;.&lt;br /&gt;
&amp;lt;/spoiler&amp;gt;&lt;br /&gt;
&#039;&#039;Next book: [[Composers]]&#039;&#039;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3677</id>
		<title>Meta:Spam Blacklist</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3677"/>
		<updated>2007-08-17T16:54:52Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; #&amp;lt;!-- leave this line exactly as it is --&amp;gt; &amp;lt;pre&amp;gt; &lt;br /&gt;
#&lt;br /&gt;
# In simple terms:&lt;br /&gt;
#    * Everything from a &amp;quot;#&amp;quot; character to the end of the line is a comment&lt;br /&gt;
#    * Every non-blank line is a regex fragment which will only match inside URLs&lt;br /&gt;
#&lt;br /&gt;
# Internally, a regex is formed which looks like this:&lt;br /&gt;
#&lt;br /&gt;
#    !http://[a-z0-9\-.]*(line 1|line 2|line 3|....)!Si&lt;br /&gt;
#&lt;br /&gt;
# A few notes about this format. It&#039;s not necessary to add www to the start of&lt;br /&gt;
# hostnames, the regex is designed to match any subdomain. Don&#039;t add patterns&lt;br /&gt;
# to your file which may run off the end of the URL, e.g. anything containing &lt;br /&gt;
# &amp;quot;.*&amp;quot;. Unlike in some similar systems, the line-end metacharacter &amp;quot;$&amp;quot; will not&lt;br /&gt;
# assert the end of the hostname, it&#039;ll assert the end of the page.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
# Test blacklist&lt;br /&gt;
example\.com&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-10-16&lt;br /&gt;
casino-games&lt;br /&gt;
adipex&lt;br /&gt;
tramadol&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-12-22 because of User 1166728278&lt;br /&gt;
dgo5d.info&lt;br /&gt;
ringtone&lt;br /&gt;
&lt;br /&gt;
# Spammer URL added 2007-02-06 because of user Sadfsa&lt;br /&gt;
pornolicios.info&lt;br /&gt;
&lt;br /&gt;
# More spam terms, added 2007-06-10&lt;br /&gt;
diazepam&lt;br /&gt;
xenical&lt;br /&gt;
ringtones&lt;br /&gt;
&lt;br /&gt;
# Pages that have been hacked (the spam keywords aren&#039;t in the URL, so blacklist isn&#039;t effective against the link)&lt;br /&gt;
stanford.edu/seminar&lt;br /&gt;
sunysb.edu&lt;br /&gt;
bc.edu&lt;br /&gt;
sc.edu&lt;br /&gt;
ku.edu&lt;br /&gt;
usc.edu&lt;br /&gt;
msoe.edu&lt;br /&gt;
&lt;br /&gt;
# 2007-07-10&lt;br /&gt;
worldcrossing.com&lt;br /&gt;
ecsu.edu&lt;br /&gt;
ufl.edu&lt;br /&gt;
mit.edu&lt;br /&gt;
&lt;br /&gt;
# More spammy URLs from 2007-08-17&lt;br /&gt;
helmed.info&lt;br /&gt;
nobinters.org&lt;br /&gt;
davte.info&lt;br /&gt;
amohseni.info&lt;br /&gt;
psisemiya.com&lt;br /&gt;
ashythro.info&lt;br /&gt;
kinuia.cn&lt;br /&gt;
&lt;br /&gt;
 #&amp;lt;/pre&amp;gt; &amp;lt;!-- leave this line exactly as it is --&amp;gt;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Video-Las_Vegas&amp;diff=3675</id>
		<title>Video-Las Vegas</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Video-Las_Vegas&amp;diff=3675"/>
		<updated>2007-07-10T22:29:52Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by YljB6s (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Event 1]]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3674</id>
		<title>Meta:Spam Blacklist</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3674"/>
		<updated>2007-07-10T22:29:31Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; #&amp;lt;!-- leave this line exactly as it is --&amp;gt; &amp;lt;pre&amp;gt; &lt;br /&gt;
#&lt;br /&gt;
# In simple terms:&lt;br /&gt;
#    * Everything from a &amp;quot;#&amp;quot; character to the end of the line is a comment&lt;br /&gt;
#    * Every non-blank line is a regex fragment which will only match inside URLs&lt;br /&gt;
#&lt;br /&gt;
# Internally, a regex is formed which looks like this:&lt;br /&gt;
#&lt;br /&gt;
#    !http://[a-z0-9\-.]*(line 1|line 2|line 3|....)!Si&lt;br /&gt;
#&lt;br /&gt;
# A few notes about this format. It&#039;s not necessary to add www to the start of&lt;br /&gt;
# hostnames, the regex is designed to match any subdomain. Don&#039;t add patterns&lt;br /&gt;
# to your file which may run off the end of the URL, e.g. anything containing &lt;br /&gt;
# &amp;quot;.*&amp;quot;. Unlike in some similar systems, the line-end metacharacter &amp;quot;$&amp;quot; will not&lt;br /&gt;
# assert the end of the hostname, it&#039;ll assert the end of the page.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
# Test blacklist&lt;br /&gt;
example\.com&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-10-16&lt;br /&gt;
casino-games&lt;br /&gt;
adipex&lt;br /&gt;
tramadol&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-12-22 because of User 1166728278&lt;br /&gt;
dgo5d.info&lt;br /&gt;
ringtone&lt;br /&gt;
&lt;br /&gt;
# Spammer URL added 2007-02-06 because of user Sadfsa&lt;br /&gt;
pornolicios.info&lt;br /&gt;
&lt;br /&gt;
# More spam terms, added 2007-06-10&lt;br /&gt;
diazepam&lt;br /&gt;
xenical&lt;br /&gt;
ringtones&lt;br /&gt;
&lt;br /&gt;
# Pages that have been hacked (the spam keywords aren&#039;t in the URL, so blacklist isn&#039;t effective against the link)&lt;br /&gt;
stanford.edu/seminar&lt;br /&gt;
sunysb.edu&lt;br /&gt;
bc.edu&lt;br /&gt;
sc.edu&lt;br /&gt;
ku.edu&lt;br /&gt;
usc.edu&lt;br /&gt;
msoe.edu&lt;br /&gt;
&lt;br /&gt;
# 2007-07-10&lt;br /&gt;
worldcrossing.com&lt;br /&gt;
ecsu.edu&lt;br /&gt;
ufl.edu&lt;br /&gt;
mit.edu&lt;br /&gt;
&lt;br /&gt;
 #&amp;lt;/pre&amp;gt; &amp;lt;!-- leave this line exactly as it is --&amp;gt;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3672</id>
		<title>Meta:Spam Blacklist</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3672"/>
		<updated>2007-06-29T16:38:02Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; #&amp;lt;!-- leave this line exactly as it is --&amp;gt; &amp;lt;pre&amp;gt; &lt;br /&gt;
#&lt;br /&gt;
# In simple terms:&lt;br /&gt;
#    * Everything from a &amp;quot;#&amp;quot; character to the end of the line is a comment&lt;br /&gt;
#    * Every non-blank line is a regex fragment which will only match inside URLs&lt;br /&gt;
#&lt;br /&gt;
# Internally, a regex is formed which looks like this:&lt;br /&gt;
#&lt;br /&gt;
#    !http://[a-z0-9\-.]*(line 1|line 2|line 3|....)!Si&lt;br /&gt;
#&lt;br /&gt;
# A few notes about this format. It&#039;s not necessary to add www to the start of&lt;br /&gt;
# hostnames, the regex is designed to match any subdomain. Don&#039;t add patterns&lt;br /&gt;
# to your file which may run off the end of the URL, e.g. anything containing &lt;br /&gt;
# &amp;quot;.*&amp;quot;. Unlike in some similar systems, the line-end metacharacter &amp;quot;$&amp;quot; will not&lt;br /&gt;
# assert the end of the hostname, it&#039;ll assert the end of the page.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
# Test blacklist&lt;br /&gt;
example\.com&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-10-16&lt;br /&gt;
casino-games&lt;br /&gt;
adipex&lt;br /&gt;
tramadol&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-12-22 because of User 1166728278&lt;br /&gt;
dgo5d.info&lt;br /&gt;
ringtone&lt;br /&gt;
&lt;br /&gt;
# Spammer URL added 2007-02-06 because of user Sadfsa&lt;br /&gt;
pornolicios.info&lt;br /&gt;
&lt;br /&gt;
# More spam terms, added 2007-06-10&lt;br /&gt;
diazepam&lt;br /&gt;
xenical&lt;br /&gt;
ringtones&lt;br /&gt;
&lt;br /&gt;
# Pages that have been hacked (the spam keywords aren&#039;t in the URL, so blacklist isn&#039;t effective against the link)&lt;br /&gt;
stanford.edu/seminar&lt;br /&gt;
sunysb.edu&lt;br /&gt;
bc.edu&lt;br /&gt;
sc.edu&lt;br /&gt;
ku.edu&lt;br /&gt;
usc.edu&lt;br /&gt;
msoe.edu&lt;br /&gt;
&lt;br /&gt;
 #&amp;lt;/pre&amp;gt; &amp;lt;!-- leave this line exactly as it is --&amp;gt;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Talk:History_Lesson&amp;diff=3671</id>
		<title>Talk:History Lesson</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Talk:History_Lesson&amp;diff=3671"/>
		<updated>2007-06-29T16:28:21Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by YryL15 (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I went for first assembly line for Ford - doesn&#039;t matter though: the answer is still the same!!&lt;br /&gt;
&lt;br /&gt;
Einstein had a number of firsts to his name but I think that the theory of relativity fits the answer.&lt;br /&gt;
&lt;br /&gt;
I too got the final clue without knowing the real answer to the two event clues but I have a problem with them both.  (Spoilers added because the discussion gives away the method of reaching the answers) &amp;lt;spoiler&amp;gt;Aryabhata is believed to be the first person to describe a heliocentric solar system: he was born in Ashmak (which fits the place name in both unfilled lines) but he lived and studied in Kusumapura, also called Pataliputra (now Patna), in India.  None of those fit either of the vacant lines.  I did wonder whether they had used Hindustan for India .... but that doesn&#039;t fit unless an old spelling (Hindoostan) is used.  If that were the case then the other unfilled line would be the one that refrered to the arches.  The &#039;R&#039; in the country name means that it has to be Iraq or Iran but the earliest arches are from the Indus Valley (Pakistan) and Mesopotamia (Iraq) was later.&amp;lt;/spoiler&amp;gt;&lt;br /&gt;
Oh well: it&#039;s all academic anyway since it is possible to get the final clue without these two answers.  I shall just be interested to see what the official answers to those two lines are.[[User:PurplePenny|PurplePenny]] 05:12, 23 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt;4 and #8 have been filled in.  Still researching #2.  D_West 1705 24 JAN 2007&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt;2 has possible solution.  D_West 1705 26 JAN 2007&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Template:Quick_References&amp;diff=3670</id>
		<title>Template:Quick References</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Template:Quick_References&amp;diff=3670"/>
		<updated>2007-06-29T16:28:06Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by JpzRsa (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[Contact Information]]&amp;lt;br&amp;gt;&lt;br /&gt;
*[[Video|List of Videos]]&amp;lt;br&amp;gt;&lt;br /&gt;
*[[Web Pages]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=William_Temple&amp;diff=3669</id>
		<title>William Temple</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=William_Temple&amp;diff=3669"/>
		<updated>2007-06-29T16:27:46Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by LddFdc (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;William Temple of Sacramento, Calif. was presented the grand prize of the Vanishing Point Game on Monday, February 12, 2007.  He is a 29-year-old network technician who works at Health Net Inc.  He won with 370 out of 1500 possible points.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Related News Coverage:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Microsoft PressPass: [http://www.microsoft.com/presspass/press/2007/feb07/02-12VanishingPointWinnerPR.mspx Microsoft and AMD Award Space Trip to “Vanishing Point” Winner]&lt;br /&gt;
&lt;br /&gt;
ComputerWorld: [http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;amp;articleId=9011149&amp;amp;intsrc=hm_list Beam me up, Bill: Network technician wins Vista &#039;rocketplane&#039; ride]&lt;br /&gt;
&lt;br /&gt;
Global Giants photo: [http://www.globalgiants.com/archives/000728.html Space Winner: GlobalGiants.com]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Template:Puzzle_Box_3&amp;diff=3668</id>
		<title>Template:Puzzle Box 3</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Template:Puzzle_Box_3&amp;diff=3668"/>
		<updated>2007-06-29T16:26:36Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by MesJdt (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&#039;&#039;&#039;Memories fade...&#039;&#039;&#039;&amp;lt;/center&amp;gt;&lt;br /&gt;
Puzzle Box 3 consists of 12 puzzles, four each of Easy (10 [[points]] each), Medium (20 [[points]] each), and Hard puzzles (50 [[points]] each).  It will be opened on Saturday, January 20 2007 at 12:30pm GMT.  Clues were beautifully projected on buildings around the world, giving clues to unlock some of these puzzles.  See [[Event 3]] for event pictures.&lt;br /&gt;
&lt;br /&gt;
====Easy====&lt;br /&gt;
* [[Calendar Wheel]] - solved&lt;br /&gt;
* [[Speakeasy]] - solved&lt;br /&gt;
* [[Pirate Treasure]] - solved&lt;br /&gt;
* [[Laser]] - solved&lt;br /&gt;
&lt;br /&gt;
====Medium====&lt;br /&gt;
* [[Balance The Books]] - solved&lt;br /&gt;
* [[Disco Inferno]] - solved&lt;br /&gt;
* [[Number Grid]] - solved&lt;br /&gt;
* [[History Lesson]] - solved&lt;br /&gt;
&lt;br /&gt;
====Hard====&lt;br /&gt;
* [[Composers]] - solved&lt;br /&gt;
* [[Letters From Home]] - solved&lt;br /&gt;
* [[Mural]] - solved&lt;br /&gt;
* [[Tomb]] - solved&lt;br /&gt;
&lt;br /&gt;
For the locations of the white boxes in this set of puzzles, see the [[Collection Plate]][http://forums.unfiction.com/forums/viewtopic.php?t=17829]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Talk:Meta_Puzzle&amp;diff=3662</id>
		<title>Talk:Meta Puzzle</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Talk:Meta_Puzzle&amp;diff=3662"/>
		<updated>2007-06-12T23:18:33Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by Aw3Btm (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The last flight is alaska air to San Jose&lt;br /&gt;
&lt;br /&gt;
Departure Scheduled Actual Gate Arrival Scheduled Actual Comments Alerts &lt;br /&gt;
Seattle 9:55 AM 9:49 AM D9  San Jose, CA 12:08 PM ETA 11:51 AM  N/A &lt;br /&gt;
&lt;br /&gt;
- josh&lt;br /&gt;
&lt;br /&gt;
== Possible Relevance ==&lt;br /&gt;
&lt;br /&gt;
There is a city on the Rhine river in Germany called St. Goarshausen. There is a large outcropping called Lorelei Rock, which translates to murmuring rock. There are legends around the rock related to a siren that used to bring sailors to their deaths on the rock.&lt;br /&gt;
&lt;br /&gt;
In addition, there is an amphitheater on the rock that might be a location for something.&lt;br /&gt;
&lt;br /&gt;
This is the location of the rock [http://local.live.com/?v=2&amp;amp;sp=Point.sbq7wchnc5zc_Lorelei%20%28rock%29%2c%20Germany___] on Virtual Earth.&lt;br /&gt;
&lt;br /&gt;
--[[User:WoogyChuck|WoogyChuck]] 07:07, 11 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
There is a song about the rock/siren as well. This might hold some clues.&lt;br /&gt;
&lt;br /&gt;
        I do not know what haunts me, &lt;br /&gt;
        What saddened my mind all day; &lt;br /&gt;
        An age-old tale confounds me, &lt;br /&gt;
        A spell I cannot allay. &lt;br /&gt;
         The air is cool and in twilight &lt;br /&gt;
        The Rhine&#039;s dark waters flow; &lt;br /&gt;
        The peak of the mountain in highlight &lt;br /&gt;
        Reflects the evening glow. &lt;br /&gt;
        There sits a lovely maiden &lt;br /&gt;
        Above so wondrous fair, &lt;br /&gt;
        With shining jewels laden, &lt;br /&gt;
        She combs her golden hair&lt;br /&gt;
         It falls through her comb in a shower, &lt;br /&gt;
        And over the valley rings &lt;br /&gt;
        A song of mysterious power &lt;br /&gt;
        That lovely maiden sings. &lt;br /&gt;
        The boatman in his small skiff is &lt;br /&gt;
        Seized by a turbulent love, &lt;br /&gt;
        No longer he marks where the cliff is, &lt;br /&gt;
        He looks to the mountain above. &lt;br /&gt;
        I think the waves must fling him &lt;br /&gt;
        Against the reefs nearby, &lt;br /&gt;
        And that did with her singing &lt;br /&gt;
                               The lovely Loreley.&lt;br /&gt;
 &lt;br /&gt;
--[[User:WoogyChuck|WoogyChuck]] 07:17, 11 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== Another reference to Lorelei ==&lt;br /&gt;
&lt;br /&gt;
In the movie Ghost Ship, Lorelei was the name of the ship that the Antonio Graza rescued. [http://en.wikipedia.org/wiki/Ghost_Ship_(film) ]&lt;br /&gt;
&lt;br /&gt;
-Korn1699&lt;br /&gt;
&lt;br /&gt;
== Airline Listings ==&lt;br /&gt;
&lt;br /&gt;
Did a little searching around and these are the airlines on the itinerary:&lt;br /&gt;
&lt;br /&gt;
AW - Dirgantara Air (Operating out of Jakara, Indonesia)&lt;br /&gt;
SW - Air Namibia (Windhoek Itn&#039;l Airport)&lt;br /&gt;
AA - American Airlines&lt;br /&gt;
UA - United Airlines&lt;br /&gt;
&lt;br /&gt;
Looking up the flights online (with the exception of SW to AW, no records found) they do connect from the AA flights on (LAX-Austin-Denver-Seattle). Having trouble locating information on Air Namibia flight #608. The website isn&#039;t exactly the most informative. Anyone know where this flight is coming from and going to?&lt;br /&gt;
&lt;br /&gt;
-Punchy&lt;br /&gt;
&lt;br /&gt;
Hey Punchy,&lt;br /&gt;
&lt;br /&gt;
I&#039;m sorry, but you&#039;re wrong with the Airline codes. These are not the offical airline codes, they are all domestic flights.  Sorry to disappoint.&lt;br /&gt;
&lt;br /&gt;
*AW 291 - America West - Seattle to Las Vegas&lt;br /&gt;
*SW 608 - Southwest - Las Vegas to Los Angeles&lt;br /&gt;
*AA 1308 - American Airlines - Los Angeles to Austin, TX&lt;br /&gt;
*UA 373/339 - United Airlines - Austin, TX to Denver to Seattle&lt;br /&gt;
*AK 394 - Alaska Air - Seattle to San Jose&lt;br /&gt;
&lt;br /&gt;
--[[User:WoogyChuck|WoogyChuck]] 17:40, 11 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
==Kitsune==&lt;br /&gt;
I&#039;m not too sure of its relevance, but Loki&#039;s last name (I&#039;m assuming L. Kisune is Loki Kitsune?) is Japanese for fox. Most likely not her real last name, maybe its a clue? [[User:Viridian Fae|Viridian Fae]] 08:03, 21 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
Kitsune was also the featured article on Wikipedia a few days after we discovered Loki&#039;s last name. I&#039;m not sure if this is related to the game or if it was a product of the sudden increase in popularity of the article.&lt;br /&gt;
&lt;br /&gt;
--[[User:WoogyChuck|WoogyChuck]]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Points&amp;diff=3661</id>
		<title>Points</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Points&amp;diff=3661"/>
		<updated>2007-06-12T23:18:28Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by LtpTbi (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vanishing Point is a sweepstakes with a skill element.  Every week for four weeks, puzzles will appear.  Solving puzzles earns you points, and each point is an entry into the sweepstakes.&lt;br /&gt;
&lt;br /&gt;
There are &#039;&#039;&#039;1500 points maximum&#039;&#039;&#039; that each player can earn.  They breakdown like this:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Registration: 20 points (up to once).&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Week 1&amp;lt;br&amp;gt;&lt;br /&gt;
Easy Puzzles: 10 points (up to four times, for 40 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Medium Puzzles: 20 points (up to four times, for 80 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Hard Puzzles: 50 points (up to four times, for 200 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solving all Week 1 puzzles earns: 320 Points.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Week 2&amp;lt;br&amp;gt;&lt;br /&gt;
Easy Puzzles: 10 points (up to four times, for 40 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Medium Puzzles: 20 points (up to four times, for 80 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Hard Puzzles: 50 points (up to four times, for 200 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solving all Week 2 puzzles earns: 320 Points.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Week 3&amp;lt;br&amp;gt;&lt;br /&gt;
Easy Puzzles: 10 points (up to four times, for 40 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Medium Puzzles: 20 points (up to four times, for 80 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Hard Puzzles: 50 points (up to four times, for 200 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solving all Week 3 puzzles earns: 320 Points.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Week 4&amp;lt;br&amp;gt;&lt;br /&gt;
Easy Puzzles: 10 points (up to four times, for 40 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Medium Puzzles: 20 points (up to four times, for 80 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Hard Puzzles: 50 points (up to four times, for 200 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solving all Week 4 puzzles earns: 320 Points.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solving all of the puzzles yields a maximum of 1280 Points.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You can also earn points by referring people to the game.  &#039;&#039;&#039;Every referral earns 10 points, with a maximum of 20 referrals, yielding 200 points&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After the game is over, a random drawing will determine who wins the prizes, and what prize they win.  The only prize that can be won by directly solving a puzzle is the [[Meta Puzzle]].&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=User:BrianEnigma&amp;diff=3660</id>
		<title>User:BrianEnigma</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=User:BrianEnigma&amp;diff=3660"/>
		<updated>2007-06-12T23:18:27Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by GxbR5z (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi!  I run this site and http://PerplexCityWiki.com (among others.)  If you want to get in touch with me, my email is brian at vanishingpointwiki.com.&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3659</id>
		<title>Meta:Spam Blacklist</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3659"/>
		<updated>2007-06-12T23:17:57Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; #&amp;lt;!-- leave this line exactly as it is --&amp;gt; &amp;lt;pre&amp;gt; &lt;br /&gt;
#&lt;br /&gt;
# In simple terms:&lt;br /&gt;
#    * Everything from a &amp;quot;#&amp;quot; character to the end of the line is a comment&lt;br /&gt;
#    * Every non-blank line is a regex fragment which will only match inside URLs&lt;br /&gt;
#&lt;br /&gt;
# Internally, a regex is formed which looks like this:&lt;br /&gt;
#&lt;br /&gt;
#    !http://[a-z0-9\-.]*(line 1|line 2|line 3|....)!Si&lt;br /&gt;
#&lt;br /&gt;
# A few notes about this format. It&#039;s not necessary to add www to the start of&lt;br /&gt;
# hostnames, the regex is designed to match any subdomain. Don&#039;t add patterns&lt;br /&gt;
# to your file which may run off the end of the URL, e.g. anything containing &lt;br /&gt;
# &amp;quot;.*&amp;quot;. Unlike in some similar systems, the line-end metacharacter &amp;quot;$&amp;quot; will not&lt;br /&gt;
# assert the end of the hostname, it&#039;ll assert the end of the page.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
# Test blacklist&lt;br /&gt;
example\.com&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-10-16&lt;br /&gt;
casino-games&lt;br /&gt;
adipex&lt;br /&gt;
tramadol&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-12-22 because of User 1166728278&lt;br /&gt;
dgo5d.info&lt;br /&gt;
ringtone&lt;br /&gt;
&lt;br /&gt;
# Spammer URL added 2007-02-06 because of user Sadfsa&lt;br /&gt;
pornolicios.info&lt;br /&gt;
&lt;br /&gt;
# More spam terms, added 2007-06-10&lt;br /&gt;
diazepam&lt;br /&gt;
xenical&lt;br /&gt;
ringtones&lt;br /&gt;
&lt;br /&gt;
# Pages that have been hacked (the spam keywords aren&#039;t in the URL, so blacklist isn&#039;t effective against the link)&lt;br /&gt;
stanford.edu/seminar&lt;br /&gt;
sunysb.edu&lt;br /&gt;
bc.edu&lt;br /&gt;
sc.edu&lt;br /&gt;
ku.edu&lt;br /&gt;
usc.edu&lt;br /&gt;
&lt;br /&gt;
 #&amp;lt;/pre&amp;gt; &amp;lt;!-- leave this line exactly as it is --&amp;gt;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Talk:Meta_Puzzle&amp;diff=3656</id>
		<title>Talk:Meta Puzzle</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Talk:Meta_Puzzle&amp;diff=3656"/>
		<updated>2007-06-12T14:42:11Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by OihZ15 (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The last flight is alaska air to San Jose&lt;br /&gt;
&lt;br /&gt;
Departure Scheduled Actual Gate Arrival Scheduled Actual Comments Alerts &lt;br /&gt;
Seattle 9:55 AM 9:49 AM D9  San Jose, CA 12:08 PM ETA 11:51 AM  N/A &lt;br /&gt;
&lt;br /&gt;
- josh&lt;br /&gt;
&lt;br /&gt;
== Possible Relevance ==&lt;br /&gt;
&lt;br /&gt;
There is a city on the Rhine river in Germany called St. Goarshausen. There is a large outcropping called Lorelei Rock, which translates to murmuring rock. There are legends around the rock related to a siren that used to bring sailors to their deaths on the rock.&lt;br /&gt;
&lt;br /&gt;
In addition, there is an amphitheater on the rock that might be a location for something.&lt;br /&gt;
&lt;br /&gt;
This is the location of the rock [http://local.live.com/?v=2&amp;amp;sp=Point.sbq7wchnc5zc_Lorelei%20%28rock%29%2c%20Germany___] on Virtual Earth.&lt;br /&gt;
&lt;br /&gt;
--[[User:WoogyChuck|WoogyChuck]] 07:07, 11 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
There is a song about the rock/siren as well. This might hold some clues.&lt;br /&gt;
&lt;br /&gt;
        I do not know what haunts me, &lt;br /&gt;
        What saddened my mind all day; &lt;br /&gt;
        An age-old tale confounds me, &lt;br /&gt;
        A spell I cannot allay. &lt;br /&gt;
         The air is cool and in twilight &lt;br /&gt;
        The Rhine&#039;s dark waters flow; &lt;br /&gt;
        The peak of the mountain in highlight &lt;br /&gt;
        Reflects the evening glow. &lt;br /&gt;
        There sits a lovely maiden &lt;br /&gt;
        Above so wondrous fair, &lt;br /&gt;
        With shining jewels laden, &lt;br /&gt;
        She combs her golden hair&lt;br /&gt;
         It falls through her comb in a shower, &lt;br /&gt;
        And over the valley rings &lt;br /&gt;
        A song of mysterious power &lt;br /&gt;
        That lovely maiden sings. &lt;br /&gt;
        The boatman in his small skiff is &lt;br /&gt;
        Seized by a turbulent love, &lt;br /&gt;
        No longer he marks where the cliff is, &lt;br /&gt;
        He looks to the mountain above. &lt;br /&gt;
        I think the waves must fling him &lt;br /&gt;
        Against the reefs nearby, &lt;br /&gt;
        And that did with her singing &lt;br /&gt;
                               The lovely Loreley.&lt;br /&gt;
 &lt;br /&gt;
--[[User:WoogyChuck|WoogyChuck]] 07:17, 11 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== Another reference to Lorelei ==&lt;br /&gt;
&lt;br /&gt;
In the movie Ghost Ship, Lorelei was the name of the ship that the Antonio Graza rescued. [http://en.wikipedia.org/wiki/Ghost_Ship_(film) ]&lt;br /&gt;
&lt;br /&gt;
-Korn1699&lt;br /&gt;
&lt;br /&gt;
== Airline Listings ==&lt;br /&gt;
&lt;br /&gt;
Did a little searching around and these are the airlines on the itinerary:&lt;br /&gt;
&lt;br /&gt;
AW - Dirgantara Air (Operating out of Jakara, Indonesia)&lt;br /&gt;
SW - Air Namibia (Windhoek Itn&#039;l Airport)&lt;br /&gt;
AA - American Airlines&lt;br /&gt;
UA - United Airlines&lt;br /&gt;
&lt;br /&gt;
Looking up the flights online (with the exception of SW to AW, no records found) they do connect from the AA flights on (LAX-Austin-Denver-Seattle). Having trouble locating information on Air Namibia flight #608. The website isn&#039;t exactly the most informative. Anyone know where this flight is coming from and going to?&lt;br /&gt;
&lt;br /&gt;
-Punchy&lt;br /&gt;
&lt;br /&gt;
Hey Punchy,&lt;br /&gt;
&lt;br /&gt;
I&#039;m sorry, but you&#039;re wrong with the Airline codes. These are not the offical airline codes, they are all domestic flights.  Sorry to disappoint.&lt;br /&gt;
&lt;br /&gt;
*AW 291 - America West - Seattle to Las Vegas&lt;br /&gt;
*SW 608 - Southwest - Las Vegas to Los Angeles&lt;br /&gt;
*AA 1308 - American Airlines - Los Angeles to Austin, TX&lt;br /&gt;
*UA 373/339 - United Airlines - Austin, TX to Denver to Seattle&lt;br /&gt;
*AK 394 - Alaska Air - Seattle to San Jose&lt;br /&gt;
&lt;br /&gt;
--[[User:WoogyChuck|WoogyChuck]] 17:40, 11 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
==Kitsune==&lt;br /&gt;
I&#039;m not too sure of its relevance, but Loki&#039;s last name (I&#039;m assuming L. Kisune is Loki Kitsune?) is Japanese for fox. Most likely not her real last name, maybe its a clue? [[User:Viridian Fae|Viridian Fae]] 08:03, 21 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
Kitsune was also the featured article on Wikipedia a few days after we discovered Loki&#039;s last name. I&#039;m not sure if this is related to the game or if it was a product of the sudden increase in popularity of the article.&lt;br /&gt;
&lt;br /&gt;
--[[User:WoogyChuck|WoogyChuck]]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=User:Quintes&amp;diff=3655</id>
		<title>User:Quintes</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=User:Quintes&amp;diff=3655"/>
		<updated>2007-06-12T14:41:01Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by Bp0Gzo (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
I&#039;m Quintes - that&#039;s all you need to know...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Other Information ==&lt;br /&gt;
Location: California&amp;lt;br&amp;gt;&lt;br /&gt;
Age: 20&amp;lt;br&amp;gt;&lt;br /&gt;
Sex: Male&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Talk:Letters_From_Home&amp;diff=3654</id>
		<title>Talk:Letters From Home</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Talk:Letters_From_Home&amp;diff=3654"/>
		<updated>2007-06-12T14:40:33Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by Ii5Gj4 (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;ve added the identity of the missing country (April 9th) as a spoiler.  The photo isn&#039;t clear but the stamps are Penny Blacks. [[User:PurplePenny|PurplePenny]] 06:51, 23 January 2007 (PST)&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Talk:Calendar_Wheel&amp;diff=3653</id>
		<title>Talk:Calendar Wheel</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Talk:Calendar_Wheel&amp;diff=3653"/>
		<updated>2007-06-12T14:40:11Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by CasLvu (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I found it easier to work from the inside out!&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Points&amp;diff=3645</id>
		<title>Points</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Points&amp;diff=3645"/>
		<updated>2007-06-11T06:05:13Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by LtpTbi (Talk); changed back to last version by SuperRob&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vanishing Point is a sweepstakes with a skill element.  Every week for four weeks, puzzles will appear.  Solving puzzles earns you points, and each point is an entry into the sweepstakes.&lt;br /&gt;
&lt;br /&gt;
There are &#039;&#039;&#039;1500 points maximum&#039;&#039;&#039; that each player can earn.  They breakdown like this:&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Registration: 20 points (up to once).&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Week 1&amp;lt;br&amp;gt;&lt;br /&gt;
Easy Puzzles: 10 points (up to four times, for 40 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Medium Puzzles: 20 points (up to four times, for 80 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Hard Puzzles: 50 points (up to four times, for 200 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solving all Week 1 puzzles earns: 320 Points.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Week 2&amp;lt;br&amp;gt;&lt;br /&gt;
Easy Puzzles: 10 points (up to four times, for 40 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Medium Puzzles: 20 points (up to four times, for 80 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Hard Puzzles: 50 points (up to four times, for 200 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solving all Week 2 puzzles earns: 320 Points.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Week 3&amp;lt;br&amp;gt;&lt;br /&gt;
Easy Puzzles: 10 points (up to four times, for 40 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Medium Puzzles: 20 points (up to four times, for 80 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Hard Puzzles: 50 points (up to four times, for 200 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solving all Week 3 puzzles earns: 320 Points.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Week 4&amp;lt;br&amp;gt;&lt;br /&gt;
Easy Puzzles: 10 points (up to four times, for 40 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Medium Puzzles: 20 points (up to four times, for 80 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
Hard Puzzles: 50 points (up to four times, for 200 points total).&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solving all Week 4 puzzles earns: 320 Points.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Solving all of the puzzles yields a maximum of 1280 Points.&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
You can also earn points by referring people to the game.  &#039;&#039;&#039;Every referral earns 10 points, with a maximum of 20 referrals, yielding 200 points&#039;&#039;&#039;.&lt;br /&gt;
&lt;br /&gt;
After the game is over, a random drawing will determine who wins the prizes, and what prize they win.  The only prize that can be won by directly solving a puzzle is the [[Meta Puzzle]].&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=User:BrianEnigma&amp;diff=3644</id>
		<title>User:BrianEnigma</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=User:BrianEnigma&amp;diff=3644"/>
		<updated>2007-06-11T06:04:18Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by GxbR5z (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi!  I run this site and http://PerplexCityWiki.com (among others.)  If you want to get in touch with me, my email is brian at vanishingpointwiki.com.&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Talk:Meta_Puzzle&amp;diff=3643</id>
		<title>Talk:Meta Puzzle</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Talk:Meta_Puzzle&amp;diff=3643"/>
		<updated>2007-06-11T06:04:13Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: rollback&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The last flight is alaska air to San Jose&lt;br /&gt;
&lt;br /&gt;
Departure Scheduled Actual Gate Arrival Scheduled Actual Comments Alerts &lt;br /&gt;
Seattle 9:55 AM 9:49 AM D9  San Jose, CA 12:08 PM ETA 11:51 AM  N/A &lt;br /&gt;
&lt;br /&gt;
- josh&lt;br /&gt;
&lt;br /&gt;
== Possible Relevance ==&lt;br /&gt;
&lt;br /&gt;
There is a city on the Rhine river in Germany called St. Goarshausen. There is a large outcropping called Lorelei Rock, which translates to murmuring rock. There are legends around the rock related to a siren that used to bring sailors to their deaths on the rock.&lt;br /&gt;
&lt;br /&gt;
In addition, there is an amphitheater on the rock that might be a location for something.&lt;br /&gt;
&lt;br /&gt;
This is the location of the rock [http://local.live.com/?v=2&amp;amp;sp=Point.sbq7wchnc5zc_Lorelei%20%28rock%29%2c%20Germany___] on Virtual Earth.&lt;br /&gt;
&lt;br /&gt;
--[[User:WoogyChuck|WoogyChuck]] 07:07, 11 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
There is a song about the rock/siren as well. This might hold some clues.&lt;br /&gt;
&lt;br /&gt;
        I do not know what haunts me, &lt;br /&gt;
        What saddened my mind all day; &lt;br /&gt;
        An age-old tale confounds me, &lt;br /&gt;
        A spell I cannot allay. &lt;br /&gt;
         The air is cool and in twilight &lt;br /&gt;
        The Rhine&#039;s dark waters flow; &lt;br /&gt;
        The peak of the mountain in highlight &lt;br /&gt;
        Reflects the evening glow. &lt;br /&gt;
        There sits a lovely maiden &lt;br /&gt;
        Above so wondrous fair, &lt;br /&gt;
        With shining jewels laden, &lt;br /&gt;
        She combs her golden hair&lt;br /&gt;
         It falls through her comb in a shower, &lt;br /&gt;
        And over the valley rings &lt;br /&gt;
        A song of mysterious power &lt;br /&gt;
        That lovely maiden sings. &lt;br /&gt;
        The boatman in his small skiff is &lt;br /&gt;
        Seized by a turbulent love, &lt;br /&gt;
        No longer he marks where the cliff is, &lt;br /&gt;
        He looks to the mountain above. &lt;br /&gt;
        I think the waves must fling him &lt;br /&gt;
        Against the reefs nearby, &lt;br /&gt;
        And that did with her singing &lt;br /&gt;
                               The lovely Loreley.&lt;br /&gt;
 &lt;br /&gt;
--[[User:WoogyChuck|WoogyChuck]] 07:17, 11 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
== Another reference to Lorelei ==&lt;br /&gt;
&lt;br /&gt;
In the movie Ghost Ship, Lorelei was the name of the ship that the Antonio Graza rescued. [http://en.wikipedia.org/wiki/Ghost_Ship_(film) ]&lt;br /&gt;
&lt;br /&gt;
-Korn1699&lt;br /&gt;
&lt;br /&gt;
== Airline Listings ==&lt;br /&gt;
&lt;br /&gt;
Did a little searching around and these are the airlines on the itinerary:&lt;br /&gt;
&lt;br /&gt;
AW - Dirgantara Air (Operating out of Jakara, Indonesia)&lt;br /&gt;
SW - Air Namibia (Windhoek Itn&#039;l Airport)&lt;br /&gt;
AA - American Airlines&lt;br /&gt;
UA - United Airlines&lt;br /&gt;
&lt;br /&gt;
Looking up the flights online (with the exception of SW to AW, no records found) they do connect from the AA flights on (LAX-Austin-Denver-Seattle). Having trouble locating information on Air Namibia flight #608. The website isn&#039;t exactly the most informative. Anyone know where this flight is coming from and going to?&lt;br /&gt;
&lt;br /&gt;
-Punchy&lt;br /&gt;
&lt;br /&gt;
Hey Punchy,&lt;br /&gt;
&lt;br /&gt;
I&#039;m sorry, but you&#039;re wrong with the Airline codes. These are not the offical airline codes, they are all domestic flights.  Sorry to disappoint.&lt;br /&gt;
&lt;br /&gt;
*AW 291 - America West - Seattle to Las Vegas&lt;br /&gt;
*SW 608 - Southwest - Las Vegas to Los Angeles&lt;br /&gt;
*AA 1308 - American Airlines - Los Angeles to Austin, TX&lt;br /&gt;
*UA 373/339 - United Airlines - Austin, TX to Denver to Seattle&lt;br /&gt;
*AK 394 - Alaska Air - Seattle to San Jose&lt;br /&gt;
&lt;br /&gt;
--[[User:WoogyChuck|WoogyChuck]] 17:40, 11 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
==Kitsune==&lt;br /&gt;
I&#039;m not too sure of its relevance, but Loki&#039;s last name (I&#039;m assuming L. Kisune is Loki Kitsune?) is Japanese for fox. Most likely not her real last name, maybe its a clue? [[User:Viridian Fae|Viridian Fae]] 08:03, 21 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
Kitsune was also the featured article on Wikipedia a few days after we discovered Loki&#039;s last name. I&#039;m not sure if this is related to the game or if it was a product of the sudden increase in popularity of the article.&lt;br /&gt;
&lt;br /&gt;
--[[User:WoogyChuck|WoogyChuck]]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=William_Temple&amp;diff=3642</id>
		<title>William Temple</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=William_Temple&amp;diff=3642"/>
		<updated>2007-06-11T06:03:40Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: rollback&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;William Temple of Sacramento, Calif. was presented the grand prize of the Vanishing Point Game on Monday, February 12, 2007.  He is a 29-year-old network technician who works at Health Net Inc.  He won with 370 out of 1500 possible points.&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Related News Coverage:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
Microsoft PressPass: [http://www.microsoft.com/presspass/press/2007/feb07/02-12VanishingPointWinnerPR.mspx Microsoft and AMD Award Space Trip to “Vanishing Point” Winner]&lt;br /&gt;
&lt;br /&gt;
ComputerWorld: [http://www.computerworld.com/action/article.do?command=viewArticleBasic&amp;amp;articleId=9011149&amp;amp;intsrc=hm_list Beam me up, Bill: Network technician wins Vista &#039;rocketplane&#039; ride]&lt;br /&gt;
&lt;br /&gt;
Global Giants photo: [http://www.globalgiants.com/archives/000728.html Space Winner: GlobalGiants.com]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=User:Quintes&amp;diff=3641</id>
		<title>User:Quintes</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=User:Quintes&amp;diff=3641"/>
		<updated>2007-06-11T06:03:03Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by Bp0Gzo (Talk); changed back to last version by Quintes&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Introduction ==&lt;br /&gt;
I&#039;m Quintes - that&#039;s all you need to know...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Other Information ==&lt;br /&gt;
Location: California&amp;lt;br&amp;gt;&lt;br /&gt;
Age: 20&amp;lt;br&amp;gt;&lt;br /&gt;
Sex: Male&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Talk:Letters_From_Home&amp;diff=3640</id>
		<title>Talk:Letters From Home</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Talk:Letters_From_Home&amp;diff=3640"/>
		<updated>2007-06-11T06:02:59Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by Ii5Gj4 (Talk); changed back to last version by PurplePenny&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I&#039;ve added the identity of the missing country (April 9th) as a spoiler.  The photo isn&#039;t clear but the stamps are Penny Blacks. [[User:PurplePenny|PurplePenny]] 06:51, 23 January 2007 (PST)&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Video-Las_Vegas&amp;diff=3639</id>
		<title>Video-Las Vegas</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Video-Las_Vegas&amp;diff=3639"/>
		<updated>2007-06-11T06:02:58Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by YljB6s (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;#REDIRECT [[Event 1]]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Template:Quick_References&amp;diff=3638</id>
		<title>Template:Quick References</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Template:Quick_References&amp;diff=3638"/>
		<updated>2007-06-11T06:02:40Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by JpzRsa (Talk); changed back to last version by Drizjr&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[Contact Information]]&amp;lt;br&amp;gt;&lt;br /&gt;
*[[Video|List of Videos]]&amp;lt;br&amp;gt;&lt;br /&gt;
*[[Web Pages]]&amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Talk:Calendar_Wheel&amp;diff=3637</id>
		<title>Talk:Calendar Wheel</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Talk:Calendar_Wheel&amp;diff=3637"/>
		<updated>2007-06-11T06:02:10Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by CasLvu (Talk); changed back to last version by PurplePenny&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I found it easier to work from the inside out!&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3636</id>
		<title>Meta:Spam Blacklist</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3636"/>
		<updated>2007-06-11T06:00:20Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; #&amp;lt;!-- leave this line exactly as it is --&amp;gt; &amp;lt;pre&amp;gt; &lt;br /&gt;
#&lt;br /&gt;
# In simple terms:&lt;br /&gt;
#    * Everything from a &amp;quot;#&amp;quot; character to the end of the line is a comment&lt;br /&gt;
#    * Every non-blank line is a regex fragment which will only match inside URLs&lt;br /&gt;
#&lt;br /&gt;
# Internally, a regex is formed which looks like this:&lt;br /&gt;
#&lt;br /&gt;
#    !http://[a-z0-9\-.]*(line 1|line 2|line 3|....)!Si&lt;br /&gt;
#&lt;br /&gt;
# A few notes about this format. It&#039;s not necessary to add www to the start of&lt;br /&gt;
# hostnames, the regex is designed to match any subdomain. Don&#039;t add patterns&lt;br /&gt;
# to your file which may run off the end of the URL, e.g. anything containing &lt;br /&gt;
# &amp;quot;.*&amp;quot;. Unlike in some similar systems, the line-end metacharacter &amp;quot;$&amp;quot; will not&lt;br /&gt;
# assert the end of the hostname, it&#039;ll assert the end of the page.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
# Test blacklist&lt;br /&gt;
example\.com&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-10-16&lt;br /&gt;
casino-games&lt;br /&gt;
adipex&lt;br /&gt;
tramadol&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-12-22 because of User 1166728278&lt;br /&gt;
dgo5d.info&lt;br /&gt;
ringtone&lt;br /&gt;
&lt;br /&gt;
# Spammer URL added 2007-02-06 because of user Sadfsa&lt;br /&gt;
pornolicios.info&lt;br /&gt;
&lt;br /&gt;
# More spam terms, added 2007-06-10&lt;br /&gt;
diazepam&lt;br /&gt;
xenical&lt;br /&gt;
ringtones&lt;br /&gt;
&lt;br /&gt;
 #&amp;lt;/pre&amp;gt; &amp;lt;!-- leave this line exactly as it is --&amp;gt;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Talk:History_Lesson&amp;diff=3635</id>
		<title>Talk:History Lesson</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Talk:History_Lesson&amp;diff=3635"/>
		<updated>2007-06-11T05:58:47Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: rollback&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;I went for first assembly line for Ford - doesn&#039;t matter though: the answer is still the same!!&lt;br /&gt;
&lt;br /&gt;
Einstein had a number of firsts to his name but I think that the theory of relativity fits the answer.&lt;br /&gt;
&lt;br /&gt;
I too got the final clue without knowing the real answer to the two event clues but I have a problem with them both.  (Spoilers added because the discussion gives away the method of reaching the answers) &amp;lt;spoiler&amp;gt;Aryabhata is believed to be the first person to describe a heliocentric solar system: he was born in Ashmak (which fits the place name in both unfilled lines) but he lived and studied in Kusumapura, also called Pataliputra (now Patna), in India.  None of those fit either of the vacant lines.  I did wonder whether they had used Hindustan for India .... but that doesn&#039;t fit unless an old spelling (Hindoostan) is used.  If that were the case then the other unfilled line would be the one that refrered to the arches.  The &#039;R&#039; in the country name means that it has to be Iraq or Iran but the earliest arches are from the Indus Valley (Pakistan) and Mesopotamia (Iraq) was later.&amp;lt;/spoiler&amp;gt;&lt;br /&gt;
Oh well: it&#039;s all academic anyway since it is possible to get the final clue without these two answers.  I shall just be interested to see what the official answers to those two lines are.[[User:PurplePenny|PurplePenny]] 05:12, 23 January 2007 (PST)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt;4 and #8 have been filled in.  Still researching #2.  D_West 1705 24 JAN 2007&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;nowiki&amp;gt;#&amp;lt;/nowiki&amp;gt;2 has possible solution.  D_West 1705 26 JAN 2007&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=History_Lesson&amp;diff=3634</id>
		<title>History Lesson</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=History_Lesson&amp;diff=3634"/>
		<updated>2007-06-11T05:57:14Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by PadU2x (Talk); changed back to last version by JazzKnight&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Image:History Lesson.png]]&lt;br /&gt;
&lt;br /&gt;
[[Image:History Lesson 1.png]]&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
Clues [[Projections|projected]] on The Brandenburg Gate, Berlin.&amp;lt;br&amp;gt; &lt;br /&gt;
[[Image:Projections_Berlin.jpg]]&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;spoiler&amp;gt;&lt;br /&gt;
The images you see all represent firsts, ie. first printing press, first man in space, etc.&lt;br /&gt;
&lt;br /&gt;
The notebook spaces do not fit the names, but the locations specific to those activities do. &lt;br /&gt;
&lt;br /&gt;
The notebook spaces are filled as follows:&lt;br /&gt;
&lt;br /&gt;
1. First solo transatlantic flight by Charles Lindbergh (mid-right picture) ended at Paris, &#039;&#039;&#039;F&#039;&#039;&#039;rance&lt;br /&gt;
&lt;br /&gt;
2. First architectural arches (Brandenburg Gate event picture) are often associated with Babylon in modern day Iraq perhaps ------,&#039;&#039;&#039;IR&#039;&#039;&#039;--&lt;br /&gt;
&amp;lt;&amp;lt; EDIT &amp;gt;&amp;gt; Possible answer: I came across this [http://www.eartharchitecture.org/ website].  Down about 3/4 of the way is a reference to [http://en.wikipedia.org/wiki/Ctesiphon Ctesiphon Arch] in Iraq.  Names that reference it are Tisfun, Madain (Mada&#039;in), and Kasfia.  This would be almost enough answer to me.&lt;br /&gt;
&lt;br /&gt;
3. First cave paintings (bottom right picture) found in La&#039;&#039;&#039;S&#039;&#039;&#039;caux, France&lt;br /&gt;
&lt;br /&gt;
4. (unknown) Should be associated with planets or solar system (Brandenburg Gate event picture) and fit the form ------,-------&#039;&#039;&#039;TA&#039;&#039;&#039;- (could be Kazakhstan, Kyrgyzstan, Tajikistan or Uzbekistan)&lt;br /&gt;
&amp;lt;&amp;lt; EDIT 24 JAN 2007 - Answer is Tyuratam, Kazakhs&#039;&#039;&#039;TA&#039;&#039;&#039;n.  Tyuratam is another name for [http://en.wikipedia.org/wiki/Baikonur_Cosmodrome Baikonur].  This should eliminate #8&#039;s original clue below. #8 is associated with solar system / Sun &amp;gt;&amp;gt;&lt;br /&gt;
&amp;lt;&amp;lt; EDIT 27 JAN 2007 - Answer is more likely Engels, Kazakhs&#039;&#039;&#039;TA&#039;&#039;&#039;n, the place where Gagarin landed, since this more precisely fits the blanks in the puzzle &amp;gt;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
5. First airplane, Wright Flyer (top right picture) flew in Kitty Hawk, No&#039;&#039;&#039;R&#039;&#039;&#039;th Car&#039;&#039;&#039;O&#039;&#039;&#039;lina&lt;br /&gt;
&lt;br /&gt;
6. First constitution or democracy was established when King John was forced to sign the Magna Carta (bottom-mid picture) at R&#039;&#039;&#039;U&#039;&#039;&#039;nnymede, E&#039;&#039;&#039;N&#039;&#039;&#039;glan&#039;&#039;&#039;D&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
7. First printing press (bottom left picture) was built by Johannes Gutenberg in Mainz, G&#039;&#039;&#039;E&#039;&#039;&#039;rm&#039;&#039;&#039;A&#039;&#039;&#039;ny&lt;br /&gt;
&lt;br /&gt;
8. First man in space was Yuri Gagarin (top center picture) launched from Baikon&#039;&#039;&#039;U&#039;&#039;&#039;r, Russia (Note: this should be an &#039;R&#039;) [?? Baikonur is in Kazakhstan or USSR, not Russia]&lt;br /&gt;
&amp;lt;&amp;lt; EDIT 24 JAN 2007 - Answer seems to be Frombo&#039;&#039;&#039;R&#039;&#039;&#039;k, Poland.  This is where [http://en.wikipedia.org/wiki/Nicholas_Copernicus Nicolas Copernicus], &amp;quot;the astronomer who formulated the first modern heliocentric theory of the solar system&amp;quot;, died. &amp;gt;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
9. First major cosmic revision since Newton was Albert Einstein (bottom left picture) who lived in Bern, Swi&#039;&#039;&#039;T&#039;&#039;&#039;zerland when he published his most important work&lt;br /&gt;
&lt;br /&gt;
10. First assembly line was the Ford Model T factory (top left picture) built in Detroit, Mic&#039;&#039;&#039;H&#039;&#039;&#039;igan&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Note that 8 of the entries come from in-game picture while the last 2 come from the live event pictures from Berlin.&lt;br /&gt;
&lt;br /&gt;
If you fill in the blanks, you get FIRST AROUND EARTH. The answer is &#039;&#039;&#039;MAGELLAN&#039;&#039;&#039;.&lt;br /&gt;
&amp;lt;/spoiler&amp;gt;&lt;br /&gt;
&#039;&#039;Next book: [[Composers]]&#039;&#039;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Vanishing_Point_Wiki:General_disclaimer&amp;diff=3619</id>
		<title>Vanishing Point Wiki:General disclaimer</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Vanishing_Point_Wiki:General_disclaimer&amp;diff=3619"/>
		<updated>2007-06-07T01:56:01Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Protected &amp;quot;Vanishing Point Wiki:General disclaimer&amp;quot;: Someone keeps changing the file and truncating at &amp;quot;&amp;amp;&amp;quot;, making me think it&amp;#039;s an automated tool and/or spammer [edit=sysop:move=sysop]&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please read all instructions and warnings before use. Must be 18 years of age or older to proceed further. Enter at your own risk. Do not enter. Speed limit - 28.8 or higher. Stop here on red. Hostess will seat you. Trucks over 4 tons excluded. Void where prohibited by law. Some assembly required. This is a test of the emergency broadcast system - this is ONLY A TEST! List each check separately by bank number. Batteries not included. Contents may settle during shipment. Any resemblance to persons living or dead is purely coincidental. Use only as directed. For indoor or outdoor use only. Wearing of this garment does not enable you to fly. We make no other warranties, expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. Postal service will not deliver mail without postage. No postage necessary if mailed in the United States. Subject to CAB approval. This is not an offer to sell securities. May be too intense for some viewers. See other side for additional listings. This product is meant for educational purposes only. For recreational use only. For office use only. For entertainment purposes only. Only 1 winner per household. Do not disturb. All models are over 18 years of age. Apply only to infected areas. If condition persists, consult your physician. Take two of these and call me in the morning. An apple a day keeps the doctor away. Now with new plastic applicator. High altitude directions-increase cook time by 10 minutes. This is not an attorney advertisement or referal service. No user-serviceable parts inside. Website contains small parts and is not intended for use by children under the age of eighteen. This compact disc was originally recorded on analog equipment. Freshest if eaten before date on carton. Times are approximate. Do not disturb. Simulated picture. Please remain seated until the ride comes to a complete stop. Return your seatback and tray table to their normal upright position. Your seat cushion can be used as a flotation device. In the event of decreased air pressure, oxygen masks will pop out of the top of your monitor. The call you have made requires a 20 cent deposit. Breaking seal constitutes acceptance of agreement. For off-road use only. Do not block intersection. No tresspassing. No stopping or standing. Don&#039;t even think about parking here. No parking when road is snow covered. As seen on TV. One size fits all. Product will be hot after heating. Do not iron clothes on body. Remove clothing before distributing in washing machine. Do not use while sleeping. Do not use on food. Many suitcases look alike. Contains a substantial amount of non-Tobacco ingredients. Colors may fade. Insert this end first. We have sent the forms which seem right for you. This page made from 100% recycled electrons. Slippery when wet. No substitutions allowed. For a limited time only. Void where prohibited, taxed, or otherwise restricted. Caveat emptor. Provided &amp;quot;as-is&amp;quot; without warranty. Reader assumes full responsibility. We are an equal opportunity employer. No shoes, no shirt, no service. Quantities are limited while supplies last. If any defects are discovered, do not attempt to fix them yourself, but return to an authorized service center. Read at your own risk. Parental advisory - explicit lyrics. Text may contain explicit materials some readers may find objectionable, parental guidance is advised. Keep away from sunlight. Keep away from pets and small children. Limit one per family please. No money down. No purchase necessary. Not affiliated with the American Red Cross. Drop in any mailbox. Edited for television. Keep cool. Process promptly. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. Webmaster is also not responsible for items left, lost or stolen. At participating locations only. Sold by weight, not by volume. Penalty for private use. See label for sequence. This web site rated &#039;R&#039; for Mature audiences. Do not take with alcohol. Sealed for your protection - do not use if safety seal is broken. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Use seatbelts even with airbags. Do not stop on railroad tracks. Lost ticket pays maximum rate. Your canceled check is your receipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Employees must wash hands before returning to work. Caution, coffee is served HOT. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Filmed in front of a live, studio audience. Call now to ensure prompt delivery. Leave off the last S for savings. Calls may be monitored for quality assurance or training purposes.  Please make your selections from the following menu.  All representatives are still busy assisting other callers.   Please stay on the line and a representative will be with you when they feel the need.  Please call back during our normal business hours.  You must be present to win. Winners need not be present to win. No passes accepted for this engagement. Do not use this product with a petroleum based lubricant. No animals were harmed in the preparation of this web site; only humans. This web page contains no CFCs. Discontinue use if nausea or dizziness occurs. Shading within a garment may occur. Use only in a well-ventilated area. Keep away from fire or flames. No soliciting. Bridge freezes before road surface. Stop, get ticket. Right lane must turn right. Left lane must turn left. Middle lane must make up their damn minds. This site runs on unleaded fuel only. Objects in mirror may be closer than they appear. Buses and carpools with two or more people only. No hitchhiking. Components may be hot. Silica gel - do not eat. Not to be used in conjunction with any other offer. Details on reverse side. Shoplifters will be prosecuted to the fullest extent of the law. We reserve the right to check all bags, coats &amp;amp; personal belongings upon exiting this page. Recycle. Fragile - handle with care. This side up. No jumping or diving. No running by the pool. Register has less than $50 after dark. Driver does not carry cash. No swimming unless lifeguard is present. Swim at your own risk! Please do not wade in fountain. Guaranteed low prices. Not transferable. Actual size not shown. Contents under pressure. Do not intentionally inhale vapors. Replace with same type. Approved for veterans. Please be kind, rewind. Booths for two or more. Check here if tax deductible. Action figures sold separately. No preservatives added. Some equipment shown is optional. Price does not include tax. Do not remove any HTML tags under penalty of law. Hand wash only - tumble dry on low heat. No Canadian coins. Short circuit may cause fire. No more than 3 transactions per car. Not recommended for small children. Prerecorded for this time zone. Reproduction strictly prohibited. No alcohol, dogs or horses. Not for resale. List at least two alternate dates. Blackout dates may apply. Viewing by pregnant women may result in fetal injury, premature birth and low birth weight. First pull up, then pull down. Insert Tab A into Slot B. Call toll free number before digging. This space (____________) intentionally left blank. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. Unix is a registered trademark of AT&amp;amp;T. Do not fold, spindle or mutilate. No transfers issued until the bus comes to a complete stop. Doors do not rebound or bounce back. Your mileage may vary. This article does not reflect the thoughts or opinions of either myself, my company, my friends, or my cat. Don&#039;t quote me on that. Don&#039;t quote me on anything. All rights reserved. Patent pending. For external use only. Avoid extreme temperatures. Avoid contact with eyes and skin. Do not puncture, incinerate, or store above 120 degrees Fahrenheit. Do not place near a magnetic source. Smoking could be hazardous to your health. Cigarette Smoke Contains Carbon Monoxide. Smoking Causes Lung Cancer, Heart Disease, Emphysema. The best safeguard, second only to abstinence, is the use of a condom. No salt, MSG, artificial color or flavoring added. If ingested, induce vomiting. Ribbed for her pleasure. Offer valid only at participating locations. Slightly higher west of the Rockies. Allow four to six weeks for delivery. You may distribute this article freely, but may not make a profit from it. Actual cash value of this website is 1/1000th of a cent. Listen to your mom. Eat your veggies. Wear your seatbelt. Don&#039;t take candy from strangers... or strange people... or anyone really. Illustrations are slightly enlarged to show detail. If something offends you, lighten up, get a life and move on. This list was current at the time of printing. Terms are subject to change without notice. All decisions are final! This supersedes all previous notices.&lt;br /&gt;
&lt;br /&gt;
Disclaimer does not cover misuse, accident, lightning, flood, tornado, tsunami, volcanic eruption, earthquake, hurricanes, or other acts of God, neglect, damage from improper use, incorrect line voltage, unauthorized use, unauthorized repair, improper installation, typos, broken antenna or marred cabinet, missing or altered serial numbers, electromagnetic radiation from nuclear blasts, sonic boom vibrations, customer adjustments that are not covered in this list, and incidents owing to an airplane crash, ship sinking or taking on water, motor vehicle crashing, dropping the item, falling rocks, leaky roof, broken glass, disk failure, accidental file deletions, mud slides, forest fire, hitting of a deer, milk coming out of your nose due to laughing while drinking, or projectiles, which can include, but are not limited to, arrows, bullet shots, BBs, shrapnel, lasers, napalm, torpedoes, emissions of X-rays, Alpha, Beta and Gamma rays, knives, stones, etc.&lt;br /&gt;
&lt;br /&gt;
This disclaimer may not be copied or reproduced in any form without the expressed written consent of [http://www.funehumor.com/disclaim.shtml whoever I stole it from].&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Vanishing_Point_Wiki:General_disclaimer&amp;diff=3618</id>
		<title>Vanishing Point Wiki:General disclaimer</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Vanishing_Point_Wiki:General_disclaimer&amp;diff=3618"/>
		<updated>2007-06-07T01:54:48Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by NqbC1r (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please read all instructions and warnings before use. Must be 18 years of age or older to proceed further. Enter at your own risk. Do not enter. Speed limit - 28.8 or higher. Stop here on red. Hostess will seat you. Trucks over 4 tons excluded. Void where prohibited by law. Some assembly required. This is a test of the emergency broadcast system - this is ONLY A TEST! List each check separately by bank number. Batteries not included. Contents may settle during shipment. Any resemblance to persons living or dead is purely coincidental. Use only as directed. For indoor or outdoor use only. Wearing of this garment does not enable you to fly. We make no other warranties, expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. Postal service will not deliver mail without postage. No postage necessary if mailed in the United States. Subject to CAB approval. This is not an offer to sell securities. May be too intense for some viewers. See other side for additional listings. This product is meant for educational purposes only. For recreational use only. For office use only. For entertainment purposes only. Only 1 winner per household. Do not disturb. All models are over 18 years of age. Apply only to infected areas. If condition persists, consult your physician. Take two of these and call me in the morning. An apple a day keeps the doctor away. Now with new plastic applicator. High altitude directions-increase cook time by 10 minutes. This is not an attorney advertisement or referal service. No user-serviceable parts inside. Website contains small parts and is not intended for use by children under the age of eighteen. This compact disc was originally recorded on analog equipment. Freshest if eaten before date on carton. Times are approximate. Do not disturb. Simulated picture. Please remain seated until the ride comes to a complete stop. Return your seatback and tray table to their normal upright position. Your seat cushion can be used as a flotation device. In the event of decreased air pressure, oxygen masks will pop out of the top of your monitor. The call you have made requires a 20 cent deposit. Breaking seal constitutes acceptance of agreement. For off-road use only. Do not block intersection. No tresspassing. No stopping or standing. Don&#039;t even think about parking here. No parking when road is snow covered. As seen on TV. One size fits all. Product will be hot after heating. Do not iron clothes on body. Remove clothing before distributing in washing machine. Do not use while sleeping. Do not use on food. Many suitcases look alike. Contains a substantial amount of non-Tobacco ingredients. Colors may fade. Insert this end first. We have sent the forms which seem right for you. This page made from 100% recycled electrons. Slippery when wet. No substitutions allowed. For a limited time only. Void where prohibited, taxed, or otherwise restricted. Caveat emptor. Provided &amp;quot;as-is&amp;quot; without warranty. Reader assumes full responsibility. We are an equal opportunity employer. No shoes, no shirt, no service. Quantities are limited while supplies last. If any defects are discovered, do not attempt to fix them yourself, but return to an authorized service center. Read at your own risk. Parental advisory - explicit lyrics. Text may contain explicit materials some readers may find objectionable, parental guidance is advised. Keep away from sunlight. Keep away from pets and small children. Limit one per family please. No money down. No purchase necessary. Not affiliated with the American Red Cross. Drop in any mailbox. Edited for television. Keep cool. Process promptly. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. Webmaster is also not responsible for items left, lost or stolen. At participating locations only. Sold by weight, not by volume. Penalty for private use. See label for sequence. This web site rated &#039;R&#039; for Mature audiences. Do not take with alcohol. Sealed for your protection - do not use if safety seal is broken. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Use seatbelts even with airbags. Do not stop on railroad tracks. Lost ticket pays maximum rate. Your canceled check is your receipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Employees must wash hands before returning to work. Caution, coffee is served HOT. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Filmed in front of a live, studio audience. Call now to ensure prompt delivery. Leave off the last S for savings. Calls may be monitored for quality assurance or training purposes.  Please make your selections from the following menu.  All representatives are still busy assisting other callers.   Please stay on the line and a representative will be with you when they feel the need.  Please call back during our normal business hours.  You must be present to win. Winners need not be present to win. No passes accepted for this engagement. Do not use this product with a petroleum based lubricant. No animals were harmed in the preparation of this web site; only humans. This web page contains no CFCs. Discontinue use if nausea or dizziness occurs. Shading within a garment may occur. Use only in a well-ventilated area. Keep away from fire or flames. No soliciting. Bridge freezes before road surface. Stop, get ticket. Right lane must turn right. Left lane must turn left. Middle lane must make up their damn minds. This site runs on unleaded fuel only. Objects in mirror may be closer than they appear. Buses and carpools with two or more people only. No hitchhiking. Components may be hot. Silica gel - do not eat. Not to be used in conjunction with any other offer. Details on reverse side. Shoplifters will be prosecuted to the fullest extent of the law. We reserve the right to check all bags, coats &amp;amp; personal belongings upon exiting this page. Recycle. Fragile - handle with care. This side up. No jumping or diving. No running by the pool. Register has less than $50 after dark. Driver does not carry cash. No swimming unless lifeguard is present. Swim at your own risk! Please do not wade in fountain. Guaranteed low prices. Not transferable. Actual size not shown. Contents under pressure. Do not intentionally inhale vapors. Replace with same type. Approved for veterans. Please be kind, rewind. Booths for two or more. Check here if tax deductible. Action figures sold separately. No preservatives added. Some equipment shown is optional. Price does not include tax. Do not remove any HTML tags under penalty of law. Hand wash only - tumble dry on low heat. No Canadian coins. Short circuit may cause fire. No more than 3 transactions per car. Not recommended for small children. Prerecorded for this time zone. Reproduction strictly prohibited. No alcohol, dogs or horses. Not for resale. List at least two alternate dates. Blackout dates may apply. Viewing by pregnant women may result in fetal injury, premature birth and low birth weight. First pull up, then pull down. Insert Tab A into Slot B. Call toll free number before digging. This space (____________) intentionally left blank. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. Unix is a registered trademark of AT&amp;amp;T. Do not fold, spindle or mutilate. No transfers issued until the bus comes to a complete stop. Doors do not rebound or bounce back. Your mileage may vary. This article does not reflect the thoughts or opinions of either myself, my company, my friends, or my cat. Don&#039;t quote me on that. Don&#039;t quote me on anything. All rights reserved. Patent pending. For external use only. Avoid extreme temperatures. Avoid contact with eyes and skin. Do not puncture, incinerate, or store above 120 degrees Fahrenheit. Do not place near a magnetic source. Smoking could be hazardous to your health. Cigarette Smoke Contains Carbon Monoxide. Smoking Causes Lung Cancer, Heart Disease, Emphysema. The best safeguard, second only to abstinence, is the use of a condom. No salt, MSG, artificial color or flavoring added. If ingested, induce vomiting. Ribbed for her pleasure. Offer valid only at participating locations. Slightly higher west of the Rockies. Allow four to six weeks for delivery. You may distribute this article freely, but may not make a profit from it. Actual cash value of this website is 1/1000th of a cent. Listen to your mom. Eat your veggies. Wear your seatbelt. Don&#039;t take candy from strangers... or strange people... or anyone really. Illustrations are slightly enlarged to show detail. If something offends you, lighten up, get a life and move on. This list was current at the time of printing. Terms are subject to change without notice. All decisions are final! This supersedes all previous notices.&lt;br /&gt;
&lt;br /&gt;
Disclaimer does not cover misuse, accident, lightning, flood, tornado, tsunami, volcanic eruption, earthquake, hurricanes, or other acts of God, neglect, damage from improper use, incorrect line voltage, unauthorized use, unauthorized repair, improper installation, typos, broken antenna or marred cabinet, missing or altered serial numbers, electromagnetic radiation from nuclear blasts, sonic boom vibrations, customer adjustments that are not covered in this list, and incidents owing to an airplane crash, ship sinking or taking on water, motor vehicle crashing, dropping the item, falling rocks, leaky roof, broken glass, disk failure, accidental file deletions, mud slides, forest fire, hitting of a deer, milk coming out of your nose due to laughing while drinking, or projectiles, which can include, but are not limited to, arrows, bullet shots, BBs, shrapnel, lasers, napalm, torpedoes, emissions of X-rays, Alpha, Beta and Gamma rays, knives, stones, etc.&lt;br /&gt;
&lt;br /&gt;
This disclaimer may not be copied or reproduced in any form without the expressed written consent of [http://www.funehumor.com/disclaim.shtml whoever I stole it from].&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Vanishing_Point_Wiki:General_disclaimer&amp;diff=3616</id>
		<title>Vanishing Point Wiki:General disclaimer</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Vanishing_Point_Wiki:General_disclaimer&amp;diff=3616"/>
		<updated>2007-06-04T14:21:06Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Undo revision 3615 by Special:Contributions/JxtRls (User talk:JxtRls)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Please read all instructions and warnings before use. Must be 18 years of age or older to proceed further. Enter at your own risk. Do not enter. Speed limit - 28.8 or higher. Stop here on red. Hostess will seat you. Trucks over 4 tons excluded. Void where prohibited by law. Some assembly required. This is a test of the emergency broadcast system - this is ONLY A TEST! List each check separately by bank number. Batteries not included. Contents may settle during shipment. Any resemblance to persons living or dead is purely coincidental. Use only as directed. For indoor or outdoor use only. Wearing of this garment does not enable you to fly. We make no other warranties, expressed or implied. Do not use while operating a motor vehicle or heavy equipment. Postage will be paid by addressee. Postal service will not deliver mail without postage. No postage necessary if mailed in the United States. Subject to CAB approval. This is not an offer to sell securities. May be too intense for some viewers. See other side for additional listings. This product is meant for educational purposes only. For recreational use only. For office use only. For entertainment purposes only. Only 1 winner per household. Do not disturb. All models are over 18 years of age. Apply only to infected areas. If condition persists, consult your physician. Take two of these and call me in the morning. An apple a day keeps the doctor away. Now with new plastic applicator. High altitude directions-increase cook time by 10 minutes. This is not an attorney advertisement or referal service. No user-serviceable parts inside. Website contains small parts and is not intended for use by children under the age of eighteen. This compact disc was originally recorded on analog equipment. Freshest if eaten before date on carton. Times are approximate. Do not disturb. Simulated picture. Please remain seated until the ride comes to a complete stop. Return your seatback and tray table to their normal upright position. Your seat cushion can be used as a flotation device. In the event of decreased air pressure, oxygen masks will pop out of the top of your monitor. The call you have made requires a 20 cent deposit. Breaking seal constitutes acceptance of agreement. For off-road use only. Do not block intersection. No tresspassing. No stopping or standing. Don&#039;t even think about parking here. No parking when road is snow covered. As seen on TV. One size fits all. Product will be hot after heating. Do not iron clothes on body. Remove clothing before distributing in washing machine. Do not use while sleeping. Do not use on food. Many suitcases look alike. Contains a substantial amount of non-Tobacco ingredients. Colors may fade. Insert this end first. We have sent the forms which seem right for you. This page made from 100% recycled electrons. Slippery when wet. No substitutions allowed. For a limited time only. Void where prohibited, taxed, or otherwise restricted. Caveat emptor. Provided &amp;quot;as-is&amp;quot; without warranty. Reader assumes full responsibility. We are an equal opportunity employer. No shoes, no shirt, no service. Quantities are limited while supplies last. If any defects are discovered, do not attempt to fix them yourself, but return to an authorized service center. Read at your own risk. Parental advisory - explicit lyrics. Text may contain explicit materials some readers may find objectionable, parental guidance is advised. Keep away from sunlight. Keep away from pets and small children. Limit one per family please. No money down. No purchase necessary. Not affiliated with the American Red Cross. Drop in any mailbox. Edited for television. Keep cool. Process promptly. Return to sender, no forwarding order on file, unable to forward. Not responsible for direct, indirect, incidental or consequential damages resulting from any defect, error or failure to perform. Webmaster is also not responsible for items left, lost or stolen. At participating locations only. Sold by weight, not by volume. Penalty for private use. See label for sequence. This web site rated &#039;R&#039; for Mature audiences. Do not take with alcohol. Sealed for your protection - do not use if safety seal is broken. Substantial penalty for early withdrawal. Do not write below this line. Falling rock. Use seatbelts even with airbags. Do not stop on railroad tracks. Lost ticket pays maximum rate. Your canceled check is your receipt. Add toner. Place stamp here. Avoid contact with skin. Sanitized for your protection. Employees must wash hands before returning to work. Caution, coffee is served HOT. Be sure each item is properly endorsed. Sign here without admitting guilt. Slightly higher west of the Mississippi. Employees and their families are not eligible. Beware of dog. Contestants have been briefed on some questions before the show. Filmed in front of a live, studio audience. Call now to ensure prompt delivery. Leave off the last S for savings. Calls may be monitored for quality assurance or training purposes.  Please make your selections from the following menu.  All representatives are still busy assisting other callers.   Please stay on the line and a representative will be with you when they feel the need.  Please call back during our normal business hours.  You must be present to win. Winners need not be present to win. No passes accepted for this engagement. Do not use this product with a petroleum based lubricant. No animals were harmed in the preparation of this web site; only humans. This web page contains no CFCs. Discontinue use if nausea or dizziness occurs. Shading within a garment may occur. Use only in a well-ventilated area. Keep away from fire or flames. No soliciting. Bridge freezes before road surface. Stop, get ticket. Right lane must turn right. Left lane must turn left. Middle lane must make up their damn minds. This site runs on unleaded fuel only. Objects in mirror may be closer than they appear. Buses and carpools with two or more people only. No hitchhiking. Components may be hot. Silica gel - do not eat. Not to be used in conjunction with any other offer. Details on reverse side. Shoplifters will be prosecuted to the fullest extent of the law. We reserve the right to check all bags, coats &amp;amp; personal belongings upon exiting this page. Recycle. Fragile - handle with care. This side up. No jumping or diving. No running by the pool. Register has less than $50 after dark. Driver does not carry cash. No swimming unless lifeguard is present. Swim at your own risk! Please do not wade in fountain. Guaranteed low prices. Not transferable. Actual size not shown. Contents under pressure. Do not intentionally inhale vapors. Replace with same type. Approved for veterans. Please be kind, rewind. Booths for two or more. Check here if tax deductible. Action figures sold separately. No preservatives added. Some equipment shown is optional. Price does not include tax. Do not remove any HTML tags under penalty of law. Hand wash only - tumble dry on low heat. No Canadian coins. Short circuit may cause fire. No more than 3 transactions per car. Not recommended for small children. Prerecorded for this time zone. Reproduction strictly prohibited. No alcohol, dogs or horses. Not for resale. List at least two alternate dates. Blackout dates may apply. Viewing by pregnant women may result in fetal injury, premature birth and low birth weight. First pull up, then pull down. Insert Tab A into Slot B. Call toll free number before digging. This space (____________) intentionally left blank. Some of the trademarks mentioned in this product appear for identification purposes only. Record additional transactions on back of previous stub. Unix is a registered trademark of AT&amp;amp;T. Do not fold, spindle or mutilate. No transfers issued until the bus comes to a complete stop. Doors do not rebound or bounce back. Your mileage may vary. This article does not reflect the thoughts or opinions of either myself, my company, my friends, or my cat. Don&#039;t quote me on that. Don&#039;t quote me on anything. All rights reserved. Patent pending. For external use only. Avoid extreme temperatures. Avoid contact with eyes and skin. Do not puncture, incinerate, or store above 120 degrees Fahrenheit. Do not place near a magnetic source. Smoking could be hazardous to your health. Cigarette Smoke Contains Carbon Monoxide. Smoking Causes Lung Cancer, Heart Disease, Emphysema. The best safeguard, second only to abstinence, is the use of a condom. No salt, MSG, artificial color or flavoring added. If ingested, induce vomiting. Ribbed for her pleasure. Offer valid only at participating locations. Slightly higher west of the Rockies. Allow four to six weeks for delivery. You may distribute this article freely, but may not make a profit from it. Actual cash value of this website is 1/1000th of a cent. Listen to your mom. Eat your veggies. Wear your seatbelt. Don&#039;t take candy from strangers... or strange people... or anyone really. Illustrations are slightly enlarged to show detail. If something offends you, lighten up, get a life and move on. This list was current at the time of printing. Terms are subject to change without notice. All decisions are final! This supersedes all previous notices.&lt;br /&gt;
&lt;br /&gt;
Disclaimer does not cover misuse, accident, lightning, flood, tornado, tsunami, volcanic eruption, earthquake, hurricanes, or other acts of God, neglect, damage from improper use, incorrect line voltage, unauthorized use, unauthorized repair, improper installation, typos, broken antenna or marred cabinet, missing or altered serial numbers, electromagnetic radiation from nuclear blasts, sonic boom vibrations, customer adjustments that are not covered in this list, and incidents owing to an airplane crash, ship sinking or taking on water, motor vehicle crashing, dropping the item, falling rocks, leaky roof, broken glass, disk failure, accidental file deletions, mud slides, forest fire, hitting of a deer, milk coming out of your nose due to laughing while drinking, or projectiles, which can include, but are not limited to, arrows, bullet shots, BBs, shrapnel, lasers, napalm, torpedoes, emissions of X-rays, Alpha, Beta and Gamma rays, knives, stones, etc.&lt;br /&gt;
&lt;br /&gt;
This disclaimer may not be copied or reproduced in any form without the expressed written consent of [http://www.funehumor.com/disclaim.shtml whoever I stole it from].&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3548</id>
		<title>Meta:Spam Blacklist</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Meta:Spam_Blacklist&amp;diff=3548"/>
		<updated>2007-02-07T01:49:01Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt; #&amp;lt;!-- leave this line exactly as it is --&amp;gt; &amp;lt;pre&amp;gt; &lt;br /&gt;
#&lt;br /&gt;
# In simple terms:&lt;br /&gt;
#    * Everything from a &amp;quot;#&amp;quot; character to the end of the line is a comment&lt;br /&gt;
#    * Every non-blank line is a regex fragment which will only match inside URLs&lt;br /&gt;
#&lt;br /&gt;
# Internally, a regex is formed which looks like this:&lt;br /&gt;
#&lt;br /&gt;
#    !http://[a-z0-9\-.]*(line 1|line 2|line 3|....)!Si&lt;br /&gt;
#&lt;br /&gt;
# A few notes about this format. It&#039;s not necessary to add www to the start of&lt;br /&gt;
# hostnames, the regex is designed to match any subdomain. Don&#039;t add patterns&lt;br /&gt;
# to your file which may run off the end of the URL, e.g. anything containing &lt;br /&gt;
# &amp;quot;.*&amp;quot;. Unlike in some similar systems, the line-end metacharacter &amp;quot;$&amp;quot; will not&lt;br /&gt;
# assert the end of the hostname, it&#039;ll assert the end of the page.&lt;br /&gt;
#&lt;br /&gt;
&lt;br /&gt;
# Test blacklist&lt;br /&gt;
example\.com&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-10-16&lt;br /&gt;
casino-games&lt;br /&gt;
adipex&lt;br /&gt;
tramadol&lt;br /&gt;
&lt;br /&gt;
# Spammer URL partials added 2006-12-22 because of User 1166728278&lt;br /&gt;
dgo5d.info&lt;br /&gt;
ringtone&lt;br /&gt;
&lt;br /&gt;
# Spammer URL added 2007-02-06 because of user Sadfsa&lt;br /&gt;
pornolicios.info&lt;br /&gt;
&lt;br /&gt;
 #&amp;lt;/pre&amp;gt; &amp;lt;!-- leave this line exactly as it is --&amp;gt;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Template:Resources&amp;diff=3534</id>
		<title>Template:Resources</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Template:Resources&amp;diff=3534"/>
		<updated>2007-02-02T23:59:25Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by Loki (Talk); changed back to last version by Bags&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;Sites&#039;&#039;&#039;&lt;br /&gt;
* [http://www.neowin.net/forum/index.php?showforum=199 Neowin Forums]&lt;br /&gt;
* [http://forums.unfiction.com/forums/index.php?f=211 Unfiction]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Chat&#039;&#039;&#039;&lt;br /&gt;
* IRC on [irc://irc.chat-solutions.org/vanishing #vanishing at irc.chat-solutions.org] - Connect with one of the following:&lt;br /&gt;
** your favorite IRC program like [http://www.mirc.com/ mIRC] (Windows) or [http://xchataqua.sourceforge.net/ X-Chat Aqua] (OS X)&lt;br /&gt;
** The [https://addons.mozilla.org/firefox/16/ ChatZilla] Firefox extension&lt;br /&gt;
** [http://www.argn.com/chat.php ARGN&#039;s browser-based IRC client]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Publicity&#039;&#039;&#039;&lt;br /&gt;
* [http://www.argn.com/archive/000511the_vanishing_point.php ARGNet Article]&lt;br /&gt;
* Threads on Digg: [http://digg.com/gadgets/Solve_Microsoft_s_Vanishing_Point_mystery (1)] [http://digg.com/software/Vanishing_Point_The_Game (2)] [http://digg.com/tech_news/VanishingPointGame_com (3)]&lt;br /&gt;
* [[Blogroll]] of sites that received keys&lt;br /&gt;
* [http://technorati.com/tag/vanishingpoint Technorati search for tag vanishingpoint]&lt;br /&gt;
* [http://technorati.com/tag/lokivanishes Technorati search for tag lokivanishes]&lt;br /&gt;
* [http://jayisgames.com/archives/2007/01/vanishing_point.php Review at JayIsGames.com]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Tools&#039;&#039;&#039;&lt;br /&gt;
* [http://stackoverflow.org/tools/timer.php Countdown predictor]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Template:News&amp;diff=3533</id>
		<title>Template:News</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Template:News&amp;diff=3533"/>
		<updated>2007-02-02T23:59:22Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by Loki (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&#039;&#039;&#039;2007-01-17&#039;&#039;&#039;: Upgraded to MediaWiki 1.9.0 ([https://sourceforge.net/project/shownotes.php?group_id=34373&amp;amp;release_id=477544 release notes])&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;2006-12-31&#039;&#039;&#039;: [[MediaWiki:Spoiler|Spoiler plugin source code]] is available.  There is also a new Flash video player plugin installed, as seen on the [[Video-Loki|video]] page.&amp;lt;br /&amp;gt;&lt;br /&gt;
&#039;&#039;&#039;2006-12-28&#039;&#039;&#039;: A spoiler tag has been added to the Wiki markup.  Wrap text in &amp;lt;code&amp;gt;&amp;amp;lt;spoiler&amp;gt;...&amp;amp;lt;/spoiler&amp;gt;&amp;lt;/code&amp;gt; to hide it.  See the example in the [[Meta:Sandbox|sandbox]] page.  It&#039;s not yet tested on all browsers, so let [[User:BrianEnigma|me]] know if there&#039;s a problem.  Please note that spoilers should only be used for specific puzzle solutions.  &amp;lt;br /&amp;gt;&lt;br /&gt;
This wiki is an encyclopedia of all of the knowledge gained so far, much of it the result of solving previous puzzles, so is likely to be full of spoilerish information (especially when more plot gets revealed.)  We don&#039;t need to spoilerize every single bit of information just because it might have come from some puzzle somewhere in the past.  Just put spoiler tags around blatant answers/solutions to puzzles.&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Template:Puzzle_Box_1&amp;diff=3532</id>
		<title>Template:Puzzle Box 1</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Template:Puzzle_Box_1&amp;diff=3532"/>
		<updated>2007-02-02T23:58:32Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by Loki (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;__NOTOC__&lt;br /&gt;
&amp;lt;center&amp;gt;&#039;&#039;&#039;Time passes...&#039;&#039;&#039;&amp;lt;/center&amp;gt;&lt;br /&gt;
&#039;&#039;Time is nature&#039;s way to keep everything from happening all at once...&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
Puzzle Box 1 consists of 12 puzzles, four each of Easy (10 [[points]] each), Medium (20 [[points]] each), and Hard puzzles (50 [[points]] each).  It will be opened on Monday, January 8 2007 at 6:30pm Pacific time.  Footage of [[Event 1]] is archived on the wiki.&lt;br /&gt;
====Easy====&lt;br /&gt;
* [[Sundial]] - solved&lt;br /&gt;
* [[Watch Springs]] - solved&lt;br /&gt;
* [[Mantle Clock]] - solved&lt;br /&gt;
* [[Gears]] - solved &lt;br /&gt;
&lt;br /&gt;
====Medium====&lt;br /&gt;
* [[Airport]] - solved&lt;br /&gt;
* [[Cuckoos]] - solved&lt;br /&gt;
* [[Pocket Watches]] - solved&lt;br /&gt;
* [[Current Events]] - solved&lt;br /&gt;
&lt;br /&gt;
====Hard====&lt;br /&gt;
* [[Starfield]] - solved&lt;br /&gt;
* [[Calendars]] - solved&lt;br /&gt;
* [[Repair Table]] - solved&lt;br /&gt;
* [[Hourglass]] - solved&lt;br /&gt;
&lt;br /&gt;
For the locations of the white boxes in this set of puzzles, see the [[Collection Plate]] (The &#039;&#039;White Box Phenomenon&#039;&#039; page has been merged into the [[Collection Plate]] page)[http://forums.unfiction.com/forums/viewtopic.php?t=17829]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Template:Puzzle_Box_2&amp;diff=3531</id>
		<title>Template:Puzzle Box 2</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Template:Puzzle_Box_2&amp;diff=3531"/>
		<updated>2007-02-02T23:58:20Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by Loki (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&#039;&#039;&#039;Magic Happens...&#039;&#039;&#039;&amp;lt;/center&amp;gt;&lt;br /&gt;
&#039;&#039;Step up and see the Vanishing Point, ladies and gentlemen, step right up!&#039;&#039;  &amp;lt;br&amp;gt;&lt;br /&gt;
Puzzle Box 2 consists of 12 puzzles, four each of Easy (10 [[points]] each), Medium (20 [[points]] each), and Hard puzzles (50 [[points]] each). It will be opened on Saturday, January 13 2007 at 9:00am Pacific time. Events occurred around the world, giving clues to unlock some of these puzzles.  See [[Event 2]] for event pictures.&lt;br /&gt;
&lt;br /&gt;
====Easy====&lt;br /&gt;
* [[Rabbit Trail]] - Solved&lt;br /&gt;
* [[Posters]] - Solved&lt;br /&gt;
* [[Mind Readers]] - Solved&lt;br /&gt;
* [[X-ray Cards]] - Solved&lt;br /&gt;
&lt;br /&gt;
====Medium====&lt;br /&gt;
* [[Tale of 2 Brothers]] - Solved&lt;br /&gt;
* [[Gravity Lock]] - Solved&lt;br /&gt;
* [[Domino]] - Solved&lt;br /&gt;
* [[Magic Lesson]] - Solved&lt;br /&gt;
&lt;br /&gt;
====Hard====&lt;br /&gt;
* [[Headliner]] - Solved&lt;br /&gt;
* [[Seven Card Monte]] - Solved&lt;br /&gt;
* [[Postcards]] - Solved&lt;br /&gt;
* [[Cup and Balls|Cups and Balls]] - Solved&lt;br /&gt;
&lt;br /&gt;
For the locations of the white boxes in this set of puzzles, see the [[Collection Plate]]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Template:Puzzle_Box_3&amp;diff=3530</id>
		<title>Template:Puzzle Box 3</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Template:Puzzle_Box_3&amp;diff=3530"/>
		<updated>2007-02-02T23:57:08Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by Loki (Talk); changed back to last version by BrianEnigma&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&#039;&#039;&#039;Memories fade...&#039;&#039;&#039;&amp;lt;/center&amp;gt;&lt;br /&gt;
Puzzle Box 3 consists of 12 puzzles, four each of Easy (10 [[points]] each), Medium (20 [[points]] each), and Hard puzzles (50 [[points]] each).  It will be opened on Saturday, January 20 2007 at 12:30pm GMT.  Clues were beautifully projected on buildings around the world, giving clues to unlock some of these puzzles.  See [[Event 3]] for event pictures.&lt;br /&gt;
&lt;br /&gt;
====Easy====&lt;br /&gt;
* [[Calendar Wheel]] - solved&lt;br /&gt;
* [[Speakeasy]] - solved&lt;br /&gt;
* [[Pirate Treasure]] - solved&lt;br /&gt;
* [[Laser]] - solved&lt;br /&gt;
&lt;br /&gt;
====Medium====&lt;br /&gt;
* [[Balance The Books]] - solved&lt;br /&gt;
* [[Disco Inferno]] - solved&lt;br /&gt;
* [[Number Grid]] - solved&lt;br /&gt;
* [[History Lesson]] - solved&lt;br /&gt;
&lt;br /&gt;
====Hard====&lt;br /&gt;
* [[Composers]] - solved&lt;br /&gt;
* [[Letters From Home]] - solved&lt;br /&gt;
* [[Mural]] - solved&lt;br /&gt;
* [[Tomb]] - solved&lt;br /&gt;
&lt;br /&gt;
For the locations of the white boxes in this set of puzzles, see the [[Collection Plate]][http://forums.unfiction.com/forums/viewtopic.php?t=17829]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Template:Puzzle_Box_4&amp;diff=3529</id>
		<title>Template:Puzzle Box 4</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Template:Puzzle_Box_4&amp;diff=3529"/>
		<updated>2007-02-02T23:57:00Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by Loki (Talk); changed back to last version by SVNBob&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;center&amp;gt;&#039;&#039;&#039;People disappear...&#039;&#039;&#039;&amp;lt;/center&amp;gt;&lt;br /&gt;
Puzzle Box 4 consists of 12 puzzles, four each of Easy (10 [[points]] each), Medium (20 [[points]] each), and Hard puzzles (50 [[points]] each).  It will be opened on Saturday, January 27 2007 at 6:00pm PST.  Clues will be revealed in Seattle. Photos and/or video of the event will be posted to the [[Event 4]] article.&lt;br /&gt;
&lt;br /&gt;
====Easy====&lt;br /&gt;
* [[Safe]] - Solved&lt;br /&gt;
* [[Cliff Climb]] - Solved&lt;br /&gt;
* [[Captain&#039;s Log]] - Solved&lt;br /&gt;
* [[Search and Rescue]] - Solved&lt;br /&gt;
&lt;br /&gt;
====Medium====&lt;br /&gt;
* [[Lost Luggage]] - Solved&lt;br /&gt;
* [[Memorial Plaque]] - Solved&lt;br /&gt;
* [[Chess Column]] - Solved&lt;br /&gt;
* [[Backstage]] - Solved&lt;br /&gt;
&lt;br /&gt;
====Hard====&lt;br /&gt;
* [[Music Charts]] - Solved&lt;br /&gt;
* [[Drive In]] - Solved&lt;br /&gt;
* [[Bulletin Board]] - Solved&lt;br /&gt;
* [[Room with a View]] - Solved&lt;br /&gt;
&lt;br /&gt;
For the locations of the white boxes in this set of puzzles, see the [[Collection Plate]][http://forums.unfiction.com/forums/viewtopic.php?t=17829]&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Template:Timeline&amp;diff=3528</id>
		<title>Template:Timeline</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Template:Timeline&amp;diff=3528"/>
		<updated>2007-02-02T23:56:23Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Reverted edits by Loki (Talk); changed back to last version by Out&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;* A mysterious ad on the [[IE Blog]] leads to a countdown timer&lt;br /&gt;
* The [[Countdown]] page asks for keys.&lt;br /&gt;
** Several [[Keys]] have been found by using any of five cipher keys, either posted online or sent to bloggers.&lt;br /&gt;
** Several keys were solved by using the contents of a [[Puzzle Box Package]], mailed to various people.  The contents include a [[Video-Loki|video]].&lt;br /&gt;
** These keys have frequently been accompanied by extravagant gifts (laptops, media center computers, etc.) from Loki, the &amp;quot;Enigma Director&amp;quot;, and all come from Microsoft&#039;s headquarters in Redmond, WA.&lt;br /&gt;
* The countdown expires Jan 8th 2007 at 6:30PM PST.  A decompile of the Flash app on the main page reveals the location as the fountains in front of the Bellagio.  This time and location coincides with the Consumer Electronics Show in Las Vegas.  It is expected that this is when the game will officially start.&lt;br /&gt;
* Several new [[countdowns]] are behind a particular key, listing various cities and times of additional live events.&lt;br /&gt;
* A new [[Video-Ignition|video]] from [[lokivanishes]] is discovered on YouTube, giving a new [[Keys|key]].&lt;br /&gt;
* Scattered reports are arriving that the [[Microsoft CES Keynote]] includes more details about [[Prizes|prizes.]]&lt;br /&gt;
* [http://www.vanishingpointgame.com Registration available] and [http://www.vanishingpointgame.com/prizes.aspx rules and prizes posted].  There&#039;s also a [[http://vanishingpointgame.com/faq.htm FAQ]][http://vanishingpointwiki.com/wiki/FAQ] with more hints.&lt;br /&gt;
* The rules page lists a secret [[Meta Puzzle]] with an instant-win prize for the first to solve it.  The prize is their name inscribed on each of a new AMD processor model to be released soon.  Several clues in the puzzles, events, and in the original video could relate to the Meta Puzzle.&lt;br /&gt;
* Another [http://www.tweakvista.com/Article39053.aspx clue] from Loki surfaces at the bell desk of The Orleans hotel in Vegas, pointing to the location the event at the Bellagio Fountains.&lt;br /&gt;
* All of the events now have GPS coordinates.  They are noted here on the [[Countdowns]] page.&lt;br /&gt;
* Jan 8th 2007:  The [[Las Vegas Event]] has occurred, giving us a [[Video-Las Vegas|Video]] and [[Puzzle Box 1]] has been unlocked. After all the puzzles are solved, Loki gives us a [[Video-loki_time|video: loki_time]] [http://assets.vanishingpointgame.com/loki_time.wmv]. At the end of the video a url is [http://www.tweakvista.com/Article39055.aspx flashed] on the screen pointing to a side contest to get your name printed on AMD Athlon 64 FX processors. Thus begins the [[Meta Puzzle]].&lt;br /&gt;
* Jan 13th. 2007: The first of the two multi-city events occurred today, leaving us with [[Puzzle Box 2]], [[SkyType|clues written in the sky]] [http://www.vanishingpointgame.com/skyType.htm ], and a new [[Video-magicweb|video (magicweb)]] after solving them all. &#039;&#039;The White Box Phenomenon&#039;&#039; has been connected to the [[Meta Puzzle]] through the [[Collection Plate]] directory.&lt;br /&gt;
*Jan 20th. 2007: The second of the two multi-city events occurs today, leaving us with [[Puzzle Box 3]] and [[Projections|clues projected on buildings]].[http://www.vanishingpointgame.com/projections.htm]&lt;br /&gt;
*Solving all of the puzzles gives yet [[Video-loki_eras|another video]].  At its end, the words &amp;quot;/more_answers&amp;quot; flashes. Going to [http://www.vanishingpointgame.com/more_answers http://www.vanishingpointgame.com/more_answers], one finds a tracker of the puzzles completed.&lt;br /&gt;
*Jan 27th 2007: A special VIP party is being held for the last clue. To go you must be 18 or older and be able to get to the Seattle, WA event. The invitation was presented on the website.[[Media:SeattleInvite.jpg]] It gave instructions to RSVP via e-mail to vanish@vanishingpointgame.com with &amp;quot;yes&amp;quot; in the body. A reply email was received.[[Media:SeattleInviteReply.JPG]]&lt;br /&gt;
*Jan 27th 2007: Identity of Loki: Finally evidence on who loki really is. Real name is Minae Noji. She is an actress at General Hospital. I guess this means everything she told us has a meaning. Here is a link to her myspace profile. http://profile.myspace.com/index.cfm?fuseaction=user.viewprofile&amp;amp;friendID=54234975&lt;br /&gt;
*Jan 27th 2007: The fourth box opens and all puzzles are now available to be solved and all white boxes to be identified.&lt;br /&gt;
*After clicking on all the white boxes and returning to the [http://www.vanishingpointgame.com/collectionplate &#039;collectionplate&#039;] page, you are faced with a scrambled image, which when reassembled gives the coat of arms of the Odessa Oblast.&lt;br /&gt;
*After solving all the puzzles and returning to the [http://www.vanishingpointgame.com/more_answers &#039;more answers&#039;] page, you are faced with a word search puzzle. When all the words are found, only 6B617261 is left. Screenshots [[Media:cross1.jpg]], [[Media:cross2.jpg]], [[Media:cross3.jpg]], [[Media:cross4.jpg]]&lt;br /&gt;
*At the end of the video for solving puzzle box four the link [http://www.vanishingpointgame.com/roamingroaming &#039;/roamingroaming&#039;] is given.  The page is a clue to some place if you follow the distances from an unknown source.  The word &amp;quot;TANLI&amp;quot; is at the bottom of the page, which I assume is &amp;quot;LATIN&amp;quot;.  Maybe the starting place is ROME?&lt;br /&gt;
*The video for solving puzzle box four asks you to visit [http://www.vanishingpointgame.com/lokiv &#039;/lokiv&#039;]. This provides a video for the final part of the meta puzzle. Four Lokis sit in four directors&#039; chairs and ask you to find their name(s).  See [[lokiv]] for further information.&lt;br /&gt;
* Jan 29th 2007: New video appeared on Soapbox. It is a release video for Windows Vista that also shows Loki&#039;s office at Microsoft headquarters. [http://www.geocities.com/xtwilightx89/ http://www.geocities.com/xtwilightx89]&lt;br /&gt;
*UPDATE!! The roamingroaming page has been updated to say &amp;quot;Mystery Spot, CA&amp;quot;. Previously the &#039;CA&#039; wasn&#039;t there. Here is the website of the mystery spot. [http://www.mysteryspot.com Mystery Spot]&lt;br /&gt;
*Use Google EARTH! I have found that all the miles are Islands...&lt;br /&gt;
*Since these are are Islands, could TANLI then be the navigation waypoint of off Tunisia...&lt;br /&gt;
http://www.fallingrain.com/waypoint/TS/TANLI.html&lt;br /&gt;
*The game is over!&lt;br /&gt;
*The final answer to the Meta Puzzle is &amp;quot;Lorelei, Odessa, Kara, Ivy&amp;quot; ...if you played the game you received [[meta puzzle answer|a message]] from LOKI about the game. The solution to the Meta puzzle can be found [[Lokiv|here]].&lt;br /&gt;
&lt;br /&gt;
*The Grand Prize drawing was Jan 31st, and the winner will be contacted February 1st! On February 1st, the 1st-4th prizes will be drawn, and winners will be contacted in the following days... Good luck everyone! If a regular on this site wins, they should post their [[success stories|success story]]!&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Event_4&amp;diff=3330</id>
		<title>Event 4</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Event_4&amp;diff=3330"/>
		<updated>2007-01-29T01:44:51Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: typo&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Seattle Party Invitation==&lt;br /&gt;
[[Image:SeattleInvite.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Seattle Party Email Reply==&lt;br /&gt;
[[Image:SeattleInviteReply.JPG]]&lt;br /&gt;
&lt;br /&gt;
==Seattle Movie+Fireworks Videos==&lt;br /&gt;
* Official video&lt;br /&gt;
** ...pending...&lt;br /&gt;
* Videos recorded by audience members&lt;br /&gt;
** From YouTube member Zyphrax&lt;br /&gt;
*** Part 1 - http://youtube.com/watch?v=ccvE45EuJBw&lt;br /&gt;
*** Part 2 - http://youtube.com/watch?v=W1FjQye5VCY&lt;br /&gt;
*** h.264 (video iPod) version http://vanishingpointwiki.com/media/VanishingPointSeattle.mp4&lt;br /&gt;
** From [[User:BrianEnigma]]&lt;br /&gt;
*** h.264 version http://vanishingpointwiki.com/media/MVI_4245.mp4&lt;br /&gt;
*** wmv version http://vanishingpointwiki.com/media/MVI_4245.wmv&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Event_4&amp;diff=3329</id>
		<title>Event 4</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Event_4&amp;diff=3329"/>
		<updated>2007-01-29T01:40:50Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: /* Seattle Movie+Fireworks Videos */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Seattle Party Invitation==&lt;br /&gt;
[[Image:SeattleInvite.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Seattle Party Email Reply==&lt;br /&gt;
[[Image:SeattleInviteReply.JPG]]&lt;br /&gt;
&lt;br /&gt;
==Seattle Movie+Fireworks Videos==&lt;br /&gt;
* Official vide&lt;br /&gt;
** ...pending...&lt;br /&gt;
* Videos recorded by audience members&lt;br /&gt;
** From YouTube member Zyphrax&lt;br /&gt;
*** Part 1 - http://youtube.com/watch?v=ccvE45EuJBw&lt;br /&gt;
*** Part 2 - http://youtube.com/watch?v=W1FjQye5VCY&lt;br /&gt;
*** h.264 (video iPod) version http://vanishingpointwiki.com/media/VanishingPointSeattle.mp4&lt;br /&gt;
** From [[User:BrianEnigma]]&lt;br /&gt;
*** h.264 version http://vanishingpointwiki.com/media/MVI_4245.mp4&lt;br /&gt;
*** wmv version http://vanishingpointwiki.com/media/MVI_4245.wmv&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Event_4&amp;diff=3324</id>
		<title>Event 4</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Event_4&amp;diff=3324"/>
		<updated>2007-01-29T00:42:27Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Seattle Party Invitation==&lt;br /&gt;
[[Image:SeattleInvite.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Seattle Party Email Reply==&lt;br /&gt;
[[Image:SeattleInviteReply.JPG]]&lt;br /&gt;
&lt;br /&gt;
==Seattle Movie+Fireworks Videos==&lt;br /&gt;
* Official vide&lt;br /&gt;
** ...pending...&lt;br /&gt;
* Videos recorded by audience members&lt;br /&gt;
** From YouTube member Zyphrax&lt;br /&gt;
*** Part 1 - http://youtube.com/watch?v=ccvE45EuJBw&lt;br /&gt;
*** Part 2 - http://youtube.com/watch?v=W1FjQye5VCY&lt;br /&gt;
** From [[User:BrianEnigma]]&lt;br /&gt;
*** h.264 version http://vanishingpointwiki.com/media/MVI_4245.mp4&lt;br /&gt;
*** wmv version http://vanishingpointwiki.com/media/MVI_4245.wmv&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Event_4&amp;diff=3277</id>
		<title>Event 4</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Event_4&amp;diff=3277"/>
		<updated>2007-01-28T19:19:39Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: Added video&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Seattle Party Invitation ==&lt;br /&gt;
[[Image:SeattleInvite.jpg]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
== Seattle Party Email Reply ==&lt;br /&gt;
[[Image:SeattleInviteReply.JPG]]&lt;br /&gt;
&lt;br /&gt;
== Seattle Movie+Fireworks Video ==&lt;br /&gt;
http://vanishingpointwiki.com/media/MVI_4245.mp4&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Video-loki_eras&amp;diff=3116</id>
		<title>Video-loki eras</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Video-loki_eras&amp;diff=3116"/>
		<updated>2007-01-27T04:22:30Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Video revealed after solving [[Puzzle Box 3]], &#039;&#039;Memories fade...&#039;&#039;:&lt;br /&gt;
* Page: http://vanishingpointgame.com/vidLoki_eras1987.htm&lt;br /&gt;
* Original video: http://assets.vanishingpointgame.com/loki__eras__011907__final.wmv&lt;br /&gt;
* Local mirror: http://vanishingpointwiki.com/media/loki__eras__011907__final.wmv&lt;br /&gt;
* H.264 (video iPod) transcode: http://vanishingpointwiki.com/media/loki__eras__011907__final.mp4&lt;br /&gt;
&lt;br /&gt;
&amp;lt;flv movie=&amp;quot;loki__eras__011907__final.flv&amp;quot; width=&amp;quot;640&amp;quot; height=&amp;quot;360&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Transcript== &lt;br /&gt;
Loki is sitting on a third director&#039;s chair, in the same backstage area, with the paperback book, &amp;quot;	&lt;br /&gt;
The Histories&amp;quot; by Herodotus on her lap. This is the same book which appeared in the [[Video-Loki|original video]].&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Congratulations, you&#039;ve got only twelve puzzles left.&amp;lt;br&amp;gt;&lt;br /&gt;
So my first week at work was challenging. Everyone wanted to know what I did to get the title &amp;quot;Enigma Director&amp;quot;.&lt;br /&gt;
There&#039;s a secret I couldn&#039;t tell them, but I had to give up a few details about my life. I&#039;ll do the same for you.&amp;lt;br&amp;gt; I&#039;ve never taken a sick day.&amp;lt;br&amp;gt;&lt;br /&gt;
By my twenty-first birthday I visited almost every country in the world...&amp;lt;br&amp;gt;and I&#039;ve never owned a camera; my memory has always been camera enough.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;Loki laughs.&#039;&#039;&amp;lt;br&amp;gt;  &lt;br /&gt;
My dad had this trick he would get me to do when I was little, at restaurants.&lt;br /&gt;
He&#039;d ask a stranger to tell me their address and I would  tell them their home phone number.&lt;br /&gt;
They&#039;d always get this funny, amazed look and ask if I was psychic.&amp;lt;br&amp;gt;&lt;br /&gt;
I wasn&#039;t of course... I just memorized the phone book.&amp;lt;br&amp;gt;&lt;br /&gt;
&#039;&#039;The text &amp;quot;vanishingpointgame.com&amp;quot; appears, and &amp;quot;/more_answers&amp;quot; flashes quickly three times.&#039;&#039;&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
Loki lowers her eyeglasses during the first sentence; &amp;quot;Congratulations, you&#039;ve got only twelve puzzles left.&amp;quot;&amp;lt;br&amp;gt;&lt;br /&gt;
She does this gesture in all the videos (except &amp;quot;ignition&amp;quot;...she isn&#039;t wearing glasses in that one); each time during a sentence that includes a directional word.&amp;lt;br&amp;gt;&lt;br /&gt;
So far these are: &amp;lt;br&amp;gt;&lt;br /&gt;
[[Video-Loki|Hear the challenge video]]---------- &amp;quot;........................RIGHT&amp;quot; &amp;lt;br&amp;gt;&lt;br /&gt;
[[Video-Las Vegas|Bellagio video]]--------------- &amp;quot;............including a trip UP to the edge of space ...&amp;quot; &amp;lt;br&amp;gt;&lt;br /&gt;
[[Video-loki_time]]----------------- &amp;quot;.... you&#039;ve earned it, RIGHT?&amp;quot; &amp;lt;br&amp;gt;&lt;br /&gt;
[[Video-magicweb]]--- &amp;quot;... that&#039;s twenty-four puzzles DOWN&amp;quot; &amp;lt;br&amp;gt;&lt;br /&gt;
And this one, - &amp;quot;.. you&#039;ve got only twelve puzzles LEFT&amp;quot; &amp;lt;br&amp;gt;&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
	<entry>
		<id>https://vanishingpointwiki.com/w/index.php?title=Video-magicweb&amp;diff=3115</id>
		<title>Video-magicweb</title>
		<link rel="alternate" type="text/html" href="https://vanishingpointwiki.com/w/index.php?title=Video-magicweb&amp;diff=3115"/>
		<updated>2007-01-27T04:19:47Z</updated>

		<summary type="html">&lt;p&gt;BrianEnigma: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Video File==&lt;br /&gt;
&lt;br /&gt;
* Page: http://vanishingpointgame.com/vidxlokixmagic111.htm&lt;br /&gt;
* Original video: http://assets.vanishingpointgame.com/loki_640_magicweb_011107.wmv&lt;br /&gt;
* Local mirror: http://vanishingpointwiki.com/media/loki_640_magicweb_011107.wmv&lt;br /&gt;
* H.264 (video iPod) transcode: http://vanishingpointwiki.com/media/loki_640_magicweb_011107.mp4&lt;br /&gt;
&lt;br /&gt;
&amp;lt;flv movie=&amp;quot;loki_time.flv&amp;quot; width=&amp;quot;640&amp;quot; height=&amp;quot;360&amp;quot;/&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Transcript==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;blockquote&amp;gt;Congratulations! That&#039;s twenty-four puzzles down. Only twenty-four before I disappear. I guess you&#039;re kind of a magician, too. You&#039;ve sawed a lady in half. &amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
Alright, so where was I? Oh, right. So, I&#039;m in this room with the one recruiter; usually these guys ask about your research or your grades, but this guy looks me in the eye and says, &amp;quot; Tell me about a time you made something disappear.&amp;quot; I told him about disappearing my chemistry professor&#039;s office.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
I took the door down off its hinges, laid up a little bit of dry wall...some white wash... and you can&#039;t forget about the base boards. And I hung one of those huge billboards across the walls advertising swim meets or book swaps.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So the next morning he shows up for office hours....no office. He turns around, I&#039;m standing at the end of the hallway, trying to keep myself from laughing...he starts down the corridor...reading the name plates on every door. It took him about two weeks to think about crawling through the window.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
So the recruiter says, &amp;quot;Wow, but can you top that if I hire you?&amp;quot; And I say, &amp;quot;Hey, give me the job and I&#039;ll even give you your watch back.&amp;quot;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Loki is much more animated in this video, moving her left hand in gestures. She is holding a magic wand in her right hand. &#039;&#039;&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;Note:&#039;&#039; It may be worth mentioning that Loki&#039;s story, while interesting, is neither true nor original.  [http://hacks.mit.edu/Hacks/by_year/1990/vest_bboard/ This is a rather famous MIT hack played on the incoming President].  Could this be a clue as to which school she is supposed to have attended?  The details are just wrong enough to make you wonder.&lt;/div&gt;</summary>
		<author><name>BrianEnigma</name></author>
	</entry>
</feed>