#الضحية #الثانية #خلال #ساعات. #مصرع #سيدة #دهسا #أسفل #عجلات #قطار #في #قنا
الخميس 21/نوفمبر/2024 – 12:05 م
لقيت سيدة مصرعها، اليوم الخميس، بعد أن صدمها قطار، بمزلقان فرشوط شمال محافظة قنا، وتم الدفع بسيارة الإسعاف إلى مكان الواقعة على الفور.
مصرع سيدة دهسًا أسفل عجلات قطار في قنا
جاءت البداية عندما تلقت الأجهزة الأمنية بمديرية أمن قنا، إخطارًا من غرفة العمليات يفيد بورود بلاغ من هيئة الإسعاف بمصرع سيدة صدمها قطار، بمزلقان فرشوط.
وبعد الفحص تبين مصرع ش.ع، تبلغ من العمر 45 عاما، مقيمة فرشوط، وتم نقل الجثة إلى مستشفى فرشوط المركزي تحت تصرف الجهات المختصة.
وتحرر محضر بالواقعة وأخطرت الجهات المختصة لتتولى التحقيقات والتي كلفت وحدة المباحث بالتحري حول الواقعة وكشف ملابساتها.
مصرع تلميذ دهسه قطار خلال ذهابه إلى المدرسة في قنا
لقي تلميذ مصرعه، صباح اليوم الخميس، بعد أن صدمه قطار خلال ذهابه إلى المدرسة في مدينة قنا، وتم الدفع بسيارة الإسعاف إلى مكان الواقعة على الفور.
تلقت الأجهزة الأمنية بمديرية أمن قنا، إخطارًا من مرفق إسعاف قنا، برئاسة الدكتور محمد فؤاد، بمصرع تلميذ، صدمه قطار خلال ذهابه إلى المدرسة بقنا.
وأسفر ذلك عن مصرع ح.ع، البالغ من العمر 7 أعوام، جراء اصطدام القطار به خلال ذهابه إلى المدرسة، ومروره على مزلقان الرياح بمدينة قنا.
تم نقل الجثة إلى مستشفى قنا العام، وتحرر محضر بالواقعة، وأخطرت الجهات المختصة لتتولى التحقيقات، والتي كلفت وحدة المباحث بالتحري حول الواقعة وكشف ملابساتها.
'; replaceElementWithHtml(element, html); } else if (sourceData.source.toLowerCase() === "facebook") { var html="
' replaceElementWithHtml(element, html); } else { replaceElementWithHtml(element, ""); }
}
function extractLinkFromOembed(element) { return getUrlSource(element.getAttribute("url")); }
function getUrlSource(url) { var ytRegex = /http(?:s?):\/\/(?:www\.)?youtu(?:be\.com\/watch\?v=|\.be\/)([\w\-\_]*)(&(amp;)?[\w\?=]*)?/; var instaRegex = /(https?:\/\/www\.)?instagram\.com(\/p\/(\w+)\/?)/; var twitterRegex = /twitter\.com\/.*\/status(?:es)?\/([^\/\?]+)/; var fbRegex = /^https?:\/\/www\.facebook\.com.*\/(video(s)?|watch|story|posts)(\.php?|\/).+$/;
if (ytRegex.test(url)) { return { source: "Youtube", url: url, id: ytRegex.exec(url)[1] }; }
if (instaRegex.test(url)) { return { source: "Instagram", url: url, id: instaRegex.exec(url)[3] }; }
if (twitterRegex.test(url)) { return { source: "Twitter", url: url, id: twitterRegex.exec(url)[1] }; }
if (fbRegex.test(url)) { return { source: "Facebook", url: url, id: fbRegex.exec(url)[1] };
}
return { source: "Unknown", url: url, id: "" }; }
function replaceElementWithHtml(element, html) { var str = html; var Obj = element; //any element to be fully replaced if (Obj.outerHTML) { //if outerHTML is supported Obj.outerHTML = str; ///it's simple replacement of whole element with contents of str var } else { //if outerHTML is not supported, there is a weird but crossbrowsered trick var tmpObj = document.createElement("div"); tmpObj.innerHTML = ''; ObjParent = Obj.parentNode; //Okey, element should be parented ObjParent.replaceChild(tmpObj, Obj); //here we placing our temporary data instead of our target, so we can find it then and replace it into whatever we want to replace to ObjParent.innerHTML = ObjParent.innerHTML.replace('
', str); } } function loadfbApi() { var js = document.createElement('script'); js.src="https://connect.facebook.net/en_US/sdk.js#xfbml=1&version=v3.2"; document.body.appendChild(js); } function runYoutubeLazyLoad() { /// youtube lazyload var youtube = document.querySelectorAll(".youtube");
for (var i = 0; i < youtube.length; i++) { var source = "https://img.youtube.com/vi/" + youtube[i].dataset.embed + "/0.jpg"; var image = new Image(); image.src = "/themes/cairo2/assets/images/no.jpg"; image.classList.add('lazyload'); image.setAttribute("data-src", source); image.setAttribute("alt", "youtube"); image.addEventListener("load", function () { youtube[i].appendChild(image); }(i)); youtube[i].addEventListener("click", function () { var iframe = document.createElement("iframe"); iframe.setAttribute("frameborder", "0"); iframe.setAttribute("allowfullscreen", ""); iframe.setAttribute("src", "https://www.youtube.com/embed/" + this.dataset .embed + "?rel=0&showinfo=0&autoplay=1"); this.innerHTML = ""; this.appendChild(iframe); }); }; }