الملفات
moad.rag/scrapping_moad_gov_sy_.ipynb
2026-03-04 12:52:26 +00:00

1182 أسطر
207 KiB
Plaintext
خام اللوم التاريخ

هذا الملف يحتوي على أحرف Unicode غامضة

هذا الملف يحتوي على أحرف Unicode قد تُخلط مع أحرف أخرى. إذا كنت تعتقد أن هذا مقصود، يمكنك تجاهل هذا التحذير بأمان. استخدم زر الهروب للكشف عنها.

{
"nbformat": 4,
"nbformat_minor": 0,
"metadata": {
"colab": {
"provenance": []
},
"kernelspec": {
"name": "python3",
"display_name": "Python 3"
},
"language_info": {
"name": "python"
}
},
"cells": [
{
"cell_type": "code",
"source": [
" pip install playwright\n"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "bHoQ_qAoZQxv",
"outputId": "c16286ef-f2cc-4da9-ba98-b789ac807027"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Collecting playwright\n",
" Downloading playwright-1.58.0-py3-none-manylinux1_x86_64.whl.metadata (3.5 kB)\n",
"Requirement already satisfied: pyee<14,>=13 in /usr/local/lib/python3.12/dist-packages (from playwright) (13.0.1)\n",
"Requirement already satisfied: greenlet<4.0.0,>=3.1.1 in /usr/local/lib/python3.12/dist-packages (from playwright) (3.3.2)\n",
"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.12/dist-packages (from pyee<14,>=13->playwright) (4.15.0)\n",
"Downloading playwright-1.58.0-py3-none-manylinux1_x86_64.whl (46.2 MB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m46.2/46.2 MB\u001b[0m \u001b[31m18.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hInstalling collected packages: playwright\n",
"Successfully installed playwright-1.58.0\n"
]
}
]
},
{
"cell_type": "code",
"source": [
" pip install browserforge"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "Av4ZOChdZQkl",
"outputId": "fcc0ea3c-64ae-46ab-c18e-53bf4573092d"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Collecting browserforge\n",
" Downloading browserforge-1.2.4-py3-none-any.whl.metadata (28 kB)\n",
"Collecting apify_fingerprint_datapoints (from browserforge)\n",
" Downloading apify_fingerprint_datapoints-0.11.0-py3-none-any.whl.metadata (14 kB)\n",
"Requirement already satisfied: click in /usr/local/lib/python3.12/dist-packages (from browserforge) (8.3.1)\n",
"Downloading browserforge-1.2.4-py3-none-any.whl (37 kB)\n",
"Downloading apify_fingerprint_datapoints-0.11.0-py3-none-any.whl (726 kB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m726.5/726.5 kB\u001b[0m \u001b[31m14.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hInstalling collected packages: apify_fingerprint_datapoints, browserforge\n",
"Successfully installed apify_fingerprint_datapoints-0.11.0 browserforge-1.2.4\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"pip install msgspec\n"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "L97-H0pYZnrq",
"outputId": "d9c91b31-34e5-4b8e-9d99-ac37a168e247"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Collecting msgspec\n",
" Downloading msgspec-0.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.metadata (5.5 kB)\n",
"Downloading msgspec-0.20.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (224 kB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m224.9/224.9 kB\u001b[0m \u001b[31m4.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hInstalling collected packages: msgspec\n",
"Successfully installed msgspec-0.20.0\n"
]
}
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {
"id": "UsWWLQbtY0Hk"
},
"outputs": [],
"source": [
"from scrapling.spiders import Spider, Request, Response\n",
"from scrapling.fetchers import FetcherSession, AsyncStealthySession\n",
"\n",
"class MultiSessionSpider(Spider):\n",
" name = \"multi\"\n",
" start_urls = [\"http://www.mohe.gov.sy/\"]\n",
"\n",
" def configure_sessions(self, manager):\n",
" manager.add(\"fast\", FetcherSession(impersonate=\"chrome\"))\n",
" manager.add(\"stealth\", AsyncStealthySession(headless=True), lazy=True)\n",
"\n",
" async def parse(self, response: Response):\n",
" for link in response.css('a::attr(href)').getall():\n",
" # Route protected pages through the stealth session\n",
" if \"protected\" in link:\n",
" yield Request(link, sid=\"stealth\")\n",
" else:\n",
" yield Request(link, sid=\"fast\", callback=self.parse) # explicit callback"
]
},
{
"cell_type": "code",
"source": [
"QuotesSpider(crawldir=\"./crawl_data\").start()"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 141
},
"id": "w1TBvsDYZ0ck",
"outputId": "3dc790a9-8ea3-4ad0-e5d7-e146ac1fb27a"
},
"execution_count": null,
"outputs": [
{
"output_type": "error",
"ename": "NameError",
"evalue": "name 'QuotesSpider' is not defined",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mNameError\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m/tmp/ipython-input-3259/1167272156.py\u001b[0m in \u001b[0;36m<cell line: 0>\u001b[0;34m()\u001b[0m\n\u001b[0;32m----> 1\u001b[0;31m \u001b[0mQuotesSpider\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mcrawldir\u001b[0m\u001b[0;34m=\u001b[0m\u001b[0;34m\"./crawl_data\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mstart\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
"\u001b[0;31mNameError\u001b[0m: name 'QuotesSpider' is not defined"
]
}
]
},
{
"cell_type": "code",
"source": [
"pip install patchright"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "Mu5Viw53ZMs4",
"outputId": "ea160ad6-3f70-4108-cf1d-8b86e3a001aa"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Collecting patchright\n",
" Downloading patchright-1.58.0-py3-none-manylinux1_x86_64.whl.metadata (13 kB)\n",
"Collecting pyee<14,>=13 (from patchright)\n",
" Downloading pyee-13.0.1-py3-none-any.whl.metadata (3.0 kB)\n",
"Requirement already satisfied: greenlet<4.0.0,>=3.1.1 in /usr/local/lib/python3.12/dist-packages (from patchright) (3.3.2)\n",
"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.12/dist-packages (from pyee<14,>=13->patchright) (4.15.0)\n",
"Downloading patchright-1.58.0-py3-none-manylinux1_x86_64.whl (46.2 MB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m46.2/46.2 MB\u001b[0m \u001b[31m18.3 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hDownloading pyee-13.0.1-py3-none-any.whl (15 kB)\n",
"Installing collected packages: pyee, patchright\n",
"Successfully installed patchright-1.58.0 pyee-13.0.1\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"pip install scrapling"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "dmAsRfslY0oB",
"outputId": "6c1e6b75-d841-42fd-ffeb-977db94178de"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Collecting scrapling\n",
" Downloading scrapling-0.4.1-py3-none-any.whl.metadata (29 kB)\n",
"Requirement already satisfied: lxml>=6.0.2 in /usr/local/lib/python3.12/dist-packages (from scrapling) (6.0.2)\n",
"Collecting cssselect>=1.4.0 (from scrapling)\n",
" Downloading cssselect-1.4.0-py3-none-any.whl.metadata (2.4 kB)\n",
"Requirement already satisfied: orjson>=3.11.7 in /usr/local/lib/python3.12/dist-packages (from scrapling) (3.11.7)\n",
"Collecting tld>=0.13.1 (from scrapling)\n",
" Downloading tld-0.13.1-py2.py3-none-any.whl.metadata (10 kB)\n",
"Collecting w3lib>=2.4.0 (from scrapling)\n",
" Downloading w3lib-2.4.0-py3-none-any.whl.metadata (2.3 kB)\n",
"Requirement already satisfied: typing_extensions in /usr/local/lib/python3.12/dist-packages (from scrapling) (4.15.0)\n",
"Downloading scrapling-0.4.1-py3-none-any.whl (116 kB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m116.1/116.1 kB\u001b[0m \u001b[31m5.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hDownloading cssselect-1.4.0-py3-none-any.whl (18 kB)\n",
"Downloading tld-0.13.1-py2.py3-none-any.whl (274 kB)\n",
"\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m274.7/274.7 kB\u001b[0m \u001b[31m12.6 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n",
"\u001b[?25hDownloading w3lib-2.4.0-py3-none-any.whl (21 kB)\n",
"Installing collected packages: w3lib, tld, cssselect, scrapling\n",
"Successfully installed cssselect-1.4.0 scrapling-0.4.1 tld-0.13.1 w3lib-2.4.0\n"
]
}
]
},
{
"cell_type": "code",
"source": [],
"metadata": {
"id": "6q__VUv7ZDBa"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"from scrapling.fetchers import Fetcher\n",
"\n",
"# Simple one-off HTTP fetch\n",
"page = Fetcher.get(\"https://moad.gov.sy/\")\n",
"\n",
"# Extract text with CSS\n",
"quotes = page.css(\".quote .text::text\")\n",
"print(quotes)"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "90wYg2hHaR0Y",
"outputId": "8e00b0df-e8c8-4669-b083-16411200b293"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"[2026-03-02 12:05:37] INFO: Fetched (200) <GET https://moad.gov.sy/> (referer: https://www.google.com/search?q=moad)\n",
"INFO:scrapling:Fetched (200) <GET https://moad.gov.sy/> (referer: https://www.google.com/search?q=moad)\n"
]
},
{
"output_type": "stream",
"name": "stdout",
"text": [
"[]\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"from scrapling.fetchers import Fetcher\n",
"\n",
"page = Fetcher.get(\"https://moad.gov.sy/\")"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "nWJ5vevFaYy8",
"outputId": "962aec8f-2971-4750-e2b5-23ce3a4cfbd0"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"[2026-03-02 12:05:47] INFO: Fetched (200) <GET https://moad.gov.sy/> (referer: https://www.google.com/search?q=moad)\n",
"INFO:scrapling:Fetched (200) <GET https://moad.gov.sy/> (referer: https://www.google.com/search?q=moad)\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"from scrapling.fetchers import FetcherSession\n",
"\n",
"with FetcherSession(impersonate=\"chrome\") as session:\n",
" page = session.get(\"https://moad.gov.sy/\")\n",
" print(page.css(\".quote .text::text\"))"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "dnK1R7tIajuV",
"outputId": "e776de2d-d640-4c85-8813-8ef1d861e70d"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"[2026-03-02 12:05:49] INFO: Fetched (200) <GET https://moad.gov.sy/> (referer: https://www.google.com/search?q=moad)\n",
"INFO:scrapling:Fetched (200) <GET https://moad.gov.sy/> (referer: https://www.google.com/search?q=moad)\n"
]
},
{
"output_type": "stream",
"name": "stdout",
"text": [
"[]\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"# CSS selectors\n",
"items = page.css(\".item\")\n",
"\n",
"# XPath selectors\n",
"titles = page.xpath('//h1/text()')\n",
"\n",
"# Find by text\n",
"divs = page.find_by_text(\"Example\")\n",
"\n",
"# First matched element\n",
"response = Fetcher.get(\"https://moad.gov.sy/\")\n",
"items = response.css(\".item\")\n",
"first = items[0] if items else None"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "4PyQxFzna7nM",
"outputId": "2a5455cf-680d-4316-b828-b00211600c2d"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"[2026-03-02 12:18:52] INFO: Fetched (200) <GET https://moad.gov.sy/> (referer: https://www.google.com/search?q=moad)\n",
"INFO:scrapling:Fetched (200) <GET https://moad.gov.sy/> (referer: https://www.google.com/search?q=moad)\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"import asyncio\n",
"from scrapling.fetchers import AsyncStealthySession\n",
"\n",
"url = \"https://moad.gov.sy/\"\n",
"\n",
"async def fetch_one():\n",
" async with AsyncStealthySession() as session:\n",
" response = await session.fetch(url)\n",
" return response\n",
"\n",
"response = asyncio.run(fetch_one())\n",
"\n",
"page = response.selector\n",
"print(page.title)"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 231
},
"id": "fWg0oy-Ra-ii",
"outputId": "cb288567-c0c0-43d2-983c-e5c29ee13810"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stderr",
"text": [
"[2026-03-02 12:28:29] INFO: Fetched (200) <GET https://moad.gov.sy/> (referer: https://www.google.com/search?q=moad)\n",
"INFO:scrapling:Fetched (200) <GET https://moad.gov.sy/> (referer: https://www.google.com/search?q=moad)\n"
]
},
{
"output_type": "error",
"ename": "AttributeError",
"evalue": "'Response' object has no attribute 'title'",
"traceback": [
"\u001b[0;31m---------------------------------------------------------------------------\u001b[0m",
"\u001b[0;31mAttributeError\u001b[0m Traceback (most recent call last)",
"\u001b[0;32m/tmp/ipython-input-3259/3424203136.py\u001b[0m in \u001b[0;36m<cell line: 0>\u001b[0;34m()\u001b[0m\n\u001b[1;32m 3\u001b[0m \u001b[0mresponse\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mFetcher\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mget\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0;34m\"https://moad.gov.sy/\"\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[1;32m 4\u001b[0m \u001b[0mpage\u001b[0m \u001b[0;34m=\u001b[0m \u001b[0mresponse\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0;32m----> 5\u001b[0;31m \u001b[0mprint\u001b[0m\u001b[0;34m(\u001b[0m\u001b[0mpage\u001b[0m\u001b[0;34m.\u001b[0m\u001b[0mtitle\u001b[0m\u001b[0;34m)\u001b[0m\u001b[0;34m\u001b[0m\u001b[0;34m\u001b[0m\u001b[0m\n\u001b[0m",
"\u001b[0;31mAttributeError\u001b[0m: 'Response' object has no attribute 'title'"
]
}
]
},
{
"cell_type": "code",
"source": [],
"metadata": {
"id": "hyPlVtONhxB8"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [],
"metadata": {
"id": "vq08HIcnhxNe"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"pip install playwright"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "JaWUq9Wkc90L",
"outputId": "d6798484-bd6a-4114-f4cf-ba7386e69b7d"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Requirement already satisfied: playwright in /usr/local/lib/python3.12/dist-packages (1.58.0)\n",
"Requirement already satisfied: pyee<14,>=13 in /usr/local/lib/python3.12/dist-packages (from playwright) (13.0.1)\n",
"Requirement already satisfied: greenlet<4.0.0,>=3.1.1 in /usr/local/lib/python3.12/dist-packages (from playwright) (3.3.2)\n",
"Requirement already satisfied: typing-extensions in /usr/local/lib/python3.12/dist-packages (from pyee<14,>=13->playwright) (4.15.0)\n"
]
},
{
"output_type": "stream",
"name": "stderr",
"text": [
"<frozen posixpath>:82: RuntimeWarning: coroutine 'fetch_all' was never awaited\n",
"RuntimeWarning: Enable tracemalloc to get the object allocation traceback\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"!playwright install"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "avPc7-zaesR3",
"outputId": "dd01af61-88ff-41a0-aa61-d6320ad0497c"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Downloading Chrome for Testing 145.0.7632.6 (playwright chromium v1208)\u001b[2m from https://cdn.playwright.dev/chrome-for-testing-public/145.0.7632.6/linux64/chrome-linux64.zip\u001b[22m\n",
"(node:9958) [DEP0169] DeprecationWarning: `url.parse()` behavior is not standardized and prone to errors that have security implications. Use the WHATWG URL API instead. CVEs are not issued for `url.parse()` vulnerabilities.\n",
"(Use `node --trace-deprecation ...` to show where the warning was created)\n",
"\u001b[1G167.3 MiB [] 0% 0.0s\u001b[0K\u001b[1G167.3 MiB [] 0% 62.0s\u001b[0K\u001b[1G167.3 MiB [] 0% 35.2s\u001b[0K\u001b[1G167.3 MiB [] 0% 25.2s\u001b[0K\u001b[1G167.3 MiB [] 0% 22.4s\u001b[0K\u001b[1G167.3 MiB [] 0% 21.0s\u001b[0K\u001b[1G167.3 MiB [] 0% 13.3s\u001b[0K\u001b[1G167.3 MiB [] 1% 9.3s\u001b[0K\u001b[1G167.3 MiB [] 1% 7.5s\u001b[0K\u001b[1G167.3 MiB [] 2% 6.4s\u001b[0K\u001b[1G167.3 MiB [] 3% 5.5s\u001b[0K\u001b[1G167.3 MiB [] 3% 5.0s\u001b[0K\u001b[1G167.3 MiB [] 4% 5.0s\u001b[0K\u001b[1G167.3 MiB [] 4% 5.4s\u001b[0K\u001b[1G167.3 MiB [] 4% 4.9s\u001b[0K\u001b[1G167.3 MiB [] 5% 4.6s\u001b[0K\u001b[1G167.3 MiB [] 6% 4.2s\u001b[0K\u001b[1G167.3 MiB [] 7% 3.9s\u001b[0K\u001b[1G167.3 MiB [] 7% 3.7s\u001b[0K\u001b[1G167.3 MiB [] 8% 3.6s\u001b[0K\u001b[1G167.3 MiB [] 9% 3.4s\u001b[0K\u001b[1G167.3 MiB [] 10% 3.2s\u001b[0K\u001b[1G167.3 MiB [] 11% 3.1s\u001b[0K\u001b[1G167.3 MiB [] 12% 3.0s\u001b[0K\u001b[1G167.3 MiB [] 12% 2.9s\u001b[0K\u001b[1G167.3 MiB [] 13% 2.9s\u001b[0K\u001b[1G167.3 MiB [] 13% 2.8s\u001b[0K\u001b[1G167.3 MiB [] 14% 2.8s\u001b[0K\u001b[1G167.3 MiB [] 15% 2.8s\u001b[0K\u001b[1G167.3 MiB [] 16% 2.8s\u001b[0K\u001b[1G167.3 MiB [] 16% 2.7s\u001b[0K\u001b[1G167.3 MiB [] 17% 2.6s\u001b[0K\u001b[1G167.3 MiB [] 18% 2.6s\u001b[0K\u001b[1G167.3 MiB [] 19% 2.6s\u001b[0K\u001b[1G167.3 MiB [] 20% 2.5s\u001b[0K\u001b[1G167.3 MiB [] 21% 2.5s\u001b[0K\u001b[1G167.3 MiB [] 21% 2.4s\u001b[0K\u001b[1G167.3 MiB [] 22% 2.4s\u001b[0K\u001b[1G167.3 MiB [] 23% 2.3s\u001b[0K\u001b[1G167.3 MiB [] 24% 2.2s\u001b[0K\u001b[1G167.3 MiB [] 25% 2.2s\u001b[0K\u001b[1G167.3 MiB [] 26% 2.1s\u001b[0K\u001b[1G167.3 MiB [] 27% 2.0s\u001b[0K\u001b[1G167.3 MiB [] 28% 2.0s\u001b[0K\u001b[1G167.3 MiB [] 29% 2.0s\u001b[0K\u001b[1G167.3 MiB [] 30% 1.9s\u001b[0K\u001b[1G167.3 MiB [] 31% 1.9s\u001b[0K\u001b[1G167.3 MiB [] 32% 1.8s\u001b[0K\u001b[1G167.3 MiB [] 33% 1.8s\u001b[0K\u001b[1G167.3 MiB [] 34% 1.8s\u001b[0K\u001b[1G167.3 MiB [] 35% 1.7s\u001b[0K\u001b[1G167.3 MiB [] 36% 1.7s\u001b[0K\u001b[1G167.3 MiB [] 37% 1.6s\u001b[0K\u001b[1G167.3 MiB [] 38% 1.6s\u001b[0K\u001b[1G167.3 MiB [] 39% 1.6s\u001b[0K\u001b[1G167.3 MiB [] 40% 1.5s\u001b[0K\u001b[1G167.3 MiB [] 41% 1.5s\u001b[0K\u001b[1G167.3 MiB [] 42% 1.5s\u001b[0K\u001b[1G167.3 MiB [] 43% 1.4s\u001b[0K\u001b[1G167.3 MiB [] 44% 1.4s\u001b[0K\u001b[1G167.3 MiB [] 45% 1.4s\u001b[0K\u001b[1G167.3 MiB [] 46% 1.4s\u001b[0K\u001b[1G167.3 MiB [] 47% 1.4s\u001b[0K\u001b[1G167.3 MiB [] 48% 1.3s\u001b[0K\u001b[1G167.3 MiB [] 49% 1.3s\u001b[0K\u001b[1G167.3 MiB [] 50% 1.2s\u001b[0K\u001b[1G167.3 MiB [] 51% 1.2s\u001b[0K\u001b[1G167.3 MiB [] 52% 1.2s\u001b[0K\u001b[1G167.3 MiB [] 53% 1.2s\u001b[0K\u001b[1G167.3 MiB [] 54% 1.1s\u001b[0K\u001b[1G167.3 MiB [] 55% 1.1s\u001b[0K\u001b[1G167.3 MiB [] 56% 1.1s\u001b[0K\u001b[1G167.3 MiB [] 57% 1.1s\u001b[0K\u001b[1G167.3 MiB [] 57% 1.0s\u001b[0K\u001b[1G167.3 MiB [] 58% 1.0s\u001b[0K\u001b[1G167.3 MiB [] 59% 1.0s\u001b[0K\u001b[1G167.3 MiB [] 60% 1.0s\u001b[0K\u001b[1G167.3 MiB [] 61% 0.9s\u001b[0K\u001b[1G167.3 MiB [] 62% 0.9s\u001b[0K\u001b[1G167.3 MiB [] 63% 0.9s\u001b[0K\u001b[1G167.3 MiB [] 64% 0.9s\u001b[0K\u001b[1G167.3 MiB [] 65% 0.8s\u001b[0K\u001b[1G167.3 MiB [] 66% 0.8s\u001b[0K\u001b[1G167.3 MiB [] 67% 0.8s\u001b[0K\u001b[1G167.3 MiB [] 68% 0.8s\u001b[0K\u001b[1G167.3 MiB [] 69% 0.7s\u001b[0K\u001b[1G167.3 MiB [] 70% 0.7s\u001b[0K\u001b[1G167.3 MiB [] 71% 0.7s\u001b[0K\u001b[1G167.3 MiB [] 72% 0.7s\u001b[0K\u001b[1G167.3 MiB [] 73% 0.6s\u001b[0K\u001b[1G167.3 MiB [] 74% 0.6s\u001b[0K\u001b[1G167.3 MiB [] 75% 0.6s\u001b[0K\u001b[1G167.3 MiB [] 76% 0.5s\u001b[0K\u001b[1G167.3 MiB [] 77% 0.5s\u001b[0K\u001b[1G167.3 MiB [] 78% 0.5s\u001b[0K\u001b[1G167.3 MiB [] 79% 0.5s\u001b[0K\u001b[1G167.3 MiB [] 80% 0.5s\u001b[0K\u001b[1G167.3 MiB [] 81% 0.4s\u001b[0K\u001b[1G167.3 MiB [] 82% 0.4s\u001b[0K\u001b[1G167.3 MiB [] 83% 0.4s\u001b[0K\u001b[1G167.3 MiB [] 84% 0.4s\u001b[0K\u001b[1G167.3 MiB [] 85% 0.4s\u001b[0K\u001b[1G167.3 MiB [] 85% 0.3s\u001b[0K\u001b[1G167.3 MiB [] 86% 0.3s\u001b[0K\u001b[1G167.3 MiB [] 87% 0.3s\u001b[0K\u001b[1G167.3 MiB [] 88% 0.3s\u001b[0K\u001b[1G167.3 MiB [] 89% 0.3s\u001b[0K\u001b[1G167.3 MiB [] 90% 0.2s\u001b[0K\u001b[1G167.3 MiB [] 92% 0.2s\u001b[0K\u001b[1G167.3 MiB [] 93% 0.2s\u001b[0K\u001b[1G167.3 MiB [] 94% 0.1s\u001b[0K\u001b[1G167.3 MiB [] 95% 0.1s\u001b[0K\u001b[1G167.3 MiB [] 96% 0.1s\u001b[0K\u001b[1G167.3 MiB [] 97% 0.1s\u001b[0K\u001b[1G167.3 MiB [] 98% 0.0s\u001b[0K\u001b[1G167.3 MiB [] 99% 0.0s\u001b[0K\u001b[1G167.3 MiB [] 100% 0.0s\u001b[0K\n",
"Chrome for Testing 145.0.7632.6 (playwright chromium v1208) downloaded to /root/.cache/ms-playwright/chromium-1208\n",
"Downloading Chrome Headless Shell 145.0.7632.6 (playwright chromium-headless-shell v1208)\u001b[2m from https://cdn.playwright.dev/chrome-for-testing-public/145.0.7632.6/linux64/chrome-headless-shell-linux64.zip\u001b[22m\n",
"(node:10013) [DEP0169] DeprecationWarning: `url.parse()` behavior is not standardized and prone to errors that have security implications. Use the WHATWG URL API instead. CVEs are not issued for `url.parse()` vulnerabilities.\n",
"(Use `node --trace-deprecation ...` to show where the warning was created)\n",
"\u001b[1G110.9 MiB [] 0% 0.0s\u001b[0K\u001b[1G110.9 MiB [] 0% 29.1s\u001b[0K\u001b[1G110.9 MiB [] 0% 9.7s\u001b[0K\u001b[1G110.9 MiB [] 0% 8.0s\u001b[0K\u001b[1G110.9 MiB [] 1% 3.9s\u001b[0K\u001b[1G110.9 MiB [] 2% 2.7s\u001b[0K\u001b[1G110.9 MiB [] 4% 2.3s\u001b[0K\u001b[1G110.9 MiB [] 5% 2.0s\u001b[0K\u001b[1G110.9 MiB [] 5% 2.1s\u001b[0K\u001b[1G110.9 MiB [] 6% 2.3s\u001b[0K\u001b[1G110.9 MiB [] 7% 2.1s\u001b[0K\u001b[1G110.9 MiB [] 8% 1.9s\u001b[0K\u001b[1G110.9 MiB [] 10% 1.8s\u001b[0K\u001b[1G110.9 MiB [] 11% 1.7s\u001b[0K\u001b[1G110.9 MiB [] 12% 1.6s\u001b[0K\u001b[1G110.9 MiB [] 14% 1.5s\u001b[0K\u001b[1G110.9 MiB [] 15% 1.5s\u001b[0K\u001b[1G110.9 MiB [] 16% 1.4s\u001b[0K\u001b[1G110.9 MiB [] 17% 1.3s\u001b[0K\u001b[1G110.9 MiB [] 19% 1.3s\u001b[0K\u001b[1G110.9 MiB [] 20% 1.2s\u001b[0K\u001b[1G110.9 MiB [] 22% 1.2s\u001b[0K\u001b[1G110.9 MiB [] 23% 1.2s\u001b[0K\u001b[1G110.9 MiB [] 25% 1.1s\u001b[0K\u001b[1G110.9 MiB [] 26% 1.1s\u001b[0K\u001b[1G110.9 MiB [] 28% 1.1s\u001b[0K\u001b[1G110.9 MiB [] 29% 1.0s\u001b[0K\u001b[1G110.9 MiB [] 31% 1.0s\u001b[0K\u001b[1G110.9 MiB [] 32% 1.0s\u001b[0K\u001b[1G110.9 MiB [] 33% 0.9s\u001b[0K\u001b[1G110.9 MiB [] 35% 0.9s\u001b[0K\u001b[1G110.9 MiB [] 37% 0.9s\u001b[0K\u001b[1G110.9 MiB [] 38% 0.9s\u001b[0K\u001b[1G110.9 MiB [] 39% 0.8s\u001b[0K\u001b[1G110.9 MiB [] 40% 0.8s\u001b[0K\u001b[1G110.9 MiB [] 41% 0.8s\u001b[0K\u001b[1G110.9 MiB [] 42% 0.8s\u001b[0K\u001b[1G110.9 MiB [] 43% 0.8s\u001b[0K\u001b[1G110.9 MiB [] 44% 0.8s\u001b[0K\u001b[1G110.9 MiB [] 45% 0.8s\u001b[0K\u001b[1G110.9 MiB [] 46% 0.8s\u001b[0K\u001b[1G110.9 MiB [] 47% 0.7s\u001b[0K\u001b[1G110.9 MiB [] 48% 0.7s\u001b[0K\u001b[1G110.9 MiB [] 49% 0.7s\u001b[0K\u001b[1G110.9 MiB [] 50% 0.7s\u001b[0K\u001b[1G110.9 MiB [] 51% 0.7s\u001b[0K\u001b[1G110.9 MiB [] 52% 0.7s\u001b[0K\u001b[1G110.9 MiB [] 53% 0.7s\u001b[0K\u001b[1G110.9 MiB [] 54% 0.7s\u001b[0K\u001b[1G110.9 MiB [] 55% 0.7s\u001b[0K\u001b[1G110.9 MiB [] 56% 0.6s\u001b[0K\u001b[1G110.9 MiB [] 57% 0.6s\u001b[0K\u001b[1G110.9 MiB [] 58% 0.6s\u001b[0K\u001b[1G110.9 MiB [] 59% 0.6s\u001b[0K\u001b[1G110.9 MiB [] 60% 0.6s\u001b[0K\u001b[1G110.9 MiB [] 61% 0.6s\u001b[0K\u001b[1G110.9 MiB [] 62% 0.6s\u001b[0K\u001b[1G110.9 MiB [] 63% 0.6s\u001b[0K\u001b[1G110.9 MiB [] 64% 0.5s\u001b[0K\u001b[1G110.9 MiB [] 65% 0.5s\u001b[0K\u001b[1G110.9 MiB [] 66% 0.5s\u001b[0K\u001b[1G110.9 MiB [] 67% 0.5s\u001b[0K\u001b[1G110.9 MiB [] 68% 0.5s\u001b[0K\u001b[1G110.9 MiB [] 69% 0.5s\u001b[0K\u001b[1G110.9 MiB [] 70% 0.5s\u001b[0K\u001b[1G110.9 MiB [] 71% 0.5s\u001b[0K\u001b[1G110.9 MiB [] 72% 0.4s\u001b[0K\u001b[1G110.9 MiB [] 73% 0.4s\u001b[0K\u001b[1G110.9 MiB [] 74% 0.4s\u001b[0K\u001b[1G110.9 MiB [] 75% 0.4s\u001b[0K\u001b[1G110.9 MiB [] 76% 0.4s\u001b[0K\u001b[1G110.9 MiB [] 77% 0.4s\u001b[0K\u001b[1G110.9 MiB [] 78% 0.3s\u001b[0K\u001b[1G110.9 MiB [] 79% 0.3s\u001b[0K\u001b[1G110.9 MiB [] 80% 0.3s\u001b[0K\u001b[1G110.9 MiB [] 81% 0.3s\u001b[0K\u001b[1G110.9 MiB [] 82% 0.3s\u001b[0K\u001b[1G110.9 MiB [] 83% 0.3s\u001b[0K\u001b[1G110.9 MiB [] 84% 0.3s\u001b[0K\u001b[1G110.9 MiB [] 85% 0.3s\u001b[0K\u001b[1G110.9 MiB [] 85% 0.2s\u001b[0K\u001b[1G110.9 MiB [] 86% 0.2s\u001b[0K\u001b[1G110.9 MiB [] 87% 0.2s\u001b[0K\u001b[1G110.9 MiB [] 88% 0.2s\u001b[0K\u001b[1G110.9 MiB [] 89% 0.2s\u001b[0K\u001b[1G110.9 MiB [] 90% 0.2s\u001b[0K\u001b[1G110.9 MiB [] 92% 0.1s\u001b[0K\u001b[1G110.9 MiB [] 93% 0.1s\u001b[0K\u001b[1G110.9 MiB [] 94% 0.1s\u001b[0K\u001b[1G110.9 MiB [] 95% 0.1s\u001b[0K\u001b[1G110.9 MiB [] 96% 0.1s\u001b[0K\u001b[1G110.9 MiB [] 97% 0.0s\u001b[0K\u001b[1G110.9 MiB [] 98% 0.0s\u001b[0K\u001b[1G110.9 MiB [] 99% 0.0s\u001b[0K\u001b[1G110.9 MiB [] 100% 0.0s\u001b[0K\n",
"Chrome Headless Shell 145.0.7632.6 (playwright chromium-headless-shell v1208) downloaded to /root/.cache/ms-playwright/chromium_headless_shell-1208\n",
"Downloading Firefox 146.0.1 (playwright firefox v1509)\u001b[2m from https://cdn.playwright.dev/dbazure/download/playwright/builds/firefox/1509/firefox-ubuntu-22.04.zip\u001b[22m\n",
"(node:10064) [DEP0169] DeprecationWarning: `url.parse()` behavior is not standardized and prone to errors that have security implications. Use the WHATWG URL API instead. CVEs are not issued for `url.parse()` vulnerabilities.\n",
"(Use `node --trace-deprecation ...` to show where the warning was created)\n",
"\u001b[1G99.5 MiB [] 0% 0.0s\u001b[0K\u001b[1G99.5 MiB [] 0% 14.5s\u001b[0K\u001b[1G99.5 MiB [] 0% 10.9s\u001b[0K\u001b[1G99.5 MiB [] 0% 13.4s\u001b[0K\u001b[1G99.5 MiB [] 0% 16.1s\u001b[0K\u001b[1G99.5 MiB [] 0% 13.5s\u001b[0K\u001b[1G99.5 MiB [] 1% 8.1s\u001b[0K\u001b[1G99.5 MiB [] 1% 6.3s\u001b[0K\u001b[1G99.5 MiB [] 2% 4.7s\u001b[0K\u001b[1G99.5 MiB [] 3% 4.1s\u001b[0K\u001b[1G99.5 MiB [] 4% 3.7s\u001b[0K\u001b[1G99.5 MiB [] 5% 3.5s\u001b[0K\u001b[1G99.5 MiB [] 5% 3.2s\u001b[0K\u001b[1G99.5 MiB [] 6% 3.1s\u001b[0K\u001b[1G99.5 MiB [] 7% 3.1s\u001b[0K\u001b[1G99.5 MiB [] 7% 3.3s\u001b[0K\u001b[1G99.5 MiB [] 8% 3.2s\u001b[0K\u001b[1G99.5 MiB [] 8% 3.3s\u001b[0K\u001b[1G99.5 MiB [] 9% 3.3s\u001b[0K\u001b[1G99.5 MiB [] 10% 3.4s\u001b[0K\u001b[1G99.5 MiB [] 10% 3.5s\u001b[0K\u001b[1G99.5 MiB [] 10% 3.6s\u001b[0K\u001b[1G99.5 MiB [] 10% 3.7s\u001b[0K\u001b[1G99.5 MiB [] 11% 3.8s\u001b[0K\u001b[1G99.5 MiB [] 11% 3.7s\u001b[0K\u001b[1G99.5 MiB [] 12% 3.7s\u001b[0K\u001b[1G99.5 MiB [] 12% 3.6s\u001b[0K\u001b[1G99.5 MiB [] 13% 3.5s\u001b[0K\u001b[1G99.5 MiB [] 14% 3.4s\u001b[0K\u001b[1G99.5 MiB [] 15% 3.4s\u001b[0K\u001b[1G99.5 MiB [] 16% 3.4s\u001b[0K\u001b[1G99.5 MiB [] 17% 3.4s\u001b[0K\u001b[1G99.5 MiB [] 18% 3.2s\u001b[0K\u001b[1G99.5 MiB [] 19% 3.2s\u001b[0K\u001b[1G99.5 MiB [] 20% 3.1s\u001b[0K\u001b[1G99.5 MiB [] 21% 3.0s\u001b[0K\u001b[1G99.5 MiB [] 22% 3.0s\u001b[0K\u001b[1G99.5 MiB [] 23% 2.9s\u001b[0K\u001b[1G99.5 MiB [] 24% 2.9s\u001b[0K\u001b[1G99.5 MiB [] 25% 2.8s\u001b[0K\u001b[1G99.5 MiB [] 26% 2.8s\u001b[0K\u001b[1G99.5 MiB [] 26% 2.7s\u001b[0K\u001b[1G99.5 MiB [] 27% 2.7s\u001b[0K\u001b[1G99.5 MiB [] 28% 2.7s\u001b[0K\u001b[1G99.5 MiB [] 29% 2.6s\u001b[0K\u001b[1G99.5 MiB [] 30% 2.5s\u001b[0K\u001b[1G99.5 MiB [] 31% 2.5s\u001b[0K\u001b[1G99.5 MiB [] 31% 2.4s\u001b[0K\u001b[1G99.5 MiB [] 32% 2.4s\u001b[0K\u001b[1G99.5 MiB [] 33% 2.4s\u001b[0K\u001b[1G99.5 MiB [] 33% 2.3s\u001b[0K\u001b[1G99.5 MiB [] 34% 2.3s\u001b[0K\u001b[1G99.5 MiB [] 35% 2.3s\u001b[0K\u001b[1G99.5 MiB [] 35% 2.4s\u001b[0K\u001b[1G99.5 MiB [] 36% 2.4s\u001b[0K\u001b[1G99.5 MiB [] 36% 2.5s\u001b[0K\u001b[1G99.5 MiB [] 37% 2.5s\u001b[0K\u001b[1G99.5 MiB [] 37% 2.6s\u001b[0K\u001b[1G99.5 MiB [] 38% 2.5s\u001b[0K\u001b[1G99.5 MiB [] 38% 2.6s\u001b[0K\u001b[1G99.5 MiB [] 39% 2.6s\u001b[0K\u001b[1G99.5 MiB [] 39% 2.5s\u001b[0K\u001b[1G99.5 MiB [] 40% 2.5s\u001b[0K\u001b[1G99.5 MiB [] 41% 2.4s\u001b[0K\u001b[1G99.5 MiB [] 42% 2.4s\u001b[0K\u001b[1G99.5 MiB [] 43% 2.3s\u001b[0K\u001b[1G99.5 MiB [] 44% 2.2s\u001b[0K\u001b[1G99.5 MiB [] 45% 2.2s\u001b[0K\u001b[1G99.5 MiB [] 46% 2.1s\u001b[0K\u001b[1G99.5 MiB [] 47% 2.0s\u001b[0K\u001b[1G99.5 MiB [] 48% 2.0s\u001b[0K\u001b[1G99.5 MiB [] 48% 2.1s\u001b[0K\u001b[1G99.5 MiB [] 49% 2.0s\u001b[0K\u001b[1G99.5 MiB [] 50% 2.0s\u001b[0K\u001b[1G99.5 MiB [] 51% 1.9s\u001b[0K\u001b[1G99.5 MiB [] 52% 1.9s\u001b[0K\u001b[1G99.5 MiB [] 52% 1.8s\u001b[0K\u001b[1G99.5 MiB [] 53% 1.8s\u001b[0K\u001b[1G99.5 MiB [] 54% 1.7s\u001b[0K\u001b[1G99.5 MiB [] 55% 1.7s\u001b[0K\u001b[1G99.5 MiB [] 56% 1.7s\u001b[0K\u001b[1G99.5 MiB [] 57% 1.6s\u001b[0K\u001b[1G99.5 MiB [] 58% 1.6s\u001b[0K\u001b[1G99.5 MiB [] 59% 1.5s\u001b[0K\u001b[1G99.5 MiB [] 60% 1.5s\u001b[0K\u001b[1G99.5 MiB [] 61% 1.4s\u001b[0K\u001b[1G99.5 MiB [] 62% 1.4s\u001b[0K\u001b[1G99.5 MiB [] 63% 1.3s\u001b[0K\u001b[1G99.5 MiB [] 65% 1.2s\u001b[0K\u001b[1G99.5 MiB [] 66% 1.2s\u001b[0K\u001b[1G99.5 MiB [] 67% 1.1s\u001b[0K\u001b[1G99.5 MiB [] 69% 1.0s\u001b[0K\u001b[1G99.5 MiB [] 71% 1.0s\u001b[0K\u001b[1G99.5 MiB [] 72% 0.9s\u001b[0K\u001b[1G99.5 MiB [] 73% 0.9s\u001b[0K\u001b[1G99.5 MiB [] 74% 0.9s\u001b[0K\u001b[1G99.5 MiB [] 74% 0.8s\u001b[0K\u001b[1G99.5 MiB [] 75% 0.8s\u001b[0K\u001b[1G99.5 MiB [] 77% 0.8s\u001b[0K\u001b[1G99.5 MiB [] 78% 0.7s\u001b[0K\u001b[1G99.5 MiB [] 79% 0.7s\u001b[0K\u001b[1G99.5 MiB [] 80% 0.6s\u001b[0K\u001b[1G99.5 MiB [] 81% 0.6s\u001b[0K\u001b[1G99.5 MiB [] 82% 0.6s\u001b[0K\u001b[1G99.5 MiB [] 83% 0.5s\u001b[0K\u001b[1G99.5 MiB [] 84% 0.5s\u001b[0K\u001b[1G99.5 MiB [] 85% 0.5s\u001b[0K\u001b[1G99.5 MiB [] 86% 0.4s\u001b[0K\u001b[1G99.5 MiB [] 87% 0.4s\u001b[0K\u001b[1G99.5 MiB [] 89% 0.3s\u001b[0K\u001b[1G99.5 MiB [] 90% 0.3s\u001b[0K\u001b[1G99.5 MiB [] 91% 0.2s\u001b[0K\u001b[1G99.5 MiB [] 92% 0.2s\u001b[0K\u001b[1G99.5 MiB [] 93% 0.2s\u001b[0K\u001b[1G99.5 MiB [] 94% 0.2s\u001b[0K\u001b[1G99.5 MiB [] 96% 0.1s\u001b[0K\u001b[1G99.5 MiB [] 97% 0.1s\u001b[0K\u001b[1G99.5 MiB [] 98% 0.0s\u001b[0K\u001b[1G99.5 MiB [] 99% 0.0s\u001b[0K\u001b[1G99.5 MiB [] 100% 0.0s\u001b[0K\n",
"Firefox 146.0.1 (playwright firefox v1509) downloaded to /root/.cache/ms-playwright/firefox-1509\n",
"Downloading WebKit 26.0 (playwright webkit v2248)\u001b[2m from https://cdn.playwright.dev/dbazure/download/playwright/builds/webkit/2248/webkit-ubuntu-22.04.zip\u001b[22m\n",
"(node:10115) [DEP0169] DeprecationWarning: `url.parse()` behavior is not standardized and prone to errors that have security implications. Use the WHATWG URL API instead. CVEs are not issued for `url.parse()` vulnerabilities.\n",
"(Use `node --trace-deprecation ...` to show where the warning was created)\n",
"\u001b[1G99.4 MiB [] 0% 0.0s\u001b[0K\u001b[1G99.4 MiB [] 0% 15.1s\u001b[0K\u001b[1G99.4 MiB [] 0% 8.9s\u001b[0K\u001b[1G99.4 MiB [] 1% 4.6s\u001b[0K\u001b[1G99.4 MiB [] 1% 3.4s\u001b[0K\u001b[1G99.4 MiB [] 3% 2.6s\u001b[0K\u001b[1G99.4 MiB [] 3% 2.4s\u001b[0K\u001b[1G99.4 MiB [] 5% 2.1s\u001b[0K\u001b[1G99.4 MiB [] 6% 1.9s\u001b[0K\u001b[1G99.4 MiB [] 7% 1.9s\u001b[0K\u001b[1G99.4 MiB [] 8% 1.9s\u001b[0K\u001b[1G99.4 MiB [] 10% 1.7s\u001b[0K\u001b[1G99.4 MiB [] 11% 1.6s\u001b[0K\u001b[1G99.4 MiB [] 12% 1.6s\u001b[0K\u001b[1G99.4 MiB [] 13% 1.5s\u001b[0K\u001b[1G99.4 MiB [] 15% 1.4s\u001b[0K\u001b[1G99.4 MiB [] 16% 1.3s\u001b[0K\u001b[1G99.4 MiB [] 18% 1.3s\u001b[0K\u001b[1G99.4 MiB [] 20% 1.2s\u001b[0K\u001b[1G99.4 MiB [] 22% 1.1s\u001b[0K\u001b[1G99.4 MiB [] 24% 1.1s\u001b[0K\u001b[1G99.4 MiB [] 25% 1.0s\u001b[0K\u001b[1G99.4 MiB [] 27% 1.0s\u001b[0K\u001b[1G99.4 MiB [] 29% 0.9s\u001b[0K\u001b[1G99.4 MiB [] 30% 0.9s\u001b[0K\u001b[1G99.4 MiB [] 32% 0.9s\u001b[0K\u001b[1G99.4 MiB [] 34% 0.8s\u001b[0K\u001b[1G99.4 MiB [] 36% 0.8s\u001b[0K\u001b[1G99.4 MiB [] 38% 0.7s\u001b[0K\u001b[1G99.4 MiB [] 40% 0.7s\u001b[0K\u001b[1G99.4 MiB [] 42% 0.7s\u001b[0K\u001b[1G99.4 MiB [] 43% 0.7s\u001b[0K\u001b[1G99.4 MiB [] 45% 0.6s\u001b[0K\u001b[1G99.4 MiB [] 47% 0.6s\u001b[0K\u001b[1G99.4 MiB [] 48% 0.6s\u001b[0K\u001b[1G99.4 MiB [] 49% 0.6s\u001b[0K\u001b[1G99.4 MiB [] 50% 0.6s\u001b[0K\u001b[1G99.4 MiB [] 52% 0.6s\u001b[0K\u001b[1G99.4 MiB [] 53% 0.6s\u001b[0K\u001b[1G99.4 MiB [] 55% 0.5s\u001b[0K\u001b[1G99.4 MiB [] 56% 0.5s\u001b[0K\u001b[1G99.4 MiB [] 57% 0.5s\u001b[0K\u001b[1G99.4 MiB [] 58% 0.5s\u001b[0K\u001b[1G99.4 MiB [] 60% 0.5s\u001b[0K\u001b[1G99.4 MiB [] 61% 0.5s\u001b[0K\u001b[1G99.4 MiB [] 63% 0.4s\u001b[0K\u001b[1G99.4 MiB [] 66% 0.4s\u001b[0K\u001b[1G99.4 MiB [] 68% 0.4s\u001b[0K\u001b[1G99.4 MiB [] 70% 0.3s\u001b[0K\u001b[1G99.4 MiB [] 71% 0.3s\u001b[0K\u001b[1G99.4 MiB [] 73% 0.3s\u001b[0K\u001b[1G99.4 MiB [] 74% 0.3s\u001b[0K\u001b[1G99.4 MiB [] 75% 0.3s\u001b[0K\u001b[1G99.4 MiB [] 76% 0.3s\u001b[0K\u001b[1G99.4 MiB [] 77% 0.3s\u001b[0K\u001b[1G99.4 MiB [] 78% 0.3s\u001b[0K\u001b[1G99.4 MiB [] 79% 0.3s\u001b[0K\u001b[1G99.4 MiB [] 80% 0.2s\u001b[0K\u001b[1G99.4 MiB [] 81% 0.2s\u001b[0K\u001b[1G99.4 MiB [] 82% 0.2s\u001b[0K\u001b[1G99.4 MiB [] 83% 0.2s\u001b[0K\u001b[1G99.4 MiB [] 84% 0.2s\u001b[0K\u001b[1G99.4 MiB [] 85% 0.2s\u001b[0K\u001b[1G99.4 MiB [] 86% 0.2s\u001b[0K\u001b[1G99.4 MiB [] 87% 0.2s\u001b[0K\u001b[1G99.4 MiB [] 88% 0.2s\u001b[0K\u001b[1G99.4 MiB [] 89% 0.1s\u001b[0K\u001b[1G99.4 MiB [] 90% 0.1s\u001b[0K\u001b[1G99.4 MiB [] 91% 0.1s\u001b[0K\u001b[1G99.4 MiB [] 92% 0.1s\u001b[0K\u001b[1G99.4 MiB [] 93% 0.1s\u001b[0K\u001b[1G99.4 MiB [] 94% 0.1s\u001b[0K\u001b[1G99.4 MiB [] 95% 0.1s\u001b[0K\u001b[1G99.4 MiB [] 96% 0.1s\u001b[0K\u001b[1G99.4 MiB [] 97% 0.0s\u001b[0K\u001b[1G99.4 MiB [] 98% 0.0s\u001b[0K\u001b[1G99.4 MiB [] 99% 0.0s\u001b[0K\u001b[1G99.4 MiB [] 100% 0.0s\u001b[0K\n",
"WebKit 26.0 (playwright webkit v2248) downloaded to /root/.cache/ms-playwright/webkit-2248\n",
"Downloading FFmpeg (playwright ffmpeg v1011)\u001b[2m from https://cdn.playwright.dev/dbazure/download/playwright/builds/ffmpeg/1011/ffmpeg-linux.zip\u001b[22m\n",
"(node:10150) [DEP0169] DeprecationWarning: `url.parse()` behavior is not standardized and prone to errors that have security implications. Use the WHATWG URL API instead. CVEs are not issued for `url.parse()` vulnerabilities.\n",
"(Use `node --trace-deprecation ...` to show where the warning was created)\n",
"\u001b[1G2.3 MiB [] 0% 0.0s\u001b[0K\u001b[1G2.3 MiB [] 5% 0.3s\u001b[0K\u001b[1G2.3 MiB [] 15% 0.2s\u001b[0K\u001b[1G2.3 MiB [] 43% 0.1s\u001b[0K\u001b[1G2.3 MiB [] 69% 0.0s\u001b[0K\u001b[1G2.3 MiB [] 100% 0.0s\u001b[0K\n",
"FFmpeg (playwright ffmpeg v1011) downloaded to /root/.cache/ms-playwright/ffmpeg-1011\n",
"Playwright Host validation warning: \n",
"╔══════════════════════════════════════════════════════╗\n",
"║ Host system is missing dependencies to run browsers. ║\n",
"║ Please install them with the following command: ║\n",
"║ ║\n",
"║ playwright install-deps ║\n",
"║ ║\n",
"║ Alternatively, use apt: ║\n",
"║ apt-get install libxcomposite1\\ ║\n",
"║ libgtk-3-0\\ ║\n",
"║ libatk1.0-0 ║\n",
"║ ║\n",
"║ <3 Playwright Team ║\n",
"╚══════════════════════════════════════════════════════╝\n",
" at validateDependenciesLinux (/usr/local/lib/python3.12/dist-packages/playwright/driver/package/lib/server/registry/dependencies.js:269:9)\n",
"\u001b[90m at process.processTicksAndRejections (node:internal/process/task_queues:103:5)\u001b[39m\n",
" at async Registry._validateHostRequirements (/usr/local/lib/python3.12/dist-packages/playwright/driver/package/lib/server/registry/index.js:991:14)\n",
" at async Registry._validateHostRequirementsForExecutableIfNeeded (/usr/local/lib/python3.12/dist-packages/playwright/driver/package/lib/server/registry/index.js:1113:7)\n",
" at async Registry.validateHostRequirementsForExecutablesIfNeeded (/usr/local/lib/python3.12/dist-packages/playwright/driver/package/lib/server/registry/index.js:1102:7)\n",
" at async i.<anonymous> (/usr/local/lib/python3.12/dist-packages/playwright/driver/package/lib/cli/program.js:174:7)\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"!apt-get install -y libatk1.0-0"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "RvIPwbhie-NZ",
"outputId": "6d570057-a8ef-4d85-d0d5-034f3236bb4f"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Reading package lists... Done\n",
"Building dependency tree... Done\n",
"Reading state information... Done\n",
"The following additional packages will be installed:\n",
" libatk1.0-data\n",
"The following NEW packages will be installed:\n",
" libatk1.0-0 libatk1.0-data\n",
"0 upgraded, 2 newly installed, 0 to remove and 2 not upgraded.\n",
"Need to get 54.8 kB of archives.\n",
"After this operation, 249 kB of additional disk space will be used.\n",
"Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 libatk1.0-data all 2.36.0-3build1 [2,824 B]\n",
"Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 libatk1.0-0 amd64 2.36.0-3build1 [51.9 kB]\n",
"Fetched 54.8 kB in 1s (86.8 kB/s)\n",
"Selecting previously unselected package libatk1.0-data.\n",
"(Reading database ... 117540 files and directories currently installed.)\n",
"Preparing to unpack .../libatk1.0-data_2.36.0-3build1_all.deb ...\n",
"Unpacking libatk1.0-data (2.36.0-3build1) ...\n",
"Selecting previously unselected package libatk1.0-0:amd64.\n",
"Preparing to unpack .../libatk1.0-0_2.36.0-3build1_amd64.deb ...\n",
"Unpacking libatk1.0-0:amd64 (2.36.0-3build1) ...\n",
"Setting up libatk1.0-data (2.36.0-3build1) ...\n",
"Setting up libatk1.0-0:amd64 (2.36.0-3build1) ...\n",
"Processing triggers for libc-bin (2.35-0ubuntu3.11) ...\n",
"/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc_proxy.so.2 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero_v2.so.0 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_5.so.3 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libur_adapter_opencl.so.0 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtbbbind.so.3 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero.so.0 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libumf.so.1 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtcm.so.1 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_0.so.3 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtcm_debug.so.1 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtbb.so.12 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc.so.2 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libur_loader.so.0 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libhwloc.so.15 is not a symbolic link\n",
"\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"!apt-get install -y libatk-bridge2.0-0"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "ByWLwKcLfUrC",
"outputId": "03beb5a4-d1e4-4b48-830e-521024673ab8"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Reading package lists... Done\n",
"Building dependency tree... Done\n",
"Reading state information... Done\n",
"The following additional packages will be installed:\n",
" at-spi2-core gsettings-desktop-schemas libatspi2.0-0 libxtst6\n",
" session-migration\n",
"The following NEW packages will be installed:\n",
" at-spi2-core gsettings-desktop-schemas libatk-bridge2.0-0 libatspi2.0-0\n",
" libxtst6 session-migration\n",
"0 upgraded, 6 newly installed, 0 to remove and 2 not upgraded.\n",
"Need to get 256 kB of archives.\n",
"After this operation, 1,215 kB of additional disk space will be used.\n",
"Get:1 http://archive.ubuntu.com/ubuntu jammy/main amd64 libatspi2.0-0 amd64 2.44.0-3 [80.9 kB]\n",
"Get:2 http://archive.ubuntu.com/ubuntu jammy/main amd64 libxtst6 amd64 2:1.2.3-1build4 [13.4 kB]\n",
"Get:3 http://archive.ubuntu.com/ubuntu jammy/main amd64 session-migration amd64 0.3.6 [9,774 B]\n",
"Get:4 http://archive.ubuntu.com/ubuntu jammy/main amd64 gsettings-desktop-schemas all 42.0-1ubuntu1 [31.1 kB]\n",
"Get:5 http://archive.ubuntu.com/ubuntu jammy/main amd64 at-spi2-core amd64 2.44.0-3 [54.4 kB]\n",
"Get:6 http://archive.ubuntu.com/ubuntu jammy/main amd64 libatk-bridge2.0-0 amd64 2.38.0-3 [66.6 kB]\n",
"Fetched 256 kB in 0s (933 kB/s)\n",
"Selecting previously unselected package libatspi2.0-0:amd64.\n",
"(Reading database ... 117549 files and directories currently installed.)\n",
"Preparing to unpack .../0-libatspi2.0-0_2.44.0-3_amd64.deb ...\n",
"Unpacking libatspi2.0-0:amd64 (2.44.0-3) ...\n",
"Selecting previously unselected package libxtst6:amd64.\n",
"Preparing to unpack .../1-libxtst6_2%3a1.2.3-1build4_amd64.deb ...\n",
"Unpacking libxtst6:amd64 (2:1.2.3-1build4) ...\n",
"Selecting previously unselected package session-migration.\n",
"Preparing to unpack .../2-session-migration_0.3.6_amd64.deb ...\n",
"Unpacking session-migration (0.3.6) ...\n",
"Selecting previously unselected package gsettings-desktop-schemas.\n",
"Preparing to unpack .../3-gsettings-desktop-schemas_42.0-1ubuntu1_all.deb ...\n",
"Unpacking gsettings-desktop-schemas (42.0-1ubuntu1) ...\n",
"Selecting previously unselected package at-spi2-core.\n",
"Preparing to unpack .../4-at-spi2-core_2.44.0-3_amd64.deb ...\n",
"Unpacking at-spi2-core (2.44.0-3) ...\n",
"Selecting previously unselected package libatk-bridge2.0-0:amd64.\n",
"Preparing to unpack .../5-libatk-bridge2.0-0_2.38.0-3_amd64.deb ...\n",
"Unpacking libatk-bridge2.0-0:amd64 (2.38.0-3) ...\n",
"Setting up session-migration (0.3.6) ...\n",
"Created symlink /etc/systemd/user/graphical-session-pre.target.wants/session-migration.service → /usr/lib/systemd/user/session-migration.service.\n",
"Setting up libxtst6:amd64 (2:1.2.3-1build4) ...\n",
"Setting up libatspi2.0-0:amd64 (2.44.0-3) ...\n",
"Setting up libatk-bridge2.0-0:amd64 (2.38.0-3) ...\n",
"Setting up gsettings-desktop-schemas (42.0-1ubuntu1) ...\n",
"Processing triggers for libglib2.0-0:amd64 (2.72.4-0ubuntu2.7) ...\n",
"Processing triggers for libc-bin (2.35-0ubuntu3.11) ...\n",
"/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc_proxy.so.2 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero_v2.so.0 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_5.so.3 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libur_adapter_opencl.so.0 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtbbbind.so.3 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libur_adapter_level_zero.so.0 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libumf.so.1 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtcm.so.1 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtbbbind_2_0.so.3 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtcm_debug.so.1 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtbb.so.12 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libtbbmalloc.so.2 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libur_loader.so.0 is not a symbolic link\n",
"\n",
"/sbin/ldconfig.real: /usr/local/lib/libhwloc.so.15 is not a symbolic link\n",
"\n",
"Processing triggers for man-db (2.10.2-1) ...\n",
"Setting up at-spi2-core (2.44.0-3) ...\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"import requests\n",
"from bs4 import BeautifulSoup\n",
"from urllib.parse import urljoin\n",
"import os\n",
"\n",
"base = \"https://moad.gov.sy/\"\n",
"visited = set()\n",
"\n",
"def scrape_page(url):\n",
" res = requests.get(url)\n",
" soup = BeautifulSoup(res.text, \"html.parser\")\n",
" print(\"Scraping:\", url)\n",
"\n",
" # Ensure the 'pages' directory exists\n",
" os.makedirs('pages', exist_ok=True)\n",
"\n",
" # Save page content\n",
" # Handle the case where url.replace(base, '') might be empty\n",
" filename_segment = url.replace(base, \"\").replace(\"/\", \"_\")\n",
" if not filename_segment:\n",
" filename_segment = \"index\"\n",
" with open(\"pages/\" + filename_segment + \".html\", \"w\") as f:\n",
" f.write(res.text)\n",
"\n",
" # find links\n",
" for a in soup.find_all(\"a\", href=True):\n",
" link = urljoin(base, a[\"href\"])\n",
" if link.startswith(base) and link not in visited:\n",
" visited.add(link)\n",
" scrape_page(link)\n",
"\n",
"scrape_page(base)"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "VOQEKlsKhyJx",
"outputId": "cc1cac07-b66c-4d93-f681-8c86caa8d5e9"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Scraping: https://moad.gov.sy/\n",
"Scraping: https://moad.gov.sy/\n",
"Scraping: https://moad.gov.sy/ar/ministry/about\n",
"Scraping: https://moad.gov.sy/ar/ministry/minister\n",
"Scraping: https://moad.gov.sy/ar/ministry/strategic-directions-map\n",
"Scraping: https://moad.gov.sy/ar/legislation/laws\n",
"Scraping: https://moad.gov.sy/ar/legislation/decrees\n",
"Scraping: https://moad.gov.sy/ar/legislation/service-guides\n",
"Scraping: https://moad.gov.sy/news\n",
"Scraping: https://moad.gov.sy/ar/contact/faq\n",
"Scraping: https://moad.gov.sy/ar/contact/important-links\n",
"Scraping: https://moad.gov.sy/ar/ministry\n",
"Scraping: https://moad.gov.sy/ar/legislation\n",
"Scraping: https://moad.gov.sy/ar/news\n",
"Scraping: https://moad.gov.sy/ar/contact\n",
"Scraping: https://moad.gov.sy/contact/faq\n",
"Scraping: https://moad.gov.sy/contact\n",
"Scraping: https://moad.gov.sy/contact/important-links\n",
"Scraping: https://moad.gov.sy/ministry/about\n",
"Scraping: https://moad.gov.sy/ministry\n",
"Scraping: https://moad.gov.sy/ministry/minister\n",
"Scraping: https://moad.gov.sy/legislation\n",
"Scraping: https://moad.gov.sy/legislation/laws\n",
"Scraping: https://moad.gov.sy/legislation/decrees\n",
"Scraping: https://moad.gov.sy/legislation/decrees/42\n",
"Scraping: https://moad.gov.sy/ar/privacy-policy\n",
"Scraping: https://moad.gov.sy/ar/terms-conditions\n",
"Scraping: https://moad.gov.sy/legislation/decrees/43\n",
"Scraping: https://moad.gov.sy/legislation/decrees/46\n",
"Scraping: https://moad.gov.sy/legislation/service-guides\n",
"Scraping: https://moad.gov.sy/legislation/service-guides/building-and-updating-institutional-structures\n",
"Scraping: https://moad.gov.sy/ministry/strategic-directions-map\n",
"Scraping: https://moad.gov.sy/news/bd491579-99a1-448d-a2b4-c2b3d4705c77\n",
"Scraping: https://moad.gov.sy/news/4664cf44-c11f-45e2-bada-2bd7c059900d\n",
"Scraping: https://moad.gov.sy/news/c880be1a-fb29-43f6-8900-9904d3a9f17d\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"import requests\n",
"from bs4 import BeautifulSoup\n",
"import csv\n",
"\n",
"base = \"https://moad.gov.sy\"\n",
"\n",
"news_urls = [\n",
" \"https://moad.gov.sy/news/bd491579-99a1-448d-a2b4-c2b3d4705c77\",\n",
" \"https://moad.gov.sy/news/4664cf44-c11f-45e2-bada-2bd7c059900d\",\n",
" \"https://moad.gov.sy/news/c880be1a-fb29-43f6-8900-9904d3a9f17d\"\n",
"]\n",
"\n",
"with open(\"news_data.csv\", \"w\", newline='', encoding=\"utf-8\") as file:\n",
" writer = csv.writer(file)\n",
" writer.writerow([\"URL\", \"Title\", \"Date\", \"Content\"])\n",
"\n",
" for url in news_urls:\n",
" res = requests.get(url)\n",
" soup = BeautifulSoup(res.text, \"html.parser\")\n",
"\n",
" title = soup.find(\"h1\")\n",
" date = soup.find(class_=\"date\") # inspect actual class name\n",
" content = soup.find(\"div\", class_=\"content\") # inspect actual class name\n",
"\n",
" writer.writerow([\n",
" url,\n",
" title.text.strip() if title else \"\",\n",
" date.text.strip() if date else \"\",\n",
" content.text.strip() if content else \"\"\n",
" ])\n",
"\n",
"print(\"Done.\")"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "kYQT1q8Vhyl5",
"outputId": "51619263-195a-4dd2-9040-5190038f863d"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"Done.\n"
]
}
]
},
{
"cell_type": "code",
"source": [],
"metadata": {
"id": "03_Pox7ZieT8"
},
"execution_count": null,
"outputs": []
},
{
"cell_type": "code",
"source": [
"listing = requests.get(\"https://moad.gov.sy/news\")\n",
"soup = BeautifulSoup(listing.text, \"html.parser\")\n",
"\n",
"links = []\n",
"\n",
"for a in soup.find_all(\"a\", href=True):\n",
" if \"/news/\" in a[\"href\"]:\n",
" full_url = base + a[\"href\"]\n",
" links.append(full_url)\n",
"\n",
"print(links)"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "gnxoq5jgimLc",
"outputId": "19b02e8c-506c-462b-a262-ab698045b729"
},
"execution_count": null,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"[]\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"import requests\n",
"\n",
"ra = requests.get(\"https://moad.gov.sy/\")"
],
"metadata": {
"id": "0OW7Y4eTkfzD"
},
"execution_count": 4,
"outputs": []
},
{
"cell_type": "code",
"source": [
"ra.text"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 157
},
"id": "8pWLyfZkklW3",
"outputId": "6132632b-6338-476a-d974-34562b03d0aa"
},
"execution_count": 5,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"'<!DOCTYPE html><!--3M1Akw2Hb07_PYlfcnWW1--><html lang=\"ar\" dir=\"rtl\"><head><meta charSet=\"utf-8\"/><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/><link rel=\"preload\" href=\"/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2\" as=\"font\" crossorigin=\"\" type=\"font/woff2\"/><link rel=\"preload\" href=\"/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2\" as=\"font\" crossorigin=\"\" type=\"font/woff2\"/><link rel=\"preload\" as=\"image\" href=\"/icons/map-pin.png\"/><link rel=\"preload\" as=\"image\" href=\"/icons/clock.png\"/><link rel=\"preload\" as=\"image\" href=\"/icons/calendar.png\"/><link rel=\"preload\" as=\"image\" href=\"/icons/Telegram.png\"/><link rel=\"preload\" as=\"image\" href=\"/icons/Facebook.png\"/><link rel=\"preload\" as=\"image\" href=\"/icons/LinkedIn.png\"/><link rel=\"preload\" as=\"image\" href=\"/images/language.svg\"/><link rel=\"stylesheet\" href=\"/_next/static/chunks/93a75f8697bed459.css\" data-precedence=\"next\"/><link rel=\"stylesheet\" href=\"/_next/static/chunks/26aadce5fd59ec76.css\" data-precedence=\"next\"/><link rel=\"stylesheet\" href=\"/_next/static/chunks/583da39e249ac873.css\" data-precedence=\"next\"/><link rel=\"stylesheet\" href=\"/_next/static/chunks/3b7e36929d6adf27.css\" data-precedence=\"next\"/><link rel=\"preload\" as=\"script\" fetchPriority=\"low\" href=\"/_next/static/chunks/c62b4372c26b460f.js\"/><script src=\"/_next/static/chunks/c951386faa1af47c.js\" async=\"\"></script><script src=\"/_next/static/chunks/fa9b078b3e28c0da.js\" async=\"\"></script><script src=\"/_next/static/chunks/8082ab48faca5ea1.js\" async=\"\"></script><script src=\"/_next/static/chunks/turbopack-11bf000e0da65cdd.js\" async=\"\"></script><script src=\"/_next/static/chunks/ff1a16fafef87110.js\" async=\"\"></script><script src=\"/_next/static/chunks/7dd66bdf8a7e5707.js\" async=\"\"></script><script src=\"/_next/static/chunks/a85149b077c8acb8.js\" async=\"\"></script><script src=\"/_next/static/chunks/9856686dc0d58d81.js\" async=\"\"></script><script src=\"/_next/static/chunks/f9285188d42f0e8f.js\" async=\"\"></script><script src=\"/_next/static/chunks/488342bc67d95ea5.js\" async=\"\"></script><script src=\"/_next/static/chunks/e0755f39e90fb2aa.js\" async=\"\"></script><script src=\"/_next/static/chunks/9de9312a0a268785.js\" async=\"\"></script><script src=\"/_next/static/chunks/64968448ae75aa67.js\" async=\"\"></script><script src=\"/_next/static/chunks/8845389a49c42702.js\" async=\"\"></script><meta name=\"next-size-adjust\" content=\"\"/><link rel=\"apple-touch-icon\" sizes=\"180x180\" href=\"/favicon/apple-touch-icon.png\"/><link rel=\"icon\" type=\"image/png\" sizes=\"32x32\" href=\"/favicon/favicon-32x32.png\"/><link rel=\"icon\" type=\"image/png\" sizes=\"16x16\" href=\"/favicon/favicon-16x16.png\"/><link rel=\"manifest\" href=\"/favicon/site.webmanifest\"/><title>Ministry of Administration Development</title><meta name=\"description\" content=\"Generated by create next app\"/><script src=\"/_next/static/chunks/a6dad97d9634a72d.js\" noModule=\"\"></script></head><body><div hidden=\"\"><!--$--><!--/$--></div><div class=\"w-full max-w-[1920px] mx-auto px-4 sm:px-6 lg:px-8 bg-white transition-all duration-300\"><section><div class=\"w-full py-2 px-3 flex max-sm:flex-col max-sm:gap-2 max-sm:items-start max-sm:justify-start items-center justify-between\"><div class=\"flex items-center gap-5 max-xs:gap-2 max-xs:flex-wrap max-sm:order-2\"><div class=\"flex items-center gap-2\" dir=\"ltr\"><span class=\"text-base max-sm:text-sm text-[#525951]\">دمشق</span><img src=\"/icons/map-pin.png\" alt=\"دمشق\" class=\"h-6 w-6 max-sm:h-4 max-sm:w-4\"/></div><div class=\"flex items-center gap-2\" dir=\"ltr\"><span class=\"text-base max-sm:text-sm text-[#525951]\"></span><img src=\"/icons/clock.png\" alt=\"التوقيت\" class=\"h-6 w-6 max-sm:h-4 max-sm:w-4\"/></div><div class=\"flex items-center gap-2\" dir=\"ltr\"><span class=\"text-base max-sm:text-sm text-[#525951]\"></span><img src=\"/icons/calendar.png\" alt=\"التاريخ\" class=\"h-6 w-6 max-sm:h-4 max-sm:w-4\"/></div></div><div class=\"flex items-center gap-3 max-sm:order-1\"><a href=\"https://t.me/SyMOAD\" target=\"_blank\" aria-label=\"Telegram\" class=\" \"><img src=\"/icons/Telegram.png\" alt=\"Telegram\" class=\"w-[18px] h-auto\"/></a><a href=\"https://www.facebook.com/share/1CV6tZC2yh/\" target=\"_blank\" aria-label=\"Facebook\" class=\" \"><img src=\"/icons/Facebook.png\" alt=\"Facebook\" class=\"w-[18px] h-auto\"/></a><a href=\"https://www.linkedin.com/company/symoad\" target=\"_blank\" aria-label=\"LinkedIn\" class=\" \"><img src=\"/icons/LinkedIn.png\" alt=\"LinkedIn\" class=\"w-[18px] h-auto\"/></a></div></div></section></div><div class=\"w-full h-[1px] bg-black-100\"></div><div class=\"w-full max-w-[1920px] mx-auto px-4 sm:px-6 lg:px-8 bg-white transition-all duration-300\"><header class=\"bg-[url(&#x27;/images/background.svg&#x27;)] bg-contain bg-repeat relative\"><div class=\"w-full flex max-sm:flex-col max-sm:gap-3 items-center max-sm:items-start justify-between py-4\"><div class=\"flex max-sm:justify-between items-center gap-3 max-sm:w-full\"><a class=\"inline-flex items-center\" href=\"/\"><img alt=\"Logo\" loading=\"lazy\" width=\"280\" height=\"100\" decoding=\"async\" data-nimg=\"1\" class=\"w-[280px] max-sm:w-[180px] h-auto\" style=\"color:transparent\" src=\"/images/logo.svg\"/></a><button class=\"mobile-navbar-button sm:hidden bg-green2-400 text-white-50 p-2 rounded-md shadow-lg hover:bg-green2-500 transition-colors duration-200\" aria-label=\"Open menu\" style=\"left:1rem\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" height=\"24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><line x1=\"3\" y1=\"12\" x2=\"21\" y2=\"12\"></line><line x1=\"3\" y1=\"6\" x2=\"21\" y2=\"6\"></line><line x1=\"3\" y1=\"18\" x2=\"21\" y2=\"18\"></line></svg></button><div class=\"mobile-navbar-sidebar fixed top-0 z-50 h-full w-80 bg-[#FFFFFF] shadow-2xl transform transition-transform duration-300 ease-in-out md:hidden overflow-y-auto -translate-x-full\" style=\"left:0\"><div class=\"bg-green2-400 text-white-50 p-4 flex items-center justify-between sticky top-0 z-10\"><h2 class=\"text-xl font-semibold\">القائمة</h2><button class=\"p-1 hover:bg-green2-500 rounded transition-colors duration-200\" aria-label=\"Close menu\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" height=\"24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><line x1=\"18\" y1=\"6\" x2=\"6\" y2=\"18\"></line><line x1=\"6\" y1=\"6\" x2=\"18\" y2=\"18\"></line></svg></button></div><nav class=\"p-4\"><!--$!--><template data-dgst=\"BAILOUT_TO_CLIENT_SIDE_RENDERING\"></template><div class=\"flex items-center gap-2 h-[47px] px-4 border border-white-400 rounded-md bg-[#FFFFFF]\"><input type=\"text\" placeholder=\"\" class=\"focus-within:outline-none text-black-200 placeholder:text-black-200 font-base w-full\" disabled=\"\" value=\"\"/><div><svg stroke=\"currentColor\" fill=\"currentColor\" stroke-width=\"0\" viewBox=\"0 0 1024 1024\" class=\"w-5 h-5\" height=\"1em\" width=\"1em\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1014.64 969.04L703.71 656.207c57.952-69.408 92.88-158.704 92.88-256.208 0-220.912-179.088-400-400-400s-400 179.088-400 400 179.088 400 400 400c100.368 0 192.048-37.056 262.288-98.144l310.496 312.448c12.496 12.497 32.769 12.497 45.265 0 12.48-12.496 12.48-32.752 0-45.263zM396.59 736.527c-185.856 0-336.528-150.672-336.528-336.528S210.734 63.471 396.59 63.471c185.856 0 336.528 150.672 336.528 336.528S582.446 736.527 396.59 736.527z\"></path></svg></div></div><!--/$--><ul class=\"flex flex-col gap-2\"><li class=\"border-b border-gray-200 last:border-b-0\"><button class=\"mobile-navbar-sidebar-item w-full flex items-center justify-between p-3 text-lg font-medium text-gray-800 hover:bg-gray-50 rounded-md transition-colors duration-200\"><span>الوزارة</span><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-green2-400\" height=\"20\" width=\"20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline points=\"6 9 12 15 18 9\"></polyline></svg></button><div class=\"overflow-hidden transition-all duration-300 ease-in-out max-h-0 opacity-0\"><ul class=\"pl-4 pb-2 space-y-1\"><li><a class=\"flex items-start gap-3 p-2 text-base text-gray-700 hover:bg-gray-50 rounded-md transition-colors duration-200 group\" href=\"/ar/ministry/about\"><span class=\"mt-0.5 flex-shrink-0 group-hover:scale-110 transition-transform duration-200\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[#2F363D]\" height=\"22\" width=\"22\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"12\" cy=\"12\" r=\"10\"></circle><line x1=\"12\" y1=\"16\" x2=\"12\" y2=\"12\"></line><line x1=\"12\" y1=\"8\" x2=\"12.01\" y2=\"8\"></line></svg></span><div class=\"flex-1\"><div class=\"font-medium\">حول الوزارة</div><div class=\"text-sm text-gray-500 mt-1\">من نحن</div></div></a></li><li><a class=\"flex items-start gap-3 p-2 text-base text-gray-700 hover:bg-gray-50 rounded-md transition-colors duration-200 group\" href=\"/ar/ministry/minister\"><span class=\"mt-0.5 flex-shrink-0 group-hover:scale-110 transition-transform duration-200\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[#2F363D]\" height=\"22\" width=\"22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2\"></path><circle cx=\"12\" cy=\"7\" r=\"4\"></circle></svg></span><div class=\"flex-1\"><div class=\"font-medium\">الوزير</div><div class=\"text-sm text-gray-500 mt-1\">نبذة عامة</div></div></a></li><li><a class=\"flex items-start gap-3 p-2 text-base text-gray-700 hover:bg-gray-50 rounded-md transition-colors duration-200 group\" href=\"/ar/ministry/strategic-directions-map\"><span class=\"mt-0.5 flex-shrink-0 group-hover:scale-110 transition-transform duration-200\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[#2F363D]\" height=\"22\" width=\"22\" xmlns=\"http://www.w3.org/2000/svg\"><polygon points=\"1 6 1 22 8 18 16 22 23 18 23 2 16 6 8 2 1 6\"></polygon><line x1=\"8\" y1=\"2\" x2=\"8\" y2=\"18\"></line><line x1=\"16\" y1=\"6\" x2=\"16\" y2=\"22\"></line></svg></span><div class=\"flex-1\"><div class=\"font-medium\">خارطة التوجهات الاستراتيجية </div><div class=\"text-sm text-gray-500 mt-1\">الرؤية ، الرسالة ، القيم المؤسسية ، الأهداف الإستراتيجية ، محاور العمل</div></div></a></li></ul></div></li><li class=\"border-b border-gray-200 last:border-b-0\"><button class=\"mobile-navbar-sidebar-item w-full flex items-center justify-between p-3 text-lg font-medium text-gray-800 hover:bg-gray-50 rounded-md transition-colors duration-200\"><span>التشريعات و الأدلة</span><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-green2-400\" height=\"20\" width=\"20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline points=\"6 9 12 15 18 9\"></polyline></svg></button><div class=\"overflow-hidden transition-all duration-300 ease-in-out max-h-0 opacity-0\"><ul class=\"pl-4 pb-2 space-y-1\"><li><a class=\"flex items-start gap-3 p-2 text-base text-gray-700 hover:bg-gray-50 rounded-md transition-colors duration-200 group\" href=\"/ar/legislation/laws\"><span class=\"mt-0.5 flex-shrink-0 group-hover:scale-110 transition-transform duration-200\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[#2F363D]\" height=\"22\" width=\"22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 19.5A2.5 2.5 0 0 1 6.5 17H20\"></path><path d=\"M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z\"></path></svg></span><div class=\"flex-1\"><div class=\"font-medium\">القوانين</div><div class=\"text-sm text-gray-500 mt-1\">تتضمن القوانين النافذة التي تنظم عمل الجهاز الحكومي وتدعم مسار التحول المؤسسي .</div></div></a></li><li><a class=\"flex items-start gap-3 p-2 text-base text-gray-700 hover:bg-gray-50 rounded-md transition-colors duration-200 group\" href=\"/ar/legislation/decrees\"><span class=\"mt-0.5 flex-shrink-0 group-hover:scale-110 transition-transform duration-200\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[#2F363D]\" height=\"22\" width=\"22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M19 21l-7-5-7 5V5a2 2 0 0 1 2-2h10a2 2 0 0 1 2 2z\"></path></svg></span><div class=\"flex-1\"><div class=\"font-medium\">المراسيم</div><div class=\"text-sm text-gray-500 mt-1\">تشمل المراسيم الرئاسية المتعلقة بتطوير الإدارة العامة والموارد البشرية.</div></div></a></li><li><a class=\"flex items-start gap-3 p-2 text-base text-gray-700 hover:bg-gray-50 rounded-md transition-colors duration-200 group\" href=\"/ar/legislation/service-guides\"><span class=\"mt-0.5 flex-shrink-0 group-hover:scale-110 transition-transform duration-200\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[#2F363D]\" height=\"22\" width=\"22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M12 3h7a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2h-7m0-18H5a2 2 0 0 0-2 2v14a2 2 0 0 0 2 2h7m0-18v18\"></path></svg></span><div class=\"flex-1\"><div class=\"font-medium\">الأدلة الخدمية لوزارة التنمية</div><div class=\"text-sm text-gray-500 mt-1\">توضح الإجراءات والمعايير المعتمدة لتقديم الخدمات الحكومية بشفافية وكفاءة.</div></div></a></li></ul></div></li><li class=\"border-b border-gray-200 last:border-b-0\"><a class=\"block p-3 text-lg font-medium text-gray-800 hover:bg-gray-50 rounded-md transition-colors duration-200\" href=\"/news\">الأخبار والفعاليات</a></li><li class=\"border-b border-gray-200 last:border-b-0\"><button class=\"mobile-navbar-sidebar-item w-full flex items-center justify-between p-3 text-lg font-medium text-gray-800 hover:bg-gray-50 rounded-md transition-colors duration-200\"><span>تواصل معنا</span><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-green2-400\" height=\"20\" width=\"20\" xmlns=\"http://www.w3.org/2000/svg\"><polyline points=\"6 9 12 15 18 9\"></polyline></svg></button><div class=\"overflow-hidden transition-all duration-300 ease-in-out max-h-0 opacity-0\"><ul class=\"pl-4 pb-2 space-y-1\"><li><a class=\"flex items-start gap-3 p-2 text-base text-gray-700 hover:bg-gray-50 rounded-md transition-colors duration-200 group\" href=\"/ar/contact/faq\"><span class=\"mt-0.5 flex-shrink-0 group-hover:scale-110 transition-transform duration-200\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[#2F363D]\" height=\"22\" width=\"22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 19.5A2.5 2.5 0 0 1 6.5 17H20\"></path><path d=\"M6.5 2H20v20H6.5A2.5 2.5 0 0 1 4 19.5v-15A2.5 2.5 0 0 1 6.5 2z\"></path></svg></span><div class=\"flex-1\"><div class=\"font-medium\">الأسئلة الشائعة</div><div class=\"text-sm text-gray-500 mt-1\">أكثر الأسئلة تكراراً</div></div></a></li><li><a class=\"flex items-start gap-3 p-2 text-base text-gray-700 hover:bg-gray-50 rounded-md transition-colors duration-200 group\" href=\"/ar/contact/important-links\"><span class=\"mt-0.5 flex-shrink-0 group-hover:scale-110 transition-transform duration-200\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[#2F363D]\" height=\"22\" width=\"22\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16 4h2a2 2 0 0 1 2 2v14a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h2\"></path><rect x=\"8\" y=\"2\" width=\"8\" height=\"4\" rx=\"1\" ry=\"1\"></rect></svg></span><div class=\"flex-1\"><div class=\"font-medium\">روابط مهمة</div><div class=\"text-sm text-gray-500 mt-1\">جهات مرتبطة بعمل الوزارة</div></div></a></li></ul></div></li></ul><div class=\"flex flex-wrap items-center gap-3\"><div dir=\"ltr\" class=\"flex items-center justify-between rounded px-3 py-2 cursor-pointer text-lg font-medium gap-2\"><div class=\"flex items-center flex-1\"><span class=\"flex-1 text-center\">English</span></div><img src=\"/images/language.svg\" alt=\"language icon\" class=\"w-5 h-5\"/></div></div></nav></div></div><div class=\"flex max-sm:hidden justify-between items-center gap-3 max-sm:w-full\"><!--$!--><template data-dgst=\"BAILOUT_TO_CLIENT_SIDE_RENDERING\"></template><div class=\"flex items-center gap-2 h-[47px] px-4 border border-white-400 rounded-md bg-[#FFFFFF]\"><input type=\"text\" placeholder=\"\" class=\"focus-within:outline-none text-black-200 placeholder:text-black-200 font-base undefined\" disabled=\"\" value=\"\"/><div><svg stroke=\"currentColor\" fill=\"currentColor\" stroke-width=\"0\" viewBox=\"0 0 1024 1024\" class=\"w-5 h-5\" height=\"1em\" width=\"1em\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M1014.64 969.04L703.71 656.207c57.952-69.408 92.88-158.704 92.88-256.208 0-220.912-179.088-400-400-400s-400 179.088-400 400 179.088 400 400 400c100.368 0 192.048-37.056 262.288-98.144l310.496 312.448c12.496 12.497 32.769 12.497 45.265 0 12.48-12.496 12.48-32.752 0-45.263zM396.59 736.527c-185.856 0-336.528-150.672-336.528-336.528S210.734 63.471 396.59 63.471c185.856 0 336.528 150.672 336.528 336.528S582.446 736.527 396.59 736.527z\"></path></svg></div></div><!--/$--><div dir=\"ltr\" class=\"flex items-center justify-between rounded px-3 py-2 cursor-pointer text-lg font-medium gap-2\"><div class=\"flex items-center flex-1\"><span class=\"flex-1 text-center\">English</span></div><img src=\"/images/language.svg\" alt=\"language icon\" class=\"w-5 h-5\"/></div></div></div></header><nav class=\"bg-green2-400 text-white-50 text-sm rounded-t-md relative hidden md:block\"><div class=\"w-full px-12\"><ul class=\"flex flex-wrap items-center gap-10 py-4\"><div class=\"relative\"><a class=\"flex items-center gap-1 text-2xl btn-underline\" href=\"/ar/ministry\">الوزارة</a></div><div class=\"relative\"><a class=\"flex items-center gap-1 text-2xl btn-underline\" href=\"/ar/legislation\">التشريعات و الأدلة</a></div><div class=\"relative\"><a class=\"flex items-center gap-1 text-2xl btn-underline\" href=\"/ar/news\">الأخبار والفعاليات</a></div><div class=\"relative\"><a class=\"flex items-center gap-1 text-2xl btn-underline\" href=\"/ar/contact\">تواصل معنا</a></div></ul></div></nav><main><div class=\"flex flex-col gap-20 max-md:gap-15 max-sm:gap-10\"><div><div class=\"swiper\" dir=\"rtl\"><div class=\"swiper-wrapper\"><div class=\"swiper-slide\"><section class=\"w-full h-[435px] max-md:h-[350px] bg-white rounded-b-md overflow-hidden\"><div class=\"flex flex-row max-md:flex-col-reverse h-full\"> <div class=\"flex flex-col justify-center items-start px-32 max-lg:px-16 max-md:px-4 py-20 max-lg:py-16 max-md:py-5 text-start basis-1/2 gap-4 bg-center max-md:bg-none max-md:bg-[linear-gradient(180deg,_#ffffff80_0%,_#80b7b380_84.13%,_#60a5a080_90.62%,_#40938d80_99.99%)] bg-[url(/images/background.png),linear-gradient(90deg,_#FFFFFF_0%,_#80B7B3_84.13%,_#60A5A0_90.62%,_#40938D_99.99%)]\"><h1 class=\"text-3xl max-lg:text-2xl max-md:text-md max-sm:text-sm font-extrabold text-greeen-600 leading-snug\">لجنة تمديد الخدمة تعقد اجتماعها الثالث برئاسة وزير التنمية الإدارية</h1><a class=\"text-green2-400 font-medium underline max-sm:text-sm\" href=\"/news/bd491579-99a1-448d-a2b4-c2b3d4705c77\">اقرأ المزيد</a><div class=\"flex gap-4 \"><p class=\"text-white-400 text-lg max-md:text-md max-sm:text-sm\"></p></div></div><div class=\"w-full relative basis-1/2 max-md:basis-full\"><img alt=\"لجنة تمديد الخدمة تعقد اجتماعها الثالث برئاسة وزير التنمية الإدارية\" loading=\"lazy\" width=\"500\" height=\"435\" decoding=\"async\" data-nimg=\"1\" class=\"w-full h-full object-cover object-top\" style=\"color:transparent\" srcSet=\"/_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fservice_meeting1.jpg&amp;w=640&amp;q=75 1x, /_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fservice_meeting1.jpg&amp;w=1080&amp;q=75 2x\" src=\"/_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fservice_meeting1.jpg&amp;w=1080&amp;q=75\"/><div class=\"absolute max-md:hidden rotate-0 top-0 left-0 w-full h-full bg-[linear-gradient(to_left,_rgba(255,255,255,1)_0%,_rgba(255,255,255,0)_25%)]\"></div></div></div></section></div><div class=\"swiper-slide\"><section class=\"w-full h-[435px] max-md:h-[350px] bg-white rounded-b-md overflow-hidden\"><div class=\"flex flex-row max-md:flex-col-reverse h-full\"> <div class=\"flex flex-col justify-center items-start px-32 max-lg:px-16 max-md:px-4 py-20 max-lg:py-16 max-md:py-5 text-start basis-1/2 gap-4 bg-center max-md:bg-none max-md:bg-[linear-gradient(180deg,_#ffffff80_0%,_#80b7b380_84.13%,_#60a5a080_90.62%,_#40938d80_99.99%)] bg-[url(/images/background.png),linear-gradient(90deg,_#FFFFFF_0%,_#80B7B3_84.13%,_#60A5A0_90.62%,_#40938D_99.99%)]\"><h1 class=\"text-3xl max-lg:text-2xl max-md:text-md max-sm:text-sm font-extrabold text-greeen-600 leading-snug\">فتح باب التسجيل في ماجستير إدارة التحول الرقمي</h1><a class=\"text-green2-400 font-medium underline max-sm:text-sm\" href=\"/news/4664cf44-c11f-45e2-bada-2bd7c059900d\">اقرأ المزيد</a><div class=\"flex gap-4 \"><p class=\"text-white-400 text-lg max-md:text-md max-sm:text-sm\"></p></div></div><div class=\"w-full relative basis-1/2 max-md:basis-full\"><img alt=\"فتح باب التسجيل في ماجستير إدارة التحول الرقمي\" loading=\"lazy\" width=\"500\" height=\"435\" decoding=\"async\" data-nimg=\"1\" class=\"w-full h-full object-cover object-top\" style=\"color:transparent\" srcSet=\"/_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fdigital_master1.jpg&amp;w=640&amp;q=75 1x, /_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fdigital_master1.jpg&amp;w=1080&amp;q=75 2x\" src=\"/_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fdigital_master1.jpg&amp;w=1080&amp;q=75\"/><div class=\"absolute max-md:hidden rotate-0 top-0 left-0 w-full h-full bg-[linear-gradient(to_left,_rgba(255,255,255,1)_0%,_rgba(255,255,255,0)_25%)]\"></div></div></div></section></div><div class=\"swiper-slide\"><section class=\"w-full h-[435px] max-md:h-[350px] bg-white rounded-b-md overflow-hidden\"><div class=\"flex flex-row max-md:flex-col-reverse h-full\"> <div class=\"flex flex-col justify-center items-start px-32 max-lg:px-16 max-md:px-4 py-20 max-lg:py-16 max-md:py-5 text-start basis-1/2 gap-4 bg-center max-md:bg-none max-md:bg-[linear-gradient(180deg,_#ffffff80_0%,_#80b7b380_84.13%,_#60a5a080_90.62%,_#40938d80_99.99%)] bg-[url(/images/background.png),linear-gradient(90deg,_#FFFFFF_0%,_#80B7B3_84.13%,_#60A5A0_90.62%,_#40938D_99.99%)]\"><h1 class=\"text-3xl max-lg:text-2xl max-md:text-md max-sm:text-sm font-extrabold text-greeen-600 leading-snug\">دفعة جديدة من قادة التغيير... دبلوم الموارد البشرية</h1><a class=\"text-green2-400 font-medium underline max-sm:text-sm\" href=\"/news/c880be1a-fb29-43f6-8900-9904d3a9f17d\">اقرأ المزيد</a><div class=\"flex gap-4 \"><p class=\"text-white-400 text-lg max-md:text-md max-sm:text-sm\"></p></div></div><div class=\"w-full relative basis-1/2 max-md:basis-full\"><img alt=\"دفعة جديدة من قادة التغيير... دبلوم الموارد البشرية\" loading=\"lazy\" width=\"500\" height=\"435\" decoding=\"async\" data-nimg=\"1\" class=\"w-full h-full object-cover object-top\" style=\"color:transparent\" srcSet=\"/_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fhr_diploma1.jpg&amp;w=640&amp;q=75 1x, /_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fhr_diploma1.jpg&amp;w=1080&amp;q=75 2x\" src=\"/_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fhr_diploma1.jpg&amp;w=1080&amp;q=75\"/><div class=\"absolute max-md:hidden rotate-0 top-0 left-0 w-full h-full bg-[linear-gradient(to_left,_rgba(255,255,255,1)_0%,_rgba(255,255,255,0)_25%)]\"></div></div></div></section></div></div></div><div class=\"carousel-pagination mt-4 flex justify-center\"></div></div><section><div class=\"mb-6\"><div class=\"flex justify-between items-center gap-2\"><div></div><a class=\"text-3xl max-lg:text-xl max-md:text-lg max-sm:text-base text-[#09564B] font-normal underline\" href=\"/ministry/strategic-directions-map\">رؤية المزيد</a></div><div></div></div><div><div class=\"grid grid-cols-1 md:grid-cols-2 gap-6 \"><div class=\"flex flex-row-reverse text-[20px] bg-[#F7F7F7] rounded-lg overflow-hidden hover:bg-green2-300/25 transition-all duration-500 undefined\"><div class=\"w-full px-6 py-4 grid\"><h3 class=\"text-2xl max-lg:text-xl max-md:text-lg max-sm:text-base font-bold text-[#155A55] mb-2\">الرؤية</h3><p class=\"text-base max-md:text-sm leading-relaxed text-green3-500\">منظومة إدارية رائدة ومتميزة، بموارد بشرية مؤهلة وكفاءات تمكن المؤسسات الحكومية في سوريا الجديدة من تحقيق التنمية المستدامة.</p></div><div class=\"w-[100px] bg-greeen-300\"></div></div><div class=\"flex flex-row-reverse text-[20px] bg-[#F7F7F7] rounded-lg overflow-hidden hover:bg-green2-300/25 transition-all duration-500 undefined\"><div class=\"w-full px-6 py-4 grid\"><h3 class=\"text-2xl max-lg:text-xl max-md:text-lg max-sm:text-base font-bold text-[#155A55] mb-2\">الرسالة</h3><p class=\"text-base max-md:text-sm leading-relaxed text-green3-500\">قيادة جهود التحديث المؤسسي عبر تطوير أنظمة الخدمة المدنية، وتمكين الكفاءات الوظيفية، وتوظيف التكنولوجيا الإدارية لرفع كفاءة الأداء وتحقيق النماذج والريادة لضمان مؤسسات حكومية فعالة.</p></div><div class=\"w-[100px] bg-greeen-300\"></div></div></div></div></section><section><div class=\"mb-6\"><div class=\"flex justify-between items-center gap-2\"><div><h2 class=\"text-4xl max-lg:text-2xl max-md:text-xl max-sm:text-lg\">آخر الأخبار</h2></div><a class=\"text-3xl max-lg:text-xl max-md:text-lg max-sm:text-base text-[#09564B] font-normal underline\" href=\"/news\">رؤية المزيد</a></div><p class=\"text-xl max-lg:text-lg max-md:text-base max-sm:text-sm text-gray-500\">تعرف على آخر الأخبار والفعاليات والاعلانات لوزارة الموارد البشرية والتنمية الاجتماعية</p></div><div><div class=\"grid md:grid-cols-3 gap-4\"><div class=\"flex flex-col gap-4 rounded-xl overflow-hidden border border-[#BBBBBB] p-2\"><img alt=\"دعوة لزيارة جناح الوزارة في معرض سيريا هايتك 2025\" loading=\"lazy\" width=\"500\" height=\"500\" decoding=\"async\" data-nimg=\"1\" class=\"w-full h-[250px] rounded-xl object-cover object-top\" style=\"color:transparent\" srcSet=\"/_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2FHighTech.jpg&amp;w=640&amp;q=75 1x, /_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2FHighTech.jpg&amp;w=1080&amp;q=75 2x\" src=\"/_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2FHighTech.jpg&amp;w=1080&amp;q=75\"/><div class=\"flex items-center justify-start gap-2 \"><h3 class=\"text-2xl max-lg:text-xl max-md:text-lg max-sm:text-base font-semibold\">دعوة لزيارة جناح الوزارة في معرض سيريا هايتك 2025</h3></div><p class=\"text-xl max-lg:text-lg max-md:text-base max-sm:text-sm font-medium line-clamp-2\">دعماً للتحول الرقمي في المؤسسات، وتماشياً مع الثورة المعلوماتية العصرية،\\nتدعوكم وزارة التنمية الإدارية في الجمهورية العربية السورية لزيارة جناحها الخاص في معرض &quot;سيريا هايتك&quot; لتكنولوجيا المعلومات والاتصالات بنسخته الحادية عشر، المقام في مدينة المعارض بدمشق.\\n\\nوذلك ابتداءً من يوم الخميس الموافق 20/11/2025 حتى يوم الإثنين الموافق 24/11/2025.\\n\\nكونوا معنا، لاكتساب فرصةٍ للتعرف وتبادل الخبرات وبناء شراكاتٍ تنموية تكنولوجية، لتصبحوا جزءاً من البناء التقدمي الحضاري الحديث.</p><div class=\"flex justify-end\"><button class=\"\\n border border-white-100\\n text-green2-400\\n hover:bg-green2-400 hover:text-white-50\\n transition-all duration-500\\n py-2 rounded-md\\n font-normal flex items-center justify-center gap-2 text-base\\n text-center\\n text-lg max-lg:text-base max-md:text-sm font-bold px-6 py-3\\n \">اقرأ الخبر<svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[16px]\" height=\"1em\" width=\"1em\" xmlns=\"http://www.w3.org/2000/svg\"><line x1=\"19\" y1=\"12\" x2=\"5\" y2=\"12\"></line><polyline points=\"12 19 5 12 12 5\"></polyline></svg></button></div></div><div class=\"flex flex-col gap-4 rounded-xl overflow-hidden border border-[#BBBBBB] p-2\"><img alt=\"فرصة إضافية للإبداع: تمديد التقديم في مبادرة أفضل فكرة حكومية\" loading=\"lazy\" width=\"500\" height=\"500\" decoding=\"async\" data-nimg=\"1\" class=\"w-full h-[250px] rounded-xl object-cover object-top\" style=\"color:transparent\" srcSet=\"/_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fbest_idea.jpg&amp;w=640&amp;q=75 1x, /_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fbest_idea.jpg&amp;w=1080&amp;q=75 2x\" src=\"/_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fbest_idea.jpg&amp;w=1080&amp;q=75\"/><div class=\"flex items-center justify-start gap-2 \"><h3 class=\"text-2xl max-lg:text-xl max-md:text-lg max-sm:text-base font-semibold\">فرصة إضافية للإبداع: تمديد التقديم في مبادرة أفضل فكرة حكومية</h3></div><p class=\"text-xl max-lg:text-lg max-md:text-base max-sm:text-sm font-medium line-clamp-2\">إيماناً بضرورة توفير مساحة أوسع للإبداع الحكومي، ونظراً للطلبات العديدة الواردة من مديريات التنمية الإدارية في الوزارات والمحافظات، وحرصاً من وزارة التنمية الإدارية على إتاحة الفرصة لأكبر عدد من الزملاء لتقديم مقترحاتهم التطويرية…\\n\\nيسرّ الوزارة أن تعلن عن تمديد فترة استقبال الأفكار ضمن مبادرة “أفضل فكرة حكومية” وذلك حتى نهاية الشهر الحالي.\\n\\nتهدف المبادرة إلى تمكين العاملين في مديريات التنمية الإدارية من تقديم أفكار عملية وقابلة للتطبيق، تُسهم في دعم مسارات التحول المؤسسي الشامل ورفع كفاءة الأداء داخل المؤسسات العامة.\\n\\nهذا هو الوقت الأمثل للمشاركة.. فكرتك قد تكون الشرارة الأولى لابتكار مؤسسي حقيقي.\\n\\nالتقديم متاح عبر الرابط:\\nhttps://cloud.moad.gov.sy/apps/forms/s/yG59EFrcxfMGjMLEnyqD5kLm</p><div class=\"flex justify-end\"><button class=\"\\n border border-white-100\\n text-green2-400\\n hover:bg-green2-400 hover:text-white-50\\n transition-all duration-500\\n py-2 rounded-md\\n font-normal flex items-center justify-center gap-2 text-base\\n text-center\\n text-lg max-lg:text-base max-md:text-sm font-bold px-6 py-3\\n \">اقرأ الخبر<svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[16px]\" height=\"1em\" width=\"1em\" xmlns=\"http://www.w3.org/2000/svg\"><line x1=\"19\" y1=\"12\" x2=\"5\" y2=\"12\"></line><polyline points=\"12 19 5 12 12 5\"></polyline></svg></button></div></div><div class=\"flex flex-col gap-4 rounded-xl overflow-hidden border border-[#BBBBBB] p-2\"><img alt=\"مديرية التنمية الإدارية بإدلب تنفذ تدريباً حول اتخاذ القرار وحل المشكلات\" loading=\"lazy\" width=\"500\" height=\"500\" decoding=\"async\" data-nimg=\"1\" class=\"w-full h-[250px] rounded-xl object-cover object-top\" style=\"color:transparent\" srcSet=\"/_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fdecision_training.jpeg&amp;w=640&amp;q=75 1x, /_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fdecision_training.jpeg&amp;w=1080&amp;q=75 2x\" src=\"/_next/image?url=https%3A%2F%2Fapi.moad.gov.sy%2Fuploads%2Fupload%2Fnews%2Fdecision_training.jpeg&amp;w=1080&amp;q=75\"/><div class=\"flex items-center justify-start gap-2 \"><h3 class=\"text-2xl max-lg:text-xl max-md:text-lg max-sm:text-base font-semibold\">مديرية التنمية الإدارية بإدلب تنفذ تدريباً حول اتخاذ القرار وحل المشكلات</h3></div><p class=\"text-xl max-lg:text-lg max-md:text-base max-sm:text-sm font-medium line-clamp-2\">نفذت مديرية التنمية الإدارية في إدلب دورة تدريبية بعنوان: &quot;اتخاذ القرار وحل المشكلات&quot;، بهدف تزويد المتدربين بالمهارات والأساليب الفعّالة لاتخاذ القرارات وحل المشكلات بطريقة منطقية ومنظمة.\\n\\nوتناول التدريب محاور متعددة منها: العوامل المؤثرة في عملية اتخاذ القرار، نظريات اتخاذ القرار، إيجابيات وسلبيات القرار، ومراحل اتخاذه، وذلك ضمن جهود المديرية لتعزيز قدرات الكوادر في الإدارة والتخطيط الفعّال.</p><div class=\"flex justify-end\"><button class=\"\\n border border-white-100\\n text-green2-400\\n hover:bg-green2-400 hover:text-white-50\\n transition-all duration-500\\n py-2 rounded-md\\n font-normal flex items-center justify-center gap-2 text-base\\n text-center\\n text-lg max-lg:text-base max-md:text-sm font-bold px-6 py-3\\n \">اقرأ الخبر<svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[16px]\" height=\"1em\" width=\"1em\" xmlns=\"http://www.w3.org/2000/svg\"><line x1=\"19\" y1=\"12\" x2=\"5\" y2=\"12\"></line><polyline points=\"12 19 5 12 12 5\"></polyline></svg></button></div></div></div></div></section><section><div class=\"mb-6\"><div class=\"flex justify-between items-center gap-2\"><div><h2 class=\"text-4xl max-lg:text-2xl max-md:text-xl max-sm:text-lg\">لمحة عن الوزير</h2></div></div><div></div></div><div><div class=\"flex flex-col md:flex-row w-full md:align-stretch overflow-hidden mt-6 relative\" style=\"min-height:400px\"><div class=\"w-full md:w-1/2 flex flex-col justify-center p-6 lg:p-12 text-bw-black bg-[url(/images/background.png),linear-gradient(90deg,_#DFEDEC_21.03%,_#D7E9E7_26.29%,_#D3E6E5_28.92%,_#D1E5E4_30.24%,_#CFE4E3_31.55%,_#BFDBD9_42.07%,_#80B7B3_84.13%,_#60A5A0_90.62%,_#40938D_99.99%)] rounded-r-xl max-md:rounded-r-none\"><div class=\"text-3xl font-medium grid gap-10 \"><p class=\"text-2xl max-lg:text-xl max-md:text-lg max-sm:text-base font-medium\">الأستاذ <strong>محمد حسان سكاف</strong> (مواليد 1990) — وزير التنمية الإدارية، تولى المنصب في 29 مارس 2025.</p><p class=\"text-2xl max-lg:text-xl max-md:text-lg max-sm:text-base font-medium\">حاصل على بكالوريوس في الرياضيات التطبيقية وماجستير مهني في الإدارة (امتياز) من جامعة إدلب.</p><p class=\"text-2xl max-lg:text-xl max-md:text-lg max-sm:text-base font-medium\">يتميز بخبرة إدارية واسعة بعد شغل عدة مناصب قيادية في حكومة الإنقاذ السورية، ما يؤهله لقيادة عملية تطوير هيكلية وإدارية فعالة.</p></div></div><div class=\"relative w-full md:w-1/2 overflow-hidden flex justify-center items-center bg-black\"><img alt=\"Hero\" loading=\"lazy\" width=\"400\" height=\"400\" decoding=\"async\" data-nimg=\"1\" class=\"flex object-cover w-full h-full max-md:h-[300px] rounded-l-xl max-md:rounded-l-none\" style=\"color:transparent\" srcSet=\"/_next/image?url=%2Fimages%2Fminister.png&amp;w=640&amp;q=75 1x, /_next/image?url=%2Fimages%2Fminister.png&amp;w=828&amp;q=75 2x\" src=\"/_next/image?url=%2Fimages%2Fminister.png&amp;w=828&amp;q=75\"/></div><div class=\"absolute left-0 top-0 bottom-0 right-0 w-full h-full\"><div class=\"w-full h-full\"><svg width=\"1324\" height=\"631\" viewBox=\"0 0 1324 631\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g filter=\"url(#filter0_f_419_8509)\"><path d=\"M662 100C592.513 100 525.873 122.915 476.738 163.704C427.603 204.493 400 259.815 400 317.5C400 375.185 427.603 430.507 476.738 471.296C525.873 512.085 592.513 535 662 535C731.487 535 798.127 512.085 847.262 471.296C896.397 430.507 924 375.185 924 317.5C924 259.815 896.397 204.493 847.262 163.704C798.127 122.915 731.487 100 662 100ZM807.442 330.02C804.218 333.54 799.75 336.137 794.662 337.446L753.508 348.905C740.933 352.473 729.488 358.348 720.023 366.093C710.622 373.903 703.535 383.419 699.319 393.89L685.26 428.054C683.369 431.906 680.282 435.274 676.314 437.815C672.07 440.367 666.984 441.774 661.744 441.846C656.478 441.911 651.341 440.489 647.175 437.815C642.924 435.281 639.712 431.726 637.973 427.629L624.425 393.466C620.215 382.958 613.097 373.415 603.642 365.603C594.187 357.79 582.658 351.926 569.98 348.48L529.083 337.234C524.148 335.79 519.865 333.124 516.814 329.595C513.627 326.121 511.919 321.867 511.957 317.5C511.991 313.078 513.689 308.775 516.814 305.193C519.749 301.753 523.973 299.216 528.827 297.978L569.98 286.52C582.702 282.943 594.311 277.074 603.977 269.332C613.434 261.396 620.515 251.72 624.681 241.11L638.484 207.583C640.016 203.568 642.952 200.023 646.919 197.398C650.996 194.54 656.153 192.962 661.489 192.941C666.56 192.869 671.543 194.051 675.803 196.337C680.301 198.658 683.724 202.172 685.516 206.31L699.319 240.898C703.613 251.571 710.77 261.29 720.279 269.332C729.886 277.031 741.4 282.896 754.02 286.52L795.173 298.402C800.063 299.696 804.292 302.31 807.186 305.829C810.17 309.377 811.775 313.598 811.787 317.924C811.762 322.211 810.254 326.412 807.442 330.02Z\" fill=\"white\"></path></g><defs><filter id=\"filter0_f_419_8509\" x=\"0\" y=\"-300\" width=\"1324\" height=\"1235\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"></feFlood><feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"></feBlend><feGaussianBlur stdDeviation=\"200\" result=\"effect1_foregroundBlur_419_8509\"></feGaussianBlur></filter></defs></svg></div></div></div></div></section></div><!--$--><!--/$--></main><footer class=\"bg-green2-400 text-white-50 py-10 rounded-xl my-10 bg-[url(/images/background.svg)] bg-repeat bg-center\"><div class=\"px-6\"><div class=\"grid grid-cols-1 md:grid-cols-4 gap-8\"><div><h4 class=\"text-xl max-md:text-xl max-sm:text-lg font-bold pb-4 mb-4 border-b-4 border-white-50\">نظرة عامة</h4><ul class=\"space-y-2 max-sm:space-y-1 flex flex-col gap-4 max-md:gap-3 max-sm:gap-2\"><li><a class=\"text-xl max-md:text-xl max-sm:text-lg font-medium hover:text-white btn-underline\" href=\"/ministry/about\">عن الوزارة</a></li><li><a class=\"text-xl max-md:text-xl max-sm:text-lg font-medium hover:text-white btn-underline\" href=\"/legislation\">التشريعات والأدلة</a></li><li><a class=\"text-xl max-md:text-xl max-sm:text-lg font-medium hover:text-white btn-underline\" href=\"/news\">الأخبار والفعاليات</a></li></ul></div><div><h4 class=\"text-xl max-md:text-xl max-sm:text-lg font-bold pb-4 mb-4 border-b-4 border-white-50\">الدعم والمساعدة</h4><ul class=\"space-y-2 max-sm:space-y-1 flex flex-col gap-4 max-md:gap-3 max-sm:gap-2\"><li><a class=\"text-xl max-md:text-xl max-sm:text-lg font-medium hover:text-white btn-underline\" href=\"mailto:info@moad.gov.sy\">البريد الإلكتروني الرسمي للوزارة</a></li><li><a class=\"text-xl max-md:text-xl max-sm:text-lg font-medium hover:text-white btn-underline\" href=\"/contact/faq\">الأسئلة الشائعة</a></li><li><a class=\"text-xl max-md:text-xl max-sm:text-lg font-medium hover:text-white btn-underline\" href=\"/contact\">تقديم شكوى</a></li></ul></div><div><h4 class=\"text-xl max-md:text-xl max-sm:text-lg font-bold pb-4 mb-4 border-b-4 border-white-50\">روابط مهمة</h4><ul class=\"space-y-2 max-sm:space-y-1 flex flex-col gap-4 max-md:gap-3 max-sm:gap-2\"><li><a class=\"text-xl max-md:text-xl max-sm:text-lg font-medium hover:text-white btn-underline\" href=\"https://mofaex.gov.sy/\">وزارة الخارجية</a></li><li><a class=\"text-xl max-md:text-xl max-sm:text-lg font-medium hover:text-white btn-underline\" href=\"https://moia.gov.sy/\">وزارة الداخلية</a></li><li><a class=\"text-xl max-md:text-xl max-sm:text-lg font-medium hover:text-white btn-underline\" href=\"https://sana.sy/\">وكالة سانا</a></li></ul></div><div><h4 class=\"text-xl max-md:text-xl max-sm:text-lg font-bold pb-4 mb-4 border-b-4 border-white-50\">تابعنا على</h4><div class=\"flex max-sm:justify-center gap-6 max-md:gap-4 max-sm:gap-3\"><div class=\"grid justify-center items-center gap-1\"><a href=\"https://t.me/SyMOAD\" target=\"_blank\" class=\"hover:text-white flex flex-col justify-center items-center\"><div class=\"w-[40px] h-[40px] flex justify-center items-center bg-[#FFFFFF] rounded-2xl\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[#2F363D]\" height=\"24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><line x1=\"22\" y1=\"2\" x2=\"11\" y2=\"13\"></line><polygon points=\"22 2 15 22 11 13 2 9 22 2\"></polygon></svg></div><p class=\"font-light\">تلغرام</p></a></div><div class=\"grid justify-center items-center gap-1\"><a href=\"https://www.facebook.com/share/1CV6tZC2yh/\" target=\"_blank\" class=\"hover:text-white flex flex-col justify-center items-center\"><div class=\"w-[40px] h-[40px] flex justify-center items-center bg-[#FFFFFF] rounded-2xl\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[#2F363D]\" height=\"24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M18 2h-3a5 5 0 0 0-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 0 1 1-1h3z\"></path></svg></div><p class=\"font-light\">فيسبوك</p></a></div><div class=\"grid justify-center items-center gap-1\"><a href=\"https://www.linkedin.com/company/symoad/\" target=\"_blank\" class=\"hover:text-white flex flex-col justify-center items-center\"><div class=\"w-[40px] h-[40px] flex justify-center items-center bg-[#FFFFFF] rounded-2xl\"><svg stroke=\"currentColor\" fill=\"none\" stroke-width=\"2\" viewBox=\"0 0 24 24\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"text-[#2F363D]\" height=\"24\" width=\"24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M16 8a6 6 0 0 1 6 6v7h-4v-7a2 2 0 0 0-2-2 2 2 0 0 0-2 2v7h-4v-7a6 6 0 0 1 6-6z\"></path><rect x=\"2\" y=\"9\" width=\"4\" height=\"12\"></rect><circle cx=\"4\" cy=\"4\" r=\"2\"></circle></svg></div><p class=\"font-light\">لينكدين</p></a></div></div></div></div><div class=\"mt-10\"><div class=\"flex flex-col md:flex-row justify-between items-center \"><div class=\"w-1/3 max-md:w-full\"></div><div class=\"flex flex-col items-center justify-center w-1/3 max-md:w-full -mb-12 max-md:mb-4 gap-3 text-center\"><div class=\"flex gap-8 max-md:gap-4 max-sm:gap-3 text-base\"><a class=\"text-xl max-md:text-lg max-sm:text-base font-bold hover:text-white transition-colors duration-200 underline\" href=\"/ar/privacy-policy\">سياسة الخصوصية</a><a class=\"text-xl max-md:text-lg max-sm:text-base font-bold hover:text-white transition-colors duration-200 underline\" href=\"/ar/terms-conditions\">الشروط والأحكام</a></div><p class=\"text-base font-bold mt-1\">جميع الحقوق محفوظة لوزارة التنمية الإدارية</p></div><div class=\"mb-4 md:mb-0 w-1/3 max-md:w-full flex justify-end\"><img alt=\"Ministry Logo\" loading=\"lazy\" width=\"118\" height=\"118\" decoding=\"async\" data-nimg=\"1\" class=\"h-[118px] w-auto object-contain object-center\" style=\"color:transparent\" srcSet=\"/_next/image?url=%2Fimages%2Ffooter-logo.png&amp;w=128&amp;q=75 1x, /_next/image?url=%2Fimages%2Ffooter-logo.png&amp;w=256&amp;q=75 2x\" src=\"/_next/image?url=%2Fimages%2Ffooter-logo.png&amp;w=256&amp;q=75\"/></div></div></div></div></footer></div><script src=\"/_next/static/chunks/c62b4372c26b460f.js\" id=\"_R_\" async=\"\"></script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,\"1:\\\\\"$Sreact.fragment\\\\\"\\\\n2:I[39756,[\\\\\"/_next/static/chunks/ff1a16fafef87110.js\\\\\",\\\\\"/_next/static/chunks/7dd66bdf8a7e5707.js\\\\\"],\\\\\"default\\\\\"]\\\\n3:I[37457,[\\\\\"/_next/static/chunks/ff1a16fafef87110.js\\\\\",\\\\\"/_next/static/chunks/7dd66bdf8a7e5707.js\\\\\"],\\\\\"default\\\\\"]\\\\n6:I[97367,[\\\\\"/_next/static/chunks/ff1a16fafef87110.js\\\\\",\\\\\"/_next/static/chunks/7dd66bdf8a7e5707.js\\\\\"],\\\\\"OutletBoundary\\\\\"]\\\\n8:I[11533,[\\\\\"/_next/static/chunks/ff1a16fafef87110.js\\\\\",\\\\\"/_next/static/chunks/7dd66bdf8a7e5707.js\\\\\"],\\\\\"AsyncMetadataOutlet\\\\\"]\\\\na:I[97367,[\\\\\"/_next/static/chunks/ff1a16fafef87110.js\\\\\",\\\\\"/_next/static/chunks/7dd66bdf8a7e5707.js\\\\\"],\\\\\"ViewportBoundary\\\\\"]\\\\nc:I[97367,[\\\\\"/_next/static/chunks/ff1a16fafef87110.js\\\\\",\\\\\"/_next/static/chunks/7dd66bdf8a7e5707.js\\\\\"],\\\\\"MetadataBoundary\\\\\"]\\\\nd:\\\\\"$Sreact.suspense\\\\\"\\\\nf:I[68027,[],\\\\\"default\\\\\"]\\\\n:HL[\\\\\"/_next/static/chunks/93a75f8697bed459.css\\\\\",\\\\\"style\\\\\"]\\\\n:HL[\\\\\"/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2\\\\\",\\\\\"font\\\\\",{\\\\\"crossOrigin\\\\\":\\\\\"\\\\\",\\\\\"type\\\\\":\\\\\"font/woff2\\\\\"}]\\\\n:HL[\\\\\"/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2\\\\\",\\\\\"font\\\\\",{\\\\\"crossOrigin\\\\\":\\\\\"\\\\\",\\\\\"type\\\\\":\\\\\"font/woff2\\\\\"}]\\\\n:HL[\\\\\"/_next/static/chunks/26aadce5fd59ec76.css\\\\\",\\\\\"style\\\\\"]\\\\n:HL[\\\\\"/_next/static/chunks/583da39e249ac873.css\\\\\",\\\\\"style\\\\\"]\\\\n:HL[\\\\\"/_next/static/chunks/3b7e36929d6adf27.css\\\\\",\\\\\"style\\\\\"]\\\\n\"])</script><script>self.__next_f.push([1,\"0:{\\\\\"P\\\\\":null,\\\\\"b\\\\\":\\\\\"3M1Akw2Hb07_PYlfcnWW1\\\\\",\\\\\"p\\\\\":\\\\\"\\\\\",\\\\\"c\\\\\":[\\\\\"\\\\\",\\\\\"ar\\\\\"],\\\\\"i\\\\\":false,\\\\\"f\\\\\":[[[\\\\\"\\\\\",{\\\\\"children\\\\\":[[\\\\\"locale\\\\\",\\\\\"ar\\\\\",\\\\\"d\\\\\"],{\\\\\"children\\\\\":[\\\\\"__PAGE__\\\\\",{}]},\\\\\"$undefined\\\\\",\\\\\"$undefined\\\\\",true]}],[\\\\\"\\\\\",[\\\\\"$\\\\\",\\\\\"$1\\\\\",\\\\\"c\\\\\",{\\\\\"children\\\\\":[null,[\\\\\"$\\\\\",\\\\\"$L2\\\\\",null,{\\\\\"parallelRouterKey\\\\\":\\\\\"children\\\\\",\\\\\"error\\\\\":\\\\\"$undefined\\\\\",\\\\\"errorStyles\\\\\":\\\\\"$undefined\\\\\",\\\\\"errorScripts\\\\\":\\\\\"$undefined\\\\\",\\\\\"template\\\\\":[\\\\\"$\\\\\",\\\\\"$L3\\\\\",null,{}],\\\\\"templateStyles\\\\\":\\\\\"$undefined\\\\\",\\\\\"templateScripts\\\\\":\\\\\"$undefined\\\\\",\\\\\"notFound\\\\\":[[[\\\\\"$\\\\\",\\\\\"title\\\\\",null,{\\\\\"children\\\\\":\\\\\"404: This page could not be found.\\\\\"}],[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"style\\\\\":{\\\\\"fontFamily\\\\\":\\\\\"system-ui,\\\\\\\\\\\\\"Segoe UI\\\\\\\\\\\\\",Roboto,Helvetica,Arial,sans-serif,\\\\\\\\\\\\\"Apple Color Emoji\\\\\\\\\\\\\",\\\\\\\\\\\\\"Segoe UI Emoji\\\\\\\\\\\\\"\\\\\",\\\\\"height\\\\\":\\\\\"100vh\\\\\",\\\\\"textAlign\\\\\":\\\\\"center\\\\\",\\\\\"display\\\\\":\\\\\"flex\\\\\",\\\\\"flexDirection\\\\\":\\\\\"column\\\\\",\\\\\"alignItems\\\\\":\\\\\"center\\\\\",\\\\\"justifyContent\\\\\":\\\\\"center\\\\\"},\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"style\\\\\",null,{\\\\\"dangerouslySetInnerHTML\\\\\":{\\\\\"__html\\\\\":\\\\\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\\\\\"}}],[\\\\\"$\\\\\",\\\\\"h1\\\\\",null,{\\\\\"className\\\\\":\\\\\"next-error-h1\\\\\",\\\\\"style\\\\\":{\\\\\"display\\\\\":\\\\\"inline-block\\\\\",\\\\\"margin\\\\\":\\\\\"0 20px 0 0\\\\\",\\\\\"padding\\\\\":\\\\\"0 23px 0 0\\\\\",\\\\\"fontSize\\\\\":24,\\\\\"fontWeight\\\\\":500,\\\\\"verticalAlign\\\\\":\\\\\"top\\\\\",\\\\\"lineHeight\\\\\":\\\\\"49px\\\\\"},\\\\\"children\\\\\":404}],[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"style\\\\\":{\\\\\"display\\\\\":\\\\\"inline-block\\\\\"},\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"h2\\\\\",null,{\\\\\"style\\\\\":{\\\\\"fontSize\\\\\":14,\\\\\"fontWeight\\\\\":400,\\\\\"lineHeight\\\\\":\\\\\"49px\\\\\",\\\\\"margin\\\\\":0},\\\\\"children\\\\\":\\\\\"This page could not be found.\\\\\"}]}]]}]}]],[]],\\\\\"forbidden\\\\\":\\\\\"$undefined\\\\\",\\\\\"unauthorized\\\\\":\\\\\"$undefined\\\\\"}]]}],{\\\\\"children\\\\\":[[\\\\\"locale\\\\\",\\\\\"ar\\\\\",\\\\\"d\\\\\"],[\\\\\"$\\\\\",\\\\\"$1\\\\\",\\\\\"c\\\\\",{\\\\\"children\\\\\":[[[\\\\\"$\\\\\",\\\\\"link\\\\\",\\\\\"0\\\\\",{\\\\\"rel\\\\\":\\\\\"stylesheet\\\\\",\\\\\"href\\\\\":\\\\\"/_next/static/chunks/93a75f8697bed459.css\\\\\",\\\\\"precedence\\\\\":\\\\\"next\\\\\",\\\\\"crossOrigin\\\\\":\\\\\"$undefined\\\\\",\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-0\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-1\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-2\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-3\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-4\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}]],\\\\\"$L4\\\\\"]}],{\\\\\"children\\\\\":[\\\\\"__PAGE__\\\\\",[\\\\\"$\\\\\",\\\\\"$1\\\\\",\\\\\"c\\\\\",{\\\\\"children\\\\\":[\\\\\"$L5\\\\\",[[\\\\\"$\\\\\",\\\\\"link\\\\\",\\\\\"0\\\\\",{\\\\\"rel\\\\\":\\\\\"stylesheet\\\\\",\\\\\"href\\\\\":\\\\\"/_next/static/chunks/26aadce5fd59ec76.css\\\\\",\\\\\"precedence\\\\\":\\\\\"next\\\\\",\\\\\"crossOrigin\\\\\":\\\\\"$undefined\\\\\",\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"link\\\\\",\\\\\"1\\\\\",{\\\\\"rel\\\\\":\\\\\"stylesheet\\\\\",\\\\\"href\\\\\":\\\\\"/_next/static/chunks/583da39e249ac873.css\\\\\",\\\\\"precedence\\\\\":\\\\\"next\\\\\",\\\\\"crossOrigin\\\\\":\\\\\"$undefined\\\\\",\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"link\\\\\",\\\\\"2\\\\\",{\\\\\"rel\\\\\":\\\\\"stylesheet\\\\\",\\\\\"href\\\\\":\\\\\"/_next/static/chunks/3b7e36929d6adf27.css\\\\\",\\\\\"precedence\\\\\":\\\\\"next\\\\\",\\\\\"crossOrigin\\\\\":\\\\\"$undefined\\\\\",\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-0\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/9de9312a0a268785.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-1\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/64968448ae75aa67.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-2\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/8845389a49c42702.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}]],[\\\\\"$\\\\\",\\\\\"$L6\\\\\",null,{\\\\\"children\\\\\":[\\\\\"$L7\\\\\",[\\\\\"$\\\\\",\\\\\"$L8\\\\\",null,{\\\\\"promise\\\\\":\\\\\"$@9\\\\\"}]]}]]}],{},null,false]},null,false]},null,false],[\\\\\"$\\\\\",\\\\\"$1\\\\\",\\\\\"h\\\\\",{\\\\\"children\\\\\":[null,[[\\\\\"$\\\\\",\\\\\"$La\\\\\",null,{\\\\\"children\\\\\":\\\\\"$Lb\\\\\"}],[\\\\\"$\\\\\",\\\\\"meta\\\\\",null,{\\\\\"name\\\\\":\\\\\"next-size-adjust\\\\\",\\\\\"content\\\\\":\\\\\"\\\\\"}]],[\\\\\"$\\\\\",\\\\\"$Lc\\\\\",null,{\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"hidden\\\\\":true,\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"$d\\\\\",null,{\\\\\"fallback\\\\\":null,\\\\\"children\\\\\":\\\\\"$Le\\\\\"}]}]}]]}],false]],\\\\\"m\\\\\":\\\\\"$undefined\\\\\",\\\\\"G\\\\\":[\\\\\"$f\\\\\",[]],\\\\\"s\\\\\":false,\\\\\"S\\\\\":true}\\\\n\"])</script><script>self.__next_f.push([1,\"4:[\\\\\"$\\\\\",\\\\\"html\\\\\",null,{\\\\\"lang\\\\\":\\\\\"ar\\\\\",\\\\\"dir\\\\\":\\\\\"rtl\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"head\\\\\",null,{\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"link\\\\\",null,{\\\\\"rel\\\\\":\\\\\"apple-touch-icon\\\\\",\\\\\"sizes\\\\\":\\\\\"180x180\\\\\",\\\\\"href\\\\\":\\\\\"/favicon/apple-touch-icon.png\\\\\"}],[\\\\\"$\\\\\",\\\\\"link\\\\\",null,{\\\\\"rel\\\\\":\\\\\"icon\\\\\",\\\\\"type\\\\\":\\\\\"image/png\\\\\",\\\\\"sizes\\\\\":\\\\\"32x32\\\\\",\\\\\"href\\\\\":\\\\\"/favicon/favicon-32x32.png\\\\\"}],[\\\\\"$\\\\\",\\\\\"link\\\\\",null,{\\\\\"rel\\\\\":\\\\\"icon\\\\\",\\\\\"type\\\\\":\\\\\"image/png\\\\\",\\\\\"sizes\\\\\":\\\\\"16x16\\\\\",\\\\\"href\\\\\":\\\\\"/favicon/favicon-16x16.png\\\\\"}],[\\\\\"$\\\\\",\\\\\"link\\\\\",null,{\\\\\"rel\\\\\":\\\\\"manifest\\\\\",\\\\\"href\\\\\":\\\\\"/favicon/site.webmanifest\\\\\"}]]}],[\\\\\"$\\\\\",\\\\\"body\\\\\",null,{\\\\\"children\\\\\":\\\\\"$L10\\\\\"}]]}]\\\\n\"])</script><script>self.__next_f.push([1,\"b:[[\\\\\"$\\\\\",\\\\\"meta\\\\\",\\\\\"0\\\\\",{\\\\\"charSet\\\\\":\\\\\"utf-8\\\\\"}],[\\\\\"$\\\\\",\\\\\"meta\\\\\",\\\\\"1\\\\\",{\\\\\"name\\\\\":\\\\\"viewport\\\\\",\\\\\"content\\\\\":\\\\\"width=device-width, initial-scale=1\\\\\"}]]\\\\n7:null\\\\n\"])</script><script>self.__next_f.push([1,\"11:I[75696,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n\"])</script><script>self.__next_f.push([1,\"10:[\\\\\"$\\\\\",\\\\\"$L11\\\\\",null,{\\\\\"formats\\\\\":\\\\\"$undefined\\\\\",\\\\\"locale\\\\\":\\\\\"ar\\\\\",\\\\\"messages\\\\\":{\\\\\"home\\\\\":{\\\\\"title\\\\\":\\\\\"الصفحة الرئيسية\\\\\"},\\\\\"magazine\\\\\":{\\\\\"title\\\\\":\\\\\"صفحة المجلة\\\\\"},\\\\\"navigation\\\\\":{\\\\\"home\\\\\":\\\\\"الرئيسية\\\\\",\\\\\"magazine\\\\\":\\\\\"المجلة\\\\\"},\\\\\"news\\\\\":{\\\\\"noNewsFound\\\\\":\\\\\"لا يوجد أخبار\\\\\",\\\\\"readMore\\\\\":\\\\\"اقرأ المزيد\\\\\",\\\\\"readArticle\\\\\":\\\\\"اقرأ الخبر\\\\\",\\\\\"title\\\\\":\\\\\"تعرف على آخر الأخبار\\\\\",\\\\\"filter\\\\\":{\\\\\"title\\\\\":\\\\\"تصفية\\\\\",\\\\\"all\\\\\":\\\\\"الكل\\\\\",\\\\\"local\\\\\":\\\\\"المحلي\\\\\",\\\\\"international\\\\\":\\\\\"الدولي\\\\\"},\\\\\"sort\\\\\":{\\\\\"title\\\\\":\\\\\"ترتيب حسب\\\\\",\\\\\"newest\\\\\":\\\\\"الأحدث\\\\\",\\\\\"oldest\\\\\":\\\\\"الأقدم\\\\\",\\\\\"most-viewed\\\\\":\\\\\"الأكثر مشاهدة\\\\\",\\\\\"least-viewed\\\\\":\\\\\"الأقل مشاهدة\\\\\",\\\\\"asc\\\\\":\\\\\"التاريخ (تصاعدي)\\\\\",\\\\\"desc\\\\\":\\\\\"التاريخ (تنازلي)\\\\\"},\\\\\"latestNews\\\\\":{\\\\\"title\\\\\":\\\\\"آخر الأخبار\\\\\",\\\\\"subtitle\\\\\":\\\\\"تعرف على آخر الأخبار والفعاليات والاعلانات لوزارة الموارد البشرية والتنمية الاجتماعية\\\\\"}},\\\\\"minister\\\\\":{\\\\\"overview\\\\\":{\\\\\"title\\\\\":\\\\\"لمحة عن الوزير\\\\\"},\\\\\"about\\\\\":{\\\\\"title\\\\\":\\\\\"لمحة عن وزارة التنمية الإدارية\\\\\",\\\\\"introduction\\\\\":\\\\\"تأسست وزارة التنمية الإدارية بموجب المرسوم التشريعي رقم /39/ لعام 2014، وحددت مهامها بموجب المرسوم رقم /281/. وفي عام 2018 صدر القانون رقم /28/ الذي حدد مهامها واختصاصاتها وهيكلها التنظيمي.\\\\\",\\\\\"objective\\\\\":{\\\\\"title\\\\\":\\\\\"هدف الوزارة\\\\\",\\\\\"description\\\\\":\\\\\"تنفيذ السياسة العامة للدولة وتوجيهاتها في جميع الأمور المتعلقة بالتنمية الإدارية والإصلاح الإداري، ومنع الفساد ودعم الشفافية المؤسسية لتحقيق التنمية الشاملة والمستدامة. وتعمل الوزارة على تحقيق هذه الأهداف من خلال:\\\\\",\\\\\"items\\\\\":[\\\\\"وضع استراتيجية متكاملة للتنمية والإصلاح الإداري.\\\\\",\\\\\"اقتراح التعديلات التشريعية والتنظيمية لضمان تطوير الخدمات المقدمة للمواطنين وتمكين التنمية والإصلاح الإداري.\\\\\",\\\\\"قياس الأداء الإداري للجهات العامة لتحديد مدى انسجامه مع استراتيجيات التنمية والإصلاح الإداري.\\\\\",\\\\\"دراسة الهيكل التنظيمي الإداري للجهات العامة واقتراح إمكانية الدمج ونقل الصلاحيات وتجنب الازدواجية، بالتعاون والتنسيق مع الجهات المعنية، لضمان زيادة الكفاءة وتحسين الأداء العام.\\\\\",\\\\\"اقتراح واعتماد خطط التنمية والإصلاح الإداري بالتعاون والتنسيق مع الجهات التنفيذية المعنية، وإحالة نتائج التقييم إلى رئيس مجلس الوزراء.\\\\\"]},\\\\\"competencies\\\\\":{\\\\\"title\\\\\":\\\\\"اختصاصات ومهام الوزارة\\\\\",\\\\\"items\\\\\":[\\\\\"مراجعة ودراسة القوانين المنظمة للوظيفة العامة واقتراح تطويرها لضمان تحسين الأداء وجودة الخدمات.\\\\\",\\\\\"مراجعة اللوائح الداخلية والهياكل التنظيمية والوظيفية للجهات العامة واقتراح الأطر العامة لتطويرها.\\\\\",\\\\\"دعم مشاريع التنمية الإدارية بما يتماشى مع استراتيجية التنمية والإصلاح الإداري.\\\\\",\\\\\"اقتراح سياسة الوظيفة العامة ووضع المبادئ والمعايير العامة للترشيح والمسارات الوظيفية والرتب الوظيفية.\\\\\",\\\\\"مراجعة المبادئ الأساسية للمسابقات والاختبارات للتعيين والتعاقد واقتراح الأطر العامة لتطوير أنظمة الترقية والحوافز والتعويضات والمزايا الوظيفية والأداء الفردي للموظفين في الجهات العامة.\\\\\",\\\\\"وضع مؤشرات لقياس وتطوير الأداء الإداري.\\\\\",\\\\\"وضع الأطر العامة لإدارة الموارد البشرية واقتراح برامج تأهيلها وتطويرها وتدريبها وتقييم أدائها.\\\\\",\\\\\"منح التراخيص لمزاولة التدريب الإداري.\\\\\",\\\\\"دراسة معوقات العمل الإداري واقتراح الحلول المناسبة لتبسيط الإجراءات الإدارية.\\\\\",\\\\\"وضع الأطر العامة لمنع الفساد الإداري ودعم الشفافية المؤسسية.\\\\\",\\\\\"دراسة حجم التوظيف في الجهات العامة واقتراح المبادئ والمعايير لسياسات استبدال الوظائف والخروج الآمن.\\\\\",\\\\\"تمكين التفكير الريادي بين الموارد البشرية في الجهات العامة ودعم المبادرات المميزة والابتكارية.\\\\\"]}},\\\\\"strategicDirectionsMap\\\\\":{\\\\\"corporateValues\\\\\":{\\\\\"title\\\\\":\\\\\"القيم المؤسسية\\\\\",\\\\\"values\\\\\":[\\\\\"الكفاءة والتميز المؤسسي\\\\\",\\\\\"الشفافية والمساءلة\\\\\",\\\\\"الابتكار والتكنولوجيا\\\\\",\\\\\"التمكين والمشاركة\\\\\",\\\\\"الالتزام والمسؤولية\\\\\"]},\\\\\"strategicGoals\\\\\":{\\\\\"title\\\\\":\\\\\"الاهداف الاستراتيجية\\\\\",\\\\\"goals\\\\\":[\\\\\"إصلاح شامل للبنية التنظيمية الحكومية لتحقيق الكفاءة والمرونة وتعزيز التكامل بين الجهات العامة.\\\\\",\\\\\"رفع كفاءة الموارد البشرية وتبنّي سياسات حديثة لإدارتها وتأهيلها وتطوير قدراتها.\\\\\",\\\\\"دعم وقياس الأداء المؤسسي لتحسين فعالية العمليات الإدارية وضمان تحقيق الأهداف الاستراتيجية.\\\\\",\\\\\"المشاركة في تحقيق التحول الرقمي الكامل من خلال رقمنة الخدمات الحكومية.\\\\\",\\\\\"زيادة رضا المواطنين عن الخدمات الحكومية.\\\\\"]},\\\\\"workAreas\\\\\":{\\\\\"title\\\\\":\\\\\"محاور العمل\\\\\",\\\\\"introduction\\\\\":\\\\\"في إطار سعي وزارة التنمية الإدارية لتحقيق أهدافها الاستراتيجية وتعزيز دورها في قيادة مسار الإصلاح المؤسسي وضمان نتائج ملموسة تسهم في بناء قطاع عام أكثر كفاءة واستدامة مواكب لمتطلبات التنمية الشاملة، عملت على ترجمة رؤيتها ورسالتها إلى محاور عمل تنفيذية وفق الآتي:\\\\\",\\\\\"areas\\\\\":[{\\\\\"title\\\\\":\\\\\"المحور الأول: محور التنظيم المؤسسي\\\\\",\\\\\"description\\\\\":\\\\\"يهدف هذا المحور إلى بناء جهاز حكومي يتمتع بالمرونة التنظيمية والكفاءة التشغيلية، وتقليص حجم وتعقيد البنى التنظيمية وإزالة التداخل ومنع الازدواجية والتكرار، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"إعادة الهيكلة المؤسسية\\\\\",\\\\\"تطوير بطاقات الوصف الوظيفي\\\\\",\\\\\"تبسيط الإجراءات وتحسين كفاءة العمليات التشغيلية\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور الثاني: محور دعم وقياس الأداء المؤسسي\\\\\",\\\\\"description\\\\\":\\\\\"يهدف هذا المحور إلى تعزيز كفاءة الأداء الحكومي وترسيخ الشفافية المؤسساتية عبر تطوير أنظمة دقيقة لقياس الأداء وتحليل النتائج لضمان تحقيق الأهداف الاستراتيجية وتعزيز كفاءة تقديم الخدمات الحكومية والاستجابة لتطلعات المواطنين وتلبية استحقاقات المصلحة العامة، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"نطوير مؤشرات الأداء وتنفيذ عمليات القياس\\\\\",\\\\\"تعزيز ثقافة قياس الأداء\\\\\",\\\\\"إطلاق منصة موحدة لقياس الأداء\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور الثالث: محور إدارة سجلات العاملين\\\\\",\\\\\"description\\\\\":\\\\\"يهدف هذا المحور إلى تعزيز كفاءة إدارة الموارد البشرية الحكومية عبر تطوير منظومة متكاملة لإدارة بيانات العاملين ونظام معلومات موحد يضمن أتمتة الإجراءات والعمليات الوظيفية وتحليل البيانات لدعم التخطيط الاستراتيجي وتعزيز الكفاءة التشغيلية، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"إنشاء قاعدة بيانات وطنية للموارد البشرية\\\\\",\\\\\"تحليل بيانات القوى العاملة\\\\\",\\\\\"إدارة وتتبع حركة القوى العاملة\\\\\",\\\\\"أتمتة إجراءات الموارد البشرية\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور الرابع: محور تخطيط الموارد البشرية،\\\\\",\\\\\"description\\\\\":\\\\\"البشرية، يمثل هذا المحور حجر الأساس لضمان استدامة الموارد البشرية في المؤسسات الحكومية، ويهدف إلى إرساء منهجية متكاملة لعملية التخطيط الاستراتيجي للقوى العاملة بما يضمن معالجة الفجوات بين الموارد البشرية الحالية والاحتياجات المستقبلية للجهات الحكومية ووضع آليات للتنبؤ بهذه الاحتياجات، وتوفير قاعدة بيانات دقيقة تدعم صنع القرارات الاستراتيجية المتعلقة بالموارد البشرية، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"تأطير عملية تخطيط الموارد البشرية\\\\\",\\\\\"إعداد خطة وطنية شاملة لإدارة الموارد البشرية\\\\\",\\\\\"تحليل الوضع الراهن وإدارة التوازن الوظيفي\\\\\",\\\\\"التنبؤ بالاحتياجات المستقبلية\\\\\",\\\\\"تخطيط سياسات الإحلال الوظيفي\\\\\",\\\\\"إنشاء قواعد بيانات محورية\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور الخامس: محور الاستقطاب والتوظيف\\\\\",\\\\\"description\\\\\":\\\\\"والتوظيف، يهدف هذا المحور إلى تطوير نظام التوظيف الحكومي وتحقيق استقطاب قائم على الجدارة والكفاءة بناءً على معايير موضوعية لتوفير فرص عمل حقيقية، عبر تبني استراتيجيات متطورة تسهم في تعزيز الشفافية وتحقيق العدالة الوظيفية، ورفع مستوى كفاءة الأداء الحكومي، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"إصلاح وتحديث نظام التوظيف الحكومي\\\\\",\\\\\"تعزيز استقطاب الكفاءات\\\\\",\\\\\"تسهيل الوصول إلى فرص العمل الحكومية\\\\\",\\\\\"تطوير سياسات توظيف الكفاءات الشابة\\\\\",\\\\\"تطوير آليات التوظيف الداخلي والنقل والترقية\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور السادس: محور تقييم الموارد البشرية\\\\\",\\\\\"description\\\\\":\\\\\"يشكّل هذا المحور أحد الركائز الأساسية في إدارة الكفاءات الوطنية، ويهدف إلى إرساء منظومة متكاملة لتقييم أداء الموارد البشرية تقيس العلاقة بين كفاءة الأداء والإنجاز وواجبات ومسؤوليات الوظيفة، وتربط النتائج بعمليات تخطيط الموارد البشرية لتصب في مسار التدريب والتأهيل والتطوير الوظيفي، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"إعداد إطار وطني لتقييم الموارد البشرية\\\\\",\\\\\"تنفيذ نظام تقييم متكامل يدعم تطوير الموارد البشرية\\\\\",\\\\\"تحليل النتائج وربطها بالتطوير المؤسسي\\\\\",\\\\\"ربط نتائج التقييم بسياسات الترقية والتحفيز والتطوير\\\\\",\\\\\"رقمنة عمليات تقييم الأداء\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور السابع: محور تطوير الموارد البشرية\\\\\",\\\\\"description\\\\\":\\\\\"يمثّل هذا المحور الركيزة الأساسية في رفع كفاءة أداء الجهاز الحكومي وتحقيق استدامة التطوير، ويهدف إلى تمكين الفكر الريادي وتطوير الأطر والكوادر البشرية وتنمية المهارات وتعزيز القدرات عبر استراتيجيات تدريب مبتكرة تتناسب مع التحديات الراهنة والمستقبلية لضمان تحقيق الأهداف المؤسسية، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"وضع سياسة تدريب الموارد البشرية\\\\\",\\\\\"تنفيذ برامج بناء القدرات\\\\\",\\\\\"تعزيز ثقافة التطوير المستمر\\\\\",\\\\\"تعزيز منظومة الاعتمادية\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور الثامن: محور الأجور والتعويضات\\\\\",\\\\\"description\\\\\":\\\\\"يهدف هذا المحور إلى وضع نظام متكامل وعادل للأجور والرواتب ومعايبر وآليات للتحفيز الوظيفي تربط الاستحقاق بالأداء الفعلي والإنتاجية بما يضمن تشجيع الكفاءات ويحقق العدالة الوظيفية، ويدفع بيئة العمل الحكومية نحو الإنجاز والتميز، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"تطوير نظام عادل للأجور\\\\\",\\\\\"وضع أنظمة التحفيز الوظيفي\\\\\",\\\\\"تنظيم إدارة الأجور والرواتب\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور التاسع: محور تطوير عمل مديريات التنمية الإدارية،\\\\\",\\\\\"description\\\\\":\\\\\"تعتجر مديريات التنمية الإدارية الذراع التنفيذي للتحديث المؤسسي وإدارة وتنمية الموارد البشرية، ويهدف هذا المحور إلى إعادة هيكلة عمل مديريات التنمية الإدارية وفق نموذج مؤسسي موحد يضمن رفع كفاءة تنفيذ المهام، وتحقيق الاتساق والتكامل مع عمل وزارة التنمية الإدارية، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"توحيد الإطار التنظيمي\\\\\",\\\\\"تطوير الهيكل الوظيفي وتعزيز الكفاءة التشغيلية\\\\\",\\\\\"مأسسة إجراءات العمليات التشغيلية الإشراف على تنفيذ التحديث المؤسسي\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور العاشر: محور إعادة بناء الثقافة المؤسسية\\\\\",\\\\\"description\\\\\":\\\\\"يهدف هذا المحور إلى خلق بيئة عمل داعمة ومحفزة ترفع مستوى ارتباط العاملين بالمؤسسات وتفعل دورهم كشركاء في تحقيق الأهداف الاستراتيجية، عبر إعادة بناء الثقافة المؤسسية وترسيخ الالتزام بالقيم وتعزيز النزاهة والشفافية والانتماء وبالتالي الثقة المتبادلة بين الموظف والإدارة الحكومية، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"ترسيخ القيم المؤسسية وتعزيز الانتماء الوظيفي\\\\\",\\\\\"تعزيز بيئة العمل والحوكمة المؤسسية\\\\\",\\\\\"تعزيز التواصل الداخلي\\\\\",\\\\\"قياس رضا الموظفين كمؤشر لتقييم الأداء المؤسسي\\\\\"]}]}}},\\\\\"successPartners\\\\\":{\\\\\"title\\\\\":\\\\\"شركاء النجاح\\\\\"},\\\\\"laws\\\\\":{\\\\\"title\\\\\":\\\\\"القانون رقم\\\\\"},\\\\\"pdfViewer\\\\\":{\\\\\"page\\\\\":\\\\\"الصفحة\\\\\",\\\\\"of\\\\\":\\\\\"من\\\\\",\\\\\"previous\\\\\":\\\\\"السابق\\\\\",\\\\\"next\\\\\":\\\\\"التالي\\\\\"},\\\\\"footer\\\\\":{\\\\\"description\\\\\":\\\\\"موقع الوزارة الرسمي\\\\\",\\\\\"quickLinks\\\\\":\\\\\"روابط سريعة\\\\\",\\\\\"contactInfo\\\\\":\\\\\"معلومات الاتصال\\\\\",\\\\\"followUs\\\\\":\\\\\"تابعنا على وسائل التواصل الاجتماعي\\\\\",\\\\\"allRightsReserved\\\\\":\\\\\"جميع الحقوق محفوظة - وزارة التنمية الإدارية في سورية\\\\\",\\\\\"aboutUs\\\\\":\\\\\"عن الوزارة\\\\\",\\\\\"services\\\\\":\\\\\"الخدمات\\\\\",\\\\\"news\\\\\":\\\\\"الأخبار\\\\\",\\\\\"contact\\\\\":\\\\\"اتصل بنا\\\\\",\\\\\"phone\\\\\":\\\\\"الهاتف\\\\\",\\\\\"email\\\\\":\\\\\"البريد الإلكتروني\\\\\",\\\\\"address\\\\\":\\\\\"العنوان\\\\\",\\\\\"privacyPolicy\\\\\":\\\\\"سياسة الخصوصية\\\\\",\\\\\"termsConditions\\\\\":\\\\\"الشروط والأحكام\\\\\"},\\\\\"form\\\\\":{\\\\\"search\\\\\":{\\\\\"placeholder\\\\\":\\\\\"ابحث\\\\\",\\\\\"button\\\\\":\\\\\"بحث\\\\\"}},\\\\\"common\\\\\":{\\\\\"seeMore\\\\\":\\\\\"رؤية المزيد\\\\\",\\\\\"damascus\\\\\":\\\\\"دمشق\\\\\"},\\\\\"breadcrumb\\\\\":{\\\\\"home\\\\\":\\\\\"الرئيسية\\\\\",\\\\\"contact\\\\\":\\\\\"تواصل معنا\\\\\",\\\\\"legislation\\\\\":\\\\\"التشريعات والأدلة\\\\\",\\\\\"ministry\\\\\":\\\\\"الوزارة\\\\\",\\\\\"news\\\\\":\\\\\"الأخبار\\\\\",\\\\\"newsEvents\\\\\":\\\\\"الأخبار والفعاليات\\\\\",\\\\\"privacyPolicy\\\\\":\\\\\"سياسة الخصوصية\\\\\",\\\\\"termsConditions\\\\\":\\\\\"الشروط والأحكام\\\\\",\\\\\"faq\\\\\":\\\\\"الأسئلة الشائعة\\\\\",\\\\\"importantLinks\\\\\":\\\\\"الروابط المهمة\\\\\",\\\\\"decrees\\\\\":\\\\\"المراسيم\\\\\",\\\\\"laws\\\\\":\\\\\"القوانين\\\\\",\\\\\"serviceGuides\\\\\":\\\\\"الأدلة الخدمية لوزارة التنمية\\\\\",\\\\\"buildingAndUpdatingInstitutionalStructures\\\\\":\\\\\"بناء وتحديث الهياكل التنظيمية\\\\\",\\\\\"buildingAndUpdatingInstitutionalStructuresDescription\\\\\":\\\\\"الدليل الإرشادي لبناء وتحديث الهياكل التنظيمية في الجهات العامة\\\\\",\\\\\"about\\\\\":\\\\\"عن الوزارة\\\\\",\\\\\"aboutMinister\\\\\":\\\\\"عن الوزير\\\\\",\\\\\"strategicDirectionsMap\\\\\":\\\\\"خارطة الاهداف الاستراتيجية\\\\\"}},\\\\\"now\\\\\":\\\\\"$undefined\\\\\",\\\\\"timeZone\\\\\":\\\\\"UTC\\\\\",\\\\\"children\\\\\":\\\\\"$L12\\\\\"}]\\\\n\"])</script><script>self.__next_f.push([1,\"13:I[50654,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n14:I[92179,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n15:I[22016,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n16:I[5500,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"Image\\\\\"]\\\\n17:I[34198,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n18:I[3030,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n19:I[93227,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n1a:I[82834,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n1b:I[2090,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\"])</script><script>self.__next_f.push([1,\"\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n\"])</script><script>self.__next_f.push([1,\"12:[\\\\\"$\\\\\",\\\\\"$L13\\\\\",null,{\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"w-full max-w-[1920px] mx-auto px-4 sm:px-6 lg:px-8 bg-white transition-all duration-300\\\\\",\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"$L14\\\\\",null,{}]}],[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"w-full h-[1px] bg-black-100\\\\\"}],[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"w-full max-w-[1920px] mx-auto px-4 sm:px-6 lg:px-8 bg-white transition-all duration-300\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"header\\\\\",null,{\\\\\"className\\\\\":\\\\\"bg-[url(\\'/images/background.svg\\')] bg-contain bg-repeat relative\\\\\",\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"w-full flex max-sm:flex-col max-sm:gap-3 items-center max-sm:items-start justify-between py-4\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"flex max-sm:justify-between items-center gap-3 max-sm:w-full\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"$L15\\\\\",null,{\\\\\"href\\\\\":\\\\\"/\\\\\",\\\\\"className\\\\\":\\\\\"inline-flex items-center\\\\\",\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"$L16\\\\\",null,{\\\\\"src\\\\\":\\\\\"/images/logo.svg\\\\\",\\\\\"alt\\\\\":\\\\\"Logo\\\\\",\\\\\"width\\\\\":280,\\\\\"height\\\\\":100,\\\\\"className\\\\\":\\\\\"w-[280px] max-sm:w-[180px] h-auto\\\\\"}]}],[\\\\\"$\\\\\",\\\\\"$L17\\\\\",null,{}]]}],[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"flex max-sm:hidden justify-between items-center gap-3 max-sm:w-full\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"$L18\\\\\",null,{}],[\\\\\"$\\\\\",\\\\\"$L19\\\\\",null,{}]]}]]}]}],[\\\\\"$\\\\\",\\\\\"$L1a\\\\\",null,{}],[\\\\\"$\\\\\",\\\\\"main\\\\\",null,{\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"$L2\\\\\",null,{\\\\\"parallelRouterKey\\\\\":\\\\\"children\\\\\",\\\\\"error\\\\\":\\\\\"$undefined\\\\\",\\\\\"errorStyles\\\\\":\\\\\"$undefined\\\\\",\\\\\"errorScripts\\\\\":\\\\\"$undefined\\\\\",\\\\\"template\\\\\":[\\\\\"$\\\\\",\\\\\"$L3\\\\\",null,{}],\\\\\"templateStyles\\\\\":\\\\\"$undefined\\\\\",\\\\\"templateScripts\\\\\":\\\\\"$undefined\\\\\",\\\\\"notFound\\\\\":\\\\\"$undefined\\\\\",\\\\\"forbidden\\\\\":\\\\\"$undefined\\\\\",\\\\\"unauthorized\\\\\":\\\\\"$undefined\\\\\"}]}],[\\\\\"$\\\\\",\\\\\"$L1b\\\\\",null,{}]]}]]}]\\\\n\"])</script><script>self.__next_f.push([1,\"9:{\\\\\"metadata\\\\\":[[\\\\\"$\\\\\",\\\\\"title\\\\\",\\\\\"0\\\\\",{\\\\\"children\\\\\":\\\\\"Ministry of Administration Development\\\\\"}],[\\\\\"$\\\\\",\\\\\"meta\\\\\",\\\\\"1\\\\\",{\\\\\"name\\\\\":\\\\\"description\\\\\",\\\\\"content\\\\\":\\\\\"Generated by create next app\\\\\"}]],\\\\\"error\\\\\":null,\\\\\"digest\\\\\":\\\\\"$undefined\\\\\"}\\\\n\"])</script><script>self.__next_f.push([1,\"e:\\\\\"$9:metadata\\\\\"\\\\n\"])</script><script>self.__next_f.push([1,\"1c:I[8029,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\",\\\\\"/_next/static/chunks/9de9312a0a268785.js\\\\\",\\\\\"/_next/static/chunks/64968448ae75aa67.js\\\\\",\\\\\"/_next/static/chunks/8845389a49c42702.js\\\\\"],\\\\\"default\\\\\"]\\\\n\"])</script><script>self.__next_f.push([1,\"5:[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"flex flex-col gap-20 max-md:gap-15 max-sm:gap-10\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"$L1c\\\\\",null,{\\\\\"news\\\\\":[{\\\\\"id\\\\\":4,\\\\\"uuid\\\\\":\\\\\"bd491579-99a1-448d-a2b4-c2b3d4705c77\\\\\",\\\\\"title\\\\\":{\\\\\"ar\\\\\":\\\\\"لجنة تمديد الخدمة تعقد اجتماعها الثالث برئاسة وزير التنمية الإدارية\\\\\",\\\\\"en\\\\\":\\\\\"Service Extension Committee Holds Its Third Meeting Presided by the Minister of Administrative Development\\\\\"},\\\\\"body\\\\\":{\\\\\"ar\\\\\":\\\\\"عقدت لجنة تمديد الخدمة اجتماعها الثالث اليوم في مبنى وزارة التنمية الإدارية، برئاسة وزير التنمية الإدارية السيد \\\\\\\\\\\\\"محمد حسان السكاف\\\\\\\\\\\\\"، وذلك لمتابعة دراسة الطلبات الواردة من الجهات العامة والمتعلقة بتمديد خدمة العاملين الذين بلغوا السن القانونية.\\\\\\\\n\\\\\\\\nاستعرضت اللجنة خلال الاجتماع مجموعة من الطلبات المقدّمة، وجرى مطابقتها مع المعايير والأسس المعتمدة التي ترتكز على الحاجة المؤسسية الفعلية وندرة الاختصاص والخبرة الفنية، بما يضمن الاستخدام الأمثل للموارد البشرية في الدولة.\\\\\\\\n\\\\\\\\nوبعد المناقشة أقرّت اللجنة الحالات التي استوفت الشروط بشكل كامل، مؤكدة على الاستمرار بدراسة باقي الملفات ضمن سلسلة اجتماعاتها الدورية.\\\\\",\\\\\"en\\\\\":\\\\\"The Service Extension Committee held its third meeting today at the Ministry of Administrative Development, presided over by Minister Mohammad Hassan Al-Sakkaf, to review requests concerning the extension of service for employees who reached the legal retirement age.\\\\\\\\n\\\\\\\\nThe committee examined the submitted applications and matched them with the approved standards based on institutional needs, rarity of specialization, and technical expertise to ensure optimal human resources utilization.\\\\\\\\n\\\\\\\\nAfter discussions, the committee approved the eligible cases and confirmed that it will continue reviewing remaining applications in future periodic meetings.\\\\\"},\\\\\"isImportant\\\\\":false,\\\\\"status\\\\\":\\\\\"Published\\\\\",\\\\\"scheduled_at\\\\\":null,\\\\\"published_at\\\\\":null,\\\\\"approver_id\\\\\":null,\\\\\"requester_id\\\\\":null,\\\\\"activityLogId\\\\\":null,\\\\\"createdAt\\\\\":\\\\\"2026-01-13T23:18:15.246Z\\\\\",\\\\\"updatedAt\\\\\":\\\\\"2026-01-13T23:18:15.246Z\\\\\",\\\\\"deletedAt\\\\\":null,\\\\\"images\\\\\":[{\\\\\"id\\\\\":4,\\\\\"url\\\\\":\\\\\"uploads/upload/news/service_meeting1.jpg\\\\\",\\\\\"target_type\\\\\":\\\\\"news\\\\\",\\\\\"target_id\\\\\":\\\\\"bd491579-99a1-448d-a2b4-c2b3d4705c77\\\\\"},{\\\\\"id\\\\\":5,\\\\\"url\\\\\":\\\\\"uploads/upload/news/service_meeting2.jpg\\\\\",\\\\\"target_type\\\\\":\\\\\"news\\\\\",\\\\\"target_id\\\\\":\\\\\"bd491579-99a1-448d-a2b4-c2b3d4705c77\\\\\"},{\\\\\"id\\\\\":6,\\\\\"url\\\\\":\\\\\"uploads/upload/news/service_meeting3.jpg\\\\\",\\\\\"target_type\\\\\":\\\\\"news\\\\\",\\\\\"target_id\\\\\":\\\\\"bd491579-99a1-448d-a2b4-c2b3d4705c77\\\\\"}],\\\\\"activityLog\\\\\":null},{\\\\\"id\\\\\":5,\\\\\"uuid\\\\\":\\\\\"4664cf44-c11f-45e2-bada-2bd7c059900d\\\\\",\\\\\"title\\\\\":{\\\\\"ar\\\\\":\\\\\"فتح باب التسجيل في ماجستير إدارة التحول الرقمي\\\\\",\\\\\"en\\\\\":\\\\\"Registration Opens for the Masters in Digital Transformation Management\\\\\"},\\\\\"body\\\\\":{\\\\\"ar\\\\\":\\\\\"تُعلن وزارة التنمية الإدارية بالتنسيق مع الجامعة الافتراضية السورية عن فتح باب التسجيل في ماجستير إدارة التحول الرقمي.\\\\\\\\n\\\\\\\\nيُعد هذا البرنامج خطوة نوعية لتمكين العاملين في الجهاز الحكومي من اكتساب مهارات متقدمة في إدارة التغيير، وتصميم الخدمات الإلكترونية، وصياغة السياسات الرقمية، واستخدام أدوات تحليل البيانات، بما ينسجم مع متطلبات التحول المؤسسي الشامل.\\\\\\\\n\\\\\\\\nمدة الدراسة: ثلاثة فصول دراسية تليها مرحلة تطبيقية.\\\\\\\\nلغة التدريس: العربية، مع مواد داعمة باللغة الإنكليزية.\\\\\\\\nيستمر التسجيل لغاية يوم الخميس 20 تشرين الثاني 2025.\\\\\\\\n\\\\\\\\nالرابط: https://ee.freebook.work/x/sJl0i6Em\\\\\",\\\\\"en\\\\\":\\\\\"The Ministry of Administrative Development, in coordination with the Syrian Virtual University, announces the opening of registration for the Masters in Digital Transformation Management.\\\\\\\\n\\\\\\\\nThe program aims to empower government employees with advanced skills in change management, e-service design, digital policy development, and data analytics in alignment with institutional transformation needs.\\\\\\\\n\\\\\\\\nStudy duration: Three academic semesters followed by an applied phase.\\\\\\\\nLanguage: Arabic, with supporting English content.\\\\\\\\nRegistration is open until Thursday, November 20, 2025.\\\\\\\\n\\\\\\\\nLink: https://ee.freebook.work/x/sJl0i6Em\\\\\"},\\\\\"isImportant\\\\\":false,\\\\\"status\\\\\":\\\\\"Published\\\\\",\\\\\"scheduled_at\\\\\":null,\\\\\"published_at\\\\\":null,\\\\\"approver_id\\\\\":null,\\\\\"requester_id\\\\\":null,\\\\\"activityLogId\\\\\":null,\\\\\"createdAt\\\\\":\\\\\"2026-01-13T23:18:15.246Z\\\\\",\\\\\"updatedAt\\\\\":\\\\\"2026-01-13T23:18:15.246Z\\\\\",\\\\\"deletedAt\\\\\":null,\\\\\"images\\\\\":[{\\\\\"id\\\\\":7,\\\\\"url\\\\\":\\\\\"uploads/upload/news/digital_master1.jpg\\\\\",\\\\\"target_type\\\\\":\\\\\"news\\\\\",\\\\\"target_id\\\\\":\\\\\"4664cf44-c11f-45e2-bada-2bd7c059900d\\\\\"},{\\\\\"id\\\\\":8,\\\\\"url\\\\\":\\\\\"uploads/upload/news/digital_master2.jpg\\\\\",\\\\\"target_type\\\\\":\\\\\"news\\\\\",\\\\\"target_id\\\\\":\\\\\"4664cf44-c11f-45e2-bada-2bd7c059900d\\\\\"}],\\\\\"activityLog\\\\\":null},{\\\\\"id\\\\\":6,\\\\\"uuid\\\\\":\\\\\"c880be1a-fb29-43f6-8900-9904d3a9f17d\\\\\",\\\\\"title\\\\\":{\\\\\"ar\\\\\":\\\\\"دفعة جديدة من قادة التغيير... دبلوم الموارد البشرية\\\\\",\\\\\"en\\\\\":\\\\\"A New Cohort of Change Leaders… Human Resources Diploma\\\\\"},\\\\\"body\\\\\":{\\\\\"ar\\\\\":\\\\\"رحلة معرفية عاشها أكثر من 60 موظفاً من العاملين في مجال التنمية الإدارية وإدارة الموارد البشرية من مختلف الجهات العامة.. جمعت بين الفكر الإداري الحديث والتطبيق العملي، لتصنع جيلاً جديداً من قادة التغيير والتطوير في مؤسسات الدولة.\\\\\",\\\\\"en\\\\\":\\\\\"More than 60 employees across public entities completed an enriching learning journey within the Human Resources Diploma program, combining modern administrative thought with practical application to cultivate a new generation of change and development leaders.\\\\\"},\\\\\"isImportant\\\\\":false,\\\\\"status\\\\\":\\\\\"Published\\\\\",\\\\\"scheduled_at\\\\\":null,\\\\\"published_at\\\\\":null,\\\\\"approver_id\\\\\":null,\\\\\"requester_id\\\\\":null,\\\\\"activityLogId\\\\\":null,\\\\\"createdAt\\\\\":\\\\\"2026-01-13T23:18:15.246Z\\\\\",\\\\\"updatedAt\\\\\":\\\\\"2026-01-13T23:18:15.246Z\\\\\",\\\\\"deletedAt\\\\\":null,\\\\\"images\\\\\":[{\\\\\"id\\\\\":9,\\\\\"url\\\\\":\\\\\"uploads/upload/news/hr_diploma1.jpg\\\\\",\\\\\"target_type\\\\\":\\\\\"news\\\\\",\\\\\"target_id\\\\\":\\\\\"c880be1a-fb29-43f6-8900-9904d3a9f17d\\\\\"},{\\\\\"id\\\\\":10,\\\\\"url\\\\\":\\\\\"uploads/upload/news/hr_diploma2.jpg\\\\\",\\\\\"target_type\\\\\":\\\\\"news\\\\\",\\\\\"target_id\\\\\":\\\\\"c880be1a-fb29-43f6-8900-9904d3a9f17d\\\\\"},{\\\\\"id\\\\\":11,\\\\\"url\\\\\":\\\\\"uploads/upload/news/hr_diploma3.jpg\\\\\",\\\\\"target_type\\\\\":\\\\\"news\\\\\",\\\\\"target_id\\\\\":\\\\\"c880be1a-fb29-43f6-8900-9904d3a9f17d\\\\\"}],\\\\\"activityLog\\\\\":null}]}],\\\\\"$L1d\\\\\",\\\\\"$L1e\\\\\",\\\\\"$L1f\\\\\"]}]\\\\n\"])</script><script>self.__next_f.push([1,\"20:I[22176,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\",\\\\\"/_next/static/chunks/9de9312a0a268785.js\\\\\",\\\\\"/_next/static/chunks/64968448ae75aa67.js\\\\\",\\\\\"/_next/static/chunks/8845389a49c42702.js\\\\\"],\\\\\"default\\\\\"]\\\\n21:I[84670,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\",\\\\\"/_next/static/chunks/9de9312a0a268785.js\\\\\",\\\\\"/_next/static/chunks/64968448ae75aa67.js\\\\\",\\\\\"/_next/static/chunks/8845389a49c42702.js\\\\\"],\\\\\"default\\\\\"]\\\\n1d:[\\\\\"$\\\\\",\\\\\"$L20\\\\\",null,{}]\\\\n1f:[\\\\\"$\\\\\",\\\\\"$L21\\\\\",null,{}]\\\\n\"])</script><script>self.__next_f.push([1,\"22:I[29476,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\",\\\\\"/_next/static/chunks/9de9312a0a268785.js\\\\\",\\\\\"/_next/static/chunks/64968448ae75aa67.js\\\\\",\\\\\"/_next/static/chunks/8845389a49c42702.js\\\\\"],\\\\\"default\\\\\"]\\\\n23:I[84845,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\",\\\\\"/_next/static/chunks/9de9312a0a268785.js\\\\\",\\\\\"/_next/static/chunks/64968448ae75aa67.js\\\\\",\\\\\"/_next/static/chunks/8845389a49c42702.js\\\\\"],\\\\\"default\\\\\"]\\\\n\"])</script><script>self.__next_f.push([1,\"1e:[\\\\\"$\\\\\",\\\\\"$L22\\\\\",null,{\\\\\"title\\\\\":\\\\\"آخر الأخبار\\\\\",\\\\\"showMore\\\\\":true,\\\\\"href\\\\\":\\\\\"/news\\\\\",\\\\\"subtitle\\\\\":\\\\\"تعرف على آخر الأخبار والفعاليات والاعلانات لوزارة الموارد البشرية والتنمية الاجتماعية\\\\\",\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"grid md:grid-cols-3 gap-4\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"$L23\\\\\",\\\\\"0\\\\\",{\\\\\"image\\\\\":\\\\\"https://api.moad.gov.sy/uploads/upload/news/HighTech.jpg\\\\\",\\\\\"title\\\\\":\\\\\"دعوة لزيارة جناح الوزارة في معرض سيريا هايتك 2025\\\\\",\\\\\"description\\\\\":\\\\\"دعماً للتحول الرقمي في المؤسسات، وتماشياً مع الثورة المعلوماتية العصرية،\\\\\\\\nتدعوكم وزارة التنمية الإدارية في الجمهورية العربية السورية لزيارة جناحها الخاص في معرض \\\\\\\\\\\\\"سيريا هايتك\\\\\\\\\\\\\" لتكنولوجيا المعلومات والاتصالات بنسخته الحادية عشر، المقام في مدينة المعارض بدمشق.\\\\\\\\n\\\\\\\\nوذلك ابتداءً من يوم الخميس الموافق 20/11/2025 حتى يوم الإثنين الموافق 24/11/2025.\\\\\\\\n\\\\\\\\nكونوا معنا، لاكتساب فرصةٍ للتعرف وتبادل الخبرات وبناء شراكاتٍ تنموية تكنولوجية، لتصبحوا جزءاً من البناء التقدمي الحضاري الحديث.\\\\\",\\\\\"date\\\\\":\\\\\"$undefined\\\\\",\\\\\"icon\\\\\":\\\\\"$undefined\\\\\",\\\\\"id\\\\\":\\\\\"5f31ed3f-1387-46d8-968a-49d22c76d571\\\\\"}],[\\\\\"$\\\\\",\\\\\"$L23\\\\\",\\\\\"1\\\\\",{\\\\\"image\\\\\":\\\\\"https://api.moad.gov.sy/uploads/upload/news/best_idea.jpg\\\\\",\\\\\"title\\\\\":\\\\\"فرصة إضافية للإبداع: تمديد التقديم في مبادرة أفضل فكرة حكومية\\\\\",\\\\\"description\\\\\":\\\\\"إيماناً بضرورة توفير مساحة أوسع للإبداع الحكومي، ونظراً للطلبات العديدة الواردة من مديريات التنمية الإدارية في الوزارات والمحافظات، وحرصاً من وزارة التنمية الإدارية على إتاحة الفرصة لأكبر عدد من الزملاء لتقديم مقترحاتهم التطويرية…\\\\\\\\n\\\\\\\\nيسرّ الوزارة أن تعلن عن تمديد فترة استقبال الأفكار ضمن مبادرة “أفضل فكرة حكومية” وذلك حتى نهاية الشهر الحالي.\\\\\\\\n\\\\\\\\nتهدف المبادرة إلى تمكين العاملين في مديريات التنمية الإدارية من تقديم أفكار عملية وقابلة للتطبيق، تُسهم في دعم مسارات التحول المؤسسي الشامل ورفع كفاءة الأداء داخل المؤسسات العامة.\\\\\\\\n\\\\\\\\nهذا هو الوقت الأمثل للمشاركة.. فكرتك قد تكون الشرارة الأولى لابتكار مؤسسي حقيقي.\\\\\\\\n\\\\\\\\nالتقديم متاح عبر الرابط:\\\\\\\\nhttps://cloud.moad.gov.sy/apps/forms/s/yG59EFrcxfMGjMLEnyqD5kLm\\\\\",\\\\\"date\\\\\":\\\\\"$undefined\\\\\",\\\\\"icon\\\\\":\\\\\"$undefined\\\\\",\\\\\"id\\\\\":\\\\\"ed6b0180-46c4-4875-b77d-0560466d5d48\\\\\"}],[\\\\\"$\\\\\",\\\\\"$L23\\\\\",\\\\\"2\\\\\",{\\\\\"image\\\\\":\\\\\"https://api.moad.gov.sy/uploads/upload/news/decision_training.jpeg\\\\\",\\\\\"title\\\\\":\\\\\"مديرية التنمية الإدارية بإدلب تنفذ تدريباً حول اتخاذ القرار وحل المشكلات\\\\\",\\\\\"description\\\\\":\\\\\"نفذت مديرية التنمية الإدارية في إدلب دورة تدريبية بعنوان: \\\\\\\\\\\\\"اتخاذ القرار وحل المشكلات\\\\\\\\\\\\\"، بهدف تزويد المتدربين بالمهارات والأساليب الفعّالة لاتخاذ القرارات وحل المشكلات بطريقة منطقية ومنظمة.\\\\\\\\n\\\\\\\\nوتناول التدريب محاور متعددة منها: العوامل المؤثرة في عملية اتخاذ القرار، نظريات اتخاذ القرار، إيجابيات وسلبيات القرار، ومراحل اتخاذه، وذلك ضمن جهود المديرية لتعزيز قدرات الكوادر في الإدارة والتخطيط الفعّال.\\\\\",\\\\\"date\\\\\":\\\\\"$undefined\\\\\",\\\\\"icon\\\\\":\\\\\"$undefined\\\\\",\\\\\"id\\\\\":\\\\\"36a87975-016a-4a25-b567-aea4731d5f4a\\\\\"}]]}]}]\\\\n\"])</script></body></html>'"
],
"application/vnd.google.colaboratory.intrinsic+json": {
"type": "string"
}
},
"metadata": {},
"execution_count": 5
}
]
},
{
"cell_type": "code",
"source": [
"ra1 = requests.get(\"https://moad.gov.sy/legislation/laws\")"
],
"metadata": {
"id": "_SMHzkImmRsY"
},
"execution_count": 6,
"outputs": []
},
{
"cell_type": "code",
"source": [
"ra1.text"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/",
"height": 157
},
"id": "BbQgFo-amZPx",
"outputId": "1c355bbc-1445-49e2-d793-694a00d5ab3d"
},
"execution_count": 7,
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"'<!DOCTYPE html><html id=\"__next_error__\"><head><meta charSet=\"utf-8\"/><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\"/><link rel=\"preload\" as=\"script\" fetchPriority=\"low\" href=\"/_next/static/chunks/c62b4372c26b460f.js\"/><script src=\"/_next/static/chunks/c951386faa1af47c.js\" async=\"\"></script><script src=\"/_next/static/chunks/fa9b078b3e28c0da.js\" async=\"\"></script><script src=\"/_next/static/chunks/8082ab48faca5ea1.js\" async=\"\"></script><script src=\"/_next/static/chunks/turbopack-11bf000e0da65cdd.js\" async=\"\"></script><script src=\"/_next/static/chunks/ff1a16fafef87110.js\" async=\"\"></script><script src=\"/_next/static/chunks/7dd66bdf8a7e5707.js\" async=\"\"></script><meta name=\"robots\" content=\"noindex\"/><meta name=\"next-size-adjust\" content=\"\"/><script src=\"/_next/static/chunks/a6dad97d9634a72d.js\" noModule=\"\"></script></head><body><div hidden=\"\"><!--$?--><template id=\"B:0\"></template><!--/$--></div><script>requestAnimationFrame(function(){$RT=performance.now()});</script><script src=\"/_next/static/chunks/c62b4372c26b460f.js\" id=\"_R_\" async=\"\"></script><title>Ministry of Administration Development</title><meta name=\"description\" content=\"Generated by create next app\"/><div hidden id=\"S:0\"></div><script>$RB=[];$RV=function(a){$RT=performance.now();for(var b=0;b<a.length;b+=2){var c=a[b],e=a[b+1];null!==e.parentNode&&e.parentNode.removeChild(e);var f=c.parentNode;if(f){var g=c.previousSibling,h=0;do{if(c&&8===c.nodeType){var d=c.data;if(\"/$\"===d||\"/&\"===d)if(0===h)break;else h--;else\"$\"!==d&&\"$?\"!==d&&\"$~\"!==d&&\"$!\"!==d&&\"&\"!==d||h++}d=c.nextSibling;f.removeChild(c);c=d}while(c);for(;e.firstChild;)f.insertBefore(e.firstChild,c);g.data=\"$\";g._reactRetry&&requestAnimationFrame(g._reactRetry)}}a.length=0};\\n$RC=function(a,b){if(b=document.getElementById(b))(a=document.getElementById(a))?(a.previousSibling.data=\"$~\",$RB.push(a,b),2===$RB.length&&(\"number\"!==typeof $RT?requestAnimationFrame($RV.bind(null,$RB)):(a=performance.now(),setTimeout($RV.bind(null,$RB),2300>a&&2E3<a?2300-a:$RT+300-a)))):b.parentNode.removeChild(b)};$RC(\"B:0\",\"S:0\")</script><script>(self.__next_f=self.__next_f||[]).push([0])</script><script>self.__next_f.push([1,\"1:\\\\\"$Sreact.fragment\\\\\"\\\\n2:I[39756,[\\\\\"/_next/static/chunks/ff1a16fafef87110.js\\\\\",\\\\\"/_next/static/chunks/7dd66bdf8a7e5707.js\\\\\"],\\\\\"default\\\\\"]\\\\n3:I[37457,[\\\\\"/_next/static/chunks/ff1a16fafef87110.js\\\\\",\\\\\"/_next/static/chunks/7dd66bdf8a7e5707.js\\\\\"],\\\\\"default\\\\\"]\\\\n6:I[97367,[\\\\\"/_next/static/chunks/ff1a16fafef87110.js\\\\\",\\\\\"/_next/static/chunks/7dd66bdf8a7e5707.js\\\\\"],\\\\\"OutletBoundary\\\\\"]\\\\n8:I[11533,[\\\\\"/_next/static/chunks/ff1a16fafef87110.js\\\\\",\\\\\"/_next/static/chunks/7dd66bdf8a7e5707.js\\\\\"],\\\\\"AsyncMetadataOutlet\\\\\"]\\\\na:I[97367,[\\\\\"/_next/static/chunks/ff1a16fafef87110.js\\\\\",\\\\\"/_next/static/chunks/7dd66bdf8a7e5707.js\\\\\"],\\\\\"ViewportBoundary\\\\\"]\\\\nc:I[97367,[\\\\\"/_next/static/chunks/ff1a16fafef87110.js\\\\\",\\\\\"/_next/static/chunks/7dd66bdf8a7e5707.js\\\\\"],\\\\\"MetadataBoundary\\\\\"]\\\\nd:\\\\\"$Sreact.suspense\\\\\"\\\\nf:I[68027,[],\\\\\"default\\\\\"]\\\\n13:I[84561,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\",\\\\\"/_next/static/chunks/7a0d8e81fa43259c.js\\\\\",\\\\\"/_next/static/chunks/5ce60ff104e542c4.js\\\\\"],\\\\\"default\\\\\"]\\\\n14:I[77105,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\",\\\\\"/_next/static/chunks/7a0d8e81fa43259c.js\\\\\",\\\\\"/_next/static/chunks/5ce60ff104e542c4.js\\\\\"],\\\\\"default\\\\\"]\\\\n15:I[75696,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n17:I[50654,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n18:I[92179,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/\"])</script><script>self.__next_f.push([1,\"488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n19:I[22016,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n1a:I[5500,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"Image\\\\\"]\\\\n1b:I[34198,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n1c:I[3030,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n1d:I[93227,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n1e:I[82834,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n1f:I[2090,[\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\"],\\\\\"default\\\\\"]\\\\n:HL[\\\\\"/_next/static/chunks/93a75f8697bed459.css\\\\\",\\\\\"style\\\\\"]\\\\n:HL[\\\\\"/_next/static/media/797e433ab948586e-s.p.dbea232f.woff2\\\\\",\\\\\"font\\\\\",{\\\\\"crossOrigin\\\\\":\\\\\"\\\\\",\\\\\"type\\\\\":\\\\\"font/woff2\\\\\"}]\\\\n:HL[\\\\\"/_next/static/media/caa3a2e1cccd8315-s.p.853070df.woff2\\\\\",\\\\\"font\\\\\",{\\\\\"crossOrigin\\\\\":\\\\\"\\\\\",\\\\\"type\\\\\":\\\\\"font/woff2\\\\\"}]\\\\n:HL[\\\\\"/_next/static/chunks/924\"])</script><script>self.__next_f.push([1,\"469fc833dc7b6.css\\\\\",\\\\\"style\\\\\"]\\\\n\"])</script><script>self.__next_f.push([1,\"0:{\\\\\"P\\\\\":null,\\\\\"b\\\\\":\\\\\"3M1Akw2Hb07_PYlfcnWW1\\\\\",\\\\\"p\\\\\":\\\\\"\\\\\",\\\\\"c\\\\\":[\\\\\"\\\\\",\\\\\"legislation\\\\\",\\\\\"laws\\\\\"],\\\\\"i\\\\\":false,\\\\\"f\\\\\":[[[\\\\\"\\\\\",{\\\\\"children\\\\\":[[\\\\\"locale\\\\\",\\\\\"ar\\\\\",\\\\\"d\\\\\"],{\\\\\"children\\\\\":[\\\\\"legislation\\\\\",{\\\\\"children\\\\\":[\\\\\"laws\\\\\",{\\\\\"children\\\\\":[\\\\\"__PAGE__\\\\\",{}]}]}]},\\\\\"$undefined\\\\\",\\\\\"$undefined\\\\\",true]}],[\\\\\"\\\\\",[\\\\\"$\\\\\",\\\\\"$1\\\\\",\\\\\"c\\\\\",{\\\\\"children\\\\\":[null,[\\\\\"$\\\\\",\\\\\"$L2\\\\\",null,{\\\\\"parallelRouterKey\\\\\":\\\\\"children\\\\\",\\\\\"error\\\\\":\\\\\"$undefined\\\\\",\\\\\"errorStyles\\\\\":\\\\\"$undefined\\\\\",\\\\\"errorScripts\\\\\":\\\\\"$undefined\\\\\",\\\\\"template\\\\\":[\\\\\"$\\\\\",\\\\\"$L3\\\\\",null,{}],\\\\\"templateStyles\\\\\":\\\\\"$undefined\\\\\",\\\\\"templateScripts\\\\\":\\\\\"$undefined\\\\\",\\\\\"notFound\\\\\":[[[\\\\\"$\\\\\",\\\\\"title\\\\\",null,{\\\\\"children\\\\\":\\\\\"404: This page could not be found.\\\\\"}],[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"style\\\\\":{\\\\\"fontFamily\\\\\":\\\\\"system-ui,\\\\\\\\\\\\\"Segoe UI\\\\\\\\\\\\\",Roboto,Helvetica,Arial,sans-serif,\\\\\\\\\\\\\"Apple Color Emoji\\\\\\\\\\\\\",\\\\\\\\\\\\\"Segoe UI Emoji\\\\\\\\\\\\\"\\\\\",\\\\\"height\\\\\":\\\\\"100vh\\\\\",\\\\\"textAlign\\\\\":\\\\\"center\\\\\",\\\\\"display\\\\\":\\\\\"flex\\\\\",\\\\\"flexDirection\\\\\":\\\\\"column\\\\\",\\\\\"alignItems\\\\\":\\\\\"center\\\\\",\\\\\"justifyContent\\\\\":\\\\\"center\\\\\"},\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"style\\\\\",null,{\\\\\"dangerouslySetInnerHTML\\\\\":{\\\\\"__html\\\\\":\\\\\"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}\\\\\"}}],[\\\\\"$\\\\\",\\\\\"h1\\\\\",null,{\\\\\"className\\\\\":\\\\\"next-error-h1\\\\\",\\\\\"style\\\\\":{\\\\\"display\\\\\":\\\\\"inline-block\\\\\",\\\\\"margin\\\\\":\\\\\"0 20px 0 0\\\\\",\\\\\"padding\\\\\":\\\\\"0 23px 0 0\\\\\",\\\\\"fontSize\\\\\":24,\\\\\"fontWeight\\\\\":500,\\\\\"verticalAlign\\\\\":\\\\\"top\\\\\",\\\\\"lineHeight\\\\\":\\\\\"49px\\\\\"},\\\\\"children\\\\\":404}],[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"style\\\\\":{\\\\\"display\\\\\":\\\\\"inline-block\\\\\"},\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"h2\\\\\",null,{\\\\\"style\\\\\":{\\\\\"fontSize\\\\\":14,\\\\\"fontWeight\\\\\":400,\\\\\"lineHeight\\\\\":\\\\\"49px\\\\\",\\\\\"margin\\\\\":0},\\\\\"children\\\\\":\\\\\"This page could not be found.\\\\\"}]}]]}]}]],[]],\\\\\"forbidden\\\\\":\\\\\"$undefined\\\\\",\\\\\"unauthorized\\\\\":\\\\\"$undefined\\\\\"}]]}],{\\\\\"children\\\\\":[[\\\\\"locale\\\\\",\\\\\"ar\\\\\",\\\\\"d\\\\\"],[\\\\\"$\\\\\",\\\\\"$1\\\\\",\\\\\"c\\\\\",{\\\\\"children\\\\\":[[[\\\\\"$\\\\\",\\\\\"link\\\\\",\\\\\"0\\\\\",{\\\\\"rel\\\\\":\\\\\"stylesheet\\\\\",\\\\\"href\\\\\":\\\\\"/_next/static/chunks/93a75f8697bed459.css\\\\\",\\\\\"precedence\\\\\":\\\\\"next\\\\\",\\\\\"crossOrigin\\\\\":\\\\\"$undefined\\\\\",\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-0\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/a85149b077c8acb8.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-1\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/9856686dc0d58d81.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-2\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/f9285188d42f0e8f.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-3\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/488342bc67d95ea5.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-4\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/e0755f39e90fb2aa.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}]],\\\\\"$L4\\\\\"]}],{\\\\\"children\\\\\":[\\\\\"legislation\\\\\",[\\\\\"$\\\\\",\\\\\"$1\\\\\",\\\\\"c\\\\\",{\\\\\"children\\\\\":[null,[\\\\\"$\\\\\",\\\\\"$L2\\\\\",null,{\\\\\"parallelRouterKey\\\\\":\\\\\"children\\\\\",\\\\\"error\\\\\":\\\\\"$undefined\\\\\",\\\\\"errorStyles\\\\\":\\\\\"$undefined\\\\\",\\\\\"errorScripts\\\\\":\\\\\"$undefined\\\\\",\\\\\"template\\\\\":[\\\\\"$\\\\\",\\\\\"$L3\\\\\",null,{}],\\\\\"templateStyles\\\\\":\\\\\"$undefined\\\\\",\\\\\"templateScripts\\\\\":\\\\\"$undefined\\\\\",\\\\\"notFound\\\\\":\\\\\"$undefined\\\\\",\\\\\"forbidden\\\\\":\\\\\"$undefined\\\\\",\\\\\"unauthorized\\\\\":\\\\\"$undefined\\\\\"}]]}],{\\\\\"children\\\\\":[\\\\\"laws\\\\\",[\\\\\"$\\\\\",\\\\\"$1\\\\\",\\\\\"c\\\\\",{\\\\\"children\\\\\":[null,[\\\\\"$\\\\\",\\\\\"$L2\\\\\",null,{\\\\\"parallelRouterKey\\\\\":\\\\\"children\\\\\",\\\\\"error\\\\\":\\\\\"$undefined\\\\\",\\\\\"errorStyles\\\\\":\\\\\"$undefined\\\\\",\\\\\"errorScripts\\\\\":\\\\\"$undefined\\\\\",\\\\\"template\\\\\":[\\\\\"$\\\\\",\\\\\"$L3\\\\\",null,{}],\\\\\"templateStyles\\\\\":\\\\\"$undefined\\\\\",\\\\\"templateScripts\\\\\":\\\\\"$undefined\\\\\",\\\\\"notFound\\\\\":\\\\\"$undefined\\\\\",\\\\\"forbidden\\\\\":\\\\\"$undefined\\\\\",\\\\\"unauthorized\\\\\":\\\\\"$undefined\\\\\"}]]}],{\\\\\"children\\\\\":[\\\\\"__PAGE__\\\\\",[\\\\\"$\\\\\",\\\\\"$1\\\\\",\\\\\"c\\\\\",{\\\\\"children\\\\\":[\\\\\"$L5\\\\\",[[\\\\\"$\\\\\",\\\\\"link\\\\\",\\\\\"0\\\\\",{\\\\\"rel\\\\\":\\\\\"stylesheet\\\\\",\\\\\"href\\\\\":\\\\\"/_next/static/chunks/924469fc833dc7b6.css\\\\\",\\\\\"precedence\\\\\":\\\\\"next\\\\\",\\\\\"crossOrigin\\\\\":\\\\\"$undefined\\\\\",\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-0\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/7a0d8e81fa43259c.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}],[\\\\\"$\\\\\",\\\\\"script\\\\\",\\\\\"script-1\\\\\",{\\\\\"src\\\\\":\\\\\"/_next/static/chunks/5ce60ff104e542c4.js\\\\\",\\\\\"async\\\\\":true,\\\\\"nonce\\\\\":\\\\\"$undefined\\\\\"}]],[\\\\\"$\\\\\",\\\\\"$L6\\\\\",null,{\\\\\"children\\\\\":[\\\\\"$L7\\\\\",[\\\\\"$\\\\\",\\\\\"$L8\\\\\",null,{\\\\\"promise\\\\\":\\\\\"$@9\\\\\"}]]}]]}],{},null,false]},null,false]},null,false]},null,false]},null,false],[\\\\\"$\\\\\",\\\\\"$1\\\\\",\\\\\"h\\\\\",{\\\\\"children\\\\\":[null,[[\\\\\"$\\\\\",\\\\\"$La\\\\\",null,{\\\\\"children\\\\\":\\\\\"$Lb\\\\\"}],[\\\\\"$\\\\\",\\\\\"meta\\\\\",null,{\\\\\"name\\\\\":\\\\\"next-size-adjust\\\\\",\\\\\"content\\\\\":\\\\\"\\\\\"}]],[\\\\\"$\\\\\",\\\\\"$Lc\\\\\",null,{\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"hidden\\\\\":true,\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"$d\\\\\",null,{\\\\\"fallback\\\\\":null,\\\\\"children\\\\\":\\\\\"$Le\\\\\"}]}]}]]}],false]],\\\\\"m\\\\\":\\\\\"$undefined\\\\\",\\\\\"G\\\\\":[\\\\\"$f\\\\\",[]],\\\\\"s\\\\\":false,\\\\\"S\\\\\":false}\\\\n\"])</script><script>self.__next_f.push([1,\"4:[\\\\\"$\\\\\",\\\\\"html\\\\\",null,{\\\\\"lang\\\\\":\\\\\"ar\\\\\",\\\\\"dir\\\\\":\\\\\"rtl\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"head\\\\\",null,{\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"link\\\\\",null,{\\\\\"rel\\\\\":\\\\\"apple-touch-icon\\\\\",\\\\\"sizes\\\\\":\\\\\"180x180\\\\\",\\\\\"href\\\\\":\\\\\"/favicon/apple-touch-icon.png\\\\\"}],[\\\\\"$\\\\\",\\\\\"link\\\\\",null,{\\\\\"rel\\\\\":\\\\\"icon\\\\\",\\\\\"type\\\\\":\\\\\"image/png\\\\\",\\\\\"sizes\\\\\":\\\\\"32x32\\\\\",\\\\\"href\\\\\":\\\\\"/favicon/favicon-32x32.png\\\\\"}],[\\\\\"$\\\\\",\\\\\"link\\\\\",null,{\\\\\"rel\\\\\":\\\\\"icon\\\\\",\\\\\"type\\\\\":\\\\\"image/png\\\\\",\\\\\"sizes\\\\\":\\\\\"16x16\\\\\",\\\\\"href\\\\\":\\\\\"/favicon/favicon-16x16.png\\\\\"}],[\\\\\"$\\\\\",\\\\\"link\\\\\",null,{\\\\\"rel\\\\\":\\\\\"manifest\\\\\",\\\\\"href\\\\\":\\\\\"/favicon/site.webmanifest\\\\\"}]]}],[\\\\\"$\\\\\",\\\\\"body\\\\\",null,{\\\\\"children\\\\\":\\\\\"$L10\\\\\"}]]}]\\\\n\"])</script><script>self.__next_f.push([1,\"5:[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"flex flex-col gap-4\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"flex flex-col gap-4 bg-[#13847326] w-full rounded-lg my-10 max-md:my-5 max-sm:my-3 py-5 px-20 max-lg:px-10 max-md:px-5 max-sm:px-3\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"text-sm text-black-200 mb-1 flex max-sm:flex-wrap gap-1\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"span\\\\\",\\\\\"0\\\\\",{\\\\\"className\\\\\":\\\\\"flex items-center gap-1\\\\\",\\\\\"children\\\\\":[\\\\\"$L11\\\\\",[\\\\\"$\\\\\",\\\\\"svg\\\\\",null,{\\\\\"stroke\\\\\":\\\\\"currentColor\\\\\",\\\\\"fill\\\\\":\\\\\"none\\\\\",\\\\\"strokeWidth\\\\\":\\\\\"2\\\\\",\\\\\"viewBox\\\\\":\\\\\"0 0 24 24\\\\\",\\\\\"strokeLinecap\\\\\":\\\\\"round\\\\\",\\\\\"strokeLinejoin\\\\\":\\\\\"round\\\\\",\\\\\"className\\\\\":\\\\\"$undefined\\\\\",\\\\\"children\\\\\":[\\\\\"$undefined\\\\\",[[\\\\\"$\\\\\",\\\\\"polyline\\\\\",\\\\\"0\\\\\",{\\\\\"points\\\\\":\\\\\"15 18 9 12 15 6\\\\\",\\\\\"children\\\\\":[]}]]],\\\\\"style\\\\\":{\\\\\"color\\\\\":\\\\\"$undefined\\\\\"},\\\\\"height\\\\\":16,\\\\\"width\\\\\":16,\\\\\"xmlns\\\\\":\\\\\"http://www.w3.org/2000/svg\\\\\"}]]}],[\\\\\"$\\\\\",\\\\\"span\\\\\",\\\\\"1\\\\\",{\\\\\"className\\\\\":\\\\\"flex items-center gap-1\\\\\",\\\\\"children\\\\\":[\\\\\"$L12\\\\\",[\\\\\"$\\\\\",\\\\\"svg\\\\\",null,{\\\\\"stroke\\\\\":\\\\\"currentColor\\\\\",\\\\\"fill\\\\\":\\\\\"none\\\\\",\\\\\"strokeWidth\\\\\":\\\\\"2\\\\\",\\\\\"viewBox\\\\\":\\\\\"0 0 24 24\\\\\",\\\\\"strokeLinecap\\\\\":\\\\\"round\\\\\",\\\\\"strokeLinejoin\\\\\":\\\\\"round\\\\\",\\\\\"className\\\\\":\\\\\"$undefined\\\\\",\\\\\"children\\\\\":[\\\\\"$undefined\\\\\",[[\\\\\"$\\\\\",\\\\\"polyline\\\\\",\\\\\"0\\\\\",{\\\\\"points\\\\\":\\\\\"15 18 9 12 15 6\\\\\",\\\\\"children\\\\\":[]}]]],\\\\\"style\\\\\":{\\\\\"color\\\\\":\\\\\"$undefined\\\\\"},\\\\\"height\\\\\":16,\\\\\"width\\\\\":16,\\\\\"xmlns\\\\\":\\\\\"http://www.w3.org/2000/svg\\\\\"}]]}],[\\\\\"$\\\\\",\\\\\"span\\\\\",\\\\\"2\\\\\",{\\\\\"className\\\\\":\\\\\"flex items-center gap-1\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"span\\\\\",null,{\\\\\"children\\\\\":\\\\\"القوانين\\\\\"}],false]}]]}],[\\\\\"$\\\\\",\\\\\"h1\\\\\",null,{\\\\\"className\\\\\":\\\\\"text-stone-800 font-bold text-4xl max-lg:text-2xl max-md:text-xl max-sm:text-lg\\\\\",\\\\\"children\\\\\":\\\\\"القوانين\\\\\"}]]}],[\\\\\"$\\\\\",\\\\\"$L13\\\\\",null,{}]]}]\\\\n\"])</script><script>self.__next_f.push([1,\"11:[\\\\\"$\\\\\",\\\\\"$L14\\\\\",null,{\\\\\"ref\\\\\":\\\\\"$undefined\\\\\",\\\\\"href\\\\\":\\\\\"/\\\\\",\\\\\"locale\\\\\":\\\\\"$undefined\\\\\",\\\\\"localeCookie\\\\\":{\\\\\"name\\\\\":\\\\\"NEXT_LOCALE\\\\\",\\\\\"sameSite\\\\\":\\\\\"lax\\\\\"},\\\\\"className\\\\\":\\\\\"hover:underline\\\\\",\\\\\"children\\\\\":\\\\\"الرئيسية\\\\\"}]\\\\n12:[\\\\\"$\\\\\",\\\\\"$L14\\\\\",null,{\\\\\"ref\\\\\":\\\\\"$undefined\\\\\",\\\\\"href\\\\\":\\\\\"/legislation\\\\\",\\\\\"locale\\\\\":\\\\\"$undefined\\\\\",\\\\\"localeCookie\\\\\":\\\\\"$11:props:localeCookie\\\\\",\\\\\"className\\\\\":\\\\\"hover:underline\\\\\",\\\\\"children\\\\\":\\\\\"التشريعات والأدلة\\\\\"}]\\\\n\"])</script><script>self.__next_f.push([1,\"10:[\\\\\"$\\\\\",\\\\\"$L15\\\\\",null,{\\\\\"formats\\\\\":\\\\\"$undefined\\\\\",\\\\\"locale\\\\\":\\\\\"ar\\\\\",\\\\\"messages\\\\\":{\\\\\"home\\\\\":{\\\\\"title\\\\\":\\\\\"الصفحة الرئيسية\\\\\"},\\\\\"magazine\\\\\":{\\\\\"title\\\\\":\\\\\"صفحة المجلة\\\\\"},\\\\\"navigation\\\\\":{\\\\\"home\\\\\":\\\\\"الرئيسية\\\\\",\\\\\"magazine\\\\\":\\\\\"المجلة\\\\\"},\\\\\"news\\\\\":{\\\\\"noNewsFound\\\\\":\\\\\"لا يوجد أخبار\\\\\",\\\\\"readMore\\\\\":\\\\\"اقرأ المزيد\\\\\",\\\\\"readArticle\\\\\":\\\\\"اقرأ الخبر\\\\\",\\\\\"title\\\\\":\\\\\"تعرف على آخر الأخبار\\\\\",\\\\\"filter\\\\\":{\\\\\"title\\\\\":\\\\\"تصفية\\\\\",\\\\\"all\\\\\":\\\\\"الكل\\\\\",\\\\\"local\\\\\":\\\\\"المحلي\\\\\",\\\\\"international\\\\\":\\\\\"الدولي\\\\\"},\\\\\"sort\\\\\":{\\\\\"title\\\\\":\\\\\"ترتيب حسب\\\\\",\\\\\"newest\\\\\":\\\\\"الأحدث\\\\\",\\\\\"oldest\\\\\":\\\\\"الأقدم\\\\\",\\\\\"most-viewed\\\\\":\\\\\"الأكثر مشاهدة\\\\\",\\\\\"least-viewed\\\\\":\\\\\"الأقل مشاهدة\\\\\",\\\\\"asc\\\\\":\\\\\"التاريخ (تصاعدي)\\\\\",\\\\\"desc\\\\\":\\\\\"التاريخ (تنازلي)\\\\\"},\\\\\"latestNews\\\\\":{\\\\\"title\\\\\":\\\\\"آخر الأخبار\\\\\",\\\\\"subtitle\\\\\":\\\\\"تعرف على آخر الأخبار والفعاليات والاعلانات لوزارة الموارد البشرية والتنمية الاجتماعية\\\\\"}},\\\\\"minister\\\\\":{\\\\\"overview\\\\\":{\\\\\"title\\\\\":\\\\\"لمحة عن الوزير\\\\\"},\\\\\"about\\\\\":{\\\\\"title\\\\\":\\\\\"لمحة عن وزارة التنمية الإدارية\\\\\",\\\\\"introduction\\\\\":\\\\\"تأسست وزارة التنمية الإدارية بموجب المرسوم التشريعي رقم /39/ لعام 2014، وحددت مهامها بموجب المرسوم رقم /281/. وفي عام 2018 صدر القانون رقم /28/ الذي حدد مهامها واختصاصاتها وهيكلها التنظيمي.\\\\\",\\\\\"objective\\\\\":{\\\\\"title\\\\\":\\\\\"هدف الوزارة\\\\\",\\\\\"description\\\\\":\\\\\"تنفيذ السياسة العامة للدولة وتوجيهاتها في جميع الأمور المتعلقة بالتنمية الإدارية والإصلاح الإداري، ومنع الفساد ودعم الشفافية المؤسسية لتحقيق التنمية الشاملة والمستدامة. وتعمل الوزارة على تحقيق هذه الأهداف من خلال:\\\\\",\\\\\"items\\\\\":[\\\\\"وضع استراتيجية متكاملة للتنمية والإصلاح الإداري.\\\\\",\\\\\"اقتراح التعديلات التشريعية والتنظيمية لضمان تطوير الخدمات المقدمة للمواطنين وتمكين التنمية والإصلاح الإداري.\\\\\",\\\\\"قياس الأداء الإداري للجهات العامة لتحديد مدى انسجامه مع استراتيجيات التنمية والإصلاح الإداري.\\\\\",\\\\\"دراسة الهيكل التنظيمي الإداري للجهات العامة واقتراح إمكانية الدمج ونقل الصلاحيات وتجنب الازدواجية، بالتعاون والتنسيق مع الجهات المعنية، لضمان زيادة الكفاءة وتحسين الأداء العام.\\\\\",\\\\\"اقتراح واعتماد خطط التنمية والإصلاح الإداري بالتعاون والتنسيق مع الجهات التنفيذية المعنية، وإحالة نتائج التقييم إلى رئيس مجلس الوزراء.\\\\\"]},\\\\\"competencies\\\\\":{\\\\\"title\\\\\":\\\\\"اختصاصات ومهام الوزارة\\\\\",\\\\\"items\\\\\":[\\\\\"مراجعة ودراسة القوانين المنظمة للوظيفة العامة واقتراح تطويرها لضمان تحسين الأداء وجودة الخدمات.\\\\\",\\\\\"مراجعة اللوائح الداخلية والهياكل التنظيمية والوظيفية للجهات العامة واقتراح الأطر العامة لتطويرها.\\\\\",\\\\\"دعم مشاريع التنمية الإدارية بما يتماشى مع استراتيجية التنمية والإصلاح الإداري.\\\\\",\\\\\"اقتراح سياسة الوظيفة العامة ووضع المبادئ والمعايير العامة للترشيح والمسارات الوظيفية والرتب الوظيفية.\\\\\",\\\\\"مراجعة المبادئ الأساسية للمسابقات والاختبارات للتعيين والتعاقد واقتراح الأطر العامة لتطوير أنظمة الترقية والحوافز والتعويضات والمزايا الوظيفية والأداء الفردي للموظفين في الجهات العامة.\\\\\",\\\\\"وضع مؤشرات لقياس وتطوير الأداء الإداري.\\\\\",\\\\\"وضع الأطر العامة لإدارة الموارد البشرية واقتراح برامج تأهيلها وتطويرها وتدريبها وتقييم أدائها.\\\\\",\\\\\"منح التراخيص لمزاولة التدريب الإداري.\\\\\",\\\\\"دراسة معوقات العمل الإداري واقتراح الحلول المناسبة لتبسيط الإجراءات الإدارية.\\\\\",\\\\\"وضع الأطر العامة لمنع الفساد الإداري ودعم الشفافية المؤسسية.\\\\\",\\\\\"دراسة حجم التوظيف في الجهات العامة واقتراح المبادئ والمعايير لسياسات استبدال الوظائف والخروج الآمن.\\\\\",\\\\\"تمكين التفكير الريادي بين الموارد البشرية في الجهات العامة ودعم المبادرات المميزة والابتكارية.\\\\\"]}},\\\\\"strategicDirectionsMap\\\\\":{\\\\\"corporateValues\\\\\":{\\\\\"title\\\\\":\\\\\"القيم المؤسسية\\\\\",\\\\\"values\\\\\":[\\\\\"الكفاءة والتميز المؤسسي\\\\\",\\\\\"الشفافية والمساءلة\\\\\",\\\\\"الابتكار والتكنولوجيا\\\\\",\\\\\"التمكين والمشاركة\\\\\",\\\\\"الالتزام والمسؤولية\\\\\"]},\\\\\"strategicGoals\\\\\":{\\\\\"title\\\\\":\\\\\"الاهداف الاستراتيجية\\\\\",\\\\\"goals\\\\\":[\\\\\"إصلاح شامل للبنية التنظيمية الحكومية لتحقيق الكفاءة والمرونة وتعزيز التكامل بين الجهات العامة.\\\\\",\\\\\"رفع كفاءة الموارد البشرية وتبنّي سياسات حديثة لإدارتها وتأهيلها وتطوير قدراتها.\\\\\",\\\\\"دعم وقياس الأداء المؤسسي لتحسين فعالية العمليات الإدارية وضمان تحقيق الأهداف الاستراتيجية.\\\\\",\\\\\"المشاركة في تحقيق التحول الرقمي الكامل من خلال رقمنة الخدمات الحكومية.\\\\\",\\\\\"زيادة رضا المواطنين عن الخدمات الحكومية.\\\\\"]},\\\\\"workAreas\\\\\":{\\\\\"title\\\\\":\\\\\"محاور العمل\\\\\",\\\\\"introduction\\\\\":\\\\\"في إطار سعي وزارة التنمية الإدارية لتحقيق أهدافها الاستراتيجية وتعزيز دورها في قيادة مسار الإصلاح المؤسسي وضمان نتائج ملموسة تسهم في بناء قطاع عام أكثر كفاءة واستدامة مواكب لمتطلبات التنمية الشاملة، عملت على ترجمة رؤيتها ورسالتها إلى محاور عمل تنفيذية وفق الآتي:\\\\\",\\\\\"areas\\\\\":[{\\\\\"title\\\\\":\\\\\"المحور الأول: محور التنظيم المؤسسي\\\\\",\\\\\"description\\\\\":\\\\\"يهدف هذا المحور إلى بناء جهاز حكومي يتمتع بالمرونة التنظيمية والكفاءة التشغيلية، وتقليص حجم وتعقيد البنى التنظيمية وإزالة التداخل ومنع الازدواجية والتكرار، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"إعادة الهيكلة المؤسسية\\\\\",\\\\\"تطوير بطاقات الوصف الوظيفي\\\\\",\\\\\"تبسيط الإجراءات وتحسين كفاءة العمليات التشغيلية\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور الثاني: محور دعم وقياس الأداء المؤسسي\\\\\",\\\\\"description\\\\\":\\\\\"يهدف هذا المحور إلى تعزيز كفاءة الأداء الحكومي وترسيخ الشفافية المؤسساتية عبر تطوير أنظمة دقيقة لقياس الأداء وتحليل النتائج لضمان تحقيق الأهداف الاستراتيجية وتعزيز كفاءة تقديم الخدمات الحكومية والاستجابة لتطلعات المواطنين وتلبية استحقاقات المصلحة العامة، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"نطوير مؤشرات الأداء وتنفيذ عمليات القياس\\\\\",\\\\\"تعزيز ثقافة قياس الأداء\\\\\",\\\\\"إطلاق منصة موحدة لقياس الأداء\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور الثالث: محور إدارة سجلات العاملين\\\\\",\\\\\"description\\\\\":\\\\\"يهدف هذا المحور إلى تعزيز كفاءة إدارة الموارد البشرية الحكومية عبر تطوير منظومة متكاملة لإدارة بيانات العاملين ونظام معلومات موحد يضمن أتمتة الإجراءات والعمليات الوظيفية وتحليل البيانات لدعم التخطيط الاستراتيجي وتعزيز الكفاءة التشغيلية، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"إنشاء قاعدة بيانات وطنية للموارد البشرية\\\\\",\\\\\"تحليل بيانات القوى العاملة\\\\\",\\\\\"إدارة وتتبع حركة القوى العاملة\\\\\",\\\\\"أتمتة إجراءات الموارد البشرية\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور الرابع: محور تخطيط الموارد البشرية،\\\\\",\\\\\"description\\\\\":\\\\\"البشرية، يمثل هذا المحور حجر الأساس لضمان استدامة الموارد البشرية في المؤسسات الحكومية، ويهدف إلى إرساء منهجية متكاملة لعملية التخطيط الاستراتيجي للقوى العاملة بما يضمن معالجة الفجوات بين الموارد البشرية الحالية والاحتياجات المستقبلية للجهات الحكومية ووضع آليات للتنبؤ بهذه الاحتياجات، وتوفير قاعدة بيانات دقيقة تدعم صنع القرارات الاستراتيجية المتعلقة بالموارد البشرية، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"تأطير عملية تخطيط الموارد البشرية\\\\\",\\\\\"إعداد خطة وطنية شاملة لإدارة الموارد البشرية\\\\\",\\\\\"تحليل الوضع الراهن وإدارة التوازن الوظيفي\\\\\",\\\\\"التنبؤ بالاحتياجات المستقبلية\\\\\",\\\\\"تخطيط سياسات الإحلال الوظيفي\\\\\",\\\\\"إنشاء قواعد بيانات محورية\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور الخامس: محور الاستقطاب والتوظيف\\\\\",\\\\\"description\\\\\":\\\\\"والتوظيف، يهدف هذا المحور إلى تطوير نظام التوظيف الحكومي وتحقيق استقطاب قائم على الجدارة والكفاءة بناءً على معايير موضوعية لتوفير فرص عمل حقيقية، عبر تبني استراتيجيات متطورة تسهم في تعزيز الشفافية وتحقيق العدالة الوظيفية، ورفع مستوى كفاءة الأداء الحكومي، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"إصلاح وتحديث نظام التوظيف الحكومي\\\\\",\\\\\"تعزيز استقطاب الكفاءات\\\\\",\\\\\"تسهيل الوصول إلى فرص العمل الحكومية\\\\\",\\\\\"تطوير سياسات توظيف الكفاءات الشابة\\\\\",\\\\\"تطوير آليات التوظيف الداخلي والنقل والترقية\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور السادس: محور تقييم الموارد البشرية\\\\\",\\\\\"description\\\\\":\\\\\"يشكّل هذا المحور أحد الركائز الأساسية في إدارة الكفاءات الوطنية، ويهدف إلى إرساء منظومة متكاملة لتقييم أداء الموارد البشرية تقيس العلاقة بين كفاءة الأداء والإنجاز وواجبات ومسؤوليات الوظيفة، وتربط النتائج بعمليات تخطيط الموارد البشرية لتصب في مسار التدريب والتأهيل والتطوير الوظيفي، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"إعداد إطار وطني لتقييم الموارد البشرية\\\\\",\\\\\"تنفيذ نظام تقييم متكامل يدعم تطوير الموارد البشرية\\\\\",\\\\\"تحليل النتائج وربطها بالتطوير المؤسسي\\\\\",\\\\\"ربط نتائج التقييم بسياسات الترقية والتحفيز والتطوير\\\\\",\\\\\"رقمنة عمليات تقييم الأداء\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور السابع: محور تطوير الموارد البشرية\\\\\",\\\\\"description\\\\\":\\\\\"يمثّل هذا المحور الركيزة الأساسية في رفع كفاءة أداء الجهاز الحكومي وتحقيق استدامة التطوير، ويهدف إلى تمكين الفكر الريادي وتطوير الأطر والكوادر البشرية وتنمية المهارات وتعزيز القدرات عبر استراتيجيات تدريب مبتكرة تتناسب مع التحديات الراهنة والمستقبلية لضمان تحقيق الأهداف المؤسسية، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"وضع سياسة تدريب الموارد البشرية\\\\\",\\\\\"تنفيذ برامج بناء القدرات\\\\\",\\\\\"تعزيز ثقافة التطوير المستمر\\\\\",\\\\\"تعزيز منظومة الاعتمادية\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور الثامن: محور الأجور والتعويضات\\\\\",\\\\\"description\\\\\":\\\\\"يهدف هذا المحور إلى وضع نظام متكامل وعادل للأجور والرواتب ومعايبر وآليات للتحفيز الوظيفي تربط الاستحقاق بالأداء الفعلي والإنتاجية بما يضمن تشجيع الكفاءات ويحقق العدالة الوظيفية، ويدفع بيئة العمل الحكومية نحو الإنجاز والتميز، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"تطوير نظام عادل للأجور\\\\\",\\\\\"وضع أنظمة التحفيز الوظيفي\\\\\",\\\\\"تنظيم إدارة الأجور والرواتب\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور التاسع: محور تطوير عمل مديريات التنمية الإدارية،\\\\\",\\\\\"description\\\\\":\\\\\"تعتجر مديريات التنمية الإدارية الذراع التنفيذي للتحديث المؤسسي وإدارة وتنمية الموارد البشرية، ويهدف هذا المحور إلى إعادة هيكلة عمل مديريات التنمية الإدارية وفق نموذج مؤسسي موحد يضمن رفع كفاءة تنفيذ المهام، وتحقيق الاتساق والتكامل مع عمل وزارة التنمية الإدارية، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"توحيد الإطار التنظيمي\\\\\",\\\\\"تطوير الهيكل الوظيفي وتعزيز الكفاءة التشغيلية\\\\\",\\\\\"مأسسة إجراءات العمليات التشغيلية الإشراف على تنفيذ التحديث المؤسسي\\\\\"]},{\\\\\"title\\\\\":\\\\\"المحور العاشر: محور إعادة بناء الثقافة المؤسسية\\\\\",\\\\\"description\\\\\":\\\\\"يهدف هذا المحور إلى خلق بيئة عمل داعمة ومحفزة ترفع مستوى ارتباط العاملين بالمؤسسات وتفعل دورهم كشركاء في تحقيق الأهداف الاستراتيجية، عبر إعادة بناء الثقافة المؤسسية وترسيخ الالتزام بالقيم وتعزيز النزاهة والشفافية والانتماء وبالتالي الثقة المتبادلة بين الموظف والإدارة الحكومية، من خلال العمل على:\\\\\",\\\\\"items\\\\\":[\\\\\"ترسيخ القيم المؤسسية وتعزيز الانتماء الوظيفي\\\\\",\\\\\"تعزيز بيئة العمل والحوكمة المؤسسية\\\\\",\\\\\"تعزيز التواصل الداخلي\\\\\",\\\\\"قياس رضا الموظفين كمؤشر لتقييم الأداء المؤسسي\\\\\"]}]}}},\\\\\"successPartners\\\\\":{\\\\\"title\\\\\":\\\\\"شركاء النجاح\\\\\"},\\\\\"laws\\\\\":{\\\\\"title\\\\\":\\\\\"القانون رقم\\\\\"},\\\\\"pdfViewer\\\\\":{\\\\\"page\\\\\":\\\\\"الصفحة\\\\\",\\\\\"of\\\\\":\\\\\"من\\\\\",\\\\\"previous\\\\\":\\\\\"السابق\\\\\",\\\\\"next\\\\\":\\\\\"التالي\\\\\"},\\\\\"footer\\\\\":{\\\\\"description\\\\\":\\\\\"موقع الوزارة الرسمي\\\\\",\\\\\"quickLinks\\\\\":\\\\\"روابط سريعة\\\\\",\\\\\"contactInfo\\\\\":\\\\\"معلومات الاتصال\\\\\",\\\\\"followUs\\\\\":\\\\\"تابعنا على وسائل التواصل الاجتماعي\\\\\",\\\\\"allRightsReserved\\\\\":\\\\\"جميع الحقوق محفوظة - وزارة التنمية الإدارية في سورية\\\\\",\\\\\"aboutUs\\\\\":\\\\\"عن الوزارة\\\\\",\\\\\"services\\\\\":\\\\\"الخدمات\\\\\",\\\\\"news\\\\\":\\\\\"الأخبار\\\\\",\\\\\"contact\\\\\":\\\\\"اتصل بنا\\\\\",\\\\\"phone\\\\\":\\\\\"الهاتف\\\\\",\\\\\"email\\\\\":\\\\\"البريد الإلكتروني\\\\\",\\\\\"address\\\\\":\\\\\"العنوان\\\\\",\\\\\"privacyPolicy\\\\\":\\\\\"سياسة الخصوصية\\\\\",\\\\\"termsConditions\\\\\":\\\\\"الشروط والأحكام\\\\\"},\\\\\"form\\\\\":{\\\\\"search\\\\\":{\\\\\"placeholder\\\\\":\\\\\"ابحث\\\\\",\\\\\"button\\\\\":\\\\\"بحث\\\\\"}},\\\\\"common\\\\\":{\\\\\"seeMore\\\\\":\\\\\"رؤية المزيد\\\\\",\\\\\"damascus\\\\\":\\\\\"دمشق\\\\\"},\\\\\"breadcrumb\\\\\":{\\\\\"home\\\\\":\\\\\"الرئيسية\\\\\",\\\\\"contact\\\\\":\\\\\"تواصل معنا\\\\\",\\\\\"legislation\\\\\":\\\\\"التشريعات والأدلة\\\\\",\\\\\"ministry\\\\\":\\\\\"الوزارة\\\\\",\\\\\"news\\\\\":\\\\\"الأخبار\\\\\",\\\\\"newsEvents\\\\\":\\\\\"الأخبار والفعاليات\\\\\",\\\\\"privacyPolicy\\\\\":\\\\\"سياسة الخصوصية\\\\\",\\\\\"termsConditions\\\\\":\\\\\"الشروط والأحكام\\\\\",\\\\\"faq\\\\\":\\\\\"الأسئلة الشائعة\\\\\",\\\\\"importantLinks\\\\\":\\\\\"الروابط المهمة\\\\\",\\\\\"decrees\\\\\":\\\\\"المراسيم\\\\\",\\\\\"laws\\\\\":\\\\\"القوانين\\\\\",\\\\\"serviceGuides\\\\\":\\\\\"الأدلة الخدمية لوزارة التنمية\\\\\",\\\\\"buildingAndUpdatingInstitutionalStructures\\\\\":\\\\\"بناء وتحديث الهياكل التنظيمية\\\\\",\\\\\"buildingAndUpdatingInstitutionalStructuresDescription\\\\\":\\\\\"الدليل الإرشادي لبناء وتحديث الهياكل التنظيمية في الجهات العامة\\\\\",\\\\\"about\\\\\":\\\\\"عن الوزارة\\\\\",\\\\\"aboutMinister\\\\\":\\\\\"عن الوزير\\\\\",\\\\\"strategicDirectionsMap\\\\\":\\\\\"خارطة الاهداف الاستراتيجية\\\\\"}},\\\\\"now\\\\\":\\\\\"$undefined\\\\\",\\\\\"timeZone\\\\\":\\\\\"UTC\\\\\",\\\\\"children\\\\\":\\\\\"$L16\\\\\"}]\\\\n\"])</script><script>self.__next_f.push([1,\"16:[\\\\\"$\\\\\",\\\\\"$L17\\\\\",null,{\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"w-full max-w-[1920px] mx-auto px-4 sm:px-6 lg:px-8 bg-white transition-all duration-300\\\\\",\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"$L18\\\\\",null,{}]}],[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"w-full h-[1px] bg-black-100\\\\\"}],[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"w-full max-w-[1920px] mx-auto px-4 sm:px-6 lg:px-8 bg-white transition-all duration-300\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"header\\\\\",null,{\\\\\"className\\\\\":\\\\\"bg-[url(\\'/images/background.svg\\')] bg-contain bg-repeat relative\\\\\",\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"w-full flex max-sm:flex-col max-sm:gap-3 items-center max-sm:items-start justify-between py-4\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"flex max-sm:justify-between items-center gap-3 max-sm:w-full\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"$L19\\\\\",null,{\\\\\"href\\\\\":\\\\\"/\\\\\",\\\\\"className\\\\\":\\\\\"inline-flex items-center\\\\\",\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"$L1a\\\\\",null,{\\\\\"src\\\\\":\\\\\"/images/logo.svg\\\\\",\\\\\"alt\\\\\":\\\\\"Logo\\\\\",\\\\\"width\\\\\":280,\\\\\"height\\\\\":100,\\\\\"className\\\\\":\\\\\"w-[280px] max-sm:w-[180px] h-auto\\\\\"}]}],[\\\\\"$\\\\\",\\\\\"$L1b\\\\\",null,{}]]}],[\\\\\"$\\\\\",\\\\\"div\\\\\",null,{\\\\\"className\\\\\":\\\\\"flex max-sm:hidden justify-between items-center gap-3 max-sm:w-full\\\\\",\\\\\"children\\\\\":[[\\\\\"$\\\\\",\\\\\"$L1c\\\\\",null,{}],[\\\\\"$\\\\\",\\\\\"$L1d\\\\\",null,{}]]}]]}]}],[\\\\\"$\\\\\",\\\\\"$L1e\\\\\",null,{}],[\\\\\"$\\\\\",\\\\\"main\\\\\",null,{\\\\\"children\\\\\":[\\\\\"$\\\\\",\\\\\"$L2\\\\\",null,{\\\\\"parallelRouterKey\\\\\":\\\\\"children\\\\\",\\\\\"error\\\\\":\\\\\"$undefined\\\\\",\\\\\"errorStyles\\\\\":\\\\\"$undefined\\\\\",\\\\\"errorScripts\\\\\":\\\\\"$undefined\\\\\",\\\\\"template\\\\\":[\\\\\"$\\\\\",\\\\\"$L3\\\\\",null,{}],\\\\\"templateStyles\\\\\":\\\\\"$undefined\\\\\",\\\\\"templateScripts\\\\\":\\\\\"$undefined\\\\\",\\\\\"notFound\\\\\":\\\\\"$undefined\\\\\",\\\\\"forbidden\\\\\":\\\\\"$undefined\\\\\",\\\\\"unauthorized\\\\\":\\\\\"$undefined\\\\\"}]}],[\\\\\"$\\\\\",\\\\\"$L1f\\\\\",null,{}]]}]]}]\\\\n\"])</script><script>self.__next_f.push([1,\"b:[[\\\\\"$\\\\\",\\\\\"meta\\\\\",\\\\\"0\\\\\",{\\\\\"charSet\\\\\":\\\\\"utf-8\\\\\"}],[\\\\\"$\\\\\",\\\\\"meta\\\\\",\\\\\"1\\\\\",{\\\\\"name\\\\\":\\\\\"viewport\\\\\",\\\\\"content\\\\\":\\\\\"width=device-width, initial-scale=1\\\\\"}]]\\\\n7:null\\\\n9:{\\\\\"metadata\\\\\":[[\\\\\"$\\\\\",\\\\\"title\\\\\",\\\\\"0\\\\\",{\\\\\"children\\\\\":\\\\\"Ministry of Administration Development\\\\\"}],[\\\\\"$\\\\\",\\\\\"meta\\\\\",\\\\\"1\\\\\",{\\\\\"name\\\\\":\\\\\"description\\\\\",\\\\\"content\\\\\":\\\\\"Generated by create next app\\\\\"}]],\\\\\"error\\\\\":null,\\\\\"digest\\\\\":\\\\\"$undefined\\\\\"}\\\\ne:\\\\\"$9:metadata\\\\\"\\\\n\"])</script></body></html>'"
],
"application/vnd.google.colaboratory.intrinsic+json": {
"type": "string"
}
},
"metadata": {},
"execution_count": 7
}
]
},
{
"cell_type": "code",
"source": [
"import json\n",
"import requests\n",
"from datetime import datetime\n",
"\n",
"# الرابط المستهدف\n",
"url = \"https://moad.gov.sy/legislation/laws\"\n",
"\n",
"# طلب البيانات\n",
"ra1 = requests.get(url)\n",
"ra1.encoding = 'utf-8' # لضمان قراءة اللغة العربية بشكل صحيح\n",
"\n",
"# تجهيز البيانات للهيكل المطلوب\n",
"data_to_save = {\n",
" \"Url\": url,\n",
" \"Text\": ra1.text,\n",
" \"Timestamp\": datetime.now().isoformat()\n",
"}\n",
"\n",
"# حفظ البيانات في ملف json\n",
"with open('moad_data.json', 'w', encoding='utf-8') as f:\n",
" json.dump(data_to_save, f, ensure_ascii=False, indent=4)\n",
"\n",
"print(\"تم حفظ الملف بنجاح باسم moad_data.json\")"
],
"metadata": {
"id": "9Qzr701vi1Cm",
"colab": {
"base_uri": "https://localhost:8080/"
},
"outputId": "0eece0ac-1437-47a8-f43c-963ed138d80a"
},
"execution_count": 8,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"تم حفظ الملف بنجاح باسم moad_data.json\n"
]
}
]
},
{
"cell_type": "code",
"source": [
"import requests\n",
"import json\n",
"from datetime import datetime\n",
"import time\n",
"\n",
"# قائمة الروابط التي زودتني بها\n",
"urls = [\n",
" \"https://moad.gov.sy/\",\n",
" \"https://moad.gov.sy/\",\n",
" \"https://moad.gov.sy/ar/ministry/about\",\n",
" \"https://moad.gov.sy/ar/ministry/minister\",\n",
" \"https://moad.gov.sy/ar/ministry/strategic-directions-map\",\n",
" \"https://moad.gov.sy/ar/legislation/laws\",\n",
" \"https://moad.gov.sy/ar/legislation/decrees\",\n",
" \"https://moad.gov.sy/ar/legislation/service-guides\",\n",
" \"https://moad.gov.sy/news\",\n",
" \"https://moad.gov.sy/ar/contact/faq\",\n",
" \"https://moad.gov.sy/ar/contact/important-links\",\n",
" \"https://moad.gov.sy/ar/ministry\",\n",
" \"https://moad.gov.sy/ar/legislation\",\n",
" \"https://moad.gov.sy/ar/news\",\n",
"\" https://moad.gov.sy/ar/contact\",\n",
"\" https://moad.gov.sy/contact/faq\",\n",
" \"https://moad.gov.sy/contact\",\n",
" \"https://moad.gov.sy/contact/important-links\",\n",
" \"https://moad.gov.sy/ministry/about\",\n",
" \"https://moad.gov.sy/ministry\",\n",
" \"https://moad.gov.sy/ministry/minister\",\n",
"\" https://moad.gov.sy/legislation\",\n",
" \"https://moad.gov.sy/legislation/laws\",\n",
" \"https://moad.gov.sy/legislation/decrees\",\n",
" \"https://moad.gov.sy/legislation/decrees/42\",\n",
" \"https://moad.gov.sy/ar/privacy-policy\",\n",
" \"https://moad.gov.sy/ar/terms-conditions\",\n",
" \"https://moad.gov.sy/legislation/decrees/43\",\n",
" \"https://moad.gov.sy/legislation/decrees/46\",\n",
" \"https://moad.gov.sy/legislation/service-guides\",\n",
" \"https://moad.gov.sy/legislation/service-guides/building-and-updating-institutional-structures\",\n",
" \"https://moad.gov.sy/ministry/strategic-directions-map\"\n",
"\n",
"]\n",
"\n",
"# إزالة التكرار من الروابط لضمان عدم سحب نفس الصفحة مرتين\n",
"urls = list(set(urls))\n",
"\n",
"all_data = []\n",
"\n",
"print(f\"جاري بدء عملية السحب لـ {len(urls)} رابط...\")\n",
"\n",
"for url in urls:\n",
" try:\n",
" print(f\"يتم الآن سحب: {url}\")\n",
"\n",
" response = requests.get(url, timeout=10)\n",
" response.encoding = 'utf-8' # لضمان دعم اللغة العربية\n",
"\n",
" if response.status_code == 200:\n",
" entry = {\n",
" \"Url\": url,\n",
" \"Text\": response.text,\n",
" \"Timestamp\": datetime.now().isoformat()\n",
" }\n",
" all_data.append(entry)\n",
" else:\n",
" print(f\"فشل السحب من {url} - رمز الحالة: {response.status_code}\")\n",
"\n",
" # تأخير بسيط (ثانية واحدة) لتجنب حظر السيرفر لعنوانك (IP)\n",
" time.sleep(1)\n",
"\n",
" except Exception as e:\n",
" print(f\"حدث خطأ أثناء سحب {url}: {e}\")\n",
"\n",
"# حفظ كل البيانات في ملف واحد\n",
"with open('moad_full_scrape.json', 'w', encoding='utf-8') as f:\n",
" json.dump(all_data, f, ensure_ascii=False, indent=4)\n",
"\n",
"print(\"-\" * 30)\n",
"print(f\"تمت العملية بنجاح! تم حفظ {len(all_data)} سجل في ملف moad_full_scrape.json\")"
],
"metadata": {
"colab": {
"base_uri": "https://localhost:8080/"
},
"id": "Vtms8qkqoZpK",
"outputId": "b31ff62f-595c-4d8c-9228-3df40dbcf3ea"
},
"execution_count": 9,
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"جاري بدء عملية السحب لـ 31 رابط...\n",
"يتم الآن سحب: https://moad.gov.sy/ar/contact/important-links\n",
"يتم الآن سحب: https://moad.gov.sy/ar/contact\n",
"يتم الآن سحب: https://moad.gov.sy/ar/ministry/about\n",
"يتم الآن سحب: https://moad.gov.sy/ar/ministry/minister\n",
"يتم الآن سحب: https://moad.gov.sy/ar/contact/faq\n",
"يتم الآن سحب: https://moad.gov.sy/legislation/decrees/42\n",
"يتم الآن سحب: https://moad.gov.sy/legislation/laws\n",
"فشل السحب من https://moad.gov.sy/legislation/laws - رمز الحالة: 500\n",
"يتم الآن سحب: https://moad.gov.sy/ar/legislation\n",
"يتم الآن سحب: https://moad.gov.sy/ar/legislation/decrees\n",
"يتم الآن سحب: https://moad.gov.sy/ar/legislation/laws\n",
"فشل السحب من https://moad.gov.sy/ar/legislation/laws - رمز الحالة: 500\n",
"يتم الآن سحب: https://moad.gov.sy/ministry\n",
"يتم الآن سحب: https://moad.gov.sy/contact/important-links\n",
"يتم الآن سحب: https://moad.gov.sy/ministry/minister\n",
"يتم الآن سحب: https://moad.gov.sy/ar/ministry\n",
"يتم الآن سحب: https://moad.gov.sy/ar/terms-conditions\n",
"يتم الآن سحب: https://moad.gov.sy/ar/news\n",
"فشل السحب من https://moad.gov.sy/ar/news - رمز الحالة: 500\n",
"يتم الآن سحب: https://moad.gov.sy/ar/privacy-policy\n",
"يتم الآن سحب: https://moad.gov.sy/legislation/service-guides/building-and-updating-institutional-structures\n",
"فشل السحب من https://moad.gov.sy/legislation/service-guides/building-and-updating-institutional-structures - رمز الحالة: 500\n",
"يتم الآن سحب: https://moad.gov.sy/ministry/strategic-directions-map\n",
"يتم الآن سحب: https://moad.gov.sy/contact/faq\n",
"يتم الآن سحب: https://moad.gov.sy/contact\n",
"يتم الآن سحب: https://moad.gov.sy/legislation/service-guides\n",
"يتم الآن سحب: https://moad.gov.sy/legislation/decrees\n",
"يتم الآن سحب: https://moad.gov.sy/news\n",
"فشل السحب من https://moad.gov.sy/news - رمز الحالة: 500\n",
"يتم الآن سحب: https://moad.gov.sy/ar/legislation/service-guides\n",
"يتم الآن سحب: https://moad.gov.sy/legislation/decrees/43\n",
"يتم الآن سحب: https://moad.gov.sy/legislation\n",
"يتم الآن سحب: https://moad.gov.sy/ar/ministry/strategic-directions-map\n",
"يتم الآن سحب: https://moad.gov.sy/legislation/decrees/46\n",
"يتم الآن سحب: https://moad.gov.sy/\n",
"يتم الآن سحب: https://moad.gov.sy/ministry/about\n",
"------------------------------\n",
"تمت العملية بنجاح! تم حفظ 26 سجل في ملف moad_full_scrape.json\n"
]
}
]
},
{
"cell_type": "code",
"source": [],
"metadata": {
"id": "rYpoKbtpqxv2"
},
"execution_count": null,
"outputs": []
}
]
}