757.docx
الفصل 757. التغيير
بدا نوح قادرًا على رؤية كيف يبدو الأمر وكأنهم جزء من رسم كبير من المفترض أن يظل مخفيًا تحت الهيكل الذي احتل تلك المنطقة.
لم يكن الرسم دقيقًا تمامًا، لكن نوح لم يكن مخطئًا بشأن ما يراه.
.shola-widget, .shola-lb-wrap, .shola-pb-wrap { background: var(--bg-color, #fff); border: 1px solid var(--border-color, #e5e2e2); border-radius: 4px; padding: 15px; color: var(--text-color, #333); font-family: inherit; direction: rtl; box-sizing: border-box; margin-bottom: 20px; } .darkmode .shola-widget, .darkmode .shola-lb-wrap, .darkmode .shola-pb-wrap { background: #1a1a1a; border-color: #333; color: #ddd; } .shola-progress-wrap { margin-bottom: 20px; } .shola-progress-header, .shola-pb-header { display: flex; justify-content: space-between; align-items: center; font-size: .95em; margin-bottom: 6px; font-weight: bold; } .shola-days-left, .shola-pb-days { color: #f5a623; font-size: .85em; font-weight: normal; } .shola-numbers, .shola-pb-numbers { display: flex; justify-content: space-between; font-size: .85em; color: inherit; margin-bottom: 8px; opacity: 0.8; } .shola-bar-bg, .shola-pb-bg { background: rgba(150,150,150,0.2); border-radius: 20px; height: 25px; overflow: hidden; } .shola-bar-fill, .shola-pb-fill { background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); height: 100%; border-radius: 20px; display: flex; align-items: center; justify-content: flex-end; padding-left: 10px; min-width: 4px; transition: width 1s ease; font-size: .8em; font-weight: bold; color:#fff; } .shola-completed, .shola-pb-done { text-align: center; color: #2ecc71; font-weight: bold; margin-top: 10px; font-size: 1.05em; } .shola-pre-goal, .shola-pb-pre { text-align: center; color: inherit; font-weight: bold; margin-top: 10px; font-size: 1.05em; opacity: 0.9; } .shola-tabs { display: flex; gap: 8px; margin-bottom: 14px; border-bottom: 1px solid rgba(150,150,150,0.2); padding-bottom: 10px; flex-wrap: wrap; } .shola-tab { background: rgba(150,150,150,0.1); border: 1px solid rgba(150,150,150,0.2); color: inherit; padding: 5px 12px; border-radius: 3px; cursor: pointer; font-family: inherit; font-size: .85em; transition: all .3s; } .shola-tab.active { background: #366ad3; border-color: #366ad3; color: #fff; } .shola-tab:hover:not(.active) { background: rgba(150,150,150,0.2); } .shola-row, .shola-lb-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 4px; margin-bottom: 6px; background: rgba(150,150,150,0.05); transition: background .2s; border:1px solid rgba(150,150,150,0.1); } .shola-top3, .shola-lb-top3 { background: rgba(54,106,211,0.08); border-color:rgba(54,106,211,0.2); } .shola-row:hover, .shola-lb-row:hover { background: rgba(150,150,150,0.1); } .shola-rank, .shola-lb-rank { min-width: 30px; text-align: center; font-size: 1.1em; } .shola-num, .shola-lb-num { display: inline-block; width: 22px; height: 22px; line-height: 22px; text-align: center; background: rgba(150,150,150,0.2); border-radius: 50%; font-size: .8em; color: inherit; opacity:0.8; } .shola-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(150,150,150,0.3); flex-shrink: 0; } .shola-uname, .shola-lb-uname { flex: 1; font-size: .95em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight:600;} .shola-score, .shola-lb-score { color: #f5a623; font-weight: bold; font-size: .9em; white-space: nowrap; } .shola-empty, .shola-lb-empty { text-align: center; color: inherit; opacity:0.7; padding: 20px 0; font-size: .9em; } .shola-btn-support { display: block; width: 100%; background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); color: #fff; text-align: center; padding: 10px; border-radius: 4px; font-weight: bold; cursor: pointer; border: none; margin-top: 15px; font-family: inherit; font-size: 1.05em; transition: opacity 0.3s; } .shola-btn-support:hover { opacity: 0.9; color: #fff; } .shola-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 999999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(3px); } .shola-modal-box { background: var(--bg-color, #fff); color: var(--text-color, #333); padding: 25px; border-radius: 8px; width: 90%; max-width: 400px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .darkmode .shola-modal-box { background: #1a1a1a; color: #ddd; border: 1px solid #333; } .shola-modal-close { position: absolute; top: 10px; left: 15px; font-size: 24px; cursor: pointer; color: inherit; opacity: 0.7; font-weight: bold; line-height: 1; } .shola-modal-close:hover { opacity: 1; } function sholaTab(btn, id) { var widget = btn.closest(".shola-widget"); widget.querySelectorAll(".shola-tab").forEach(function(b){ b.classList.remove("active"); }); widget.querySelectorAll(".shola-board").forEach(function(b){ b.style.display = "none"; }); btn.classList.add("active"); document.getElementById("shola-" + id).style.display = "block"; } function sholaOpenModal(modalId) { document.getElementById(modalId).style.display = "flex"; } function sholaCloseModal(modalId) { document.getElementById(modalId).style.display = "none"; } 🔥 تحدي أغسطس 2026 ⏳ 22 يوم متبقي 39,405 شعلة الهدف: 66,666 59.1% 🔥 ادعم الموقع لضمان استمراريته وبدون ظهور إعلانات مزعجة للجميع! إدعمنا × شراء عملة الشعلة 🏆 أكبر الداعمين هذا الشهر 💎 أكبر الداعمين كل الأوقات 🥇M. K🔥 10,000🥈Yazeed Alsaedi🔥 105🥉Basil Alfaifi🔥 1004husam Al marzouqi🔥 1005Nasser Bin zayed🔥 1006Abdullah Alzahrani🔥 1007A D🔥 1008Faisal Almulhim🔥 1009Humaid Alali🔥 10010azcol azcol200🔥 100 🥇M. K💎 22,000🥈Fares saeed💎 1,100🥉Hamood Mahemed💎 5004Abdullah K💎 5005ibrahim shazly💎 5006Yazeed Alsaedi💎 1057Ahmed khirallh💎 1008السيد الشاب💎 1009med abda💎 10010ABDULWAHAB ALKHALAF💎 100
لقد غيّرت النباتات التي نمت هناك على مر السنين، وتأثير الوحوش السحرية، تلك البيئة، وغيّرت الشكل الأصلي لتلك الخطوط. ومع ذلك، فقد صمد بعضها أمام مرور الزمن وتأثيرات الطبيعة، تاركًا بعض الصور المميزة التي يمكن لأي شخص رؤيتها.
اهتزت الأرض، وغلت الصهارة خلال ذلك الحدث، لكن الممارسين الذين يحرسون الممر لم يحركوا ساكنًا لإيقاف تلك الهزات. بل ارتسمت على وجوههم تعابير صارمة وهم ينتظرون وصول أحد أقوى الموارد التي يقدمها عالمهم.
لم يكتفِ نوح بهذا الرسم، بل عاد إلى الأرض وبدأ باقتلاع أي نبات في المنطقة يحمل تلك النقوش الأساسية.
فتحت له الأراضي الجديدة آفاقًا بوجود أنواع أخرى من البشر والوحوش، وأن أنواعًا تشبه الهجائن قد ظهرت طبيعيًا. لذا، لم يكن لديه ثقة في افتراض أن هذه المخلوقات غير الكاملة لا يمكن أن تظهر من تلقاء نفسها.
ظهرت خطوطٌ أخرى وهو يمسح التضاريس. حملت هذه الخطوط شعورًا خفيفًا بالمتانة، وقد تلاشى هذا الشعور في الغالب لأن أسلافه ربما نقشوها منذ زمن.
نشرت وعيها لتحليل المنطقة، وترددت سلسلة من الصرخات المرعبة في الأراضي القريبة حيث شعرت الوحوش التي تعيش هناك بالخطر الهائل الذي تحمله تلك الموجات العقلية.
بدا نوح قادرًا على رؤية كيف يبدو الأمر وكأنهم جزء من رسم كبير من المفترض أن يظل مخفيًا تحت الهيكل الذي احتل تلك المنطقة.
.shola-widget, .shola-lb-wrap, .shola-pb-wrap { background: var(--bg-color, #fff); border: 1px solid var(--border-color, #e5e2e2); border-radius: 4px; padding: 15px; color: var(--text-color, #333); font-family: inherit; direction: rtl; box-sizing: border-box; margin-bottom: 20px; } .darkmode .shola-widget, .darkmode .shola-lb-wrap, .darkmode .shola-pb-wrap { background: #1a1a1a; border-color: #333; color: #ddd; } .shola-progress-wrap { margin-bottom: 20px; } .shola-progress-header, .shola-pb-header { display: flex; justify-content: space-between; align-items: center; font-size: .95em; margin-bottom: 6px; font-weight: bold; } .shola-days-left, .shola-pb-days { color: #f5a623; font-size: .85em; font-weight: normal; } .shola-numbers, .shola-pb-numbers { display: flex; justify-content: space-between; font-size: .85em; color: inherit; margin-bottom: 8px; opacity: 0.8; } .shola-bar-bg, .shola-pb-bg { background: rgba(150,150,150,0.2); border-radius: 20px; height: 25px; overflow: hidden; } .shola-bar-fill, .shola-pb-fill { background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); height: 100%; border-radius: 20px; display: flex; align-items: center; justify-content: flex-end; padding-left: 10px; min-width: 4px; transition: width 1s ease; font-size: .8em; font-weight: bold; color:#fff; } .shola-completed, .shola-pb-done { text-align: center; color: #2ecc71; font-weight: bold; margin-top: 10px; font-size: 1.05em; } .shola-pre-goal, .shola-pb-pre { text-align: center; color: inherit; font-weight: bold; margin-top: 10px; font-size: 1.05em; opacity: 0.9; } .shola-tabs { display: flex; gap: 8px; margin-bottom: 14px; border-bottom: 1px solid rgba(150,150,150,0.2); padding-bottom: 10px; flex-wrap: wrap; } .shola-tab { background: rgba(150,150,150,0.1); border: 1px solid rgba(150,150,150,0.2); color: inherit; padding: 5px 12px; border-radius: 3px; cursor: pointer; font-family: inherit; font-size: .85em; transition: all .3s; } .shola-tab.active { background: #366ad3; border-color: #366ad3; color: #fff; } .shola-tab:hover:not(.active) { background: rgba(150,150,150,0.2); } .shola-row, .shola-lb-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 4px; margin-bottom: 6px; background: rgba(150,150,150,0.05); transition: background .2s; border:1px solid rgba(150,150,150,0.1); } .shola-top3, .shola-lb-top3 { background: rgba(54,106,211,0.08); border-color:rgba(54,106,211,0.2); } .shola-row:hover, .shola-lb-row:hover { background: rgba(150,150,150,0.1); } .shola-rank, .shola-lb-rank { min-width: 30px; text-align: center; font-size: 1.1em; } .shola-num, .shola-lb-num { display: inline-block; width: 22px; height: 22px; line-height: 22px; text-align: center; background: rgba(150,150,150,0.2); border-radius: 50%; font-size: .8em; color: inherit; opacity:0.8; } .shola-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(150,150,150,0.3); flex-shrink: 0; } .shola-uname, .shola-lb-uname { flex: 1; font-size: .95em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight:600;} .shola-score, .shola-lb-score { color: #f5a623; font-weight: bold; font-size: .9em; white-space: nowrap; } .shola-empty, .shola-lb-empty { text-align: center; color: inherit; opacity:0.7; padding: 20px 0; font-size: .9em; } .shola-btn-support { display: block; width: 100%; background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); color: #fff; text-align: center; padding: 10px; border-radius: 4px; font-weight: bold; cursor: pointer; border: none; margin-top: 15px; font-family: inherit; font-size: 1.05em; transition: opacity 0.3s; } .shola-btn-support:hover { opacity: 0.9; color: #fff; } .shola-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 999999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(3px); } .shola-modal-box { background: var(--bg-color, #fff); color: var(--text-color, #333); padding: 25px; border-radius: 8px; width: 90%; max-width: 400px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .darkmode .shola-modal-box { background: #1a1a1a; color: #ddd; border: 1px solid #333; } .shola-modal-close { position: absolute; top: 10px; left: 15px; font-size: 24px; cursor: pointer; color: inherit; opacity: 0.7; font-weight: bold; line-height: 1; } .shola-modal-close:hover { opacity: 1; } function sholaTab(btn, id) { var widget = btn.closest(".shola-widget"); widget.querySelectorAll(".shola-tab").forEach(function(b){ b.classList.remove("active"); }); widget.querySelectorAll(".shola-board").forEach(function(b){ b.style.display = "none"; }); btn.classList.add("active"); document.getElementById("shola-" + id).style.display = "block"; } function sholaOpenModal(modalId) { document.getElementById(modalId).style.display = "flex"; } function sholaCloseModal(modalId) { document.getElementById(modalId).style.display = "none"; } 🔥 تحدي أغسطس 2026 ⏳ 22 يوم متبقي 39,405 شعلة الهدف: 66,666 59.1% 🔥 ادعم الموقع لضمان استمراريته وبدون ظهور إعلانات مزعجة للجميع! إدعمنا × شراء عملة الشعلة 🏆 أكبر الداعمين هذا الشهر 💎 أكبر الداعمين كل الأوقات 🥇M. K🔥 10,000🥈Yazeed Alsaedi🔥 105🥉Basil Alfaifi🔥 1004husam Al marzouqi🔥 1005Nasser Bin zayed🔥 1006Abdullah Alzahrani🔥 1007A D🔥 1008Faisal Almulhim🔥 1009Humaid Alali🔥 10010azcol azcol200🔥 100 🥇M. K💎 22,000🥈Fares saeed💎 1,100🥉Hamood Mahemed💎 5004Abdullah K💎 5005ibrahim shazly💎 5006Yazeed Alsaedi💎 1057Ahmed khirallh💎 1008السيد الشاب💎 1009med abda💎 10010ABDULWAHAB ALKHALAF💎 100
“قطع من التاريخ غطاها السكان الأصليون بمبانيهم.” فكّر نوح بينما انكشفت تلك اللوحة المهترئة في رؤيته.
كما أن اكتشاف نوح جعلهم يتفقون على أنه حان الوقت لإظهار أيديهم.
بالطبع، ذلك محض افتراض. لم يكن نوح متأكدًا من أصل تلك الخطوط، ولا من سبب تغطيتها بأطلال ما بدا أنه قلعة. ومع ذلك، فقد صوّروا صورًا غامضة لا بد أن لها معنىً ما عند اقترانها بغرابة ذلك العالم.
لقد عرف أن أسلافه كانوا كائنات هجينة، لكن تلك الصور تلمح إلى شيء مختلف تمامًا.
تمكن نوح من العثور على أشكال شبه كاملة عندما كشف عن الخطوط المتبقية كاملة. عثر على المزيد من الرسومات التي تصور كائنات هجينة غريبة ذات سمات جسدية تنتمي إلى عالم البشر وتلك الوحوش.
.shola-widget, .shola-lb-wrap, .shola-pb-wrap { background: var(--bg-color, #fff); border: 1px solid var(--border-color, #e5e2e2); border-radius: 4px; padding: 15px; color: var(--text-color, #333); font-family: inherit; direction: rtl; box-sizing: border-box; margin-bottom: 20px; } .darkmode .shola-widget, .darkmode .shola-lb-wrap, .darkmode .shola-pb-wrap { background: #1a1a1a; border-color: #333; color: #ddd; } .shola-progress-wrap { margin-bottom: 20px; } .shola-progress-header, .shola-pb-header { display: flex; justify-content: space-between; align-items: center; font-size: .95em; margin-bottom: 6px; font-weight: bold; } .shola-days-left, .shola-pb-days { color: #f5a623; font-size: .85em; font-weight: normal; } .shola-numbers, .shola-pb-numbers { display: flex; justify-content: space-between; font-size: .85em; color: inherit; margin-bottom: 8px; opacity: 0.8; } .shola-bar-bg, .shola-pb-bg { background: rgba(150,150,150,0.2); border-radius: 20px; height: 25px; overflow: hidden; } .shola-bar-fill, .shola-pb-fill { background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); height: 100%; border-radius: 20px; display: flex; align-items: center; justify-content: flex-end; padding-left: 10px; min-width: 4px; transition: width 1s ease; font-size: .8em; font-weight: bold; color:#fff; } .shola-completed, .shola-pb-done { text-align: center; color: #2ecc71; font-weight: bold; margin-top: 10px; font-size: 1.05em; } .shola-pre-goal, .shola-pb-pre { text-align: center; color: inherit; font-weight: bold; margin-top: 10px; font-size: 1.05em; opacity: 0.9; } .shola-tabs { display: flex; gap: 8px; margin-bottom: 14px; border-bottom: 1px solid rgba(150,150,150,0.2); padding-bottom: 10px; flex-wrap: wrap; } .shola-tab { background: rgba(150,150,150,0.1); border: 1px solid rgba(150,150,150,0.2); color: inherit; padding: 5px 12px; border-radius: 3px; cursor: pointer; font-family: inherit; font-size: .85em; transition: all .3s; } .shola-tab.active { background: #366ad3; border-color: #366ad3; color: #fff; } .shola-tab:hover:not(.active) { background: rgba(150,150,150,0.2); } .shola-row, .shola-lb-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 4px; margin-bottom: 6px; background: rgba(150,150,150,0.05); transition: background .2s; border:1px solid rgba(150,150,150,0.1); } .shola-top3, .shola-lb-top3 { background: rgba(54,106,211,0.08); border-color:rgba(54,106,211,0.2); } .shola-row:hover, .shola-lb-row:hover { background: rgba(150,150,150,0.1); } .shola-rank, .shola-lb-rank { min-width: 30px; text-align: center; font-size: 1.1em; } .shola-num, .shola-lb-num { display: inline-block; width: 22px; height: 22px; line-height: 22px; text-align: center; background: rgba(150,150,150,0.2); border-radius: 50%; font-size: .8em; color: inherit; opacity:0.8; } .shola-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(150,150,150,0.3); flex-shrink: 0; } .shola-uname, .shola-lb-uname { flex: 1; font-size: .95em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight:600;} .shola-score, .shola-lb-score { color: #f5a623; font-weight: bold; font-size: .9em; white-space: nowrap; } .shola-empty, .shola-lb-empty { text-align: center; color: inherit; opacity:0.7; padding: 20px 0; font-size: .9em; } .shola-btn-support { display: block; width: 100%; background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); color: #fff; text-align: center; padding: 10px; border-radius: 4px; font-weight: bold; cursor: pointer; border: none; margin-top: 15px; font-family: inherit; font-size: 1.05em; transition: opacity 0.3s; } .shola-btn-support:hover { opacity: 0.9; color: #fff; } .shola-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 999999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(3px); } .shola-modal-box { background: var(--bg-color, #fff); color: var(--text-color, #333); padding: 25px; border-radius: 8px; width: 90%; max-width: 400px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .darkmode .shola-modal-box { background: #1a1a1a; color: #ddd; border: 1px solid #333; } .shola-modal-close { position: absolute; top: 10px; left: 15px; font-size: 24px; cursor: pointer; color: inherit; opacity: 0.7; font-weight: bold; line-height: 1; } .shola-modal-close:hover { opacity: 1; } function sholaTab(btn, id) { var widget = btn.closest(".shola-widget"); widget.querySelectorAll(".shola-tab").forEach(function(b){ b.classList.remove("active"); }); widget.querySelectorAll(".shola-board").forEach(function(b){ b.style.display = "none"; }); btn.classList.add("active"); document.getElementById("shola-" + id).style.display = "block"; } function sholaOpenModal(modalId) { document.getElementById(modalId).style.display = "flex"; } function sholaCloseModal(modalId) { document.getElementById(modalId).style.display = "none"; } 🔥 تحدي أغسطس 2026 ⏳ 22 يوم متبقي 39,405 شعلة الهدف: 66,666 59.1% 🔥 ادعم الموقع لضمان استمراريته وبدون ظهور إعلانات مزعجة للجميع! إدعمنا × شراء عملة الشعلة 🏆 أكبر الداعمين هذا الشهر 💎 أكبر الداعمين كل الأوقات 🥇M. K🔥 10,000🥈Yazeed Alsaedi🔥 105🥉Basil Alfaifi🔥 1004husam Al marzouqi🔥 1005Nasser Bin zayed🔥 1006Abdullah Alzahrani🔥 1007A D🔥 1008Faisal Almulhim🔥 1009Humaid Alali🔥 10010azcol azcol200🔥 100 🥇M. K💎 22,000🥈Fares saeed💎 1,100🥉Hamood Mahemed💎 5004Abdullah K💎 5005ibrahim shazly💎 5006Yazeed Alsaedi💎 1057Ahmed khirallh💎 1008السيد الشاب💎 1009med abda💎 10010ABDULWAHAB ALKHALAF💎 100
لقد رأى شكلًا بشريًا برأس سمكة، وأخطبوطًا غريبًا له أذرع بدلاً من المجسات، وذئبًا مخيفًا له ثلاث جماجم بشرية.
وصلت جون وفايث بعد أن أدركا أن هناك خطأ ما، وشعرا بنفس الدهشة عندما رأيا الرسومات.
“هذا لا معنى له.” صرخ نوح في ذهنه بينما ظل يطفو فوق الرسم.
لقد عرف أن أسلافه كانوا كائنات هجينة، لكن تلك الصور تلمح إلى شيء مختلف تمامًا.
لقد عرف أن أسلافه كانوا كائنات هجينة، لكن تلك الصور تلمح إلى شيء مختلف تمامًا.
الفصل 757. التغيير
فكر نوح قائلاً: “لا يمكن لمثل هذه الأشكال من الحياة أن تظهر بشكل طبيعي، أم أنها يمكن أن تظهر؟”
وفي هذه الأثناء، بدت الحقيقة التي كشفها نوح لها تداعيات هائلة على العلاقة بين العالمين.
لم يعد نوح يعرف ماذا يصدق.
يعتقد أن هذه المخلوقات هي نتيجة تجارب على المادة المُطَفِّرة التي تحملها وحوش النخبة. ومع ذلك، فإن الاختبارات على البشر المُعيبين لن تُصبح مجرد رسومات مُخبأة تحت هياكل ضخمة.
فتحت له الأراضي الجديدة آفاقًا بوجود أنواع أخرى من البشر والوحوش، وأن أنواعًا تشبه الهجائن قد ظهرت طبيعيًا. لذا، لم يكن لديه ثقة في افتراض أن هذه المخلوقات غير الكاملة لا يمكن أن تظهر من تلقاء نفسها.
لقد رأى شكلًا بشريًا برأس سمكة، وأخطبوطًا غريبًا له أذرع بدلاً من المجسات، وذئبًا مخيفًا له ثلاث جماجم بشرية.
وصلت جون وفايث بعد أن أدركا أن هناك خطأ ما، وشعرا بنفس الدهشة عندما رأيا الرسومات.
تمكن نوح من العثور على أشكال شبه كاملة عندما كشف عن الخطوط المتبقية كاملة. عثر على المزيد من الرسومات التي تصور كائنات هجينة غريبة ذات سمات جسدية تنتمي إلى عالم البشر وتلك الوحوش.
“ماذا تعتقد؟” سألت جون وهي تستدير لتنظر إلى نوح.
شعر نوح بفضولٍ يفوق طاقته وهو يواجه المرأتين. “هيا نبحث عن المزيد من الآثار.”
استطاعت فورًا أن تجد رابطًا بين تلك الصور وجسد نوح الغريب، إذ عرفت ملامحه. كما رأت كيف بدت سلالته ترغب فيه.
.shola-widget, .shola-lb-wrap, .shola-pb-wrap { background: var(--bg-color, #fff); border: 1px solid var(--border-color, #e5e2e2); border-radius: 4px; padding: 15px; color: var(--text-color, #333); font-family: inherit; direction: rtl; box-sizing: border-box; margin-bottom: 20px; } .darkmode .shola-widget, .darkmode .shola-lb-wrap, .darkmode .shola-pb-wrap { background: #1a1a1a; border-color: #333; color: #ddd; } .shola-progress-wrap { margin-bottom: 20px; } .shola-progress-header, .shola-pb-header { display: flex; justify-content: space-between; align-items: center; font-size: .95em; margin-bottom: 6px; font-weight: bold; } .shola-days-left, .shola-pb-days { color: #f5a623; font-size: .85em; font-weight: normal; } .shola-numbers, .shola-pb-numbers { display: flex; justify-content: space-between; font-size: .85em; color: inherit; margin-bottom: 8px; opacity: 0.8; } .shola-bar-bg, .shola-pb-bg { background: rgba(150,150,150,0.2); border-radius: 20px; height: 25px; overflow: hidden; } .shola-bar-fill, .shola-pb-fill { background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); height: 100%; border-radius: 20px; display: flex; align-items: center; justify-content: flex-end; padding-left: 10px; min-width: 4px; transition: width 1s ease; font-size: .8em; font-weight: bold; color:#fff; } .shola-completed, .shola-pb-done { text-align: center; color: #2ecc71; font-weight: bold; margin-top: 10px; font-size: 1.05em; } .shola-pre-goal, .shola-pb-pre { text-align: center; color: inherit; font-weight: bold; margin-top: 10px; font-size: 1.05em; opacity: 0.9; } .shola-tabs { display: flex; gap: 8px; margin-bottom: 14px; border-bottom: 1px solid rgba(150,150,150,0.2); padding-bottom: 10px; flex-wrap: wrap; } .shola-tab { background: rgba(150,150,150,0.1); border: 1px solid rgba(150,150,150,0.2); color: inherit; padding: 5px 12px; border-radius: 3px; cursor: pointer; font-family: inherit; font-size: .85em; transition: all .3s; } .shola-tab.active { background: #366ad3; border-color: #366ad3; color: #fff; } .shola-tab:hover:not(.active) { background: rgba(150,150,150,0.2); } .shola-row, .shola-lb-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 4px; margin-bottom: 6px; background: rgba(150,150,150,0.05); transition: background .2s; border:1px solid rgba(150,150,150,0.1); } .shola-top3, .shola-lb-top3 { background: rgba(54,106,211,0.08); border-color:rgba(54,106,211,0.2); } .shola-row:hover, .shola-lb-row:hover { background: rgba(150,150,150,0.1); } .shola-rank, .shola-lb-rank { min-width: 30px; text-align: center; font-size: 1.1em; } .shola-num, .shola-lb-num { display: inline-block; width: 22px; height: 22px; line-height: 22px; text-align: center; background: rgba(150,150,150,0.2); border-radius: 50%; font-size: .8em; color: inherit; opacity:0.8; } .shola-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(150,150,150,0.3); flex-shrink: 0; } .shola-uname, .shola-lb-uname { flex: 1; font-size: .95em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight:600;} .shola-score, .shola-lb-score { color: #f5a623; font-weight: bold; font-size: .9em; white-space: nowrap; } .shola-empty, .shola-lb-empty { text-align: center; color: inherit; opacity:0.7; padding: 20px 0; font-size: .9em; } .shola-btn-support { display: block; width: 100%; background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); color: #fff; text-align: center; padding: 10px; border-radius: 4px; font-weight: bold; cursor: pointer; border: none; margin-top: 15px; font-family: inherit; font-size: 1.05em; transition: opacity 0.3s; } .shola-btn-support:hover { opacity: 0.9; color: #fff; } .shola-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 999999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(3px); } .shola-modal-box { background: var(--bg-color, #fff); color: var(--text-color, #333); padding: 25px; border-radius: 8px; width: 90%; max-width: 400px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .darkmode .shola-modal-box { background: #1a1a1a; color: #ddd; border: 1px solid #333; } .shola-modal-close { position: absolute; top: 10px; left: 15px; font-size: 24px; cursor: pointer; color: inherit; opacity: 0.7; font-weight: bold; line-height: 1; } .shola-modal-close:hover { opacity: 1; } function sholaTab(btn, id) { var widget = btn.closest(".shola-widget"); widget.querySelectorAll(".shola-tab").forEach(function(b){ b.classList.remove("active"); }); widget.querySelectorAll(".shola-board").forEach(function(b){ b.style.display = "none"; }); btn.classList.add("active"); document.getElementById("shola-" + id).style.display = "block"; } function sholaOpenModal(modalId) { document.getElementById(modalId).style.display = "flex"; } function sholaCloseModal(modalId) { document.getElementById(modalId).style.display = "none"; } 🔥 تحدي أغسطس 2026 ⏳ 22 يوم متبقي 39,405 شعلة الهدف: 66,666 59.1% 🔥 ادعم الموقع لضمان استمراريته وبدون ظهور إعلانات مزعجة للجميع! إدعمنا × شراء عملة الشعلة 🏆 أكبر الداعمين هذا الشهر 💎 أكبر الداعمين كل الأوقات 🥇M. K🔥 10,000🥈Yazeed Alsaedi🔥 105🥉Basil Alfaifi🔥 1004husam Al marzouqi🔥 1005Nasser Bin zayed🔥 1006Abdullah Alzahrani🔥 1007A D🔥 1008Faisal Almulhim🔥 1009Humaid Alali🔥 10010azcol azcol200🔥 100 🥇M. K💎 22,000🥈Fares saeed💎 1,100🥉Hamood Mahemed💎 5004Abdullah K💎 5005ibrahim shazly💎 5006Yazeed Alsaedi💎 1057Ahmed khirallh💎 1008السيد الشاب💎 1009med abda💎 10010ABDULWAHAB ALKHALAF💎 100
لا بد من وجود صلة بين ماضيهم، أي الهجائن، وطريقة نوح في تغذية الجسد. مع ذلك، بدت معرفتها بالأمر محدودة جدًا بحيث لا تسمح لها بالافتراضات. وحده نوح يستطيع معرفة المزيد عنه، فهو خبير في مجال الوحوش السحرية، باستثناء وجود غريب يشبه أسلافه.
ومع ذلك، شعرت القوات من عالم نوح أن البشر النخبة قد خالفوا اتفاقياتهم، لذلك قرروا إظهار مدى جديتهم.
ولكن نوح لم يستطع إلا أن يهز رأسه عند هذا السؤال.
انحنى الممارسون المنتظرون وصولها، وهتفوا مُحيّين الكائن من الرتبة السادسة الذي انضمّ إلى مهمّتهم. “نرحّب بيد الملك اليسرى في العالم الجديد!”
لم يكن يعرف ماذا يفكر، لكنه يعلم أنه يجب عليه اكتشاف المزيد حول الموضوع وأن جهوده وحدها لن تكون كافية للحصول على إجابات سريعة.
السكان الأصليون يعبدون أسلافهم ونخبة البشر، مما يعني أن كل قطعة فنية يجب أن تُبرزهم. وكان من المستبعد جدًا أن يصوروا تجارب فاشلة من خلال نقوشهم.
التقط نوح دفتر ملاحظاته الخاص وبدأ بإضافة اكتشافاته إلى القائمة. حتى أنه نقل جميع الرسومات إلى الأرض.
.shola-widget, .shola-lb-wrap, .shola-pb-wrap { background: var(--bg-color, #fff); border: 1px solid var(--border-color, #e5e2e2); border-radius: 4px; padding: 15px; color: var(--text-color, #333); font-family: inherit; direction: rtl; box-sizing: border-box; margin-bottom: 20px; } .darkmode .shola-widget, .darkmode .shola-lb-wrap, .darkmode .shola-pb-wrap { background: #1a1a1a; border-color: #333; color: #ddd; } .shola-progress-wrap { margin-bottom: 20px; } .shola-progress-header, .shola-pb-header { display: flex; justify-content: space-between; align-items: center; font-size: .95em; margin-bottom: 6px; font-weight: bold; } .shola-days-left, .shola-pb-days { color: #f5a623; font-size: .85em; font-weight: normal; } .shola-numbers, .shola-pb-numbers { display: flex; justify-content: space-between; font-size: .85em; color: inherit; margin-bottom: 8px; opacity: 0.8; } .shola-bar-bg, .shola-pb-bg { background: rgba(150,150,150,0.2); border-radius: 20px; height: 25px; overflow: hidden; } .shola-bar-fill, .shola-pb-fill { background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); height: 100%; border-radius: 20px; display: flex; align-items: center; justify-content: flex-end; padding-left: 10px; min-width: 4px; transition: width 1s ease; font-size: .8em; font-weight: bold; color:#fff; } .shola-completed, .shola-pb-done { text-align: center; color: #2ecc71; font-weight: bold; margin-top: 10px; font-size: 1.05em; } .shola-pre-goal, .shola-pb-pre { text-align: center; color: inherit; font-weight: bold; margin-top: 10px; font-size: 1.05em; opacity: 0.9; } .shola-tabs { display: flex; gap: 8px; margin-bottom: 14px; border-bottom: 1px solid rgba(150,150,150,0.2); padding-bottom: 10px; flex-wrap: wrap; } .shola-tab { background: rgba(150,150,150,0.1); border: 1px solid rgba(150,150,150,0.2); color: inherit; padding: 5px 12px; border-radius: 3px; cursor: pointer; font-family: inherit; font-size: .85em; transition: all .3s; } .shola-tab.active { background: #366ad3; border-color: #366ad3; color: #fff; } .shola-tab:hover:not(.active) { background: rgba(150,150,150,0.2); } .shola-row, .shola-lb-row { display: flex; align-items: center; gap: 10px; padding: 8px 10px; border-radius: 4px; margin-bottom: 6px; background: rgba(150,150,150,0.05); transition: background .2s; border:1px solid rgba(150,150,150,0.1); } .shola-top3, .shola-lb-top3 { background: rgba(54,106,211,0.08); border-color:rgba(54,106,211,0.2); } .shola-row:hover, .shola-lb-row:hover { background: rgba(150,150,150,0.1); } .shola-rank, .shola-lb-rank { min-width: 30px; text-align: center; font-size: 1.1em; } .shola-num, .shola-lb-num { display: inline-block; width: 22px; height: 22px; line-height: 22px; text-align: center; background: rgba(150,150,150,0.2); border-radius: 50%; font-size: .8em; color: inherit; opacity:0.8; } .shola-avatar { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(150,150,150,0.3); flex-shrink: 0; } .shola-uname, .shola-lb-uname { flex: 1; font-size: .95em; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight:600;} .shola-score, .shola-lb-score { color: #f5a623; font-weight: bold; font-size: .9em; white-space: nowrap; } .shola-empty, .shola-lb-empty { text-align: center; color: inherit; opacity:0.7; padding: 20px 0; font-size: .9em; } .shola-btn-support { display: block; width: 100%; background: #366ad3; background: linear-gradient(90deg, #366ad3, #5785e6); color: #fff; text-align: center; padding: 10px; border-radius: 4px; font-weight: bold; cursor: pointer; border: none; margin-top: 15px; font-family: inherit; font-size: 1.05em; transition: opacity 0.3s; } .shola-btn-support:hover { opacity: 0.9; color: #fff; } .shola-modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 999999; display: none; align-items: center; justify-content: center; backdrop-filter: blur(3px); } .shola-modal-box { background: var(--bg-color, #fff); color: var(--text-color, #333); padding: 25px; border-radius: 8px; width: 90%; max-width: 400px; position: relative; box-shadow: 0 10px 30px rgba(0,0,0,0.5); } .darkmode .shola-modal-box { background: #1a1a1a; color: #ddd; border: 1px solid #333; } .shola-modal-close { position: absolute; top: 10px; left: 15px; font-size: 24px; cursor: pointer; color: inherit; opacity: 0.7; font-weight: bold; line-height: 1; } .shola-modal-close:hover { opacity: 1; } function sholaTab(btn, id) { var widget = btn.closest(".shola-widget"); widget.querySelectorAll(".shola-tab").forEach(function(b){ b.classList.remove("active"); }); widget.querySelectorAll(".shola-board").forEach(function(b){ b.style.display = "none"; }); btn.classList.add("active"); document.getElementById("shola-" + id).style.display = "block"; } function sholaOpenModal(modalId) { document.getElementById(modalId).style.display = "flex"; } function sholaCloseModal(modalId) { document.getElementById(modalId).style.display = "none"; } 🔥 تحدي أغسطس 2026 ⏳ 22 يوم متبقي 39,405 شعلة الهدف: 66,666 59.1% 🔥 ادعم الموقع لضمان استمراريته وبدون ظهور إعلانات مزعجة للجميع! إدعمنا × شراء عملة الشعلة 🏆 أكبر الداعمين هذا الشهر 💎 أكبر الداعمين كل الأوقات 🥇M. K🔥 10,000🥈Yazeed Alsaedi🔥 105🥉Basil Alfaifi🔥 1004husam Al marzouqi🔥 1005Nasser Bin zayed🔥 1006Abdullah Alzahrani🔥 1007A D🔥 1008Faisal Almulhim🔥 1009Humaid Alali🔥 10010azcol azcol200🔥 100 🥇M. K💎 22,000🥈Fares saeed💎 1,100🥉Hamood Mahemed💎 5004Abdullah K💎 5005ibrahim shazly💎 5006Yazeed Alsaedi💎 1057Ahmed khirallh💎 1008السيد الشاب💎 1009med abda💎 10010ABDULWAHAB ALKHALAF💎 100
ممارسو عالمه على دراية بملامح أسلافه. لم يكن يُخاطر بأي شيء بكشف ذلك. بل قد يُساعده إبلاغ الخبراء الآخرين في إيجاد إجابات.
لقد عرف أن أسلافه كانوا كائنات هجينة، لكن تلك الصور تلمح إلى شيء مختلف تمامًا.
في النهاية، لم يكن هذا أمرًا هينًا. لقد دليلًا على أن السلالات الست بدت تخفي جزءًا من تاريخها.
التقط نوح دفتر ملاحظاته الخاص وبدأ بإضافة اكتشافاته إلى القائمة. حتى أنه نقل جميع الرسومات إلى الأرض.
من البديهي أن نوح وجون وفيث تلقوا رسائل ذهنية لا تُحصى في الدقائق التالية. أراد القادة والخبراء المختلفون معرفة كل شيء عن هذا الاكتشاف للعمل عليه بشكل أفضل.
“ماذا تعتقد؟” سألت جون وهي تستدير لتنظر إلى نوح.
وقد قدم نوح شرحًا مفصلاً، وحتى أنه نقل بعضًا من أفكاره.
لا بد من وجود صلة بين ماضيهم، أي الهجائن، وطريقة نوح في تغذية الجسد. مع ذلك، بدت معرفتها بالأمر محدودة جدًا بحيث لا تسمح لها بالافتراضات. وحده نوح يستطيع معرفة المزيد عنه، فهو خبير في مجال الوحوش السحرية، باستثناء وجود غريب يشبه أسلافه.
يعتقد أن هذه المخلوقات هي نتيجة تجارب على المادة المُطَفِّرة التي تحملها وحوش النخبة. ومع ذلك، فإن الاختبارات على البشر المُعيبين لن تُصبح مجرد رسومات مُخبأة تحت هياكل ضخمة.
استطاعت فورًا أن تجد رابطًا بين تلك الصور وجسد نوح الغريب، إذ عرفت ملامحه. كما رأت كيف بدت سلالته ترغب فيه.
السكان الأصليون يعبدون أسلافهم ونخبة البشر، مما يعني أن كل قطعة فنية يجب أن تُبرزهم. وكان من المستبعد جدًا أن يصوروا تجارب فاشلة من خلال نقوشهم.
ولكن نوح لم يستطع إلا أن يهز رأسه عند هذا السؤال.
“إلا إذا لم يكونوا فاشلين.” فكر نوح وهو يحفظ دفتر ملاحظاته.
شعر نوح بفضولٍ يفوق طاقته وهو يواجه المرأتين. “هيا نبحث عن المزيد من الآثار.”
لقد بذل كل ما في وسعه لإعلام سائر رتب عالمه. والآن، يقع على عاتقهم اكتشاف المزيد.
شعر نوح بفضولٍ يفوق طاقته وهو يواجه المرأتين. “هيا نبحث عن المزيد من الآثار.”
“ماذا الآن؟” سألت فيث عندما انتهت من إبلاغ كبار فصيلها بالوضع.
فتحت له الأراضي الجديدة آفاقًا بوجود أنواع أخرى من البشر والوحوش، وأن أنواعًا تشبه الهجائن قد ظهرت طبيعيًا. لذا، لم يكن لديه ثقة في افتراض أن هذه المخلوقات غير الكاملة لا يمكن أن تظهر من تلقاء نفسها.
انتهت جون من تقريرها أيضًا واتجهت نحو حبيبها لترى ماذا سيختار.
انحنى الممارسون المنتظرون وصولها، وهتفوا مُحيّين الكائن من الرتبة السادسة الذي انضمّ إلى مهمّتهم. “نرحّب بيد الملك اليسرى في العالم الجديد!”
شعر نوح بفضولٍ يفوق طاقته وهو يواجه المرأتين. “هيا نبحث عن المزيد من الآثار.”
بدت القوى الأربع من عالم نوح صادقة، لكن السلالات كذبت بشأن ماضيها. هذا جعل الفصائل الأربعة تعيد النظر في ثقتها بالموارد التي تصل إليها.
وفي هذه الأثناء، بدت الحقيقة التي كشفها نوح لها تداعيات هائلة على العلاقة بين العالمين.
السكان الأصليون يعبدون أسلافهم ونخبة البشر، مما يعني أن كل قطعة فنية يجب أن تُبرزهم. وكان من المستبعد جدًا أن يصوروا تجارب فاشلة من خلال نقوشهم.
بدت القوى الأربع من عالم نوح صادقة، لكن السلالات كذبت بشأن ماضيها. هذا جعل الفصائل الأربعة تعيد النظر في ثقتها بالموارد التي تصل إليها.
استطاعت فورًا أن تجد رابطًا بين تلك الصور وجسد نوح الغريب، إذ عرفت ملامحه. كما رأت كيف بدت سلالته ترغب فيه.
كما أن اكتشاف نوح جعلهم يتفقون على أنه حان الوقت لإظهار أيديهم.
أربعة ممارسين من الرتبة الخامسة عبروا البوابة ووصلوا إلى العالم الجديد في الأشهر التالية.
أربعة ممارسين من الرتبة الخامسة عبروا البوابة ووصلوا إلى العالم الجديد في الأشهر التالية.
شعر نوح بفضولٍ يفوق طاقته وهو يواجه المرأتين. “هيا نبحث عن المزيد من الآثار.”
لم تكن كائنات في الحالة الغازية، بل بدت إما في الحالة السائلة أو الصلبة في الرتبة الخامسة!
تمكن نوح من العثور على أشكال شبه كاملة عندما كشف عن الخطوط المتبقية كاملة. عثر على المزيد من الرسومات التي تصور كائنات هجينة غريبة ذات سمات جسدية تنتمي إلى عالم البشر وتلك الوحوش.
شعرت الفصائل الأربعة بالتحدي عندما اكتشفت أن البشر النخبة كذبوا عليهم وقرروا وضع خلافاتهم جانبًا للتركيز على إظهار قوتهم.
السكان الأصليون يعبدون أسلافهم ونخبة البشر، مما يعني أن كل قطعة فنية يجب أن تُبرزهم. وكان من المستبعد جدًا أن يصوروا تجارب فاشلة من خلال نقوشهم.
أدى وصول تلك الرتب الجديدة إلى إجبار سلالات الدم على إطلاق سراح الممارسين الذين احتجزوهم أسرى في تلك الفترة، لكن بعضهم لا يزال في منتصف جلسات التزاوج.
“قطع من التاريخ غطاها السكان الأصليون بمبانيهم.” فكّر نوح بينما انكشفت تلك اللوحة المهترئة في رؤيته.
ومع ذلك، شعرت القوات من عالم نوح أن البشر النخبة قد خالفوا اتفاقياتهم، لذلك قرروا إظهار مدى جديتهم.
الفصل 757. التغيير
بعد حوالي ثلاث سنوات من وصول التعزيزات من الرتبة الخامسة، اتسع الشق الموجود تحت البركان ودمر جزءًا من العناصر التي بدت تخفي وجوده.
لقد عرف أن أسلافه كانوا كائنات هجينة، لكن تلك الصور تلمح إلى شيء مختلف تمامًا.
اهتزت الأرض، وغلت الصهارة خلال ذلك الحدث، لكن الممارسين الذين يحرسون الممر لم يحركوا ساكنًا لإيقاف تلك الهزات. بل ارتسمت على وجوههم تعابير صارمة وهم ينتظرون وصول أحد أقوى الموارد التي يقدمها عالمهم.
لقد غيّرت النباتات التي نمت هناك على مر السنين، وتأثير الوحوش السحرية، تلك البيئة، وغيّرت الشكل الأصلي لتلك الخطوط. ومع ذلك، فقد صمد بعضها أمام مرور الزمن وتأثيرات الطبيعة، تاركًا بعض الصور المميزة التي يمكن لأي شخص رؤيتها.
امرأة ذات شعر بني وعيون خضراء لامعة ومظهر شبابي عبرت الشق وأخذت نفسا عميقا عندما وصلت إلى العالم الآخر.
انحنى الممارسون المنتظرون وصولها، وهتفوا مُحيّين الكائن من الرتبة السادسة الذي انضمّ إلى مهمّتهم. “نرحّب بيد الملك اليسرى في العالم الجديد!”
نشرت وعيها لتحليل المنطقة، وترددت سلسلة من الصرخات المرعبة في الأراضي القريبة حيث شعرت الوحوش التي تعيش هناك بالخطر الهائل الذي تحمله تلك الموجات العقلية.
“هذا لا معنى له.” صرخ نوح في ذهنه بينما ظل يطفو فوق الرسم.
انحنى الممارسون المنتظرون وصولها، وهتفوا مُحيّين الكائن من الرتبة السادسة الذي انضمّ إلى مهمّتهم. “نرحّب بيد الملك اليسرى في العالم الجديد!”
يعتقد أن هذه المخلوقات هي نتيجة تجارب على المادة المُطَفِّرة التي تحملها وحوش النخبة. ومع ذلك، فإن الاختبارات على البشر المُعيبين لن تُصبح مجرد رسومات مُخبأة تحت هياكل ضخمة.
في النهاية، لم يكن هذا أمرًا هينًا. لقد دليلًا على أن السلالات الست بدت تخفي جزءًا من تاريخها.
