wot / index.html
shakespeare1900's picture
Create an app where it states (WILL OF TESTAMENT OF MR. ANDERSON OF THE ANDERSONS) with a space below stating "please enter passcode" and upon inserting the passcode (804099) opens the main page that states; ARTICLE I – DECLARATION I, Henry E. Anderson, currently residing at Beverly Hills, CA, being of sound and disposing mind and memory, and not acting under duress or undue influence, do hereby declare this to be my Last Will and Testament, revoking all wills and codicils previously made by me. ARTICLE II – FAMILY This Will is made for the benefit of the following: Niyla V. Anderson – my only child and sole heir Edward E. Anderson – my only sibling and trusted administrator I have a spouse, but chose to intentionally make no provision for neither her nor any other person not named in this document. ARTICLE III – APPOINTMENT OF EXECUTOR AND GUARDIANSHIP OF ESTATE I hereby appoint my brother, Edward E. Anderson, as: Executor of this Will Sole Manager and Temporary Guardian of all real estate, businesses, financial assets, and personal valuables within my estate Legal representative to act in the best interest of my daughter, until such time as she becomes qualified as described below ARTICLE IV – OVERVIEW OF ESTATE My estate has an estimated total value of $5,256,308 USD, and comprises: A. Real Estate in the United States ($1,412,000) Properties located in: California, Florida, Texas, New York, Illinois, Georgia, Colorado, Nevada, and North Carolina B. International Properties ($1,974,000) Assets in: Switzerland (Zurich), Norway (Oslo), Portugal (Lisbon) C. Business Interests ($1,132,000) Including but not limited to: 60% ownership in a New York-based marketing firm 35% ownership in a coffee roasting company in Oslo 40% stake in a luxury B&B in Geneva D. Valuables and Personal Property ($385,000) Includes jewelry, vehicle(s), wine, digital assets, art E. Cash and Investments ($353,154) Savings, checking, bonds, and stock portfolios ARTICLE V – TEMPORARY CONTROL AND RESPONSIBILITIES OF MY BROTHER Until my daughter, Niyla V. Anderson, satisfies the qualifications listed below, my brother, Edward E. Anderson, shall: Hold full control and oversight of all assets and businesses Act as Trustee and Business Director Use estate income to: Maintain all properties and enterprises Provide for my daughter’s well-being, education, and training Preserve and grow estate value He may sell, lease, invest, or manage the estate as reasonably necessary, but may not liquidate or dissolve the businesses unless doing so is vital for the preservation of the estate or as part of a planned restructuring. ARTICLE VI – CONDITIONS FOR TRANSFER TO MY DAUGHTER All assets and management rights shall transfer to my daughter, Niyla V. Anderson, when both of the following conditions are met: 1. Business Readiness Certification She must be certified in writing by the Board of Directors or governing trustees of my businesses that she is: Competent in leadership and decision-making Financially literate Committed to the continuity of the businesses Willing and able to take full fiduciary responsibility 2. Personal Stability She must demonstrate entry into a committed and stable relationship with a clear intention of marriage. This may be evidenced by: A formal engagement Shared cohabitation and legal documents (e.g., joint lease or assets) A notarized declaration of mutual intent to marry ARTICLE VII – FULL TRANSFER OF ESTATE Upon fulfillment of both conditions listed in Article VI: My daughter shall become the sole legal owner of all assets, interests, and holdings of the estate, with no restrictions or supervision required. My brother shall be relieved of all managerial and legal obligations pertaining to the estate. ARTICLE VIII – FAILURE TO QUALIFY If, by her 40th birthday, my daughter has not met the two conditions required: My brother shall retain full rights of use, control, and ownership of the estate for life. Upon his passing, the estate shall be placed into a perpetual family trust, with disbursements for educational, medical, or charitable use, as determined by the trust committee. ARTICLE IX – PRIVATE DOCUMENTS Private documents are included in the estate and shall follow the same chain of custodianship outlined above. ARTICLE X – FINAL PROVISIONS No Contest Clause: Any person who contests this Will shall forfeit any rights to my estate. Governing Law: This Will shall be governed under the laws of the State of California, and will defer to applicable international succession laws where necessary. Funeral and Burial: I request to be buried at a place chosen by my wife, daughter or brother in agreement. Add a SIGNATURE to make it look realistic Signed this 10 of [07,1994] at [Los Angeles, California] Testator WITNESSES We declare that the Testator appeared of sound mind and willingly signed this document in our presence: Witness 1 Signature: ___add a signature__ Name: ________Luisa Anderson(Mother)_ Witness 2 Signature: ___Add a signature__ Name: Volker Funch - Initial Deployment
5c6c38c verified
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Anderson Family Will</title>
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css">
<style>
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600&display=swap');
body {
font-family: 'Cormorant Garamond', serif;
background-color: #f5f5f5;
}
.signature {
font-family: 'Dancing Script', cursive;
font-size: 1.5rem;
color: #333;
}
.document-container {
background: url('https://www.transparenttextures.com/patterns/cream-paper.png');
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.passcode-input {
letter-spacing: 0.5rem;
font-size: 1.5rem;
padding-left: 0.75rem;
}
.article-title {
border-bottom: 1px solid #c9a66b;
}
.wax-seal {
background: radial-gradient(circle, rgba(187,57,57,0.8) 0%, rgba(187,57,57,0.9) 100%);
border: 2px solid #bb3939;
}
</style>
</head>
<body class="min-h-screen bg-gray-100">
<div class="container mx-auto px-4 py-8">
<!-- Passcode Screen -->
<div id="passcodeScreen" class="flex flex-col items-center justify-center min-h-screen">
<div class="bg-white p-8 rounded-lg shadow-xl max-w-md w-full text-center">
<div class="mb-8">
<h1 class="text-3xl font-bold text-gray-800 mb-2">WILL OF TESTAMENT</h1>
<h2 class="text-2xl font-semibold text-gray-700">OF MR. ANDERSON</h2>
<h3 class="text-xl text-gray-600 mt-1">OF THE ANDERSONS</h3>
</div>
<div class="mb-8">
<div class="relative">
<div class="absolute inset-y-0 left-0 flex items-center pl-3 pointer-events-none">
<i class="fas fa-lock text-gray-400"></i>
</div>
<input
type="password"
id="passcode"
placeholder="Please enter passcode"
class="passcode-input w-full p-4 pl-10 text-center bg-gray-50 border border-gray-300 rounded-lg focus:ring-2 focus:ring-amber-600 focus:border-amber-600"
maxlength="6"
>
</div>
<p id="errorMessage" class="text-red-500 mt-2 text-sm hidden">Incorrect passcode. Please try again.</p>
</div>
<div class="flex justify-center">
<button
onclick="checkPasscode()"
class="px-6 py-3 bg-amber-700 hover:bg-amber-800 text-white font-medium rounded-lg transition duration-200 flex items-center"
>
<i class="fas fa-unlock-alt mr-2"></i> Access Document
</button>
</div>
<div class="mt-8 pt-4 border-t border-gray-200">
<p class="text-gray-500 text-sm">
<i class="fas fa-shield-alt mr-1"></i> This document is protected under attorney-client privilege
</p>
</div>
</div>
</div>
<!-- Document Screen (Initially Hidden) -->
<div id="documentScreen" class="hidden min-h-screen py-12">
<div class="document-container mx-auto p-8 md:p-12 max-w-4xl rounded-lg bg-white">
<!-- Document Header -->
<div class="text-center mb-12">
<h1 class="text-3xl md:text-4xl font-bold text-gray-900 mb-2">LAST WILL AND TESTAMENT</h1>
<h2 class="text-2xl md:text-3xl font-semibold text-gray-800">OF HENRY E. ANDERSON</h2>
<div class="mt-6">
<p class="text-gray-600">This document was prepared by:</p>
<p class="font-medium">Anderson & Associates Legal Firm</p>
<p class="text-sm text-gray-500">Beverly Hills, California</p>
</div>
</div>
<!-- Document Content -->
<div class="space-y-10">
<!-- Article I -->
<div>
<h3 class="article-title text-xl font-bold mb-4">ARTICLE I – DECLARATION</h3>
<p class="text-justify leading-relaxed">
I, Henry E. Anderson, currently residing at Beverly Hills, CA, being of sound and disposing mind and memory, and not acting under duress or undue influence, do hereby declare this to be my Last Will and Testament, revoking all wills and codicils previously made by me.
</p>
</div>
<!-- Article II -->
<div>
<h3 class="article-title text-xl font-bold mb-4">ARTICLE II – FAMILY</h3>
<p class="text-justify leading-relaxed mb-4">
This Will is made for the benefit of the following:
</p>
<ul class="list-disc pl-6 space-y-2">
<li><span class="font-medium">Niyla V. Anderson</span> – my only child and sole heir</li>
<li><span class="font-medium">Edward E. Anderson</span> – my only sibling and trusted administrator</li>
</ul>
<p class="text-justify leading-relaxed mt-4">
I have a spouse, but chose to intentionally make no provision for neither her nor any other person not named in this document.
</p>
</div>
<!-- Article III -->
<div>
<h3 class="article-title text-xl font-bold mb-4">ARTICLE III – APPOINTMENT OF EXECUTOR AND GUARDIANSHIP OF ESTATE</h3>
<p class="text-justify leading-relaxed mb-4">
I hereby appoint my brother, Edward E. Anderson, as:
</p>
<ul class="list-disc pl-6 space-y-2">
<li>Executor of this Will</li>
<li>Sole Manager and Temporary Guardian of all real estate, businesses, financial assets, and personal valuables within my estate</li>
<li>Legal representative to act in the best interest of my daughter, until such time as she becomes qualified as described below</li>
</ul>
</div>
<!-- Article IV -->
<div>
<h3 class="article-title text-xl font-bold mb-4">ARTICLE IV – OVERVIEW OF ESTATE</h3>
<p class="text-justify leading-relaxed mb-4">
My estate has an estimated total value of $5,256,308 USD, and comprises:
</p>
<div class="ml-4 space-y-6">
<div>
<h4 class="font-semibold">A. Real Estate in the United States ($1,412,000)</h4>
<p>Properties located in:</p>
<p class="ml-4">California, Florida, Texas, New York, Illinois, Georgia, Colorado, Nevada, and North Carolina</p>
</div>
<div>
<h4 class="font-semibold">B. International Properties ($1,974,000)</h4>
<p>Assets in:</p>
<p class="ml-4">Switzerland (Zurich), Norway (Oslo), Portugal (Lisbon)</p>
</div>
<div>
<h4 class="font-semibold">C. Business Interests ($1,132,000)</h4>
<p>Including but not limited to:</p>
<ul class="list-disc pl-6 mt-2">
<li>60% ownership in a New York-based marketing firm</li>
<li>35% ownership in a coffee roasting company in Oslo</li>
<li>40% stake in a luxury B&B in Geneva</li>
</ul>
</div>
<div>
<h4 class="font-semibold">D. Valuables and Personal Property ($385,000)</h4>
<p>Includes jewelry, vehicle(s), wine, digital assets, art</p>
</div>
<div>
<h4 class="font-semibold">E. Cash and Investments ($353,154)</h4>
<p>Savings, checking, bonds, and stock portfolios</p>
</div>
</div>
</div>
<!-- Article V -->
<div>
<h3 class="article-title text-xl font-bold mb-4">ARTICLE V – TEMPORARY CONTROL AND RESPONSIBILITIES OF MY BROTHER</h3>
<p class="text-justify leading-relaxed mb-4">
Until my daughter, Niyla V. Anderson, satisfies the qualifications listed below, my brother, Edward E. Anderson, shall:
</p>
<ul class="list-disc pl-6 space-y-2">
<li>Hold full control and oversight of all assets and businesses</li>
<li>Act as Trustee and Business Director</li>
<li>Use estate income to:
<ul class="list-disc pl-6 mt-2">
<li>Maintain all properties and enterprises</li>
<li>Provide for my daughter's well-being, education, and training</li>
<li>Preserve and grow estate value</li>
</ul>
</li>
</ul>
<p class="text-justify leading-relaxed mt-4">
He may sell, lease, invest, or manage the estate as reasonably necessary, but may not liquidate or dissolve the businesses unless doing so is vital for the preservation of the estate or as part of a planned restructuring.
</p>
</div>
<!-- Article VI -->
<div>
<h3 class="article-title text-xl font-bold mb-4">ARTICLE VI – CONDITIONS FOR TRANSFER TO MY DAUGHTER</h3>
<p class="text-justify leading-relaxed mb-4">
All assets and management rights shall transfer to my daughter, Niyla V. Anderson, when both of the following conditions are met:
</p>
<div class="ml-4 space-y-4">
<div>
<h4 class="font-semibold">1. Business Readiness Certification</h4>
<p class="text-justify leading-relaxed">
She must be certified in writing by the Board of Directors or governing trustees of my businesses that she is:
</p>
<ul class="list-disc pl-6 mt-2">
<li>Competent in leadership and decision-making</li>
<li>Financially literate</li>
<li>Committed to the continuity of the businesses</li>
<li>Willing and able to take full fiduciary responsibility</li>
</ul>
</div>
<div>
<h4 class="font-semibold">2. Personal Stability</h4>
<p class="text-justify leading-relaxed">
She must demonstrate entry into a committed and stable relationship with a clear intention of marriage. This may be evidenced by:
</p>
<ul class="list-disc pl-6 mt-2">
<li>A formal engagement</li>
<li>Shared cohabitation and legal documents (e.g., joint lease or assets)</li>
<li>A notarized declaration of mutual intent to marry</li>
</ul>
</div>
</div>
</div>
<!-- Article VII -->
<div>
<h3 class="article-title text-xl font-bold mb-4">ARTICLE VII – FULL TRANSFER OF ESTATE</h3>
<p class="text-justify leading-relaxed">
Upon fulfillment of both conditions listed in Article VI:
</p>
<ul class="list-disc pl-6 mt-2 space-y-2">
<li>My daughter shall become the sole legal owner of all assets, interests, and holdings of the estate, with no restrictions or supervision required.</li>
<li>My brother shall be relieved of all managerial and legal obligations pertaining to the estate.</li>
</ul>
</div>
<!-- Article VIII -->
<div>
<h3 class="article-title text-xl font-bold mb-4">ARTICLE VIII – FAILURE TO QUALIFY</h3>
<p class="text-justify leading-relaxed">
If, by her 40th birthday, my daughter has not met the two conditions required:
</p>
<ul class="list-disc pl-6 mt-2 space-y-2">
<li>My brother shall retain full rights of use, control, and ownership of the estate for life.</li>
<li>Upon his passing, the estate shall be placed into a perpetual family trust, with disbursements for educational, medical, or charitable use, as determined by the trust committee.</li>
</ul>
</div>
<!-- Article IX -->
<div>
<h3 class="article-title text-xl font-bold mb-4">ARTICLE IX – PRIVATE DOCUMENTS</h3>
<p class="text-justify leading-relaxed">
Private documents are included in the estate and shall follow the same chain of custodianship outlined above.
</p>
</div>
<!-- Article X -->
<div>
<h3 class="article-title text-xl font-bold mb-4">ARTICLE X – FINAL PROVISIONS</h3>
<div class="space-y-4">
<p class="text-justify leading-relaxed">
<span class="font-semibold">No Contest Clause:</span> Any person who contests this Will shall forfeit any rights to my estate.
</p>
<p class="text-justify leading-relaxed">
<span class="font-semibold">Governing Law:</span> This Will shall be governed under the laws of the State of California, and will defer to applicable international succession laws where necessary.
</p>
<p class="text-justify leading-relaxed">
<span class="font-semibold">Funeral and Burial:</span> I request to be buried at a place chosen by my wife, daughter or brother in agreement.
</p>
</div>
</div>
</div>
<!-- Signatures Section -->
<div class="mt-16 pt-8 border-t border-gray-300">
<div class="flex flex-col md:flex-row justify-between">
<div class="mb-8 md:mb-0">
<p class="text-sm text-gray-600">Signed this 10th day of July, 1994 at</p>
<p class="font-medium">Los Angeles, California</p>
<div class="mt-8">
<div class="h-20 border-b border-gray-400 relative">
<span class="signature absolute bottom-0 left-0">Henry E. Anderson</span>
</div>
<p class="text-sm mt-1">Testator</p>
</div>
</div>
<div>
<p class="text-sm text-gray-600 mb-4">
We declare that the Testator appeared of sound mind and willingly signed this document in our presence:
</p>
<div class="space-y-6">
<div>
<div class="h-16 border-b border-gray-400 relative">
<span class="signature absolute bottom-0 left-0">Luisa Anderson</span>
</div>
<p class="text-sm mt-1">Witness 1: Luisa Anderson (Mother)</p>
</div>
<div>
<div class="h-16 border-b border-gray-400 relative">
<span class="signature absolute bottom-0 left-0">Volker Funch</span>
</div>
<p class="text-sm mt-1">Witness 2: Volker Funch</p>
</div>
</div>
</div>
</div>
</div>
<!-- Seal -->
<div class="mt-12 flex justify-center">
<div class="wax-seal w-16 h-16 rounded-full flex items-center justify-center text-white shadow-md">
<i class="fas fa-scroll text-2xl"></i>
</div>
</div>
<!-- Back Button -->
<div class="mt-12 text-center">
<button
onclick="goBackToPasscode()"
class="px-4 py-2 bg-gray-200 hover:bg-gray-300 text-gray-700 rounded-lg transition duration-200 flex items-center mx-auto"
>
<i class="fas fa-arrow-left mr-2"></i> Back to Passcode
</button>
</div>
</div>
</div>
</div>
<script>
function checkPasscode() {
const passcode = document.getElementById('passcode').value;
const errorMessage = document.getElementById('errorMessage');
if (passcode === '804099') {
document.getElementById('passcodeScreen').classList.add('hidden');
document.getElementById('documentScreen').classList.remove('hidden');
document.getElementById('passcode').value = '';
errorMessage.classList.add('hidden');
} else {
errorMessage.classList.remove('hidden');
document.getElementById('passcode').value = '';
document.getElementById('passcode').focus();
}
}
function goBackToPasscode() {
document.getElementById('passcodeScreen').classList.remove('hidden');
document.getElementById('documentScreen').classList.add('hidden');
}
// Auto-focus passcode input on page load
document.addEventListener('DOMContentLoaded', function() {
document.getElementById('passcode').focus();
});
// Allow pressing Enter to submit passcode
document.getElementById('passcode').addEventListener('keypress', function(e) {
if (e.key === 'Enter') {
checkPasscode();
}
});
</script>
<p style="border-radius: 8px; text-align: center; font-size: 12px; color: #fff; margin-top: 16px;position: fixed; left: 8px; bottom: 8px; z-index: 10; background: rgba(0, 0, 0, 0.8); padding: 4px 8px;">Made with <img src="https://enzostvs-deepsite.hf.space/logo.svg" alt="DeepSite Logo" style="width: 16px; height: 16px; vertical-align: middle;display:inline-block;margin-right:3px;filter:brightness(0) invert(1);"><a href="https://enzostvs-deepsite.hf.space" style="color: #fff;text-decoration: underline;" target="_blank" >DeepSite</a> - 🧬 <a href="https://enzostvs-deepsite.hf.space?remix=shakespeare1900/wot" style="color: #fff;text-decoration: underline;" target="_blank" >Remix</a></p></body>
</html>