Delete index (1) (17).html
Browse files- index (1) (17).html +0 -605
index (1) (17).html
DELETED
|
@@ -1,605 +0,0 @@
|
|
| 1 |
-
<!DOCTYPE html>
|
| 2 |
-
<html lang="fa" dir="rtl">
|
| 3 |
-
<head>
|
| 4 |
-
<meta charset="UTF-8" />
|
| 5 |
-
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
|
| 6 |
-
<title>آوا هوش - جعبه ابزار صدا</title>
|
| 7 |
-
|
| 8 |
-
<!-- Tailwind CSS -->
|
| 9 |
-
<script src="https://cdn.tailwindcss.com"></script>
|
| 10 |
-
|
| 11 |
-
<!-- Lucide Icons -->
|
| 12 |
-
<script src="https://unpkg.com/lucide@latest"></script>
|
| 13 |
-
|
| 14 |
-
<!-- Fonts -->
|
| 15 |
-
<link rel="preconnect" href="https://fonts.googleapis.com">
|
| 16 |
-
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
| 17 |
-
<link href="https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100..900&display=swap" rel="stylesheet">
|
| 18 |
-
|
| 19 |
-
<style>
|
| 20 |
-
body {
|
| 21 |
-
font-family: 'Vazirmatn', sans-serif;
|
| 22 |
-
background-color: #0f172a;
|
| 23 |
-
color: white;
|
| 24 |
-
-webkit-tap-highlight-color: transparent;
|
| 25 |
-
overflow-x: hidden;
|
| 26 |
-
margin: 0;
|
| 27 |
-
padding: 0;
|
| 28 |
-
}
|
| 29 |
-
|
| 30 |
-
/* Custom Scrollbar */
|
| 31 |
-
::-webkit-scrollbar { width: 6px; }
|
| 32 |
-
::-webkit-scrollbar-track { background: #0f172a; }
|
| 33 |
-
::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
|
| 34 |
-
::-webkit-scrollbar-thumb:hover { background: #475569; }
|
| 35 |
-
|
| 36 |
-
/* Animations */
|
| 37 |
-
@keyframes float {
|
| 38 |
-
0%, 100% { transform: translateY(0); }
|
| 39 |
-
50% { transform: translateY(-20px); }
|
| 40 |
-
}
|
| 41 |
-
|
| 42 |
-
@keyframes pulse-glow {
|
| 43 |
-
0%, 100% { opacity: 0.5; transform: scale(1); }
|
| 44 |
-
50% { opacity: 1; transform: scale(1.1); }
|
| 45 |
-
}
|
| 46 |
-
|
| 47 |
-
@keyframes blob-move {
|
| 48 |
-
0% { transform: translate(0, 0) scale(1); }
|
| 49 |
-
33% { transform: translate(30px, -50px) scale(1.1); }
|
| 50 |
-
66% { transform: translate(-20px, 20px) scale(0.9); }
|
| 51 |
-
100% { transform: translate(0, 0) scale(1); }
|
| 52 |
-
}
|
| 53 |
-
|
| 54 |
-
@keyframes rotate-slow {
|
| 55 |
-
0% { transform: rotate(0deg); }
|
| 56 |
-
100% { transform: rotate(360deg); }
|
| 57 |
-
}
|
| 58 |
-
|
| 59 |
-
@keyframes gradient-x {
|
| 60 |
-
0% { background-position: 0% 50%; }
|
| 61 |
-
50% { background-position: 100% 50%; }
|
| 62 |
-
100% { background-position: 0% 50%; }
|
| 63 |
-
}
|
| 64 |
-
|
| 65 |
-
@keyframes fade-in-up {
|
| 66 |
-
from { opacity: 0; transform: translateY(20px); }
|
| 67 |
-
to { opacity: 1; transform: translateY(0); }
|
| 68 |
-
}
|
| 69 |
-
|
| 70 |
-
@keyframes shimmer {
|
| 71 |
-
0% { transform: translateX(-100%); }
|
| 72 |
-
100% { transform: translateX(100%); }
|
| 73 |
-
}
|
| 74 |
-
|
| 75 |
-
@keyframes particle-rise {
|
| 76 |
-
0% { transform: translateY(110vh); opacity: 0; }
|
| 77 |
-
20% { opacity: 0.5; }
|
| 78 |
-
80% { opacity: 0.5; }
|
| 79 |
-
100% { transform: translateY(-10vh); opacity: 0; }
|
| 80 |
-
}
|
| 81 |
-
|
| 82 |
-
.animate-blob { animation: blob-move 20s infinite alternate; }
|
| 83 |
-
.animate-gradient-text { background-size: 200% auto; animation: gradient-x 4s linear infinite; }
|
| 84 |
-
.fade-in-entry { animation: fade-in-up 0.8s ease-out forwards; opacity: 0; }
|
| 85 |
-
.animate-shimmer { animation: shimmer 2s infinite; }
|
| 86 |
-
.animate-float-slow { animation: float 6s ease-in-out infinite; }
|
| 87 |
-
|
| 88 |
-
/* Utility classes */
|
| 89 |
-
.glass-panel {
|
| 90 |
-
background: rgba(19, 23, 34, 0.8);
|
| 91 |
-
backdrop-filter: blur(16px);
|
| 92 |
-
-webkit-backdrop-filter: blur(16px);
|
| 93 |
-
border: 1px solid rgba(255, 255, 255, 0.05);
|
| 94 |
-
}
|
| 95 |
-
|
| 96 |
-
.hover-shine {
|
| 97 |
-
position: relative;
|
| 98 |
-
overflow: hidden;
|
| 99 |
-
}
|
| 100 |
-
.hover-shine::after {
|
| 101 |
-
content: '';
|
| 102 |
-
position: absolute;
|
| 103 |
-
top: 0;
|
| 104 |
-
left: 0;
|
| 105 |
-
width: 100%;
|
| 106 |
-
height: 100%;
|
| 107 |
-
background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
|
| 108 |
-
transform: translateX(-100%) skewX(-15deg);
|
| 109 |
-
transition: transform 0.5s;
|
| 110 |
-
}
|
| 111 |
-
.hover-shine:hover::after {
|
| 112 |
-
transform: translateX(100%) skewX(-15deg);
|
| 113 |
-
}
|
| 114 |
-
|
| 115 |
-
.particle {
|
| 116 |
-
position: absolute;
|
| 117 |
-
width: 4px;
|
| 118 |
-
height: 4px;
|
| 119 |
-
background: white;
|
| 120 |
-
border-radius: 50%;
|
| 121 |
-
filter: blur(1px);
|
| 122 |
-
}
|
| 123 |
-
|
| 124 |
-
/* View transition utility */
|
| 125 |
-
.view-section {
|
| 126 |
-
display: none;
|
| 127 |
-
opacity: 0;
|
| 128 |
-
transition: opacity 0.3s ease-in-out;
|
| 129 |
-
}
|
| 130 |
-
.view-section.active {
|
| 131 |
-
display: block;
|
| 132 |
-
opacity: 1;
|
| 133 |
-
}
|
| 134 |
-
</style>
|
| 135 |
-
<script type="importmap">
|
| 136 |
-
{
|
| 137 |
-
"imports": {
|
| 138 |
-
"react": "https://esm.sh/react@^19.2.4",
|
| 139 |
-
"react-dom/": "https://esm.sh/react-dom@^19.2.4/",
|
| 140 |
-
"react/": "https://esm.sh/react@^19.2.4/",
|
| 141 |
-
"lucide-react": "https://esm.sh/lucide-react@^0.563.0",
|
| 142 |
-
"framer-motion": "https://esm.sh/framer-motion@^12.29.2"
|
| 143 |
-
}
|
| 144 |
-
}
|
| 145 |
-
</script>
|
| 146 |
-
</head>
|
| 147 |
-
<body>
|
| 148 |
-
|
| 149 |
-
<!-- Background Effects -->
|
| 150 |
-
<div class="fixed inset-0 z-0 overflow-hidden pointer-events-none bg-[#0B0F19]">
|
| 151 |
-
<!-- Tech Grid -->
|
| 152 |
-
<div class="absolute inset-0 opacity-[0.04]" style="background-image: linear-gradient(#fff 1px, transparent 1px), linear-gradient(90deg, #fff 1px, transparent 1px); background-size: 50px 50px;"></div>
|
| 153 |
-
|
| 154 |
-
<!-- Orbs -->
|
| 155 |
-
<div class="absolute -top-[10%] -right-[20%] w-[600px] h-[600px] bg-gradient-to-br from-violet-600/20 to-indigo-600/20 rounded-full blur-[120px] animate-blob"></div>
|
| 156 |
-
<div class="absolute top-[40%] -left-[20%] w-[500px] h-[500px] bg-gradient-to-tr from-blue-600/15 to-cyan-500/15 rounded-full blur-[100px] animate-blob" style="animation-delay: -5s;"></div>
|
| 157 |
-
<div class="absolute -bottom-20 -right-20 w-80 h-80 bg-emerald-500/5 rounded-full blur-[80px] animate-blob" style="animation-delay: -10s;"></div>
|
| 158 |
-
|
| 159 |
-
<!-- Particles Container (Populated by JS) -->
|
| 160 |
-
<div id="particles-container"></div>
|
| 161 |
-
|
| 162 |
-
<!-- Vignette -->
|
| 163 |
-
<div class="absolute inset-0 bg-gradient-to-b from-transparent via-[#0B0F19]/60 to-[#0B0F19]"></div>
|
| 164 |
-
</div>
|
| 165 |
-
|
| 166 |
-
<!-- Main Content Container -->
|
| 167 |
-
<div class="relative z-10 min-h-screen pb-24 pt-8">
|
| 168 |
-
|
| 169 |
-
<!-- === HOME VIEW === -->
|
| 170 |
-
<div id="home-view" class="view-section active">
|
| 171 |
-
<!-- Image Slider -->
|
| 172 |
-
<div class="px-6 mb-6 fade-in-entry" style="animation-delay: 0.2s;">
|
| 173 |
-
<div class="relative w-full aspect-[2/1] rounded-[24px] overflow-hidden shadow-2xl ring-1 ring-white/10 group z-20 bg-slate-800">
|
| 174 |
-
<div id="slider-images" class="absolute inset-0 w-full h-full">
|
| 175 |
-
<!-- Images injected by JS -->
|
| 176 |
-
</div>
|
| 177 |
-
<div class="absolute inset-0 bg-gradient-to-t from-[#0B0F19]/80 via-transparent to-transparent opacity-80"></div>
|
| 178 |
-
<!-- Dots -->
|
| 179 |
-
<div id="slider-dots" class="absolute bottom-3 left-1/2 -translate-x-1/2 flex gap-1.5 z-10">
|
| 180 |
-
<!-- Dots injected by JS -->
|
| 181 |
-
</div>
|
| 182 |
-
</div>
|
| 183 |
-
</div>
|
| 184 |
-
|
| 185 |
-
<!-- Hero Text -->
|
| 186 |
-
<div class="px-6 pt-2 pb-6 text-center fade-in-entry" style="animation-delay: 0.3s;">
|
| 187 |
-
<h2 class="text-[2rem] font-black text-white mb-4 leading-[1.3] tracking-tight">
|
| 188 |
-
دنیای صدا را <br />
|
| 189 |
-
<span class="relative inline-block px-2">
|
| 190 |
-
<span class="absolute inset-0 bg-indigo-500/10 blur-xl rounded-full transform rotate-3"></span>
|
| 191 |
-
<span class="relative text-transparent bg-clip-text bg-gradient-to-r from-indigo-300 via-purple-300 to-cyan-300 animate-gradient-text">
|
| 192 |
-
با هوش مصنوعی
|
| 193 |
-
</span>
|
| 194 |
-
</span>
|
| 195 |
-
<br/>
|
| 196 |
-
<span class="text-white">متحول کنید</span>
|
| 197 |
-
</h2>
|
| 198 |
-
<p class="text-slate-400 text-sm leading-7 font-light max-w-[80%] mx-auto opacity-80">
|
| 199 |
-
تکنولوژی پیشرفته برای خلق، ویرایش و تبدیل صدا
|
| 200 |
-
</p>
|
| 201 |
-
</div>
|
| 202 |
-
|
| 203 |
-
<!-- Features Grid -->
|
| 204 |
-
<div class="px-6">
|
| 205 |
-
<div id="features-grid" class="grid grid-cols-2 gap-4 sm:gap-6">
|
| 206 |
-
<!-- Features injected by JS -->
|
| 207 |
-
</div>
|
| 208 |
-
|
| 209 |
-
<!-- Special Feature -->
|
| 210 |
-
<div id="special-feature-container" class="mt-8 mb-4 fade-in-entry" style="animation-delay: 0.6s;">
|
| 211 |
-
<!-- Special Feature injected by JS -->
|
| 212 |
-
</div>
|
| 213 |
-
|
| 214 |
-
<div class="text-center mt-10 opacity-40 pb-6">
|
| 215 |
-
<p class="text-[10px] text-slate-300 font-light tracking-widest">
|
| 216 |
-
POWERED BY ALPHA • VER 2.0
|
| 217 |
-
</p>
|
| 218 |
-
</div>
|
| 219 |
-
</div>
|
| 220 |
-
</div>
|
| 221 |
-
|
| 222 |
-
<!-- === ACCOUNT VIEW (SUBSCRIPTION) === -->
|
| 223 |
-
<div id="account-view" class="view-section">
|
| 224 |
-
<div class="pb-24">
|
| 225 |
-
|
| 226 |
-
<!-- 1. Banner Image (Wide aspect ratio 1179/546) -->
|
| 227 |
-
<div class="relative w-full mx-auto px-5 mb-4 -mt-2 fade-in-entry">
|
| 228 |
-
<div class="relative w-full aspect-[1179/546] rounded-[32px] overflow-hidden shadow-2xl shadow-amber-500/20">
|
| 229 |
-
<!-- Background -->
|
| 230 |
-
<div class="absolute inset-0 bg-gradient-to-b from-[#1e202e] via-[#131722] to-[#0f111a] z-0"></div>
|
| 231 |
-
<div class="absolute top-[20%] left-1/2 -translate-x-1/2 w-full h-full bg-amber-500/10 blur-[100px] animate-pulse"></div>
|
| 232 |
-
|
| 233 |
-
<!-- Image -->
|
| 234 |
-
<img src="https://app.puzzley.net/uploads/user/Jydo/Gpt4/tmpu3en1zel%281%29.png?_t=1769674744"
|
| 235 |
-
alt="Premium"
|
| 236 |
-
class="absolute inset-0 w-full h-full object-cover z-10" />
|
| 237 |
-
|
| 238 |
-
<!-- Overlay -->
|
| 239 |
-
<div class="absolute inset-0 bg-gradient-to-t from-[#0B0F19]/40 via-transparent to-transparent z-20"></div>
|
| 240 |
-
</div>
|
| 241 |
-
</div>
|
| 242 |
-
|
| 243 |
-
<!-- 2. Animated Title Section (New) -->
|
| 244 |
-
<div class="text-center px-6 mb-8 fade-in-entry" style="animation-delay: 0.2s;">
|
| 245 |
-
<h1 class="text-[1.6rem] font-black mb-2 relative inline-block">
|
| 246 |
-
<span class="absolute -inset-1 blur-lg bg-amber-500/20 rounded-full"></span>
|
| 247 |
-
<span class="relative text-transparent bg-clip-text bg-gradient-to-r from-amber-200 via-yellow-400 to-amber-500 drop-shadow-sm">
|
| 248 |
-
اشـتـراک ویـــژه طـلایـی
|
| 249 |
-
</span>
|
| 250 |
-
</h1>
|
| 251 |
-
<p class="text-slate-400 text-xs font-medium leading-relaxed tracking-wide opacity-80">
|
| 252 |
-
دسترسی نامحدود به تمام قدرت هوش مصنوعی
|
| 253 |
-
</p>
|
| 254 |
-
</div>
|
| 255 |
-
|
| 256 |
-
<div class="px-5">
|
| 257 |
-
<!-- 3. Purchase Card -->
|
| 258 |
-
<div class="mb-8 fade-in-entry" style="animation-delay: 0.3s;">
|
| 259 |
-
<div class="relative p-[1px] rounded-[24px] bg-gradient-to-r from-amber-300 via-yellow-500 to-amber-600 shadow-xl shadow-amber-500/10 overflow-hidden group">
|
| 260 |
-
<!-- Shine on hover -->
|
| 261 |
-
<div class="absolute inset-0 bg-white/50 opacity-0 group-hover:opacity-20 transition-opacity"></div>
|
| 262 |
-
|
| 263 |
-
<div class="bg-[#131722] rounded-[23px] p-1.5 relative overflow-hidden">
|
| 264 |
-
<div class="absolute -right-10 -top-10 text-amber-500/5 rotate-12"><i data-lucide="sparkles" class="w-24 h-24"></i></div>
|
| 265 |
-
|
| 266 |
-
<div class="flex flex-col items-center text-center py-4 px-4">
|
| 267 |
-
<button class="w-full py-4 rounded-xl bg-gradient-to-r from-amber-400 to-orange-500 text-white font-black text-lg shadow-lg shadow-orange-500/40 flex items-center justify-center gap-2 relative overflow-hidden group/btn">
|
| 268 |
-
<i data-lucide="crown" class="fill-white/20 w-5 h-5"></i>
|
| 269 |
-
<span class="relative z-10">تهیه اشتراک ویژه</span>
|
| 270 |
-
<div class="absolute inset-0 bg-gradient-to-r from-transparent via-white/30 to-transparent translate-x-[-100%] animate-shimmer"></div>
|
| 271 |
-
</button>
|
| 272 |
-
<p class="text-[10px] text-slate-500 mt-3 flex items-center gap-1 opacity-70">
|
| 273 |
-
<i data-lucide="shield-check" class="w-3 h-3"></i>
|
| 274 |
-
تضمین بازگشت وجه در صورت نارضایتی
|
| 275 |
-
</p>
|
| 276 |
-
</div>
|
| 277 |
-
</div>
|
| 278 |
-
</div>
|
| 279 |
-
</div>
|
| 280 |
-
|
| 281 |
-
<!-- 4. Features -->
|
| 282 |
-
<div class="space-y-3 fade-in-entry" style="animation-delay: 0.4s;">
|
| 283 |
-
<div class="flex items-center gap-2 mb-3 px-1 opacity-90">
|
| 284 |
-
<div class="w-1.5 h-1.5 bg-amber-500 rounded-full animate-pulse"></div>
|
| 285 |
-
<h3 class="text-xs font-bold text-slate-300 uppercase tracking-wider">ویژگیهای فعال شده</h3>
|
| 286 |
-
</div>
|
| 287 |
-
|
| 288 |
-
<div class="flex items-center gap-4 bg-[#1A1F2E]/50 border border-white/5 p-4 rounded-2xl hover:bg-[#1A1F2E] transition-colors">
|
| 289 |
-
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-amber-500/20 to-orange-500/10 flex items-center justify-center shrink-0 border border-amber-500/10">
|
| 290 |
-
<i data-lucide="infinity" class="text-amber-400 w-5 h-5"></i>
|
| 291 |
-
</div>
|
| 292 |
-
<div>
|
| 293 |
-
<h4 class="text-sm font-bold text-white mb-0.5">دسترسی نامحدود</h4>
|
| 294 |
-
<p class="text-[11px] text-slate-400 leading-relaxed">تولید صدا و متن بدون هیچگونه محدودیت</p>
|
| 295 |
-
</div>
|
| 296 |
-
</div>
|
| 297 |
-
|
| 298 |
-
<div class="flex items-center gap-4 bg-[#1A1F2E]/50 border border-white/5 p-4 rounded-2xl hover:bg-[#1A1F2E] transition-colors">
|
| 299 |
-
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-amber-500/20 to-orange-500/10 flex items-center justify-center shrink-0 border border-amber-500/10">
|
| 300 |
-
<i data-lucide="zap" class="text-amber-400 w-5 h-5"></i>
|
| 301 |
-
</div>
|
| 302 |
-
<div>
|
| 303 |
-
<h4 class="text-sm font-bold text-white mb-0.5">سرعت پردازش بالا</h4>
|
| 304 |
-
<p class="text-[11px] text-slate-400 leading-relaxed">اولویت در صف پردازش سرورهای اختصاصی</p>
|
| 305 |
-
</div>
|
| 306 |
-
</div>
|
| 307 |
-
|
| 308 |
-
<div class="flex items-center gap-4 bg-[#1A1F2E]/50 border border-white/5 p-4 rounded-2xl hover:bg-[#1A1F2E] transition-colors">
|
| 309 |
-
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-amber-500/20 to-orange-500/10 flex items-center justify-center shrink-0 border border-amber-500/10">
|
| 310 |
-
<i data-lucide="star" class="text-amber-400 w-5 h-5"></i>
|
| 311 |
-
</div>
|
| 312 |
-
<div>
|
| 313 |
-
<h4 class="text-sm font-bold text-white mb-0.5">صداهای VIP</h4>
|
| 314 |
-
<p class="text-[11px] text-slate-400 leading-relaxed">دسترسی به ۳۰ صدای اختصاصی و طبیعی</p>
|
| 315 |
-
</div>
|
| 316 |
-
</div>
|
| 317 |
-
|
| 318 |
-
<div class="flex items-center gap-4 bg-[#1A1F2E]/50 border border-white/5 p-4 rounded-2xl hover:bg-[#1A1F2E] transition-colors">
|
| 319 |
-
<div class="w-10 h-10 rounded-full bg-gradient-to-br from-amber-500/20 to-orange-500/10 flex items-center justify-center shrink-0 border border-amber-500/10">
|
| 320 |
-
<i data-lucide="shield-check" class="text-amber-400 w-5 h-5"></i>
|
| 321 |
-
</div>
|
| 322 |
-
<div>
|
| 323 |
-
<h4 class="text-sm font-bold text-white mb-0.5">بدون تبلیغات</h4>
|
| 324 |
-
<p class="text-[11px] text-slate-400 leading-relaxed">تجربه کاربری روان و بدون مزاحمت</p>
|
| 325 |
-
</div>
|
| 326 |
-
</div>
|
| 327 |
-
|
| 328 |
-
</div>
|
| 329 |
-
</div>
|
| 330 |
-
</div>
|
| 331 |
-
</div>
|
| 332 |
-
|
| 333 |
-
</div>
|
| 334 |
-
|
| 335 |
-
<!-- Bottom Nav -->
|
| 336 |
-
<div class="fixed bottom-0 left-0 right-0 z-50 p-4 pb-6">
|
| 337 |
-
<div class="mx-auto max-w-sm">
|
| 338 |
-
<div class="relative flex items-center justify-between bg-[#131722]/90 backdrop-blur-xl border border-white/10 rounded-full p-2 shadow-2xl shadow-black/50">
|
| 339 |
-
|
| 340 |
-
<!-- Active Indicator -->
|
| 341 |
-
<div id="nav-indicator" class="absolute top-2 bottom-2 w-[calc(50%-8px)] bg-gradient-to-r from-indigo-600 to-violet-600 rounded-full -z-0 transition-all duration-300 ease-out" style="left: 50%;"></div>
|
| 342 |
-
|
| 343 |
-
<!-- Home Button -->
|
| 344 |
-
<button onclick="switchTab('home')" id="btn-home" class="relative z-10 flex items-center justify-center gap-2 w-1/2 py-3 rounded-full transition-colors duration-300 text-white">
|
| 345 |
-
<i data-lucide="home" class="w-5 h-5"></i>
|
| 346 |
-
<span class="text-sm font-bold">خانه</span>
|
| 347 |
-
</button>
|
| 348 |
-
|
| 349 |
-
<!-- Account Button -->
|
| 350 |
-
<button onclick="switchTab('account')" id="btn-account" class="relative z-10 flex items-center justify-center gap-2 w-1/2 py-3 rounded-full transition-colors duration-300 text-slate-400 hover:text-white">
|
| 351 |
-
<i data-lucide="user" class="w-5 h-5"></i>
|
| 352 |
-
<span class="text-sm font-bold">حساب</span>
|
| 353 |
-
</button>
|
| 354 |
-
</div>
|
| 355 |
-
</div>
|
| 356 |
-
</div>
|
| 357 |
-
|
| 358 |
-
<script>
|
| 359 |
-
// --- Data ---
|
| 360 |
-
const FEATURES = [
|
| 361 |
-
{
|
| 362 |
-
id: 'tts',
|
| 363 |
-
title: 'تبدیل متن به صدا',
|
| 364 |
-
subtitle: '۳۰ گوینده حرفهای',
|
| 365 |
-
icon: 'mic-2',
|
| 366 |
-
colorFrom: 'from-blue-500',
|
| 367 |
-
colorTo: 'to-cyan-400',
|
| 368 |
-
isHot: true
|
| 369 |
-
},
|
| 370 |
-
{
|
| 371 |
-
id: 'stt',
|
| 372 |
-
title: 'تبدیل گفتار به متن',
|
| 373 |
-
subtitle: 'تایپ صوتی دقیق',
|
| 374 |
-
icon: 'file-audio',
|
| 375 |
-
colorFrom: 'from-teal-500',
|
| 376 |
-
colorTo: 'to-emerald-400'
|
| 377 |
-
},
|
| 378 |
-
{
|
| 379 |
-
id: 'voice-changer',
|
| 380 |
-
title: 'تغییر صدا',
|
| 381 |
-
subtitle: 'مدلهای جذاب فارسی',
|
| 382 |
-
icon: 'wand-2',
|
| 383 |
-
colorFrom: 'from-violet-500',
|
| 384 |
-
colorTo: 'to-purple-500'
|
| 385 |
-
},
|
| 386 |
-
{
|
| 387 |
-
id: 'podcast',
|
| 388 |
-
title: 'ساخت پادکست',
|
| 389 |
-
subtitle: 'تولید خودکار با AI',
|
| 390 |
-
icon: 'podcast',
|
| 391 |
-
colorFrom: 'from-pink-500',
|
| 392 |
-
colorTo: 'to-rose-500'
|
| 393 |
-
},
|
| 394 |
-
{
|
| 395 |
-
id: 'clone',
|
| 396 |
-
title: 'کلون کردن صدا',
|
| 397 |
-
subtitle: 'شبیهسازی دقیق',
|
| 398 |
-
icon: 'fingerprint',
|
| 399 |
-
colorFrom: 'from-amber-500',
|
| 400 |
-
colorTo: 'to-orange-500',
|
| 401 |
-
isNew: true
|
| 402 |
-
},
|
| 403 |
-
{
|
| 404 |
-
id: 'enhance',
|
| 405 |
-
title: 'افزایش کیفیت',
|
| 406 |
-
subtitle: 'حذف نویز و شفافسازی',
|
| 407 |
-
icon: 'activity',
|
| 408 |
-
colorFrom: 'from-emerald-500',
|
| 409 |
-
colorTo: 'to-green-400'
|
| 410 |
-
}
|
| 411 |
-
];
|
| 412 |
-
|
| 413 |
-
const SPECIAL_FEATURE = {
|
| 414 |
-
id: 'ai-gen',
|
| 415 |
-
title: 'تولید صدا Ai',
|
| 416 |
-
subtitle: 'خلق افکتهای صوتی خاص',
|
| 417 |
-
icon: 'music',
|
| 418 |
-
colorFrom: 'from-indigo-600',
|
| 419 |
-
colorTo: 'to-blue-600'
|
| 420 |
-
};
|
| 421 |
-
|
| 422 |
-
const IMAGES = [
|
| 423 |
-
"https://app.puzzley.net/uploads/user/Jydo/%D8%AA%D8%BA%DB%8C%D8%B1%20%D8%B5%D8%AF%D8%A7%20%D8%A8%D8%A7%20%D9%87%D9%88%D8%B4%20%D9%85%D8%B5%D9%86%D9%88%D8%B9%DB%8C/tmpxposlxsv.png?_t=1769590682",
|
| 424 |
-
"https://app.puzzley.net/uploads/user/Jydo/%D8%AA%D8%BA%DB%8C%D8%B1%20%D8%B5%D8%AF%D8%A7%20%D8%A8%D8%A7%20%D9%87%D9%88%D8%B4%20%D9%85%D8%B5%D9%86%D9%88%D8%B9%DB%8C/tmpnv5v143z.png?_t=1769590682",
|
| 425 |
-
"https://app.puzzley.net/uploads/user/Jydo/%D8%AA%D8%BA%DB%8C%D8%B1%20%D8%B5%D8%AF%D8%A7%20%D8%A8%D8%A7%20%D9%87%D9%88%D8%B4%20%D9%85%D8%B5%D9%86%D9%88%D8%B9%DB%8C/tmpkqpm8k8l.png?_t=1769590756"
|
| 426 |
-
];
|
| 427 |
-
|
| 428 |
-
// --- Logic ---
|
| 429 |
-
|
| 430 |
-
// 1. Render Particles
|
| 431 |
-
const particlesContainer = document.getElementById('particles-container');
|
| 432 |
-
for(let i=0; i<15; i++) {
|
| 433 |
-
const p = document.createElement('div');
|
| 434 |
-
p.className = 'particle';
|
| 435 |
-
p.style.left = Math.random() * 100 + 'vw';
|
| 436 |
-
// Random duration between 10s and 20s
|
| 437 |
-
const duration = 10 + Math.random() * 10;
|
| 438 |
-
const delay = Math.random() * 5;
|
| 439 |
-
p.style.animation = `particle-rise ${duration}s linear ${delay}s infinite`;
|
| 440 |
-
particlesContainer.appendChild(p);
|
| 441 |
-
}
|
| 442 |
-
|
| 443 |
-
// 2. Render Slider
|
| 444 |
-
const sliderContainer = document.getElementById('slider-images');
|
| 445 |
-
const dotsContainer = document.getElementById('slider-dots');
|
| 446 |
-
let currentSlide = 0;
|
| 447 |
-
|
| 448 |
-
// Init Images
|
| 449 |
-
IMAGES.forEach((src, idx) => {
|
| 450 |
-
const img = document.createElement('img');
|
| 451 |
-
img.src = src;
|
| 452 |
-
img.className = `absolute inset-0 w-full h-full object-cover transition-all duration-700 ease-in-out ${idx === 0 ? 'opacity-100 scale-100' : 'opacity-0 scale-110'}`;
|
| 453 |
-
img.id = `slide-${idx}`;
|
| 454 |
-
sliderContainer.appendChild(img);
|
| 455 |
-
|
| 456 |
-
const dot = document.createElement('div');
|
| 457 |
-
dot.className = `h-1.5 rounded-full transition-all duration-300 ${idx === 0 ? 'w-6 bg-white' : 'w-1.5 bg-white/40'}`;
|
| 458 |
-
dot.id = `dot-${idx}`;
|
| 459 |
-
dotsContainer.appendChild(dot);
|
| 460 |
-
});
|
| 461 |
-
|
| 462 |
-
// Loop Slider
|
| 463 |
-
setInterval(() => {
|
| 464 |
-
// Hide current
|
| 465 |
-
const currentImg = document.getElementById(`slide-${currentSlide}`);
|
| 466 |
-
const currentDot = document.getElementById(`dot-${currentSlide}`);
|
| 467 |
-
currentImg.classList.replace('opacity-100', 'opacity-0');
|
| 468 |
-
currentImg.classList.replace('scale-100', 'scale-110');
|
| 469 |
-
currentDot.classList.replace('w-6', 'w-1.5');
|
| 470 |
-
currentDot.classList.replace('bg-white', 'bg-white/40');
|
| 471 |
-
|
| 472 |
-
// Show next
|
| 473 |
-
currentSlide = (currentSlide + 1) % IMAGES.length;
|
| 474 |
-
const nextImg = document.getElementById(`slide-${currentSlide}`);
|
| 475 |
-
const nextDot = document.getElementById(`dot-${currentSlide}`);
|
| 476 |
-
nextImg.classList.replace('opacity-0', 'opacity-100');
|
| 477 |
-
nextImg.classList.replace('scale-110', 'scale-100');
|
| 478 |
-
nextDot.classList.replace('w-1.5', 'w-6');
|
| 479 |
-
nextDot.classList.replace('bg-white/40', 'bg-white');
|
| 480 |
-
}, 4000);
|
| 481 |
-
|
| 482 |
-
// 3. Render Features Grid
|
| 483 |
-
const gridContainer = document.getElementById('features-grid');
|
| 484 |
-
FEATURES.forEach((item, index) => {
|
| 485 |
-
const delay = 0.4 + (index * 0.1);
|
| 486 |
-
const html = `
|
| 487 |
-
<div class="relative group cursor-pointer fade-in-entry hover-shine" style="animation-delay: ${delay}s" onclick="alert('قابلیت ${item.title} به زودی فعال میشود!')">
|
| 488 |
-
<!-- Glow -->
|
| 489 |
-
<div class="absolute -inset-[1px] rounded-[24px] bg-gradient-to-b ${item.colorFrom} ${item.colorTo} opacity-0 group-hover:opacity-40 blur-md transition duration-500"></div>
|
| 490 |
-
|
| 491 |
-
<div class="relative h-full flex flex-col justify-between glass-panel p-5 rounded-[24px] shadow-2xl overflow-hidden group-hover:border-white/20 transition-all duration-300">
|
| 492 |
-
<div class="flex justify-between items-start mb-5 relative z-10">
|
| 493 |
-
<div class="relative p-3.5 rounded-2xl bg-gradient-to-br ${item.colorFrom} ${item.colorTo} shadow-lg ring-1 ring-white/20 group-hover:scale-105 transition-transform duration-300">
|
| 494 |
-
<i data-lucide="${item.icon}" class="text-white w-6 h-6 relative z-10"></i>
|
| 495 |
-
</div>
|
| 496 |
-
|
| 497 |
-
${item.isNew || item.isHot ? `
|
| 498 |
-
<div class="flex flex-col items-end gap-1">
|
| 499 |
-
${item.isNew ? `<span class="px-2.5 py-1 text-[9px] font-bold bg-gradient-to-r from-amber-400 to-orange-500 text-white rounded-full shadow-lg shadow-amber-500/20">جدید</span>` : ''}
|
| 500 |
-
${item.isHot ? `<span class="px-2.5 py-1 text-[9px] font-bold bg-gradient-to-r from-rose-500 to-pink-600 text-white rounded-full shadow-lg shadow-rose-500/20">داغ</span>` : ''}
|
| 501 |
-
</div>
|
| 502 |
-
` : ''}
|
| 503 |
-
</div>
|
| 504 |
-
|
| 505 |
-
<div class="relative z-10">
|
| 506 |
-
<h3 class="text-[16px] font-bold text-white mb-1.5 tracking-tight group-hover:text-transparent group-hover:bg-clip-text group-hover:bg-gradient-to-r group-hover:from-white group-hover:to-slate-300 transition-colors">
|
| 507 |
-
${item.title}
|
| 508 |
-
</h3>
|
| 509 |
-
<p class="text-[11px] text-slate-400 font-medium leading-relaxed opacity-80 group-hover:opacity-100 transition-opacity">
|
| 510 |
-
${item.subtitle}
|
| 511 |
-
</p>
|
| 512 |
-
</div>
|
| 513 |
-
|
| 514 |
-
<!-- Action Icon -->
|
| 515 |
-
<div class="absolute bottom-4 left-4 w-8 h-8 rounded-full bg-white/5 border border-white/5 flex items-center justify-center opacity-0 translate-y-4 group-hover:opacity-100 group-hover:translate-y-0 transition-all duration-300 shadow-lg">
|
| 516 |
-
<i data-lucide="arrow-left" size="14" class="text-white w-3 h-3"></i>
|
| 517 |
-
</div>
|
| 518 |
-
</div>
|
| 519 |
-
</div>
|
| 520 |
-
`;
|
| 521 |
-
gridContainer.innerHTML += html;
|
| 522 |
-
});
|
| 523 |
-
|
| 524 |
-
// 4. Render Special Feature
|
| 525 |
-
const specialContainer = document.getElementById('special-feature-container');
|
| 526 |
-
specialContainer.innerHTML = `
|
| 527 |
-
<div class="relative w-full cursor-pointer group" onclick="alert('تولید صدای هوشمند شروع شد!')">
|
| 528 |
-
<div class="absolute -inset-[2px] bg-gradient-to-r from-indigo-500 via-purple-500 to-pink-500 rounded-[26px] opacity-70 blur-sm group-hover:opacity-100 group-hover:blur-md transition duration-500 animate-pulse"></div>
|
| 529 |
-
|
| 530 |
-
<div class="relative overflow-hidden p-6 bg-[#0f1219] rounded-[24px] border border-white/10">
|
| 531 |
-
<!-- Background Mesh -->
|
| 532 |
-
<div class="absolute inset-0 opacity-20 pointer-events-none">
|
| 533 |
-
<div class="absolute top-0 right-0 w-64 h-64 bg-indigo-600 rounded-full blur-[80px] animate-pulse"></div>
|
| 534 |
-
<div class="absolute bottom-0 left-0 w-64 h-64 bg-purple-600 rounded-full blur-[80px] animate-pulse" style="animation-delay: 1s;"></div>
|
| 535 |
-
</div>
|
| 536 |
-
|
| 537 |
-
<div class="relative z-10 flex flex-col sm:flex-row sm:items-center justify-between gap-4">
|
| 538 |
-
<div class="flex items-center gap-5">
|
| 539 |
-
<div class="relative">
|
| 540 |
-
<div class="w-16 h-16 rounded-2xl bg-gradient-to-br ${SPECIAL_FEATURE.colorFrom} ${SPECIAL_FEATURE.colorTo} flex items-center justify-center shadow-lg shadow-indigo-500/30 ring-4 ring-indigo-500/10 group-hover:scale-105 transition-transform duration-300">
|
| 541 |
-
<i data-lucide="${SPECIAL_FEATURE.icon}" class="text-white w-8 h-8"></i>
|
| 542 |
-
</div>
|
| 543 |
-
<div class="absolute -top-2 -right-2 bg-white text-indigo-700 text-[10px] font-black px-2 py-0.5 rounded-full shadow-md border-2 border-[#0f1219]">Ai</div>
|
| 544 |
-
</div>
|
| 545 |
-
|
| 546 |
-
<div>
|
| 547 |
-
<div class="flex items-center gap-2 mb-1">
|
| 548 |
-
<h3 class="text-xl font-black text-white">${SPECIAL_FEATURE.title}</h3>
|
| 549 |
-
<i data-lucide="sparkles" class="w-5 h-5 text-yellow-400 fill-yellow-400 animate-bounce"></i>
|
| 550 |
-
</div>
|
| 551 |
-
<p class="text-sm text-slate-300 font-medium opacity-90 max-w-[200px] leading-relaxed">${SPECIAL_FEATURE.subtitle}</p>
|
| 552 |
-
</div>
|
| 553 |
-
</div>
|
| 554 |
-
|
| 555 |
-
<div class="self-end sm:self-center">
|
| 556 |
-
<div class="w-12 h-12 rounded-full bg-white/10 hover:bg-white text-white hover:text-indigo-900 flex items-center justify-center border border-white/10 transition-all duration-300 group-hover:rotate-[-45deg]">
|
| 557 |
-
<i data-lucide="arrow-left" class="w-5 h-5" stroke-width="3"></i>
|
| 558 |
-
</div>
|
| 559 |
-
</div>
|
| 560 |
-
</div>
|
| 561 |
-
<div class="absolute top-1/2 right-10 -translate-y-1/2 opacity-5 pointer-events-none">
|
| 562 |
-
<i data-lucide="wand-2" width="120" height="120"></i>
|
| 563 |
-
</div>
|
| 564 |
-
</div>
|
| 565 |
-
</div>
|
| 566 |
-
`;
|
| 567 |
-
|
| 568 |
-
// 5. Navigation Logic
|
| 569 |
-
function switchTab(tab) {
|
| 570 |
-
const homeView = document.getElementById('home-view');
|
| 571 |
-
const accountView = document.getElementById('account-view');
|
| 572 |
-
const indicator = document.getElementById('nav-indicator');
|
| 573 |
-
const btnHome = document.getElementById('btn-home');
|
| 574 |
-
const btnAccount = document.getElementById('btn-account');
|
| 575 |
-
|
| 576 |
-
if (tab === 'home') {
|
| 577 |
-
homeView.classList.add('active');
|
| 578 |
-
accountView.classList.remove('active');
|
| 579 |
-
|
| 580 |
-
// Style updates
|
| 581 |
-
// Home is on the Right side in RTL. Left 50% starts the second half (Right side).
|
| 582 |
-
indicator.style.left = '50%';
|
| 583 |
-
|
| 584 |
-
btnHome.classList.replace('text-slate-400', 'text-white');
|
| 585 |
-
btnAccount.classList.replace('text-white', 'text-slate-400');
|
| 586 |
-
} else {
|
| 587 |
-
homeView.classList.remove('active');
|
| 588 |
-
accountView.classList.add('active');
|
| 589 |
-
|
| 590 |
-
// Style updates
|
| 591 |
-
// Account is on the Left side in RTL. Left 8px starts the first half (Left side).
|
| 592 |
-
indicator.style.left = '8px';
|
| 593 |
-
|
| 594 |
-
btnAccount.classList.replace('text-slate-400', 'text-white');
|
| 595 |
-
btnHome.classList.replace('text-white', 'text-slate-400');
|
| 596 |
-
}
|
| 597 |
-
window.scrollTo(0,0);
|
| 598 |
-
}
|
| 599 |
-
|
| 600 |
-
// Init Icons
|
| 601 |
-
lucide.createIcons();
|
| 602 |
-
|
| 603 |
-
</script>
|
| 604 |
-
</body>
|
| 605 |
-
</html>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|