diff --git a/exercicios/para-sala/Banco de dados.ipynb b/exercicios/para-sala/Banco de dados.ipynb deleted file mode 100644 index e8f8484..0000000 --- a/exercicios/para-sala/Banco de dados.ipynb +++ /dev/null @@ -1,145 +0,0 @@ -{ - "cells": [ - { - "cell_type": "markdown", - "id": "3fb51551", - "metadata": {}, - "source": [ - "## Banco de dados" - ] - }, - { - "cell_type": "code", - "execution_count": 1, - "id": "6f065d6e", - "metadata": {}, - "outputs": [], - "source": [ - "import csv\n", - "import sqlite3" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "a7aa9973", - "metadata": {}, - "outputs": [], - "source": [ - "file = open(\"youtubers_df.csv\", encoding= 'UTF-8') " - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "eaaee9c6", - "metadata": {}, - "outputs": [], - "source": [ - "conteudo = csv.reader(file)\n", - "\n", - "connection = sqlite3.connect(\"banco_influencers.db\")\n", - "\n", - "cursor = connection.cursor()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "25d07ce5", - "metadata": {}, - "outputs": [], - "source": [ - "\n", - "cursor.execute('''CREATE TABLE IF NOT EXISTS rank (\n", - " Rank INT,\n", - " Username VARCHAR,\n", - " Categories VARCHAR, \n", - " Suscribers FLOAT,\n", - " Country VARCHAR,\n", - " Visits FLOAR,\n", - " Likes FLOAT,\n", - " Comments FLOAT,\n", - " Links VARCHAR\n", - " \n", - ")''')" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "8a047292", - "metadata": {}, - "outputs": [], - "source": [ - "\n", - "inserir_conteudo = \"INSERT INTO rank (Rank,Username,Categories,Suscribers,Country,Visits,Likes,Comments,Links)VALUES(?, ?, ?, ?, ?, ?, ?, ?, ?)\"\n", - "\n", - "cursor.executemany(inserir_conteudo, conteudo)\n", - "\n" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "51ed46b3", - "metadata": {}, - "outputs": [], - "source": [ - "selecionar_tudo = \"SELECT * FROM rank\"\n", - "entradas = cursor.execute(selecionar_tudo).fetchall()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "f30ba732", - "metadata": {}, - "outputs": [], - "source": [ - "for entrada in entradas:\n", - " print(entrada)" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "a7dcca72", - "metadata": {}, - "outputs": [], - "source": [ - "connection.commit()\n", - "connection.close()" - ] - }, - { - "cell_type": "code", - "execution_count": null, - "id": "676a9111", - "metadata": {}, - "outputs": [], - "source": [] - } - ], - "metadata": { - "kernelspec": { - "display_name": "Python 3 (ipykernel)", - "language": "python", - "name": "python3" - }, - "language_info": { - "codemirror_mode": { - "name": "ipython", - "version": 3 - }, - "file_extension": ".py", - "mimetype": "text/x-python", - "name": "python", - "nbconvert_exporter": "python", - "pygments_lexer": "ipython3", - "version": "3.9.7" - } - }, - "nbformat": 4, - "nbformat_minor": 5 -} diff --git a/exercicios/para-sala/arquivo.pd b/exercicios/para-sala/arquivo.pd new file mode 100644 index 0000000..e69de29 diff --git a/exercicios/para-sala/banco_estruturasDemolidas.db b/exercicios/para-sala/banco_estruturasDemolidas.db new file mode 100644 index 0000000..b72ba87 Binary files /dev/null and b/exercicios/para-sala/banco_estruturasDemolidas.db differ diff --git a/exercicios/para-sala/bdprojetoguiado.ipynb b/exercicios/para-sala/bdprojetoguiado.ipynb new file mode 100644 index 0000000..a396604 --- /dev/null +++ b/exercicios/para-sala/bdprojetoguiado.ipynb @@ -0,0 +1,182 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "id": "3fb51551", + "metadata": {}, + "source": [ + "## Banco de dados" + ] + }, + { + "cell_type": "code", + "execution_count": 1, + "id": "6f065d6e", + "metadata": {}, + "outputs": [], + "source": [ + "import csv\n", + "import sqlite3" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "a7aa9973", + "metadata": {}, + "outputs": [], + "source": [ + "file = open(\"demolitions_pse_isr_conflict_2004-01_to_2023-08.csv\", encoding= 'UTF-8') " + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "eaaee9c6", + "metadata": {}, + "outputs": [], + "source": [ + "conteudo = csv.reader(\"demolitions_pse_isr_conflict_2004-01_to_2023-08.csv\")\n", + "\n", + "connection = sqlite3.connect(\"banco_estruturasDemolidas.db\")\n", + "\n", + "cursor = connection.cursor()" + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "25d07ce5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 6, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "cursor.execute('''CREATE TABLE IF NOT EXISTS rank (\n", + " Locality VARCHAR,\n", + " District VARCHAR,\n", + " Housing_Units VARCHAR, \n", + " People_left_homeless INT,\n", + " Minors_left_homeless INT,\n", + " Type_of_structure VARCHAR,\n", + " Reason_for_demolition VARCHAR\n", + " \n", + ")''')" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "8a047292", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "\n", + "inserir_conteudo = \"INSERT INTO rank (Locality,District,Housing_Units,People_left_homeless,Minors_left_homeless,Type_of_structure,Reason_for_demolition)VALUES(?, ?, ?, ?, ?, ?, ?)\"\n", + "Locality = \"Localidade\"\n", + "District = \"Distrito\"\n", + "Housing_Units = \"Unidade Habitacional\"\n", + "People_left_homeless = 5763\n", + "Minors_left_homeless = 5763\n", + "Type_of_structure = \"Tipo de Estrutura\"\n", + "Reason_for_demolition = \"Motivo\"\n", + "\n", + "valores = (Locality, District, Housing_Units, People_left_homeless, Minors_left_homeless, Type_of_structure, Reason_for_demolition)\n", + "\n", + "cursor.executemany(inserir_conteudo, [valores])\n", + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "51ed46b3", + "metadata": {}, + "outputs": [], + "source": [ + "selecionar_tudo = \"SELECT * FROM rank\"\n", + "entradas = cursor.execute(selecionar_tudo).fetchall()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "f30ba732", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('Localidade', 'Distrito', 'Unidade Habitacional', 5763, 5763, 'Tipo de Estrutura', 'Motivo')\n" + ] + } + ], + "source": [ + "for entrada in entradas:\n", + " print(entrada)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "a7dcca72", + "metadata": {}, + "outputs": [], + "source": [ + "connection.commit()\n", + "connection.close()" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "676a9111", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.11" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/exercicios/para-sala/combustiveis.ipynb b/exercicios/para-sala/combustiveis.ipynb index 1a501bf..20be969 100644 --- a/exercicios/para-sala/combustiveis.ipynb +++ b/exercicios/para-sala/combustiveis.ipynb @@ -1,22 +1,8 @@ { - "nbformat": 4, - "nbformat_minor": 0, - "metadata": { - "colab": { - "provenance": [] - }, - "kernelspec": { - "name": "python3", - "display_name": "Python 3" - }, - "language_info": { - "name": "python" - } - }, "cells": [ { "cell_type": "code", - "execution_count": 2, + "execution_count": 1, "metadata": { "id": "xqqOo15Rqt2X" }, @@ -28,292 +14,332 @@ }, { "cell_type": "code", - "source": [ - "df = pd.read_csv(\"/content/drive/MyDrive/Semana13 Python/combustiveis-brasil.csv\", sep=\",\" , encoding= 'UTF-8')" - ], + "execution_count": 2, "metadata": { "id": "xnQuP9ubq3Tv" }, - "execution_count": 3, - "outputs": [] + "outputs": [ + { + "ename": "FileNotFoundError", + "evalue": "[Errno 2] No such file or directory: '/content/drive/MyDrive/Semana13 Python/combustiveis-brasil.csv'", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mFileNotFoundError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32mc:\\Users\\jheni\\on26-python-s13-projeto-guiado-II\\exercicios\\para-sala\\combustiveis.ipynb Cell 2\u001b[0m line \u001b[0;36m1\n\u001b[1;32m----> 1\u001b[0m df \u001b[39m=\u001b[39m pd\u001b[39m.\u001b[39;49mread_csv(\u001b[39m\"\u001b[39;49m\u001b[39m/content/drive/MyDrive/Semana13 Python/combustiveis-brasil.csv\u001b[39;49m\u001b[39m\"\u001b[39;49m, sep\u001b[39m=\u001b[39;49m\u001b[39m\"\u001b[39;49m\u001b[39m,\u001b[39;49m\u001b[39m\"\u001b[39;49m , encoding\u001b[39m=\u001b[39;49m \u001b[39m'\u001b[39;49m\u001b[39mUTF-8\u001b[39;49m\u001b[39m'\u001b[39;49m)\n", + "File \u001b[1;32m~\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python310\\site-packages\\pandas\\io\\parsers\\readers.py:948\u001b[0m, in \u001b[0;36mread_csv\u001b[1;34m(filepath_or_buffer, sep, delimiter, header, names, index_col, usecols, dtype, engine, converters, true_values, false_values, skipinitialspace, skiprows, skipfooter, nrows, na_values, keep_default_na, na_filter, verbose, skip_blank_lines, parse_dates, infer_datetime_format, keep_date_col, date_parser, date_format, dayfirst, cache_dates, iterator, chunksize, compression, thousands, decimal, lineterminator, quotechar, quoting, doublequote, escapechar, comment, encoding, encoding_errors, dialect, on_bad_lines, delim_whitespace, low_memory, memory_map, float_precision, storage_options, dtype_backend)\u001b[0m\n\u001b[0;32m 935\u001b[0m kwds_defaults \u001b[39m=\u001b[39m _refine_defaults_read(\n\u001b[0;32m 936\u001b[0m dialect,\n\u001b[0;32m 937\u001b[0m delimiter,\n\u001b[1;32m (...)\u001b[0m\n\u001b[0;32m 944\u001b[0m dtype_backend\u001b[39m=\u001b[39mdtype_backend,\n\u001b[0;32m 945\u001b[0m )\n\u001b[0;32m 946\u001b[0m kwds\u001b[39m.\u001b[39mupdate(kwds_defaults)\n\u001b[1;32m--> 948\u001b[0m \u001b[39mreturn\u001b[39;00m _read(filepath_or_buffer, kwds)\n", + "File \u001b[1;32m~\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python310\\site-packages\\pandas\\io\\parsers\\readers.py:611\u001b[0m, in \u001b[0;36m_read\u001b[1;34m(filepath_or_buffer, kwds)\u001b[0m\n\u001b[0;32m 608\u001b[0m _validate_names(kwds\u001b[39m.\u001b[39mget(\u001b[39m\"\u001b[39m\u001b[39mnames\u001b[39m\u001b[39m\"\u001b[39m, \u001b[39mNone\u001b[39;00m))\n\u001b[0;32m 610\u001b[0m \u001b[39m# Create the parser.\u001b[39;00m\n\u001b[1;32m--> 611\u001b[0m parser \u001b[39m=\u001b[39m TextFileReader(filepath_or_buffer, \u001b[39m*\u001b[39m\u001b[39m*\u001b[39mkwds)\n\u001b[0;32m 613\u001b[0m \u001b[39mif\u001b[39;00m chunksize \u001b[39mor\u001b[39;00m iterator:\n\u001b[0;32m 614\u001b[0m \u001b[39mreturn\u001b[39;00m parser\n", + "File \u001b[1;32m~\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python310\\site-packages\\pandas\\io\\parsers\\readers.py:1448\u001b[0m, in \u001b[0;36mTextFileReader.__init__\u001b[1;34m(self, f, engine, **kwds)\u001b[0m\n\u001b[0;32m 1445\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39moptions[\u001b[39m\"\u001b[39m\u001b[39mhas_index_names\u001b[39m\u001b[39m\"\u001b[39m] \u001b[39m=\u001b[39m kwds[\u001b[39m\"\u001b[39m\u001b[39mhas_index_names\u001b[39m\u001b[39m\"\u001b[39m]\n\u001b[0;32m 1447\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mhandles: IOHandles \u001b[39m|\u001b[39m \u001b[39mNone\u001b[39;00m \u001b[39m=\u001b[39m \u001b[39mNone\u001b[39;00m\n\u001b[1;32m-> 1448\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39m_engine \u001b[39m=\u001b[39m \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49m_make_engine(f, \u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49mengine)\n", + "File \u001b[1;32m~\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python310\\site-packages\\pandas\\io\\parsers\\readers.py:1705\u001b[0m, in \u001b[0;36mTextFileReader._make_engine\u001b[1;34m(self, f, engine)\u001b[0m\n\u001b[0;32m 1703\u001b[0m \u001b[39mif\u001b[39;00m \u001b[39m\"\u001b[39m\u001b[39mb\u001b[39m\u001b[39m\"\u001b[39m \u001b[39mnot\u001b[39;00m \u001b[39min\u001b[39;00m mode:\n\u001b[0;32m 1704\u001b[0m mode \u001b[39m+\u001b[39m\u001b[39m=\u001b[39m \u001b[39m\"\u001b[39m\u001b[39mb\u001b[39m\u001b[39m\"\u001b[39m\n\u001b[1;32m-> 1705\u001b[0m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mhandles \u001b[39m=\u001b[39m get_handle(\n\u001b[0;32m 1706\u001b[0m f,\n\u001b[0;32m 1707\u001b[0m mode,\n\u001b[0;32m 1708\u001b[0m encoding\u001b[39m=\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49moptions\u001b[39m.\u001b[39;49mget(\u001b[39m\"\u001b[39;49m\u001b[39mencoding\u001b[39;49m\u001b[39m\"\u001b[39;49m, \u001b[39mNone\u001b[39;49;00m),\n\u001b[0;32m 1709\u001b[0m compression\u001b[39m=\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49moptions\u001b[39m.\u001b[39;49mget(\u001b[39m\"\u001b[39;49m\u001b[39mcompression\u001b[39;49m\u001b[39m\"\u001b[39;49m, \u001b[39mNone\u001b[39;49;00m),\n\u001b[0;32m 1710\u001b[0m memory_map\u001b[39m=\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49moptions\u001b[39m.\u001b[39;49mget(\u001b[39m\"\u001b[39;49m\u001b[39mmemory_map\u001b[39;49m\u001b[39m\"\u001b[39;49m, \u001b[39mFalse\u001b[39;49;00m),\n\u001b[0;32m 1711\u001b[0m is_text\u001b[39m=\u001b[39;49mis_text,\n\u001b[0;32m 1712\u001b[0m errors\u001b[39m=\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49moptions\u001b[39m.\u001b[39;49mget(\u001b[39m\"\u001b[39;49m\u001b[39mencoding_errors\u001b[39;49m\u001b[39m\"\u001b[39;49m, \u001b[39m\"\u001b[39;49m\u001b[39mstrict\u001b[39;49m\u001b[39m\"\u001b[39;49m),\n\u001b[0;32m 1713\u001b[0m storage_options\u001b[39m=\u001b[39;49m\u001b[39mself\u001b[39;49m\u001b[39m.\u001b[39;49moptions\u001b[39m.\u001b[39;49mget(\u001b[39m\"\u001b[39;49m\u001b[39mstorage_options\u001b[39;49m\u001b[39m\"\u001b[39;49m, \u001b[39mNone\u001b[39;49;00m),\n\u001b[0;32m 1714\u001b[0m )\n\u001b[0;32m 1715\u001b[0m \u001b[39massert\u001b[39;00m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mhandles \u001b[39mis\u001b[39;00m \u001b[39mnot\u001b[39;00m \u001b[39mNone\u001b[39;00m\n\u001b[0;32m 1716\u001b[0m f \u001b[39m=\u001b[39m \u001b[39mself\u001b[39m\u001b[39m.\u001b[39mhandles\u001b[39m.\u001b[39mhandle\n", + "File \u001b[1;32m~\\AppData\\Local\\Packages\\PythonSoftwareFoundation.Python.3.10_qbz5n2kfra8p0\\LocalCache\\local-packages\\Python310\\site-packages\\pandas\\io\\common.py:863\u001b[0m, in \u001b[0;36mget_handle\u001b[1;34m(path_or_buf, mode, encoding, compression, memory_map, is_text, errors, storage_options)\u001b[0m\n\u001b[0;32m 858\u001b[0m \u001b[39melif\u001b[39;00m \u001b[39misinstance\u001b[39m(handle, \u001b[39mstr\u001b[39m):\n\u001b[0;32m 859\u001b[0m \u001b[39m# Check whether the filename is to be opened in binary mode.\u001b[39;00m\n\u001b[0;32m 860\u001b[0m \u001b[39m# Binary mode does not support 'encoding' and 'newline'.\u001b[39;00m\n\u001b[0;32m 861\u001b[0m \u001b[39mif\u001b[39;00m ioargs\u001b[39m.\u001b[39mencoding \u001b[39mand\u001b[39;00m \u001b[39m\"\u001b[39m\u001b[39mb\u001b[39m\u001b[39m\"\u001b[39m \u001b[39mnot\u001b[39;00m \u001b[39min\u001b[39;00m ioargs\u001b[39m.\u001b[39mmode:\n\u001b[0;32m 862\u001b[0m \u001b[39m# Encoding\u001b[39;00m\n\u001b[1;32m--> 863\u001b[0m handle \u001b[39m=\u001b[39m \u001b[39mopen\u001b[39;49m(\n\u001b[0;32m 864\u001b[0m handle,\n\u001b[0;32m 865\u001b[0m ioargs\u001b[39m.\u001b[39;49mmode,\n\u001b[0;32m 866\u001b[0m encoding\u001b[39m=\u001b[39;49mioargs\u001b[39m.\u001b[39;49mencoding,\n\u001b[0;32m 867\u001b[0m errors\u001b[39m=\u001b[39;49merrors,\n\u001b[0;32m 868\u001b[0m newline\u001b[39m=\u001b[39;49m\u001b[39m\"\u001b[39;49m\u001b[39m\"\u001b[39;49m,\n\u001b[0;32m 869\u001b[0m )\n\u001b[0;32m 870\u001b[0m \u001b[39melse\u001b[39;00m:\n\u001b[0;32m 871\u001b[0m \u001b[39m# Binary mode\u001b[39;00m\n\u001b[0;32m 872\u001b[0m handle \u001b[39m=\u001b[39m \u001b[39mopen\u001b[39m(handle, ioargs\u001b[39m.\u001b[39mmode)\n", + "\u001b[1;31mFileNotFoundError\u001b[0m: [Errno 2] No such file or directory: '/content/drive/MyDrive/Semana13 Python/combustiveis-brasil.csv'" + ] + } + ], + "source": [ + "df = pd.read_csv(\"/content/drive/MyDrive/Semana13 Python/combustiveis-brasil.csv\", sep=\",\" , encoding= 'UTF-8')" + ] }, { "cell_type": "code", - "source": [ - "print(type(df))" - ], + "execution_count": null, "metadata": { "id": "p5A7pooLq3dS" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "print(type(df))" + ] }, { "cell_type": "code", - "source": [ - "df.dtypes" - ], + "execution_count": null, "metadata": { "id": "UFGDtGqQq3gC" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "df.dtypes" + ] }, { "cell_type": "code", - "source": [ - "df.info()" - ], + "execution_count": null, "metadata": { "id": "f_nyYGv8q3jG" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "df.info()" + ] }, { "cell_type": "code", - "source": [ - "df.head(10)" - ], + "execution_count": null, "metadata": { "id": "0DwlSObYq3l0" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "df.head(10)" + ] }, { "cell_type": "code", - "source": [ - "df.shape" - ], + "execution_count": null, "metadata": { "id": "WFowxdmjq3oW" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "df.shape" + ] }, { "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "EhteNqiftc0l" + }, + "outputs": [], "source": [ "#contar nulos\n", "contagem_nulos = df['gasolina_aditivada_preco_revenda_avg'].isnull().sum()\n", "print(contagem_nulos)" - ], - "metadata": { - "id": "EhteNqiftc0l" - }, - "execution_count": null, - "outputs": [] + ] }, { "cell_type": "code", - "source": [ - "pd.set_option('display.max_colwidth', None) # Isso remove o limite de truncamento\n", - "print(df['gasolina_aditivada_preco_revenda_avg'])" - ], + "execution_count": null, "metadata": { "id": "hOnx6up_tc8A" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "pd.set_option('display.max_colwidth', None) # Isso remove o limite de truncamento\n", + "print(df['gasolina_aditivada_preco_revenda_avg'])" + ] }, { "cell_type": "code", - "source": [ - "# remover as letras da coluna\n", - "df['gasolina_aditivada_preco_revenda_avg'] = df['gasolina_aditivada_preco_revenda_avg'].str.replace('[a-zA-Z]', '', regex=True)" - ], + "execution_count": null, "metadata": { "id": "Anbnmd7gtc-5" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "# remover as letras da coluna\n", + "df['gasolina_aditivada_preco_revenda_avg'] = df['gasolina_aditivada_preco_revenda_avg'].str.replace('[a-zA-Z]', '', regex=True)" + ] }, { "cell_type": "code", - "source": [ - "pd.set_option('display.max_colwidth', None)\n", - "print(df['gasolina_aditivada_preco_revenda_avg'])" - ], + "execution_count": null, "metadata": { "id": "v4tBcM_Buk76" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "pd.set_option('display.max_colwidth', None)\n", + "print(df['gasolina_aditivada_preco_revenda_avg'])" + ] }, { "cell_type": "code", - "source": [ - "# remover os tracinhos da coluna\n", - "df['gasolina_aditivada_preco_revenda_avg'] = df['gasolina_aditivada_preco_revenda_avg'].str.replace('-', '', regex=False)\n" - ], + "execution_count": null, "metadata": { "id": "rQ27G55Nuk-d" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "# remover os tracinhos da coluna\n", + "df['gasolina_aditivada_preco_revenda_avg'] = df['gasolina_aditivada_preco_revenda_avg'].str.replace('-', '', regex=False)\n" + ] }, { "cell_type": "code", - "source": [ - "pd.set_option('display.max_colwidth', None)\n", - "print(df['gasolina_aditivada_preco_revenda_avg'])" - ], + "execution_count": null, "metadata": { "id": "GadtAcygu94k" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "pd.set_option('display.max_colwidth', None)\n", + "print(df['gasolina_aditivada_preco_revenda_avg'])" + ] }, { "cell_type": "code", - "source": [ - "coluna_info = df['gasolina_aditivada_preco_revenda_avg'].describe()\n", - "print(coluna_info)" - ], + "execution_count": null, "metadata": { "id": "CMHPpVyYvp_i" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "coluna_info = df['gasolina_aditivada_preco_revenda_avg'].describe()\n", + "print(coluna_info)" + ] }, { "cell_type": "code", - "source": [ - "# e deseja converter a coluna 'coluna_object' em tipo float\n", - "df['gasolina_aditivada_preco_revenda_avg'] = pd.to_numeric(df['gasolina_aditivada_preco_revenda_avg'], errors='coerce')" - ], + "execution_count": null, "metadata": { "id": "yRb88JVEv9ff" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "# e deseja converter a coluna 'coluna_object' em tipo float\n", + "df['gasolina_aditivada_preco_revenda_avg'] = pd.to_numeric(df['gasolina_aditivada_preco_revenda_avg'], errors='coerce')" + ] }, { "cell_type": "code", - "source": [ - "pd.set_option('display.max_colwidth', None)\n", - "print(df['gasolina_aditivada_preco_revenda_avg'])" - ], + "execution_count": null, "metadata": { "id": "jccPMxpDwZXf" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "pd.set_option('display.max_colwidth', None)\n", + "print(df['gasolina_aditivada_preco_revenda_avg'])" + ] }, { "cell_type": "code", - "source": [ - "# Calcula a média da coluna\n", - "media_coluna = df['gasolina_aditivada_preco_revenda_avg'].mean()" - ], + "execution_count": null, "metadata": { "id": "_2h8YnFbu-AJ" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "# Calcula a média da coluna\n", + "media_coluna = df['gasolina_aditivada_preco_revenda_avg'].mean()" + ] }, { "cell_type": "code", - "source": [ - "print(media_coluna)" - ], + "execution_count": null, "metadata": { "id": "tpqtOQz6vc7U" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "print(media_coluna)" + ] }, { "cell_type": "code", - "source": [ - "# Substitui os NaNs pela média\n", - "df['gasolina_aditivada_preco_revenda_avg'].fillna(media_coluna, inplace=True)" - ], + "execution_count": null, "metadata": { "id": "3zlLdisTu-Dv" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "# Substitui os NaNs pela média\n", + "df['gasolina_aditivada_preco_revenda_avg'].fillna(media_coluna, inplace=True)" + ] }, { "cell_type": "code", - "source": [ - "pd.set_option('display.max_colwidth', None)\n", - "print(df['gasolina_aditivada_preco_revenda_avg'])" - ], + "execution_count": null, "metadata": { "id": "kYzOVbdtwnph" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "pd.set_option('display.max_colwidth', None)\n", + "print(df['gasolina_aditivada_preco_revenda_avg'])" + ] }, { "cell_type": "code", + "execution_count": null, + "metadata": { + "id": "NzagqH85wnxl" + }, + "outputs": [], "source": [ "#contar nulos\n", "contagem_nulos = df['etanol_hidratado_preco_revenda_min'].isnull().sum()\n", "print(contagem_nulos)" - ], - "metadata": { - "id": "NzagqH85wnxl" - }, - "execution_count": null, - "outputs": [] + ] }, { "cell_type": "code", - "source": [ - "coluna_info = df['etanol_hidratado_preco_revenda_min'].describe()\n", - "print(coluna_info)" - ], + "execution_count": null, "metadata": { "id": "TWf408cgwn0i" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "coluna_info = df['etanol_hidratado_preco_revenda_min'].describe()\n", + "print(coluna_info)" + ] }, { "cell_type": "code", - "source": [ - "# transformar em float\n", - "df['etanol_hidratado_preco_revenda_min'] = pd.to_numeric(df['etanol_hidratado_preco_revenda_min'], errors='coerce')" - ], + "execution_count": 6, "metadata": { "id": "Fun4HAt6wn3Z" }, - "execution_count": 6, - "outputs": [] + "outputs": [], + "source": [ + "# transformar em float\n", + "df['etanol_hidratado_preco_revenda_min'] = pd.to_numeric(df['etanol_hidratado_preco_revenda_min'], errors='coerce')" + ] }, { "cell_type": "code", - "source": [ - "coluna_info = df['etanol_hidratado_preco_revenda_min'].describe()\n", - "print(coluna_info)" - ], + "execution_count": null, "metadata": { "id": "6Luzy9kpfjoO" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [ + "coluna_info = df['etanol_hidratado_preco_revenda_min'].describe()\n", + "print(coluna_info)" + ] }, { "cell_type": "code", - "source": [], + "execution_count": null, "metadata": { "id": "1QPk4Nntfjw-" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [] }, { "cell_type": "code", - "source": [], + "execution_count": null, "metadata": { "id": "nfOlLtX4fj2l" }, - "execution_count": null, - "outputs": [] + "outputs": [], + "source": [] + } + ], + "metadata": { + "colab": { + "provenance": [] + }, + "kernelspec": { + "display_name": "Python 3", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.11" } - ] -} \ No newline at end of file + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/exercicios/para-sala/demolitions_pse_isr_conflict_2004-01_to_2023-08.csv b/exercicios/para-sala/demolitions_pse_isr_conflict_2004-01_to_2023-08.csv new file mode 100644 index 0000000..47f27c9 --- /dev/null +++ b/exercicios/para-sala/demolitions_pse_isr_conflict_2004-01_to_2023-08.csv @@ -0,0 +1,5766 @@ +date_of_demolition,locality,district,area,housing_units,people_left_homeless,minors_left_homeless,type_of_sturcture,reason_for_demolition +2023-08-30,Tarqumya,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-29,al-Bweirah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-08-24,Shufah,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-21,Bidu,al-Quds,west-bank,8,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-21,Bidu,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-21,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-08-21,Bidu,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-08-21,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,8,0,Residental,Demolition on the pretext of unlawful construction +2023-08-21,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,8,3,Residental,Demolition on the pretext of unlawful construction +2023-08-21,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-08-21,'Ein a-Duyuk a-Tahta,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-21,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-08-17,'Ein Samia,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-17,Jenin,Jenin,west-bank,0,0,0,Non Resedential,Demolition for alleged military purposes +2023-08-17,Jenin,Jenin,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2023-08-17,Sarta,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-17,Humsah,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2023-08-17,'Ein Shibli,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-16,Balata R.C.,Nablus,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2023-08-14,Zif,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-14,Beit Sira,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-14,Beit Sira,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-14,Beit Sira,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-08,'Askar R.C.,Nablus,west-bank,1,2,0,Residental,Demolition of houses as punishment +2023-08-03,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-01,Deir Ballut,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-08-01,Suba,Hebron,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-31,al-Mughayir,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-31,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-07-31,al-'Arrub R.C.,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-31,al-Mughayir,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-07-26,Idhna,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,al-Hijrah,Hebron,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,10,2,Residental,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-25,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-24,Battir,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-24,Kh. Humsah a-Tahta,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-07-19,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-18,Birin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-17,al-Muntar,al-Quds,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2023-07-17,al-Muntar,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-07-17,al-Muntar,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2023-07-17,al-Muntar,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2023-07-12,a-Dhahiriyah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-12,al-Baq'ah (Hebron),Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-11,Beit Jala,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-09,Hebron,Hebron,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-06,Wadi Abu al-Hindy,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-06,Duma,Nablus,west-bank,21,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-07-04,Jenin R.C.,Jenin,west-bank,1,6,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,7,2,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,5,1,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,8,6,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,4,2,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,6,4,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,6,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,8,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,2,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,8,4,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,6,2,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,6,4,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,5,2,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,7,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,6,3,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,4,1,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,1,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,2,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,2,1,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,4,2,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,3,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,2,1,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,4,2,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,5,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,5,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,5,3,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,6,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,4,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,4,2,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,3,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,2,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,2,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,5,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,5,0,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,8,2,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,5,3,Residental,Demolition for alleged military purposes +2023-07-04,Jenin R.C.,Jenin,west-bank,1,7,5,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,4,0,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,4,0,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,1,0,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,8,6,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,6,4,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,5,0,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,3,0,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,6,0,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,6,0,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,7,0,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,4,2,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,6,4,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,5,3,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,2,0,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,6,4,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,3,0,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,6,4,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,7,0,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,6,0,Residental,Demolition for alleged military purposes +2023-07-03,Jenin R.C.,Jenin,west-bank,1,4,2,Residental,Demolition for alleged military purposes +2023-06-29,Jurish,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-06-26,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-06-22,Nablus,Nablus,west-bank,1,4,1,Residental,Demolition of houses as punishment +2023-06-22,Kh. al-Maleh (Hamamat al-Maleh),Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-06-22,Kh. al-Maleh (Hamamat al-Maleh),Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-06-19,Qalandia,al-Quds,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-06-19,Qalandia,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-06-19,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-06-19,Qalandia,al-Quds,west-bank,23,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-06-15,Nablus,Nablus,west-bank,1,4,1,Residental,Demolition of houses as punishment +2023-06-15,Bir 'Unah,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-06-15,Kh. Um al-Jamal,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-06-15,Kh. Um al-Jamal,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-06-15,Kh. Um al-Jamal,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-06-15,Kh. Um al-Jamal,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-06-14,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-06-14,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-06-11,'Azzun 'Atmah,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-06-08,Ramallah,Ramallah and al-Bira,west-bank,1,4,0,Residental,Demolition of houses as punishment +2023-06-06,Tublas (Hizma),al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-06-06,Kh. Tatrit ('Arab al-Freijat),Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-06-06,Tublas (Hizma),al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-06-06,al-Mazra'ah al-Qibliyah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-06-04,a-Ramadin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-30,Nur Shams R.C.,Tulkarm,west-bank,0,0,0,Non Resedential,Demolition for alleged military purposes +2023-05-29,Jericho,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-29,Irtas,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-05-29,Irtas,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-28,Deir Samit,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-24,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-24,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-24,Kh. Iqteit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-24,Kh. Iqteit,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2023-05-24,al-Walajah,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-24,Beit Jala,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-24,Beit Jala,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-23,Ni'lin,Ramallah and al-Bira,west-bank,1,6,0,Residental,Demolition of houses as punishment +2023-05-22,Balata R.C.,Nablus,west-bank,1,7,4,Residental,Demolition for alleged military purposes +2023-05-22,Balata R.C.,Nablus,west-bank,1,9,7,Residental,Demolition for alleged military purposes +2023-05-22,Balata R.C.,Nablus,west-bank,1,5,3,Residental,Demolition for alleged military purposes +2023-05-22,Balata R.C.,Nablus,west-bank,1,1,0,Residental,Demolition for alleged military purposes +2023-05-22,Balata R.C.,Nablus,west-bank,1,6,4,Residental,Demolition for alleged military purposes +2023-05-22,Balata R.C.,Nablus,west-bank,1,3,0,Residental,Demolition for alleged military purposes +2023-05-22,Kh. Ma'in,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2023-05-22,Balata R.C.,Nablus,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2023-05-22,Balata R.C.,Nablus,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2023-05-22,Kh. Ma'in,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-05-22,Um Safa,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-22,Deir a-Sudan,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-22,Deir a-Sudan,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-21,a-Zuweidin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-18,Kh. al-Marajim,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-17,a-Nabi Elyas,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-16,Kharas,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-16,al-Khader,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-16,Beit Ula,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-16,Kharas,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-16,Jayus,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-16,Jayus,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-16,Kharas,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-15,al-'Eizariyah,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-05-15,Balata R.C.,Nablus,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2023-05-15,al-Mufaqarah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-15,Kh. Khilet a-Dabe',Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-15,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-15,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-15,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-11,Nur Shams R.C.,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition for alleged military purposes +2023-05-11,Nur Shams R.C.,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition for alleged military purposes +2023-05-11,Nur Shams R.C.,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition for alleged military purposes +2023-05-10,Jub a-Dib,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-10,'Ein a-Duyuk al-Foqa,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-10,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-10,a-Zuweidin,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-08,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-07,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-07,al-'Auja,Jericho,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2023-05-07,Fasayil al-Wusta,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-07,Jub a-Dib,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-05-04,Nablus,Nablus,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2023-05-03,Hajjah,Qalqiliya,west-bank,1,6,4,Residental,Demolition of houses as punishment +2023-05-03,Haris,Salfit,west-bank,1,7,4,Residental,Demolition of houses as punishment +2023-03-30,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-03-28,Deir Ballut,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-28,a-Sawahrah a-Sharqiyah,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-21,Hizma,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-03-21,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-16,Deir 'Ammar,Ramallah and al-Bira,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2023-03-13,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-07,Jenin R.C.,Jenin,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2023-03-06,She'b al-Batem,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-03-06,She'b al-Batem,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-03-06,She'b al-Batem,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-03-06,She'b al-Batem,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-03-06,Jericho,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-06,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-06,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-06,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-05,al-Fureidis,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-05,Marah Ma'alla,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-02,Beit Ula,Hebron,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-02,Beit Ula,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-02,Beit Ula,Hebron,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-03-01,Idhna,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2023-03-01,Furush Beit Dajan,Nablus,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2023-02-27,al-Fawar R.C.,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-23,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-23,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-23,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-23,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-23,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-23,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-23,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-23,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-22,Lifjim,Nablus,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2023-02-22,al-'Eizariyah,al-Quds,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-22,al-'Eizariyah,al-Quds,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2023-02-22,al-'Eizariyah,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2023-02-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-22,Idhna,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2023-02-22,Lifjim,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-22,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-22,Lifjim,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-22,Qusrah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-22,Lifjim,Nablus,west-bank,1,8,3,Residental,Demolition on the pretext of unlawful construction +2023-02-22,Qusrah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-22,Nablus,Nablus,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2023-02-22,Lifjim,Nablus,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2023-02-22,Lifjim,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-20,al-Buweib,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-16,Hebron,Hebron,west-bank,1,4,3,Residental,Demolition of houses as punishment +2023-02-15,a-Ram,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-15,Kh. Khilet a-Dabe',Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-15,She'b al-Batem,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-12,Masafer Bani Na'im (Khallet al-Masafer),Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-12,Fasayil al-Wusta,Jericho,west-bank,1,10,5,Residental,Demolition on the pretext of unlawful construction +2023-02-12,Fasayil al-Wusta,Jericho,west-bank,8,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-12,Qalqas,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-12,al-Buweib,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-04,'Aqbat Jaber R.C.,Jericho,west-bank,1,0,0,Non Resedential,Demolition for alleged military purposes +2023-02-04,'Aqbat Jaber R.C.,Jericho,west-bank,1,0,0,Non Resedential,Demolition for alleged military purposes +2023-02-04,'Aqbat Jaber R.C.,Jericho,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2023-02-02,Duma,Nablus,west-bank,3,15,8,Residental,Demolition on the pretext of unlawful construction +2023-02-02,Duma,Nablus,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2023-02-01,Deir Ballut,Salfit,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-01,al-Kasarat,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-02-01,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-29,Ras al-'Amud,East Jerusalem,east-jerusalem,1,6,4,Residental,Demolition of houses as punishment +2023-01-26,Jenin R.C.,Jenin,west-bank,3,4,0,Residental,Demolition for alleged military purposes +2023-01-26,Jenin R.C.,Jenin,west-bank,2,0,0,Non Resedential,Demolition for alleged military purposes +2023-01-25,'Ein a-Duyuk a-Tahta,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-25,'Anata new (Dahiyat a-Salam),East Jerusalem,east-jerusalem,1,4,1,Residental,Demolition of houses as punishment +2023-01-25,'Ein a-Duyuk a-Tahta,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-25,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-25,'Ein a-Duyuk a-Tahta,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-25,Kh. Ma'in,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-25,Kh. Ma'in,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-25,'Ein a-Duyuk a-Tahta,Jericho,west-bank,8,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-25,Nahhalin,Bethlehem,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2023-01-25,'Ein a-Duyuk a-Tahta,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-25,'Ein a-Duyuk a-Tahta,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-23,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-23,a-Za'ayem,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-23,Hablah,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-23,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-22,Irtas,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-18,al-Jiftlik,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2023-01-18,al-Funduq,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-18,Kafr Laqif,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-18,Kh. Tatrit ('Arab al-Freijat),Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-01-18,Kh. Tatrit ('Arab al-Freijat),Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-18,Kh. Tatrit ('Arab al-Freijat),Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-18,al-Jiftlik,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-18,al-Jiftlik,Jericho,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2023-01-18,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-16,Shuyukh al-'Arrub,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-12,Duma,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-11,Khalet al-Furn,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2023-01-11,'Ein Samia,Ramallah and al-Bira,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2023-01-11,al-Baq'ah (Hebron),Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-01-11,al-Baq'ah (Hebron),Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-11,a-Nabi Elyas,Qalqiliya,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-10,'Anata,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-10,'Anata,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-10,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-10,'Ein a-Duyuk a-Tahta,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-10,Kafr a-Dik,Salfit,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2023-01-10,'Anata,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-10,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-10,al-'Auja,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-10,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-10,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-10,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-01-09,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-05,Duma,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-05,Duma,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-05,Duma,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-05,Duma,Nablus,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-05,Duma,Nablus,west-bank,4,21,10,Residental,Demolition on the pretext of unlawful construction +2023-01-05,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-04,al-Mughayir,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-04,al-Mughayir,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-04,al-'Auja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-04,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-03,a-Nabi Elyas,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-03,She'b al-Batem,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-03,Kh. a-Safai al-Foqa,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-03,Kh. Ma'in,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-03,Kh. Ma'in,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2023-01-03,She'b al-Batem,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-03,She'b al-Batem,Hebron,west-bank,1,8,1,Residental,Demolition on the pretext of unlawful construction +2023-01-03,She'b al-Batem,Hebron,west-bank,1,10,4,Residental,Demolition on the pretext of unlawful construction +2023-01-03,She'b al-Batem,Hebron,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-03,She'b al-Batem,Hebron,west-bank,1,9,4,Residental,Demolition on the pretext of unlawful construction +2023-01-03,She'b al-Batem,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2023-01-03,She'b al-Batem,Hebron,west-bank,1,9,3,Residental,Demolition on the pretext of unlawful construction +2023-01-02,Kfar Dan,Jenin,west-bank,1,6,2,Residental,Demolition of houses as punishment +2023-01-02,Kfar Dan,Jenin,west-bank,2,6,0,Residental,Demolition of houses as punishment +2022-12-27,a-Sawahrah a-Sharqiyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-27,Dura,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-27,Immatin,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-27,a-Sawahrah a-Sharqiyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-27,a-Sawahrah a-Sharqiyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-26,Qalqas,Hebron,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-22,Deir Sharaf,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-22,Deir Sharaf,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-21,Battir,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-21,Jinsafut,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-20,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-20,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-20,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-20,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-20,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-20,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-20,a-Tuwani,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-20,Kh. Ma'in,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-20,Kh. Khilet a-Dabe',Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-19,Jericho,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-19,Jericho,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-15,Khalet al-Furn,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-15,Farsh al-Hawa,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-12-15,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-15,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-15,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-15,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-14,Husan,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-14,Um a-Rihan,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-13,al-Jiftlik,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-12-13,Furush Beit Dajan,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-12-13,al-Jiftlik,Jericho,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2022-12-13,al-Jiftlik,Jericho,west-bank,1,12,4,Residental,Demolition on the pretext of unlawful construction +2022-12-13,al-Jiftlik,Jericho,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-13,al-Jiftlik,Jericho,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2022-12-13,al-Jib,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-13,al-Jib,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-13,al-Jib,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-13,al-Jib,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-13,Furush Beit Dajan,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-12-12,Kh. a-Deir,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-12,Tekoa,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-11,Sinjil,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-08,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2022-12-08,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2022-12-08,Wadi a-Siq,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-08,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,12,7,Residental,Demolition on the pretext of unlawful construction +2022-12-08,Wadi a-Siq,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-08,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2022-12-06,a-Sawiyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-06,Nahhalin,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-06,Kh. a-Safai al-Foqa,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-06,Birin,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-12-05,Idhna,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-05,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-05,Idhna,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-05,Idhna,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-05,Idhna,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-01,Qalandia,al-Quds,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-01,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-12-01,Kh. Tatrit ('Arab al-Freijat),Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-12-01,Kh. Tatrit ('Arab al-Freijat),Hebron,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2022-11-30,Lifjim,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-30,Lifjim,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-30,Lifjim,Nablus,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2022-11-30,Lifjim,Nablus,west-bank,1,8,3,Residental,Demolition on the pretext of unlawful construction +2022-11-30,Lifjim,Nablus,west-bank,1,4,1,Residental,Demolition on the pretext of unlawful construction +2022-11-30,Lifjim,Nablus,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-30,Lifjim,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-30,Lifjim,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-29,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-29,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-29,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-29,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-29,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2022-11-29,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2022-11-28,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-28,Khalet al-Furn,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-28,Hebron,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2022-11-28,Hebron,Hebron,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2022-11-28,Kafr a-Dik,Salfit,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-28,al-Khalayleh,al-Quds,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-24,Kafr a-Dik,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-24,'Atarah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-24,'Atarah,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-24,Kafr a-Dik,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-24,'Atarah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-24,Kafr a-Dik,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-23,al-Khader,Bethlehem,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2022-11-23,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-23,Qibyah,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-23,Kh. a-Safai al-Foqa,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-23,Qibyah,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-23,Qibyah,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-23,Qibyah,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-21,a-Nabi Elyas,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-21,Jayus,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-21,Duma,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-21,Duma,Nablus,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-21,Duma,Nablus,west-bank,2,17,9,Residental,Demolition on the pretext of unlawful construction +2022-11-17,a-Nabi Elyas,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-16,'Azzun 'Atmah,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-14,Tarqumya,Hebron,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2022-11-14,al-Maniyah,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-14,Tarqumya,Hebron,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-14,Kh. Jamrurah,Hebron,west-bank,9,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-14,al-Maniyah,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-14,Qarawat Bani Hassan,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-14,al-Maniyah,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-14,al-Maniyah,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-14,Tarqumya,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2022-11-13,'Arab al-'Anani wa al-Jabour,Salfit,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2022-11-13,'Arab al-'Anani wa al-Jabour,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-13,'Arab al-'Anani wa al-Jabour,Salfit,west-bank,1,2,1,Residental,Demolition on the pretext of unlawful construction +2022-11-13,'Arab al-'Anani wa al-Jabour,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-13,'Arab al-'Anani wa al-Jabour,Salfit,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2022-11-13,'Arab al-'Anani wa al-Jabour,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-09,Khalet al-Furn,Hebron,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-07,Jericho,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-07,Jericho,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-07,Qibyah,Ramallah and al-Bira,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2022-11-07,Beit Jala,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-03,Bruqin,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-03,'Arab al-Freijat,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-03,'Arab al-Freijat,Hebron,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-03,Bruqin,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-03,al-Birah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-03,Beitin,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-11-02,Jalbun,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-11-02,Jalbun,Jenin,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2022-11-02,'Ein a-Duyuk al-Foqa,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-31,al-Baq'ah (Hebron),Hebron,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2022-10-31,Um Lasafa,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-10-27,a-Sawahrah a-Sharqiyah,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-10-27,a-Sawahrah a-Sharqiyah,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-26,Jericho,Jericho,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-26,'Ein a-Duyuk al-Foqa,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-26,'Ein a-Duyuk al-Foqa,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-26,'Ein a-Duyuk al-Foqa,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-26,Jericho,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-25,al-Jawaya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-25,al-Jawaya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-25,Bani Na'im,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-10-25,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-25,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-25,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-25,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-25,Kh. Wadi Ejheish,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-20,Deir Samit,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-10-10,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-06,Deir Samit,Hebron,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2022-10-05,Deir al-Hatab,Nablus,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2022-10-03,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-03,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2022-10-03,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-03,Wadi a-Siq,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-03,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2022-10-03,Hebron,Hebron,west-bank,1,12,6,Residental,Demolition on the pretext of unlawful construction +2022-10-03,Wadi a-Siq,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-03,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,12,7,Residental,Demolition on the pretext of unlawful construction +2022-10-03,Beit 'Einun,Hebron,west-bank,1,7,6,Residental,Demolition on the pretext of unlawful construction +2022-10-03,a-Rifa'iya,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-10-03,Kafr a-Dik,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-10-03,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2022-09-29,Irtas,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-29,Irtas,Bethlehem,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2022-09-29,Ras al-Jorah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-22,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-22,a-Rakeez,Hebron,west-bank,1,7,4,Residental,Demolition on the pretext of unlawful construction +2022-09-22,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-22,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-22,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-22,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-22,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-22,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-22,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-22,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-22,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-22,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-21,'Ein Samia,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-21,'Ein Samia,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-21,'Ein Samia,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-21,Kh. al-Marajim,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-20,Kh. Jamrurah,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2022-09-20,Kh. Jamrurah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-19,al-'Auja,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-19,Jaba',al-Quds,west-bank,1,5,0,Residental,Demolition on the pretext of unlawful construction +2022-09-19,Jaba',al-Quds,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-19,Jaba',al-Quds,west-bank,1,12,8,Residental,Demolition on the pretext of unlawful construction +2022-09-19,Jaba',al-Quds,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-19,'Ein a-Duyuk al-Foqa,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-09-19,'Ein a-Duyuk al-Foqa,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-14,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-14,Rujeib,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-14,Rujeib,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-14,Rujeib,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-14,a-Rifa'iya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-13,Jaba',al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-08,Kh. Tana,Nablus,west-bank,1,6,1,Residental,Demolition on the pretext of unlawful construction +2022-09-08,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-07,'Anata,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-07,'Anata,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-07,'Anata,al-Quds,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-06,Beit Jala,Bethlehem,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2022-09-06,al-Khader,Bethlehem,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2022-09-06,al-Khader,Bethlehem,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-09-06,Jenin,Jenin,west-bank,1,0,0,Residental,Demolition of houses as punishment +2022-09-01,Tekoa,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-31,al-Halqum,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-30,Rujeib,Nablus,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2022-08-29,Jericho,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-25,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-24,Huwarah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-24,Wadi al-Ahmar,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-24,Huwarah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-24,a-Zbeidat,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,10,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-22,Farasin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-19,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-17,Kafr a-Dik,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-17,Kafr a-Dik,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-17,Kafr a-Dik,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-17,Bruqin,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-16,Kh. 'Allan,Jericho,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2022-08-16,Kh. 'Allan,Jericho,west-bank,2,11,7,Residental,Demolition on the pretext of unlawful construction +2022-08-16,Kh. 'Allan,Jericho,west-bank,7,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-15,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-13,Kafr a-Dik,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-10,Husan,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-10,al-'Auja,Jericho,west-bank,1,8,3,Residental,Demolition on the pretext of unlawful construction +2022-08-10,al-'Auja,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-10,Wadi al-Ahmar,Jericho,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-10,al-Mas'udiyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-10,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-09,Beit Fajjar,Bethlehem,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2022-08-09,Nablus,Nablus,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2022-08-08,Jaba',al-Quds,west-bank,1,12,8,Residental,Demolition on the pretext of unlawful construction +2022-08-08,Rummanah,Jenin,west-bank,1,6,4,Residental,Demolition of houses as punishment +2022-08-08,Rummanah,Jenin,west-bank,3,5,0,Residental,Demolition of houses as punishment +2022-08-08,al-Buweib,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2022-08-08,Jaba',al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-08,Jaba',al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-08,Jaba',al-Quds,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2022-08-08,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-08,Jaba',al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-08,Jaba',al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-04,Rantis,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-03,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-03,a-Za'ayem,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-03,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-03,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-03,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-03,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-03,Tekoa,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-02,Bizzariya,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-02,Sabastiya,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-02,Sabastiya,Nablus,west-bank,1,9,6,Residental,Demolition on the pretext of unlawful construction +2022-08-02,a-Ramadin,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-08-02,Beit Dajan,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-02,a-Ramadin,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-08-01,Kafr a-Dik,Salfit,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-27,Jericho,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-27,Jericho,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-27,Jericho,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-26,Um a-Rihan,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-26,Qarawat Bani Hassan,Salfit,west-bank,1,8,5,Residental,Demolition of houses as punishment +2022-07-26,Qarawat Bani Hassan,Salfit,west-bank,1,9,5,Residental,Demolition of houses as punishment +2022-07-26,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-26,Ya'bad,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-26,Qusin,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-26,Qusin,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-26,Qusin,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-26,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-25,Birin,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-25,Birin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-25,Kh. Um Qusah,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2022-07-25,Idhna,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2022-07-24,al-Buweib,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-19,al-Jawaya,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-19,'Aqbat Jaber R.C.,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-19,al-Jawaya,Hebron,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2022-07-19,'Anata,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-19,al-Jawaya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-19,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-19,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-19,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-19,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-17,al-Jawaya,Hebron,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-07,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-07,Kh. Um Qusah,Hebron,west-bank,1,12,7,Residental,Demolition on the pretext of unlawful construction +2022-07-07,Kh. Um Qusah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-07,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-07,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-06,Kafr a-Dik,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-06,Kafr a-Dik,Salfit,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-05,Birin,Hebron,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-05,a-Lubban a-Sharqiyah,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-05,a-Lubban a-Sharqiyah,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-05,Duma,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-05,Qabalan,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-04,Ni'lin,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-04,Ni'lin,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-04,a-Sawahrah a-Sharqiyah,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-07-04,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-07-03,al-'Abadiyeh,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-06-30,al-Buweib,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-30,a-Rifa'iya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-29,'Anzah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-29,al-Mansura,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-29,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-28,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-28,Tarqumya,Hebron,west-bank,8,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-28,'Anata,al-Quds,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2022-06-28,'Anata,al-Quds,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2022-06-28,'Anata,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2022-06-28,'Anata,al-Quds,west-bank,1,5,2,Residental,Demolition on the pretext of unlawful construction +2022-06-28,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-28,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-27,Kh.Ibziq,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-27,Kh.Ibziq,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-27,Kh.Ibziq,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-27,Kh.Ibziq,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-06-27,Kh.Ibziq,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-06-27,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-27,'Anata,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-27,Nahhalin,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-27,Bir Zeit,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-27,Kh.Ibziq,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-27,Kh.Ibziq,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-27,Kh.Ibziq,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-26,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-26,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-26,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-26,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-26,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-26,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-26,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-26,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-26,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-26,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-22,Ni'lin,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-06-22,'Anata,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-22,'Anata,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-21,Nahhalin,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-21,Nahhalin,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-15,al-Khalayleh,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-15,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-13,Sa'ir,Hebron,west-bank,2,8,5,Residental,Demolition on the pretext of unlawful construction +2022-06-13,Nahhalin,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-13,'Aqbat Jaber R.C.,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-06-07,Beit Lid,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-02,Ya'bad,Jenin,west-bank,2,12,4,Residental,Demolition of houses as punishment +2022-06-02,Ya'bad,Jenin,west-bank,2,0,0,Non Resedential,Demolition of houses as punishment +2022-06-01,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-06-01,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-01,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-01,Qalandia,al-Quds,west-bank,7,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-01,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-01,Kh. al-Markez,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-06-01,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-01,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-06-01,al-Baq'ah (Hebron),Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-01,Kh. al-Fakhit,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2022-06-01,Kh. al-Markez,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-06-01,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-01,Kh. al-Markez,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-06-01,Kh. al-Markez,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-30,Ras 'Atiya,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-24,al-Jawaya,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-24,'Ein Samia,Ramallah and al-Bira,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2022-05-24,'Ein Samia,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-24,a-Tuwani,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-24,'Arab a-Ramadin al-Janubi,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-23,'Ein a-Duyuk a-Tahta,Jericho,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-22,Kafr a-Dik,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-22,Kafr a-Dik,Salfit,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-22,Kafr a-Dik,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-19,Deir Istiya,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-16,a-Za'ayem,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-16,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-16,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-16,al-'Auja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-16,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-13,Jenin,Jenin,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2022-05-12,Marj Na'jah,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Markez,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Markez,Hebron,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Markez,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Markez,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-11,a-Tuwani,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Fakhit,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Markez,Hebron,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Markez,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-11,Kh. al-Fakhit,Hebron,west-bank,1,11,8,Residental,Demolition on the pretext of unlawful construction +2022-05-10,al-Khader,Bethlehem,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-10,Khallet Sakariya,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-09,Beit Dajan,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-09,Beit Dajan,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-09,Furush Beit Dajan,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-09,Kh. 'Einun,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-08,Jaba',al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-05-07,Silat al-Harithiya,Jenin,west-bank,1,1,0,Residental,Demolition of houses as punishment +2022-05-02,Duma,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-05-02,al-'Auja,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-04-13,al-Mughayir,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-04-13,al-Mughayir,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-04-12,'Ein Samia,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,Tulkarm,Tulkarm,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,al-Mughayir,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,al-'Auja,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-03-23,al-Mughayir,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,al-Mughayir,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-23,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-22,Qalqas,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-22,Qalqas,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-21,Wadi Fukin,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-20,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2022-03-20,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2022-03-20,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2022-03-20,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,8,1,Residental,Demolition on the pretext of unlawful construction +2022-03-10,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-10,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-09,Hebron,Hebron,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2022-03-08,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-08,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-08,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-08,Silat al-Harithiya,Jenin,west-bank,1,4,2,Residental,Demolition of houses as punishment +2022-03-08,Silat al-Harithiya,Jenin,west-bank,2,8,3,Residental,Demolition of houses as punishment +2022-03-02,Kardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-02,Hizma,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-03-02,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-28,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-02-24,'Anata,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2022-02-24,'Anata,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2022-02-24,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-24,'Anata,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-23,Kh. Lasefar,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-23,Kh. Lasefar,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-23,Kh. Lasefar,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-23,She'b al-Batem,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-23,She'b al-Batem,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-23,She'b al-Batem,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-19,'Ein Samia,Ramallah and al-Bira,west-bank,1,6,1,Residental,Demolition on the pretext of unlawful construction +2022-02-19,'Ein Samia,Ramallah and al-Bira,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-17,Duma,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-15,Khallet al-Mayah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-02-15,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-15,Khallet al-Mayah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-15,a-Lubban a-Sharqiyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-14,Silat al-Harithiya,Jenin,west-bank,1,5,4,Residental,Demolition of houses as punishment +2022-02-13,al-Birah,Ramallah and al-Bira,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2022-02-13,Halhul,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-13,Beit Ummar,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-13,Beit Ummar,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-09,Beit Kahil,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-08,Idhna,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-02-08,Furush Beit Dajan,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-08,Jayus,Qalqiliya,west-bank,9,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-07,'Arab a-Rashayidah,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-03,Deir Nizam,Ramallah and al-Bira,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2022-02-03,Deir Nizam,Ramallah and al-Bira,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2022-02-02,Kh. Khilet a-Dabe',Hebron,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-02,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,Shu'fat R.C.,East Jerusalem,east-jerusalem,1,5,3,Residental,Demolition of houses as punishment +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,Kh. Iqtit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,Kh. Iqtit,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,Kh. Iqtit,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-02-01,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-30,al-'Aqabah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-01-26,a-Ramadin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-19,'Arab al-Fureijat,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-18,Qalqiliyah,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2022-01-17,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-12,Kh. al-Fakhit,Hebron,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-12,al-Walajah,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-12,al-Walajah,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-12,Kh. al-Fakhit,Hebron,west-bank,2,10,5,Residental,Demolition on the pretext of unlawful construction +2022-01-12,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-12,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-12,Kh. al-Fakhit,Hebron,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2022-01-11,Battir,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-11,Beit Jala,Bethlehem,west-bank,1,6,1,Residental,Demolition on the pretext of unlawful construction +2022-01-10,a-Ram,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-10,a-Ram,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-10,a-Ram,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-09,'Attil,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-08,Far'a,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-04,Kh.Ibziq,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-04,Kh.Ibziq,Tubas,west-bank,1,8,2,Residental,Demolition on the pretext of unlawful construction +2022-01-04,Kh.Ibziq,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2022-01-04,Kh.Ibziq,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-04,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-04,Kh.Ibziq,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2022-01-04,Kh.Ibziq,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2022-01-04,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-28,Qalqas,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-12-28,Qalqas,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-28,Kh.Ibziq,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2021-12-28,Kh.Ibziq,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-28,Kh.Ibziq,Tubas,west-bank,1,8,2,Residental,Demolition on the pretext of unlawful construction +2021-12-28,Kh.Ibziq,Tubas,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-28,Kh.Ibziq,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2021-12-28,Kh.Ibziq,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-28,Hablah,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-28,Hablah,Qalqiliya,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-28,'Azzun 'Atmah,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-12-28,'Azzun 'Atmah,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-12-27,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-27,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-27,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-27,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-27,Hizma,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-27,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-27,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-27,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-27,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-27,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-22,al-Hijrah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-22,al-Hijrah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-21,Nahhalin,Bethlehem,west-bank,1,8,3,Residental,Demolition on the pretext of unlawful construction +2021-12-16,'Ein a-Duyuk a-Tahta,Jericho,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2021-12-16,Bruqin,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-13,Khalet al-Furn,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-07,Nahhalin,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-07,Nahhalin,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-06,Zif,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-06,al-Buweib,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-06,Zif,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-12-05,Kh. Tana,Nablus,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2021-12-05,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-05,al-Khas,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-12-05,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-05,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-05,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-12-05,Kh. Humsah,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2021-12-02,Kh. al-Markez,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-12-02,Kh. al-Markez,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2021-12-02,Kh. al-Markez,Hebron,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2021-12-02,Kh. al-Markez,Hebron,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2021-12-02,Kh. al-Markez,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2021-12-01,Abu Dis,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-29,Nahhalin,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-11-29,Ni'lin,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-29,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-28,Tammun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-23,Kh. Ma'in,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-11-23,'Ein Samia,Ramallah and al-Bira,west-bank,1,8,3,Residental,Demolition on the pretext of unlawful construction +2021-11-23,'Ein Samia,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-23,a-Deirat,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-23,'Asirah a-Shamaliyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-23,al-Khas,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-23,al-Khas,Bethlehem,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2021-11-23,Ras a-Tin,Ramallah and al-Bira,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-22,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-22,a-Nabi Elyas,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-21,a-Sawahrah a-Sharqiyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-21,a-Sawahrah a-Sharqiyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-17,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-17,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-16,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-16,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-16,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-16,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-15,Zif,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-11-15,Kh. Jamrurah,Hebron,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2021-11-15,Salfit,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-15,Kh. Jamrurah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-15,a-Rifa'iya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-15,Kh. Jamrurah,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2021-11-15,Salfit,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-15,Kh. Jamrurah,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2021-11-10,Hebron,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-11-08,al-Khader,Bethlehem,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2021-11-08,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-08,'Arab a-Ramadin al-Janubi,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-07,Kh. Um al-Jamal,Tubas,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2021-11-07,Far'a,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-07,Far'a,Hebron,west-bank,1,7,2,Residental,Demolition on the pretext of unlawful construction +2021-11-07,Kh. Um al-Jamal,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-11-07,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-07,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-07,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-04,Duma,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-04,Duma,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-03,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-03,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-03,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-03,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-03,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-03,Burqah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-03,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-03,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-03,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-02,Huwarah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-02,al-Jawaya,Hebron,west-bank,2,15,7,Residental,Demolition on the pretext of unlawful construction +2021-11-01,a-Sawiyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-11-01,'Ein al-Meyteh,Tubas,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2021-11-01,'Ein al-Meyteh,Tubas,west-bank,7,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-10-26,Ni'lin,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-10-25,al-Mufaqarah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-10-25,Hamam al-Maleh,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-10-24,Kh. Khilet a-Dabe',Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-10-20,Khallet al-Louza,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-10-20,Khallet al-Louza,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-10-19,Ya'bad,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-10-18,Tayasir,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-10-18,Sikkah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-10-18,Farsh al-Hawa,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-10-14,a-Ram,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-10-14,Ras a-Tin,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-10-14,Ras a-Tin,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-10-14,Ras a-Tin,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-10-14,Ras a-Tin,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-10-14,Ras a-Tin,Ramallah and al-Bira,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2021-10-14,Ras a-Tin,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-10-13,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-10-12,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-10-07,a-Za'ayem,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2021-10-07,a-Za'ayem,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2021-10-06,al-Karmel,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-09-02,Jaba',al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-09-01,al-Fureidis,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-09-01,Duma,Nablus,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-09-01,Duma,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-31,Kh.Ibziq,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-08-31,Harmalah,Bethlehem,west-bank,1,10,6,Residental,Demolition on the pretext of unlawful construction +2021-08-31,Kh.Ibziq,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-08-31,Kh.Ibziq,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-31,Kh.Ibziq,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-25,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-25,Khalet al-Furn,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-25,Deir al-Ghusun,Tulkarm,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-24,Kh. a-Rahwah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-24,Kh. a-Rahwah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-24,Kh. a-Rahwah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-24,Kh. a-Rahwah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-23,Sabastiya,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-18,Ya'bad,Jenin,west-bank,1,0,0,Non Resedential,Demolition for alleged military purposes +2021-08-18,Farasin,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-17,Qabalan,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-08-16,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-16,Deir Ballut,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-16,Kh. 'Atuf,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-16,Kh. 'Atuf,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-11,a-Lubban a-Sharqiyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-10,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-10,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-10,Kh. Khilet a-Dabe',Hebron,west-bank,1,11,6,Residental,Demolition on the pretext of unlawful construction +2021-08-09,'Araba,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-09,Ya'bad,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-09,Ya'bad,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-09,Ya'bad,Jenin,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-09,Ya'bad,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Sa'ir,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-08-04,Kh.Ibziq,Tubas,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2021-08-04,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2021-08-04,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,17,8,Residental,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Sa'ir,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-08-04,Kh.Ibziq,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Kh.Ibziq,Tubas,west-bank,2,10,6,Residental,Demolition on the pretext of unlawful construction +2021-08-04,Kh.Ibziq,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Kh.Ibziq,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,al-Mukasar,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-04,Kh.Ibziq,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2021-08-03,Sabastiya,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-08-03,Sa'ir,Hebron,west-bank,1,9,4,Residental,Demolition on the pretext of unlawful construction +2021-08-03,Wadi Rahhal,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-26,a-Sheikh Sa'ed,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-07-26,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-26,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-26,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-15,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-07-14,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-14,Furush Beit Dajan,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,2,4,1,Residental,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,12,7,Residental,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,9,6,Residental,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,2,10,8,Residental,Demolition on the pretext of unlawful construction +2021-07-14,al-Mughayir,Ramallah and al-Bira,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2021-07-13,Qusrah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-13,Qusrah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-13,Qusrah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-12,Kh. Qusah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-12,Bani Na'im,Hebron,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-12,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-12,Haris,Salfit,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-12,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-08,Turmusaya,Ramallah and al-Bira,west-bank,1,7,2,Residental,Demolition of houses as punishment +2021-07-07,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,4,0,0,Residental,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-07,Kh. Humsah,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-07-06,al-Jawaya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-30,Bruqin,Salfit,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-06-24,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-24,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-24,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-23,Masafer Yatta,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-22,Burqah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-22,Burqah,Ramallah and al-Bira,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-21,al-Muntar,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2021-06-21,al-Muntar,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2021-06-17,Halhul,Hebron,west-bank,1,14,7,Residental,Demolition on the pretext of unlawful construction +2021-06-17,Halhul,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-17,Jinsafut,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-14,Deir Sharaf,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-14,Deir Sharaf,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-14,Deir Sharaf,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-13,Mikhmas,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2021-06-13,Mikhmas,al-Quds,west-bank,2,14,8,Residental,Demolition on the pretext of unlawful construction +2021-06-13,Mikhmas,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-13,Mikhmas,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-06-13,Mikhmas,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-13,Mikhmas,al-Quds,west-bank,2,3,2,Residental,Demolition on the pretext of unlawful construction +2021-06-10,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-10,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-10,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-10,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-10,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-10,a-Za'ayem,al-Quds,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-10,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-09,She'b al-Batem,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-08,a-Tuwani,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-08,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-08,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-07,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2021-06-07,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-07,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2021-06-07,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-07,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2021-06-07,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-07,a-Rakeez,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-07,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-06-07,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-07,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-06-07,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-07,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2021-06-07,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-02,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-06-01,a-Samu',Hebron,west-bank,1,9,5,Residental,Demolition on the pretext of unlawful construction +2021-06-01,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-05-31,al-Buweib,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-05-31,Zif,Hebron,west-bank,1,15,9,Residental,Demolition on the pretext of unlawful construction +2021-05-31,al-Buweib,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-05-31,al-Buweib,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-05-31,Zif,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2021-05-31,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-05-10,Sabastiya,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-04-29,Deir Nizam,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-04-28,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-04-20,Kh. Susiya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-04-12,Bani Na'im,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-04-12,Kh. Susiya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-04-07,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-04-04,Jinsafut,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-17,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-17,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2021-03-17,Kh. Tana,Nablus,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2021-03-17,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-17,Kh. Tana,Nablus,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2021-03-17,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-17,Kh. Tana,Nablus,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2021-03-17,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2021-03-17,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2021-03-17,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2021-03-17,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2021-03-17,a-Za'ayem,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2021-03-17,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2021-03-17,Kh. Tana,Nablus,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2021-03-17,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-17,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-17,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,11,5,Residental,Demolition on the pretext of unlawful construction +2021-03-17,a-Za'ayem,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2021-03-17,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,10,3,Residental,Demolition on the pretext of unlawful construction +2021-03-17,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2021-03-17,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2021-03-17,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2021-03-14,Halhul,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-10,'Ein Shibli,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-10,'Ein Shibli,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-03-10,'Ein Shibli,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-10,'Ein Shibli,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-03-08,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-03-08,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-03-08,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-03-07,Bani Na'im,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-03-07,Bani Na'im,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-03,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-03,Qalqiliyah,Qalqiliya,west-bank,11,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-02,Battir,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-03-02,Zif,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-02,Beit Jala,Bethlehem,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2021-03-02,Kh. Khilet a-Dabe',Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2021-03-02,Kh. Khilet a-Dabe',Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2021-03-01,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-01,a-Rakeez,Hebron,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-03-01,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-22,Kh. Humsah,Tubas,west-bank,1,9,6,Residental,Demolition on the pretext of unlawful construction +2021-02-22,al-Hijrah,Hebron,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-12,Beit Ta'mar,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-10,a-Rakeez,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-10,Marj Na'jah,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-10,Kh. 'Allan,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-10,a-Rakeez,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-10,Kh. 'Allan,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-10,Khalet al-Furn,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-10,Kh. Susiya,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2021-02-10,Turah al-Gharbiyah,Jenin,west-bank,2,6,4,Residental,Demolition of houses as punishment +2021-02-08,Kh. Yarza,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Yarza,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Yarza,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Humsah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Humsah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Humsah,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Humsah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Humsah,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-08,Kh.Jib'it,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-08,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-04,Beit 'Awwa,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2021-02-03,'Anin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-03,Hebron,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-03,'Anin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-03,'Anin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-03,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-03,Khalet al-Furn,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-03,'Anin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-03,'Anin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,'Anata,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-02,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,11,4,Residental,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-01,Qalqiliyah,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,11,6,Residental,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-01,Kh.Jib'it,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Jubara,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2021-02-01,Kh. Humsah,Tubas,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2021-01-28,Wadi al-Ahmar,Jericho,west-bank,1,9,3,Residental,Demolition on the pretext of unlawful construction +2021-01-28,Wadi al-Ahmar,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-28,Wadi al-Ahmar,Jericho,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2021-01-28,Wadi al-Ahmar,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-28,Deir al-Ghusun,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-27,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-27,Bir al-Maskub B,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-27,Kh. Qusah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-27,al-Muntar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-27,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-27,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-27,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-27,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-26,al-Burj (Tubas),Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-26,al-Burj (Tubas),Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-26,al-Burj (Tubas),Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-26,al-Burj (Tubas),Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-26,al-Burj (Tubas),Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-25,al-Walajah,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-01-25,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-25,a-Nabi Elyas,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-01-21,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-17,'Anin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-17,'Anin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-17,'Anin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-17,'Anin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-17,'Anin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-17,'Anin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-12,Kh. a-Deir,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-07,Beit Iksa,al-Quds,west-bank,1,5,2,Residental,Demolition on the pretext of unlawful construction +2021-01-07,Beit Iksa,al-Quds,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2021-01-07,Beit Iksa,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2021-01-07,Beit Iksa,al-Quds,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2021-01-07,Beit Iksa,al-Quds,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2021-01-07,Beit Iksa,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-07,Beit Iksa,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-07,Beit Iksa,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-06,Bidya,Salfit,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-05,a-Nabi Samwil,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-05,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-04,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-04,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-04,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-04,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-04,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-04,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-04,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-04,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2021-01-04,'Anata,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2020-12-29,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-29,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-29,al-Buweib,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-29,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-29,Nahhalin,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-29,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-29,al-Khalediah,Hebron,west-bank,1,19,10,Residental,Demolition on the pretext of unlawful construction +2020-12-29,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-29,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-29,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-29,Nahhalin,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-29,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-29,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-29,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-12-29,al-Khalediah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-28,a-Lubban a-Sharqiyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-21,Abu Dis,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-21,a-Simiya,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-12-21,a-Simiya,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-21,a-Simiya,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-12-16,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-15,Suba,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-14,a-Zar'i (Za’atrah),al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2020-12-14,a-Zar'i (Za’atrah),al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2020-12-14,Abu a-Nuwar,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2020-12-14,a-Zar'i (Za’atrah),al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-10,Huwarah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-09,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-09,Shebtin,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-08,Ras 'Ein al-'Auja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-08,Ras 'Ein al-'Auja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-08,Ras 'Ein al-'Auja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-08,Ras 'Ein al-'Auja,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-12-08,a-Simiya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-08,Ras 'Ein al-'Auja,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-12-08,Ras 'Ein al-'Auja,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-12-08,Ras a-Tin,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-08,Ras 'Ein al-'Auja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-07,al-Maniyah,Bethlehem,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2020-12-07,al-Maniyah,Bethlehem,west-bank,1,11,8,Residental,Demolition on the pretext of unlawful construction +2020-12-07,al-Maniyah,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-03,Deir Dobwan,Ramallah and al-Bira,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-02,Jit,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-01,Sabastiya,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-01,Burqah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-01,Zif,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-01,Zif,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-01,Zif,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-01,Sabastiya,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-01,Sabastiya,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-12-01,Sabastiya,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-30,al-Khader,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-11-30,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-30,Halhul,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-30,Qalqiliyah,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-25,Fasayil,Jericho,west-bank,2,9,4,Residental,Demolition on the pretext of unlawful construction +2020-11-25,Fasayil,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-25,Fasayil,Jericho,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2020-11-25,al-Jiftlik,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-11-25,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-25,Kh. Sarurah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-25,a-Rakeez,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-25,Fasayil,Jericho,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-25,Kh. Khilet a-Dabe',Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2020-11-25,Fasayil,Jericho,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-25,Kh. Khilet a-Dabe',Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2020-11-25,Kh. Jenbah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-25,a-Rakeez,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2020-11-17,Kh. Um al-Jamal,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-17,al-Farisiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-11-17,al-Farisiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-17,Kh. 'Atuf,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-17,Furush Beit Dajan,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-16,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-16,Deir Sharaf,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-16,Kh. a-Nahlah,Bethlehem,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2020-11-16,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-12,al-Walajah,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-11-10,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-10,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-10,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-09,Deir Dobwan,Ramallah and al-Bira,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,9,6,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,9,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,8,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,11,6,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,10,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,2,11,4,Residental,Demolition on the pretext of unlawful construction +2020-11-03,Kh. Humsah,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-02,Rujeib,Nablus,west-bank,2,7,4,Residental,Demolition of houses as punishment +2020-11-02,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-11-02,Kh. Susiya,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-11-02,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-28,Maghayir al-'Abid,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-28,Kh. Jubara,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-28,Kh. Jubara,Tulkarm,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-28,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-28,Wadi Abu al-Hindy,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2020-10-28,al-Muntar,al-Quds,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2020-10-28,al-Muntar,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2020-10-27,Kh. a-Samiah,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-27,Birin,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2020-10-27,Birin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-26,a-Taybah,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-10-21,Ya'bad,Jenin,west-bank,0,0,0,Residental,Demolition of houses as punishment +2020-10-21,al-Jiftlik,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-10-21,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-21,al-Khader,Bethlehem,west-bank,1,12,8,Residental,Demolition on the pretext of unlawful construction +2020-10-21,Nahhalin,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-21,Nahhalin,Bethlehem,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2020-10-21,Nahhalin,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-20,Beit Surik,al-Quds,west-bank,2,5,2,Residental,Demolition on the pretext of unlawful construction +2020-10-20,Beit Surik,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-19,al-Farisiyah,Tubas,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2020-10-19,al-Farisiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-19,Qalqiliyah,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-18,Kh. al-Fakhit,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-18,a-Rakeez,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-10-18,Kh. al-Fakhit,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2020-10-01,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-10-01,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-30,She'b al-Batem,Hebron,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2020-09-30,a-Rakeez,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2020-09-30,a-Rakeez,Hebron,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2020-09-30,She'b al-Batem,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2020-09-30,a-Rakeez,Hebron,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2020-09-30,al-Jiftlik,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2020-09-30,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-09-30,Fasayil,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-30,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-09-30,a-Rakeez,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2020-09-30,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-29,Kh. Yarza,Tubas,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2020-09-29,Huwarah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-29,Kh. Yarza,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2020-09-29,Qalandia,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-29,Kh.Jib'it,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-24,Kisan,Bethlehem,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2020-09-24,Kisan,Bethlehem,west-bank,1,11,0,Residental,Demolition on the pretext of unlawful construction +2020-09-24,Kisan,Bethlehem,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2020-09-24,Kisan,Bethlehem,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2020-09-23,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-23,Kh. Jubara,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-23,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-23,Deir Samit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-23,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-23,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-23,Ni'lin,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-23,Deir Samit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-17,Halhul,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-17,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-17,Bidya,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-17,Beit Sira,Ramallah and al-Bira,west-bank,2,6,4,Residental,Demolition on the pretext of unlawful construction +2020-09-17,Beit Sira,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-17,Bethlehem,Bethlehem,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2020-09-10,Farasin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-03,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,6,1,Residental,Demolition on the pretext of unlawful construction +2020-09-02,Kh. Jenbah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-02,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-09-02,Kh. Jenbah,Hebron,west-bank,1,8,0,Residental,Demolition on the pretext of unlawful construction +2020-09-02,Kh. Jenbah,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2020-08-27,'Araba,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-25,Fasayil,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2020-08-25,Fasayil,Jericho,west-bank,1,5,2,Residental,Demolition on the pretext of unlawful construction +2020-08-25,Fasayil,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-25,Wadi a-Siq,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-25,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,8,0,Residental,Demolition on the pretext of unlawful construction +2020-08-25,Wadi a-Siq,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-25,Ras 'Ein al-'Aujah,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-08-24,Kisan,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-20,Kh. 'Atuf,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-19,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-11,Kh. Susiya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-11,Maghayir al-'Abid,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-10,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-10,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-10,Kh. Zakaria,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-08-10,Farasin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-10,Farasin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-08,Kh. 'Allan,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-08,Kh. 'Allan,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-06,Kh. Zakaria,Bethlehem,west-bank,1,8,1,Residental,Demolition on the pretext of unlawful construction +2020-08-06,Kh. Wadi Ejheish,Hebron,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2020-08-05,a-Za'ayem,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-05,Qalqiliyah,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-04,al-Muntar,al-Quds,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2020-08-04,al-Muntar,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2020-08-04,al-Muntar,al-Quds,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2020-08-04,al-Muntar,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2020-08-04,al-Muntar,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2020-08-04,al-Muntar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-04,al-Muntar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-04,al-Muntar,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2020-08-04,al-Muntar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-04,Rantis,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-04,Kisan,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-04,Kisan,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-04,Husan,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-08-04,Rantis,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-28,al-Khader,Bethlehem,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2020-07-28,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-28,Abu al-Hilu,East Jerusalem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-07-23,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-21,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-21,Birin,Hebron,west-bank,1,10,6,Residental,Demolition on the pretext of unlawful construction +2020-07-21,Qarawat Bani Hassan,Salfit,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-07-20,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-16,Kh. Lasefar,Hebron,west-bank,1,9,5,Residental,Demolition on the pretext of unlawful construction +2020-07-15,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-15,Beit Mirsim,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-15,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-14,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-14,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-13,Nazlat 'Isa,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-13,Nazlat 'Isa,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-13,Shufah,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-13,Shufah,Tulkarm,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-13,Shufah,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-08,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-08,Abu al-Hilu,East Jerusalem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-07-08,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-07-02,Wadi al-Ahmar,Jericho,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-02,Wadi al-Ahmar,Jericho,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-02,Wadi al-Ahmar,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-02,Tarqumya,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-02,Wadi al-Ahmar,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-07-02,Wadi al-Ahmar,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-25,'Anata,al-Quds,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2020-06-25,'Anata,al-Quds,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2020-06-24,Beit Sira,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-06-24,a-Tirah,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-06-24,Bitunya,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-06-23,Zif,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-18,al-Khader,Bethlehem,west-bank,1,10,6,Residental,Demolition on the pretext of unlawful construction +2020-06-18,a-Tuwani,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-17,Abu Dis,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-17,Abu Dis,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-06-17,Abu Dis,al-Quds,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2020-06-15,Hamam al-Maleh,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-11,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-09,al-Muntar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-09,al-Ka'abneh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-09,Abu Ghalyah,East Jerusalem,west-bank,1,11,4,Residental,Demolition on the pretext of unlawful construction +2020-06-09,al-Muntar,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2020-06-09,al-Muntar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-09,al-Muntar,al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2020-06-09,al-Muntar,al-Quds,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2020-06-09,al-Muntar,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2020-06-09,al-Muntar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-09,al-Muntar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-08,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-08,a-Sawahrah a-Sharqiyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-08,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-08,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-08,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-08,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-08,Birin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-08,Birin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-08,Birin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-08,Birin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-08,Birin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-07,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-07,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-07,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-07,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-04,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-03,al-Mufaqarah,Hebron,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2020-06-03,Kh. al-Markez,Hebron,west-bank,1,12,9,Residental,Demolition on the pretext of unlawful construction +2020-06-03,Kh. al-Markez,Hebron,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2020-06-03,Kh. al-Markez,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2020-06-03,Kh. al-Markez,Hebron,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2020-06-03,Kh. al-Markez,Hebron,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2020-06-03,Kh. al-Markez,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2020-06-03,Deir Hajla,Jericho,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2020-06-03,Kh. al-Fakhit,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2020-06-03,Deir Hajla,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2020-06-03,Deir Hajla,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2020-06-03,Deir Hajla,Jericho,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2020-06-03,Deir Hajla,Jericho,west-bank,2,9,4,Residental,Demolition on the pretext of unlawful construction +2020-06-02,a-Lubban a-Sharqiyah,Nablus,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2020-06-02,a-Lubban a-Sharqiyah,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-01,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-01,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-01,'Ein al-Beida,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-01,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-06-01,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-27,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-27,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-27,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-27,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-27,Rantis,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-27,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-27,Zawata,Nablus,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-27,Sabastiya,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-27,Furush Beit Dajan,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-05-27,'Ein al-Beida,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-27,'Ein al-Beida,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-27,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-26,'Aqraba,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-20,Furush Beit Dajan,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-17,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-14,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-14,a-Taybah,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-13,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-13,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-13,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-05-11,Farsh al-Hawa,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-11,Kobar,Ramallah and al-Bira,west-bank,1,2,0,Residental,Demolition of houses as punishment +2020-05-06,a-Sawahrah a-Sharqiyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-04,Kh. 'Allan,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-05-04,Tayasir,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-27,Farasin,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-26,Deir al-Qilt,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-26,Deir al-Qilt,Jericho,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2020-04-26,Deir al-Qilt,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-23,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2020-04-23,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-22,Rantis,Ramallah and al-Bira,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-22,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-20,al-Mas'udiyah,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-20,Sabastiya,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-07,Tarqumya,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-06,Qalqas,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-02,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-01,Rummanah,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-04-01,Kafr Ni'ma,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-01,Rummanah,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-04-01,Kh. 'Allan,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-04-01,Rummanah,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-03-31,Kh. Jubara,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-03-26,'Ein a-Duyuk a-Tahta,Jericho,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2020-03-26,Kh.Ibziq,Tubas,west-bank,9,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-03-26,Deir Ballut,Salfit,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-03-26,a-Zawiya,Salfit,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-03-19,al-Muntar,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-03-09,Hebron,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-03-09,Kh.Jib'it,Ramallah and al-Bira,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2020-03-09,Kh.Jib'it,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-03-09,Kh.Jib'it,Ramallah and al-Bira,west-bank,1,7,4,Residental,Demolition on the pretext of unlawful construction +2020-03-09,Kh.Jib'it,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-03-05,Ramallah,Ramallah and al-Bira,west-bank,1,3,1,Residental,Demolition of houses as punishment +2020-03-05,Ni'lin,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-03-05,Bir Zeit,Ramallah and al-Bira,west-bank,1,3,0,Residental,Demolition of houses as punishment +2020-03-04,Beit Jala,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-03-03,Hizma,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-03-03,Yatta,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-02-27,al-Mufaqarah,Hebron,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2020-02-27,Kh. a-Safai al-Foqa,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-02-27,Kh. a-Safai al-Foqa,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-02-27,a-Rakeez,Hebron,west-bank,1,9,3,Residental,Demolition on the pretext of unlawful construction +2020-02-27,al-Walajah,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-02-27,al-Walajah,Bethlehem,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2020-02-19,Birin,Hebron,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2020-02-19,Kh. Susiya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-02-19,a-Nabi Musa,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-02-19,a-Nabi Musa,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-02-19,a-Nabi Musa,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-02-17,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-02-13,Hebron,Hebron,west-bank,1,7,2,Residental,Demolition on the pretext of unlawful construction +2020-02-12,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-02-12,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-02-12,al-Jiftlik,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2020-02-06,al-Fawar R.C.,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-02-06,Jenin,Jenin,west-bank,1,7,2,Residental,Demolition of houses as punishment +2020-02-05,Deir Qadis,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-27,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-27,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-26,a-Zawiya,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-16,a-Rifa'iya,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2020-01-16,Birin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-14,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-13,Kh. 'Allan,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-09,Ras Karkar,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-08,al-Burj,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-06,Ras 'Ein al-'Aujah,Jericho,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2020-01-06,Ras 'Ein al-'Aujah,Jericho,west-bank,1,13,8,Residental,Demolition on the pretext of unlawful construction +2020-01-06,Ras 'Ein al-'Aujah,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2020-01-06,Ras 'Ein al-'Aujah,Jericho,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2020-01-06,Ras 'Ein al-'Aujah,Jericho,west-bank,1,12,8,Residental,Demolition on the pretext of unlawful construction +2020-01-06,Ras 'Ein al-'Aujah,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2020-01-06,Ras 'Ein al-'Aujah,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-06,Ras 'Ein al-'Aujah,Jericho,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2020-01-06,Ras 'Ein al-'Aujah,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2020-01-06,Ras 'Ein al-'Aujah,Jericho,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2020-01-06,Ras 'Ein al-'Aujah,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-01,Kh. Yarza,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2020-01-01,Kh. Yarza,Tubas,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2020-01-01,al-Muntar,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-01,al-Muntar,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2020-01-01,al-Muntar,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-24,Maghayir al-'Abid,Hebron,west-bank,1,5,0,Residental,Demolition on the pretext of unlawful construction +2019-12-24,Kh. Ghuwein al-Foqa,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-23,Kh. Tana,Nablus,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-23,Kh. Tana,Nablus,west-bank,1,9,3,Residental,Demolition on the pretext of unlawful construction +2019-12-23,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-23,Kh. Yarza,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2019-12-23,Kh. Yarza,Tubas,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2019-12-23,Kh. Yarza,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2019-12-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2019-12-22,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2019-12-16,Deir Razih,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-16,al-Khader,Bethlehem,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2019-12-16,al-Khader,Bethlehem,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2019-12-16,Deir Razih,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-16,Wadi al-Qalt,Jericho,west-bank,1,7,4,Residental,Demolition on the pretext of unlawful construction +2019-12-16,Wadi al-Qalt,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-05,Wadi Esneisel,al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2019-12-05,Maghayir al-'Abid,Hebron,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2019-12-05,Maghayir al-'Abid,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2019-12-05,Maghayir al-'Abid,Hebron,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2019-12-04,Wadi Abu al-Hindy,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2019-12-04,Wadi Esneisel,al-Quds,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2019-12-04,Wadi Abu al-Hindy,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2019-12-04,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-04,al-Fuqarah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-04,al-Fuqarah,al-Quds,west-bank,1,9,4,Residental,Demolition on the pretext of unlawful construction +2019-12-03,Kh. Deir Shams,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2019-12-03,Kh. 'Einun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-12-03,Kh. 'Einun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-11-28,Beit Kahil,Hebron,west-bank,1,0,0,Residental,Demolition of houses as punishment +2019-11-28,Beit Kahil,Hebron,west-bank,1,8,4,Residental,Demolition of houses as punishment +2019-11-28,Beit Kahil,Hebron,west-bank,1,4,3,Residental,Demolition of houses as punishment +2019-11-28,Beit Kahil,Hebron,west-bank,1,3,2,Residental,Demolition of houses as punishment +2019-11-28,Salfit,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-11-28,'Asirah a-Shamaliyah,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2019-11-27,a-Lubban a-Sharqiyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-11-25,Battir,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-11-21,Kh. Khilet a-Dabe',Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-11-20,Shuqba,Ramallah and al-Bira,west-bank,2,11,8,Residental,Demolition on the pretext of unlawful construction +2019-11-19,al-'Arrub R.C.,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-11-19,'Ein Samia,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2019-11-19,'Ein Samia,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-11-19,'Ein Samia,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-11-19,'Ein Samia,Ramallah and al-Bira,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2019-11-18,Beit Jala,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-11-13,Kh. 'Atuf,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-11-13,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-11-13,al-A'uja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-11-11,al-Muntar,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2019-11-11,al-Muntar,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2019-11-11,al-'Eizariyah,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2019-11-11,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-11-09,Kh. Tana,Nablus,west-bank,1,10,2,Residental,Demolition on the pretext of unlawful construction +2019-11-06,Maghayir al-'Abid,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-11-06,Kh. Khilet a-Dabe',Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-11-06,Kh. Khilet a-Dabe',Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-10-29,Kh. Jubara,Tulkarm,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-10-28,Dhaher al-Malih,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-10-27,al-'Arrub R.C.,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-10-24,al-Am'ari R.C.,Ramallah and al-Bira,west-bank,3,0,0,Residental,Demolition of houses as punishment +2019-10-11,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-10-10,a-Duqaiqah,Hebron,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2019-10-10,a-Duqaiqah,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2019-10-10,Kisan,Bethlehem,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2019-10-10,Kisan,Bethlehem,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2019-10-03,Beit Ummar,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-10-03,a-Taybah,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-09-25,al-Baq'ah (Hebron),Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-09-25,al-Hijrah,Hebron,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2019-09-25,Deir Ballut,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-09-24,'Awarta,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-09-18,Kh. 'Atuf,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-09-16,al-Walajah,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-09-16,al-Walajah,Bethlehem,west-bank,1,14,4,Residental,Demolition on the pretext of unlawful construction +2019-09-16,al-Walajah,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-09-12,Tammun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-09-12,Tammun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-09-12,Tammun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-09-12,Tammun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-09-12,Tammun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-09-11,Kh. Khilet a-Dabe',Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2019-09-11,Kh. Khilet a-Dabe',Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2019-09-11,al-Mufaqarah,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2019-09-11,al-Mufaqarah,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2019-09-11,al-Mufaqarah,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2019-09-11,al-Mufaqarah,Hebron,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2019-09-02,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-09-02,Hebron,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-08-26,Beit Jala,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-08-26,Beit Jala,Bethlehem,west-bank,1,9,3,Residental,Demolition on the pretext of unlawful construction +2019-08-21,Kh. 'Einun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-08-19,Deir Razih,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-08-19,Kh. Jubara,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-08-18,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-30,Kh. 'Ein al-Hilweh,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-30,Kh. a-Ras al-Ahmar,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-30,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-07-30,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-25,Haris,Salfit,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-24,Khashm a-Daraj,Hebron,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-22,al-Khas,Bethlehem,west-bank,4,0,0,Residental,Demolition on the pretext of unlawful construction +2019-07-21,al-Hadidiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-07-21,al-Hadidiyah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-21,al-Hadidiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-21,al-Hadidiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-07-18,'Asirah a-Shamaliyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-17,Nahhalin,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-17,Nahhalin,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-17,Nahhalin,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-17,Nahhalin,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-17,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-17,al-Khalayleh,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-17,Beit Hanina al-Balad,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-16,Wadi al-Ghrus,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-16,Kh. Ghuwein al-Foqa,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-10,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-10,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-10,'Izbat Salman,Qalqiliya,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-09,a-Za'ayem,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-07-08,Beit Ummar,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-07-07,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-04,a-Duqaiqah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-07-03,Um al-Kheir,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-26,Fqeiqis,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-26,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-26,Deir Ballut,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-26,Deir Ballut,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-26,Deir Ballut,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-24,al-Mufaqarah,Hebron,west-bank,1,14,5,Residental,Demolition on the pretext of unlawful construction +2019-06-23,Qaffin,Tulkarm,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-20,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-19,Tarqumya,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-19,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-19,Jericho,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-06-18,Qusrah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-17,Kh. al-Halawah,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2019-06-17,Kh. al-Halawah,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2019-06-17,Kh. al-Halawah,Hebron,west-bank,1,12,6,Residental,Demolition on the pretext of unlawful construction +2019-06-17,Kh. Khilet a-Dabe',Hebron,west-bank,1,12,7,Residental,Demolition on the pretext of unlawful construction +2019-06-12,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2019-06-12,Kh. a-Ras al-Ahmar,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-12,Kh. a-Ras al-Ahmar,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-12,Kh. a-Ras al-Ahmar,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-12,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-12,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2019-06-12,Kh. a-Ras al-Ahmar,Tubas,west-bank,2,9,4,Residental,Demolition on the pretext of unlawful construction +2019-06-12,al-'Aqabah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-12,Jericho,Jericho,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2019-06-12,Um al-Kheir,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2019-06-12,Khashm a-Daraj,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-11,Tammun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-11,Hebron,Hebron,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2019-06-11,Kh. Jubara,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-11,Tammun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-06-10,Idhna,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-05-30,al-Hadidiyah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-05-30,al-Hadidiyah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-05-30,Kh. a-Ras al-Ahmar,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-05-28,Birin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-05-27,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-05-23,Khallet al-Louza,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-05-14,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-05-02,Um al-Kheir,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-05-02,Kh. Susiya,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-05-01,a-Deirat,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2019-05-01,Kh. Susiya,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-04-24,a-Zawiya,Salfit,west-bank,1,6,4,Residental,Demolition of houses as punishment +2019-04-19,Hebron,Hebron,west-bank,2,6,0,Residental,Demolition of houses as punishment +2019-04-17,Kobar,Ramallah and al-Bira,west-bank,1,2,1,Residental,Demolition of houses as punishment +2019-04-17,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-04-17,Kh. Jubara,Tulkarm,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-04-16,Kh. Susiya,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-04-16,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-04-16,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-04-11,Majdal Bani Fadel,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-04-08,Kh. Susiya,Hebron,west-bank,1,5,0,Residental,Demolition on the pretext of unlawful construction +2019-03-20,Kh. a-Tuba,Hebron,west-bank,1,6,1,Residental,Demolition on the pretext of unlawful construction +2019-03-20,Maghayir al-'Abid,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-03-20,Kh. al-Halawah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-03-20,Kh. al-Halawah,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2019-03-19,'Ebwein,Ramallah and al-Bira,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2019-03-13,Beit Jala,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-03-10,al-'Arrub R.C.,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-03-07,a-Duqaiqah,Hebron,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2019-03-07,Kobar,Ramallah and al-Bira,west-bank,2,1,0,Residental,Demolition of houses as punishment +2019-03-07,al-Mas'udiyah,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2019-03-07,a-Duqaiqah,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2019-03-07,a-Duqaiqah,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2019-03-07,Kh. al-Majaz,Hebron,west-bank,1,8,2,Residental,Demolition on the pretext of unlawful construction +2019-03-07,Kh. al-Fakhit,Hebron,west-bank,1,7,4,Residental,Demolition on the pretext of unlawful construction +2019-03-04,Jaba',al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-03-04,Haris,Salfit,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-02-25,a-Nabi Elyas,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-02-25,a-Nabi Elyas,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-02-20,Mikhmas,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-02-19,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2019-02-19,Kh. a-Ras al-Ahmar,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-02-19,Kh. a-Ras al-Ahmar,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-02-19,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2019-02-11,al-Walajah,Bethlehem,west-bank,1,7,2,Residental,Demolition on the pretext of unlawful construction +2019-01-30,Huwarah,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-01-18,Yatta,Hebron,west-bank,1,6,1,Residental,Demolition of houses as punishment +2019-01-16,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2019-01-16,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-01-16,Fasayil,Jericho,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2019-01-13,Beit Iksa,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-01-13,Beit Iksa,al-Quds,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2019-01-10,Imreihah,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-12-26,a-Lubban a-Sharqiyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-12-24,Mikhmas,al-Quds,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2018-12-17,Shweikah,Tulkarm,west-bank,2,3,0,Residental,Demolition of houses as punishment +2018-12-15,al-Am'ari R.C.,Ramallah and al-Bira,west-bank,4,6,2,Residental,Demolition of houses as punishment +2018-12-12,Kafr Laqif,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-12-11,al-Jiftlik,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-12-05,a-Simiya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-12-04,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-12-04,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-12-03,Fasayil,Jericho,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2018-12-03,Fasayil,Jericho,west-bank,1,10,6,Residental,Demolition on the pretext of unlawful construction +2018-11-27,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-11-26,Imreihah,Jenin,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2018-11-19,Bardalah,Tubas,west-bank,1,5,0,Residental,Demolition on the pretext of unlawful construction +2018-11-19,Qalandia,al-Quds,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2018-11-12,Qusrah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-11-11,al-A'uja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-11-11,al-A'uja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-11-11,al-A'uja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-11-08,Kh.Ibziq,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-11-08,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-11-08,a-Za'ayem,al-Quds,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-11-08,a-Za'ayem,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-11-07,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-11-05,al-Hadidiyah,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2018-11-05,al-Hadidiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-10-29,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-10-25,Wadi al-Qatif,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2018-10-23,Kh.Ibziq,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-10-22,Kh. Jamrurah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-10-18,Kh. al-Marajim,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-10-18,Bardalah,Tubas,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2018-10-18,Bardalah,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-10-18,Imreihah,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-10-18,al-Birah,Ramallah and al-Bira,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2018-10-17,Khallet al-Mayah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-10-17,Kh. Ghuwein al-Foqa,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-10-17,Kh. Susiya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-10-11,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-10-11,al-Jiftlik,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-10-11,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-10-11,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-10-11,al-Jiftlik,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-10-11,al-Jiftlik,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2018-10-11,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-10-11,al-Hadidiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-10-11,al-Hadidiyah,Tubas,west-bank,3,7,4,Residental,Demolition on the pretext of unlawful construction +2018-10-09,Kh. al-Halawah,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2018-10-09,Kh. al-Halawah,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2018-10-09,Kh. al-Halawah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-10-02,Kh. al-Halawah,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2018-09-20,Rantis,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-09-20,Rantis,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-09-13,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,5,0,0,Residental,Demolition on the pretext of unlawful construction +2018-09-06,Deir Istiya,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-09-04,Kh. Humsah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-09-04,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-09-04,'Anata,al-Quds,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2018-09-04,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-09-03,al-Walajah,Bethlehem,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2018-09-03,al-Walajah,Bethlehem,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2018-09-03,al-Walajah,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-09-03,Qawawis,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-09-03,al-Walajah,Bethlehem,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2018-08-29,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-08-29,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-08-29,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-08-28,Kobar,Ramallah and al-Bira,west-bank,1,9,4,Residental,Demolition of houses as punishment +2018-08-15,Hizma,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-08-14,Deir Dobwan,Ramallah and al-Bira,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2018-08-08,Qawawis,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-08-08,a-Samu',Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2018-08-07,,,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-30,Kh. a-Tuba,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-25,Jabal al-Baba,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-18,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2018-07-18,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-18,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-18,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-07-15,Kh. al-Marajim,Nablus,west-bank,1,8,3,Residental,Demolition on the pretext of unlawful construction +2018-07-11,Kh. Khilet a-Dabe',Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-05,Kh. Um Nir,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2018-07-05,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-05,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-05,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-05,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-04,Abu a-Nuwar,al-Quds,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2018-07-04,Abu a-Nuwar,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2018-07-04,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-04,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-04,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-04,Abu a-Nuwar,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2018-07-04,Abu a-Nuwar,al-Quds,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2018-07-04,Abu a-Nuwar,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2018-07-04,Abu a-Nuwar,al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2018-07-04,Abu a-Nuwar,al-Quds,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2018-07-04,Abu a-Nuwar,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2018-07-04,Abu a-Nuwar,al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2018-07-04,al-Farisiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-03,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-07-03,Battir,Bethlehem,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2018-06-26,al-Mufaqarah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-06-25,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-06-25,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-06-25,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-06-21,Barta'ah a-Sharqiyah,Jenin,west-bank,1,3,1,Residental,Demolition of houses as punishment +2018-06-20,Abu Dis,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-05-10,Duma,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-05-07,Qalandia,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-05-07,Qalandia,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-05-02,Kh. Jenbah,Hebron,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2018-05-02,Kh. Jenbah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-05-02,Kh. al-Halawah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-05-02,Kh. al-Markez,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2018-05-02,Kh. al-Markez,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-05-02,Kh. al-Markez,Hebron,west-bank,1,8,0,Residental,Demolition on the pretext of unlawful construction +2018-05-02,Kh. al-Markez,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-05-02,Kh. al-Markez,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2018-05-02,Kh. al-Markez,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-05-02,Kh. al-Halawah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-05-02,Kh. al-Fakhit,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-05-02,Kh. al-Halawah,Hebron,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2018-05-02,Kh. al-Halawah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-05-01,Ya'bad,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-05-01,Ya'bad,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-05-01,Ya'bad,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-05-01,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-04-25,Jaba',al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-04-24,Kh. Susiya,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-04-24,Kh. Susiya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-04-24,Jabal al-Baba,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-04-24,Jenin,Jenin,west-bank,1,9,2,Residental,Demolition of houses as punishment +2018-04-15,Kh. Zanutah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-04-12,Shuqba,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-04-12,Shuqba,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-04-12,Shuqba,Ramallah and al-Bira,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-04-12,Shuqba,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-04-12,Shuqba,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-04-10,Jibya,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-04-10,Jibya,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-04-09,Kh. Zanutah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-03-28,Kh. Susiya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-03-28,al-Walajah,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-03-28,al-Walajah,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-03-28,al-Walajah,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-03-28,Kh. Susiya,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2018-03-14,Bethlehem,Bethlehem,west-bank,1,13,5,Residental,Demolition on the pretext of unlawful construction +2018-03-14,Bethlehem,Bethlehem,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-03-13,Qabatiyah,Jenin,west-bank,0,0,0,Residental,Demolition of houses as punishment +2018-03-13,Silwad,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-03-13,Silwad,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-02-28,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-02-28,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-02-21,Beit 'Einun,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-02-21,al-Baq'ah (Hebron),Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-02-20,Jabal al-Baba,al-Quds,west-bank,1,13,10,Residental,Demolition on the pretext of unlawful construction +2018-02-14,al-Haskah,Hebron,west-bank,4,0,0,Residental,Demolition on the pretext of unlawful construction +2018-02-12,al-'Arrub R.C.,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-02-12,Wadi Qana,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-02-12,Wadi Qana,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-02-03,Birqin,Jenin,west-bank,3,0,0,Non Resedential,Demolition for alleged military purposes +2018-01-31,Yatta,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2018-01-24,Kh. 'Ein Karzaliyah,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-01-24,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2018-01-24,Kh. 'Ein Karzaliyah,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2018-01-24,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-01-24,al-Jiftlik,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2018-01-18,Jenin,Jenin,west-bank,1,5,0,Residental,Demolition for alleged military purposes +2018-01-18,Jenin,Jenin,west-bank,2,5,1,Residental,Demolition for alleged military purposes +2018-01-18,Jenin,Jenin,west-bank,1,6,2,Residental,Demolition for alleged military purposes +2018-01-04,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-12-30,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-12-01,Qabatiyah,Jenin,west-bank,1,5,3,Residental,Demolition of houses as punishment +2017-11-27,Beit 'Einun,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-11-22,al-'Ajaj (Id'eis),Tubas,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2017-11-22,Furush Beit Dajan,Nablus,west-bank,1,9,5,Residental,Demolition on the pretext of unlawful construction +2017-11-22,Battir,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-11-22,Battir,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-11-22,Rantis,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-11-22,Kh. al-Halawah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-11-22,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-11-16,Ni'lin,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2017-11-15,Beit Surik,al-Quds,west-bank,1,10,7,Residental,Demolition of houses as punishment +2017-11-13,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-11-07,Furush Beit Dajan,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-11-07,Khallet al-Fouleh,Jericho,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2017-11-07,Khallet al-Fouleh,Jericho,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2017-11-07,Khallet al-Fouleh,Jericho,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2017-10-31,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-10-31,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-10-31,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-10-19,al-Mufaqarah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-10-19,Kh. al-Halawah,Hebron,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2017-10-19,Hizma,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-10-19,Kh. al-Halawah,Hebron,west-bank,1,15,8,Residental,Demolition on the pretext of unlawful construction +2017-10-17,al-A'uja,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-10-17,al-A'uja,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-10-17,al-A'uja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-10-16,Jabal al-Baba,al-Quds,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2017-10-16,Abu Dis,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2017-10-16,Abu Dis,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-10-16,Jabal al-Baba,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2017-10-16,Jabal al-Baba,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2017-10-16,Jabal al-Baba,al-Quds,west-bank,1,13,10,Residental,Demolition on the pretext of unlawful construction +2017-10-16,Abu Dis,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2017-09-25,Deir Ballut,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-09-25,Beit Ummar,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-09-18,a-Za'ayem,al-Quds,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2017-09-13,'Ein a-Duyuk a-Tahta,Jericho,west-bank,7,0,0,Residental,Demolition on the pretext of unlawful construction +2017-09-13,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-08-31,Hizma,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2017-08-22,Jub a-Dib,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-08-21,Jabal al-Baba,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-08-16,Kobar,Ramallah and al-Bira,west-bank,0,0,0,Residental,Demolition of houses as punishment +2017-08-14,Khashm a-Daraj,Hebron,west-bank,1,5,2,Residental,Demolition on the pretext of unlawful construction +2017-08-14,Khashm a-Daraj,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2017-08-14,Khashm a-Daraj,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-08-14,Khashm a-Daraj,Hebron,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2017-08-10,Silwad,Ramallah and al-Bira,west-bank,1,5,2,Residental,Demolition of houses as punishment +2017-08-10,Deir Abu Mash'al,Ramallah and al-Bira,west-bank,1,4,1,Residental,Demolition of houses as punishment +2017-08-10,Deir Abu Mash'al,Ramallah and al-Bira,west-bank,1,6,4,Residental,Demolition of houses as punishment +2017-08-10,Deir Abu Mash'al,Ramallah and al-Bira,west-bank,1,3,0,Residental,Demolition of houses as punishment +2017-07-24,Wadi Esneisel,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-07-16,a-Za'ayem,al-Quds,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2017-07-12,Wadi Abu al-Hindy,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-07-12,Wadi Abu al-Hindy,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-07-03,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-07-03,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-07-01,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-05-18,Zabdah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-05-18,Zabdah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-05-09,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-05-09,al-Jiftlik,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2017-05-04,al-Walajah,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-05-04,al-Walajah,Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-05-04,al-Walajah,Bethlehem,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2017-05-04,al-Walajah,Bethlehem,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2017-04-25,Ni'lin,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-04-25,Ni'lin,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-04-25,Ni'lin,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-04-25,Ni'lin,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-04-19,Jabal al-Baba,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-04-05,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,8,3,Residental,Demolition on the pretext of unlawful construction +2017-04-05,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-04-05,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-04-05,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2017-04-05,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-04-05,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2017-04-04,a-Za'ayem,al-Quds,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2017-04-04,a-Sheikh Sa'ed,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-04-04,a-Za'ayem,al-Quds,west-bank,4,0,0,Residental,Demolition on the pretext of unlawful construction +2017-04-04,a-Za'ayem,al-Quds,west-bank,8,11,0,Residental,Demolition on the pretext of unlawful construction +2017-03-28,Kh. Tall al-Himma,Tubas,west-bank,1,8,0,Residental,Demolition on the pretext of unlawful construction +2017-03-27,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-03-22,Jabal al-Mukabber,East Jerusalem,east-jerusalem,1,3,2,Residental,Demolition of houses as punishment +2017-03-22,a-Zbeidat,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-03-22,a-Zbeidat,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-03-22,a-Zbeidat,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-03-22,a-Zbeidat,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-03-14,Furush Beit Dajan,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-03-06,Hebron,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-02-23,Khashm al-Karem,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-02-20,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2017-02-20,al-Hadidiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-02-15,Hizma,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-02-15,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-02-14,Farsh al-Hawa,Hebron,west-bank,1,0,0,Non Resedential,Demolition for alleged military purposes +2017-02-07,Kh. a-Ras al-Ahmar,Tubas,west-bank,2,7,5,Residental,Demolition on the pretext of unlawful construction +2017-02-07,Kh. a-Ras al-Ahmar,Tubas,west-bank,7,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-02-07,Kardalah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-26,al-'Eizariyah,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-26,al-'Eizariyah,al-Quds,west-bank,1,7,4,Residental,Demolition on the pretext of unlawful construction +2017-01-26,al-'Eizariyah,al-Quds,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2017-01-26,al-'Eizariyah,al-Quds,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2017-01-26,al-'Eizariyah,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-26,al-'Eizariyah,al-Quds,west-bank,2,10,8,Residental,Demolition on the pretext of unlawful construction +2017-01-26,al-'Eizariyah,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2017-01-26,al-'Eizariyah,al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2017-01-26,al-'Eizariyah,al-Quds,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2017-01-23,Kh. 'Ein Karzaliyah,Jericho,west-bank,2,6,3,Residental,Demolition on the pretext of unlawful construction +2017-01-23,Kh. 'Ein Karzaliyah,Jericho,west-bank,2,7,3,Residental,Demolition on the pretext of unlawful construction +2017-01-23,Kh. 'Ein Karzaliyah,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-23,Kh. 'Ein Karzaliyah,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-18,Qalandia R.C.,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-18,Qalandia R.C.,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-18,Qalandia R.C.,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-18,Qalandia R.C.,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-18,Qalandia R.C.,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-18,Qalandia R.C.,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-18,Qalandia R.C.,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-18,Qalandia R.C.,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-18,Qalandia R.C.,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-18,Qalandia R.C.,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-17,'Aqraba,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-17,Kh. Twayel,Nablus,west-bank,1,7,0,Residental,Demolition on the pretext of unlawful construction +2017-01-17,Kh. Twayel,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-12,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-12,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-11,Bani Na'im,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-10,al-Hadidiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-10,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-05,Jinsafut,Qalqiliya,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-04,Tuqu',Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-01-04,Tuqu',Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-04,Tuqu',Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-04,Tuqu',Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-04,Tuqu',Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-04,Tuqu',Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-04,Tuqu',Bethlehem,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-04,Tuqu',Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-04,Tuqu',Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,3,8,4,Residental,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,2,10,6,Residental,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,1,9,3,Residental,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,1,5,2,Residental,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2017-01-03,Kh. Tana,Nablus,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2017-01-02,Wadi Esneisel,al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2017-01-02,Wadi Esneisel,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-02,Wadi Esneisel,al-Quds,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2017-01-02,Wadi Esneisel,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2017-01-02,Wadi Esneisel,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2017-01-02,Wadi Esneisel,al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2017-01-02,Wadi Esneisel,al-Quds,west-bank,1,13,11,Residental,Demolition on the pretext of unlawful construction +2017-01-02,Wadi Esneisel,al-Quds,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2017-01-02,Bir al-Maskub A,al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2017-01-02,Bir al-Maskub B,al-Quds,west-bank,1,3,2,Residental,Demolition on the pretext of unlawful construction +2017-01-02,Bir al-Maskub A,al-Quds,west-bank,1,18,14,Residental,Demolition on the pretext of unlawful construction +2016-12-29,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-12-29,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-12-29,Deir Qadis,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-12-27,Idhna,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-12-22,Kafr 'Aqab (Jerusalem),East Jerusalem,east-jerusalem,1,6,3,Residental,Demolition of houses as punishment +2016-12-18,Kh. Yarza,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-12-07,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-12-07,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-12-06,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-12-06,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-12-06,Fasayil,Jericho,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-12-06,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-12-06,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-11-22,Yatta,Hebron,west-bank,1,1,0,Residental,Demolition of houses as punishment +2016-11-22,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-15,Jaba' (Tajammu' Badawi),al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-11-15,Um al-Kheir,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-15,Jaba' (Tajammu' Badawi),al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-11-15,Jaba' (Tajammu' Badawi),al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-15,Jaba' (Tajammu' Badawi),al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-11-15,Jaba' (Tajammu' Badawi),al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-11-14,al-A'uja,Jericho,west-bank,8,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-14,al-A'uja,Jericho,west-bank,20,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-10,Qalqiliyah,Qalqiliya,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-10,Qalqiliyah,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,al-A'uja,Jericho,west-bank,8,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,al-A'uja,Jericho,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-09,Tulkarm,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-07,Kh. Tall al-Himma,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2016-11-07,Kh. Tall al-Himma,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2016-11-07,Kh. Tall al-Himma,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-07,Kh. Tall al-Himma,Tubas,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2016-11-07,Kh. Tall al-Himma,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-11-07,Kh. Tall al-Himma,Tubas,west-bank,1,8,0,Residental,Demolition on the pretext of unlawful construction +2016-11-07,Kh. Tall al-Himma,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-11-03,Beita,Nablus,west-bank,3,23,7,Residental,Demolition on the pretext of unlawful construction +2016-10-31,Kh. a-Deir,Tubas,west-bank,2,10,4,Residental,Demolition on the pretext of unlawful construction +2016-10-31,Kh. a-Deir,Tubas,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-31,Kh. a-Deir,Tubas,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-31,Kh. a-Deir,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-10-31,Kh. a-Deir,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-27,Beita,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-27,Beita,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-27,Beita,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-11,Nablus,Nablus,west-bank,1,9,5,Residental,Demolition of houses as punishment +2016-10-10,a-Deirat,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-09,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,3,7,0,Residental,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,2,6,2,Residental,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,7,0,Residental,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,3,10,0,Residental,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-09,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-10-09,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-10-09,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-10-09,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-10-09,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-10-09,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2016-10-09,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-09-28,Kh. Susiya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-28,Kh.Jurat al-Kheil,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-27,Kh.Jurat al-Kheil,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-27,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2016-09-27,Kh. Tall al-Himma,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-09-27,Kh. Tall al-Himma,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-27,Kh. Tall al-Himma,Tubas,west-bank,2,8,0,Residental,Demolition on the pretext of unlawful construction +2016-09-27,Kh. Tall al-Himma,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-27,Kh. Tall al-Himma,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2016-09-27,Kh. Tall al-Himma,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-27,Kh. Tall al-Himma,Tubas,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2016-09-27,Kh. Tall al-Himma,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-27,Kh. Tall al-Himma,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2016-09-27,Kh. Tall al-Himma,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-27,Kh.Jurat al-Kheil,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-27,Kh.Jurat al-Kheil,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-26,Beit Dajan,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-26,Beit Dajan,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-08,Bil'in,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-07,al-'Aqabah,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-09-07,al-'Aqabah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-07,al-'Aqabah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-07,al-'Aqabah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-09-07,al-'Aqabah,Tubas,west-bank,2,8,5,Residental,Demolition on the pretext of unlawful construction +2016-08-30,Dura,Hebron,west-bank,1,3,2,Residental,Demolition of houses as punishment +2016-08-29,Jaba' (Tajammu' Badawi),al-Quds,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2016-08-29,Jaba' (Tajammu' Badawi),al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-29,Jaba' (Tajammu' Badawi),al-Quds,west-bank,1,11,7,Residental,Demolition on the pretext of unlawful construction +2016-08-29,Jaba' (Tajammu' Badawi),al-Quds,west-bank,1,11,5,Residental,Demolition on the pretext of unlawful construction +2016-08-29,Jaba' (Tajammu' Badawi),al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-29,Jaba' (Tajammu' Badawi),al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-24,Um al-Kheir,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-08-24,Um al-Kheir,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-08-24,Um al-Kheir,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-17,Beit Ula,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-17,Qusrah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-17,Beit Ula,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-17,Duma,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-08-17,Kh. al-Marajim,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-16,Kh.Jurat al-Kheil,Hebron,west-bank,1,5,2,Residental,Demolition on the pretext of unlawful construction +2016-08-16,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-15,Bani Na'im,Hebron,west-bank,2,10,4,Residental,Demolition of houses as punishment +2016-08-11,Barta'ah a-Sharqiyah,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-11,Fqeiqis,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-09,Um al-Kheir,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-08-09,Um al-Kheir,Hebron,west-bank,1,3,2,Residental,Demolition on the pretext of unlawful construction +2016-08-09,Um al-Kheir,Hebron,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-08-09,Um al-Kheir,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2016-08-09,Um al-Kheir,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-08-09,Jayus,Qalqiliya,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-09,Sabastiya,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-09,Sabastiya,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-08,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-08,Kh. Yarza,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-08,al-Fawar R.C.,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-08,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-08,al-Jiftlik,Jericho,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2016-08-08,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-08,Fasayil,Jericho,west-bank,2,12,7,Residental,Demolition on the pretext of unlawful construction +2016-08-08,Sabastiya,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-04,Yatta,Hebron,west-bank,1,9,5,Residental,Demolition of houses as punishment +2016-08-04,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2016-08-04,Yatta,Hebron,west-bank,1,0,0,Residental,Demolition of houses as punishment +2016-08-04,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-04,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,2,9,0,Residental,Demolition on the pretext of unlawful construction +2016-08-04,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-04,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,5,2,Residental,Demolition on the pretext of unlawful construction +2016-08-04,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,14,11,Residental,Demolition on the pretext of unlawful construction +2016-08-04,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,15,9,Residental,Demolition on the pretext of unlawful construction +2016-08-04,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,14,9,Residental,Demolition on the pretext of unlawful construction +2016-08-04,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,12,8,Residental,Demolition on the pretext of unlawful construction +2016-08-04,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2016-08-04,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-08-04,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2016-08-04,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2016-08-04,a-Nuwei'mah al-Foqa,Jericho,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2016-08-04,Kh. a-Razim,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-03,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-03,Farsh al-Hawa,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-08-03,a-Nabi Samwil,Ramallah and al-Bira,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-07-27,Surif,Hebron,west-bank,5,6,2,Residental,Demolition for alleged military purposes +2016-07-25,Qalandia,al-Quds,west-bank,3,14,8,Residental,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,3,8,4,Residental,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,3,12,6,Residental,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,4,0,0,Residental,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,3,7,2,Residental,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,2,6,4,Residental,Demolition on the pretext of unlawful construction +2016-07-25,Qalandia,al-Quds,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2016-07-21,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-07-21,'Anata,al-Quds,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2016-07-21,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-07-21,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-07-21,'Anata,al-Quds,west-bank,1,10,5,Residental,Demolition on the pretext of unlawful construction +2016-07-21,'Anata,al-Quds,west-bank,1,10,9,Residental,Demolition on the pretext of unlawful construction +2016-07-21,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-07-21,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-07-18,Qabatiyah,Jenin,west-bank,1,7,1,Residental,Demolition of houses as punishment +2016-07-04,Qalandia R.C.,al-Quds,west-bank,1,3,0,Residental,Demolition of houses as punishment +2016-07-04,Qalandia R.C.,al-Quds,west-bank,1,6,0,Residental,Demolition of houses as punishment +2016-06-21,Hajjah,Qalqiliya,west-bank,1,5,2,Residental,Demolition of houses as punishment +2016-06-19,Kh. Wadi Ejheish,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-06-19,Kh. Wadi Ejheish,Hebron,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2016-06-19,Kh. Wadi Ejheish,Hebron,west-bank,1,14,11,Residental,Demolition on the pretext of unlawful construction +2016-06-19,a-Deirat,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-06-13,al-Karmel,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-06-11,Yatta,Hebron,west-bank,2,5,2,Residental,Demolition of houses as punishment +2016-06-05,Wadi al-Qalt,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-06-05,Wadi al-Qalt,Jericho,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2016-06-05,Wadi al-Qalt,Jericho,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2016-06-05,Wadi al-Qalt,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-06-05,Wadi al-Qalt,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-06-05,Wadi al-Qalt,Jericho,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2016-06-05,Wadi al-Qalt,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-05-16,Deir al-Ghusun,Tulkarm,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-05-16,Jabal al-Baba,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-05-16,Jabal al-Baba,al-Quds,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2016-05-16,Jabal al-Baba,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-05-16,Jabal al-Baba,al-Quds,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2016-05-16,Jabal al-Baba,al-Quds,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2016-05-16,Jabal al-Baba,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-05-16,Jabal al-Baba,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2016-05-16,Jabal al-Baba,al-Quds,west-bank,2,13,7,Residental,Demolition on the pretext of unlawful construction +2016-05-16,Jabal al-Baba,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-05-10,al-Walajah,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-05-10,al-Walajah,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-05-03,Nablus,Nablus,west-bank,1,1,0,Residental,Demolition of houses as punishment +2016-05-02,Qalqiliyah,Qalqiliya,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-22,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-20,Qalandia R.C.,al-Quds,west-bank,1,8,6,Residental,Demolition of houses as punishment +2016-04-14,al-'Arrub R.C.,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-12,Za'tara,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-12,al-Walajah,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-12,al-Walajah,Bethlehem,west-bank,1,7,4,Residental,Demolition on the pretext of unlawful construction +2016-04-11,Zur Baher,East Jerusalem,east-jerusalem,1,2,0,Residental,Demolition of houses as punishment +2016-04-07,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,13,9,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Bir al-Maskub A,al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Bir al-Maskub B,al-Quds,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Bir al-Maskub B,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Bir al-Maskub A,al-Quds,west-bank,1,15,9,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Ni'lin,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Ni'lin,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,0,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-07,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-05,Beit Sahur,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-04,Qabatiyah,Jenin,west-bank,1,10,4,Residental,Demolition of houses as punishment +2016-04-04,Qabatiyah,Jenin,west-bank,1,7,3,Residental,Demolition of houses as punishment +2016-04-04,Wadi al-Qalt,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-04,Kh. al-Marajim,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-04,Kh. al-Marajim,Nablus,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2016-04-04,Kh. al-Marajim,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-04-04,Kh. al-Marajim,Nablus,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-04-04,Wadi al-Qalt,Jericho,west-bank,2,9,7,Residental,Demolition on the pretext of unlawful construction +2016-04-04,Surif,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-04-04,Qabatiyah,Jenin,west-bank,1,6,0,Residental,Demolition of houses as punishment +2016-03-31,Hebron,Hebron,west-bank,1,3,0,Residental,Demolition of houses as punishment +2016-03-29,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-29,Rammun,Ramallah and al-Bira,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-03-29,Rammun,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-29,Rammun,Ramallah and al-Bira,west-bank,1,7,0,Residental,Demolition on the pretext of unlawful construction +2016-03-29,Rammun,Ramallah and al-Bira,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2016-03-29,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-29,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-29,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-03-23,Kh. Tana,Nablus,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2016-03-22,Kh. Jenbah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-22,Kh. Jenbah,Hebron,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2016-03-17,Beita,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-17,Beita,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-17,Beita,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-17,Beita,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-17,Beita,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-17,Beita,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-16,Qalandia,al-Quds,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-12,Bethlehem,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-03-08,Hebron,Hebron,west-bank,1,6,2,Residental,Demolition of houses as punishment +2016-03-07,Halhul,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-03,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2016-03-02,Wadi al-Qalt,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Wadi al-Qalt,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Wadi al-Qalt,Jericho,west-bank,1,17,14,Residental,Demolition on the pretext of unlawful construction +2016-03-02,Wadi al-Qalt,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Wadi al-Qalt,Jericho,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2016-03-02,Wadi al-Qalt,Jericho,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2016-03-02,Shweikah,Tulkarm,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-03-02,Wadi al-Qalt,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-03-02,Kh. Tana,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2016-02-29,al-Farisiyah,Tubas,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2016-02-29,al-Farisiyah,Tubas,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2016-02-29,al-Farisiyah,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-02-29,al-Farisiyah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-29,al-Farisiyah,Tubas,west-bank,1,9,4,Residental,Demolition on the pretext of unlawful construction +2016-02-29,al-Farisiyah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-25,Ni'lin,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-25,Ni'lin,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-25,Ni'lin,Ramallah and al-Bira,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-23,Deir Samit,Hebron,west-bank,1,5,3,Residental,Demolition of houses as punishment +2016-02-23,Deir Samit,Hebron,west-bank,2,13,7,Residental,Demolition of houses as punishment +2016-02-21,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,2,13,9,Residental,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,11,8,Residental,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-02-15,Kh.Um a-Rashash,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,1,7,2,Residental,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,1,9,4,Residental,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,2,2,0,Residental,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2016-02-11,'Ein al-Beida,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-02-11,Bardalah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-11,al-Farisiyah,Tubas,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2016-02-10,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-10,Fasayil,Jericho,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-02-10,Fasayil,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-10,al-Jiftlik,Jericho,west-bank,1,13,10,Residental,Demolition on the pretext of unlawful construction +2016-02-10,al-Jiftlik,Jericho,west-bank,1,10,5,Residental,Demolition on the pretext of unlawful construction +2016-02-10,al-Jiftlik,Jericho,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2016-02-10,Kh. 'Ein Karzaliyah,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-10,al-Mukasar,Tubas,west-bank,1,10,5,Residental,Demolition on the pretext of unlawful construction +2016-02-10,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,7,4,Residental,Demolition on the pretext of unlawful construction +2016-02-10,Kh. 'Ein Karzaliyah,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-10,Khallet al-Fouleh,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-10,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-10,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2016-02-10,Kh. 'Ein Karzaliyah,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-10,al-Mukasar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-10,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,9,5,Residental,Demolition on the pretext of unlawful construction +2016-02-10,Khallet al-Fouleh,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-09,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-09,Kh. Tana,Nablus,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2016-02-09,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-09,Kh. Tana,Nablus,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2016-02-09,Kh. Tana,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-09,Kh. Tana,Nablus,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2016-02-09,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-09,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-09,Kh. Tana,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-09,Kh. Tana,Nablus,west-bank,1,7,2,Residental,Demolition on the pretext of unlawful construction +2016-02-04,Beit Dajan,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-04,al-Mukasar,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-04,al-Mukasar,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-02-04,al-Mukasar,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-04,al-Mukasar,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-02-04,Bil'in,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-04,Bil'in,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-04,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-02,Kh. Jenbah,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. Jenbah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. Jenbah,Hebron,west-bank,1,13,3,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. Jenbah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. Jenbah,Hebron,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. Jenbah,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. Jenbah,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. Jenbah,Hebron,west-bank,1,11,6,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. Jenbah,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. Jenbah,Hebron,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. Jenbah,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. Jenbah,Hebron,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. al-Halawah,Hebron,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. al-Halawah,Hebron,west-bank,1,11,7,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. al-Halawah,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. al-Halawah,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. al-Halawah,Hebron,west-bank,1,10,2,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. al-Halawah,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-02-02,Kh. al-Halawah,Hebron,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2016-02-01,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-02-01,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-02-01,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2016-02-01,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-01-27,Hizma,al-Quds,west-bank,1,24,17,Residental,Demolition on the pretext of unlawful construction +2016-01-21,Beit Ula,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-21,Jabal al-Baba,al-Quds,west-bank,1,9,0,Residental,Demolition on the pretext of unlawful construction +2016-01-21,Jabal al-Baba,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-01-21,Jabal al-Baba,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2016-01-21,Jabal al-Baba,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-01-21,Jabal al-Baba,al-Quds,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2016-01-21,Jabal al-Baba,al-Quds,west-bank,1,3,2,Residental,Demolition on the pretext of unlawful construction +2016-01-20,Badu al-Mashru',Jericho,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2016-01-20,Kh. Lasefar,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-20,Kh. Lasefar,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-20,Beit a-Rush a-Tahta,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-01-20,Kh. Susiya,Hebron,west-bank,2,8,6,Residental,Demolition on the pretext of unlawful construction +2016-01-18,Kharbatha al-Misbah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-18,al-Funduq,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-18,Kharbatha al-Misbah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-18,Kharbatha al-Misbah,Ramallah and al-Bira,west-bank,1,2,1,Residental,Demolition on the pretext of unlawful construction +2016-01-18,Jinsafut,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-14,Kh. 'Einun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-14,Kh. 'Einun,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-14,al-'Arrub R.C.,Hebron,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-14,a-Taybah,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-14,Kh. 'Einun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-14,Kh. 'Einun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-14,Kh. 'Einun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-14,a-Taybah,Ramallah and al-Bira,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2016-01-14,Beit Ummar,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-01-13,Kh. a-Rahwah,Hebron,west-bank,1,11,9,Residental,Demolition on the pretext of unlawful construction +2016-01-13,Kh. a-Rahwah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-13,a-Sawiyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-10,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-01-10,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-01-10,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-01-10,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-01-10,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2016-01-09,Qalandia R.C.,al-Quds,west-bank,1,6,3,Residental,Demolition of houses as punishment +2016-01-06,Abu a-Nuwar,al-Quds,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2016-01-06,Abu a-Nuwar,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2016-01-06,Abu a-Nuwar,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2016-01-06,Abu a-Nuwar,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2016-01-06,Abu a-Nuwar,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2016-01-06,Abu a-Nuwar,al-Quds,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2016-01-04,Jabal al-Mukabber,East Jerusalem,east-jerusalem,1,5,2,Residental,Demolition of houses as punishment +2016-01-04,Jabal al-Mukabber,East Jerusalem,east-jerusalem,1,2,0,Residental,Demolition of houses as punishment +2015-12-24,Kh. Um al-Jamal,Tubas,west-bank,1,12,5,Residental,Demolition on the pretext of unlawful construction +2015-12-08,'Izbat Shufah,Tulkarm,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-12-03,Nablus,Nablus,west-bank,2,8,4,Residental,Demolition of houses as punishment +2015-12-02,Shu'fat R.C.,East Jerusalem,east-jerusalem,1,6,4,Residental,Demolition of houses as punishment +2015-12-01,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-11-28,al-Hadidiyah,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2015-11-26,al-Hadidiyah,Tubas,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2015-11-26,al-Hadidiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-11-26,al-Hadidiyah,Tubas,west-bank,1,11,4,Residental,Demolition on the pretext of unlawful construction +2015-11-26,al-Hadidiyah,Tubas,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-11-26,al-Hadidiyah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-11-26,Halhul,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-11-25,al-Hadidiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-11-16,Kh.Jurat al-Kheil,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2015-11-16,Kh.Jurat al-Kheil,Hebron,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2015-11-16,Qalandia R.C.,al-Quds,west-bank,1,3,2,Residental,Demolition of houses as punishment +2015-11-14,Silwad,Ramallah and al-Bira,west-bank,1,5,1,Residental,Demolition of houses as punishment +2015-11-14,Nablus,Nablus,west-bank,1,5,3,Residental,Demolition of houses as punishment +2015-11-14,Nablus,Nablus,west-bank,1,5,1,Residental,Demolition of houses as punishment +2015-11-14,Nablus,Nablus,west-bank,1,7,2,Residental,Demolition of houses as punishment +2015-11-12,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-11-12,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-11-12,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-11-10,Kh. al-Hafirah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-11-10,Kh. al-Hafirah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-11-10,Kh. al-Hafirah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-10-20,Hebron,Hebron,west-bank,1,3,2,Residental,Demolition of houses as punishment +2015-10-06,Abu Tur,East Jerusalem,east-jerusalem,0,0,0,Residental,Demolition of houses as punishment +2015-10-06,Jabal al-Mukabber,East Jerusalem,east-jerusalem,1,1,0,Residental,Demolition of houses as punishment +2015-10-06,Jabal al-Mukabber,East Jerusalem,east-jerusalem,1,5,3,Residental,Demolition of houses as punishment +2015-09-27,Kh. Humsah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-09-20,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-09-20,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-09-20,Hizma,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-09-03,a-Taybah,Ramallah and al-Bira,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2015-09-03,a-Taybah,Ramallah and al-Bira,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2015-09-03,a-Taybah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-09-03,a-Taybah,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,3,13,9,Residental,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,12,10,Residental,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,12,10,Residental,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,9,6,Residental,Demolition on the pretext of unlawful construction +2015-08-31,al-Khdeirat,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2015-08-26,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-26,al-'Eizariyah,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-26,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-26,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-26,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-20,Kh. 'Einun,Tubas,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2015-08-20,Kh. 'Einun,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-20,Kh. a-Deir,Tubas,west-bank,0,0,0,Residental,Demolition on the pretext of unlawful construction +2015-08-20,Kh. a-Deir,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-20,Kh. Samrah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-20,Kh. 'Einun,Tubas,west-bank,2,4,2,Residental,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,2,10,8,Residental,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,2,8,5,Residental,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-18,Fasayil,Jericho,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2015-08-18,Jericho,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-18,Jericho,Jericho,west-bank,0,0,0,Residental,Demolition on the pretext of unlawful construction +2015-08-17,Wadi Esneisel,al-Quds,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-17,Bir al-Maskub B,al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2015-08-17,Wadi Esneisel,al-Quds,west-bank,1,10,6,Residental,Demolition on the pretext of unlawful construction +2015-08-17,Bir al-Maskub B,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2015-08-17,Bir al-Maskub B,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-17,Wadi Esneisel,al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2015-08-17,Wadi Esneisel,al-Quds,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-17,Wadi Esneisel,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2015-08-17,Wadi Esneisel,al-Quds,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-17,Wadi Esneisel,al-Quds,west-bank,1,13,10,Residental,Demolition on the pretext of unlawful construction +2015-08-17,Wadi Esneisel,al-Quds,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-17,Wadi Esneisel,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2015-08-17,Wadi Esneisel,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2015-08-17,Wadi Esneisel,al-Quds,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2015-08-17,a-Sheikh 'Anbar (a-S'idi),al-Quds,west-bank,1,10,6,Residental,Demolition on the pretext of unlawful construction +2015-08-17,a-Sheikh 'Anbar (a-S'idi),al-Quds,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2015-08-17,a-Sheikh 'Anbar (a-S'idi),al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2015-08-17,a-Sheikh 'Anbar (a-S'idi),al-Quds,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2015-08-17,Bir al-Maskub B,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-13,Harmalah,Bethlehem,west-bank,0,0,0,Residental,Demolition on the pretext of unlawful construction +2015-08-13,Kh. a-Deir,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-08-13,Za'tara,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-11,Kh. Humsah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-11,al-'Ajaj (Id'eis),Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2015-08-11,al-'Ajaj (Id'eis),Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-08-11,al-'Ajaj (Id'eis),Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-11,Kh. Humsah,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2015-08-11,a-Zbeidat,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-10,Deir Ballut,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-10,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-10,Deir Ballut,Salfit,west-bank,0,0,0,Residental,Demolition on the pretext of unlawful construction +2015-08-10,a-Nabi Elyas,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-10,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-10,Kh. a-Rahwah,Hebron,west-bank,1,10,0,Residental,Demolition on the pretext of unlawful construction +2015-08-10,al-Jalameh,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-10,Kh. a-Rahwah,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2015-08-06,Beit Jala,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-06,Husan,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-05,al-'Aqabah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-05,'Ein al-Meyteh,Tubas,west-bank,2,4,0,Residental,Demolition on the pretext of unlawful construction +2015-08-05,al-'Aqabah,Tubas,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2015-08-05,al-'Aqabah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-05,al-'Aqabah,Tubas,west-bank,1,5,2,Residental,Demolition on the pretext of unlawful construction +2015-08-05,'Ein al-Meyteh,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-05,al-'Aqabah,Tubas,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2015-08-05,'Ein al-Meyteh,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-05,'Ein al-Meyteh,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2015-08-05,al-'Aqabah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-05,Halhul,Hebron,west-bank,0,0,0,Residental,Demolition on the pretext of unlawful construction +2015-08-05,al-'Arrub R.C.,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-08-05,Kh. Yarza,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-04,al-Haskah,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-04,Khashm a-Daraj,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-04,Beit Kahil,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-04,She'b al-Batem,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-08-03,Khashm a-Daraj,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-07-29,Beit Hanina al-Balad,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-07-29,Beit Hanina al-Balad,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-07-29,Beit Hanina al-Balad,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-07-21,Idhna,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-07-21,Idhna,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-07-21,Idhna,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-07-01,Jabal al-Mukabber,East Jerusalem,east-jerusalem,1,6,1,Residental,Demolition of houses as punishment +2015-06-15,Kafr a-Dik,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-06-15,Haris,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-06-10,Asfar,Hebron,west-bank,1,12,10,Residental,Demolition on the pretext of unlawful construction +2015-06-09,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-06-09,al-Khalayleh,al-Quds,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-06-09,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-06-04,al-Mukasar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-06-04,Surif,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-06-04,al-Mukasar,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2015-06-04,al-Mukasar,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-06-04,al-Mukasar,Tubas,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2015-06-04,al-Mukasar,Tubas,west-bank,2,10,3,Residental,Demolition on the pretext of unlawful construction +2015-06-04,al-Mukasar,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-06-04,al-Mukasar,Tubas,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2015-06-04,al-Mukasar,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-06-04,Surif,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-06-01,Rummanah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-05-21,Marj Na'jah,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-05-21,a-Zbeidat,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-05-21,Marj Na'jah,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-05-21,Marj Na'jah,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-05-12,Silwad,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-05-05,Kafr Qadum,Qalqiliya,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-04-29,Rujeib,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-04-28,a-Nabi Saleh,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-04-27,al-Jiftlik,Jericho,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2015-04-27,al-Jiftlik,Jericho,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2015-04-27,al-Jiftlik,Jericho,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2015-04-27,al-Jiftlik,Jericho,west-bank,1,10,5,Residental,Demolition on the pretext of unlawful construction +2015-04-16,Silwad,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-04-01,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-24,Ta'nak,Jenin,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-18,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-03-18,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-03-18,Khallet Makhul,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-18,Khallet Makhul,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-18,Khallet Makhul,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-18,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-03-15,al-Hadidiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-11,Beit Iksa,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-03-11,Beit Iksa,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-03-11,Beit Iksa,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-03-11,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-11,Zabdah,Jenin,west-bank,3,21,13,Residental,Demolition on the pretext of unlawful construction +2015-03-11,Zabdah,Jenin,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-10,al-Jiftlik,Jericho,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2015-03-10,al-Jiftlik,Jericho,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2015-03-10,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-10,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-10,al-Jiftlik,Jericho,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2015-03-10,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-10,al-Jiftlik,Jericho,west-bank,1,9,5,Residental,Demolition on the pretext of unlawful construction +2015-03-10,al-Jiftlik,Jericho,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2015-03-10,al-Jiftlik,Jericho,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2015-03-09,al-Jarushiya,Tulkarm,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-03-04,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2015-03-04,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-03-04,Kh. 'Ein Karzaliyah,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-04,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-03-04,Kh. 'Ein Karzaliyah,Jericho,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2015-03-04,Kh. 'Ein Karzaliyah,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-04,Kh. 'Ein Karzaliyah,Jericho,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2015-03-04,Kh. 'Ein Karzaliyah,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-03-04,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-02-24,al-'Udeisah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-02-11,al-Khalayleh,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-02-11,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-02-05,Husan,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-02-02,Qusrah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-02-02,Qusrah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-02-02,Qusrah,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-22,Beit Iksa,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-22,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-01-22,Beit Iksa,al-Quds,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2015-01-22,Beit Iksa,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2015-01-22,Beit Iksa,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2015-01-22,Kh. 'Ein Karzaliyah,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-22,Kh. 'Ein Karzaliyah,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-22,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-01-22,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2015-01-22,Kh. 'Ein Karzaliyah,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-22,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-01-22,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2015-01-21,al-Mughayir,Ramallah and al-Bira,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2015-01-21,al-Mughayir,Ramallah and al-Bira,west-bank,1,8,3,Residental,Demolition on the pretext of unlawful construction +2015-01-21,al-Mughayir,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-21,Deir al-Quruntal,Jericho,west-bank,2,12,7,Residental,Demolition on the pretext of unlawful construction +2015-01-21,Deir al-Quruntal,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-20,a-Rifa'iya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-20,a-Rifa'iya,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2015-01-20,a-Rifa'iya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-20,a-Rifa'iya,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-01-20,Halhul,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-17,Bani Na'im,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-14,Deir Jarir,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-01-14,Mikhmas,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-05,Idhna,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-05,Idhna,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2015-01-05,Idhna,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-01,Kh. 'Ein al-Hilweh,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-01-01,Kh. 'Ein al-Hilweh,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-01,Kh. 'Ein al-Hilweh,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2015-01-01,Kh. 'Ein al-Hilweh,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-01,Kh. 'Ein al-Hilweh,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2015-01-01,Kh. 'Ein al-Hilweh,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-01,Kh. 'Ein al-Hilweh,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-01,Kh. 'Ein al-Hilweh,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2015-01-01,Kh. 'Ein al-Hilweh,Tubas,west-bank,4,0,0,Residental,Demolition on the pretext of unlawful construction +2015-01-01,Kh. 'Ein al-Hilweh,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2015-01-01,al-Mufaqarah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-12-23,Ramallah,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-12-22,Jabal al-Baba,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-12-22,Jabal al-Baba,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-12-22,Jabal al-Baba,al-Quds,west-bank,1,7,6,Residental,Demolition on the pretext of unlawful construction +2014-12-22,Jabal al-Baba,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-12-22,Jabal al-Baba,al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2014-12-17,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-12-15,a-Za'ayem,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-20,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-19,Silwan,East Jerusalem,east-jerusalem,1,6,3,Residental,Demolition of houses as punishment +2014-11-05,Bardalah,Tubas,west-bank,2,6,4,Residental,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,2,8,3,Residental,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,2,7,5,Residental,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,1,5,2,Residental,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,2,6,4,Residental,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,0,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-05,Bardalah,Tubas,west-bank,2,6,2,Residental,Demolition on the pretext of unlawful construction +2014-11-03,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-03,'Arab a-Ramadin a-Shamali,Qalqiliya,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-03,'Arab a-Ramadin a-Shamali,Qalqiliya,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-03,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2014-11-03,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-11-03,Kh. Twayel,Nablus,west-bank,1,8,1,Residental,Demolition on the pretext of unlawful construction +2014-11-03,Kh. Twayel,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2014-11-03,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2014-10-28,Khashm a-Daraj,Hebron,west-bank,1,9,6,Residental,Demolition on the pretext of unlawful construction +2014-10-27,Um al-Kheir,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-10-27,Um al-Kheir,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2014-10-27,Um al-Kheir,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2014-10-27,Um al-Kheir,Hebron,west-bank,1,7,0,Residental,Demolition on the pretext of unlawful construction +2014-10-27,Um al-Kheir,Hebron,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2014-10-27,Um al-Kheir,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2014-10-20,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-10-20,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-10-20,al-Jiftlik,Jericho,west-bank,1,13,7,Residental,Demolition on the pretext of unlawful construction +2014-10-20,al-Jiftlik,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2014-10-20,al-Jiftlik,Jericho,west-bank,1,9,6,Residental,Demolition on the pretext of unlawful construction +2014-10-20,al-Jiftlik,Jericho,west-bank,1,11,4,Residental,Demolition on the pretext of unlawful construction +2014-09-29,Kh. Twayel,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-29,Kh. Twayel,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-29,Abu Dis,al-Quds,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2014-09-10,Khashm a-Daraj,Hebron,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2014-09-10,Khashm a-Daraj,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-10,Khashm a-Daraj,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-08,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,3,14,8,Residental,Demolition on the pretext of unlawful construction +2014-09-08,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-03,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-03,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-03,al-Khalayleh,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-02,Kh. a-Rahwah,Hebron,west-bank,1,10,4,Residental,Demolition on the pretext of unlawful construction +2014-09-02,Kh. a-Rahwah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-02,Jaba',al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-02,Jaba',al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-02,Jaba',al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2014-09-02,Jaba',al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-02,Jaba',al-Quds,west-bank,1,13,7,Residental,Demolition on the pretext of unlawful construction +2014-09-02,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-02,Kh. a-Rahwah,Hebron,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2014-09-02,Kh. a-Rahwah,Hebron,west-bank,1,20,8,Residental,Demolition on the pretext of unlawful construction +2014-09-02,Jaba',al-Quds,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2014-09-02,Kh. a-Rahwah,Hebron,west-bank,1,14,6,Residental,Demolition on the pretext of unlawful construction +2014-09-02,Kh. a-Rahwah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-02,a-Lubban a-Sharqiyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-02,a-Lubban a-Sharqiyah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-09-02,Jaba',al-Quds,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2014-09-02,Jaba',al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-08-28,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-08-28,a-Za'ayem,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-08-28,a-Za'ayem,al-Quds,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2014-08-28,a-Za'ayem,al-Quds,west-bank,4,45,22,Residental,Demolition on the pretext of unlawful construction +2014-08-20,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,2,8,4,Residental,Demolition on the pretext of unlawful construction +2014-08-20,Deir Dobwan,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-08-20,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-08-20,al-'Aqabah,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2014-08-20,al-'Aqabah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-08-20,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,3,18,12,Residental,Demolition on the pretext of unlawful construction +2014-08-18,al-Walajah,Bethlehem,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-08-18,Hebron,Hebron,west-bank,1,5,3,Residental,Demolition of houses as punishment +2014-08-18,Hebron,Hebron,west-bank,1,8,6,Residental,Demolition of houses as punishment +2014-08-18,Hebron,Hebron,west-bank,1,2,0,Residental,Demolition of houses as punishment +2014-08-11,Qabalan,Nablus,west-bank,3,0,0,Non Resedential,Demolition for alleged military purposes +2014-08-06,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-08-06,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-07-05,Idhna,Hebron,west-bank,1,8,4,Residental,Demolition of houses as punishment +2014-07-03,al-'Aqabah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-07-03,al-'Aqabah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-07-03,al-'Aqabah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-07-03,al-'Aqabah,Tubas,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2014-06-19,a-Rifa'iya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-06-18,Khalet al-Furn,Hebron,west-bank,1,12,10,Residental,Demolition on the pretext of unlawful construction +2014-06-18,Khalet al-Furn,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-06-18,Khalet al-Furn,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2014-06-18,Khalet al-Furn,Hebron,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2014-06-18,Khalet al-Furn,Hebron,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2014-06-18,Khalet al-Furn,Hebron,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2014-06-18,al-Khader,Bethlehem,west-bank,1,10,6,Residental,Demolition on the pretext of unlawful construction +2014-06-18,al-Khader,Bethlehem,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2014-06-17,Idhna,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-06-09,Far'on,Tulkarm,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-06-02,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-06-02,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-06-02,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-05-29,Qalqiliyah,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,2,6,3,Residental,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,3,6,3,Residental,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2014-05-21,al-Jiftlik,Jericho,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2014-05-20,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-05-20,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-05-20,al-Khalayleh,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-05-19,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-05-19,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-05-19,al-'Eizariyah,al-Quds,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-05-19,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,9,6,Residental,Demolition on the pretext of unlawful construction +2014-05-19,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,9,5,Residental,Demolition on the pretext of unlawful construction +2014-05-18,Kh. Twayel,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-05-18,Kh. Twayel,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2014-04-30,Marah al-Baqqar,Hebron,west-bank,1,10,3,Residental,Demolition on the pretext of unlawful construction +2014-04-30,Marah al-Baqqar,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-29,Kh. Twayel,Nablus,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2014-04-29,Kh. Twayel,Nablus,west-bank,1,11,1,Residental,Demolition on the pretext of unlawful construction +2014-04-29,Kh. Twayel,Nablus,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-29,Kh. Twayel,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-29,Kh. Twayel,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-29,Kh. Twayel,Nablus,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2014-04-07,Shweikah,Tulkarm,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-04-03,Kh. 'Ein Karzaliyah,Jericho,west-bank,5,0,0,Residental,Demolition on the pretext of unlawful construction +2014-04-03,Kh. 'Ein Karzaliyah,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-03,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2014-04-03,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-03,Jabal al-Baba,al-Quds,west-bank,2,21,16,Residental,Demolition on the pretext of unlawful construction +2014-04-03,Jabal al-Baba,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-03,Jabal al-Baba,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2014-04-03,Jabal al-Baba,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-02,a-Tuwani,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-02,a-Tuwani,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-02,a-Tuwani,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-02,a-Tuwani,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-02,a-Tuwani,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-02,a-Tuwani,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-02,a-Tuwani,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-01,Haris,Salfit,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Humsah,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Humsah,Tubas,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Humsah,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Humsah,Tubas,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Humsah,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Humsah,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Humsah,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Humsah,Tubas,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Ja'waneh,Nablus,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-04-01,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-04-01,Bruqin,Salfit,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-03-25,Jericho,Jericho,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2014-03-25,Jericho,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-03-12,al-'Eizariyah,al-Quds,west-bank,1,10,4,Residental,Demolition on the pretext of unlawful construction +2014-03-11,Beit Iksa,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2014-02-27,Bir Zeit,Ramallah and al-Bira,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2014-02-24,Hebron,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-02-17,Kh. Yarza,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-02-17,Kh. Yarza,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-02-17,Kh. Yarza,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-02-17,Kh. Yarza,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-02-17,Kh. Yarza,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-02-17,al-'Eizariyah,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-02-17,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-02-17,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-02-17,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-02-17,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-02-13,Deir Dobwan,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-02-13,Deir Dobwan,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-02-12,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-02-12,Kh. 'Ein Karzaliyah,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,2,7,5,Residental,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,2,6,4,Residental,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,3,10,8,Residental,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2014-01-30,Kh. Um al-Jamal,Tubas,west-bank,1,10,2,Residental,Demolition on the pretext of unlawful construction +2014-01-29,al-Jiftlik,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2014-01-29,al-Jiftlik,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2014-01-29,al-Jiftlik,Jericho,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2014-01-22,Kh. Yarza,Tubas,west-bank,1,9,4,Residental,Demolition on the pretext of unlawful construction +2014-01-22,Kh. Yarza,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-22,Kh. Yarza,Tubas,west-bank,2,7,5,Residental,Demolition on the pretext of unlawful construction +2014-01-22,Kh. Yarza,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-22,Kh. Yarza,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-01-22,Kh. Yarza,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-22,Kh. Yarza,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-22,Kh. Yarza,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-22,Kh. Yarza,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2014-01-22,Kh. Yarza,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-22,Kh. Yarza,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-22,Kh.Ibziq,Tubas,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2014-01-22,Kh.Ibziq,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-22,Kh.Ibziq,Tubas,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2014-01-22,Kh.Ibziq,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-22,Kh.Ibziq,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-22,Kh. Yarza,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-08,Kh. 'Ein Karzaliyah,Jericho,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-08,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,10,6,Residental,Demolition on the pretext of unlawful construction +2014-01-08,Kh. 'Ein Karzaliyah,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-08,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2014-01-08,Kh. 'Ein Karzaliyah,Jericho,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-08,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-08,Kh. 'Ein Karzaliyah,Jericho,west-bank,1,9,5,Residental,Demolition on the pretext of unlawful construction +2014-01-08,al-A'uja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2014-01-08,al-Jiftlik,Jericho,west-bank,2,20,8,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Deir 'Ammar,Ramallah and al-Bira,west-bank,2,6,4,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Fasayil,Jericho,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Deir 'Ammar,Ramallah and al-Bira,west-bank,2,4,0,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Deir 'Ammar,Ramallah and al-Bira,west-bank,2,6,4,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-24,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Deir 'Ammar,Ramallah and al-Bira,west-bank,1,8,0,Residental,Demolition on the pretext of unlawful construction +2013-12-24,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-24,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-24,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-24,Fasayil,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2013-12-12,'Ein a-Duyuk a-Tahta,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-12-10,Tayasir,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-10,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-10,al-Jiftlik,Jericho,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2013-12-10,Tayasir,Tubas,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2013-12-10,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-10,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-10,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-10,Kh. Yarza,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-12-10,Kh. Yarza,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-03,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-03,Bardalah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-03,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-03,al-Hadidiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-12-03,al-Farisiyah,Tubas,west-bank,3,11,5,Residental,Demolition on the pretext of unlawful construction +2013-12-03,al-Farisiyah,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-03,Kh. Yarza,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-02,al-A'uja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-02,al-A'uja,Jericho,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2013-12-02,al-A'uja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-02,al-A'uja,Jericho,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-02,al-A'uja,Jericho,west-bank,1,19,7,Residental,Demolition on the pretext of unlawful construction +2013-12-02,al-A'uja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-02,al-A'uja,Jericho,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2013-12-02,al-A'uja,Jericho,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2013-12-02,al-A'uja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-02,al-A'uja,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-12-02,al-A'uja,Jericho,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2013-11-28,Deir Ballut,Salfit,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-11-25,a-Taybah,Ramallah and al-Bira,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2013-11-20,al-Jiftlik,Jericho,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2013-11-20,al-Jiftlik,Jericho,west-bank,3,13,5,Residental,Demolition on the pretext of unlawful construction +2013-11-20,Kh. Twayel,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-11-20,al-Jiftlik,Jericho,west-bank,1,10,6,Residental,Demolition on the pretext of unlawful construction +2013-10-30,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-10-21,Abu Dis,al-Quds,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2013-10-03,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-10-03,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-10-03,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-10-03,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-10-02,Jaba',al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2013-09-28,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-09-19,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-09-19,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-09-18,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-09-18,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-09-18,Khallet Makhul,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,3,10,8,Residental,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,1,7,0,Residental,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,1,5,0,Residental,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-16,Khallet Makhul,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-12,Barta'ah a-Sharqiyah,Jenin,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-12,Barta'ah a-Sharqiyah,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-11,a-Za'ayem,al-Quds,west-bank,10,62,40,Residental,Demolition on the pretext of unlawful construction +2013-09-11,a-Za'ayem,al-Quds,west-bank,10,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-09,Barta'ah a-Sharqiyah,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-09,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2013-09-09,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-03,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-09-03,Fasayil,Jericho,west-bank,1,10,6,Residental,Demolition on the pretext of unlawful construction +2013-08-20,Furush Beit Dajan,Nablus,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2013-08-20,Furush Beit Dajan,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-08-20,Furush Beit Dajan,Nablus,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2013-08-20,Furush Beit Dajan,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-08-20,Furush Beit Dajan,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-07-08,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-07-08,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-07-08,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-07-08,Kh. a-Ras al-Ahmar,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-07-08,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-07-08,Kh. a-Ras al-Ahmar,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-07-08,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-07-08,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-07-08,Kh. a-Ras al-Ahmar,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-07-08,al-Hadidiyah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-07-08,al-Hadidiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-07-08,al-Hadidiyah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-07-08,al-Hadidiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-07-08,al-Hadidiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-07-08,al-Hadidiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-06-27,al-Hadidiyah,Tubas,west-bank,1,10,2,Residental,Demolition on the pretext of unlawful construction +2013-06-27,al-Hadidiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-06-27,al-Hadidiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-06-27,al-Hadidiyah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-06-27,al-Hadidiyah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-06-27,al-Hadidiyah,Tubas,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2013-06-27,al-Hadidiyah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-06-27,Kh. a-Ras al-Ahmar,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2013-06-27,Kh. a-Ras al-Ahmar,Tubas,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-06-27,al-Hadidiyah,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2013-06-27,Kh. a-Ras al-Ahmar,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-06-27,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2013-06-27,Kh. a-Ras al-Ahmar,Tubas,west-bank,6,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-06-27,Kh. a-Ras al-Ahmar,Tubas,west-bank,2,10,2,Residental,Demolition on the pretext of unlawful construction +2013-06-27,Kh. a-Ras al-Ahmar,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-06-27,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,7,1,Residental,Demolition on the pretext of unlawful construction +2013-06-27,al-Hadidiyah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-06-27,al-Hadidiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-06-12,Barta'ah a-Sharqiyah,Jenin,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-06-12,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-05-29,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-27,al-Jiftlik,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-05-27,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-27,al-Jiftlik,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-05-20,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-20,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-20,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-20,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-20,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-09,Barta'ah a-Sharqiyah,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-09,Barta'ah a-Sharqiyah,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-09,Barta'ah a-Sharqiyah,Jenin,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2013-05-09,Barta'ah a-Sharqiyah,Jenin,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-09,Barta'ah a-Sharqiyah,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-08,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-05-08,al-A'uja,Jericho,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2013-05-08,al-A'uja,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2013-05-07,Tarqumya,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-07,Rafat,al-Quds,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2013-05-07,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-07,Tarqumya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-07,Deir Dobwan,Ramallah and al-Bira,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-06,Beit Ula,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-06,Beit Ula,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-06,Beit Ula,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-01,Jinsafut,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-01,Jinsafut,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-05-01,Jinsafut,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-04-24,al-'Arrub R.C.,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-04-23,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-04-23,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-04-23,Kh. Yarza,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-04-23,Hamam al-Maleh,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-04-23,Hamam al-Maleh,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-04-23,Hamam al-Maleh,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-04-23,Hamam al-Maleh,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-04-23,Kh. Yarza,Tubas,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2013-04-23,Kh. 'Ein al-Hilweh,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-04-23,Kh. 'Ein al-Hilweh,Tubas,west-bank,3,12,10,Residental,Demolition on the pretext of unlawful construction +2013-04-18,Beit Jala,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-04-09,Yatta,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-04-09,a-Deirat,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-04-09,a-Samu',Hebron,west-bank,2,7,5,Residental,Demolition on the pretext of unlawful construction +2013-04-09,a-Samu',Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-02-20,Qusrah,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-02-19,Beit Iksa,al-Quds,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-02-12,a-Ramadin,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-02-11,Beit 'Awwa,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-02-11,Idhna,Hebron,west-bank,1,5,0,Residental,Demolition on the pretext of unlawful construction +2013-02-07,al-Khas,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-24,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-24,al-Malih,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-24,al-Jiftlik,Jericho,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2013-01-24,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-24,al-Jiftlik,Jericho,west-bank,1,7,4,Residental,Demolition on the pretext of unlawful construction +2013-01-24,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-24,al-Jiftlik,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2013-01-24,al-Jiftlik,Jericho,west-bank,1,13,8,Residental,Demolition on the pretext of unlawful construction +2013-01-24,al-Jiftlik,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-24,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-23,Hamam al-Maleh,Tubas,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-23,Hamam al-Maleh,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-23,Hamam al-Maleh,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-23,Hamam al-Maleh,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-21,Kh. a-Rahwah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-21,Kh. a-Rahwah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-21,Kh. a-Rahwah,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2013-01-21,Kh. a-Rahwah,Hebron,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2013-01-21,Kh. a-Rahwah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-21,Kh. a-Rahwah,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2013-01-21,a-Deirat,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-19,'Ein al-Meyteh,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-19,'Ein al-Meyteh,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-19,'Ein al-Meyteh,Tubas,west-bank,4,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-19,'Ein al-Meyteh,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-19,'Ein al-Meyteh,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-19,'Ein al-Meyteh,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-19,'Ein al-Meyteh,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-19,'Ein al-Meyteh,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-19,'Ein al-Meyteh,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-19,'Ein al-Meyteh,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-19,'Ein al-Meyteh,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-19,Hamam al-Maleh,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-19,Hamam al-Maleh,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-19,Hamam al-Maleh,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-19,Hamam al-Maleh,Tubas,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-19,Hamam al-Maleh,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-19,Hamam al-Maleh,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-17,Hamam al-Maleh,Tubas,west-bank,2,4,0,Residental,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-17,Hamam al-Maleh,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-17,Hamam al-Maleh,Tubas,west-bank,3,10,7,Residental,Demolition on the pretext of unlawful construction +2013-01-17,Hamam al-Maleh,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-17,Hamam al-Maleh,Tubas,west-bank,2,3,1,Residental,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,2,5,3,Residental,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-17,Hamam al-Maleh,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,2,3,0,Residental,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,4,0,0,Residental,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-17,'Ein al-Meyteh,Tubas,west-bank,1,11,8,Residental,Demolition on the pretext of unlawful construction +2013-01-16,Beit Jala,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2013-01-16,Jericho,Jericho,west-bank,4,31,20,Residental,Demolition on the pretext of unlawful construction +2013-01-14,Um al-Kheir,Hebron,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2013-01-14,Kh. Bir al-'Eid,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2012-12-31,Bardalah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-12-31,Bardalah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2012-12-31,Bardalah,Tubas,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-12-27,al-'Eizariyah,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-12-27,al-'Eizariyah,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2012-12-12,Beit Nuba,Ramallah and al-Bira,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2012-12-04,,,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-11-12,Beit 'Einun,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-11-12,Beit 'Einun,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-11-07,Bardalah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-11-07,Beka'ot,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2012-11-07,Farsh al-Hawa,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-11-07,Farsh al-Hawa,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2012-11-07,Haris,Salfit,west-bank,2,12,6,Residental,Demolition on the pretext of unlawful construction +2012-11-07,Haris,Salfit,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2012-11-07,Bardalah,Tubas,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2012-11-07,Beka'ot,Jericho,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2012-11-06,a-Deirat,Hebron,west-bank,2,12,7,Residental,Demolition on the pretext of unlawful construction +2012-11-06,al-Jawaya,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-11-06,al-Jawaya,Hebron,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2012-11-01,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-11-01,Hizma,al-Quds,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,11,0,Residental,Demolition on the pretext of unlawful construction +2012-10-31,a-Nabi Samwil,Ramallah and al-Bira,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-31,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,2,12,3,Residental,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,11,9,Residental,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,11,9,Residental,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,8,0,Residental,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,11,2,Residental,Demolition on the pretext of unlawful construction +2012-10-31,Kh.Ibziq,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-24,Idhna,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2012-10-24,Idhna,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-24,Qalqiliyah,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-24,Qalqiliyah,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-24,Kfar Dan,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-22,Wadi al-Ghrus,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-16,Kh. Lasefar,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-10-16,Kh. Lasefar,Hebron,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2012-10-16,Kh. Lasefar,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-29,'Arab a-Ramadin a-Shamali,Qalqiliya,west-bank,1,9,3,Residental,Demolition on the pretext of unlawful construction +2012-08-28,'Aqraba,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-28,Kh. E'nizan,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-28,Kh. Susiya,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-28,Kh. E'nizan,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-28,Kh. E'nizan,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2012-08-28,Kh. E'nizan,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-28,'Aqraba,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-28,Kh. E'nizan,Hebron,west-bank,1,7,4,Residental,Demolition on the pretext of unlawful construction +2012-08-28,Kh. E'nizan,Hebron,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-28,Kh. E'nizan,Hebron,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-28,Kh. E'nizan,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-15,Beit Qad,Jenin,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-15,Beit Qad,Jenin,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-13,Beit Ta'mar,Bethlehem,west-bank,9,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-13,Elazar,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-12,'Arab a-Ramadin a-Shamali,Qalqiliya,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-08-02,Beit Jala,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-06-25,'Ein al-Meyteh,Tubas,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2012-06-25,'Ein al-Meyteh,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-06-25,'Ein al-Meyteh,Tubas,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2012-06-25,'Ein al-Meyteh,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-06-25,'Ein al-Meyteh,Tubas,west-bank,1,7,2,Residental,Demolition on the pretext of unlawful construction +2012-06-25,'Ein al-Meyteh,Tubas,west-bank,4,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-06-18,al-'Ubeidiyah,Bethlehem,west-bank,2,9,4,Residental,Demolition on the pretext of unlawful construction +2012-06-18,al-'Ubeidiyah,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-06-18,al-'Ubeidiyah,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-06-18,al-'Ubeidiyah,Bethlehem,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2012-06-17,Beit Iksa,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-06-07,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-06-07,'Anata,al-Quds,west-bank,5,21,14,Residental,Demolition on the pretext of unlawful construction +2012-06-06,'Anata,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-27,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-27,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-27,Hizma,al-Quds,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-24,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2012-05-24,'Arab a-Ramadin al-Janubi,Qalqiliya,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2012-05-24,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-24,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-24,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2012-05-23,a-Dhahiriyah,Hebron,west-bank,2,13,6,Residental,Demolition on the pretext of unlawful construction +2012-05-23,a-Dhahiriyah,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-23,a-Dhahiriyah,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2012-05-23,a-Dhahiriyah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2012-05-23,a-Dhahiriyah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-09,Sabastiya,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-09,Husan,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-09,Jenin,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-03,Beit Jala,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-01,'Izbat a-Tabib,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2012-05-01,a-Nabi Elyas,Qalqiliya,west-bank,13,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-05-01,Wadi Qana,Salfit,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2012-04-24,Gush Etzion,Bethlehem,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2012-04-24,al-Khader,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-18,Giv'at Ze'ev,Ramallah and al-Bira,west-bank,8,44,28,Residental,Demolition on the pretext of unlawful construction +2012-04-18,Giv'at Ze'ev,Ramallah and al-Bira,west-bank,5,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-16,Kafr a-Dik,Salfit,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-16,Kafr a-Dik,Salfit,west-bank,3,22,15,Residental,Demolition on the pretext of unlawful construction +2012-04-16,Kafr a-Dik,Salfit,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-16,Kafr a-Dik,Salfit,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-16,Kafr a-Dik,Salfit,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-16,Kafr a-Dik,Salfit,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-16,Dura,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-16,Kafr a-Dik,Salfit,west-bank,3,22,15,Residental,Demolition on the pretext of unlawful construction +2012-04-16,Dura,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-16,Dura,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-15,al-Baq'ah (Hebron),Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-02,Kh. Ja'waneh,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-02,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2012-04-02,Kh. Ja'waneh,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-02,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-02,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2012-04-02,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-04-02,Kh. Ja'waneh,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2012-04-02,Kh. Ja'waneh,Nablus,west-bank,2,8,3,Residental,Demolition on the pretext of unlawful construction +2012-03-26,Zabdah,Jenin,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-03-26,Kh. Tall al-Himma,Tubas,west-bank,1,5,0,Residental,Demolition on the pretext of unlawful construction +2012-03-26,al-Farisiyah,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-03-26,Kh. Tall al-Himma,Tubas,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2012-03-26,Kh. Tall al-Himma,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-03-26,Kh. Tall al-Himma,Tubas,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-03-26,Kh. Tall al-Himma,Tubas,west-bank,2,13,5,Residental,Demolition on the pretext of unlawful construction +2012-03-26,al-Farisiyah,Tubas,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-03-15,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-03-15,al-Jiftlik,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-03-15,al-Jiftlik,Jericho,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2012-03-15,al-Jiftlik,Jericho,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2012-03-14,Husan,Bethlehem,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-03-13,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2012-03-13,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2012-03-13,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-03-13,Fasayil,Jericho,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-03-13,Fasayil,Jericho,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2012-02-14,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-02-14,Kh. Ja'waneh,Nablus,west-bank,2,8,3,Residental,Demolition on the pretext of unlawful construction +2012-02-14,Kh. Ja'waneh,Nablus,west-bank,1,8,3,Residental,Demolition on the pretext of unlawful construction +2012-02-14,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-02-14,Kh. Ja'waneh,Nablus,west-bank,1,7,2,Residental,Demolition on the pretext of unlawful construction +2012-02-14,Kh. Ja'waneh,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-02-14,Kh. Ja'waneh,Nablus,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-02-14,Kh. Ja'waneh,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,2,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,1,7,0,Residental,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,1,10,0,Residental,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-02-13,a-Dhahiriyah,Hebron,west-bank,1,16,8,Residental,Demolition on the pretext of unlawful construction +2012-02-09,Giv'at Ze'ev,Ramallah and al-Bira,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-01-24,'Anata,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2012-01-24,'Anata,al-Quds,west-bank,1,19,9,Residental,Demolition on the pretext of unlawful construction +2012-01-24,'Anata,al-Quds,west-bank,6,38,26,Residental,Demolition on the pretext of unlawful construction +2012-01-23,al-A'uja,Jericho,west-bank,9,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-01-12,Beit Dajan,Nablus,west-bank,1,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2012-01-12,Beit Dajan,Nablus,west-bank,3,0,0,Non Resedential,Demolition on the pretext of unlawful construction +2011-12-28,al-Muntar,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2011-12-20,Fasayil,Jericho,west-bank,3,11,8,Residental,Demolition on the pretext of unlawful construction +2011-12-20,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-12-20,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-12-20,Fasayil,Jericho,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2011-12-20,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-12-07,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2011-12-06,al-Jib,al-Quds,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2011-12-06,al-Jib,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2011-12-05,'Arab a-Ramadin al-Janubi,Qalqiliya,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2011-12-05,'Arab a-Ramadin al-Janubi,Qalqiliya,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2011-11-30,'Ein al-Meyteh,Tubas,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2011-11-30,al-Farisiyah,Tubas,west-bank,1,13,0,Residental,Demolition on the pretext of unlawful construction +2011-11-30,Kh. Tall al-Himma,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2011-11-29,a-Za'ayem,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-11-29,a-Za'ayem,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-11-29,a-Za'ayem,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-11-29,a-Za'ayem,al-Quds,west-bank,4,30,21,Residental,Demolition on the pretext of unlawful construction +2011-11-24,Beit Hanina al-Balad,al-Quds,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2011-11-24,al-Mufaqarah,Hebron,west-bank,1,14,7,Residental,Demolition on the pretext of unlawful construction +2011-11-24,Beit Hanina al-Balad,al-Quds,west-bank,1,10,0,Residental,Demolition on the pretext of unlawful construction +2011-11-24,Beit Hanina al-Balad,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2011-11-24,Kh. Susiya,Hebron,west-bank,1,12,0,Residental,Demolition on the pretext of unlawful construction +2011-11-24,Kh. Susiya,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-11-17,Sa'ir,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-11-15,Jericho,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-11-15,Jericho,Jericho,west-bank,1,5,1,Residental,Demolition on the pretext of unlawful construction +2011-11-15,Jericho,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-10-31,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2011-10-31,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,12,8,Residental,Demolition on the pretext of unlawful construction +2011-10-31,Khan al-Ahmar (Bedouin Community),al-Quds,west-bank,1,16,8,Residental,Demolition on the pretext of unlawful construction +2011-10-31,Abu Dis,al-Quds,west-bank,5,23,12,Residental,Demolition on the pretext of unlawful construction +2011-10-25,'Anata,al-Quds,west-bank,1,7,4,Residental,Demolition on the pretext of unlawful construction +2011-10-11,'Arab a-Ramadin a-Shamali,Qalqiliya,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2011-10-11,'Arab a-Ramadin a-Shamali,Qalqiliya,west-bank,1,8,3,Residental,Demolition on the pretext of unlawful construction +2011-10-10,al-Jab'ah,Hebron,west-bank,1,14,10,Residental,Demolition on the pretext of unlawful construction +2011-09-15,al-'Aqabah,Tubas,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2011-09-08,Um al-Kheir,Hebron,west-bank,1,20,8,Residental,Demolition on the pretext of unlawful construction +2011-07-24,Deir Dobwan,Ramallah and al-Bira,west-bank,4,16,8,Residental,Demolition on the pretext of unlawful construction +2011-07-05,Khallet Sakariya,Bethlehem,west-bank,1,10,6,Residental,Demolition on the pretext of unlawful construction +2011-06-21,al-Hadidiyah,Tubas,west-bank,2,4,0,Residental,Demolition on the pretext of unlawful construction +2011-06-21,al-Hadidiyah,Tubas,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2011-06-21,al-Hadidiyah,Tubas,west-bank,2,8,1,Residental,Demolition on the pretext of unlawful construction +2011-06-21,al-Hadidiyah,Tubas,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2011-06-20,Kh. Bir al-'Eid,Hebron,west-bank,1,15,10,Residental,Demolition on the pretext of unlawful construction +2011-06-20,Kh. Bir al-'Eid,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-06-20,Kh. Bir al-'Eid,Hebron,west-bank,1,12,8,Residental,Demolition on the pretext of unlawful construction +2011-06-20,Kh. Bir al-'Eid,Hebron,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2011-06-20,Kh. Bir al-'Eid,Hebron,west-bank,1,8,0,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,6,3,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,14,8,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,11,9,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-06-14,Fasayil,Jericho,west-bank,1,13,8,Residental,Demolition on the pretext of unlawful construction +2011-06-10,Fasayil,Jericho,west-bank,1,10,4,Residental,Demolition on the pretext of unlawful construction +2011-05-30,al-Malih,Tubas,west-bank,1,16,8,Residental,Demolition on the pretext of unlawful construction +2011-05-30,al-Malih,Tubas,west-bank,1,5,0,Residental,Demolition on the pretext of unlawful construction +2011-05-30,'Arab Abu Fardah,Qalqiliya,west-bank,1,12,10,Residental,Demolition on the pretext of unlawful construction +2011-04-07,a-Nuwei'mah a-Tahta,Jericho,west-bank,1,9,0,Residental,Demolition on the pretext of unlawful construction +2011-04-07,al-Hadidiyah,Tubas,west-bank,1,10,6,Residental,Demolition on the pretext of unlawful construction +2011-04-07,a-Nuwei'mah a-Tahta,Jericho,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2011-04-07,a-Nuwei'mah a-Tahta,Jericho,west-bank,1,11,0,Residental,Demolition on the pretext of unlawful construction +2011-04-07,a-Nuwei'mah a-Tahta,Jericho,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2011-04-07,a-Nuwei'mah a-Tahta,Jericho,west-bank,1,9,0,Residental,Demolition on the pretext of unlawful construction +2011-04-07,Kh. Samrah,Tubas,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2011-04-07,Kh. Samrah,Tubas,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2011-04-07,al-'Aqabah,Tubas,west-bank,1,9,5,Residental,Demolition on the pretext of unlawful construction +2011-04-07,al-'Aqabah,Tubas,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2011-04-07,Kh. Samrah,Tubas,west-bank,1,9,6,Residental,Demolition on the pretext of unlawful construction +2011-04-07,Kh. Samrah,Tubas,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,2,6,4,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,1,10,2,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,2,7,2,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,1,10,4,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,2,3,1,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,2,12,8,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2011-03-02,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-02-26,al-Bureij R.C.,Deir al-Balah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2011-02-26,al-Bureij R.C.,Deir al-Balah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2011-02-22,Kh. Susiya,Hebron,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2011-02-22,Kh. Susiya,Hebron,west-bank,1,5,0,Residental,Demolition on the pretext of unlawful construction +2011-02-22,Kh. Susiya,Hebron,west-bank,1,8,0,Residental,Demolition on the pretext of unlawful construction +2011-02-22,Kh. Susiya,Hebron,west-bank,1,18,8,Residental,Demolition on the pretext of unlawful construction +2011-02-22,Kh. Susiya,Hebron,west-bank,1,11,6,Residental,Demolition on the pretext of unlawful construction +2011-02-22,Kh. Susiya,Hebron,west-bank,1,9,2,Residental,Demolition on the pretext of unlawful construction +2011-02-22,Kh. Susiya,Hebron,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2011-02-22,Kh. Susiya,Hebron,west-bank,1,12,10,Residental,Demolition on the pretext of unlawful construction +2011-02-20,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-02-20,Kh. Tana,Nablus,west-bank,1,5,2,Residental,Demolition on the pretext of unlawful construction +2011-02-20,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-02-20,Kh. Tana,Nablus,west-bank,1,9,2,Residental,Demolition on the pretext of unlawful construction +2011-02-20,Kh. Tana,Nablus,west-bank,1,8,1,Residental,Demolition on the pretext of unlawful construction +2011-02-20,Kh. Tana,Nablus,west-bank,1,9,2,Residental,Demolition on the pretext of unlawful construction +2011-02-20,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-02-09,Kh. Tana,Nablus,west-bank,1,10,2,Residental,Demolition on the pretext of unlawful construction +2011-02-09,Kh. Tana,Nablus,west-bank,2,6,4,Residental,Demolition on the pretext of unlawful construction +2011-02-09,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-02-09,Kh. Tana,Nablus,west-bank,1,8,1,Residental,Demolition on the pretext of unlawful construction +2011-02-09,Kh. Tana,Nablus,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2011-02-09,Kh. Tana,Nablus,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2011-02-09,Kh. Tana,Nablus,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2011-01-12,a-Duqaiqah,Hebron,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2011-01-12,a-Duqaiqah,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-01-12,a-Duqaiqah,Hebron,west-bank,1,6,5,Residental,Demolition on the pretext of unlawful construction +2011-01-12,a-Duqaiqah,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2011-01-12,a-Duqaiqah,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2011-01-12,a-Duqaiqah,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2011-01-11,'Azzun 'Atmah,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2011-01-11,'Azzun 'Atmah,Qalqiliya,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2010-12-16,Za'tara,Bethlehem,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2010-12-16,Za'tara,Bethlehem,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2010-12-16,Za'tara,Bethlehem,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2010-12-16,Za'tara,Bethlehem,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2010-12-09,Kh. Tana,Nablus,west-bank,1,9,2,Residental,Demolition on the pretext of unlawful construction +2010-12-09,Kh. Tana,Nablus,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2010-12-09,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-12-09,Kh. Tana,Nablus,west-bank,1,8,1,Residental,Demolition on the pretext of unlawful construction +2010-12-09,Kh. Tana,Nablus,west-bank,1,10,4,Residental,Demolition on the pretext of unlawful construction +2010-12-09,Kh. Tana,Nablus,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-11-25,Kh. Yarza,Tubas,west-bank,1,14,7,Residental,Demolition on the pretext of unlawful construction +2010-11-25,a-Rifa'iya,Hebron,west-bank,2,19,15,Residental,Demolition on the pretext of unlawful construction +2010-11-24,al-Jiftlik,Jericho,west-bank,1,12,6,Residental,Demolition on the pretext of unlawful construction +2010-11-24,al-Jiftlik,Jericho,west-bank,1,25,18,Residental,Demolition on the pretext of unlawful construction +2010-08-09,Kh. 'Ein al-Hilweh,Tubas,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2010-08-09,Kh. 'Ein al-Hilweh,Tubas,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2010-08-05,al-A'uja,Jericho,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-08-04,'Azzun 'Atmah,Qalqiliya,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,10,4,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,2,9,4,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,3,0,0,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,5,2,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-08-03,al-Farisiyah,Tubas,west-bank,1,1,0,Residental,Demolition on the pretext of unlawful construction +2010-07-21,a-Lubban al-Gharbiyah,Ramallah and al-Bira,west-bank,2,2,0,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,2,3,0,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,2,4,0,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,2,4,2,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,1,11,5,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,2,6,4,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,2,3,1,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,2,9,4,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,3,2,0,Residental,Demolition on the pretext of unlawful construction +2010-07-19,al-Farisiyah,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2010-07-15,Abu al-'Urqan,Hebron,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2010-07-01,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-07-01,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-07-01,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-07-01,Kh. a-Ras al-Ahmar,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2010-05-23,Khan Yunis,Khan Yunis,gaza-strip,0,0,0,Residental,Demolition for alleged military purposes +2010-05-21,Khan Yunis,Khan Yunis,gaza-strip,0,0,0,Residental,Demolition for alleged military purposes +2010-04-26,Beit 'Awwa,Hebron,west-bank,1,6,4,Residental,Demolition for alleged military purposes +2010-04-17,Haris,Salfit,west-bank,2,7,5,Residental,Demolition on the pretext of unlawful construction +2010-04-14,al-Khader,Bethlehem,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2010-03-26,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,6,0,0,Residental,Demolition for alleged military purposes +2010-02-18,al-Musadar,Deir al-Balah,gaza-strip,1,5,3,Residental,Demolition for alleged military purposes +2010-02-18,al-Musadar,Deir al-Balah,gaza-strip,2,8,4,Residental,Demolition for alleged military purposes +2010-01-10,Kh. Tana,Nablus,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2010-01-10,Kh. Tana,Nablus,west-bank,1,7,2,Residental,Demolition on the pretext of unlawful construction +2010-01-10,Kh. Tana,Nablus,west-bank,1,13,7,Residental,Demolition on the pretext of unlawful construction +2010-01-10,Kh. Tana,Nablus,west-bank,1,5,0,Residental,Demolition on the pretext of unlawful construction +2010-01-10,Kh. Tana,Nablus,west-bank,1,6,1,Residental,Demolition on the pretext of unlawful construction +2010-01-10,Kh. Tana,Nablus,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2010-01-10,Kh. Tana,Nablus,west-bank,1,7,1,Residental,Demolition on the pretext of unlawful construction +2010-01-10,Kh. Tana,Nablus,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2010-01-10,Kh. Tana,Nablus,west-bank,1,13,8,Residental,Demolition on the pretext of unlawful construction +2010-01-10,Kh. Tana,Nablus,west-bank,1,12,5,Residental,Demolition on the pretext of unlawful construction +2010-01-10,Kh. Tana,Nablus,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2010-01-10,Kh. Tana,Nablus,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2010-01-10,Kh. Tana,Nablus,west-bank,1,9,2,Residental,Demolition on the pretext of unlawful construction +2010-01-08,al-Qararah,Khan Yunis,gaza-strip,1,7,5,Residental,Demolition for alleged military purposes +2010-01-08,al-Qararah,Khan Yunis,gaza-strip,1,10,8,Residental,Demolition for alleged military purposes +2010-01-08,al-Qararah,Khan Yunis,gaza-strip,1,8,3,Residental,Demolition for alleged military purposes +2009-06-17,Tayasir,Tubas,west-bank,1,12,0,Residental,Demolition on the pretext of unlawful construction +2009-06-17,Tayasir,Tubas,west-bank,1,4,0,Residental,Demolition on the pretext of unlawful construction +2009-06-17,Tayasir,Tubas,west-bank,1,2,0,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,9,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,12,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,11,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,11,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,7,0,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,7,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,9,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,11,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,12,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,8,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,11,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,5,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,11,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2009-06-04,Kh. 'Atuf,Tubas,west-bank,1,6,2,Residental,Demolition on the pretext of unlawful construction +2009-04-07,Zur Baher,East Jerusalem,east-jerusalem,1,4,0,Residental,Demolition of houses as punishment +2009-03-19,al-'Eizariyah,al-Quds,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2009-03-19,al-'Eizariyah,al-Quds,west-bank,1,9,5,Residental,Demolition on the pretext of unlawful construction +2009-03-18,al-'Eizariyah,al-Quds,west-bank,1,10,4,Residental,Demolition on the pretext of unlawful construction +2009-02-16,Ma'ale Adumim,Ramallah and al-Bira,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2009-01-19,Jabal al-Mukabber,East Jerusalem,east-jerusalem,2,24,0,Residental,Demolition of houses as punishment +2008-11-12,Shuqba,Ramallah and al-Bira,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2008-11-04,Deir al-Balah,Deir al-Balah,gaza-strip,3,15,7,Residental,Demolition for alleged military purposes +2008-10-30,Yatta,Hebron,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2008-10-30,Yatta,Hebron,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2008-10-30,Yatta,Hebron,west-bank,1,10,4,Residental,Demolition on the pretext of unlawful construction +2008-10-30,Yatta,Hebron,west-bank,1,15,7,Residental,Demolition on the pretext of unlawful construction +2008-10-30,Yatta,Hebron,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2008-09-09,Badu a-Mu'arrajat,Ramallah and al-Bira,west-bank,13,81,52,Residental,Demolition on the pretext of unlawful construction +2008-06-19,Qalqiliyah,Qalqiliya,west-bank,2,0,0,Residental,Demolition for alleged military purposes +2008-06-05,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,1,5,3,Residental,Demolition for alleged military purposes +2008-06-05,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,1,7,2,Residental,Demolition for alleged military purposes +2008-06-05,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,2,0,0,Residental,Demolition for alleged military purposes +2008-05-07,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2008-05-07,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,2,4,3,Residental,Demolition for alleged military purposes +2008-05-07,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,1,2,1,Residental,Demolition for alleged military purposes +2008-05-07,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2008-05-07,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,1,11,7,Residental,Demolition for alleged military purposes +2008-05-07,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2008-03-26,al-Qararah,Khan Yunis,gaza-strip,1,7,5,Residental,Demolition for alleged military purposes +2008-03-26,al-Qararah,Khan Yunis,gaza-strip,1,6,2,Residental,Demolition for alleged military purposes +2008-03-26,al-Qararah,Khan Yunis,gaza-strip,1,7,5,Residental,Demolition for alleged military purposes +2008-03-26,al-Qararah,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2008-03-20,al-Jib,al-Quds,west-bank,1,9,0,Residental,Demolition on the pretext of unlawful construction +2008-03-19,Hizma,al-Quds,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2008-03-19,Um Lasafa,Hebron,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2008-03-19,Hizma,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2008-03-19,a-Deirat,Hebron,west-bank,1,16,14,Residental,Demolition on the pretext of unlawful construction +2008-03-12,Saida,Tulkarm,west-bank,2,5,2,Residental,Demolition for alleged military purposes +2008-03-11,al-Hadidiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2008-03-11,al-Hadidiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2008-03-11,al-Hadidiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2008-03-11,'Arab a-Ramadin al-Janubi,Qalqiliya,west-bank,2,9,6,Residental,Demolition on the pretext of unlawful construction +2008-03-11,al-Hadidiyah,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2008-03-07,Bethlehem,Bethlehem,west-bank,1,8,6,Residental,Demolition for alleged military purposes +2008-03-02,Jabalya R.C.,North Gaza,gaza-strip,1,12,7,Residental,Demolition for alleged military purposes +2008-03-01,Gaza City,Gaza,gaza-strip,3,12,5,Residental,Demolition for alleged military purposes +2008-02-29,Gaza City,Gaza,gaza-strip,0,0,0,Residental,Demolition for alleged military purposes +2008-02-06,al-Hadidiyah,Tubas,west-bank,1,9,3,Residental,Demolition on the pretext of unlawful construction +2008-02-06,al-Hadidiyah,Tubas,west-bank,1,8,4,Residental,Demolition on the pretext of unlawful construction +2008-02-06,al-Hadidiyah,Tubas,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2008-02-06,al-Hadidiyah,Tubas,west-bank,1,11,0,Residental,Demolition on the pretext of unlawful construction +2008-01-28,Bethlehem,Bethlehem,west-bank,3,13,8,Residental,Demolition for alleged military purposes +2008-01-21,Dhinnaba,Tulkarm,west-bank,1,8,0,Residental,Demolition for alleged military purposes +2008-01-19,Jabalya,North Gaza,gaza-strip,5,13,2,Residental,Demolition for alleged military purposes +2008-01-16,al-Jib,al-Quds,west-bank,1,11,8,Residental,Demolition on the pretext of unlawful construction +2008-01-16,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,10,8,Residental,Demolition on the pretext of unlawful construction +2008-01-16,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,4,2,Residental,Demolition on the pretext of unlawful construction +2008-01-07,Kafr Qadum,Qalqiliya,west-bank,0,11,9,Residental,Demolition for alleged military purposes +2008-01-07,Kafr Qadum,Qalqiliya,west-bank,1,3,0,Residental,Demolition for alleged military purposes +2008-01-07,Kafr 'Aqab,al-Quds,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2008-01-07,Kafr 'Aqab,al-Quds,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2008-01-03,Khan Yunis,Khan Yunis,gaza-strip,3,0,0,Residental,Demolition for alleged military purposes +2008-01-02,Mikhmas,al-Quds,west-bank,2,13,11,Residental,Demolition on the pretext of unlawful construction +2008-01-02,Mikhmas,al-Quds,west-bank,1,9,7,Residental,Demolition on the pretext of unlawful construction +2008-01-02,Mikhmas,al-Quds,west-bank,2,11,8,Residental,Demolition on the pretext of unlawful construction +2007-12-27,Juhor a-Dik,Gaza,gaza-strip,4,16,5,Residental,Demolition for alleged military purposes +2007-12-27,Khan Yunis,Khan Yunis,gaza-strip,1,8,2,Residental,Demolition for alleged military purposes +2007-11-30,Beit Hanoun,North Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2007-11-26,Beit Hanoun,North Gaza,gaza-strip,1,6,4,Residental,Demolition for alleged military purposes +2007-11-09,Bethlehem,Bethlehem,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2007-11-09,Bethlehem,Bethlehem,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2007-10-30,Rafah,Rafah,gaza-strip,1,3,1,Residental,Demolition for alleged military purposes +2007-10-29,Idhna,Hebron,west-bank,2,37,10,Residental,Demolition on the pretext of unlawful construction +2007-10-15,Qalqiliyah,Qalqiliya,west-bank,2,0,0,Residental,Demolition for alleged military purposes +2007-10-12,Qalqiliyah,Qalqiliya,west-bank,1,4,2,Residental,Demolition for alleged military purposes +2007-09-23,Nablus,Nablus,west-bank,5,18,9,Residental,Demolition for alleged military purposes +2007-09-20,al-Bureij R.C.,Deir al-Balah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2007-09-20,al-Bureij R.C.,Deir al-Balah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2007-09-20,al-Bureij R.C.,Deir al-Balah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2007-09-20,al-Bureij R.C.,Deir al-Balah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2007-09-20,al-Bureij R.C.,Deir al-Balah,gaza-strip,1,3,1,Residental,Demolition for alleged military purposes +2007-09-20,al-Bureij R.C.,Deir al-Balah,gaza-strip,1,4,2,Residental,Demolition for alleged military purposes +2007-09-20,al-Bureij R.C.,Deir al-Balah,gaza-strip,1,1,11,Residental,Demolition for alleged military purposes +2007-09-20,'Ein Beit al-Maa R.C.,Nablus,west-bank,5,17,11,Residental,Demolition for alleged military purposes +2007-08-29,Qalqiliyah,Qalqiliya,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2007-08-29,Qalqiliyah,Qalqiliya,west-bank,1,7,2,Residental,Demolition for alleged military purposes +2007-08-29,Qalqiliyah,Qalqiliya,west-bank,1,0,0,Residental,Demolition for alleged military purposes +2007-08-29,Qalqiliyah,Qalqiliya,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2007-08-29,Qalqiliyah,Qalqiliya,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2007-08-29,Qalqiliyah,Qalqiliya,west-bank,1,1,0,Residental,Demolition for alleged military purposes +2007-08-29,Qalqiliyah,Qalqiliya,west-bank,1,14,5,Residental,Demolition for alleged military purposes +2007-08-29,Qalqiliyah,Qalqiliya,west-bank,1,10,2,Residental,Demolition for alleged military purposes +2007-08-29,Qalqiliyah,Qalqiliya,west-bank,1,8,4,Residental,Demolition for alleged military purposes +2007-08-29,Qalqiliyah,Qalqiliya,west-bank,1,8,4,Residental,Demolition for alleged military purposes +2007-08-23,Hamra,Jericho,west-bank,1,30,15,Residental,Demolition on the pretext of unlawful construction +2007-08-23,Hamra,Jericho,west-bank,7,7,4,Residental,Demolition on the pretext of unlawful construction +2007-08-23,Hamra,Jericho,west-bank,1,30,15,Residental,Demolition on the pretext of unlawful construction +2007-08-22,Qarawat Bani Hassan,Salfit,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2007-08-08,Hamra,Jericho,west-bank,1,15,10,Residental,Demolition on the pretext of unlawful construction +2007-07-19,Zawata,Nablus,west-bank,1,9,0,Residental,Demolition for alleged military purposes +2007-07-12,Hajjah,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2007-05-29,Hebron,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2007-05-28,Hebron,Hebron,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2007-05-10,a-Shawawrah,Bethlehem,west-bank,2,8,0,Residental,Demolition for alleged military purposes +2007-04-22,Nablus,Nablus,west-bank,1,4,0,Residental,Demolition for alleged military purposes +2007-04-22,Nablus,Nablus,west-bank,1,2,0,Residental,Demolition for alleged military purposes +2007-04-18,Shuqba,Ramallah and al-Bira,west-bank,1,6,4,Residental,Demolition on the pretext of unlawful construction +2007-04-14,Qalqiliyah,Qalqiliya,west-bank,0,5,0,Residental,Demolition for alleged military purposes +2007-04-11,Kafr Qalil,Nablus,west-bank,3,12,0,Residental,Demolition for alleged military purposes +2007-03-21,al-'Ubeidiyah,Bethlehem,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2007-03-20,Halhul,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2007-02-26,Far'on,Tulkarm,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2007-02-26,Far'on,Tulkarm,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2007-02-26,Far'on,Tulkarm,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2007-02-26,Far'on,Tulkarm,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2007-02-26,Far'on,Tulkarm,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2007-02-26,Far'on,Tulkarm,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2007-02-21,Beit 'Anan,al-Quds,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2007-02-14,Yatta,Hebron,west-bank,3,36,14,Residental,Demolition on the pretext of unlawful construction +2007-02-14,Imreihah,Jenin,west-bank,1,3,1,Residental,Demolition on the pretext of unlawful construction +2007-02-14,Imreihah,Jenin,west-bank,1,8,6,Residental,Demolition on the pretext of unlawful construction +2007-02-14,Yatta,Hebron,west-bank,7,38,20,Residental,Demolition on the pretext of unlawful construction +2007-02-14,Yatta,Hebron,west-bank,3,16,11,Residental,Demolition on the pretext of unlawful construction +2007-01-30,a-Nabi Samwil,Ramallah and al-Bira,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2007-01-30,al-'Eizariyah,al-Quds,west-bank,2,17,0,Residental,Demolition on the pretext of unlawful construction +2006-12-12,al-Walajah,Bethlehem,west-bank,1,6,0,Residental,Demolition on the pretext of unlawful construction +2006-11-30,Wadi a-Rasha,Qalqiliya,west-bank,1,5,0,Residental,Demolition on the pretext of unlawful construction +2006-11-30,Qalqiliyah,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-11-28,'Arabunah,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-11-28,'Arabunah,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-11-26,Hebron,Hebron,west-bank,1,8,0,Residental,Demolition on the pretext of unlawful construction +2006-11-23,Qarawat Bani Hassan,Salfit,west-bank,1,7,0,Residental,Demolition on the pretext of unlawful construction +2006-11-22,al-Funduq,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-11-22,al-Funduq,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-11-22,al-Funduq,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-11-17,Qalqiliyah,Qalqiliya,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2006-11-17,Qalqiliyah,Qalqiliya,west-bank,1,2,0,Residental,Demolition for alleged military purposes +2006-11-17,Qalqiliyah,Qalqiliya,west-bank,1,1,0,Residental,Demolition for alleged military purposes +2006-11-17,Qalqiliyah,Qalqiliya,west-bank,1,6,0,Residental,Demolition for alleged military purposes +2006-11-17,Qalqiliyah,Qalqiliya,west-bank,1,3,0,Residental,Demolition for alleged military purposes +2006-11-16,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2006-11-16,Rafah,Rafah,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2006-11-16,Rafah,Rafah,gaza-strip,4,23,0,Residental,Demolition for alleged military purposes +2006-11-16,Tulkarm,Tulkarm,west-bank,5,14,0,Residental,Demolition for alleged military purposes +2006-11-16,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2006-11-16,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-11-16,Jabalya,North Gaza,gaza-strip,4,13,0,Residental,Demolition for alleged military purposes +2006-11-16,Jabalya R.C.,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-11-16,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-11-16,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-11-15,Gaza City,Gaza,gaza-strip,10,44,0,Residental,Demolition for alleged military purposes +2006-11-15,Gaza City,Gaza,gaza-strip,2,10,0,Residental,Demolition for alleged military purposes +2006-11-15,Beit Lahiya,North Gaza,gaza-strip,2,13,0,Residental,Demolition for alleged military purposes +2006-11-08,Gaza City,Gaza,gaza-strip,2,7,0,Residental,Demolition for alleged military purposes +2006-11-06,Beit Hanoun,North Gaza,gaza-strip,2,20,0,Residental,Demolition for alleged military purposes +2006-11-05,Beit Hanoun,North Gaza,gaza-strip,3,24,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,4,30,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-11-04,Beit Hanoun,North Gaza,gaza-strip,2,16,0,Residental,Demolition for alleged military purposes +2006-11-03,Bethlehem,Bethlehem,west-bank,1,9,0,Residental,Demolition on the pretext of unlawful construction +2006-11-03,Bethlehem,Bethlehem,west-bank,1,9,0,Residental,Demolition on the pretext of unlawful construction +2006-11-03,Beit Jala,Bethlehem,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2006-11-03,Beit Hanoun,North Gaza,gaza-strip,6,42,0,Residental,Demolition for alleged military purposes +2006-11-02,Beit Hanoun,North Gaza,gaza-strip,1,16,0,Residental,Demolition for alleged military purposes +2006-10-30,Bani Suheila,Khan Yunis,gaza-strip,2,6,0,Residental,Demolition for alleged military purposes +2006-10-27,Jabalya R.C.,North Gaza,gaza-strip,2,10,0,Residental,Demolition for alleged military purposes +2006-10-21,Rafah,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2006-10-18,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-10-18,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-10-18,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-10-18,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2006-10-18,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-10-18,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-10-18,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-10-18,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2006-10-18,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-10-18,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2006-10-18,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2006-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2006-10-14,Rafah,Rafah,gaza-strip,5,30,0,Residental,Demolition for alleged military purposes +2006-10-14,Rafah,Rafah,gaza-strip,2,20,0,Residental,Demolition for alleged military purposes +2006-10-14,Rafah,Rafah,gaza-strip,2,10,0,Residental,Demolition for alleged military purposes +2006-10-14,Rafah,Rafah,gaza-strip,5,31,0,Residental,Demolition for alleged military purposes +2006-10-14,Gaza City,Gaza,gaza-strip,2,12,0,Residental,Demolition for alleged military purposes +2006-10-11,Jabalya R.C.,North Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-10-11,Jabalya R.C.,North Gaza,gaza-strip,2,8,0,Residental,Demolition for alleged military purposes +2006-10-11,Jabalya R.C.,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-10-09,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-10-03,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,2,0,0,Residental,Demolition for alleged military purposes +2006-09-28,Rafah,Rafah,gaza-strip,5,23,0,Residental,Demolition for alleged military purposes +2006-09-27,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-09-27,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-09-22,al-Mughayir,Ramallah and al-Bira,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2006-09-21,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2006-09-21,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-09-21,Rafah,Rafah,gaza-strip,2,22,0,Residental,Demolition for alleged military purposes +2006-09-21,Rafah,Rafah,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2006-09-21,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-09-21,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-09-21,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2006-09-21,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-09-21,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-09-21,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2006-09-21,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-09-21,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2006-09-20,a-Sawahrah a-Sharqiyah,al-Quds,west-bank,1,9,0,Residental,Demolition on the pretext of unlawful construction +2006-09-15,Za'tara,Bethlehem,west-bank,1,10,0,Residental,Demolition on the pretext of unlawful construction +2006-09-15,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-09-15,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2006-09-15,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-09-15,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-09-15,Rafah,Rafah,gaza-strip,6,19,0,Residental,Demolition for alleged military purposes +2006-09-11,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-09-11,'Abasan al-Jadidah (a-Saghirah),Khan Yunis,gaza-strip,2,18,0,Residental,Demolition for alleged military purposes +2006-09-02,Beit Hanoun,North Gaza,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2006-09-02,Beit Hanoun,North Gaza,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2006-09-02,Beit Hanoun,North Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-09-02,Beit Hanoun,North Gaza,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2006-09-02,Beit Hanoun,North Gaza,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2006-09-02,Beit Hanoun,North Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-09-02,Beit Hanoun,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-09-02,Beit Hanoun,North Gaza,gaza-strip,1,16,0,Residental,Demolition for alleged military purposes +2006-09-02,Jabalya,North Gaza,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2006-09-02,Jabalya,North Gaza,gaza-strip,2,13,0,Residental,Demolition for alleged military purposes +2006-08-28,Gaza City,Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-08-26,Nablus,Nablus,west-bank,20,78,0,Residental,Demolition for alleged military purposes +2006-08-25,Jabalya,North Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-08-25,Jabalya,North Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-08-24,Jabalya,North Gaza,gaza-strip,8,12,0,Residental,Demolition for alleged military purposes +2006-08-22,Rafah,Rafah,gaza-strip,3,13,0,Residental,Demolition for alleged military purposes +2006-08-21,Jabalya R.C.,North Gaza,gaza-strip,3,20,0,Residental,Demolition for alleged military purposes +2006-08-16,Gaza City,Gaza,gaza-strip,2,0,0,Residental,Demolition for alleged military purposes +2006-08-16,Khan Yunis,Khan Yunis,gaza-strip,6,36,0,Residental,Demolition for alleged military purposes +2006-08-15,'Askar R.C.,Nablus,west-bank,4,30,0,Residental,Demolition for alleged military purposes +2006-08-15,Beit Hanoun,North Gaza,gaza-strip,4,10,0,Residental,Demolition for alleged military purposes +2006-08-14,Rafah,Rafah,gaza-strip,1,38,0,Residental,Demolition for alleged military purposes +2006-08-14,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-08-14,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-08-14,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-08-14,Jabalya,North Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-08-14,Rafah,Rafah,gaza-strip,2,10,0,Residental,Demolition for alleged military purposes +2006-08-11,Jabalya R.C.,North Gaza,gaza-strip,4,13,0,Residental,Demolition for alleged military purposes +2006-08-10,Beit Hanoun,North Gaza,gaza-strip,2,10,0,Residental,Demolition for alleged military purposes +2006-08-09,Beit Hanoun,North Gaza,gaza-strip,8,26,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-08-08,Beit Lahiya,North Gaza,gaza-strip,4,37,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,3,15,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-08-08,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2006-08-05,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2006-08-05,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-08-05,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-08-05,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-08-05,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2006-08-05,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-08-05,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-08-05,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-08-05,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-08-05,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-08-05,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2006-08-04,Gaza City,Gaza,gaza-strip,3,11,0,Residental,Demolition for alleged military purposes +2006-08-04,a-Shati' R.C.,Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-08-02,al-Bureij R.C.,Deir al-Balah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-07-30,Beit Hanoun,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-07-30,Jabalya,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-07-30,Beit Hanoun,North Gaza,gaza-strip,3,27,0,Residental,Demolition for alleged military purposes +2006-07-28,Rafah,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2006-07-28,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-07-28,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-07-28,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-07-28,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-07-28,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-07-28,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-07-28,Rafah,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2006-07-28,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-07-28,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2006-07-28,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-07-28,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2006-07-28,Khan Yunis,Khan Yunis,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2006-07-28,Khan Yunis,Khan Yunis,gaza-strip,2,0,0,Residental,Demolition for alleged military purposes +2006-07-28,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-07-27,Gaza City,Gaza,gaza-strip,2,18,0,Residental,Demolition for alleged military purposes +2006-07-26,Gaza City,Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-07-26,Gaza City,Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-07-26,Gaza City,Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-07-26,Kafr Qadum,Qalqiliya,west-bank,1,3,0,Residental,Demolition for alleged military purposes +2006-07-26,Gaza City,Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2006-07-25,Gaza City,Gaza,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2006-07-25,Khan Yunis,Khan Yunis,gaza-strip,6,35,0,Residental,Demolition for alleged military purposes +2006-07-22,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2006-07-22,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-07-19,al-Maghazi R.C.,Deir al-Balah,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2006-07-19,al-Maghazi R.C.,Deir al-Balah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2006-07-19,al-Maghazi R.C.,Deir al-Balah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-07-19,al-Maghazi R.C.,Deir al-Balah,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2006-07-19,al-Maghazi R.C.,Deir al-Balah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2006-07-17,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2006-07-16,Rafah,Rafah,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2006-07-12,Gaza City,Gaza,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2006-07-11,'Asirah al-Qibliyah,Nablus,west-bank,1,0,0,Residental,Demolition for alleged military purposes +2006-07-11,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2006-07-07,'Abasan al-Kabirah,Khan Yunis,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2006-07-07,'Abasan al-Kabirah,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2006-06-20,Tuqu',Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-06-19,Silwad,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-06-12,Turah al-Gharbiyah,Jenin,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-05-30,Bruqin,Salfit,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-05-30,Bruqin,Salfit,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-05-25,al-Funduq,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-05-25,al-Funduq,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-05-14,Qabatiyah,Jenin,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2006-04-26,a-Za'ayem,al-Quds,west-bank,1,3,0,Residental,Demolition on the pretext of unlawful construction +2006-03-24,Birqin,Jenin,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2006-03-22,al-Walajah,Bethlehem,west-bank,1,11,0,Residental,Demolition on the pretext of unlawful construction +2006-03-22,al-Walajah,Bethlehem,west-bank,1,11,9,Residental,Demolition on the pretext of unlawful construction +2006-03-07,Beit Iksa,al-Quds,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2006-03-06,Jaba',al-Quds,west-bank,2,0,0,Residental,Demolition on the pretext of unlawful construction +2006-02-22,al-Funduq,Qalqiliya,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-02-21,Hebron,Hebron,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2006-02-19,Nablus,Nablus,west-bank,2,8,0,Residental,Demolition for alleged military purposes +2006-02-08,Shuqba,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-02-08,Tammun,Tubas,west-bank,1,10,0,Residental,Demolition on the pretext of unlawful construction +2006-02-08,Shuqba,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-02-08,Tammun,Tubas,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-02-08,Shuqba,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-02-08,Shuqba,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-02-08,Shuqba,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2006-01-31,al-Walajah,Bethlehem,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2006-01-31,al-Walajah,Bethlehem,west-bank,1,7,3,Residental,Demolition on the pretext of unlawful construction +2006-01-29,Hebron,Hebron,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2006-01-29,Hebron,Hebron,west-bank,1,8,5,Residental,Demolition on the pretext of unlawful construction +2006-01-21,al-Hadidiyah,Tubas,west-bank,1,23,9,Residental,Demolition on the pretext of unlawful construction +2006-01-19,Dhaher al-Malih,Jenin,west-bank,1,22,17,Residental,Demolition on the pretext of unlawful construction +2006-01-19,a-Taybah,Jenin,west-bank,1,13,0,Residental,Demolition on the pretext of unlawful construction +2006-01-17,Bethlehem,Bethlehem,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2006-01-17,Beit Ta'mar,Bethlehem,west-bank,1,5,3,Residental,Demolition on the pretext of unlawful construction +2006-01-17,Bethlehem,Bethlehem,west-bank,1,10,7,Residental,Demolition on the pretext of unlawful construction +2006-01-17,Bethlehem,Bethlehem,west-bank,1,7,5,Residental,Demolition on the pretext of unlawful construction +2006-01-17,Tulkarm,Tulkarm,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2006-01-12,Jenin,Jenin,west-bank,2,0,0,Residental,Demolition for alleged military purposes +2006-01-07,Nablus,Nablus,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2006-01-04,al-Walajah,Bethlehem,west-bank,1,0,0,Residental,Demolition on the pretext of unlawful construction +2005-11-23,Jenin,Jenin,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2005-11-14,Jenin,Jenin,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2005-10-24,Nur Shams R.C.,Tulkarm,west-bank,4,13,0,Residental,Demolition for alleged military purposes +2005-09-28,Qabatiyah,Jenin,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2005-09-26,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2005-08-22,al-Mawasi,Khan Yunis,gaza-strip,0,6,0,Residental,Demolition for alleged military purposes +2005-08-17,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2005-07-19,al-Yamun,Jenin,west-bank,1,4,0,Residental,Demolition for alleged military purposes +2005-04-17,'Askar R.C.,Nablus,west-bank,0,0,0,Residental,Demolition for alleged military purposes +2005-03-10,a-Nazlah al-Wusta,Tulkarm,west-bank,1,10,0,Residental,Demolition for alleged military purposes +2005-01-18,Nablus,Nablus,west-bank,1,1,0,Residental,Demolition for alleged military purposes +2005-01-18,Nablus,Nablus,west-bank,1,1,0,Residental,Demolition for alleged military purposes +2005-01-18,Nablus,Nablus,west-bank,1,6,0,Residental,Demolition for alleged military purposes +2005-01-18,Nablus,Nablus,west-bank,1,4,0,Residental,Demolition for alleged military purposes +2005-01-16,Khan Yunis,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2005-01-16,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2005-01-16,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2005-01-12,Qarawat Bani Zeid,Ramallah and al-Bira,west-bank,2,7,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,23,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-12-30,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-12-25,Jenin,Jenin,west-bank,1,7,0,Residental,Demolition for alleged military purposes +2004-12-25,Jenin,Jenin,west-bank,1,6,0,Residental,Demolition for alleged military purposes +2004-12-25,Jenin,Jenin,west-bank,1,6,0,Residental,Demolition for alleged military purposes +2004-12-20,'Araba,Jenin,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-12-20,'Araba,Jenin,west-bank,1,14,0,Residental,Demolition of houses as punishment +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-12-18,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-12-14,Hebron,Hebron,west-bank,1,10,0,Residental,Demolition of houses as punishment +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-12-14,Hebron,Hebron,west-bank,1,6,0,Residental,Demolition of houses as punishment +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-12-14,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-12-14,Hebron,Hebron,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-12-01,a-Duheisheh R.C.,Bethlehem,west-bank,2,4,0,Residental,Demolition of houses as punishment +2004-12-01,a-Duheisheh R.C.,Bethlehem,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-12-01,a-Duheisheh R.C.,Bethlehem,west-bank,3,6,0,Residental,Demolition of houses as punishment +2004-11-26,Khan Yunis,Khan Yunis,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-11-26,Hebron,Hebron,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-11-25,Hebron,Hebron,west-bank,1,3,0,Residental,Demolition for alleged military purposes +2004-11-25,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-11-25,Hebron,Hebron,west-bank,1,8,0,Residental,Demolition for alleged military purposes +2004-11-25,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-11-25,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-11-25,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-11-25,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-11-25,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-11-25,Hebron,Hebron,west-bank,1,5,0,Residental,Demolition for alleged military purposes +2004-11-25,Hebron,Hebron,west-bank,1,4,0,Residental,Demolition for alleged military purposes +2004-11-08,Nablus,Nablus,west-bank,2,10,0,Residental,Demolition of houses as punishment +2004-11-08,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-11-08,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-11-08,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-11-08,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-11-07,Jenin R.C.,Jenin,west-bank,1,6,0,Residental,Demolition of houses as punishment +2004-11-07,Jenin R.C.,Jenin,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-11-07,Jenin R.C.,Jenin,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-11-07,Jenin R.C.,Jenin,west-bank,2,13,0,Residental,Demolition of houses as punishment +2004-11-03,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,20,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,33,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-11-03,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-11-02,Deir al-Balah,Deir al-Balah,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-11-02,Rujeib,Nablus,west-bank,1,17,0,Residental,Demolition of houses as punishment +2004-11-02,Beit Furik,Nablus,west-bank,1,9,0,Residental,Demolition of houses as punishment +2004-11-01,'Askar R.C.,Nablus,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-11-01,'Askar R.C.,Nablus,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-11-01,'Askar R.C.,Nablus,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-11-01,'Askar R.C.,Nablus,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-10-28,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,16,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-28,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,19,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,18,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,22,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,24,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-25,Khan Yunis,Khan Yunis,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-10-21,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-21,Qalqiliyah,Qalqiliya,west-bank,1,10,0,Residental,Demolition of houses as punishment +2004-10-21,Qalqiliyah,Qalqiliya,west-bank,1,10,0,Residental,Demolition of houses as punishment +2004-10-21,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-21,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-21,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-21,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-21,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-16,Beit Hanoun,North Gaza,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-16,Beit Hanoun,North Gaza,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-16,Beit Hanoun,North Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-14,Hebron,Hebron,west-bank,1,18,0,Residental,Demolition of houses as punishment +2004-10-14,Hebron,Hebron,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-10-14,Hebron,Hebron,west-bank,1,10,0,Residental,Demolition of houses as punishment +2004-10-14,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,25,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-14,Beit Lahiya,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-14,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-13,Beit Lahiya,North Gaza,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-10-13,Beit Lahiya,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-13,Jalbun,Jenin,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-10-12,Beit Lahiya,North Gaza,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-12,Beit Lahiya,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-11,Beit Lahiya,North Gaza,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-10-11,Beit Lahiya,North Gaza,gaza-strip,1,16,0,Residental,Demolition for alleged military purposes +2004-10-11,Beit Lahiya,North Gaza,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-10,Jabalya R.C.,North Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-10-10,Jabalya R.C.,North Gaza,gaza-strip,1,22,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,20,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-09,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-09,Beit Hanoun,North Gaza,gaza-strip,1,3,0,Residental,Demolition of houses as punishment +2004-10-09,Beit Hanoun,North Gaza,gaza-strip,1,2,0,Residental,Demolition of houses as punishment +2004-10-09,Beit Hanoun,North Gaza,gaza-strip,1,7,0,Residental,Demolition of houses as punishment +2004-10-09,Beit Hanoun,North Gaza,gaza-strip,1,8,0,Residental,Demolition of houses as punishment +2004-10-07,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-10-07,Beit Lahiya,North Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-06,Beit Lahiya,North Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-05,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-05,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-05,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-05,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-05,Khan Yunis,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-05,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-05,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-05,Khan Yunis,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-10-05,'Aydah R.C.,Bethlehem,west-bank,1,9,0,Residental,Demolition of houses as punishment +2004-10-04,Beit Lahiya,North Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-03,Jabalya R.C.,North Gaza,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-03,Jabalya R.C.,North Gaza,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-10-03,Jabalya R.C.,North Gaza,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-03,Jabalya R.C.,North Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-03,Jabalya R.C.,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-03,Jabalya R.C.,North Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-03,Jabalya R.C.,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-03,Jabalya,North Gaza,gaza-strip,1,32,0,Residental,Demolition for alleged military purposes +2004-10-03,Jabalya R.C.,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-03,Jabalya R.C.,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-03,Jabalya R.C.,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-02,Jabalya R.C.,North Gaza,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-10-02,Jabalya R.C.,North Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-10-02,Jabalya R.C.,North Gaza,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-10-02,Beit Lahiya,North Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-02,Beit Lahiya,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-02,Jabalya R.C.,North Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-10-02,Jabalya R.C.,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-02,Jabalya R.C.,North Gaza,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-10-02,Jabalya R.C.,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-10-02,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-10-02,Jabalya R.C.,North Gaza,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-10-02,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-10-02,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-10-02,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-02,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-02,Rafah,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-10-02,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,23,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-10-01,Jabalya R.C.,North Gaza,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-09-30,Beit Lahiya,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-09-30,Gaza City,Gaza,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-09-30,Beit Lahiya,North Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-09-30,Khan Yunis,Khan Yunis,gaza-strip,2,13,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,25,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-09-30,Beit Lahiya,North Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-09-30,Jabalya R.C.,North Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-09-29,Beit Lahiya,North Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-09-29,Jenin R.C.,Jenin,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-09-29,Jenin R.C.,Jenin,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-09-29,Jabalya R.C.,North Gaza,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-09-29,Jabalya R.C.,North Gaza,gaza-strip,1,21,0,Residental,Demolition for alleged military purposes +2004-09-29,Beit Lahiya,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-09-25,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-09-24,Beit Hanoun,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-22,Balata R.C.,Nablus,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-09-22,Balata R.C.,Nablus,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-09-22,Balata R.C.,Nablus,west-bank,1,1,0,Residental,Demolition of houses as punishment +2004-09-22,'Askar R.C.,Nablus,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-09-22,'Askar R.C.,Nablus,west-bank,1,9,0,Residental,Demolition of houses as punishment +2004-09-22,Balata R.C.,Nablus,west-bank,1,6,0,Residental,Demolition of houses as punishment +2004-09-15,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-09-15,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-09-15,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-09-15,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-09-15,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-09-15,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-09-15,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-09-15,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-09-15,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-15,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-09-15,Qalqiliyah,Qalqiliya,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-09-14,Nur Shams,Tulkarm,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-09-10,Beit Lahiya,North Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-09-10,Beit Lahiya,North Gaza,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-09-10,Beit Lahiya,North Gaza,gaza-strip,2,6,0,Residental,Demolition for alleged military purposes +2004-09-10,Beit Lahiya,North Gaza,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-09-09,Jabalya R.C.,North Gaza,gaza-strip,2,15,0,Residental,Demolition for alleged military purposes +2004-09-09,Beit Lahiya,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-09-09,Beit Lahiya,North Gaza,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-09-09,Jabalya R.C.,North Gaza,gaza-strip,2,19,0,Residental,Demolition for alleged military purposes +2004-09-09,Jabalya R.C.,North Gaza,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-09-09,Beit Lahiya,North Gaza,gaza-strip,1,19,0,Residental,Demolition for alleged military purposes +2004-09-09,Jabalya R.C.,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-08,Beit Lahiya,North Gaza,gaza-strip,1,22,0,Residental,Demolition for alleged military purposes +2004-09-08,Beit Lahiya,North Gaza,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-09-08,Beit Lahiya,North Gaza,gaza-strip,2,15,0,Residental,Demolition for alleged military purposes +2004-09-08,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-09-08,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-09-08,Jabalya R.C.,North Gaza,gaza-strip,1,16,0,Residental,Demolition for alleged military purposes +2004-09-07,Hebron,Hebron,west-bank,5,24,0,Residental,Demolition for alleged military purposes +2004-09-06,a-Duheisheh R.C.,Bethlehem,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-09-06,a-Duheisheh R.C.,Bethlehem,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-09-06,a-Duheisheh R.C.,Bethlehem,west-bank,2,0,0,Residental,Demolition of houses as punishment +2004-09-03,Deir al-Balah,Deir al-Balah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-03,Beit Hanoun,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-01,Hebron,Hebron,west-bank,1,1,0,Residental,Demolition of houses as punishment +2004-09-01,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-01,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-09-01,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-09-01,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-09-01,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-08-26,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-08-25,Gaza City,Gaza,gaza-strip,1,9,0,Residental,Demolition of houses as punishment +2004-08-20,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-08-20,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-08-20,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-08-20,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-08-18,Rafah,Rafah,gaza-strip,3,31,0,Residental,Demolition for alleged military purposes +2004-08-18,Rafah,Rafah,gaza-strip,3,31,0,Residental,Demolition for alleged military purposes +2004-08-18,Rafah,Rafah,gaza-strip,3,27,0,Residental,Demolition for alleged military purposes +2004-08-17,Deir al-Balah,Deir al-Balah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-08-13,Beit Furik,Nablus,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-08-13,Beit Furik,Nablus,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-08-12,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-08-12,Rafah R.C.,Rafah,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-08-12,Rafah R.C.,Rafah,gaza-strip,3,11,0,Residental,Demolition for alleged military purposes +2004-08-12,Rafah R.C.,Rafah,gaza-strip,2,10,0,Residental,Demolition for alleged military purposes +2004-08-12,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-08-12,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-08-12,Rafah R.C.,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-08-12,Rafah R.C.,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-08-12,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-08-12,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-08-12,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-08-12,Rafah R.C.,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-08-09,Rafah R.C.,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-08-09,Rafah R.C.,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-08-09,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-08-09,Rafah R.C.,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-08-09,Rafah R.C.,Rafah,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-08-09,Rafah R.C.,Rafah,gaza-strip,1,21,0,Residental,Demolition for alleged military purposes +2004-08-09,Rafah R.C.,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-08-09,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-08-09,Rafah R.C.,Rafah,gaza-strip,1,20,0,Residental,Demolition for alleged military purposes +2004-08-09,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-08-09,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-08-09,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-08-08,Bethlehem,Bethlehem,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-08-05,Rafah R.C.,Rafah,gaza-strip,3,18,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,20,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,2,14,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,3,18,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,4,21,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,2,11,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,2,18,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-08-05,a-Duheisheh R.C.,Bethlehem,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-08-05,a-Duheisheh R.C.,Bethlehem,west-bank,1,6,0,Residental,Demolition of houses as punishment +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,33,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-08-05,Rafah R.C.,Rafah,gaza-strip,1,19,0,Residental,Demolition for alleged military purposes +2004-08-02,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-08-02,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-08-02,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-08-02,Khan Yunis R.C.,Khan Yunis,gaza-strip,2,13,0,Residental,Demolition for alleged military purposes +2004-08-02,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-08-02,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-29,Beit Liqya,Ramallah and al-Bira,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-07-29,Beit Liqya,Ramallah and al-Bira,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-07-28,Khan Yunis,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-07-28,Beit Hanoun,North Gaza,gaza-strip,5,17,0,Residental,Demolition for alleged military purposes +2004-07-28,Beit Hanoun,North Gaza,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-07-28,Gaza City,Gaza,gaza-strip,4,0,0,Residental,Demolition for alleged military purposes +2004-07-28,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-07-28,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-28,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-07-28,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-07-28,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-28,Khan Yunis,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-07-28,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-27,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-07-25,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-25,Gaza City,Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-25,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-07-25,Salfit,Salfit,west-bank,1,1,0,Residental,Demolition of houses as punishment +2004-07-25,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-22,Beit Hanoun,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,2,17,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,200,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,2,7,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-21,Rafah R.C.,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-20,a-Shati' R.C.,Gaza,gaza-strip,1,15,0,Residental,Demolition of houses as punishment +2004-07-19,Beit Hanoun,North Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-07-19,Beit Hanoun,North Gaza,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2004-07-16,Beit Hanoun,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-16,Beit Hanoun,North Gaza,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-07-14,Ramallah,Ramallah and al-Bira,west-bank,1,19,0,Residental,Demolition of houses as punishment +2004-07-13,Beit Hanoun,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-13,a-Duheisheh R.C.,Bethlehem,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-07-13,Deir al-Balah,Deir al-Balah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-07-12,Beit Hanoun,North Gaza,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-07-12,Kfar Dan,Jenin,west-bank,1,6,0,Residental,Demolition of houses as punishment +2004-07-12,Kfar Dan,Jenin,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-07-12,Qabatiyah,Jenin,west-bank,1,10,0,Residental,Demolition of houses as punishment +2004-07-12,Qabatiyah,Jenin,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-07-12,Qabatiyah,Jenin,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-07-12,Qabatiyah,Jenin,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-07-12,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-07-08,Beit Furik,Nablus,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-07-08,Ya'bad,Jenin,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,0,0,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,0,0,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-08,Beit Hanoun,North Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-07-08,Beit Hanoun,North Gaza,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,2,14,0,Residental,Demolition for alleged military purposes +2004-07-08,Khan Yunis R.C.,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-06,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-06,Rafah,Rafah,gaza-strip,1,33,0,Residental,Demolition for alleged military purposes +2004-07-06,Rafah,Rafah,gaza-strip,1,16,0,Residental,Demolition for alleged military purposes +2004-07-06,Rafah,Rafah,gaza-strip,1,16,0,Residental,Demolition for alleged military purposes +2004-07-06,Rafah,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-07-06,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-07-05,Tell,Nablus,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-07-05,Beit Hanoun,North Gaza,gaza-strip,3,15,0,Residental,Demolition for alleged military purposes +2004-07-02,Beit Hanoun,North Gaza,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-07-02,Beit Hanoun,North Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-02,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-07-02,Rafah R.C.,Rafah,gaza-strip,4,20,0,Residental,Demolition for alleged military purposes +2004-07-02,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,0,0,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,20,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-01,Jericho,Jericho,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,2,200,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-07-01,Khan Yunis,Khan Yunis,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,22,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,3,16,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-06-28,al-Qararah,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-06-25,Bethlehem,Bethlehem,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-06-25,Bethlehem,Bethlehem,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-06-25,Bethlehem,Bethlehem,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-06-25,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-06-25,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-06-25,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-06-25,Rafah,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-06-22,Deir al-Balah,Deir al-Balah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-06-22,Deir al-Balah,Deir al-Balah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-06-18,al-Qararah,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition of houses as punishment +2004-06-18,al-Qararah,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition of houses as punishment +2004-06-16,Deir al-Balah,Deir al-Balah,gaza-strip,1,6,0,Residental,Demolition of houses as punishment +2004-06-16,Deir al-Balah,Deir al-Balah,gaza-strip,2,13,0,Residental,Demolition of houses as punishment +2004-06-16,Deir al-Balah,Deir al-Balah,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-06-15,Bethlehem,Bethlehem,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-06-15,Bethlehem,Bethlehem,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-06-15,Bethlehem,Bethlehem,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-06-10,Beit Hanoun,North Gaza,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-06-10,Beit Hanoun,North Gaza,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-06-10,Beit Hanoun,North Gaza,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-06-10,Beit Hanoun,North Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-06-08,Rafah,Rafah,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-06-02,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-06-02,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-06-02,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-06-02,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-06-02,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-06-02,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-06-02,Tulkarm,Tulkarm,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-06-02,Rafah,Rafah,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2004-06-02,Rafah,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-05-31,Husan,Bethlehem,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-05-31,Husan,Bethlehem,west-bank,1,9,0,Residental,Demolition of houses as punishment +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,19,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah,Rafah,gaza-strip,3,10,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,2,14,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,19,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,2,15,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,29,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-30,Rafah R.C.,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-05-27,Deir al-Balah,Deir al-Balah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-27,Nablus,Nablus,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-05-27,Deir al-Balah,Deir al-Balah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-27,Deir al-Balah,Deir al-Balah,gaza-strip,2,0,0,Residental,Demolition for alleged military purposes +2004-05-27,Nablus,Nablus,west-bank,1,6,0,Residental,Demolition of houses as punishment +2004-05-23,Rafah,Rafah,gaza-strip,1,29,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,2,17,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,43,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,33,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,2,10,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,3,14,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,16,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,27,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-23,Rafah,Rafah,gaza-strip,1,28,0,Residental,Demolition for alleged military purposes +2004-05-22,Rafah,Rafah,gaza-strip,5,30,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,24,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,21,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,19,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,16,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,19,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,2,16,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,30,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,27,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,41,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,31,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,19,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-21,Rafah,Rafah,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2004-05-19,Tall a-Sultan R.C.,Rafah,gaza-strip,1,11,0,Residental,Demolition of houses as punishment +2004-05-19,Tall a-Sultan R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition of houses as punishment +2004-05-18,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-18,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-18,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-18,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-16,Rafah R.C.,Rafah,gaza-strip,4,57,0,Residental,Demolition for alleged military purposes +2004-05-16,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-16,Rafah R.C.,Rafah,gaza-strip,3,6,0,Residental,Demolition for alleged military purposes +2004-05-16,Rafah R.C.,Rafah,gaza-strip,3,19,0,Residental,Demolition for alleged military purposes +2004-05-16,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-16,Rafah,Rafah,gaza-strip,4,24,0,Residental,Demolition for alleged military purposes +2004-05-16,Rafah,Rafah,gaza-strip,2,23,0,Residental,Demolition for alleged military purposes +2004-05-15,al-Qararah,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-15,al-Qararah,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-15,al-Qararah,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-15,al-Qararah,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-14,Ramallah,Ramallah and al-Bira,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-05-14,al-Birah,Ramallah and al-Bira,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,20,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,19,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,9,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,11,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,0,0,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,16,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,9,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,19,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,14,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,12,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,12,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,24,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,4,15,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,10,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,3,13,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,3,16,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,3,14,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,5,27,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,13,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,4,20,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,13,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,16,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,17,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,20,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,9,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,12,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,20,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,23,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,17,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,15,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,3,10,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,13,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,22,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,6,41,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,3,14,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,3,17,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,16,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,13,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,3,18,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,12,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,2,15,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-05-13,Rafah R.C.,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-12,Gaza City,Gaza,gaza-strip,2,10,0,Residental,Demolition for alleged military purposes +2004-05-12,Gaza City,Gaza,gaza-strip,2,20,0,Residental,Demolition for alleged military purposes +2004-05-12,Gaza City,Gaza,gaza-strip,8,14,0,Residental,Demolition for alleged military purposes +2004-05-12,Gaza City,Gaza,gaza-strip,12,14,0,Residental,Demolition for alleged military purposes +2004-05-12,Gaza City,Gaza,gaza-strip,24,0,0,Residental,Demolition for alleged military purposes +2004-05-11,Gaza City,Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-11,Gaza City,Gaza,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-11,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-11,Rafah,Rafah,gaza-strip,8,56,0,Residental,Demolition for alleged military purposes +2004-05-11,Nablus,Nablus,west-bank,1,6,0,Residental,Demolition for alleged military purposes +2004-05-09,al-Qararah,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-09,al-Qararah,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-09,al-Qararah,Khan Yunis,gaza-strip,2,13,0,Residental,Demolition for alleged military purposes +2004-05-09,al-Qararah,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-09,al-Qararah,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-09,al-Qararah,Khan Yunis,gaza-strip,3,14,0,Residental,Demolition for alleged military purposes +2004-05-09,al-Qararah,Khan Yunis,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-05-09,al-Qararah,Khan Yunis,gaza-strip,3,13,0,Residental,Demolition for alleged military purposes +2004-05-09,al-Qararah,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-07,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-07,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-06,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-05-06,Rafah,Rafah,gaza-strip,9,62,0,Residental,Demolition for alleged military purposes +2004-05-06,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-06,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-06,Rafah,Rafah,gaza-strip,2,15,0,Residental,Demolition for alleged military purposes +2004-05-06,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-06,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-05-06,Rafah,Rafah,gaza-strip,3,14,0,Residental,Demolition for alleged military purposes +2004-05-05,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-05,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-05,Khan Yunis,Khan Yunis,gaza-strip,2,13,0,Residental,Demolition for alleged military purposes +2004-05-05,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-05,Khan Yunis,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-05-05,Khan Yunis,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-05,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-05,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-05,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-05,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-05,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-05,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,17,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,10,8,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,3,15,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,2,14,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-04,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-03,Rafah,Rafah,gaza-strip,4,20,0,Residental,Demolition for alleged military purposes +2004-05-03,al-Mughraqa (Abu Midein),Gaza,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-03,al-Mughraqa (Abu Midein),Gaza,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-05-03,al-Mughraqa (Abu Midein),Gaza,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-03,Rafah,Rafah,gaza-strip,2,11,0,Residental,Demolition for alleged military purposes +2004-05-03,Rafah,Rafah,gaza-strip,4,9,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-05-02,al-Qararah,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-04-30,Khan Yunis,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-04-29,Sarra,Nablus,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-04-29,Sarra,Nablus,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-04-29,Sarra,Nablus,west-bank,1,10,0,Residental,Demolition of houses as punishment +2004-04-29,Rafah,Rafah,gaza-strip,2,10,0,Residental,Demolition for alleged military purposes +2004-04-23,Deir al-Balah,Deir al-Balah,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-04-23,Deir al-Balah,Deir al-Balah,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,2,15,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,340,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,6,15,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-04-22,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-04-19,Deir al-Balah,Deir al-Balah,gaza-strip,4,29,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,27,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,38,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,15,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,28,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-04-15,Beit Jala,Bethlehem,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-04-15,Shweikah,Tulkarm,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-04-15,Bethlehem,Bethlehem,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-04-15,Rafidya,Nablus,west-bank,1,6,0,Residental,Demolition of houses as punishment +2004-04-15,Rafah,Rafah,gaza-strip,1,23,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-04-15,Beit Jala,Bethlehem,west-bank,1,1,0,Residental,Demolition of houses as punishment +2004-04-15,Rafah,Rafah,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-04-15,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-04-15,Beit Jala,Bethlehem,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-04-12,Gaza City,Gaza,gaza-strip,1,0,0,Residental,Demolition for alleged military purposes +2004-04-05,Deir a-Sudan,Ramallah and al-Bira,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-04-05,Deir a-Sudan,Ramallah and al-Bira,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-04-04,Tulkarm R.C.,Tulkarm,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-04-04,Tulkarm R.C.,Tulkarm,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-04-04,Tulkarm R.C.,Tulkarm,west-bank,1,1,0,Residental,Demolition of houses as punishment +2004-04-04,Tulkarm R.C.,Tulkarm,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-04-03,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition of houses as punishment +2004-04-03,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition of houses as punishment +2004-04-03,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition of houses as punishment +2004-04-03,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition of houses as punishment +2004-04-03,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition of houses as punishment +2004-04-03,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition of houses as punishment +2004-03-28,Bidya,Salfit,west-bank,1,1,0,Residental,Demolition of houses as punishment +2004-03-28,Bidya,Salfit,west-bank,1,10,0,Residental,Demolition of houses as punishment +2004-03-25,Khan Yunis,Khan Yunis,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-03-25,Khan Yunis,Khan Yunis,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-03-25,Khan Yunis,Khan Yunis,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-03-25,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-03-25,Khan Yunis,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-03-25,Khan Yunis,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-03-25,Khan Yunis,Khan Yunis,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-03-25,Khan Yunis,Khan Yunis,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-03-25,Khan Yunis,Khan Yunis,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-03-24,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-03-24,Khan Yunis,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-03-21,a-Duheisheh R.C.,Bethlehem,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-03-21,a-Duheisheh R.C.,Bethlehem,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-03-21,a-Duheisheh R.C.,Bethlehem,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-03-21,a-Duheisheh R.C.,Bethlehem,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-03-21,a-Duheisheh R.C.,Bethlehem,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-03-21,a-Duheisheh R.C.,Bethlehem,west-bank,1,10,0,Residental,Demolition of houses as punishment +2004-03-21,a-Duheisheh R.C.,Bethlehem,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-03-21,Khan Yunis,Khan Yunis,gaza-strip,2,7,0,Residental,Demolition for alleged military purposes +2004-03-21,Khan Yunis,Khan Yunis,gaza-strip,4,13,0,Residental,Demolition for alleged military purposes +2004-03-19,Bethlehem,Bethlehem,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-03-19,Bethlehem,Bethlehem,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-03-19,al-Mughraqa (Abu Midein),Gaza,gaza-strip,1,10,0,Residental,Demolition of houses as punishment +2004-03-19,Bethlehem,Bethlehem,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-03-19,al-Mughraqa (Abu Midein),Gaza,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-03-19,al-Mughraqa (Abu Midein),Gaza,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-03-19,al-Mughraqa (Abu Midein),Gaza,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-03-19,al-Mughraqa (Abu Midein),Gaza,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-03-17,Madama,Nablus,west-bank,1,13,0,Residental,Demolition of houses as punishment +2004-03-17,Tulkarm R.C.,Tulkarm,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-03-17,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-03-17,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-03-17,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-03-17,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-03-17,Rafah,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-03-17,Madama,Nablus,west-bank,1,1,0,Residental,Demolition of houses as punishment +2004-03-16,Silwad,Ramallah and al-Bira,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-03-15,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-03-11,al-Walajah,Bethlehem,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-03-11,Rafah,Rafah,gaza-strip,1,22,0,Residental,Demolition for alleged military purposes +2004-03-10,Rafah,Rafah,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-03-08,al-Qararah,Khan Yunis,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-03-04,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-03-04,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-03-04,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-03-04,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-03-04,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-03-04,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-02-28,'Anzah,Jenin,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-02-27,'Aydah R.C.,Bethlehem,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-02-27,'Aydah R.C.,Bethlehem,west-bank,1,9,0,Residental,Demolition of houses as punishment +2004-02-27,al-'Aza R.C.,Bethlehem,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-02-27,al-'Aza R.C.,Bethlehem,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-02-27,al-'Aza R.C.,Bethlehem,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-02-27,al-'Aza R.C.,Bethlehem,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-02-27,al-'Aza R.C.,Bethlehem,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-02-27,al-'Aza R.C.,Bethlehem,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-02-23,Salfit,Salfit,west-bank,1,1,0,Residental,Demolition of houses as punishment +2004-02-23,Salfit,Salfit,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-02-22,Husan,Bethlehem,west-bank,1,10,0,Residental,Demolition of houses as punishment +2004-02-19,Salfit,Salfit,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-02-19,Salfit,Salfit,west-bank,1,1,0,Residental,Demolition of houses as punishment +2004-02-19,Silat al-Harithiya,Jenin,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-02-19,Salfit,Salfit,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-02-18,Silat al-Harithiya,Jenin,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-02-15,al-Yamun,Jenin,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-02-15,al-Yamun,Jenin,west-bank,1,9,0,Residental,Demolition of houses as punishment +2004-02-12,Deir al-Balah,Deir al-Balah,gaza-strip,1,5,0,Residental,Demolition of houses as punishment +2004-02-11,Gaza City,Gaza,gaza-strip,1,3,0,Residental,Demolition of houses as punishment +2004-02-11,Gaza City,Gaza,gaza-strip,1,6,0,Residental,Demolition of houses as punishment +2004-02-11,Gaza City,Gaza,gaza-strip,1,7,0,Residental,Demolition of houses as punishment +2004-02-11,Rafah,Rafah,gaza-strip,5,21,0,Residental,Demolition for alleged military purposes +2004-02-06,Birqin,Jenin,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-02-06,Birqin,Jenin,west-bank,1,2,0,Residental,Demolition of houses as punishment +2004-02-02,'Aydah R.C.,Bethlehem,west-bank,2,8,0,Residental,Demolition for alleged military purposes +2004-02-02,'Aydah R.C.,Bethlehem,west-bank,2,7,0,Residental,Demolition for alleged military purposes +2004-02-01,Jericho,Jericho,west-bank,6,20,0,Residental,Demolition for alleged military purposes +2004-02-01,Jericho,Jericho,west-bank,1,2,0,Residental,Demolition for alleged military purposes +2004-02-01,Silwad,Ramallah and al-Bira,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-02-01,Jericho,Jericho,west-bank,1,10,0,Residental,Demolition for alleged military purposes +2004-02-01,Jericho,Jericho,west-bank,1,4,0,Residental,Demolition for alleged military purposes +2004-02-01,Silwad,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-02-01,Silwad,Ramallah and al-Bira,west-bank,1,6,0,Residental,Demolition of houses as punishment +2004-01-30,'Aydah R.C.,Bethlehem,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-01-30,Silwad,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-01-30,Silwad,Ramallah and al-Bira,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-01-30,Silwad,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-01-30,'Aydah R.C.,Bethlehem,west-bank,1,1,0,Residental,Demolition of houses as punishment +2004-01-30,'Aydah R.C.,Bethlehem,west-bank,1,8,0,Residental,Demolition of houses as punishment +2004-01-30,Kobar,Ramallah and al-Bira,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-01-30,Kobar,Ramallah and al-Bira,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-01-30,Abu Shukheidim,Ramallah and al-Bira,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-01-30,Abu Shukheidim,Ramallah and al-Bira,west-bank,1,9,0,Residental,Demolition of houses as punishment +2004-01-30,Silwad,Ramallah and al-Bira,west-bank,1,3,0,Residental,Demolition of houses as punishment +2004-01-30,Silwad,Ramallah and al-Bira,west-bank,1,4,0,Residental,Demolition of houses as punishment +2004-01-30,Silwad,Ramallah and al-Bira,west-bank,1,0,0,Residental,Demolition of houses as punishment +2004-01-29,Khan Yunis,Khan Yunis,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,11,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,25,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,8,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,2,11,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,2,13,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,27,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,3,13,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,6,33,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,16,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,25,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,12,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,14,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-01-20,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-01-18,Yatta,Hebron,west-bank,1,6,0,Residental,Demolition of houses as punishment +2004-01-17,Rafah,Rafah,gaza-strip,2,13,0,Residental,Demolition for alleged military purposes +2004-01-17,Rafah,Rafah,gaza-strip,2,11,0,Residental,Demolition for alleged military purposes +2004-01-17,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-01-17,Rafah,Rafah,gaza-strip,1,9,0,Residental,Demolition for alleged military purposes +2004-01-17,Rafah,Rafah,gaza-strip,2,10,0,Residental,Demolition for alleged military purposes +2004-01-17,Rafah,Rafah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-01-17,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-01-17,Rafah,Rafah,gaza-strip,2,13,0,Residental,Demolition for alleged military purposes +2004-01-16,Khan Yunis,Khan Yunis,gaza-strip,2,10,0,Residental,Demolition for alleged military purposes +2004-01-16,Rafah,Rafah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-01-15,Tulkarm R.C.,Tulkarm,west-bank,1,7,0,Residental,Demolition of houses as punishment +2004-01-15,Tulkarm R.C.,Tulkarm,west-bank,1,5,0,Residental,Demolition of houses as punishment +2004-01-15,Tulkarm R.C.,Tulkarm,west-bank,1,6,0,Residental,Demolition of houses as punishment +2004-01-06,Rafah,Rafah,gaza-strip,1,3,0,Residental,Demolition for alleged military purposes +2004-01-05,Khan Yunis,Khan Yunis,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-01-04,Rafah,Rafah,gaza-strip,1,7,0,Residental,Demolition for alleged military purposes +2004-01-04,Rafah,Rafah,gaza-strip,1,1,0,Residental,Demolition for alleged military purposes +2004-01-01,Deir al-Balah,Deir al-Balah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-01-01,Deir al-Balah,Deir al-Balah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-01-01,Deir al-Balah,Deir al-Balah,gaza-strip,1,4,0,Residental,Demolition for alleged military purposes +2004-01-01,Deir al-Balah,Deir al-Balah,gaza-strip,1,5,0,Residental,Demolition for alleged military purposes +2004-01-01,Deir al-Balah,Deir al-Balah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-01-01,Deir al-Balah,Deir al-Balah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-01-01,Deir al-Balah,Deir al-Balah,gaza-strip,1,2,0,Residental,Demolition for alleged military purposes +2004-01-01,Deir al-Balah,Deir al-Balah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes +2004-01-01,Deir al-Balah,Deir al-Balah,gaza-strip,1,6,0,Residental,Demolition for alleged military purposes +2004-01-01,Deir al-Balah,Deir al-Balah,gaza-strip,1,10,0,Residental,Demolition for alleged military purposes diff --git a/exercicios/para-sala/modelo.ipynb b/exercicios/para-sala/modelo.ipynb index 1b6e0ae..98fcb92 100644 --- a/exercicios/para-sala/modelo.ipynb +++ b/exercicios/para-sala/modelo.ipynb @@ -230,10 +230,22 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 1, "id": "37aa075a", "metadata": {}, - "outputs": [], + "outputs": [ + { + "ename": "NameError", + "evalue": "name 'df' is not defined", + "output_type": "error", + "traceback": [ + "\u001b[1;31m---------------------------------------------------------------------------\u001b[0m", + "\u001b[1;31mNameError\u001b[0m Traceback (most recent call last)", + "\u001b[1;32mc:\\Users\\jheni\\on26-python-s13-projeto-guiado-II\\exercicios\\para-sala\\modelo.ipynb Cell 20\u001b[0m line \u001b[0;36m2\n\u001b[0;32m 1\u001b[0m \u001b[39m# Classifique o DataFrame pela coluna 'Suscribers' em ordem decrescente e pegue os 5 maiores\u001b[39;00m\n\u001b[1;32m----> 2\u001b[0m top5_canais \u001b[39m=\u001b[39m df\u001b[39m.\u001b[39msort_values(by\u001b[39m=\u001b[39m\u001b[39m'\u001b[39m\u001b[39mSuscribers\u001b[39m\u001b[39m'\u001b[39m, ascending\u001b[39m=\u001b[39m\u001b[39mFalse\u001b[39;00m)\u001b[39m.\u001b[39mhead(\u001b[39m5\u001b[39m)\n\u001b[0;32m 4\u001b[0m \u001b[39m# Crie um gráfico de barras para os 3 canais com mais inscritos e seus países\u001b[39;00m\n\u001b[0;32m 5\u001b[0m plt\u001b[39m.\u001b[39mfigure(figsize\u001b[39m=\u001b[39m(\u001b[39m10\u001b[39m, \u001b[39m6\u001b[39m))\n", + "\u001b[1;31mNameError\u001b[0m: name 'df' is not defined" + ] + } + ], "source": [ "# Classifique o DataFrame pela coluna 'Suscribers' em ordem decrescente e pegue os 5 maiores\n", "top5_canais = df.sort_values(by='Suscribers', ascending=False).head(5)\n", @@ -279,7 +291,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.9.7" + "version": "3.10.11" } }, "nbformat": 4, diff --git a/exercicios/para-sala/projetoguiado3.ipynb b/exercicios/para-sala/projetoguiado3.ipynb new file mode 100644 index 0000000..0c734bc --- /dev/null +++ b/exercicios/para-sala/projetoguiado3.ipynb @@ -0,0 +1,208 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 11, + "metadata": {}, + "outputs": [], + "source": [ + "import pandas as pd\n", + "import matplotlib.pyplot as plt" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Introdução\n", + "\n", + "Escolhi este database pois foi o que me causou impacto. Devido a minha desinformação, eu não tinha o conhecimento de que além do controle territorial que acomete a população a constantes humilhações, também há uma destruição sistemática de estruturas Palestinas." + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.read_csv(\"demolitions_pse_isr_conflict_2004-01_to_2023-08.csv\", sep=\",\" , encoding= 'UTF-8') " + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "(5765, 9)" + ] + }, + "execution_count": 14, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df.shape" + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 5765 entries, 0 to 5764\n", + "Data columns (total 9 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 date_of_demolition 5765 non-null object\n", + " 1 locality 5763 non-null object\n", + " 2 district 5763 non-null object\n", + " 3 area 5765 non-null object\n", + " 4 housing_units 5765 non-null int64 \n", + " 5 people_left_homeless 5765 non-null int64 \n", + " 6 minors_left_homeless 5765 non-null int64 \n", + " 7 type_of_sturcture 5765 non-null object\n", + " 8 reason_for_demolition 5765 non-null object\n", + "dtypes: int64(3), object(6)\n", + "memory usage: 405.5+ KB\n" + ] + } + ], + "source": [ + "df.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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GFasWGHMthAWFgadTic9zp07Z9R+iIiI6MkyaiCqU6cOPD09DZY1bdoUGRkZAACtVgsAyM7ONqjJzs6W1mm1WuTk5Bisv3PnDnJzcw1qyhuj9D5KU6lUUKvVBg8iIiJ6fhk1ELVv3x5paWkGy/7991+4uLgAANzc3KDVapGQkCCt1+v1SE5Ohre3NwDA29sbeXl5SElJkWq2b9+O4uJitGnTRqpJTExEYWGhVBMfH48mTZoYXNFGRERE8mTUQBQaGoq9e/fis88+w8mTJ7F69WqsXLkSwcHBAACFQoGQkBDMmjULmzZtwuHDhzFgwAA4OTmhd+/eAO4eUerWrRuGDRuGffv2Yffu3Rg1ahQCAgLg5OQEAOjfvz+USiWGDBmCo0eP4pdffsGiRYswduxYY02diIiIqpEaxtx569atsWHDBoSFhWHmzJlwc3PDwoULERgYKNVMnDgRN27cwPDhw5GXl4dXX30VsbGxMDc3l2p+/PFHjBo1Cp07d4aJiQn8/f2xePFiab1Go8HWrVsRHByMli1bonbt2pg6darBvYqIiIhIvox6H6JnBe9DRERE9GTJ+j5ERERERNUBAxERERHJHgMRERERyR4DEREREckeAxERERHJHgMRERERyR4DEREREckeAxERERHJHgMRERERyR4DEREREckeAxERERHJHgMRERERyR4DEREREckeAxERERHJHgMRERERyR4DEREREckeAxERERHJHgMRERERyR4DEREREckeAxERERHJHgMRERERyR4DEREREckeAxERERHJHgMRERERyR4DEREREckeAxERERHJHgMRERERyR4DEREREckeAxERERHJHgMRERERyR4DEREREckeAxERERHJHgMRERERyR4DEREREcmeUQPR9OnToVAoDB4eHh7S+tu3byM4OBh2dnawtraGv78/srOzDcbIyMiAn58fLC0t4eDggAkTJuDOnTsGNTt37sTLL78MlUoFd3d3REZGPo3pERER0TPC6EeImjVrhosXL0qPP//8U1oXGhqKzZs3Y+3atdi1axcyMzPRp08faX1RURH8/PxQUFCAPXv2ICoqCpGRkZg6dapUk56eDj8/P3Tq1AkHDx5ESEgIhg4diri4uKc6TyIiIqq+ahi9gRo1oNVqyyzX6XT49ttvsXr1arzxxhsAgFWrVqFp06bYu3cv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dgNKpRLu7u4AgJYtW2L//v1YtGgR3n33XRQUFCAvL8/gKFF2dja0Wi0AQKvVYt++fQbjlVyFVrrm3ivTsrOzoVarYWFhUW5PKpUKKpWqSuZHRERE1Z/RjxDdq7i4GPn5+WjZsiXMzMyQkJAgrUtLS0NGRga8vb0BAN7e3jh8+DBycnKkmvj4eKjVanh6eko1pccoqSkZg4iIiMioR4jCwsLw5ptvon79+rh27RpWr16NnTt3Ii4uDhqNBkOGDMHYsWNha2sLtVqN0aNHw9vbG23btgUAdO3aFZ6envjggw8wZ84cZGVlYcqUKQgODpaO8IwYMQJLly7FxIkTMXjwYGzfvh1r1qxBTAyv7CIiIqK7jBqIcnJyMGDAAFy8eBEajQbNmzdHXFwcunTpAgBYsGABTExM4O/vj/z8fPj6+mL58uXS9qampoiOjsbIkSPh7e0NKysrBAUFYebMmVKNm5sbYmJiEBoaikWLFqFevXr45ptv4Ovr+9TnS0RERNVTtbsPUXXE+xARERE9WbwPEREREZGRMRARERGR7DEQERERkewxEBEREZHsMRARERGR7DEQERERkewxEBEREZHsMRARERGR7DEQERERkewxEBEREZHsMRARERGR7DEQERERkewxEBEREZHsMRARERGR7DEQERERkewxEBEREZHsMRARERGR7DEQERERkewxEBEREZHsMRARERGR7DEQERERkewxEBEREZHsMRARERGR7DEQERERkewxEBEREZHsMRARERGR7DEQERERkewxEBEREZHsMRARERGR7DEQERERkewxEBEREZHsMRARERGR7DEQERERkewxEBEREZHsGTUQhYeHo3Xr1qhZsyYcHBzQu3dvpKWlGdTcvn0bwcHBsLOzg7W1Nfz9/ZGdnW1Qk5GRAT8/P1haWsLBwQETJkzAnTt3DGp27tyJl19+GSqVCu7u7oiMjHzS0yMiIqJnhFED0a5duxAcHIy9e/ciPj4ehYWF6Nq1K27cuCHVhIaGYvPmzVi7di127dqFzMxM9OnTR1pfVFQEPz8/FBQUYM+ePYiKikJkZCSmTp0q1aSnp8PPzw+dOnXCwYMHERISgqFDhyIuLu6pzpeIiIiqJ4UQQhi7iRKXLl2Cg4MDdu3ahQ4dOkCn08He3h6rV69G3759AQCpqalo2rQpkpKS0LZtW2zZsgU9evRAZmYmHB0dAQArVqzApEmTcOnSJSiVSkyaNAkxMTE4cuSItK+AgADk5eUhNjb2oX3p9XpoNBrodDqo1eoqn7fr5JgqH5OIiOhZcuZzvyof81E+v6vVOUQ6nQ4AYGtrCwBISUlBYWEhfHx8pBoPDw/Ur18fSUlJAICkpCR4eXlJYQgAfH19odfrcfToUamm9BglNSVj3Cs/Px96vd7gQURERM+vahOIiouLERISgvbt2+OFF14AAGRlZUGpVMLGxsag1tHREVlZWVJN6TBUsr5k3YNq9Ho9bt26VaaX8PBwaDQa6eHs7FwlcyQiIqLqqdoEouDgYBw5cgQ///yzsVtBWFgYdDqd9Dh37pyxWyIiIqInqIaxGwCAUaNGITo6GomJiahXr560XKvVoqCgAHl5eQZHibKzs6HVaqWaffv2GYxXchVa6Zp7r0zLzs6GWq2GhYVFmX5UKhVUKlWVzI2IiIiqP6MeIRJCYNSoUdiwYQO2b98ONzc3g/UtW7aEmZkZEhISpGVpaWnIyMiAt7c3AMDb2xuHDx9GTk6OVBMfHw+1Wg1PT0+ppvQYJTUlYxAREZG8GfUIUXBwMFavXo3ffvsNNWvWlM750Wg0sLCwgEajwZAhQzB27FjY2tpCrVZj9OjR8Pb2Rtu2bQEAXbt2haenJz744APMmTMHWVlZmDJlCoKDg6WjPCNGjMDSpUsxceJEDB48GNu3b8eaNWsQE8Oru4iIiMjIR4giIiKg0+nQsWNH1KlTR3r88ssvUs2CBQvQo0cP+Pv7o0OHDtBqtVi/fr203tTUFNHR0TA1NYW3tzfef/99DBgwADNnzpRq3NzcEBMTg/j4eLz44ouYN28evvnmG/j6+j7V+RIREVH1VK3uQ1Rd8T5ERERETxbvQ0RERERkZAxEREREJHsMRERERCR7DEREREQkewxEREREJHsMRERERCR7DEREREQkewxEREREJHsMRERERCR7DEREREQkewxEREREJHsMRERERCR7DEREREQkewxEREREJHsMRERERCR7DEREREQkewxEREREJHsMRERERCR7DEREREQkewxEREREJHsMRERERCR7DEREREQkewxEREREJHsMRERERCR7DEREREQkewxEREREJHsMRERERCR7DEREREQkewxEREREJHsMRERERCR7DEREREQkewxEREREJHsM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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "soma_coluna = df['housing_units'].sum()\n", + "\n", + "# Crie um gráfico de barras com a soma da coluna\n", + "plt.bar('housing_units', soma_coluna)\n", + "plt.title('Soma da Coluna \"Unidades Habitacionais\"')\n", + "plt.xlabel('Categoria')\n", + "plt.ylabel('Soma')\n", + "plt.show()\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "\n" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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XV1dYWNjI/r27SuuXLmiMa7k5GTh7+8vKleuLHR1dYWrq2uBZfznn3+Kjh07CgsLC2md++KLL8S9e/cKzFthVq1aJdzd3YW+vr4wNjYWrq6u4ssvvxR379595ededwu9WmH7mpycHPHjjz+KOnXqCKVSKSpWrCjc3d3FjBkzNNbXwj4rROHb3ZkzZ4S3t7cwMjISBgYGol27dhqPWhGi6O9WLSIiQnh7ewsTExOhp6cnHBwcxMCBA6X15k32QerlpX7p6emJqlWrio8++kj89ttvBfbdamfPnhWffPKJtF3b2dmJzz77TNpms7OzxaRJk0T9+vWFsbGxMDQ0FPXr1xfLly/XGI+cfawQLx45YGhoKBISEkTHjh2FgYGBsLS0FNOmTdPYRxb270X+YfnX1Y0bNwonJyehVCpF3bp1xV9//SV69uwpnJycNPr997//FTVr1hRKpVI4OTmJ4ODgQh/n8uTJEzF69GhhZmYmDA0NRdeuXcWtW7cK3Z/IWT++//570aRJE2Fqair09fWFk5OTmD17doHH/hSHQog3uPqOiKgc2Lx5M/r164f79+9rPEaAiN4tNzc3mJubv9FTt8szXtNERO89U1NTLF68mIGJ6B159uwZnj9/rtEWGRmJc+fOFfrnlj4UPNJERERExXL9+nV4eXnh888/h42NDeLi4rBy5UqYmJjg4sWL0p/E+dDwQnAiIiIqlooVK8Ld3R2//vor/v33XxgaGsLHxwf/+c9/PtjABPBIExEREZEsvKaJiIiISAaGJiIiIiIZeE1TKcnLy8Pdu3dhbGxcKn9KgIiIiN4+IQQyMjJgY2NT5N9YVGNoKiV379597d9DIiIiovLp1q1bqFq16iv7MDSVEvWfQLh169Zr/y4SERERlQ/p6emwtbUt8s9TvYyhqZSoT8mpVCqGJiIioveMnEtreCE4ERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERyVChrAsgeewn7ynrEojKrev/8SnrEojofwCPNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIwNBERERHJUKahKSgoCI0bN4axsTEsLCzQo0cPxMfHa/R5+vQpAgMDYWZmBiMjI/Ts2RPJyckafW7evAkfHx8YGBjAwsICkyZNwvPnzzX6REZGomHDhlAqlXB0dMTq1asL1LNs2TLY29tDT08PTZs2xcmTJ0t9nomIiOj9VKah6dChQwgMDMTx48cRHh6OZ8+eoWPHjsjKypL6jBs3Drt27cKWLVtw6NAh3L17F5988ok0PDc3Fz4+PsjJycHRo0exZs0arF69GlOnTpX6JCYmwsfHB+3atUNsbCzGjh2LwYMHIzQ0VOqzadMmjB8/HtOmTcOZM2dQv359eHt7IyUl5d0sDCIiIirXFEIIUdZFqP3777+wsLDAoUOH0Lp1a6SlpcHc3Bzr169Hr169AABxcXFwdnbGsWPH0KxZM+zbtw8fffQR7t69C0tLSwDAypUr8dVXX+Hff/+Frq4uvvrqK+zZswcXL16UptWnTx+kpqYiJCQEANC0aVM0btwYS5cuBQDk5eXB1tYWo0aNwuTJk19be3p6OkxMTJCWlgaVSlXaiwb2k/eU+jiJPhTX/+NT1iUQ0XuqOP9+l6trmtLS0gAAlSpVAgDExMTg2bNn8PLykvo4OTmhWrVqOHbsGADg2LFjcHV1lQITAHh7eyM9PR2XLl2S+rw8DnUf9ThycnIQExOj0UdLSwteXl5Sn/yys7ORnp6u8SIiIqIPV7kJTXl5eRg7dixatGiBunXrAgCSkpKgq6sLU1NTjb6WlpZISkqS+rwcmNTD1cNe1Sc9PR1PnjzB/fv3kZubW2gf9TjyCwoK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Pn06pk2bhsePH5d2PURERETlUolOzy1evBgJCQmwtLSEvb19gQvBz5w5UyrFEREREZUXJQpNPXr0KOUyiIiIiMq3EoWmadOmlXYdREREROVaif9gLwDExMTg8uXLAIA6deqgQYMGpVIUERERUXlTotCUkpKCPn36IDIyEqampgCA1NRUtGvXDhs3boS5uXlp1khERERU5kp099yoUaOQkZGBS5cu4eHDh3j48CEuXryI9PR0jB49urRrJCIiIipzJTrSFBISgv3798PZ2Vlqc3FxwbJly9CxY8dSK46IiIiovCjRkaa8vLwCjxkAAB0dHeTl5b1xUURERETlTYlCU/v27TFmzBjcvXtXartz5w7GjRsHT0/PUiuOiIiIqLwoUWhaunQp0tPTYW9vDwcHBzg4OMDe3h7p6elYsmRJaddIREREVOZKdE2Tra0tzpw5g/379yMuLg7Ai2uaeJSJiIiIPlTFOtJ07Ngx7N69GwCgUCjQoUMHqFQqzJs3D3379sXQoUORnZ39VgolIiIiKkvFCk0zZ87EpUuXpPcXLlzAkCFD0KFDB0yePBm7du1CUFBQqRdJREREVNaKFZpiY2M1TsFt3LgRTZo0wS+//ILx48dj8eLF2Lx5c6kXSURERFTWihWaHj16BEtLS+n9oUOH0LlzZ+l948aNcevWrdKrjoiIiKicKFZosrS0RGJiIgAgJycHZ86cQbNmzaThGRkZhT6/iYiIiOh9V6zQ1KVLF0yePBmHDx/GlClTYGBggFatWknDz58/DwcHh1IvkoiIiKisFeuRA7NmzcInn3yCNm3awMjICGvWrIGurq40/LfffuOfUSEiIqIPUrFCU+XKlREVFYW0tDQYGRlBW1tbY/iWLVtgZGRUqgUSERERlQcleriliYlJoe2VKlV6o2KIiIiIyqsS/RkVIiIiov81DE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDKUaWiKiopC165dYWNjA4VCgR07dmgMF0Jg6tSpsLa2hr6+Pry8vHD16lWNPg8fPkS/fv2gUqlgamqKgIAAZGZmavQ5f/48WrVqBT09Pdja2mLOnDkFatmyZQucnJygp6cHV1dX7N27t9Tnl4iIiN5fZRqasrKyUL9+fSxbtqzQ4XPmzMHixYuxcuVKnDhxAoaGhvD29sbTp0+lPv369cOlS5cQHh6O3bt3IyoqCkOHDpWGp6eno2PHjrCzs0NMTAzmzp2L6dOnY9WqVVKfo0ePom/fvggICMDZs2fRo0cP9OjRAxcvXnx7M09ERETvFYUQQpR1EQCgUCiwfft29OjRA8CLo0w2NjaYMGECJk6cCABIS0uDpaUlVq9ejT59+uDy5ctwcXHBqVOn0KhRIwBASEgIunTpgtu3b8PGxgYrVqzAN998g6SkJOjq6gIAJk+ejB07diAuLg4A0Lt3b2RlZWH37t1SPc2aNYObmxtWrlwpq/709HSYmJggLS0NKpWqtBaLxH7ynlIfJ9GH4vp/fMq6BCJ6TxXn3+9ye01TYmIikpKS4OXlJbWZmJigadOmOHbsGADg2LFjMDU1lQITAHh5eUFLSwsnTpyQ+rRu3VoKTADg7e2N+Ph4PHr0SOrz8nTUfdTTKUx2djbS09M1XkRERPThKrehKSkpCQBgaWmp0W5paSkNS0pKgoWFhcbwChUqoFKlShp9ChvHy9Moqo96eGGCgoJgYmIivWxtbYs7i0RERPQeKbehqbybMmUK0tLSpNetW7fKuiQiIiJ6i8ptaLKysgIAJCcna7QnJydLw6ysrJCSkqIx/Pnz53j48KFGn8LG8fI0iuqjHl4YpVIJlUql8SIiIqIPV7kNTdWrV4eVlRUOHDggtaWnp+PEiRPw8PAAAHh4eCA1NRUxMTFSn4MHDyIvLw9NmzaV+kRFReHZs2dSn/DwcNSuXRsVK1aU+rw8HXUf9XSIiIiIyjQ0ZWZmIjY2FrGxsQBeXPwdGxuLmzdvQqFQYOzYsfj+++/x119/4cKFCxgwYABsbGykO+ycnZ3RqVMnDBkyBCdPnkR0dDRGjhyJPn36wMbGBgDg6+sLXV1dBAQE4NKlS9i0aRMWLVqE8ePHS3WMGTMGISEhmDdvHuLi4jB9+nScPn0aI0eOfNeLhIiIiMqpCmU58dOnT6Ndu3bSe3WQ8fPzw+rVq/Hll18iKysLQ4cORWpqKlq2bImQkBDo6elJn1m3bh1GjhwJT09PaGlpoWfPnli8eLE03MTEBGFhYQgMDIS7uzsqV66MqVOnajzLqXnz5li/fj2+/fZbfP3116hZsyZ27NiBunXrvoOlQERERO+DcvOcpvcdn9NEVHb4nCYiKqkP4jlNREREROUJQxMRERGRDAxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDKU69A0ffp0KBQKjZeTk5M0/OnTpwgMDISZmRmMjIzQs2dPJCcna4zj5s2b8PHxgYGBASwsLDBp0iQ8f/5co09kZCQaNmwIpVIJR0dHrF69+l3MHhEREb1HynVoAoA6derg3r170uvIkSPSsHHjxmHXrl3YsmULDh06hLt37+KTTz6Rhufm5sLHxwc5OTk4evQo1qxZg9WrV2Pq1KlSn8TERPj4+KBdu3aIjY3F2LFjMXjwYISGhr7T+SQiIqLyrUJZF/A6FSpUgJWVVYH2tLQ0/Pe//8X69evRvn17AEBwcDCcnZ1x/PhxNGvWDGFhYfj777+xf/9+WFpaws3NDbNmzcJXX32F6dOnQ1dXFytXrkT16tUxb948AICzszOOHDmCBQsWwNvb+53OKxEREZVf5f5I09WrV2FjY4MaNWqgX79+uHnzJgAgJiYGz549g5eXl9TXyckJ1apVw7FjxwAAx44dg6urKywtLaU+3t7eSE9Px6VLl6Q+L49D3Uc9jqJkZ2cjPT1d40VEREQfrnIdmpo2bYrVq1cjJCQEK1asQGJiIlq1aoWMjAwkJSVBV1cXpqamGp+xtLREUlISACApKUkjMKmHq4e9qk96ejqePHlSZG1BQUEwMTGRXra2tm86u0RERFSOlevTc507d5b+v169emjatCns7OywefNm6Ovrl2FlwJQpUzB+/HjpfXp6OoMTERHRB6xcH2nKz9TUFLVq1cK1a9dgZWWFnJwcpKamavRJTk6WroGysrIqcDed+v3r+qhUqlcGM6VSCZVKpfEiIiKiD1e5PtKUX2ZmJhISEtC/f3+4u7tDR0cHBw4cQM+ePQEA8fHxuHnzJjw8PAAAHh4emD17NlJSUmBhYQEACA8Ph0qlgouLi9Rn7969GtMJDw+XxkFE9K7YT95T1iUQlWvX/+NTptMv10eaJk6ciEOHDuH69es4evQoPv74Y2hra6Nv374wMTFBQEAAxo8fj4iICMTExMDf3x8eHh5o1qwZAKBjx45wcXFB//79ce7cOYSGhuLbb79FYGAglEolAGDYsGH4559/8OWXXyIuLg7Lly/H5s2bMW7cuLKcdSIiIipnyvWRptu3b6Nv37548OABzM3N0bJlSxw/fhzm5uYAgAULFkBLSws9e/ZEdnY2vL29sXz5cunz2tra2L17N4YPHw4PDw8YGhrCz88PM2fOlPpUr14de/bswbhx47Bo0SJUrVoVv/76Kx83QERERBoUQghR1kV8CNLT02FiYoK0tLS3cn0TD9sTFa2sD9mXFm7nRK/2Nrb14vz7Xa5PzxERERGVFwxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIwNBERERHJwNBEREREJANDExEREZEMDE1EREREMjA0EREREcnA0EREREQkA0MTERERkQwMTUREREQyMDQRERERycDQRERERCQDQxMRERGRDAxNRERERDIw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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "soma_coluna1 = df['people_left_homeless'].sum()\n", + "soma_coluna2 = df['minors_left_homeless'].sum()\n", + "\n", + "# Crie um gráfico de barras para as somas\n", + "categorias = ['people_left_homeless', 'minors_left_homeless']\n", + "somas = [soma_coluna1, soma_coluna2]\n", + "\n", + "plt.bar(categorias, somas)\n", + "plt.title('Soma das Colunas Adultos/Idosos e Menores Desabrigados')\n", + "plt.xlabel('Categoria')\n", + "plt.ylabel('Soma')\n", + "plt.show()" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "metadata": {}, + "outputs": [ + { + "data": { + "image/png": "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kJAAAEhISDAohrKPZx97Ux+dToenT5/mmmnKlCnQarX6m6Oj4/t4qURERFRACS+Iypcvj6ioKPzzzz/o06cPunbtiosXLwrNNGrUKKSkpOhvcXFxQvMQERFR/jIRHUCtVsPd3R0AUK1aNZw8eRKzZ89G+/btkZ6ejuTkZINRort378LBwQEA4ODggBMnThg8XvYqtJf7vLoy7e7du9BoNLCwsMg1k5mZGczMzN7L6yMiIqKCT/gI0auysrKQlpaGatWqwdTUFKGhofpjV65cQWxsLHx9fQEAvr6+OHfuHBITE/V99u7dC41GA09PT32flx8ju0/2YxAREREJHSEaNWoUmjVrhrJly+LRo0dYv349Dhw4gN27d0Or1SIwMBDBwcGwsbGBRqPBgAED4Ovri1q1agEAmjRpAk9PT3Tu3BnTpk1DQkICRo8ejX79+ulHeHr37o158+Zh+PDh6NGjB/bv349NmzZh+3au7CIiIqIXhBZEiYmJ6NKlC+Lj46HVauHj44Pdu3fj008/BQCEhITAyMgIbdu2RVpaGvz9/bFgwQL99xsbG2Pbtm3o06cPfH19UaRIEXTt2hUTJ07U93FxccH27dsxePBgzJ49G2XKlMGyZcvg7+8v++slIiKigqnA7UNUEHEfIspv3IeIiOj9+yD3ISIiIiIShQURERERKR4LIiIiIlI8FkRERESkeCyIiIiISPFYEBEREZHisSAiIiIixWNBRERERIrHgoiIiIgUjwURERERKR4LIiIiIlI8FkRERESkeCyIiIiISPFYEBEREZHisSAiIiIixWNBRERERIrHgoiIiIgUjwURERERKR4LIiIiIlI8FkRERESkeCyIiIiISPFYEBEREZHisSAiIiIixWNBRERERIrHgoiIiIgUjwURERERKR4LIiIiIlI8FkRERESkeCyIiIiISPFYEBEREZHisSAiIiIixWNBRERERIrHgoiIiIgUjwURERERKZ7QgmjKlCmoUaMGrKysYGdnh9atW+PKlSsGferXrw+VSmVw6927t0Gf2NhYBAQEwNLSEnZ2dhg2bBgyMjIM+hw4cABVq1aFmZkZ3N3dsWrVqvx+eURERPSBEFoQHTx4EP369cPx48exd+9ePH/+HE2aNEFqaqpBv169eiE+Pl5/mzZtmv5YZmYmAgICkJ6ejmPHjmH16tVYtWoVxo4d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ZGSEf/75R9+nbt26UKvV+j7+/v64cuUKHj58mOtzp6WlQafTGdyIiIio8CqwBVFCQgIAwN7e3qDd3t5efywhIQF2dnYGx01MTGBjY2PQJ7fHePk5XjVlyhRotVr9zdHR8X9/QURERFRgFdiCSKRRo0YhJSVFf4uLixMdiYiIiPJRgS2IHBwcAAB37941aL97967+mIODAxITEw2OZ2RkICkpyaBPbo/x8nO8yszMDBqNxuBGREREhVeBLYhcXFzg4OCA0NBQfZtOp8M///wDX19fAICvry+Sk5MRERGh77N//35kZWWhZs2a+j6HDh3C8+fP9X327t2L8uXLo1ixYjK9GiIiIirIhBZEjx8/RlRUFKKiogC8mEgdFRWF2NhYqFQqDBo0CJMmTcJff/2Fc+fOoUuXLihVqhRat24NAKhQoQKaNm2KXr164cSJEzh69Cj69++PDh06oFSpUgCAjh07Qq1WIzAwEBcuXMDGjRsxe/ZsBAcHC3rVREREVNAIXXZ/6tQpNGjQQH8/u0jp2rUrVq1aheHDhyM1NRXffPMNkpOTUadOHezatQvm5ub671m3bh369++PRo0awcjICG3btsWcOXP0x7VaLfbs2YN+/fqhWrVqKFGiBMaOHcsl90RERKSnkiRJEh2ioNPpdNBqtUhJScmX+UTOI7e/98ekD8vNqQFCn5+fQRL9GSTKD+/y+7vAziEiIiIikgsLIiIiIlI8FkRERESkeCyIiIiISPFYEBEREZHisSAiIiIixWNBRERERIrHgoiIiIgUjwURERERKR4LIiIiIlI8FkRERESkeCyIiIiISPFYEBEREZHisSAiIiIixWNBRERERIrHgoiIiIgUjwURERERKR4LIiIiIlI8FkRERESkeCyIiIiISPFYEBEREZHisSAiIiIixWNBRERERIrHgoiIiIgUjwURERERKR4LIiIiIlI8FkRERESkeCyIiIiISPFYEBEREZHisSAiIiIixWNBRERERIrHgoiIiIgUjwURERERKR4LIiIiIlK8Al0QjR8/HiqVyuDm4eGhP/7s2TP069cPxYsXR9GiRdG2bVvcvXvX4DFiY2MREBAAS0tL2NnZYdiwYcjIyJD7pRAREVEBZiI6wH/x8vLCvn379PdNTP4v8uDBg7F9+3Zs3rwZWq0W/fv3R5s2bXD06FEAQGZmJgICAuDg4IBjx44hPj4eXbp0gampKSZPniz7ayEiIqKCqcAXRCYmJnBwcMjRnpKSguXLl2P9+vVo2LAhAGDlypWoUKECjh8/jlq1amHPnj24ePEi9u3bB3t7e1SuXBk//PADRowYgfHjx0OtVsv9coiIiKgAKtCnzADg2rVrKFWqFFxdXdGpUyfExsYCACIiIvD8+XM0btxY39fDwwNly5ZFeHg4ACA8PBze3t6wt7fX9/H394dOp8OFCxde+5xpaWnQ6XQGNyIiIiq8CnRBVLNmTaxatQq7du3CwoULERMTg08++QSPHj1CQkIC1Go1rK2tDb7H3t4eCQkJAICEhASDYij7ePax15kyZQq0Wq3+5ujo+H5fGBERERUoBfqUWbNmzfRf+/j4oGbNmnBycsKmTZtgYWGRb887atQoBAcH6+/rdDoWRURERIVYgR4hepW1tTU++ugjXL9+HQ4ODkhPT0dycrJBn7t37+rnHDk4OORYdZZ9P7d5SdnMzMyg0WgMbkRERFR4fVAF0ePHjxEdHY2SJUuiWrVqMDU1RWhoqP74lStXEBsbC19fXwCAr68vzp07h8TERH2fvXv3QqPRwNPTU/b8REREVDAV6FNmQ4cORcuWLeHk5IQ7d+5g3LhxMDY2xldffQWtVovAwEAEBwfDxsYGGo0GAwYMgK+vL2rVqgUAaNKkCTw9PdG5c2dMmzYNCQkJGD16NPr16wczMzPBr46IiIgKigJdEP3777/46quv8ODBA9ja2qJOnTo4fvw4bG1tAQAhISEwMjJC27ZtkZaWBn9/fyxYsED//cbGxti2bRv69OkDX19fFClSBF27dsXEiRNFvSQiIiIqgAp0QbRhw4Y3Hjc3N8f8+fMxf/781/ZxcnLCjh073nc0IiIiKkQ+qDlERERERPmBBREREREpHgsiIiIiUjwWRERERKR4LIiIiIhI8VgQERERkeKxICIiIiLFY0FEREREiseCiIiIiBSPBREREREpHgsiIiIiUjwWRERERKR4LIiIiIhI8VgQERERkeKZiA5ARETkPHK76Agk2M2pAUKfnyNEREREpHgsiIiIiEjxWBARERGR4rEgIiIiIsVjQURERESKx4KIiIiIFI8FERERESkeCyIiIiJSPBZEREREpHgsiIiIiEjxWBARERGR4rEgIiIiIsVjQURERESKx4KIiIiIFI8FERER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", + "text/plain": [ + "
" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "contagem_reason = df['reason_for_demolition'].value_counts()\n", + "razoes_mais_frequentes = 3\n", + "contagem_reason = contagem_reason.head(razoes_mais_frequentes)\n", + "\n", + "plt.bar(contagem_reason.index, contagem_reason)\n", + "plt.title('\"Razões\" alegadas com frequência')\n", + "plt.xlabel('Razões')\n", + "plt.ylabel('Contagem')\n", + "plt.xticks(rotation=90) # Rotação dos rótulos no eixo x para facilitar a leitura\n", + "plt.show()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "Insights\n", + "De acordo com o gráfico, a principal \"Razão\" alegada é sobre o pretexto de construção ilegal, e o que ocorre é uma recusa sistemática das licenças de construções para palestinos na Cisjordânia ocupada.\n", + "Diante disso, ocorre demolições massivas e arbitrárias desde 2004 deixando inúmeras famílias vulneráveis e ameaçando a existência deste povo." + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.11" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +}